diff --git a/src/cli.c b/src/cli.c index 666ce43..6058b75 100644 --- a/src/cli.c +++ b/src/cli.c @@ -9,6 +9,7 @@ #define DEFAULT_REWRITE_URL "" #define DEFAULT_ES_URL "http://localhost:9200" +#define DEFAULT_ES_INDEX "sist2" #define DEFAULT_BATCH_SIZE 100 #define DEFAULT_LISTEN_ADDRESS "localhost:4090" @@ -287,6 +288,10 @@ int index_args_validate(index_args_t *args, int argc, const char **argv) { args->es_url = DEFAULT_ES_URL; } + if (args->es_index == NULL) { + args->es_index = DEFAULT_ES_INDEX; + } + if (args->script_path != NULL) { if (load_script(args->script_path, &args->script) != 0) { return 1; diff --git a/src/cli.h b/src/cli.h index 5133665..71b6274 100644 --- a/src/cli.h +++ b/src/cli.h @@ -35,6 +35,7 @@ int scan_args_validate(scan_args_t *args, int argc, const char **argv); typedef struct index_args { char *es_url; + char *es_index; const char *index_path; const char *script_path; char *script; @@ -47,6 +48,7 @@ typedef struct index_args { typedef struct web_args { char *es_url; + char *es_index; char *listen_address; char *credentials; char *tag_credentials; @@ -60,6 +62,7 @@ typedef struct web_args { typedef struct exec_args { char *es_url; + char *es_index; const char *index_path; const char *script_path; int async_script; diff --git a/src/ctx.h b/src/ctx.h index 1ddacd4..4dc895c 100644 --- a/src/ctx.h +++ b/src/ctx.h @@ -58,6 +58,7 @@ typedef struct { typedef struct { char *es_url; + char *es_index; int batch_size; tpool_t *pool; store_t *tag_store; @@ -66,6 +67,7 @@ typedef struct { typedef struct { char *es_url; + char *es_index; int index_count; char *auth_user; char *auth_pass; diff --git a/src/index/elastic.c b/src/index/elastic.c index 33aa69e..68e8542 100644 --- a/src/index/elastic.c +++ b/src/index/elastic.c @@ -9,6 +9,7 @@ typedef struct es_indexer { int queued; char *es_url; + char *es_index; es_bulk_line_t *line_head; es_bulk_line_t *line_tail; } es_indexer_t; @@ -17,11 +18,13 @@ typedef struct es_indexer { static __thread es_indexer_t *Indexer; void delete_queue(int max); + void elastic_flush(); void elastic_cleanup() { elastic_flush(); if (Indexer != NULL) { + free(Indexer->es_index); free(Indexer->es_url); free(Indexer); } @@ -32,7 +35,7 @@ void print_json(cJSON *document, const char uuid_str[UUID_STR_LEN]) { cJSON *line = cJSON_CreateObject(); cJSON_AddStringToObject(line, "_id", uuid_str); - cJSON_AddStringToObject(line, "_index", "sist2"); + cJSON_AddStringToObject(line, "_index", IndexCtx.es_index); cJSON_AddStringToObject(line, "_type", "_doc"); cJSON_AddItemReferenceToObject(line, "_source", document); @@ -67,7 +70,7 @@ void index_json(cJSON *document, const char uuid_str[UUID_STR_LEN]) { void execute_update_script(const char *script, int async, const char index_id[UUID_STR_LEN]) { if (Indexer == NULL) { - Indexer = create_indexer(IndexCtx.es_url); + Indexer = create_indexer(IndexCtx.es_url, IndexCtx.es_index); } cJSON *body = cJSON_CreateObject(); @@ -83,9 +86,10 @@ void execute_update_script(const char *script, int async, const char index_id[UU char bulk_url[4096]; if (async) { - snprintf(bulk_url, sizeof(bulk_url), "%s/sist2/_update_by_query?wait_for_completion=false", Indexer->es_url); + snprintf(bulk_url, sizeof(bulk_url), "%s/%s/_update_by_query?wait_for_completion=false", Indexer->es_url, + Indexer->es_index); } else { - snprintf(bulk_url, sizeof(bulk_url), "%s/sist2/_update_by_query", Indexer->es_url); + snprintf(bulk_url, sizeof(bulk_url), "%s/%s/_update_by_query", Indexer->es_url, Indexer->es_index); } response_t *r = web_post(bulk_url, str); if (!async) { @@ -113,8 +117,6 @@ void execute_update_script(const char *script, int async, const char index_id[UU cJSON_Delete(resp); } -#define ACTION_STR_LEN 91 - void *create_bulk_buffer(int max, int *count, size_t *buf_len) { es_bulk_line_t *line = Indexer->line_head; *count = 0; @@ -126,20 +128,24 @@ void *create_bulk_buffer(int max, int *count, size_t *buf_len) { while (line != NULL && *count < max) { char action_str[256]; - snprintf(action_str, 256, - "{\"index\":{\"_id\":\"%s\", \"_type\":\"_doc\", \"_index\":\"sist2\"}}\n", line->uuid_str); + snprintf( + action_str, 256, + "{\"index\":{\"_id\":\"%s\",\"_type\":\"_doc\",\"_index\":\"%s\"}}\n", + line->uuid_str, Indexer->es_index + ); + size_t action_str_len = strlen(action_str); size_t line_len = strlen(line->line); - while (buf_size + line_len + ACTION_STR_LEN > buf_capacity) { + while (buf_size + line_len + action_str_len > buf_capacity) { buf_capacity *= 2; buf = realloc(buf, buf_capacity); } - buf_size += line_len + ACTION_STR_LEN; + buf_size += line_len + action_str_len; - memcpy(buf + buf_cur, action_str, ACTION_STR_LEN); - buf_cur += ACTION_STR_LEN; + memcpy(buf + buf_cur, action_str, action_str_len); + buf_cur += action_str_len; memcpy(buf + buf_cur, line->line, line_len); buf_cur += line_len; @@ -177,6 +183,21 @@ void print_errors(response_t *r) { free(tmp); } +void print_error(response_t *r) { + char *tmp = malloc(r->size + 1); + memcpy(tmp, r->body, r->size); + *(tmp + r->size) = '\0'; + + cJSON *ret_json = cJSON_Parse(tmp); + if (cJSON_GetObjectItem(ret_json, "error") != NULL) { + char *str = cJSON_Print(cJSON_GetObjectItem(ret_json, "error")); + LOG_ERRORF("elastic.c", "%s\n", str); + cJSON_free(str); + } + cJSON_Delete(ret_json); + free(tmp); +} + void _elastic_flush(int max) { if (max == 0) { @@ -189,7 +210,7 @@ void _elastic_flush(int max) { void *buf = create_bulk_buffer(max, &count, &buf_len); char bulk_url[4096]; - snprintf(bulk_url, 4096, "%s/sist2/_bulk?pipeline=tie", Indexer->es_url); + snprintf(bulk_url, sizeof(bulk_url), "%s/%s/_bulk?pipeline=tie", Indexer->es_url, Indexer->es_index); response_t *r = web_post(bulk_url, buf); if (r->status_code == 0) { @@ -259,7 +280,7 @@ void delete_queue(int max) { void elastic_flush() { if (Indexer == NULL) { - Indexer = create_indexer(IndexCtx.es_url); + Indexer = create_indexer(IndexCtx.es_url, IndexCtx.es_index); } _elastic_flush(Indexer->queued); @@ -268,7 +289,7 @@ void elastic_flush() { void elastic_index_line(es_bulk_line_t *line) { if (Indexer == NULL) { - Indexer = create_indexer(IndexCtx.es_url); + Indexer = create_indexer(IndexCtx.es_url, IndexCtx.es_index); } if (Indexer->line_head == NULL) { @@ -286,14 +307,18 @@ void elastic_index_line(es_bulk_line_t *line) { } } -es_indexer_t *create_indexer(const char *url) { +es_indexer_t *create_indexer(const char *url, const char *index) { char *es_url = malloc(strlen(url) + 1); strcpy(es_url, url); + char *es_index = malloc(strlen(index) + 1); + strcpy(es_index, index); + es_indexer_t *indexer = malloc(sizeof(es_indexer_t)); indexer->es_url = es_url; + indexer->es_index = es_index; indexer->queued = 0; indexer->line_head = NULL; indexer->line_tail = NULL; @@ -305,7 +330,7 @@ void finish_indexer(char *script, int async_script, char *index_id) { char url[4096]; - snprintf(url, sizeof(url), "%s/sist2/_refresh", IndexCtx.es_url); + snprintf(url, sizeof(url), "%s/%s/_refresh", IndexCtx.es_url, IndexCtx.es_index); response_t *r = web_post(url, ""); LOG_INFOF("elastic.c", "Refresh index <%d>", r->status_code); free_response(r); @@ -314,18 +339,18 @@ void finish_indexer(char *script, int async_script, char *index_id) { execute_update_script(script, async_script, index_id); free(script); - snprintf(url, sizeof(url), "%s/sist2/_refresh", IndexCtx.es_url); + snprintf(url, sizeof(url), "%s/%s/_refresh", IndexCtx.es_url, IndexCtx.es_index); r = web_post(url, ""); LOG_INFOF("elastic.c", "Refresh index <%d>", r->status_code); free_response(r); } - snprintf(url, sizeof(url), "%s/sist2/_forcemerge", IndexCtx.es_url); + snprintf(url, sizeof(url), "%s/%s/_forcemerge", IndexCtx.es_url, IndexCtx.es_index); r = web_post(url, ""); LOG_INFOF("elastic.c", "Merge index <%d>", r->status_code); free_response(r); - snprintf(url, sizeof(url), "%s/sist2/_settings", IndexCtx.es_url); + snprintf(url, sizeof(url), "%s/%s/_settings", IndexCtx.es_url, IndexCtx.es_index); r = web_put(url, "{\"index\":{\"refresh_interval\":\"1s\"}}"); LOG_INFOF("elastic.c", "Set refresh interval <%d>", r->status_code); free_response(r); @@ -335,7 +360,7 @@ void elastic_init(int force_reset) { // Check if index exists char url[4096]; - snprintf(url, 4096, "%s/sist2", IndexCtx.es_url); + snprintf(url, sizeof(url), "%s/%s", IndexCtx.es_url, IndexCtx.es_index); response_t *r = web_get(url, 30); int index_exists = r->status_code == 200; free_response(r); @@ -345,32 +370,38 @@ void elastic_init(int force_reset) { LOG_INFOF("elastic.c", "Delete index <%d>", r->status_code); free_response(r); - snprintf(url, 4096, "%s/sist2", IndexCtx.es_url); + snprintf(url, sizeof(url), "%s/%s", IndexCtx.es_url, IndexCtx.es_index); r = web_put(url, ""); + + if (r->status_code != 200) { + print_error(r); + LOG_FATAL("elastic.c", "Could not create index") + } + LOG_INFOF("elastic.c", "Create index <%d>", r->status_code); free_response(r); - snprintf(url, 4096, "%s/sist2/_close", IndexCtx.es_url); + snprintf(url, sizeof(url), "%s/%s/_close", IndexCtx.es_url, IndexCtx.es_index); r = web_post(url, ""); LOG_INFOF("elastic.c", "Close index <%d>", r->status_code); free_response(r); - snprintf(url, 4096, "%s/_ingest/pipeline/tie", IndexCtx.es_url); + snprintf(url, sizeof(url), "%s/_ingest/pipeline/tie", IndexCtx.es_url); r = web_put(url, pipeline_json); LOG_INFOF("elastic.c", "Create pipeline <%d>", r->status_code); free_response(r); - snprintf(url, 4096, "%s/sist2/_settings", IndexCtx.es_url); + snprintf(url, sizeof(url), "%s/%s/_settings", IndexCtx.es_url, IndexCtx.es_index); r = web_put(url, settings_json); LOG_INFOF("elastic.c", "Update settings <%d>", r->status_code); free_response(r); - snprintf(url, 4096, "%s/sist2/_mappings/_doc?include_type_name=true", IndexCtx.es_url); + snprintf(url, sizeof(url), "%s/%s/_mappings/_doc?include_type_name=true", IndexCtx.es_url, IndexCtx.es_index); r = web_put(url, mappings_json); LOG_INFOF("elastic.c", "Update mappings <%d>", r->status_code); free_response(r); - snprintf(url, 4096, "%s/sist2/_open", IndexCtx.es_url); + snprintf(url, sizeof(url), "%s/%s/_open", IndexCtx.es_url, IndexCtx.es_index); r = web_post(url, ""); LOG_INFOF("elastic.c", "Open index <%d>", r->status_code); free_response(r); @@ -379,7 +410,7 @@ void elastic_init(int force_reset) { cJSON *elastic_get_document(const char *uuid_str) { char url[4096]; - snprintf(url, 4096, "%s/sist2/_doc/%s", WebCtx.es_url, uuid_str); + snprintf(url, sizeof(url), "%s/%s/_doc/%s", WebCtx.es_url, IndexCtx.es_index, uuid_str); response_t *r = web_get(url, 3); cJSON *json = NULL; @@ -392,8 +423,8 @@ cJSON *elastic_get_document(const char *uuid_str) { char *elastic_get_status() { char url[4096]; - snprintf(url, 4096, - "%s/_cluster/state/metadata/sist2?filter_path=metadata.indices.*.state", WebCtx.es_url); + snprintf(url, sizeof(url), + "%s/_cluster/state/metadata/%s?filter_path=metadata.indices.*.state", WebCtx.es_url, WebCtx.es_index); response_t *r = web_get(url, 30); cJSON *json = NULL; @@ -405,8 +436,8 @@ char *elastic_get_status() { const cJSON *metadata = cJSON_GetObjectItem(json, "metadata"); if (metadata != NULL) { const cJSON *indices = cJSON_GetObjectItem(metadata, "indices"); - const cJSON *sist2 = cJSON_GetObjectItem(indices, "sist2"); - const cJSON *state = cJSON_GetObjectItem(sist2, "state"); + const cJSON *index = cJSON_GetObjectItem(indices, WebCtx.es_index); + const cJSON *state = cJSON_GetObjectItem(index, "state"); strcpy(status, state->valuestring); } } diff --git a/src/index/elastic.h b/src/index/elastic.h index fcbdc21..ab1d7ac 100644 --- a/src/index/elastic.h +++ b/src/index/elastic.h @@ -20,7 +20,7 @@ void print_json(cJSON *document, const char uuid_str[UUID_STR_LEN]); void index_json(cJSON *document, const char uuid_str[UUID_STR_LEN]); -es_indexer_t *create_indexer(const char* es_url); +es_indexer_t *create_indexer(const char *url, const char *index); void elastic_cleanup(); void finish_indexer(char *script, int async_script, char *index_id); diff --git a/src/index/web.c b/src/index/web.c index 96b37a3..20e80fe 100644 --- a/src/index/web.c +++ b/src/index/web.c @@ -125,7 +125,8 @@ response_t *web_get(const char *url, int timeout) { curl_easy_setopt(curl, CURLOPT_USERAGENT, "sist2"); curl_easy_setopt(curl, CURLOPT_TIMEOUT, timeout); - struct curl_slist *headers = curl_slist_append(headers, "Content-Type: application/json"); + struct curl_slist *headers = NULL; + headers = curl_slist_append(headers, "Content-Type: application/json"); curl_easy_setopt(curl, CURLOPT_HTTPHEADER, headers); curl_easy_perform(curl); @@ -153,7 +154,8 @@ response_t *web_post(const char *url, const char *data) { curl_easy_setopt(curl, CURLOPT_POST, 1); curl_easy_setopt(curl, CURLOPT_USERAGENT, "sist2"); - struct curl_slist *headers = curl_slist_append(headers, "Content-Type: application/json"); + struct curl_slist *headers = NULL; + headers = curl_slist_append(headers, "Content-Type: application/json"); curl_easy_setopt(curl, CURLOPT_HTTPHEADER, headers); curl_easy_setopt(curl, CURLOPT_POSTFIELDS, data); @@ -187,7 +189,8 @@ response_t *web_put(const char *url, const char *data) { curl_easy_setopt(curl, CURLOPT_DNS_USE_GLOBAL_CACHE, 0); curl_easy_setopt(curl, CURLOPT_IPRESOLVE, CURLOPT_DNS_LOCAL_IP4 ); - struct curl_slist *headers = curl_slist_append(headers, "Content-Type: application/json"); + struct curl_slist *headers = NULL; + headers = curl_slist_append(headers, "Content-Type: application/json"); curl_easy_setopt(curl, CURLOPT_HTTPHEADER, headers); curl_easy_setopt(curl, CURLOPT_POSTFIELDS, data); @@ -218,7 +221,8 @@ response_t *web_delete(const char *url) { curl_easy_setopt(curl, CURLOPT_USERAGENT, "sist2"); curl_easy_setopt(curl, CURLOPT_POSTFIELDS, ""); - struct curl_slist *headers = curl_slist_append(headers, "Content-Type: application/json"); + struct curl_slist *headers = NULL; + headers = curl_slist_append(headers, "Content-Type: application/json"); curl_easy_setopt(curl, CURLOPT_HTTPHEADER, headers); curl_easy_perform(curl); diff --git a/src/main.c b/src/main.c index c799af0..a695655 100644 --- a/src/main.c +++ b/src/main.c @@ -259,6 +259,7 @@ void sist2_scan(scan_args_t *args) { void sist2_index(index_args_t *args) { IndexCtx.es_url = args->es_url; + IndexCtx.es_index = args->es_index; IndexCtx.batch_size = args->batch_size; if (!args->print) { @@ -347,6 +348,7 @@ void sist2_exec_script(exec_args_t *args) { void sist2_web(web_args_t *args) { WebCtx.es_url = args->es_url; + WebCtx.es_index = args->es_index; WebCtx.index_count = args->index_count; WebCtx.auth_user = args->auth_user; WebCtx.auth_pass = args->auth_pass; @@ -390,6 +392,7 @@ int main(int argc, const char *argv[]) { int arg_version = 0; char *common_es_url = NULL; + char *common_es_index = NULL; char *common_script_path = NULL; int common_async_script = 0; int common_threads = 0; @@ -432,6 +435,7 @@ int main(int argc, const char *argv[]) { OPT_GROUP("Index options"), OPT_INTEGER('t', "threads", &common_threads, "Number of threads. DEFAULT=1"), OPT_STRING(0, "es-url", &common_es_url, "Elasticsearch url with port. DEFAULT=http://localhost:9200"), + OPT_STRING(0, "es-index", &common_es_index, "Elasticsearch index name. DEFAULT=sist2"), OPT_BOOLEAN('p', "print", &index_args->print, "Just print JSON documents to stdout."), OPT_STRING(0, "script-file", &common_script_path, "Path to user script."), OPT_BOOLEAN(0, "async-script", &common_async_script, "Execute user script asynchronously."), @@ -441,11 +445,14 @@ int main(int argc, const char *argv[]) { OPT_GROUP("Web options"), OPT_STRING(0, "es-url", &common_es_url, "Elasticsearch url. DEFAULT=http://localhost:9200"), + OPT_STRING(0, "es-index", &common_es_index, "Elasticsearch index name. DEFAULT=sist2"), OPT_STRING(0, "bind", &web_args->listen_address, "Listen on this address. DEFAULT=localhost:4090"), OPT_STRING(0, "auth", &web_args->credentials, "Basic auth in user:password format"), OPT_STRING(0, "tag-auth", &web_args->tag_credentials, "Basic auth in user:password format for tagging"), OPT_GROUP("Exec-script options"), + OPT_STRING(0, "es-url", &common_es_url, "Elasticsearch url. DEFAULT=http://localhost:9200"), + OPT_STRING(0, "es-index", &common_es_index, "Elasticsearch index name. DEFAULT=sist2"), OPT_STRING(0, "script-file", &common_script_path, "Path to user script."), OPT_BOOLEAN(0, "async-script", &common_async_script, "Execute user script asynchronously."), @@ -469,6 +476,11 @@ int main(int argc, const char *argv[]) { web_args->es_url = common_es_url; index_args->es_url = common_es_url; exec_args->es_url = common_es_url; + + web_args->es_index = common_es_index; + index_args->es_index = common_es_index; + exec_args->es_index = common_es_index; + index_args->script_path = common_script_path; exec_args->script_path = common_script_path; index_args->threads = common_threads; diff --git a/src/web/serve.c b/src/web/serve.c index 1055f0b..c964d5a 100644 --- a/src/web/serve.c +++ b/src/web/serve.c @@ -237,7 +237,7 @@ void search(struct mg_connection *nc, struct http_message *hm) { *(body + hm->body.len) = '\0'; char url[4096]; - snprintf(url, 4096, "%s/sist2/_search", WebCtx.es_url); + snprintf(url, 4096, "%s/%s/_search", WebCtx.es_url, WebCtx.es_index); nc->user_data = web_post_async(url, body); free(body); @@ -552,7 +552,7 @@ void tag(struct mg_connection *nc, struct http_message *hm, struct mg_str *path) ); char url[4096]; - snprintf(url, sizeof(url), "%s/sist2/_update/%s", WebCtx.es_url, arg_req->doc_id); + snprintf(url, sizeof(url), "%s/%s/_update/%s", WebCtx.es_url, WebCtx.es_index, arg_req->doc_id); nc->user_data = web_post_async(url, buf); } else { @@ -572,7 +572,7 @@ void tag(struct mg_connection *nc, struct http_message *hm, struct mg_str *path) ); char url[4096]; - snprintf(url, sizeof(url), "%s/sist2/_update/%s", WebCtx.es_url, arg_req->doc_id); + snprintf(url, sizeof(url), "%s/%s/_update/%s", WebCtx.es_url, WebCtx.es_index, arg_req->doc_id); nc->user_data = web_post_async(url, buf); } diff --git a/src/web/static_generated.c b/src/web/static_generated.c index a99f164..35ecee3 100644 --- a/src/web/static_generated.c +++ b/src/web/static_generated.c @@ -1,6 +1,6 @@ char bundle_css[208206] = {46,97,117,116,111,99,111,109,112,108,101,116,101,45,115,117,103,103,101,115,116,105,111,110,115,32,123,32,116,101,120,116,45,97,108,105,103,110,58,32,108,101,102,116,59,32,99,117,114,115,111,114,58,32,100,101,102,97,117,108,116,59,32,98,111,114,100,101,114,58,32,49,112,120,32,115,111,108,105,100,32,35,99,99,99,59,32,98,111,114,100,101,114,45,116,111,112,58,32,48,59,32,98,97,99,107,103,114,111,117,110,100,58,32,35,102,102,102,59,32,98,111,120,45,115,104,97,100,111,119,58,32,45,49,112,120,32,49,112,120,32,51,112,120,32,114,103,98,97,40,48,44,48,44,48,44,46,49,41,59,32,112,111,115,105,116,105,111,110,58,32,97,98,115,111,108,117,116,101,59,32,100,105,115,112,108,97,121,58,32,110,111,110,101,59,32,122,45,105,110,100,101,120,58,32,57,57,57,57,59,32,109,97,120,45,104,101,105,103,104,116,58,32,50,53,52,112,120,59,32,111,118,101,114,102,108,111,119,58,32,104,105,100,100,101,110,59,32,111,118,101,114,102,108,111,119,45,121,58,32,97,117,116,111,59,32,98,111,120,45,115,105,122,105,110,103,58,32,98,111,114,100,101,114,45,98,111,120,59,32,125,10,46,97,117,116,111,99,111,109,112,108,101,116,101,45,115,117,103,103,101,115,116,105,111,110,32,123,32,112,111,115,105,116,105,111,110,58,32,114,101,108,97,116,105,118,101,59,32,112,97,100,100,105,110,103,58,32,48,32,46,54,101,109,59,32,108,105,110,101,45,104,101,105,103,104,116,58,32,50,51,112,120,59,32,119,104,105,116,101,45,115,112,97,99,101,58,32,110,111,119,114,97,112,59,32,111,118,101,114,102,108,111,119,58,32,104,105,100,100,101,110,59,32,116,101,120,116,45,111,118,101,114,102,108,111,119,58,32,101,108,108,105,112,115,105,115,59,32,102,111,110,116,45,115,105,122,101,58,32,49,46,48,50,101,109,59,32,99,111,108,111,114,58,32,35,51,51,51,59,32,125,10,46,97,117,116,111,99,111,109,112,108,101,116,101,45,115,117,103,103,101,115,116,105,111,110,32,98,32,123,32,102,111,110,116,45,119,101,105,103,104,116,58,32,110,111,114,109,97,108,59,32,99,111,108,111,114,58,32,35,49,102,56,100,100,54,59,32,125,10,46,97,117,116,111,99,111,109,112,108,101,116,101,45,115,117,103,103,101,115,116,105,111,110,46,115,101,108,101,99,116,101,100,32,123,32,98,97,99,107,103,114,111,117,110,100,58,32,35,102,48,102,48,102,48,59,32,125,47,42,33,10,32,42,32,66,111,111,116,115,116,114,97,112,32,67,111,108,111,114,112,105,99,107,101,114,32,45,32,66,111,111,116,115,116,114,97,112,32,67,111,108,111,114,112,105,99,107,101,114,32,105,115,32,97,32,109,111,100,117,108,97,114,32,99,111,108,111,114,32,112,105,99,107,101,114,32,112,108,117,103,105,110,32,102,111,114,32,66,111,111,116,115,116,114,97,112,32,52,46,10,32,42,32,64,112,97,99,107,97,103,101,32,98,111,111,116,115,116,114,97,112,45,99,111,108,111,114,112,105,99,107,101,114,10,32,42,32,64,118,101,114,115,105,111,110,32,118,51,46,49,46,50,10,32,42,32,64,108,105,99,101,110,115,101,32,77,73,84,10,32,42,32,64,108,105,110,107,32,104,116,116,112,115,58,47,47,102,97,114,98,101,108,111,117,115,46,103,105,116,104,117,98,46,105,111,47,98,111,111,116,115,116,114,97,112,45,99,111,108,111,114,112,105,99,107,101,114,47,10,32,42,32,64,108,105,110,107,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,102,97,114,98,101,108,111,117,115,47,98,111,111,116,115,116,114,97,112,45,99,111,108,111,114,112,105,99,107,101,114,46,103,105,116,10,32,42,47,10,46,99,111,108,111,114,112,105,99,107,101,114,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,100,105,115,112,108,97,121,58,110,111,110,101,59,102,111,110,116,45,115,105,122,101,58,105,110,104,101,114,105,116,59,99,111,108,111,114,58,105,110,104,101,114,105,116,59,116,101,120,116,45,97,108,105,103,110,58,108,101,102,116,59,108,105,115,116,45,115,116,121,108,101,58,110,111,110,101,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,108,105,112,58,112,97,100,100,105,110,103,45,98,111,120,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,114,103,98,97,40,48,44,48,44,48,44,46,50,41,59,112,97,100,100,105,110,103,58,46,55,53,114,101,109,32,46,55,53,114,101,109,59,119,105,100,116,104,58,49,52,56,112,120,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,52,112,120,59,45,119,101,98,107,105,116,45,98,111,120,45,115,105,122,105,110,103,58,99,111,110,116,101,110,116,45,98,111,120,59,98,111,120,45,115,105,122,105,110,103,58,99,111,110,116,101,110,116,45,98,111,120,125,46,99,111,108,111,114,112,105,99,107,101,114,46,99,111,108,111,114,112,105,99,107,101,114,45,100,105,115,97,98,108,101,100,44,46,99,111,108,111,114,112,105,99,107,101,114,46,99,111,108,111,114,112,105,99,107,101,114,45,100,105,115,97,98,108,101,100,32,42,123,99,117,114,115,111,114,58,100,101,102,97,117,108,116,33,105,109,112,111,114,116,97,110,116,125,46,99,111,108,111,114,112,105,99,107,101,114,32,100,105,118,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,125,46,99,111,108,111,114,112,105,99,107,101,114,45,112,111,112,117,112,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,49,48,48,37,59,108,101,102,116,58,48,59,102,108,111,97,116,58,108,101,102,116,59,109,97,114,103,105,110,45,116,111,112,58,49,112,120,59,122,45,105,110,100,101,120,58,49,48,54,48,125,46,99,111,108,111,114,112,105,99,107,101,114,45,112,111,112,117,112,46,99,111,108,111,114,112,105,99,107,101,114,45,98,115,45,112,111,112,111,118,101,114,45,99,111,110,116,101,110,116,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,116,111,112,58,97,117,116,111,59,108,101,102,116,58,97,117,116,111,59,102,108,111,97,116,58,110,111,110,101,59,109,97,114,103,105,110,58,48,59,122,45,105,110,100,101,120,58,105,110,105,116,105,97,108,59,98,111,114,100,101,114,58,110,111,110,101,59,112,97,100,100,105,110,103,58,46,50,53,114,101,109,32,48,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,48,59,98,97,99,107,103,114,111,117,110,100,58,48,32,48,59,45,119,101,98,107,105,116,45,98,111,120,45,115,104,97,100,111,119,58,110,111,110,101,59,98,111,120,45,115,104,97,100,111,119,58,110,111,110,101,125,46,99,111,108,111,114,112,105,99,107,101,114,58,97,102,116,101,114,44,46,99,111,108,111,114,112,105,99,107,101,114,58,98,101,102,111,114,101,123,99,111,110,116,101,110,116,58,34,34,59,100,105,115,112,108,97,121,58,116,97,98,108,101,59,99,108,101,97,114,58,98,111,116,104,59,108,105,110,101,45,104,101,105,103,104,116,58,48,125,46,99,111,108,111,114,112,105,99,107,101,114,45,99,108,101,97,114,123,99,108,101,97,114,58,98,111,116,104,59,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,99,111,108,111,114,112,105,99,107,101,114,58,98,101,102,111,114,101,123,99,111,110,116,101,110,116,58,39,39,59,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,98,111,114,100,101,114,45,108,101,102,116,58,55,112,120,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,114,105,103,104,116,58,55,112,120,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,55,112,120,32,115,111,108,105,100,32,35,99,99,99,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,50,41,59,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,45,55,112,120,59,108,101,102,116,58,97,117,116,111,59,114,105,103,104,116,58,54,112,120,125,46,99,111,108,111,114,112,105,99,107,101,114,58,97,102,116,101,114,123,99,111,110,116,101,110,116,58,39,39,59,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,98,111,114,100,101,114,45,108,101,102,116,58,54,112,120,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,114,105,103,104,116,58,54,112,120,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,54,112,120,32,115,111,108,105,100,32,35,102,102,102,59,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,45,54,112,120,59,108,101,102,116,58,97,117,116,111,59,114,105,103,104,116,58,55,112,120,125,46,99,111,108,111,114,112,105,99,107,101,114,46,99,111,108,111,114,112,105,99,107,101,114,45,119,105,116,104,45,97,108,112,104,97,123,119,105,100,116,104,58,49,55,48,112,120,125,46,99,111,108,111,114,112,105,99,107,101,114,46,99,111,108,111,114,112,105,99,107,101,114,45,119,105,116,104,45,97,108,112,104,97,32,46,99,111,108,111,114,112,105,99,107,101,114,45,97,108,112,104,97,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,99,111,108,111,114,112,105,99,107,101,114,45,115,97,116,117,114,97,116,105,111,110,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,119,105,100,116,104,58,49,50,54,112,120,59,104,101,105,103,104,116,58,49,50,54,112,120,59,98,97,99,107,103,114,111,117,110,100,58,45,119,101,98,107,105,116,45,103,114,97,100,105,101,110,116,40,108,105,110,101,97,114,44,108,101,102,116,32,116,111,112,44,108,101,102,116,32,98,111,116,116,111,109,44,102,114,111,109,40,116,114,97,110,115,112,97,114,101,110,116,41,44,116,111,40,98,108,97,99,107,41,41,44,45,119,101,98,107,105,116,45,103,114,97,100,105,101,110,116,40,108,105,110,101,97,114,44,108,101,102,116,32,116,111,112,44,114,105,103,104,116,32,116,111,112,44,102,114,111,109,40,119,104,105,116,101,41,44,116,111,40,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,48,41,41,41,59,98,97,99,107,103,114,111,117,110,100,58,108,105,110,101,97,114,45,103,114,97,100,105,101,110,116,40,116,111,32,98,111,116,116,111,109,44,116,114,97,110,115,112,97,114,101,110,116,32,48,44,35,48,48,48,32,49,48,48,37,41,44,108,105,110,101,97,114,45,103,114,97,100,105,101,110,116,40,116,111,32,114,105,103,104,116,44,35,102,102,102,32,48,44,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,48,41,32,49,48,48,37,41,59,99,117,114,115,111,114,58,99,114,111,115,115,104,97,105,114,59,102,108,111,97,116,58,108,101,102,116,59,45,119,101,98,107,105,116,45,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,49,112,120,32,114,103,98,97,40,48,44,48,44,48,44,46,50,41,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,49,112,120,32,114,103,98,97,40,48,44,48,44,48,44,46,50,41,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,54,112,120,125,46,99,111,108,111,114,112,105,99,107,101,114,45,115,97,116,117,114,97,116,105,111,110,32,46,99,111,108,111,114,112,105,99,107,101,114,45,103,117,105,100,101,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,104,101,105,103,104,116,58,54,112,120,59,119,105,100,116,104,58,54,112,120,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,54,112,120,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,48,48,48,59,45,119,101,98,107,105,116,45,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,49,112,120,32,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,46,56,41,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,49,112,120,32,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,46,56,41,59,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,48,59,108,101,102,116,58,48,59,109,97,114,103,105,110,58,45,51,112,120,32,48,32,48,32,45,51,112,120,125,46,99,111,108,111,114,112,105,99,107,101,114,45,97,108,112,104,97,44,46,99,111,108,111,114,112,105,99,107,101,114,45,104,117,101,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,119,105,100,116,104,58,49,54,112,120,59,104,101,105,103,104,116,58,49,50,54,112,120,59,102,108,111,97,116,58,108,101,102,116,59,99,117,114,115,111,114,58,114,111,119,45,114,101,115,105,122,101,59,109,97,114,103,105,110,45,108,101,102,116,58,54,112,120,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,54,112,120,125,46,99,111,108,111,114,112,105,99,107,101,114,45,97,108,112,104,97,45,99,111,108,111,114,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,48,59,108,101,102,116,58,48,59,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,49,48,48,37,125,46,99,111,108,111,114,112,105,99,107,101,114,45,97,108,112,104,97,45,99,111,108,111,114,44,46,99,111,108,111,114,112,105,99,107,101,114,45,104,117,101,123,45,119,101,98,107,105,116,45,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,49,112,120,32,114,103,98,97,40,48,44,48,44,48,44,46,50,41,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,49,112,120,32,114,103,98,97,40,48,44,48,44,48,44,46,50,41,125,46,99,111,108,111,114,112,105,99,107,101,114,45,97,108,112,104,97,32,46,99,111,108,111,114,112,105,99,107,101,114,45,103,117,105,100,101,44,46,99,111,108,111,114,112,105,99,107,101,114,45,104,117,101,32,46,99,111,108,111,114,112,105,99,107,101,114,45,103,117,105,100,101,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,104,101,105,103,104,116,58,52,112,120,59,98,97,99,107,103,114,111,117,110,100,58,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,46,56,41,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,114,103,98,97,40,48,44,48,44,48,44,46,52,41,59,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,48,59,108,101,102,116,58,48,59,109,97,114,103,105,110,45,108,101,102,116,58,45,50,112,120,59,109,97,114,103,105,110,45,116,111,112,58,45,50,112,120,59,114,105,103,104,116,58,45,50,112,120,59,122,45,105,110,100,101,120,58,49,125,46,99,111,108,111,114,112,105,99,107,101,114,45,104,117,101,123,98,97,99,107,103,114,111,117,110,100,58,45,119,101,98,107,105,116,45,103,114,97,100,105,101,110,116,40,108,105,110,101,97,114,44,108,101,102,116,32,98,111,116,116,111,109,44,108,101,102,116,32,116,111,112,44,102,114,111,109,40,114,101,100,41,44,99,111,108,111,114,45,115,116,111,112,40,56,37,44,35,102,102,56,48,48,48,41,44,99,111,108,111,114,45,115,116,111,112,40,49,55,37,44,35,102,102,48,41,44,99,111,108,111,114,45,115,116,111,112,40,50,53,37,44,35,56,48,102,102,48,48,41,44,99,111,108,111,114,45,115,116,111,112,40,51,51,37,44,35,48,102,48,41,44,99,111,108,111,114,45,115,116,111,112,40,52,50,37,44,35,48,48,102,102,56,48,41,44,99,111,108,111,114,45,115,116,111,112,40,53,48,37,44,35,48,102,102,41,44,99,111,108,111,114,45,115,116,111,112,40,53,56,37,44,35,48,48,56,48,102,102,41,44,99,111,108,111,114,45,115,116,111,112,40,54,55,37,44,35,48,48,102,41,44,99,111,108,111,114,45,115,116,111,112,40,55,53,37,44,35,56,48,48,48,102,102,41,44,99,111,108,111,114,45,115,116,111,112,40,56,51,37,44,35,102,102,48,48,102,102,41,44,99,111,108,111,114,45,115,116,111,112,40,57,50,37,44,35,102,102,48,48,56,48,41,44,116,111,40,114,101,100,41,41,59,98,97,99,107,103,114,111,117,110,100,58,108,105,110,101,97,114,45,103,114,97,100,105,101,110,116,40,116,111,32,116,111,112,44,114,101,100,32,48,44,35,102,102,56,48,48,48,32,56,37,44,35,102,102,48,32,49,55,37,44,35,56,48,102,102,48,48,32,50,53,37,44,35,48,102,48,32,51,51,37,44,35,48,48,102,102,56,48,32,52,50,37,44,35,48,102,102,32,53,48,37,44,35,48,48,56,48,102,102,32,53,56,37,44,35,48,48,102,32,54,55,37,44,35,56,48,48,48,102,102,32,55,53,37,44,35,102,102,48,48,102,102,32,56,51,37,44,35,102,102,48,48,56,48,32,57,50,37,44,114,101,100,32,49,48,48,37,41,125,46,99,111,108,111,114,112,105,99,107,101,114,45,97,108,112,104,97,123,98,97,99,107,103,114,111,117,110,100,58,108,105,110,101,97,114,45,103,114,97,100,105,101,110,116,40,52,53,100,101,103,44,114,103,98,97,40,48,44,48,44,48,44,46,49,41,32,50,53,37,44,116,114,97,110,115,112,97,114,101,110,116,32,50,53,37,44,116,114,97,110,115,112,97,114,101,110,116,32,55,53,37,44,114,103,98,97,40,48,44,48,44,48,44,46,49,41,32,55,53,37,44,114,103,98,97,40,48,44,48,44,48,44,46,49,41,32,48,41,44,108,105,110,101,97,114,45,103,114,97,100,105,101,110,116,40,52,53,100,101,103,44,114,103,98,97,40,48,44,48,44,48,44,46,49,41,32,50,53,37,44,116,114,97,110,115,112,97,114,101,110,116,32,50,53,37,44,116,114,97,110,115,112,97,114,101,110,116,32,55,53,37,44,114,103,98,97,40,48,44,48,44,48,44,46,49,41,32,55,53,37,44,114,103,98,97,40,48,44,48,44,48,44,46,49,41,32,48,41,44,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,115,105,122,101,58,49,48,112,120,32,49,48,112,120,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,48,32,48,44,53,112,120,32,53,112,120,59,100,105,115,112,108,97,121,58,110,111,110,101,125,46,99,111,108,111,114,112,105,99,107,101,114,45,98,97,114,123,109,105,110,45,104,101,105,103,104,116,58,49,54,112,120,59,109,97,114,103,105,110,58,54,112,120,32,48,32,48,32,48,59,99,108,101,97,114,58,98,111,116,104,59,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,59,102,111,110,116,45,115,105,122,101,58,49,48,112,120,59,108,105,110,101,45,104,101,105,103,104,116,58,110,111,114,109,97,108,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,59,45,119,101,98,107,105,116,45,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,49,112,120,32,114,103,98,97,40,48,44,48,44,48,44,46,50,41,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,49,112,120,32,114,103,98,97,40,48,44,48,44,48,44,46,50,41,125,46,99,111,108,111,114,112,105,99,107,101,114,45,98,97,114,58,98,101,102,111,114,101,123,99,111,110,116,101,110,116,58,34,34,59,100,105,115,112,108,97,121,58,116,97,98,108,101,59,99,108,101,97,114,58,98,111,116,104,125,46,99,111,108,111,114,112,105,99,107,101,114,45,98,97,114,46,99,111,108,111,114,112,105,99,107,101,114,45,98,97,114,45,104,111,114,105,122,111,110,116,97,108,123,104,101,105,103,104,116,58,49,50,54,112,120,59,119,105,100,116,104,58,49,54,112,120,59,109,97,114,103,105,110,58,48,32,48,32,54,112,120,32,48,59,102,108,111,97,116,58,108,101,102,116,125,46,99,111,108,111,114,112,105,99,107,101,114,45,105,110,112,117,116,45,97,100,100,111,110,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,125,46,99,111,108,111,114,112,105,99,107,101,114,45,105,110,112,117,116,45,97,100,100,111,110,32,105,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,99,117,114,115,111,114,58,112,111,105,110,116,101,114,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,116,101,120,116,45,116,111,112,59,104,101,105,103,104,116,58,49,54,112,120,59,119,105,100,116,104,58,49,54,112,120,59,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,125,46,99,111,108,111,114,112,105,99,107,101,114,45,105,110,112,117,116,45,97,100,100,111,110,58,98,101,102,111,114,101,123,99,111,110,116,101,110,116,58,34,34,59,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,119,105,100,116,104,58,49,54,112,120,59,104,101,105,103,104,116,58,49,54,112,120,59,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,116,101,120,116,45,116,111,112,59,98,97,99,107,103,114,111,117,110,100,58,108,105,110,101,97,114,45,103,114,97,100,105,101,110,116,40,52,53,100,101,103,44,114,103,98,97,40,48,44,48,44,48,44,46,49,41,32,50,53,37,44,116,114,97,110,115,112,97,114,101,110,116,32,50,53,37,44,116,114,97,110,115,112,97,114,101,110,116,32,55,53,37,44,114,103,98,97,40,48,44,48,44,48,44,46,49,41,32,55,53,37,44,114,103,98,97,40,48,44,48,44,48,44,46,49,41,32,48,41,44,108,105,110,101,97,114,45,103,114,97,100,105,101,110,116,40,52,53,100,101,103,44,114,103,98,97,40,48,44,48,44,48,44,46,49,41,32,50,53,37,44,116,114,97,110,115,112,97,114,101,110,116,32,50,53,37,44,116,114,97,110,115,112,97,114,101,110,116,32,55,53,37,44,114,103,98,97,40,48,44,48,44,48,44,46,49,41,32,55,53,37,44,114,103,98,97,40,48,44,48,44,48,44,46,49,41,32,48,41,44,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,115,105,122,101,58,49,48,112,120,32,49,48,112,120,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,48,32,48,44,53,112,120,32,53,112,120,125,46,99,111,108,111,114,112,105,99,107,101,114,46,99,111,108,111,114,112,105,99,107,101,114,45,105,110,108,105,110,101,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,102,108,111,97,116,58,110,111,110,101,59,122,45,105,110,100,101,120,58,97,117,116,111,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,116,101,120,116,45,98,111,116,116,111,109,125,46,99,111,108,111,114,112,105,99,107,101,114,46,99,111,108,111,114,112,105,99,107,101,114,45,104,111,114,105,122,111,110,116,97,108,123,119,105,100,116,104,58,49,50,54,112,120,59,104,101,105,103,104,116,58,97,117,116,111,125,46,99,111,108,111,114,112,105,99,107,101,114,46,99,111,108,111,114,112,105,99,107,101,114,45,104,111,114,105,122,111,110,116,97,108,32,46,99,111,108,111,114,112,105,99,107,101,114,45,98,97,114,123,119,105,100,116,104,58,49,50,54,112,120,125,46,99,111,108,111,114,112,105,99,107,101,114,46,99,111,108,111,114,112,105,99,107,101,114,45,104,111,114,105,122,111,110,116,97,108,32,46,99,111,108,111,114,112,105,99,107,101,114,45,115,97,116,117,114,97,116,105,111,110,123,102,108,111,97,116,58,110,111,110,101,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,46,99,111,108,111,114,112,105,99,107,101,114,46,99,111,108,111,114,112,105,99,107,101,114,45,104,111,114,105,122,111,110,116,97,108,32,46,99,111,108,111,114,112,105,99,107,101,114,45,97,108,112,104,97,44,46,99,111,108,111,114,112,105,99,107,101,114,46,99,111,108,111,114,112,105,99,107,101,114,45,104,111,114,105,122,111,110,116,97,108,32,46,99,111,108,111,114,112,105,99,107,101,114,45,104,117,101,123,102,108,111,97,116,58,110,111,110,101,59,119,105,100,116,104,58,49,50,54,112,120,59,104,101,105,103,104,116,58,49,54,112,120,59,99,117,114,115,111,114,58,99,111,108,45,114,101,115,105,122,101,59,109,97,114,103,105,110,45,108,101,102,116,58,48,59,109,97,114,103,105,110,45,116,111,112,58,54,112,120,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,46,99,111,108,111,114,112,105,99,107,101,114,46,99,111,108,111,114,112,105,99,107,101,114,45,104,111,114,105,122,111,110,116,97,108,32,46,99,111,108,111,114,112,105,99,107,101,114,45,97,108,112,104,97,32,46,99,111,108,111,114,112,105,99,107,101,114,45,103,117,105,100,101,44,46,99,111,108,111,114,112,105,99,107,101,114,46,99,111,108,111,114,112,105,99,107,101,114,45,104,111,114,105,122,111,110,116,97,108,32,46,99,111,108,111,114,112,105,99,107,101,114,45,104,117,101,32,46,99,111,108,111,114,112,105,99,107,101,114,45,103,117,105,100,101,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,98,111,116,116,111,109,58,45,50,112,120,59,108,101,102,116,58,48,59,114,105,103,104,116,58,97,117,116,111,59,104,101,105,103,104,116,58,97,117,116,111,59,119,105,100,116,104,58,52,112,120,125,46,99,111,108,111,114,112,105,99,107,101,114,46,99,111,108,111,114,112,105,99,107,101,114,45,104,111,114,105,122,111,110,116,97,108,32,46,99,111,108,111,114,112,105,99,107,101,114,45,104,117,101,123,98,97,99,107,103,114,111,117,110,100,58,45,119,101,98,107,105,116,45,103,114,97,100,105,101,110,116,40,108,105,110,101,97,114,44,114,105,103,104,116,32,116,111,112,44,108,101,102,116,32,116,111,112,44,102,114,111,109,40,114,101,100,41,44,99,111,108,111,114,45,115,116,111,112,40,56,37,44,35,102,102,56,48,48,48,41,44,99,111,108,111,114,45,115,116,111,112,40,49,55,37,44,35,102,102,48,41,44,99,111,108,111,114,45,115,116,111,112,40,50,53,37,44,35,56,48,102,102,48,48,41,44,99,111,108,111,114,45,115,116,111,112,40,51,51,37,44,35,48,102,48,41,44,99,111,108,111,114,45,115,116,111,112,40,52,50,37,44,35,48,48,102,102,56,48,41,44,99,111,108,111,114,45,115,116,111,112,40,53,48,37,44,35,48,102,102,41,44,99,111,108,111,114,45,115,116,111,112,40,53,56,37,44,35,48,48,56,48,102,102,41,44,99,111,108,111,114,45,115,116,111,112,40,54,55,37,44,35,48,48,102,41,44,99,111,108,111,114,45,115,116,111,112,40,55,53,37,44,35,56,48,48,48,102,102,41,44,99,111,108,111,114,45,115,116,111,112,40,56,51,37,44,35,102,102,48,48,102,102,41,44,99,111,108,111,114,45,115,116,111,112,40,57,50,37,44,35,102,102,48,48,56,48,41,44,116,111,40,114,101,100,41,41,59,98,97,99,107,103,114,111,117,110,100,58,108,105,110,101,97,114,45,103,114,97,100,105,101,110,116,40,116,111,32,108,101,102,116,44,114,101,100,32,48,44,35,102,102,56,48,48,48,32,56,37,44,35,102,102,48,32,49,55,37,44,35,56,48,102,102,48,48,32,50,53,37,44,35,48,102,48,32,51,51,37,44,35,48,48,102,102,56,48,32,52,50,37,44,35,48,102,102,32,53,48,37,44,35,48,48,56,48,102,102,32,53,56,37,44,35,48,48,102,32,54,55,37,44,35,56,48,48,48,102,102,32,55,53,37,44,35,102,102,48,48,102,102,32,56,51,37,44,35,102,102,48,48,56,48,32,57,50,37,44,114,101,100,32,49,48,48,37,41,125,46,99,111,108,111,114,112,105,99,107,101,114,46,99,111,108,111,114,112,105,99,107,101,114,45,104,111,114,105,122,111,110,116,97,108,32,46,99,111,108,111,114,112,105,99,107,101,114,45,97,108,112,104,97,123,98,97,99,107,103,114,111,117,110,100,58,108,105,110,101,97,114,45,103,114,97,100,105,101,110,116,40,52,53,100,101,103,44,114,103,98,97,40,48,44,48,44,48,44,46,49,41,32,50,53,37,44,116,114,97,110,115,112,97,114,101,110,116,32,50,53,37,44,116,114,97,110,115,112,97,114,101,110,116,32,55,53,37,44,114,103,98,97,40,48,44,48,44,48,44,46,49,41,32,55,53,37,44,114,103,98,97,40,48,44,48,44,48,44,46,49,41,32,48,41,44,108,105,110,101,97,114,45,103,114,97,100,105,101,110,116,40,52,53,100,101,103,44,114,103,98,97,40,48,44,48,44,48,44,46,49,41,32,50,53,37,44,116,114,97,110,115,112,97,114,101,110,116,32,50,53,37,44,116,114,97,110,115,112,97,114,101,110,116,32,55,53,37,44,114,103,98,97,40,48,44,48,44,48,44,46,49,41,32,55,53,37,44,114,103,98,97,40,48,44,48,44,48,44,46,49,41,32,48,41,44,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,115,105,122,101,58,49,48,112,120,32,49,48,112,120,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,48,32,48,44,53,112,120,32,53,112,120,125,46,99,111,108,111,114,112,105,99,107,101,114,45,105,110,108,105,110,101,58,98,101,102,111,114,101,44,46,99,111,108,111,114,112,105,99,107,101,114,45,110,111,45,97,114,114,111,119,58,98,101,102,111,114,101,44,46,99,111,108,111,114,112,105,99,107,101,114,45,112,111,112,117,112,46,99,111,108,111,114,112,105,99,107,101,114,45,98,115,45,112,111,112,111,118,101,114,45,99,111,110,116,101,110,116,58,98,101,102,111,114,101,123,99,111,110,116,101,110,116,58,110,111,110,101,59,100,105,115,112,108,97,121,58,110,111,110,101,125,46,99,111,108,111,114,112,105,99,107,101,114,45,105,110,108,105,110,101,58,97,102,116,101,114,44,46,99,111,108,111,114,112,105,99,107,101,114,45,110,111,45,97,114,114,111,119,58,97,102,116,101,114,44,46,99,111,108,111,114,112,105,99,107,101,114,45,112,111,112,117,112,46,99,111,108,111,114,112,105,99,107,101,114,45,98,115,45,112,111,112,111,118,101,114,45,99,111,110,116,101,110,116,58,97,102,116,101,114,123,99,111,110,116,101,110,116,58,110,111,110,101,59,100,105,115,112,108,97,121,58,110,111,110,101,125,46,99,111,108,111,114,112,105,99,107,101,114,45,97,108,112,104,97,44,46,99,111,108,111,114,112,105,99,107,101,114,45,104,117,101,44,46,99,111,108,111,114,112,105,99,107,101,114,45,115,97,116,117,114,97,116,105,111,110,123,45,119,101,98,107,105,116,45,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,59,45,109,111,122,45,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,59,45,109,115,45,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,59,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,125,46,99,111,108,111,114,112,105,99,107,101,114,45,97,108,112,104,97,46,99,111,108,111,114,112,105,99,107,101,114,45,118,105,115,105,98,108,101,44,46,99,111,108,111,114,112,105,99,107,101,114,45,98,97,114,46,99,111,108,111,114,112,105,99,107,101,114,45,118,105,115,105,98,108,101,44,46,99,111,108,111,114,112,105,99,107,101,114,45,104,117,101,46,99,111,108,111,114,112,105,99,107,101,114,45,118,105,115,105,98,108,101,44,46,99,111,108,111,114,112,105,99,107,101,114,45,115,97,116,117,114,97,116,105,111,110,46,99,111,108,111,114,112,105,99,107,101,114,45,118,105,115,105,98,108,101,44,46,99,111,108,111,114,112,105,99,107,101,114,46,99,111,108,111,114,112,105,99,107,101,114,45,118,105,115,105,98,108,101,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,99,111,108,111,114,112,105,99,107,101,114,45,97,108,112,104,97,46,99,111,108,111,114,112,105,99,107,101,114,45,104,105,100,100,101,110,44,46,99,111,108,111,114,112,105,99,107,101,114,45,98,97,114,46,99,111,108,111,114,112,105,99,107,101,114,45,104,105,100,100,101,110,44,46,99,111,108,111,114,112,105,99,107,101,114,45,104,117,101,46,99,111,108,111,114,112,105,99,107,101,114,45,104,105,100,100,101,110,44,46,99,111,108,111,114,112,105,99,107,101,114,45,115,97,116,117,114,97,116,105,111,110,46,99,111,108,111,114,112,105,99,107,101,114,45,104,105,100,100,101,110,44,46,99,111,108,111,114,112,105,99,107,101,114,46,99,111,108,111,114,112,105,99,107,101,114,45,104,105,100,100,101,110,123,100,105,115,112,108,97,121,58,110,111,110,101,125,46,99,111,108,111,114,112,105,99,107,101,114,45,105,110,108,105,110,101,46,99,111,108,111,114,112,105,99,107,101,114,45,118,105,115,105,98,108,101,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,125,46,99,111,108,111,114,112,105,99,107,101,114,46,99,111,108,111,114,112,105,99,107,101,114,45,100,105,115,97,98,108,101,100,58,97,102,116,101,114,123,98,111,114,100,101,114,58,110,111,110,101,59,99,111,110,116,101,110,116,58,39,39,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,49,48,48,37,59,98,97,99,107,103,114,111,117,110,100,58,114,103,98,97,40,50,51,51,44,50,51,54,44,50,51,57,44,46,51,51,41,59,116,111,112,58,48,59,108,101,102,116,58,48,59,114,105,103,104,116,58,97,117,116,111,59,122,45,105,110,100,101,120,58,50,59,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,125,46,99,111,108,111,114,112,105,99,107,101,114,46,99,111,108,111,114,112,105,99,107,101,114,45,100,105,115,97,98,108,101,100,32,46,99,111,108,111,114,112,105,99,107,101,114,45,103,117,105,100,101,123,100,105,115,112,108,97,121,58,110,111,110,101,125,46,99,111,108,111,114,112,105,99,107,101,114,45,112,114,101,118,105,101,119,123,98,97,99,107,103,114,111,117,110,100,58,108,105,110,101,97,114,45,103,114,97,100,105,101,110,116,40,52,53,100,101,103,44,114,103,98,97,40,48,44,48,44,48,44,46,49,41,32,50,53,37,44,116,114,97,110,115,112,97,114,101,110,116,32,50,53,37,44,116,114,97,110,115,112,97,114,101,110,116,32,55,53,37,44,114,103,98,97,40,48,44,48,44,48,44,46,49,41,32,55,53,37,44,114,103,98,97,40,48,44,48,44,48,44,46,49,41,32,48,41,44,108,105,110,101,97,114,45,103,114,97,100,105,101,110,116,40,52,53,100,101,103,44,114,103,98,97,40,48,44,48,44,48,44,46,49,41,32,50,53,37,44,116,114,97,110,115,112,97,114,101,110,116,32,50,53,37,44,116,114,97,110,115,112,97,114,101,110,116,32,55,53,37,44,114,103,98,97,40,48,44,48,44,48,44,46,49,41,32,55,53,37,44,114,103,98,97,40,48,44,48,44,48,44,46,49,41,32,48,41,44,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,115,105,122,101,58,49,48,112,120,32,49,48,112,120,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,48,32,48,44,53,112,120,32,53,112,120,125,46,99,111,108,111,114,112,105,99,107,101,114,45,112,114,101,118,105,101,119,62,100,105,118,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,108,101,102,116,58,48,59,116,111,112,58,48,59,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,49,48,48,37,125,46,99,111,108,111,114,112,105,99,107,101,114,45,98,97,114,46,99,111,108,111,114,112,105,99,107,101,114,45,115,119,97,116,99,104,101,115,123,45,119,101,98,107,105,116,45,98,111,120,45,115,104,97,100,111,119,58,110,111,110,101,59,98,111,120,45,115,104,97,100,111,119,58,110,111,110,101,59,104,101,105,103,104,116,58,97,117,116,111,125,46,99,111,108,111,114,112,105,99,107,101,114,45,115,119,97,116,99,104,101,115,45,45,105,110,110,101,114,123,99,108,101,97,114,58,98,111,116,104,59,109,97,114,103,105,110,45,116,111,112,58,45,54,112,120,125,46,99,111,108,111,114,112,105,99,107,101,114,45,115,119,97,116,99,104,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,99,117,114,115,111,114,58,112,111,105,110,116,101,114,59,102,108,111,97,116,58,108,101,102,116,59,104,101,105,103,104,116,58,49,54,112,120,59,119,105,100,116,104,58,49,54,112,120,59,109,97,114,103,105,110,45,114,105,103,104,116,58,54,112,120,59,109,97,114,103,105,110,45,116,111,112,58,54,112,120,59,109,97,114,103,105,110,45,108,101,102,116,58,48,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,45,119,101,98,107,105,116,45,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,49,112,120,32,114,103,98,97,40,48,44,48,44,48,44,46,50,41,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,49,112,120,32,114,103,98,97,40,48,44,48,44,48,44,46,50,41,59,98,97,99,107,103,114,111,117,110,100,58,108,105,110,101,97,114,45,103,114,97,100,105,101,110,116,40,52,53,100,101,103,44,114,103,98,97,40,48,44,48,44,48,44,46,49,41,32,50,53,37,44,116,114,97,110,115,112,97,114,101,110,116,32,50,53,37,44,116,114,97,110,115,112,97,114,101,110,116,32,55,53,37,44,114,103,98,97,40,48,44,48,44,48,44,46,49,41,32,55,53,37,44,114,103,98,97,40,48,44,48,44,48,44,46,49,41,32,48,41,44,108,105,110,101,97,114,45,103,114,97,100,105,101,110,116,40,52,53,100,101,103,44,114,103,98,97,40,48,44,48,44,48,44,46,49,41,32,50,53,37,44,116,114,97,110,115,112,97,114,101,110,116,32,50,53,37,44,116,114,97,110,115,112,97,114,101,110,116,32,55,53,37,44,114,103,98,97,40,48,44,48,44,48,44,46,49,41,32,55,53,37,44,114,103,98,97,40,48,44,48,44,48,44,46,49,41,32,48,41,44,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,115,105,122,101,58,49,48,112,120,32,49,48,112,120,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,48,32,48,44,53,112,120,32,53,112,120,125,46,99,111,108,111,114,112,105,99,107,101,114,45,115,119,97,116,99,104,45,45,105,110,110,101,114,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,48,59,108,101,102,116,58,48,59,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,49,48,48,37,125,46,99,111,108,111,114,112,105,99,107,101,114,45,115,119,97,116,99,104,58,110,116,104,45,111,102,45,116,121,112,101,40,55,110,43,48,41,123,109,97,114,103,105,110,45,114,105,103,104,116,58,48,125,46,99,111,108,111,114,112,105,99,107,101,114,45,119,105,116,104,45,97,108,112,104,97,32,46,99,111,108,111,114,112,105,99,107,101,114,45,115,119,97,116,99,104,58,110,116,104,45,111,102,45,116,121,112,101,40,55,110,43,48,41,123,109,97,114,103,105,110,45,114,105,103,104,116,58,54,112,120,125,46,99,111,108,111,114,112,105,99,107,101,114,45,119,105,116,104,45,97,108,112,104,97,32,46,99,111,108,111,114,112,105,99,107,101,114,45,115,119,97,116,99,104,58,110,116,104,45,111,102,45,116,121,112,101,40,56,110,43,48,41,123,109,97,114,103,105,110,45,114,105,103,104,116,58,48,125,46,99,111,108,111,114,112,105,99,107,101,114,45,104,111,114,105,122,111,110,116,97,108,32,46,99,111,108,111,114,112,105,99,107,101,114,45,115,119,97,116,99,104,58,110,116,104,45,111,102,45,116,121,112,101,40,54,110,43,48,41,123,109,97,114,103,105,110,45,114,105,103,104,116,58,48,125,46,99,111,108,111,114,112,105,99,107,101,114,45,104,111,114,105,122,111,110,116,97,108,32,46,99,111,108,111,114,112,105,99,107,101,114,45,115,119,97,116,99,104,58,110,116,104,45,111,102,45,116,121,112,101,40,55,110,43,48,41,123,109,97,114,103,105,110,45,114,105,103,104,116,58,54,112,120,125,46,99,111,108,111,114,112,105,99,107,101,114,45,104,111,114,105,122,111,110,116,97,108,32,46,99,111,108,111,114,112,105,99,107,101,114,45,115,119,97,116,99,104,58,110,116,104,45,111,102,45,116,121,112,101,40,56,110,43,48,41,123,109,97,114,103,105,110,45,114,105,103,104,116,58,54,112,120,125,46,99,111,108,111,114,112,105,99,107,101,114,45,115,119,97,116,99,104,58,108,97,115,116,45,111,102,45,116,121,112,101,58,97,102,116,101,114,123,99,111,110,116,101,110,116,58,34,34,59,100,105,115,112,108,97,121,58,116,97,98,108,101,59,99,108,101,97,114,58,98,111,116,104,125,46,99,111,108,111,114,112,105,99,107,101,114,45,101,108,101,109,101,110,116,32,105,110,112,117,116,91,100,105,114,61,114,116,108,93,44,46,99,111,108,111,114,112,105,99,107,101,114,45,101,108,101,109,101,110,116,91,100,105,114,61,114,116,108,93,32,105,110,112,117,116,44,91,100,105,114,61,114,116,108,93,32,46,99,111,108,111,114,112,105,99,107,101,114,45,101,108,101,109,101,110,116,32,105,110,112,117,116,123,100,105,114,101,99,116,105,111,110,58,108,116,114,59,116,101,120,116,45,97,108,105,103,110,58,114,105,103,104,116,125,10,47,42,33,10,32,42,32,66,111,111,116,115,116,114,97,112,32,118,52,46,51,46,49,32,40,104,116,116,112,115,58,47,47,103,101,116,98,111,111,116,115,116,114,97,112,46,99,111,109,47,41,10,32,42,32,67,111,112,121,114,105,103,104,116,32,50,48,49,49,45,50,48,49,57,32,84,104,101,32,66,111,111,116,115,116,114,97,112,32,65,117,116,104,111,114,115,10,32,42,32,67,111,112,121,114,105,103,104,116,32,50,48,49,49,45,50,48,49,57,32,84,119,105,116,116,101,114,44,32,73,110,99,46,10,32,42,32,76,105,99,101,110,115,101,100,32,117,110,100,101,114,32,77,73,84,32,40,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,116,119,98,115,47,98,111,111,116,115,116,114,97,112,47,98,108,111,98,47,109,97,115,116,101,114,47,76,73,67,69,78,83,69,41,10,32,42,47,58,114,111,111,116,123,45,45,98,108,117,101,58,35,48,48,55,98,102,102,59,45,45,105,110,100,105,103,111,58,35,54,54,49,48,102,50,59,45,45,112,117,114,112,108,101,58,35,54,102,52,50,99,49,59,45,45,112,105,110,107,58,35,101,56,51,101,56,99,59,45,45,114,101,100,58,35,100,99,51,53,52,53,59,45,45,111,114,97,110,103,101,58,35,102,100,55,101,49,52,59,45,45,121,101,108,108,111,119,58,35,102,102,99,49,48,55,59,45,45,103,114,101,101,110,58,35,50,56,97,55,52,53,59,45,45,116,101,97,108,58,35,50,48,99,57,57,55,59,45,45,99,121,97,110,58,35,49,55,97,50,98,56,59,45,45,119,104,105,116,101,58,35,102,102,102,59,45,45,103,114,97,121,58,35,54,99,55,53,55,100,59,45,45,103,114,97,121,45,100,97,114,107,58,35,51,52,51,97,52,48,59,45,45,112,114,105,109,97,114,121,58,35,48,48,55,98,102,102,59,45,45,115,101,99,111,110,100,97,114,121,58,35,54,99,55,53,55,100,59,45,45,115,117,99,99,101,115,115,58,35,50,56,97,55,52,53,59,45,45,105,110,102,111,58,35,49,55,97,50,98,56,59,45,45,119,97,114,110,105,110,103,58,35,102,102,99,49,48,55,59,45,45,100,97,110,103,101,114,58,35,100,99,51,53,52,53,59,45,45,108,105,103,104,116,58,35,102,56,102,57,102,97,59,45,45,100,97,114,107,58,35,51,52,51,97,52,48,59,45,45,98,114,101,97,107,112,111,105,110,116,45,120,115,58,48,59,45,45,98,114,101,97,107,112,111,105,110,116,45,115,109,58,53,55,54,112,120,59,45,45,98,114,101,97,107,112,111,105,110,116,45,109,100,58,55,54,56,112,120,59,45,45,98,114,101,97,107,112,111,105,110,116,45,108,103,58,57,57,50,112,120,59,45,45,98,114,101,97,107,112,111,105,110,116,45,120,108,58,49,50,48,48,112,120,59,45,45,102,111,110,116,45,102,97,109,105,108,121,45,115,97,110,115,45,115,101,114,105,102,58,45,97,112,112,108,101,45,115,121,115,116,101,109,44,66,108,105,110,107,77,97,99,83,121,115,116,101,109,70,111,110,116,44,34,83,101,103,111,101,32,85,73,34,44,82,111,98,111,116,111,44,34,72,101,108,118,101,116,105,99,97,32,78,101,117,101,34,44,65,114,105,97,108,44,34,78,111,116,111,32,83,97,110,115,34,44,115,97,110,115,45,115,101,114,105,102,44,34,65,112,112,108,101,32,67,111,108,111,114,32,69,109,111,106,105,34,44,34,83,101,103,111,101,32,85,73,32,69,109,111,106,105,34,44,34,83,101,103,111,101,32,85,73,32,83,121,109,98,111,108,34,44,34,78,111,116,111,32,67,111,108,111,114,32,69,109,111,106,105,34,59,45,45,102,111,110,116,45,102,97,109,105,108,121,45,109,111,110,111,115,112,97,99,101,58,83,70,77,111,110,111,45,82,101,103,117,108,97,114,44,77,101,110,108,111,44,77,111,110,97,99,111,44,67,111,110,115,111,108,97,115,44,34,76,105,98,101,114,97,116,105,111,110,32,77,111,110,111,34,44,34,67,111,117,114,105,101,114,32,78,101,119,34,44,109,111,110,111,115,112,97,99,101,125,42,44,58,58,97,102,116,101,114,44,58,58,98,101,102,111,114,101,123,98,111,120,45,115,105,122,105,110,103,58,98,111,114,100,101,114,45,98,111,120,125,104,116,109,108,123,102,111,110,116,45,102,97,109,105,108,121,58,115,97,110,115,45,115,101,114,105,102,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,49,53,59,45,119,101,98,107,105,116,45,116,101,120,116,45,115,105,122,101,45,97,100,106,117,115,116,58,49,48,48,37,59,45,119,101,98,107,105,116,45,116,97,112,45,104,105,103,104,108,105,103,104,116,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,125,97,114,116,105,99,108,101,44,97,115,105,100,101,44,102,105,103,99,97,112,116,105,111,110,44,102,105,103,117,114,101,44,102,111,111,116,101,114,44,104,101,97,100,101,114,44,104,103,114,111,117,112,44,109,97,105,110,44,110,97,118,44,115,101,99,116,105,111,110,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,98,111,100,121,123,109,97,114,103,105,110,58,48,59,102,111,110,116,45,102,97,109,105,108,121,58,45,97,112,112,108,101,45,115,121,115,116,101,109,44,66,108,105,110,107,77,97,99,83,121,115,116,101,109,70,111,110,116,44,34,83,101,103,111,101,32,85,73,34,44,82,111,98,111,116,111,44,34,72,101,108,118,101,116,105,99,97,32,78,101,117,101,34,44,65,114,105,97,108,44,34,78,111,116,111,32,83,97,110,115,34,44,115,97,110,115,45,115,101,114,105,102,44,34,65,112,112,108,101,32,67,111,108,111,114,32,69,109,111,106,105,34,44,34,83,101,103,111,101,32,85,73,32,69,109,111,106,105,34,44,34,83,101,103,111,101,32,85,73,32,83,121,109,98,111,108,34,44,34,78,111,116,111,32,67,111,108,111,114,32,69,109,111,106,105,34,59,102,111,110,116,45,115,105,122,101,58,49,114,101,109,59,102,111,110,116,45,119,101,105,103,104,116,58,52,48,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,99,111,108,111,114,58,35,50,49,50,53,50,57,59,116,101,120,116,45,97,108,105,103,110,58,108,101,102,116,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,125,91,116,97,98,105,110,100,101,120,61,34,45,49,34,93,58,102,111,99,117,115,123,111,117,116,108,105,110,101,58,48,33,105,109,112,111,114,116,97,110,116,125,104,114,123,98,111,120,45,115,105,122,105,110,103,58,99,111,110,116,101,110,116,45,98,111,120,59,104,101,105,103,104,116,58,48,59,111,118,101,114,102,108,111,119,58,118,105,115,105,98,108,101,125,104,49,44,104,50,44,104,51,44,104,52,44,104,53,44,104,54,123,109,97,114,103,105,110,45,116,111,112,58,48,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,53,114,101,109,125,112,123,109,97,114,103,105,110,45,116,111,112,58,48,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,114,101,109,125,97,98,98,114,91,100,97,116,97,45,111,114,105,103,105,110,97,108,45,116,105,116,108,101,93,44,97,98,98,114,91,116,105,116,108,101,93,123,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,117,110,100,101,114,108,105,110,101,59,45,119,101,98,107,105,116,45,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,117,110,100,101,114,108,105,110,101,32,100,111,116,116,101,100,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,117,110,100,101,114,108,105,110,101,32,100,111,116,116,101,100,59,99,117,114,115,111,114,58,104,101,108,112,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,48,59,45,119,101,98,107,105,116,45,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,45,115,107,105,112,45,105,110,107,58,110,111,110,101,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,45,115,107,105,112,45,105,110,107,58,110,111,110,101,125,97,100,100,114,101,115,115,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,114,101,109,59,102,111,110,116,45,115,116,121,108,101,58,110,111,114,109,97,108,59,108,105,110,101,45,104,101,105,103,104,116,58,105,110,104,101,114,105,116,125,100,108,44,111,108,44,117,108,123,109,97,114,103,105,110,45,116,111,112,58,48,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,114,101,109,125,111,108,32,111,108,44,111,108,32,117,108,44,117,108,32,111,108,44,117,108,32,117,108,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,100,116,123,102,111,110,116,45,119,101,105,103,104,116,58,55,48,48,125,100,100,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,53,114,101,109,59,109,97,114,103,105,110,45,108,101,102,116,58,48,125,98,108,111,99,107,113,117,111,116,101,123,109,97,114,103,105,110,58,48,32,48,32,49,114,101,109,125,98,44,115,116,114,111,110,103,123,102,111,110,116,45,119,101,105,103,104,116,58,98,111,108,100,101,114,125,115,109,97,108,108,123,102,111,110,116,45,115,105,122,101,58,56,48,37,125,115,117,98,44,115,117,112,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,102,111,110,116,45,115,105,122,101,58,55,53,37,59,108,105,110,101,45,104,101,105,103,104,116,58,48,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,98,97,115,101,108,105,110,101,125,115,117,98,123,98,111,116,116,111,109,58,45,46,50,53,101,109,125,115,117,112,123,116,111,112,58,45,46,53,101,109,125,97,123,99,111,108,111,114,58,35,48,48,55,98,102,102,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,125,97,58,104,111,118,101,114,123,99,111,108,111,114,58,35,48,48,53,54,98,51,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,117,110,100,101,114,108,105,110,101,125,97,58,110,111,116,40,91,104,114,101,102,93,41,58,110,111,116,40,91,116,97,98,105,110,100,101,120,93,41,123,99,111,108,111,114,58,105,110,104,101,114,105,116,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,125,97,58,110,111,116,40,91,104,114,101,102,93,41,58,110,111,116,40,91,116,97,98,105,110,100,101,120,93,41,58,102,111,99,117,115,44,97,58,110,111,116,40,91,104,114,101,102,93,41,58,110,111,116,40,91,116,97,98,105,110,100,101,120,93,41,58,104,111,118,101,114,123,99,111,108,111,114,58,105,110,104,101,114,105,116,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,125,97,58,110,111,116,40,91,104,114,101,102,93,41,58,110,111,116,40,91,116,97,98,105,110,100,101,120,93,41,58,102,111,99,117,115,123,111,117,116,108,105,110,101,58,48,125,99,111,100,101,44,107,98,100,44,112,114,101,44,115,97,109,112,123,102,111,110,116,45,102,97,109,105,108,121,58,83,70,77,111,110,111,45,82,101,103,117,108,97,114,44,77,101,110,108,111,44,77,111,110,97,99,111,44,67,111,110,115,111,108,97,115,44,34,76,105,98,101,114,97,116,105,111,110,32,77,111,110,111,34,44,34,67,111,117,114,105,101,114,32,78,101,119,34,44,109,111,110,111,115,112,97,99,101,59,102,111,110,116,45,115,105,122,101,58,49,101,109,125,112,114,101,123,109,97,114,103,105,110,45,116,111,112,58,48,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,114,101,109,59,111,118,101,114,102,108,111,119,58,97,117,116,111,125,102,105,103,117,114,101,123,109,97,114,103,105,110,58,48,32,48,32,49,114,101,109,125,105,109,103,123,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,109,105,100,100,108,101,59,98,111,114,100,101,114,45,115,116,121,108,101,58,110,111,110,101,125,115,118,103,123,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,109,105,100,100,108,101,125,116,97,98,108,101,123,98,111,114,100,101,114,45,99,111,108,108,97,112,115,101,58,99,111,108,108,97,112,115,101,125,99,97,112,116,105,111,110,123,112,97,100,100,105,110,103,45,116,111,112,58,46,55,53,114,101,109,59,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,55,53,114,101,109,59,99,111,108,111,114,58,35,54,99,55,53,55,100,59,116,101,120,116,45,97,108,105,103,110,58,108,101,102,116,59,99,97,112,116,105,111,110,45,115,105,100,101,58,98,111,116,116,111,109,125,116,104,123,116,101,120,116,45,97,108,105,103,110,58,105,110,104,101,114,105,116,125,108,97,98,101,108,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,53,114,101,109,125,98,117,116,116,111,110,123,98,111,114,100,101,114,45,114,97,100,105,117,115,58,48,125,98,117,116,116,111,110,58,102,111,99,117,115,123,111,117,116,108,105,110,101,58,49,112,120,32,100,111,116,116,101,100,59,111,117,116,108,105,110,101,58,53,112,120,32,97,117,116,111,32,45,119,101,98,107,105,116,45,102,111,99,117,115,45,114,105,110,103,45,99,111,108,111,114,125,98,117,116,116,111,110,44,105,110,112,117,116,44,111,112,116,103,114,111,117,112,44,115,101,108,101,99,116,44,116,101,120,116,97,114,101,97,123,109,97,114,103,105,110,58,48,59,102,111,110,116,45,102,97,109,105,108,121,58,105,110,104,101,114,105,116,59,102,111,110,116,45,115,105,122,101,58,105,110,104,101,114,105,116,59,108,105,110,101,45,104,101,105,103,104,116,58,105,110,104,101,114,105,116,125,98,117,116,116,111,110,44,105,110,112,117,116,123,111,118,101,114,102,108,111,119,58,118,105,115,105,98,108,101,125,98,117,116,116,111,110,44,115,101,108,101,99,116,123,116,101,120,116,45,116,114,97,110,115,102,111,114,109,58,110,111,110,101,125,115,101,108,101,99,116,123,119,111,114,100,45,119,114,97,112,58,110,111,114,109,97,108,125,91,116,121,112,101,61,98,117,116,116,111,110,93,44,91,116,121,112,101,61,114,101,115,101,116,93,44,91,116,121,112,101,61,115,117,98,109,105,116,93,44,98,117,116,116,111,110,123,45,119,101,98,107,105,116,45,97,112,112,101,97,114,97,110,99,101,58,98,117,116,116,111,110,125,91,116,121,112,101,61,98,117,116,116,111,110,93,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,44,91,116,121,112,101,61,114,101,115,101,116,93,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,44,91,116,121,112,101,61,115,117,98,109,105,116,93,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,44,98,117,116,116,111,110,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,123,99,117,114,115,111,114,58,112,111,105,110,116,101,114,125,91,116,121,112,101,61,98,117,116,116,111,110,93,58,58,45,109,111,122,45,102,111,99,117,115,45,105,110,110,101,114,44,91,116,121,112,101,61,114,101,115,101,116,93,58,58,45,109,111,122,45,102,111,99,117,115,45,105,110,110,101,114,44,91,116,121,112,101,61,115,117,98,109,105,116,93,58,58,45,109,111,122,45,102,111,99,117,115,45,105,110,110,101,114,44,98,117,116,116,111,110,58,58,45,109,111,122,45,102,111,99,117,115,45,105,110,110,101,114,123,112,97,100,100,105,110,103,58,48,59,98,111,114,100,101,114,45,115,116,121,108,101,58,110,111,110,101,125,105,110,112,117,116,91,116,121,112,101,61,99,104,101,99,107,98,111,120,93,44,105,110,112,117,116,91,116,121,112,101,61,114,97,100,105,111,93,123,98,111,120,45,115,105,122,105,110,103,58,98,111,114,100,101,114,45,98,111,120,59,112,97,100,100,105,110,103,58,48,125,105,110,112,117,116,91,116,121,112,101,61,100,97,116,101,93,44,105,110,112,117,116,91,116,121,112,101,61,100,97,116,101,116,105,109,101,45,108,111,99,97,108,93,44,105,110,112,117,116,91,116,121,112,101,61,109,111,110,116,104,93,44,105,110,112,117,116,91,116,121,112,101,61,116,105,109,101,93,123,45,119,101,98,107,105,116,45,97,112,112,101,97,114,97,110,99,101,58,108,105,115,116,98,111,120,125,116,101,120,116,97,114,101,97,123,111,118,101,114,102,108,111,119,58,97,117,116,111,59,114,101,115,105,122,101,58,118,101,114,116,105,99,97,108,125,102,105,101,108,100,115,101,116,123,109,105,110,45,119,105,100,116,104,58,48,59,112,97,100,100,105,110,103,58,48,59,109,97,114,103,105,110,58,48,59,98,111,114,100,101,114,58,48,125,108,101,103,101,110,100,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,59,112,97,100,100,105,110,103,58,48,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,53,114,101,109,59,102,111,110,116,45,115,105,122,101,58,49,46,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,105,110,104,101,114,105,116,59,99,111,108,111,114,58,105,110,104,101,114,105,116,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,114,109,97,108,125,112,114,111,103,114,101,115,115,123,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,98,97,115,101,108,105,110,101,125,91,116,121,112,101,61,110,117,109,98,101,114,93,58,58,45,119,101,98,107,105,116,45,105,110,110,101,114,45,115,112,105,110,45,98,117,116,116,111,110,44,91,116,121,112,101,61,110,117,109,98,101,114,93,58,58,45,119,101,98,107,105,116,45,111,117,116,101,114,45,115,112,105,110,45,98,117,116,116,111,110,123,104,101,105,103,104,116,58,97,117,116,111,125,91,116,121,112,101,61,115,101,97,114,99,104,93,123,111,117,116,108,105,110,101,45,111,102,102,115,101,116,58,45,50,112,120,59,45,119,101,98,107,105,116,45,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,125,91,116,121,112,101,61,115,101,97,114,99,104,93,58,58,45,119,101,98,107,105,116,45,115,101,97,114,99,104,45,100,101,99,111,114,97,116,105,111,110,123,45,119,101,98,107,105,116,45,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,125,58,58,45,119,101,98,107,105,116,45,102,105,108,101,45,117,112,108,111,97,100,45,98,117,116,116,111,110,123,102,111,110,116,58,105,110,104,101,114,105,116,59,45,119,101,98,107,105,116,45,97,112,112,101,97,114,97,110,99,101,58,98,117,116,116,111,110,125,111,117,116,112,117,116,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,125,115,117,109,109,97,114,121,123,100,105,115,112,108,97,121,58,108,105,115,116,45,105,116,101,109,59,99,117,114,115,111,114,58,112,111,105,110,116,101,114,125,116,101,109,112,108,97,116,101,123,100,105,115,112,108,97,121,58,110,111,110,101,125,91,104,105,100,100,101,110,93,123,100,105,115,112,108,97,121,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,46,104,49,44,46,104,50,44,46,104,51,44,46,104,52,44,46,104,53,44,46,104,54,44,104,49,44,104,50,44,104,51,44,104,52,44,104,53,44,104,54,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,53,114,101,109,59,102,111,110,116,45,119,101,105,103,104,116,58,53,48,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,50,125,46,104,49,44,104,49,123,102,111,110,116,45,115,105,122,101,58,50,46,53,114,101,109,125,46,104,50,44,104,50,123,102,111,110,116,45,115,105,122,101,58,50,114,101,109,125,46,104,51,44,104,51,123,102,111,110,116,45,115,105,122,101,58,49,46,55,53,114,101,109,125,46,104,52,44,104,52,123,102,111,110,116,45,115,105,122,101,58,49,46,53,114,101,109,125,46,104,53,44,104,53,123,102,111,110,116,45,115,105,122,101,58,49,46,50,53,114,101,109,125,46,104,54,44,104,54,123,102,111,110,116,45,115,105,122,101,58,49,114,101,109,125,46,108,101,97,100,123,102,111,110,116,45,115,105,122,101,58,49,46,50,53,114,101,109,59,102,111,110,116,45,119,101,105,103,104,116,58,51,48,48,125,46,100,105,115,112,108,97,121,45,49,123,102,111,110,116,45,115,105,122,101,58,54,114,101,109,59,102,111,110,116,45,119,101,105,103,104,116,58,51,48,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,50,125,46,100,105,115,112,108,97,121,45,50,123,102,111,110,116,45,115,105,122,101,58,53,46,53,114,101,109,59,102,111,110,116,45,119,101,105,103,104,116,58,51,48,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,50,125,46,100,105,115,112,108,97,121,45,51,123,102,111,110,116,45,115,105,122,101,58,52,46,53,114,101,109,59,102,111,110,116,45,119,101,105,103,104,116,58,51,48,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,50,125,46,100,105,115,112,108,97,121,45,52,123,102,111,110,116,45,115,105,122,101,58,51,46,53,114,101,109,59,102,111,110,116,45,119,101,105,103,104,116,58,51,48,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,50,125,104,114,123,109,97,114,103,105,110,45,116,111,112,58,49,114,101,109,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,114,101,109,59,98,111,114,100,101,114,58,48,59,98,111,114,100,101,114,45,116,111,112,58,49,112,120,32,115,111,108,105,100,32,114,103,98,97,40,48,44,48,44,48,44,46,49,41,125,46,115,109,97,108,108,44,115,109,97,108,108,123,102,111,110,116,45,115,105,122,101,58,56,48,37,59,102,111,110,116,45,119,101,105,103,104,116,58,52,48,48,125,46,109,97,114,107,44,109,97,114,107,123,112,97,100,100,105,110,103,58,46,50,101,109,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,99,102,56,101,51,125,46,108,105,115,116,45,117,110,115,116,121,108,101,100,123,112,97,100,100,105,110,103,45,108,101,102,116,58,48,59,108,105,115,116,45,115,116,121,108,101,58,110,111,110,101,125,46,108,105,115,116,45,105,110,108,105,110,101,123,112,97,100,100,105,110,103,45,108,101,102,116,58,48,59,108,105,115,116,45,115,116,121,108,101,58,110,111,110,101,125,46,108,105,115,116,45,105,110,108,105,110,101,45,105,116,101,109,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,125,46,108,105,115,116,45,105,110,108,105,110,101,45,105,116,101,109,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,123,109,97,114,103,105,110,45,114,105,103,104,116,58,46,53,114,101,109,125,46,105,110,105,116,105,97,108,105,115,109,123,102,111,110,116,45,115,105,122,101,58,57,48,37,59,116,101,120,116,45,116,114,97,110,115,102,111,114,109,58,117,112,112,101,114,99,97,115,101,125,46,98,108,111,99,107,113,117,111,116,101,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,114,101,109,59,102,111,110,116,45,115,105,122,101,58,49,46,50,53,114,101,109,125,46,98,108,111,99,107,113,117,111,116,101,45,102,111,111,116,101,114,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,102,111,110,116,45,115,105,122,101,58,56,48,37,59,99,111,108,111,114,58,35,54,99,55,53,55,100,125,46,98,108,111,99,107,113,117,111,116,101,45,102,111,111,116,101,114,58,58,98,101,102,111,114,101,123,99,111,110,116,101,110,116,58,34,92,50,48,49,52,92,48,48,65,48,34,125,46,105,109,103,45,102,108,117,105,100,123,109,97,120,45,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,97,117,116,111,125,46,105,109,103,45,116,104,117,109,98,110,97,105,108,123,112,97,100,100,105,110,103,58,46,50,53,114,101,109,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,97,117,116,111,125,46,102,105,103,117,114,101,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,125,46,102,105,103,117,114,101,45,105,109,103,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,125,46,102,105,103,117,114,101,45,99,97,112,116,105,111,110,123,102,111,110,116,45,115,105,122,101,58,57,48,37,59,99,111,108,111,114,58,35,54,99,55,53,55,100,125,99,111,100,101,123,102,111,110,116,45,115,105,122,101,58,56,55,46,53,37,59,99,111,108,111,114,58,35,101,56,51,101,56,99,59,119,111,114,100,45,98,114,101,97,107,58,98,114,101,97,107,45,119,111,114,100,125,97,62,99,111,100,101,123,99,111,108,111,114,58,105,110,104,101,114,105,116,125,107,98,100,123,112,97,100,100,105,110,103,58,46,50,114,101,109,32,46,52,114,101,109,59,102,111,110,116,45,115,105,122,101,58,56,55,46,53,37,59,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,114,101,109,125,107,98,100,32,107,98,100,123,112,97,100,100,105,110,103,58,48,59,102,111,110,116,45,115,105,122,101,58,49,48,48,37,59,102,111,110,116,45,119,101,105,103,104,116,58,55,48,48,125,112,114,101,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,102,111,110,116,45,115,105,122,101,58,56,55,46,53,37,59,99,111,108,111,114,58,35,50,49,50,53,50,57,125,112,114,101,32,99,111,100,101,123,102,111,110,116,45,115,105,122,101,58,105,110,104,101,114,105,116,59,99,111,108,111,114,58,105,110,104,101,114,105,116,59,119,111,114,100,45,98,114,101,97,107,58,110,111,114,109,97,108,125,46,112,114,101,45,115,99,114,111,108,108,97,98,108,101,123,109,97,120,45,104,101,105,103,104,116,58,51,52,48,112,120,59,111,118,101,114,102,108,111,119,45,121,58,115,99,114,111,108,108,125,46,99,111,110,116,97,105,110,101,114,123,119,105,100,116,104,58,49,48,48,37,59,112,97,100,100,105,110,103,45,114,105,103,104,116,58,49,53,112,120,59,112,97,100,100,105,110,103,45,108,101,102,116,58,49,53,112,120,59,109,97,114,103,105,110,45,114,105,103,104,116,58,97,117,116,111,59,109,97,114,103,105,110,45,108,101,102,116,58,97,117,116,111,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,99,111,110,116,97,105,110,101,114,123,109,97,120,45,119,105,100,116,104,58,53,52,48,112,120,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,55,54,56,112,120,41,123,46,99,111,110,116,97,105,110,101,114,123,109,97,120,45,119,105,100,116,104,58,55,50,48,112,120,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,57,57,50,112,120,41,123,46,99,111,110,116,97,105,110,101,114,123,109,97,120,45,119,105,100,116,104,58,57,54,48,112,120,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,49,50,48,48,112,120,41,123,46,99,111,110,116,97,105,110,101,114,123,109,97,120,45,119,105,100,116,104,58,49,49,52,48,112,120,125,125,46,99,111,110,116,97,105,110,101,114,45,102,108,117,105,100,123,119,105,100,116,104,58,49,48,48,37,59,112,97,100,100,105,110,103,45,114,105,103,104,116,58,49,53,112,120,59,112,97,100,100,105,110,103,45,108,101,102,116,58,49,53,112,120,59,109,97,114,103,105,110,45,114,105,103,104,116,58,97,117,116,111,59,109,97,114,103,105,110,45,108,101,102,116,58,97,117,116,111,125,46,114,111,119,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,53,112,120,59,109,97,114,103,105,110,45,108,101,102,116,58,45,49,53,112,120,125,46,110,111,45,103,117,116,116,101,114,115,123,109,97,114,103,105,110,45,114,105,103,104,116,58,48,59,109,97,114,103,105,110,45,108,101,102,116,58,48,125,46,110,111,45,103,117,116,116,101,114,115,62,46,99,111,108,44,46,110,111,45,103,117,116,116,101,114,115,62,91,99,108,97,115,115,42,61,99,111,108,45,93,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,48,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,125,46,99,111,108,44,46,99,111,108,45,49,44,46,99,111,108,45,49,48,44,46,99,111,108,45,49,49,44,46,99,111,108,45,49,50,44,46,99,111,108,45,50,44,46,99,111,108,45,51,44,46,99,111,108,45,52,44,46,99,111,108,45,53,44,46,99,111,108,45,54,44,46,99,111,108,45,55,44,46,99,111,108,45,56,44,46,99,111,108,45,57,44,46,99,111,108,45,97,117,116,111,44,46,99,111,108,45,108,103,44,46,99,111,108,45,108,103,45,49,44,46,99,111,108,45,108,103,45,49,48,44,46,99,111,108,45,108,103,45,49,49,44,46,99,111,108,45,108,103,45,49,50,44,46,99,111,108,45,108,103,45,50,44,46,99,111,108,45,108,103,45,51,44,46,99,111,108,45,108,103,45,52,44,46,99,111,108,45,108,103,45,53,44,46,99,111,108,45,108,103,45,54,44,46,99,111,108,45,108,103,45,55,44,46,99,111,108,45,108,103,45,56,44,46,99,111,108,45,108,103,45,57,44,46,99,111,108,45,108,103,45,97,117,116,111,44,46,99,111,108,45,109,100,44,46,99,111,108,45,109,100,45,49,44,46,99,111,108,45,109,100,45,49,48,44,46,99,111,108,45,109,100,45,49,49,44,46,99,111,108,45,109,100,45,49,50,44,46,99,111,108,45,109,100,45,50,44,46,99,111,108,45,109,100,45,51,44,46,99,111,108,45,109,100,45,52,44,46,99,111,108,45,109,100,45,53,44,46,99,111,108,45,109,100,45,54,44,46,99,111,108,45,109,100,45,55,44,46,99,111,108,45,109,100,45,56,44,46,99,111,108,45,109,100,45,57,44,46,99,111,108,45,109,100,45,97,117,116,111,44,46,99,111,108,45,115,109,44,46,99,111,108,45,115,109,45,49,44,46,99,111,108,45,115,109,45,49,48,44,46,99,111,108,45,115,109,45,49,49,44,46,99,111,108,45,115,109,45,49,50,44,46,99,111,108,45,115,109,45,50,44,46,99,111,108,45,115,109,45,51,44,46,99,111,108,45,115,109,45,52,44,46,99,111,108,45,115,109,45,53,44,46,99,111,108,45,115,109,45,54,44,46,99,111,108,45,115,109,45,55,44,46,99,111,108,45,115,109,45,56,44,46,99,111,108,45,115,109,45,57,44,46,99,111,108,45,115,109,45,97,117,116,111,44,46,99,111,108,45,120,108,44,46,99,111,108,45,120,108,45,49,44,46,99,111,108,45,120,108,45,49,48,44,46,99,111,108,45,120,108,45,49,49,44,46,99,111,108,45,120,108,45,49,50,44,46,99,111,108,45,120,108,45,50,44,46,99,111,108,45,120,108,45,51,44,46,99,111,108,45,120,108,45,52,44,46,99,111,108,45,120,108,45,53,44,46,99,111,108,45,120,108,45,54,44,46,99,111,108,45,120,108,45,55,44,46,99,111,108,45,120,108,45,56,44,46,99,111,108,45,120,108,45,57,44,46,99,111,108,45,120,108,45,97,117,116,111,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,119,105,100,116,104,58,49,48,48,37,59,112,97,100,100,105,110,103,45,114,105,103,104,116,58,49,53,112,120,59,112,97,100,100,105,110,103,45,108,101,102,116,58,49,53,112,120,125,46,99,111,108,123,45,109,115,45,102,108,101,120,45,112,114,101,102,101,114,114,101,100,45,115,105,122,101,58,48,59,102,108,101,120,45,98,97,115,105,115,58,48,59,45,109,115,45,102,108,101,120,45,112,111,115,105,116,105,118,101,58,49,59,102,108,101,120,45,103,114,111,119,58,49,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,99,111,108,45,97,117,116,111,123,45,109,115,45,102,108,101,120,58,48,32,48,32,97,117,116,111,59,102,108,101,120,58,48,32,48,32,97,117,116,111,59,119,105,100,116,104,58,97,117,116,111,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,99,111,108,45,49,123,45,109,115,45,102,108,101,120,58,48,32,48,32,56,46,51,51,51,51,51,51,37,59,102,108,101,120,58,48,32,48,32,56,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,56,46,51,51,51,51,51,51,37,125,46,99,111,108,45,50,123,45,109,115,45,102,108,101,120,58,48,32,48,32,49,54,46,54,54,54,54,54,55,37,59,102,108,101,120,58,48,32,48,32,49,54,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,49,54,46,54,54,54,54,54,55,37,125,46,99,111,108,45,51,123,45,109,115,45,102,108,101,120,58,48,32,48,32,50,53,37,59,102,108,101,120,58,48,32,48,32,50,53,37,59,109,97,120,45,119,105,100,116,104,58,50,53,37,125,46,99,111,108,45,52,123,45,109,115,45,102,108,101,120,58,48,32,48,32,51,51,46,51,51,51,51,51,51,37,59,102,108,101,120,58,48,32,48,32,51,51,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,51,51,46,51,51,51,51,51,51,37,125,46,99,111,108,45,53,123,45,109,115,45,102,108,101,120,58,48,32,48,32,52,49,46,54,54,54,54,54,55,37,59,102,108,101,120,58,48,32,48,32,52,49,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,52,49,46,54,54,54,54,54,55,37,125,46,99,111,108,45,54,123,45,109,115,45,102,108,101,120,58,48,32,48,32,53,48,37,59,102,108,101,120,58,48,32,48,32,53,48,37,59,109,97,120,45,119,105,100,116,104,58,53,48,37,125,46,99,111,108,45,55,123,45,109,115,45,102,108,101,120,58,48,32,48,32,53,56,46,51,51,51,51,51,51,37,59,102,108,101,120,58,48,32,48,32,53,56,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,53,56,46,51,51,51,51,51,51,37,125,46,99,111,108,45,56,123,45,109,115,45,102,108,101,120,58,48,32,48,32,54,54,46,54,54,54,54,54,55,37,59,102,108,101,120,58,48,32,48,32,54,54,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,54,54,46,54,54,54,54,54,55,37,125,46,99,111,108,45,57,123,45,109,115,45,102,108,101,120,58,48,32,48,32,55,53,37,59,102,108,101,120,58,48,32,48,32,55,53,37,59,109,97,120,45,119,105,100,116,104,58,55,53,37,125,46,99,111,108,45,49,48,123,45,109,115,45,102,108,101,120,58,48,32,48,32,56,51,46,51,51,51,51,51,51,37,59,102,108,101,120,58,48,32,48,32,56,51,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,56,51,46,51,51,51,51,51,51,37,125,46,99,111,108,45,49,49,123,45,109,115,45,102,108,101,120,58,48,32,48,32,57,49,46,54,54,54,54,54,55,37,59,102,108,101,120,58,48,32,48,32,57,49,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,57,49,46,54,54,54,54,54,55,37,125,46,99,111,108,45,49,50,123,45,109,115,45,102,108,101,120,58,48,32,48,32,49,48,48,37,59,102,108,101,120,58,48,32,48,32,49,48,48,37,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,111,114,100,101,114,45,102,105,114,115,116,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,45,49,59,111,114,100,101,114,58,45,49,125,46,111,114,100,101,114,45,108,97,115,116,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,51,59,111,114,100,101,114,58,49,51,125,46,111,114,100,101,114,45,48,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,48,59,111,114,100,101,114,58,48,125,46,111,114,100,101,114,45,49,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,59,111,114,100,101,114,58,49,125,46,111,114,100,101,114,45,50,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,50,59,111,114,100,101,114,58,50,125,46,111,114,100,101,114,45,51,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,51,59,111,114,100,101,114,58,51,125,46,111,114,100,101,114,45,52,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,52,59,111,114,100,101,114,58,52,125,46,111,114,100,101,114,45,53,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,53,59,111,114,100,101,114,58,53,125,46,111,114,100,101,114,45,54,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,54,59,111,114,100,101,114,58,54,125,46,111,114,100,101,114,45,55,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,55,59,111,114,100,101,114,58,55,125,46,111,114,100,101,114,45,56,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,56,59,111,114,100,101,114,58,56,125,46,111,114,100,101,114,45,57,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,57,59,111,114,100,101,114,58,57,125,46,111,114,100,101,114,45,49,48,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,48,59,111,114,100,101,114,58,49,48,125,46,111,114,100,101,114,45,49,49,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,49,59,111,114,100,101,114,58,49,49,125,46,111,114,100,101,114,45,49,50,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,50,59,111,114,100,101,114,58,49,50,125,46,111,102,102,115,101,116,45,49,123,109,97,114,103,105,110,45,108,101,102,116,58,56,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,50,123,109,97,114,103,105,110,45,108,101,102,116,58,49,54,46,54,54,54,54,54,55,37,125,46,111,102,102,115,101,116,45,51,123,109,97,114,103,105,110,45,108,101,102,116,58,50,53,37,125,46,111,102,102,115,101,116,45,52,123,109,97,114,103,105,110,45,108,101,102,116,58,51,51,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,53,123,109,97,114,103,105,110,45,108,101,102,116,58,52,49,46,54,54,54,54,54,55,37,125,46,111,102,102,115,101,116,45,54,123,109,97,114,103,105,110,45,108,101,102,116,58,53,48,37,125,46,111,102,102,115,101,116,45,55,123,109,97,114,103,105,110,45,108,101,102,116,58,53,56,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,56,123,109,97,114,103,105,110,45,108,101,102,116,58,54,54,46,54,54,54,54,54,55,37,125,46,111,102,102,115,101,116,45,57,123,109,97,114,103,105,110,45,108,101,102,116,58,55,53,37,125,46,111,102,102,115,101,116,45,49,48,123,109,97,114,103,105,110,45,108,101,102,116,58,56,51,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,49,49,123,109,97,114,103,105,110,45,108,101,102,116,58,57,49,46,54,54,54,54,54,55,37,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,99,111,108,45,115,109,123,45,109,115,45,102,108,101,120,45,112,114,101,102,101,114,114,101,100,45,115,105,122,101,58,48,59,102,108,101,120,45,98,97,115,105,115,58,48,59,45,109,115,45,102,108,101,120,45,112,111,115,105,116,105,118,101,58,49,59,102,108,101,120,45,103,114,111,119,58,49,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,99,111,108,45,115,109,45,97,117,116,111,123,45,109,115,45,102,108,101,120,58,48,32,48,32,97,117,116,111,59,102,108,101,120,58,48,32,48,32,97,117,116,111,59,119,105,100,116,104,58,97,117,116,111,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,99,111,108,45,115,109,45,49,123,45,109,115,45,102,108,101,120,58,48,32,48,32,56,46,51,51,51,51,51,51,37,59,102,108,101,120,58,48,32,48,32,56,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,56,46,51,51,51,51,51,51,37,125,46,99,111,108,45,115,109,45,50,123,45,109,115,45,102,108,101,120,58,48,32,48,32,49,54,46,54,54,54,54,54,55,37,59,102,108,101,120,58,48,32,48,32,49,54,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,49,54,46,54,54,54,54,54,55,37,125,46,99,111,108,45,115,109,45,51,123,45,109,115,45,102,108,101,120,58,48,32,48,32,50,53,37,59,102,108,101,120,58,48,32,48,32,50,53,37,59,109,97,120,45,119,105,100,116,104,58,50,53,37,125,46,99,111,108,45,115,109,45,52,123,45,109,115,45,102,108,101,120,58,48,32,48,32,51,51,46,51,51,51,51,51,51,37,59,102,108,101,120,58,48,32,48,32,51,51,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,51,51,46,51,51,51,51,51,51,37,125,46,99,111,108,45,115,109,45,53,123,45,109,115,45,102,108,101,120,58,48,32,48,32,52,49,46,54,54,54,54,54,55,37,59,102,108,101,120,58,48,32,48,32,52,49,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,52,49,46,54,54,54,54,54,55,37,125,46,99,111,108,45,115,109,45,54,123,45,109,115,45,102,108,101,120,58,48,32,48,32,53,48,37,59,102,108,101,120,58,48,32,48,32,53,48,37,59,109,97,120,45,119,105,100,116,104,58,53,48,37,125,46,99,111,108,45,115,109,45,55,123,45,109,115,45,102,108,101,120,58,48,32,48,32,53,56,46,51,51,51,51,51,51,37,59,102,108,101,120,58,48,32,48,32,53,56,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,53,56,46,51,51,51,51,51,51,37,125,46,99,111,108,45,115,109,45,56,123,45,109,115,45,102,108,101,120,58,48,32,48,32,54,54,46,54,54,54,54,54,55,37,59,102,108,101,120,58,48,32,48,32,54,54,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,54,54,46,54,54,54,54,54,55,37,125,46,99,111,108,45,115,109,45,57,123,45,109,115,45,102,108,101,120,58,48,32,48,32,55,53,37,59,102,108,101,120,58,48,32,48,32,55,53,37,59,109,97,120,45,119,105,100,116,104,58,55,53,37,125,46,99,111,108,45,115,109,45,49,48,123,45,109,115,45,102,108,101,120,58,48,32,48,32,56,51,46,51,51,51,51,51,51,37,59,102,108,101,120,58,48,32,48,32,56,51,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,56,51,46,51,51,51,51,51,51,37,125,46,99,111,108,45,115,109,45,49,49,123,45,109,115,45,102,108,101,120,58,48,32,48,32,57,49,46,54,54,54,54,54,55,37,59,102,108,101,120,58,48,32,48,32,57,49,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,57,49,46,54,54,54,54,54,55,37,125,46,99,111,108,45,115,109,45,49,50,123,45,109,115,45,102,108,101,120,58,48,32,48,32,49,48,48,37,59,102,108,101,120,58,48,32,48,32,49,48,48,37,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,111,114,100,101,114,45,115,109,45,102,105,114,115,116,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,45,49,59,111,114,100,101,114,58,45,49,125,46,111,114,100,101,114,45,115,109,45,108,97,115,116,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,51,59,111,114,100,101,114,58,49,51,125,46,111,114,100,101,114,45,115,109,45,48,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,48,59,111,114,100,101,114,58,48,125,46,111,114,100,101,114,45,115,109,45,49,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,59,111,114,100,101,114,58,49,125,46,111,114,100,101,114,45,115,109,45,50,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,50,59,111,114,100,101,114,58,50,125,46,111,114,100,101,114,45,115,109,45,51,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,51,59,111,114,100,101,114,58,51,125,46,111,114,100,101,114,45,115,109,45,52,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,52,59,111,114,100,101,114,58,52,125,46,111,114,100,101,114,45,115,109,45,53,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,53,59,111,114,100,101,114,58,53,125,46,111,114,100,101,114,45,115,109,45,54,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,54,59,111,114,100,101,114,58,54,125,46,111,114,100,101,114,45,115,109,45,55,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,55,59,111,114,100,101,114,58,55,125,46,111,114,100,101,114,45,115,109,45,56,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,56,59,111,114,100,101,114,58,56,125,46,111,114,100,101,114,45,115,109,45,57,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,57,59,111,114,100,101,114,58,57,125,46,111,114,100,101,114,45,115,109,45,49,48,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,48,59,111,114,100,101,114,58,49,48,125,46,111,114,100,101,114,45,115,109,45,49,49,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,49,59,111,114,100,101,114,58,49,49,125,46,111,114,100,101,114,45,115,109,45,49,50,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,50,59,111,114,100,101,114,58,49,50,125,46,111,102,102,115,101,116,45,115,109,45,48,123,109,97,114,103,105,110,45,108,101,102,116,58,48,125,46,111,102,102,115,101,116,45,115,109,45,49,123,109,97,114,103,105,110,45,108,101,102,116,58,56,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,115,109,45,50,123,109,97,114,103,105,110,45,108,101,102,116,58,49,54,46,54,54,54,54,54,55,37,125,46,111,102,102,115,101,116,45,115,109,45,51,123,109,97,114,103,105,110,45,108,101,102,116,58,50,53,37,125,46,111,102,102,115,101,116,45,115,109,45,52,123,109,97,114,103,105,110,45,108,101,102,116,58,51,51,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,115,109,45,53,123,109,97,114,103,105,110,45,108,101,102,116,58,52,49,46,54,54,54,54,54,55,37,125,46,111,102,102,115,101,116,45,115,109,45,54,123,109,97,114,103,105,110,45,108,101,102,116,58,53,48,37,125,46,111,102,102,115,101,116,45,115,109,45,55,123,109,97,114,103,105,110,45,108,101,102,116,58,53,56,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,115,109,45,56,123,109,97,114,103,105,110,45,108,101,102,116,58,54,54,46,54,54,54,54,54,55,37,125,46,111,102,102,115,101,116,45,115,109,45,57,123,109,97,114,103,105,110,45,108,101,102,116,58,55,53,37,125,46,111,102,102,115,101,116,45,115,109,45,49,48,123,109,97,114,103,105,110,45,108,101,102,116,58,56,51,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,115,109,45,49,49,123,109,97,114,103,105,110,45,108,101,102,116,58,57,49,46,54,54,54,54,54,55,37,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,55,54,56,112,120,41,123,46,99,111,108,45,109,100,123,45,109,115,45,102,108,101,120,45,112,114,101,102,101,114,114,101,100,45,115,105,122,101,58,48,59,102,108,101,120,45,98,97,115,105,115,58,48,59,45,109,115,45,102,108,101,120,45,112,111,115,105,116,105,118,101,58,49,59,102,108,101,120,45,103,114,111,119,58,49,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,99,111,108,45,109,100,45,97,117,116,111,123,45,109,115,45,102,108,101,120,58,48,32,48,32,97,117,116,111,59,102,108,101,120,58,48,32,48,32,97,117,116,111,59,119,105,100,116,104,58,97,117,116,111,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,99,111,108,45,109,100,45,49,123,45,109,115,45,102,108,101,120,58,48,32,48,32,56,46,51,51,51,51,51,51,37,59,102,108,101,120,58,48,32,48,32,56,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,56,46,51,51,51,51,51,51,37,125,46,99,111,108,45,109,100,45,50,123,45,109,115,45,102,108,101,120,58,48,32,48,32,49,54,46,54,54,54,54,54,55,37,59,102,108,101,120,58,48,32,48,32,49,54,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,49,54,46,54,54,54,54,54,55,37,125,46,99,111,108,45,109,100,45,51,123,45,109,115,45,102,108,101,120,58,48,32,48,32,50,53,37,59,102,108,101,120,58,48,32,48,32,50,53,37,59,109,97,120,45,119,105,100,116,104,58,50,53,37,125,46,99,111,108,45,109,100,45,52,123,45,109,115,45,102,108,101,120,58,48,32,48,32,51,51,46,51,51,51,51,51,51,37,59,102,108,101,120,58,48,32,48,32,51,51,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,51,51,46,51,51,51,51,51,51,37,125,46,99,111,108,45,109,100,45,53,123,45,109,115,45,102,108,101,120,58,48,32,48,32,52,49,46,54,54,54,54,54,55,37,59,102,108,101,120,58,48,32,48,32,52,49,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,52,49,46,54,54,54,54,54,55,37,125,46,99,111,108,45,109,100,45,54,123,45,109,115,45,102,108,101,120,58,48,32,48,32,53,48,37,59,102,108,101,120,58,48,32,48,32,53,48,37,59,109,97,120,45,119,105,100,116,104,58,53,48,37,125,46,99,111,108,45,109,100,45,55,123,45,109,115,45,102,108,101,120,58,48,32,48,32,53,56,46,51,51,51,51,51,51,37,59,102,108,101,120,58,48,32,48,32,53,56,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,53,56,46,51,51,51,51,51,51,37,125,46,99,111,108,45,109,100,45,56,123,45,109,115,45,102,108,101,120,58,48,32,48,32,54,54,46,54,54,54,54,54,55,37,59,102,108,101,120,58,48,32,48,32,54,54,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,54,54,46,54,54,54,54,54,55,37,125,46,99,111,108,45,109,100,45,57,123,45,109,115,45,102,108,101,120,58,48,32,48,32,55,53,37,59,102,108,101,120,58,48,32,48,32,55,53,37,59,109,97,120,45,119,105,100,116,104,58,55,53,37,125,46,99,111,108,45,109,100,45,49,48,123,45,109,115,45,102,108,101,120,58,48,32,48,32,56,51,46,51,51,51,51,51,51,37,59,102,108,101,120,58,48,32,48,32,56,51,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,56,51,46,51,51,51,51,51,51,37,125,46,99,111,108,45,109,100,45,49,49,123,45,109,115,45,102,108,101,120,58,48,32,48,32,57,49,46,54,54,54,54,54,55,37,59,102,108,101,120,58,48,32,48,32,57,49,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,57,49,46,54,54,54,54,54,55,37,125,46,99,111,108,45,109,100,45,49,50,123,45,109,115,45,102,108,101,120,58,48,32,48,32,49,48,48,37,59,102,108,101,120,58,48,32,48,32,49,48,48,37,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,111,114,100,101,114,45,109,100,45,102,105,114,115,116,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,45,49,59,111,114,100,101,114,58,45,49,125,46,111,114,100,101,114,45,109,100,45,108,97,115,116,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,51,59,111,114,100,101,114,58,49,51,125,46,111,114,100,101,114,45,109,100,45,48,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,48,59,111,114,100,101,114,58,48,125,46,111,114,100,101,114,45,109,100,45,49,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,59,111,114,100,101,114,58,49,125,46,111,114,100,101,114,45,109,100,45,50,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,50,59,111,114,100,101,114,58,50,125,46,111,114,100,101,114,45,109,100,45,51,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,51,59,111,114,100,101,114,58,51,125,46,111,114,100,101,114,45,109,100,45,52,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,52,59,111,114,100,101,114,58,52,125,46,111,114,100,101,114,45,109,100,45,53,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,53,59,111,114,100,101,114,58,53,125,46,111,114,100,101,114,45,109,100,45,54,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,54,59,111,114,100,101,114,58,54,125,46,111,114,100,101,114,45,109,100,45,55,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,55,59,111,114,100,101,114,58,55,125,46,111,114,100,101,114,45,109,100,45,56,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,56,59,111,114,100,101,114,58,56,125,46,111,114,100,101,114,45,109,100,45,57,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,57,59,111,114,100,101,114,58,57,125,46,111,114,100,101,114,45,109,100,45,49,48,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,48,59,111,114,100,101,114,58,49,48,125,46,111,114,100,101,114,45,109,100,45,49,49,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,49,59,111,114,100,101,114,58,49,49,125,46,111,114,100,101,114,45,109,100,45,49,50,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,50,59,111,114,100,101,114,58,49,50,125,46,111,102,102,115,101,116,45,109,100,45,48,123,109,97,114,103,105,110,45,108,101,102,116,58,48,125,46,111,102,102,115,101,116,45,109,100,45,49,123,109,97,114,103,105,110,45,108,101,102,116,58,56,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,109,100,45,50,123,109,97,114,103,105,110,45,108,101,102,116,58,49,54,46,54,54,54,54,54,55,37,125,46,111,102,102,115,101,116,45,109,100,45,51,123,109,97,114,103,105,110,45,108,101,102,116,58,50,53,37,125,46,111,102,102,115,101,116,45,109,100,45,52,123,109,97,114,103,105,110,45,108,101,102,116,58,51,51,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,109,100,45,53,123,109,97,114,103,105,110,45,108,101,102,116,58,52,49,46,54,54,54,54,54,55,37,125,46,111,102,102,115,101,116,45,109,100,45,54,123,109,97,114,103,105,110,45,108,101,102,116,58,53,48,37,125,46,111,102,102,115,101,116,45,109,100,45,55,123,109,97,114,103,105,110,45,108,101,102,116,58,53,56,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,109,100,45,56,123,109,97,114,103,105,110,45,108,101,102,116,58,54,54,46,54,54,54,54,54,55,37,125,46,111,102,102,115,101,116,45,109,100,45,57,123,109,97,114,103,105,110,45,108,101,102,116,58,55,53,37,125,46,111,102,102,115,101,116,45,109,100,45,49,48,123,109,97,114,103,105,110,45,108,101,102,116,58,56,51,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,109,100,45,49,49,123,109,97,114,103,105,110,45,108,101,102,116,58,57,49,46,54,54,54,54,54,55,37,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,57,57,50,112,120,41,123,46,99,111,108,45,108,103,123,45,109,115,45,102,108,101,120,45,112,114,101,102,101,114,114,101,100,45,115,105,122,101,58,48,59,102,108,101,120,45,98,97,115,105,115,58,48,59,45,109,115,45,102,108,101,120,45,112,111,115,105,116,105,118,101,58,49,59,102,108,101,120,45,103,114,111,119,58,49,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,99,111,108,45,108,103,45,97,117,116,111,123,45,109,115,45,102,108,101,120,58,48,32,48,32,97,117,116,111,59,102,108,101,120,58,48,32,48,32,97,117,116,111,59,119,105,100,116,104,58,97,117,116,111,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,99,111,108,45,108,103,45,49,123,45,109,115,45,102,108,101,120,58,48,32,48,32,56,46,51,51,51,51,51,51,37,59,102,108,101,120,58,48,32,48,32,56,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,56,46,51,51,51,51,51,51,37,125,46,99,111,108,45,108,103,45,50,123,45,109,115,45,102,108,101,120,58,48,32,48,32,49,54,46,54,54,54,54,54,55,37,59,102,108,101,120,58,48,32,48,32,49,54,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,49,54,46,54,54,54,54,54,55,37,125,46,99,111,108,45,108,103,45,51,123,45,109,115,45,102,108,101,120,58,48,32,48,32,50,53,37,59,102,108,101,120,58,48,32,48,32,50,53,37,59,109,97,120,45,119,105,100,116,104,58,50,53,37,125,46,99,111,108,45,108,103,45,52,123,45,109,115,45,102,108,101,120,58,48,32,48,32,51,51,46,51,51,51,51,51,51,37,59,102,108,101,120,58,48,32,48,32,51,51,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,51,51,46,51,51,51,51,51,51,37,125,46,99,111,108,45,108,103,45,53,123,45,109,115,45,102,108,101,120,58,48,32,48,32,52,49,46,54,54,54,54,54,55,37,59,102,108,101,120,58,48,32,48,32,52,49,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,52,49,46,54,54,54,54,54,55,37,125,46,99,111,108,45,108,103,45,54,123,45,109,115,45,102,108,101,120,58,48,32,48,32,53,48,37,59,102,108,101,120,58,48,32,48,32,53,48,37,59,109,97,120,45,119,105,100,116,104,58,53,48,37,125,46,99,111,108,45,108,103,45,55,123,45,109,115,45,102,108,101,120,58,48,32,48,32,53,56,46,51,51,51,51,51,51,37,59,102,108,101,120,58,48,32,48,32,53,56,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,53,56,46,51,51,51,51,51,51,37,125,46,99,111,108,45,108,103,45,56,123,45,109,115,45,102,108,101,120,58,48,32,48,32,54,54,46,54,54,54,54,54,55,37,59,102,108,101,120,58,48,32,48,32,54,54,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,54,54,46,54,54,54,54,54,55,37,125,46,99,111,108,45,108,103,45,57,123,45,109,115,45,102,108,101,120,58,48,32,48,32,55,53,37,59,102,108,101,120,58,48,32,48,32,55,53,37,59,109,97,120,45,119,105,100,116,104,58,55,53,37,125,46,99,111,108,45,108,103,45,49,48,123,45,109,115,45,102,108,101,120,58,48,32,48,32,56,51,46,51,51,51,51,51,51,37,59,102,108,101,120,58,48,32,48,32,56,51,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,56,51,46,51,51,51,51,51,51,37,125,46,99,111,108,45,108,103,45,49,49,123,45,109,115,45,102,108,101,120,58,48,32,48,32,57,49,46,54,54,54,54,54,55,37,59,102,108,101,120,58,48,32,48,32,57,49,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,57,49,46,54,54,54,54,54,55,37,125,46,99,111,108,45,108,103,45,49,50,123,45,109,115,45,102,108,101,120,58,48,32,48,32,49,48,48,37,59,102,108,101,120,58,48,32,48,32,49,48,48,37,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,111,114,100,101,114,45,108,103,45,102,105,114,115,116,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,45,49,59,111,114,100,101,114,58,45,49,125,46,111,114,100,101,114,45,108,103,45,108,97,115,116,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,51,59,111,114,100,101,114,58,49,51,125,46,111,114,100,101,114,45,108,103,45,48,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,48,59,111,114,100,101,114,58,48,125,46,111,114,100,101,114,45,108,103,45,49,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,59,111,114,100,101,114,58,49,125,46,111,114,100,101,114,45,108,103,45,50,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,50,59,111,114,100,101,114,58,50,125,46,111,114,100,101,114,45,108,103,45,51,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,51,59,111,114,100,101,114,58,51,125,46,111,114,100,101,114,45,108,103,45,52,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,52,59,111,114,100,101,114,58,52,125,46,111,114,100,101,114,45,108,103,45,53,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,53,59,111,114,100,101,114,58,53,125,46,111,114,100,101,114,45,108,103,45,54,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,54,59,111,114,100,101,114,58,54,125,46,111,114,100,101,114,45,108,103,45,55,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,55,59,111,114,100,101,114,58,55,125,46,111,114,100,101,114,45,108,103,45,56,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,56,59,111,114,100,101,114,58,56,125,46,111,114,100,101,114,45,108,103,45,57,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,57,59,111,114,100,101,114,58,57,125,46,111,114,100,101,114,45,108,103,45,49,48,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,48,59,111,114,100,101,114,58,49,48,125,46,111,114,100,101,114,45,108,103,45,49,49,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,49,59,111,114,100,101,114,58,49,49,125,46,111,114,100,101,114,45,108,103,45,49,50,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,50,59,111,114,100,101,114,58,49,50,125,46,111,102,102,115,101,116,45,108,103,45,48,123,109,97,114,103,105,110,45,108,101,102,116,58,48,125,46,111,102,102,115,101,116,45,108,103,45,49,123,109,97,114,103,105,110,45,108,101,102,116,58,56,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,108,103,45,50,123,109,97,114,103,105,110,45,108,101,102,116,58,49,54,46,54,54,54,54,54,55,37,125,46,111,102,102,115,101,116,45,108,103,45,51,123,109,97,114,103,105,110,45,108,101,102,116,58,50,53,37,125,46,111,102,102,115,101,116,45,108,103,45,52,123,109,97,114,103,105,110,45,108,101,102,116,58,51,51,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,108,103,45,53,123,109,97,114,103,105,110,45,108,101,102,116,58,52,49,46,54,54,54,54,54,55,37,125,46,111,102,102,115,101,116,45,108,103,45,54,123,109,97,114,103,105,110,45,108,101,102,116,58,53,48,37,125,46,111,102,102,115,101,116,45,108,103,45,55,123,109,97,114,103,105,110,45,108,101,102,116,58,53,56,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,108,103,45,56,123,109,97,114,103,105,110,45,108,101,102,116,58,54,54,46,54,54,54,54,54,55,37,125,46,111,102,102,115,101,116,45,108,103,45,57,123,109,97,114,103,105,110,45,108,101,102,116,58,55,53,37,125,46,111,102,102,115,101,116,45,108,103,45,49,48,123,109,97,114,103,105,110,45,108,101,102,116,58,56,51,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,108,103,45,49,49,123,109,97,114,103,105,110,45,108,101,102,116,58,57,49,46,54,54,54,54,54,55,37,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,49,50,48,48,112,120,41,123,46,99,111,108,45,120,108,123,45,109,115,45,102,108,101,120,45,112,114,101,102,101,114,114,101,100,45,115,105,122,101,58,48,59,102,108,101,120,45,98,97,115,105,115,58,48,59,45,109,115,45,102,108,101,120,45,112,111,115,105,116,105,118,101,58,49,59,102,108,101,120,45,103,114,111,119,58,49,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,99,111,108,45,120,108,45,97,117,116,111,123,45,109,115,45,102,108,101,120,58,48,32,48,32,97,117,116,111,59,102,108,101,120,58,48,32,48,32,97,117,116,111,59,119,105,100,116,104,58,97,117,116,111,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,99,111,108,45,120,108,45,49,123,45,109,115,45,102,108,101,120,58,48,32,48,32,56,46,51,51,51,51,51,51,37,59,102,108,101,120,58,48,32,48,32,56,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,56,46,51,51,51,51,51,51,37,125,46,99,111,108,45,120,108,45,50,123,45,109,115,45,102,108,101,120,58,48,32,48,32,49,54,46,54,54,54,54,54,55,37,59,102,108,101,120,58,48,32,48,32,49,54,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,49,54,46,54,54,54,54,54,55,37,125,46,99,111,108,45,120,108,45,51,123,45,109,115,45,102,108,101,120,58,48,32,48,32,50,53,37,59,102,108,101,120,58,48,32,48,32,50,53,37,59,109,97,120,45,119,105,100,116,104,58,50,53,37,125,46,99,111,108,45,120,108,45,52,123,45,109,115,45,102,108,101,120,58,48,32,48,32,51,51,46,51,51,51,51,51,51,37,59,102,108,101,120,58,48,32,48,32,51,51,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,51,51,46,51,51,51,51,51,51,37,125,46,99,111,108,45,120,108,45,53,123,45,109,115,45,102,108,101,120,58,48,32,48,32,52,49,46,54,54,54,54,54,55,37,59,102,108,101,120,58,48,32,48,32,52,49,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,52,49,46,54,54,54,54,54,55,37,125,46,99,111,108,45,120,108,45,54,123,45,109,115,45,102,108,101,120,58,48,32,48,32,53,48,37,59,102,108,101,120,58,48,32,48,32,53,48,37,59,109,97,120,45,119,105,100,116,104,58,53,48,37,125,46,99,111,108,45,120,108,45,55,123,45,109,115,45,102,108,101,120,58,48,32,48,32,53,56,46,51,51,51,51,51,51,37,59,102,108,101,120,58,48,32,48,32,53,56,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,53,56,46,51,51,51,51,51,51,37,125,46,99,111,108,45,120,108,45,56,123,45,109,115,45,102,108,101,120,58,48,32,48,32,54,54,46,54,54,54,54,54,55,37,59,102,108,101,120,58,48,32,48,32,54,54,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,54,54,46,54,54,54,54,54,55,37,125,46,99,111,108,45,120,108,45,57,123,45,109,115,45,102,108,101,120,58,48,32,48,32,55,53,37,59,102,108,101,120,58,48,32,48,32,55,53,37,59,109,97,120,45,119,105,100,116,104,58,55,53,37,125,46,99,111,108,45,120,108,45,49,48,123,45,109,115,45,102,108,101,120,58,48,32,48,32,56,51,46,51,51,51,51,51,51,37,59,102,108,101,120,58,48,32,48,32,56,51,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,56,51,46,51,51,51,51,51,51,37,125,46,99,111,108,45,120,108,45,49,49,123,45,109,115,45,102,108,101,120,58,48,32,48,32,57,49,46,54,54,54,54,54,55,37,59,102,108,101,120,58,48,32,48,32,57,49,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,57,49,46,54,54,54,54,54,55,37,125,46,99,111,108,45,120,108,45,49,50,123,45,109,115,45,102,108,101,120,58,48,32,48,32,49,48,48,37,59,102,108,101,120,58,48,32,48,32,49,48,48,37,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,111,114,100,101,114,45,120,108,45,102,105,114,115,116,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,45,49,59,111,114,100,101,114,58,45,49,125,46,111,114,100,101,114,45,120,108,45,108,97,115,116,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,51,59,111,114,100,101,114,58,49,51,125,46,111,114,100,101,114,45,120,108,45,48,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,48,59,111,114,100,101,114,58,48,125,46,111,114,100,101,114,45,120,108,45,49,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,59,111,114,100,101,114,58,49,125,46,111,114,100,101,114,45,120,108,45,50,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,50,59,111,114,100,101,114,58,50,125,46,111,114,100,101,114,45,120,108,45,51,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,51,59,111,114,100,101,114,58,51,125,46,111,114,100,101,114,45,120,108,45,52,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,52,59,111,114,100,101,114,58,52,125,46,111,114,100,101,114,45,120,108,45,53,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,53,59,111,114,100,101,114,58,53,125,46,111,114,100,101,114,45,120,108,45,54,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,54,59,111,114,100,101,114,58,54,125,46,111,114,100,101,114,45,120,108,45,55,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,55,59,111,114,100,101,114,58,55,125,46,111,114,100,101,114,45,120,108,45,56,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,56,59,111,114,100,101,114,58,56,125,46,111,114,100,101,114,45,120,108,45,57,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,57,59,111,114,100,101,114,58,57,125,46,111,114,100,101,114,45,120,108,45,49,48,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,48,59,111,114,100,101,114,58,49,48,125,46,111,114,100,101,114,45,120,108,45,49,49,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,49,59,111,114,100,101,114,58,49,49,125,46,111,114,100,101,114,45,120,108,45,49,50,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,50,59,111,114,100,101,114,58,49,50,125,46,111,102,102,115,101,116,45,120,108,45,48,123,109,97,114,103,105,110,45,108,101,102,116,58,48,125,46,111,102,102,115,101,116,45,120,108,45,49,123,109,97,114,103,105,110,45,108,101,102,116,58,56,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,120,108,45,50,123,109,97,114,103,105,110,45,108,101,102,116,58,49,54,46,54,54,54,54,54,55,37,125,46,111,102,102,115,101,116,45,120,108,45,51,123,109,97,114,103,105,110,45,108,101,102,116,58,50,53,37,125,46,111,102,102,115,101,116,45,120,108,45,52,123,109,97,114,103,105,110,45,108,101,102,116,58,51,51,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,120,108,45,53,123,109,97,114,103,105,110,45,108,101,102,116,58,52,49,46,54,54,54,54,54,55,37,125,46,111,102,102,115,101,116,45,120,108,45,54,123,109,97,114,103,105,110,45,108,101,102,116,58,53,48,37,125,46,111,102,102,115,101,116,45,120,108,45,55,123,109,97,114,103,105,110,45,108,101,102,116,58,53,56,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,120,108,45,56,123,109,97,114,103,105,110,45,108,101,102,116,58,54,54,46,54,54,54,54,54,55,37,125,46,111,102,102,115,101,116,45,120,108,45,57,123,109,97,114,103,105,110,45,108,101,102,116,58,55,53,37,125,46,111,102,102,115,101,116,45,120,108,45,49,48,123,109,97,114,103,105,110,45,108,101,102,116,58,56,51,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,120,108,45,49,49,123,109,97,114,103,105,110,45,108,101,102,116,58,57,49,46,54,54,54,54,54,55,37,125,125,46,116,97,98,108,101,123,119,105,100,116,104,58,49,48,48,37,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,114,101,109,59,99,111,108,111,114,58,35,50,49,50,53,50,57,125,46,116,97,98,108,101,32,116,100,44,46,116,97,98,108,101,32,116,104,123,112,97,100,100,105,110,103,58,46,55,53,114,101,109,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,116,111,112,59,98,111,114,100,101,114,45,116,111,112,58,49,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,125,46,116,97,98,108,101,32,116,104,101,97,100,32,116,104,123,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,98,111,116,116,111,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,50,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,125,46,116,97,98,108,101,32,116,98,111,100,121,43,116,98,111,100,121,123,98,111,114,100,101,114,45,116,111,112,58,50,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,125,46,116,97,98,108,101,45,115,109,32,116,100,44,46,116,97,98,108,101,45,115,109,32,116,104,123,112,97,100,100,105,110,103,58,46,51,114,101,109,125,46,116,97,98,108,101,45,98,111,114,100,101,114,101,100,123,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,125,46,116,97,98,108,101,45,98,111,114,100,101,114,101,100,32,116,100,44,46,116,97,98,108,101,45,98,111,114,100,101,114,101,100,32,116,104,123,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,125,46,116,97,98,108,101,45,98,111,114,100,101,114,101,100,32,116,104,101,97,100,32,116,100,44,46,116,97,98,108,101,45,98,111,114,100,101,114,101,100,32,116,104,101,97,100,32,116,104,123,98,111,114,100,101,114,45,98,111,116,116,111,109,45,119,105,100,116,104,58,50,112,120,125,46,116,97,98,108,101,45,98,111,114,100,101,114,108,101,115,115,32,116,98,111,100,121,43,116,98,111,100,121,44,46,116,97,98,108,101,45,98,111,114,100,101,114,108,101,115,115,32,116,100,44,46,116,97,98,108,101,45,98,111,114,100,101,114,108,101,115,115,32,116,104,44,46,116,97,98,108,101,45,98,111,114,100,101,114,108,101,115,115,32,116,104,101,97,100,32,116,104,123,98,111,114,100,101,114,58,48,125,46,116,97,98,108,101,45,115,116,114,105,112,101,100,32,116,98,111,100,121,32,116,114,58,110,116,104,45,111,102,45,116,121,112,101,40,111,100,100,41,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,48,53,41,125,46,116,97,98,108,101,45,104,111,118,101,114,32,116,98,111,100,121,32,116,114,58,104,111,118,101,114,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,48,55,53,41,125,46,116,97,98,108,101,45,112,114,105,109,97,114,121,44,46,116,97,98,108,101,45,112,114,105,109,97,114,121,62,116,100,44,46,116,97,98,108,101,45,112,114,105,109,97,114,121,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,56,100,97,102,102,125,46,116,97,98,108,101,45,112,114,105,109,97,114,121,32,116,98,111,100,121,43,116,98,111,100,121,44,46,116,97,98,108,101,45,112,114,105,109,97,114,121,32,116,100,44,46,116,97,98,108,101,45,112,114,105,109,97,114,121,32,116,104,44,46,116,97,98,108,101,45,112,114,105,109,97,114,121,32,116,104,101,97,100,32,116,104,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,55,97,98,97,102,102,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,112,114,105,109,97,114,121,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,57,102,99,100,102,102,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,112,114,105,109,97,114,121,58,104,111,118,101,114,62,116,100,44,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,112,114,105,109,97,114,121,58,104,111,118,101,114,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,57,102,99,100,102,102,125,46,116,97,98,108,101,45,115,101,99,111,110,100,97,114,121,44,46,116,97,98,108,101,45,115,101,99,111,110,100,97,114,121,62,116,100,44,46,116,97,98,108,101,45,115,101,99,111,110,100,97,114,121,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,54,100,56,100,98,125,46,116,97,98,108,101,45,115,101,99,111,110,100,97,114,121,32,116,98,111,100,121,43,116,98,111,100,121,44,46,116,97,98,108,101,45,115,101,99,111,110,100,97,114,121,32,116,100,44,46,116,97,98,108,101,45,115,101,99,111,110,100,97,114,121,32,116,104,44,46,116,97,98,108,101,45,115,101,99,111,110,100,97,114,121,32,116,104,101,97,100,32,116,104,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,98,51,98,55,98,98,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,115,101,99,111,110,100,97,114,121,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,99,56,99,98,99,102,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,115,101,99,111,110,100,97,114,121,58,104,111,118,101,114,62,116,100,44,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,115,101,99,111,110,100,97,114,121,58,104,111,118,101,114,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,99,56,99,98,99,102,125,46,116,97,98,108,101,45,115,117,99,99,101,115,115,44,46,116,97,98,108,101,45,115,117,99,99,101,115,115,62,116,100,44,46,116,97,98,108,101,45,115,117,99,99,101,115,115,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,99,51,101,54,99,98,125,46,116,97,98,108,101,45,115,117,99,99,101,115,115,32,116,98,111,100,121,43,116,98,111,100,121,44,46,116,97,98,108,101,45,115,117,99,99,101,115,115,32,116,100,44,46,116,97,98,108,101,45,115,117,99,99,101,115,115,32,116,104,44,46,116,97,98,108,101,45,115,117,99,99,101,115,115,32,116,104,101,97,100,32,116,104,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,56,102,100,49,57,101,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,115,117,99,99,101,115,115,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,49,100,102,98,98,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,115,117,99,99,101,115,115,58,104,111,118,101,114,62,116,100,44,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,115,117,99,99,101,115,115,58,104,111,118,101,114,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,49,100,102,98,98,125,46,116,97,98,108,101,45,105,110,102,111,44,46,116,97,98,108,101,45,105,110,102,111,62,116,100,44,46,116,97,98,108,101,45,105,110,102,111,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,101,101,53,101,98,125,46,116,97,98,108,101,45,105,110,102,111,32,116,98,111,100,121,43,116,98,111,100,121,44,46,116,97,98,108,101,45,105,110,102,111,32,116,100,44,46,116,97,98,108,101,45,105,110,102,111,32,116,104,44,46,116,97,98,108,101,45,105,110,102,111,32,116,104,101,97,100,32,116,104,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,56,54,99,102,100,97,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,105,110,102,111,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,97,98,100,100,101,53,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,105,110,102,111,58,104,111,118,101,114,62,116,100,44,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,105,110,102,111,58,104,111,118,101,114,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,97,98,100,100,101,53,125,46,116,97,98,108,101,45,119,97,114,110,105,110,103,44,46,116,97,98,108,101,45,119,97,114,110,105,110,103,62,116,100,44,46,116,97,98,108,101,45,119,97,114,110,105,110,103,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,101,101,98,97,125,46,116,97,98,108,101,45,119,97,114,110,105,110,103,32,116,98,111,100,121,43,116,98,111,100,121,44,46,116,97,98,108,101,45,119,97,114,110,105,110,103,32,116,100,44,46,116,97,98,108,101,45,119,97,114,110,105,110,103,32,116,104,44,46,116,97,98,108,101,45,119,97,114,110,105,110,103,32,116,104,101,97,100,32,116,104,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,102,100,102,55,101,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,119,97,114,110,105,110,103,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,101,56,97,49,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,119,97,114,110,105,110,103,58,104,111,118,101,114,62,116,100,44,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,119,97,114,110,105,110,103,58,104,111,118,101,114,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,101,56,97,49,125,46,116,97,98,108,101,45,100,97,110,103,101,114,44,46,116,97,98,108,101,45,100,97,110,103,101,114,62,116,100,44,46,116,97,98,108,101,45,100,97,110,103,101,114,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,53,99,54,99,98,125,46,116,97,98,108,101,45,100,97,110,103,101,114,32,116,98,111,100,121,43,116,98,111,100,121,44,46,116,97,98,108,101,45,100,97,110,103,101,114,32,116,100,44,46,116,97,98,108,101,45,100,97,110,103,101,114,32,116,104,44,46,116,97,98,108,101,45,100,97,110,103,101,114,32,116,104,101,97,100,32,116,104,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,101,100,57,54,57,101,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,100,97,110,103,101,114,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,49,98,48,98,55,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,100,97,110,103,101,114,58,104,111,118,101,114,62,116,100,44,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,100,97,110,103,101,114,58,104,111,118,101,114,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,49,98,48,98,55,125,46,116,97,98,108,101,45,108,105,103,104,116,44,46,116,97,98,108,101,45,108,105,103,104,116,62,116,100,44,46,116,97,98,108,101,45,108,105,103,104,116,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,100,102,100,102,101,125,46,116,97,98,108,101,45,108,105,103,104,116,32,116,98,111,100,121,43,116,98,111,100,121,44,46,116,97,98,108,101,45,108,105,103,104,116,32,116,100,44,46,116,97,98,108,101,45,108,105,103,104,116,32,116,104,44,46,116,97,98,108,101,45,108,105,103,104,116,32,116,104,101,97,100,32,116,104,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,98,102,99,102,99,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,108,105,103,104,116,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,99,101,99,102,54,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,108,105,103,104,116,58,104,111,118,101,114,62,116,100,44,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,108,105,103,104,116,58,104,111,118,101,114,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,99,101,99,102,54,125,46,116,97,98,108,101,45,100,97,114,107,44,46,116,97,98,108,101,45,100,97,114,107,62,116,100,44,46,116,97,98,108,101,45,100,97,114,107,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,99,54,99,56,99,97,125,46,116,97,98,108,101,45,100,97,114,107,32,116,98,111,100,121,43,116,98,111,100,121,44,46,116,97,98,108,101,45,100,97,114,107,32,116,100,44,46,116,97,98,108,101,45,100,97,114,107,32,116,104,44,46,116,97,98,108,101,45,100,97,114,107,32,116,104,101,97,100,32,116,104,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,57,53,57,57,57,99,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,100,97,114,107,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,57,98,98,98,101,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,100,97,114,107,58,104,111,118,101,114,62,116,100,44,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,100,97,114,107,58,104,111,118,101,114,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,57,98,98,98,101,125,46,116,97,98,108,101,45,97,99,116,105,118,101,44,46,116,97,98,108,101,45,97,99,116,105,118,101,62,116,100,44,46,116,97,98,108,101,45,97,99,116,105,118,101,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,48,55,53,41,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,97,99,116,105,118,101,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,48,55,53,41,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,97,99,116,105,118,101,58,104,111,118,101,114,62,116,100,44,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,97,99,116,105,118,101,58,104,111,118,101,114,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,48,55,53,41,125,46,116,97,98,108,101,32,46,116,104,101,97,100,45,100,97,114,107,32,116,104,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,51,52,51,97,52,48,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,52,53,52,100,53,53,125,46,116,97,98,108,101,32,46,116,104,101,97,100,45,108,105,103,104,116,32,116,104,123,99,111,108,111,114,58,35,52,57,53,48,53,55,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,57,101,99,101,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,101,101,50,101,54,125,46,116,97,98,108,101,45,100,97,114,107,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,51,52,51,97,52,48,125,46,116,97,98,108,101,45,100,97,114,107,32,116,100,44,46,116,97,98,108,101,45,100,97,114,107,32,116,104,44,46,116,97,98,108,101,45,100,97,114,107,32,116,104,101,97,100,32,116,104,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,52,53,52,100,53,53,125,46,116,97,98,108,101,45,100,97,114,107,46,116,97,98,108,101,45,98,111,114,100,101,114,101,100,123,98,111,114,100,101,114,58,48,125,46,116,97,98,108,101,45,100,97,114,107,46,116,97,98,108,101,45,115,116,114,105,112,101,100,32,116,98,111,100,121,32,116,114,58,110,116,104,45,111,102,45,116,121,112,101,40,111,100,100,41,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,46,48,53,41,125,46,116,97,98,108,101,45,100,97,114,107,46,116,97,98,108,101,45,104,111,118,101,114,32,116,98,111,100,121,32,116,114,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,46,48,55,53,41,125,64,109,101,100,105,97,32,40,109,97,120,45,119,105,100,116,104,58,53,55,53,46,57,56,112,120,41,123,46,116,97,98,108,101,45,114,101,115,112,111,110,115,105,118,101,45,115,109,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,59,111,118,101,114,102,108,111,119,45,120,58,97,117,116,111,59,45,119,101,98,107,105,116,45,111,118,101,114,102,108,111,119,45,115,99,114,111,108,108,105,110,103,58,116,111,117,99,104,125,46,116,97,98,108,101,45,114,101,115,112,111,110,115,105,118,101,45,115,109,62,46,116,97,98,108,101,45,98,111,114,100,101,114,101,100,123,98,111,114,100,101,114,58,48,125,125,64,109,101,100,105,97,32,40,109,97,120,45,119,105,100,116,104,58,55,54,55,46,57,56,112,120,41,123,46,116,97,98,108,101,45,114,101,115,112,111,110,115,105,118,101,45,109,100,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,59,111,118,101,114,102,108,111,119,45,120,58,97,117,116,111,59,45,119,101,98,107,105,116,45,111,118,101,114,102,108,111,119,45,115,99,114,111,108,108,105,110,103,58,116,111,117,99,104,125,46,116,97,98,108,101,45,114,101,115,112,111,110,115,105,118,101,45,109,100,62,46,116,97,98,108,101,45,98,111,114,100,101,114,101,100,123,98,111,114,100,101,114,58,48,125,125,64,109,101,100,105,97,32,40,109,97,120,45,119,105,100,116,104,58,57,57,49,46,57,56,112,120,41,123,46,116,97,98,108,101,45,114,101,115,112,111,110,115,105,118,101,45,108,103,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,59,111,118,101,114,102,108,111,119,45,120,58,97,117,116,111,59,45,119,101,98,107,105,116,45,111,118,101,114,102,108,111,119,45,115,99,114,111,108,108,105,110,103,58,116,111,117,99,104,125,46,116,97,98,108,101,45,114,101,115,112,111,110,115,105,118,101,45,108,103,62,46,116,97,98,108,101,45,98,111,114,100,101,114,101,100,123,98,111,114,100,101,114,58,48,125,125,64,109,101,100,105,97,32,40,109,97,120,45,119,105,100,116,104,58,49,49,57,57,46,57,56,112,120,41,123,46,116,97,98,108,101,45,114,101,115,112,111,110,115,105,118,101,45,120,108,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,59,111,118,101,114,102,108,111,119,45,120,58,97,117,116,111,59,45,119,101,98,107,105,116,45,111,118,101,114,102,108,111,119,45,115,99,114,111,108,108,105,110,103,58,116,111,117,99,104,125,46,116,97,98,108,101,45,114,101,115,112,111,110,115,105,118,101,45,120,108,62,46,116,97,98,108,101,45,98,111,114,100,101,114,101,100,123,98,111,114,100,101,114,58,48,125,125,46,116,97,98,108,101,45,114,101,115,112,111,110,115,105,118,101,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,59,111,118,101,114,102,108,111,119,45,120,58,97,117,116,111,59,45,119,101,98,107,105,116,45,111,118,101,114,102,108,111,119,45,115,99,114,111,108,108,105,110,103,58,116,111,117,99,104,125,46,116,97,98,108,101,45,114,101,115,112,111,110,115,105,118,101,62,46,116,97,98,108,101,45,98,111,114,100,101,114,101,100,123,98,111,114,100,101,114,58,48,125,46,102,111,114,109,45,99,111,110,116,114,111,108,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,46,55,53,114,101,109,32,43,32,50,112,120,41,59,112,97,100,100,105,110,103,58,46,51,55,53,114,101,109,32,46,55,53,114,101,109,59,102,111,110,116,45,115,105,122,101,58,49,114,101,109,59,102,111,110,116,45,119,101,105,103,104,116,58,52,48,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,99,111,108,111,114,58,35,52,57,53,48,53,55,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,108,105,112,58,112,97,100,100,105,110,103,45,98,111,120,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,99,101,100,52,100,97,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,116,114,97,110,115,105,116,105,111,110,58,98,111,114,100,101,114,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,120,45,115,104,97,100,111,119,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,102,111,114,109,45,99,111,110,116,114,111,108,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,46,102,111,114,109,45,99,111,110,116,114,111,108,58,58,45,109,115,45,101,120,112,97,110,100,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,58,48,125,46,102,111,114,109,45,99,111,110,116,114,111,108,58,102,111,99,117,115,123,99,111,108,111,114,58,35,52,57,53,48,53,55,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,56,48,98,100,102,102,59,111,117,116,108,105,110,101,58,48,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,50,53,41,125,46,102,111,114,109,45,99,111,110,116,114,111,108,58,58,45,119,101,98,107,105,116,45,105,110,112,117,116,45,112,108,97,99,101,104,111,108,100,101,114,123,99,111,108,111,114,58,35,54,99,55,53,55,100,59,111,112,97,99,105,116,121,58,49,125,46,102,111,114,109,45,99,111,110,116,114,111,108,58,58,45,109,111,122,45,112,108,97,99,101,104,111,108,100,101,114,123,99,111,108,111,114,58,35,54,99,55,53,55,100,59,111,112,97,99,105,116,121,58,49,125,46,102,111,114,109,45,99,111,110,116,114,111,108,58,45,109,115,45,105,110,112,117,116,45,112,108,97,99,101,104,111,108,100,101,114,123,99,111,108,111,114,58,35,54,99,55,53,55,100,59,111,112,97,99,105,116,121,58,49,125,46,102,111,114,109,45,99,111,110,116,114,111,108,58,58,45,109,115,45,105,110,112,117,116,45,112,108,97,99,101,104,111,108,100,101,114,123,99,111,108,111,114,58,35,54,99,55,53,55,100,59,111,112,97,99,105,116,121,58,49,125,46,102,111,114,109,45,99,111,110,116,114,111,108,58,58,112,108,97,99,101,104,111,108,100,101,114,123,99,111,108,111,114,58,35,54,99,55,53,55,100,59,111,112,97,99,105,116,121,58,49,125,46,102,111,114,109,45,99,111,110,116,114,111,108,58,100,105,115,97,98,108,101,100,44,46,102,111,114,109,45,99,111,110,116,114,111,108,91,114,101,97,100,111,110,108,121,93,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,57,101,99,101,102,59,111,112,97,99,105,116,121,58,49,125,115,101,108,101,99,116,46,102,111,114,109,45,99,111,110,116,114,111,108,58,102,111,99,117,115,58,58,45,109,115,45,118,97,108,117,101,123,99,111,108,111,114,58,35,52,57,53,48,53,55,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,125,46,102,111,114,109,45,99,111,110,116,114,111,108,45,102,105,108,101,44,46,102,111,114,109,45,99,111,110,116,114,111,108,45,114,97,110,103,101,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,125,46,99,111,108,45,102,111,114,109,45,108,97,98,101,108,123,112,97,100,100,105,110,103,45,116,111,112,58,99,97,108,99,40,46,51,55,53,114,101,109,32,43,32,49,112,120,41,59,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,99,97,108,99,40,46,51,55,53,114,101,109,32,43,32,49,112,120,41,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,59,102,111,110,116,45,115,105,122,101,58,105,110,104,101,114,105,116,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,125,46,99,111,108,45,102,111,114,109,45,108,97,98,101,108,45,108,103,123,112,97,100,100,105,110,103,45,116,111,112,58,99,97,108,99,40,46,53,114,101,109,32,43,32,49,112,120,41,59,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,99,97,108,99,40,46,53,114,101,109,32,43,32,49,112,120,41,59,102,111,110,116,45,115,105,122,101,58,49,46,50,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,125,46,99,111,108,45,102,111,114,109,45,108,97,98,101,108,45,115,109,123,112,97,100,100,105,110,103,45,116,111,112,58,99,97,108,99,40,46,50,53,114,101,109,32,43,32,49,112,120,41,59,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,99,97,108,99,40,46,50,53,114,101,109,32,43,32,49,112,120,41,59,102,111,110,116,45,115,105,122,101,58,46,56,55,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,125,46,102,111,114,109,45,99,111,110,116,114,111,108,45,112,108,97,105,110,116,101,120,116,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,59,112,97,100,100,105,110,103,45,116,111,112,58,46,51,55,53,114,101,109,59,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,51,55,53,114,101,109,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,58,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,119,105,100,116,104,58,49,112,120,32,48,125,46,102,111,114,109,45,99,111,110,116,114,111,108,45,112,108,97,105,110,116,101,120,116,46,102,111,114,109,45,99,111,110,116,114,111,108,45,108,103,44,46,102,111,114,109,45,99,111,110,116,114,111,108,45,112,108,97,105,110,116,101,120,116,46,102,111,114,109,45,99,111,110,116,114,111,108,45,115,109,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,48,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,125,46,102,111,114,109,45,99,111,110,116,114,111,108,45,115,109,123,104,101,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,46,53,114,101,109,32,43,32,50,112,120,41,59,112,97,100,100,105,110,103,58,46,50,53,114,101,109,32,46,53,114,101,109,59,102,111,110,116,45,115,105,122,101,58,46,56,55,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,114,101,109,125,46,102,111,114,109,45,99,111,110,116,114,111,108,45,108,103,123,104,101,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,49,114,101,109,32,43,32,50,112,120,41,59,112,97,100,100,105,110,103,58,46,53,114,101,109,32,49,114,101,109,59,102,111,110,116,45,115,105,122,101,58,49,46,50,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,51,114,101,109,125,115,101,108,101,99,116,46,102,111,114,109,45,99,111,110,116,114,111,108,91,109,117,108,116,105,112,108,101,93,44,115,101,108,101,99,116,46,102,111,114,109,45,99,111,110,116,114,111,108,91,115,105,122,101,93,123,104,101,105,103,104,116,58,97,117,116,111,125,116,101,120,116,97,114,101,97,46,102,111,114,109,45,99,111,110,116,114,111,108,123,104,101,105,103,104,116,58,97,117,116,111,125,46,102,111,114,109,45,103,114,111,117,112,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,114,101,109,125,46,102,111,114,109,45,116,101,120,116,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,109,97,114,103,105,110,45,116,111,112,58,46,50,53,114,101,109,125,46,102,111,114,109,45,114,111,119,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,109,97,114,103,105,110,45,114,105,103,104,116,58,45,53,112,120,59,109,97,114,103,105,110,45,108,101,102,116,58,45,53,112,120,125,46,102,111,114,109,45,114,111,119,62,46,99,111,108,44,46,102,111,114,109,45,114,111,119,62,91,99,108,97,115,115,42,61,99,111,108,45,93,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,53,112,120,59,112,97,100,100,105,110,103,45,108,101,102,116,58,53,112,120,125,46,102,111,114,109,45,99,104,101,99,107,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,112,97,100,100,105,110,103,45,108,101,102,116,58,49,46,50,53,114,101,109,125,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,109,97,114,103,105,110,45,116,111,112,58,46,51,114,101,109,59,109,97,114,103,105,110,45,108,101,102,116,58,45,49,46,50,53,114,101,109,125,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,58,100,105,115,97,98,108,101,100,126,46,102,111,114,109,45,99,104,101,99,107,45,108,97,98,101,108,123,99,111,108,111,114,58,35,54,99,55,53,55,100,125,46,102,111,114,109,45,99,104,101,99,107,45,108,97,98,101,108,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,46,102,111,114,109,45,99,104,101,99,107,45,105,110,108,105,110,101,123,100,105,115,112,108,97,121,58,45,109,115,45,105,110,108,105,110,101,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,102,108,101,120,59,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,99,101,110,116,101,114,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,59,109,97,114,103,105,110,45,114,105,103,104,116,58,46,55,53,114,101,109,125,46,102,111,114,109,45,99,104,101,99,107,45,105,110,108,105,110,101,32,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,123,112,111,115,105,116,105,111,110,58,115,116,97,116,105,99,59,109,97,114,103,105,110,45,116,111,112,58,48,59,109,97,114,103,105,110,45,114,105,103,104,116,58,46,51,49,50,53,114,101,109,59,109,97,114,103,105,110,45,108,101,102,116,58,48,125,46,118,97,108,105,100,45,102,101,101,100,98,97,99,107,123,100,105,115,112,108,97,121,58,110,111,110,101,59,119,105,100,116,104,58,49,48,48,37,59,109,97,114,103,105,110,45,116,111,112,58,46,50,53,114,101,109,59,102,111,110,116,45,115,105,122,101,58,56,48,37,59,99,111,108,111,114,58,35,50,56,97,55,52,53,125,46,118,97,108,105,100,45,116,111,111,108,116,105,112,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,49,48,48,37,59,122,45,105,110,100,101,120,58,53,59,100,105,115,112,108,97,121,58,110,111,110,101,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,59,112,97,100,100,105,110,103,58,46,50,53,114,101,109,32,46,53,114,101,109,59,109,97,114,103,105,110,45,116,111,112,58,46,49,114,101,109,59,102,111,110,116,45,115,105,122,101,58,46,56,55,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,52,48,44,49,54,55,44,54,57,44,46,57,41,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,102,111,114,109,45,99,111,110,116,114,111,108,46,105,115,45,118,97,108,105,100,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,111,110,116,114,111,108,58,118,97,108,105,100,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,50,56,97,55,52,53,59,112,97,100,100,105,110,103,45,114,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,46,55,53,114,101,109,41,59,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,39,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,115,118,103,39,32,118,105,101,119,66,111,120,61,39,48,32,48,32,56,32,56,39,37,51,101,37,51,99,112,97,116,104,32,102,105,108,108,61,39,37,50,51,50,56,97,55,52,53,39,32,100,61,39,77,50,46,51,32,54,46,55,51,76,46,54,32,52,46,53,51,99,45,46,52,45,49,46,48,52,46,52,54,45,49,46,52,32,49,46,49,45,46,56,108,49,46,49,32,49,46,52,32,51,46,52,45,51,46,56,99,46,54,45,46,54,51,32,49,46,54,45,46,50,55,32,49,46,50,46,55,108,45,52,32,52,46,54,99,45,46,52,51,46,53,45,46,56,46,52,45,49,46,49,46,49,122,39,47,37,51,101,37,51,99,47,115,118,103,37,51,101,34,41,59,98,97,99,107,103,114,111,117,110,100,45,114,101,112,101,97,116,58,110,111,45,114,101,112,101,97,116,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,99,101,110,116,101,114,32,114,105,103,104,116,32,99,97,108,99,40,46,51,55,53,101,109,32,43,32,46,49,56,55,53,114,101,109,41,59,98,97,99,107,103,114,111,117,110,100,45,115,105,122,101,58,99,97,108,99,40,46,55,53,101,109,32,43,32,46,51,55,53,114,101,109,41,32,99,97,108,99,40,46,55,53,101,109,32,43,32,46,51,55,53,114,101,109,41,125,46,102,111,114,109,45,99,111,110,116,114,111,108,46,105,115,45,118,97,108,105,100,58,102,111,99,117,115,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,111,110,116,114,111,108,58,118,97,108,105,100,58,102,111,99,117,115,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,50,56,97,55,52,53,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,52,48,44,49,54,55,44,54,57,44,46,50,53,41,125,46,102,111,114,109,45,99,111,110,116,114,111,108,46,105,115,45,118,97,108,105,100,126,46,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,102,111,114,109,45,99,111,110,116,114,111,108,46,105,115,45,118,97,108,105,100,126,46,118,97,108,105,100,45,116,111,111,108,116,105,112,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,111,110,116,114,111,108,58,118,97,108,105,100,126,46,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,111,110,116,114,111,108,58,118,97,108,105,100,126,46,118,97,108,105,100,45,116,111,111,108,116,105,112,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,116,101,120,116,97,114,101,97,46,102,111,114,109,45,99,111,110,116,114,111,108,58,118,97,108,105,100,44,116,101,120,116,97,114,101,97,46,102,111,114,109,45,99,111,110,116,114,111,108,46,105,115,45,118,97,108,105,100,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,46,55,53,114,101,109,41,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,116,111,112,32,99,97,108,99,40,46,51,55,53,101,109,32,43,32,46,49,56,55,53,114,101,109,41,32,114,105,103,104,116,32,99,97,108,99,40,46,51,55,53,101,109,32,43,32,46,49,56,55,53,114,101,109,41,125,46,99,117,115,116,111,109,45,115,101,108,101,99,116,46,105,115,45,118,97,108,105,100,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,115,101,108,101,99,116,58,118,97,108,105,100,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,50,56,97,55,52,53,59,112,97,100,100,105,110,103,45,114,105,103,104,116,58,99,97,108,99,40,40,49,101,109,32,43,32,46,55,53,114,101,109,41,32,42,32,51,32,47,32,52,32,43,32,49,46,55,53,114,101,109,41,59,98,97,99,107,103,114,111,117,110,100,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,39,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,115,118,103,39,32,118,105,101,119,66,111,120,61,39,48,32,48,32,52,32,53,39,37,51,101,37,51,99,112,97,116,104,32,102,105,108,108,61,39,37,50,51,51,52,51,97,52,48,39,32,100,61,39,77,50,32,48,76,48,32,50,104,52,122,109,48,32,53,76,48,32,51,104,52,122,39,47,37,51,101,37,51,99,47,115,118,103,37,51,101,34,41,32,110,111,45,114,101,112,101,97,116,32,114,105,103,104,116,32,46,55,53,114,101,109,32,99,101,110,116,101,114,47,56,112,120,32,49,48,112,120,44,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,39,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,115,118,103,39,32,118,105,101,119,66,111,120,61,39,48,32,48,32,56,32,56,39,37,51,101,37,51,99,112,97,116,104,32,102,105,108,108,61,39,37,50,51,50,56,97,55,52,53,39,32,100,61,39,77,50,46,51,32,54,46,55,51,76,46,54,32,52,46,53,51,99,45,46,52,45,49,46,48,52,46,52,54,45,49,46,52,32,49,46,49,45,46,56,108,49,46,49,32,49,46,52,32,51,46,52,45,51,46,56,99,46,54,45,46,54,51,32,49,46,54,45,46,50,55,32,49,46,50,46,55,108,45,52,32,52,46,54,99,45,46,52,51,46,53,45,46,56,46,52,45,49,46,49,46,49,122,39,47,37,51,101,37,51,99,47,115,118,103,37,51,101,34,41,32,35,102,102,102,32,110,111,45,114,101,112,101,97,116,32,99,101,110,116,101,114,32,114,105,103,104,116,32,49,46,55,53,114,101,109,47,99,97,108,99,40,46,55,53,101,109,32,43,32,46,51,55,53,114,101,109,41,32,99,97,108,99,40,46,55,53,101,109,32,43,32,46,51,55,53,114,101,109,41,125,46,99,117,115,116,111,109,45,115,101,108,101,99,116,46,105,115,45,118,97,108,105,100,58,102,111,99,117,115,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,115,101,108,101,99,116,58,118,97,108,105,100,58,102,111,99,117,115,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,50,56,97,55,52,53,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,52,48,44,49,54,55,44,54,57,44,46,50,53,41,125,46,99,117,115,116,111,109,45,115,101,108,101,99,116,46,105,115,45,118,97,108,105,100,126,46,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,99,117,115,116,111,109,45,115,101,108,101,99,116,46,105,115,45,118,97,108,105,100,126,46,118,97,108,105,100,45,116,111,111,108,116,105,112,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,115,101,108,101,99,116,58,118,97,108,105,100,126,46,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,115,101,108,101,99,116,58,118,97,108,105,100,126,46,118,97,108,105,100,45,116,111,111,108,116,105,112,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,102,111,114,109,45,99,111,110,116,114,111,108,45,102,105,108,101,46,105,115,45,118,97,108,105,100,126,46,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,102,111,114,109,45,99,111,110,116,114,111,108,45,102,105,108,101,46,105,115,45,118,97,108,105,100,126,46,118,97,108,105,100,45,116,111,111,108,116,105,112,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,111,110,116,114,111,108,45,102,105,108,101,58,118,97,108,105,100,126,46,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,111,110,116,114,111,108,45,102,105,108,101,58,118,97,108,105,100,126,46,118,97,108,105,100,45,116,111,111,108,116,105,112,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,46,105,115,45,118,97,108,105,100,126,46,102,111,114,109,45,99,104,101,99,107,45,108,97,98,101,108,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,58,118,97,108,105,100,126,46,102,111,114,109,45,99,104,101,99,107,45,108,97,98,101,108,123,99,111,108,111,114,58,35,50,56,97,55,52,53,125,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,46,105,115,45,118,97,108,105,100,126,46,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,46,105,115,45,118,97,108,105,100,126,46,118,97,108,105,100,45,116,111,111,108,116,105,112,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,58,118,97,108,105,100,126,46,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,58,118,97,108,105,100,126,46,118,97,108,105,100,45,116,111,111,108,116,105,112,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,46,105,115,45,118,97,108,105,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,118,97,108,105,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,123,99,111,108,111,114,58,35,50,56,97,55,52,53,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,46,105,115,45,118,97,108,105,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,118,97,108,105,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,50,56,97,55,52,53,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,46,105,115,45,118,97,108,105,100,126,46,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,46,105,115,45,118,97,108,105,100,126,46,118,97,108,105,100,45,116,111,111,108,116,105,112,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,118,97,108,105,100,126,46,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,118,97,108,105,100,126,46,118,97,108,105,100,45,116,111,111,108,116,105,112,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,46,105,115,45,118,97,108,105,100,58,99,104,101,99,107,101,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,118,97,108,105,100,58,99,104,101,99,107,101,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,51,52,99,101,53,55,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,51,52,99,101,53,55,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,46,105,115,45,118,97,108,105,100,58,102,111,99,117,115,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,118,97,108,105,100,58,102,111,99,117,115,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,52,48,44,49,54,55,44,54,57,44,46,50,53,41,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,46,105,115,45,118,97,108,105,100,58,102,111,99,117,115,58,110,111,116,40,58,99,104,101,99,107,101,100,41,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,118,97,108,105,100,58,102,111,99,117,115,58,110,111,116,40,58,99,104,101,99,107,101,100,41,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,50,56,97,55,52,53,125,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,46,105,115,45,118,97,108,105,100,126,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,58,118,97,108,105,100,126,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,50,56,97,55,52,53,125,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,46,105,115,45,118,97,108,105,100,126,46,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,46,105,115,45,118,97,108,105,100,126,46,118,97,108,105,100,45,116,111,111,108,116,105,112,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,58,118,97,108,105,100,126,46,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,58,118,97,108,105,100,126,46,118,97,108,105,100,45,116,111,111,108,116,105,112,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,46,105,115,45,118,97,108,105,100,58,102,111,99,117,115,126,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,58,118,97,108,105,100,58,102,111,99,117,115,126,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,50,56,97,55,52,53,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,52,48,44,49,54,55,44,54,57,44,46,50,53,41,125,46,105,110,118,97,108,105,100,45,102,101,101,100,98,97,99,107,123,100,105,115,112,108,97,121,58,110,111,110,101,59,119,105,100,116,104,58,49,48,48,37,59,109,97,114,103,105,110,45,116,111,112,58,46,50,53,114,101,109,59,102,111,110,116,45,115,105,122,101,58,56,48,37,59,99,111,108,111,114,58,35,100,99,51,53,52,53,125,46,105,110,118,97,108,105,100,45,116,111,111,108,116,105,112,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,49,48,48,37,59,122,45,105,110,100,101,120,58,53,59,100,105,115,112,108,97,121,58,110,111,110,101,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,59,112,97,100,100,105,110,103,58,46,50,53,114,101,109,32,46,53,114,101,109,59,109,97,114,103,105,110,45,116,111,112,58,46,49,114,101,109,59,102,111,110,116,45,115,105,122,101,58,46,56,55,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,50,50,48,44,53,51,44,54,57,44,46,57,41,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,102,111,114,109,45,99,111,110,116,114,111,108,46,105,115,45,105,110,118,97,108,105,100,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,111,110,116,114,111,108,58,105,110,118,97,108,105,100,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,99,51,53,52,53,59,112,97,100,100,105,110,103,45,114,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,46,55,53,114,101,109,41,59,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,39,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,115,118,103,39,32,102,105,108,108,61,39,37,50,51,100,99,51,53,52,53,39,32,118,105,101,119,66,111,120,61,39,45,50,32,45,50,32,55,32,55,39,37,51,101,37,51,99,112,97,116,104,32,115,116,114,111,107,101,61,39,37,50,51,100,99,51,53,52,53,39,32,100,61,39,77,48,32,48,108,51,32,51,109,48,45,51,76,48,32,51,39,47,37,51,101,37,51,99,99,105,114,99,108,101,32,114,61,39,46,53,39,47,37,51,101,37,51,99,99,105,114,99,108,101,32,99,120,61,39,51,39,32,114,61,39,46,53,39,47,37,51,101,37,51,99,99,105,114,99,108,101,32,99,121,61,39,51,39,32,114,61,39,46,53,39,47,37,51,101,37,51,99,99,105,114,99,108,101,32,99,120,61,39,51,39,32,99,121,61,39,51,39,32,114,61,39,46,53,39,47,37,51,101,37,51,99,47,115,118,103,37,51,69,34,41,59,98,97,99,107,103,114,111,117,110,100,45,114,101,112,101,97,116,58,110,111,45,114,101,112,101,97,116,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,99,101,110,116,101,114,32,114,105,103,104,116,32,99,97,108,99,40,46,51,55,53,101,109,32,43,32,46,49,56,55,53,114,101,109,41,59,98,97,99,107,103,114,111,117,110,100,45,115,105,122,101,58,99,97,108,99,40,46,55,53,101,109,32,43,32,46,51,55,53,114,101,109,41,32,99,97,108,99,40,46,55,53,101,109,32,43,32,46,51,55,53,114,101,109,41,125,46,102,111,114,109,45,99,111,110,116,114,111,108,46,105,115,45,105,110,118,97,108,105,100,58,102,111,99,117,115,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,111,110,116,114,111,108,58,105,110,118,97,108,105,100,58,102,111,99,117,115,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,99,51,53,52,53,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,50,48,44,53,51,44,54,57,44,46,50,53,41,125,46,102,111,114,109,45,99,111,110,116,114,111,108,46,105,115,45,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,102,111,114,109,45,99,111,110,116,114,111,108,46,105,115,45,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,116,111,111,108,116,105,112,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,111,110,116,114,111,108,58,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,111,110,116,114,111,108,58,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,116,111,111,108,116,105,112,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,116,101,120,116,97,114,101,97,46,102,111,114,109,45,99,111,110,116,114,111,108,58,105,110,118,97,108,105,100,44,116,101,120,116,97,114,101,97,46,102,111,114,109,45,99,111,110,116,114,111,108,46,105,115,45,105,110,118,97,108,105,100,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,46,55,53,114,101,109,41,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,116,111,112,32,99,97,108,99,40,46,51,55,53,101,109,32,43,32,46,49,56,55,53,114,101,109,41,32,114,105,103,104,116,32,99,97,108,99,40,46,51,55,53,101,109,32,43,32,46,49,56,55,53,114,101,109,41,125,46,99,117,115,116,111,109,45,115,101,108,101,99,116,46,105,115,45,105,110,118,97,108,105,100,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,115,101,108,101,99,116,58,105,110,118,97,108,105,100,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,99,51,53,52,53,59,112,97,100,100,105,110,103,45,114,105,103,104,116,58,99,97,108,99,40,40,49,101,109,32,43,32,46,55,53,114,101,109,41,32,42,32,51,32,47,32,52,32,43,32,49,46,55,53,114,101,109,41,59,98,97,99,107,103,114,111,117,110,100,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,39,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,115,118,103,39,32,118,105,101,119,66,111,120,61,39,48,32,48,32,52,32,53,39,37,51,101,37,51,99,112,97,116,104,32,102,105,108,108,61,39,37,50,51,51,52,51,97,52,48,39,32,100,61,39,77,50,32,48,76,48,32,50,104,52,122,109,48,32,53,76,48,32,51,104,52,122,39,47,37,51,101,37,51,99,47,115,118,103,37,51,101,34,41,32,110,111,45,114,101,112,101,97,116,32,114,105,103,104,116,32,46,55,53,114,101,109,32,99,101,110,116,101,114,47,56,112,120,32,49,48,112,120,44,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,39,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,115,118,103,39,32,102,105,108,108,61,39,37,50,51,100,99,51,53,52,53,39,32,118,105,101,119,66,111,120,61,39,45,50,32,45,50,32,55,32,55,39,37,51,101,37,51,99,112,97,116,104,32,115,116,114,111,107,101,61,39,37,50,51,100,99,51,53,52,53,39,32,100,61,39,77,48,32,48,108,51,32,51,109,48,45,51,76,48,32,51,39,47,37,51,101,37,51,99,99,105,114,99,108,101,32,114,61,39,46,53,39,47,37,51,101,37,51,99,99,105,114,99,108,101,32,99,120,61,39,51,39,32,114,61,39,46,53,39,47,37,51,101,37,51,99,99,105,114,99,108,101,32,99,121,61,39,51,39,32,114,61,39,46,53,39,47,37,51,101,37,51,99,99,105,114,99,108,101,32,99,120,61,39,51,39,32,99,121,61,39,51,39,32,114,61,39,46,53,39,47,37,51,101,37,51,99,47,115,118,103,37,51,69,34,41,32,35,102,102,102,32,110,111,45,114,101,112,101,97,116,32,99,101,110,116,101,114,32,114,105,103,104,116,32,49,46,55,53,114,101,109,47,99,97,108,99,40,46,55,53,101,109,32,43,32,46,51,55,53,114,101,109,41,32,99,97,108,99,40,46,55,53,101,109,32,43,32,46,51,55,53,114,101,109,41,125,46,99,117,115,116,111,109,45,115,101,108,101,99,116,46,105,115,45,105,110,118,97,108,105,100,58,102,111,99,117,115,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,115,101,108,101,99,116,58,105,110,118,97,108,105,100,58,102,111,99,117,115,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,99,51,53,52,53,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,50,48,44,53,51,44,54,57,44,46,50,53,41,125,46,99,117,115,116,111,109,45,115,101,108,101,99,116,46,105,115,45,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,99,117,115,116,111,109,45,115,101,108,101,99,116,46,105,115,45,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,116,111,111,108,116,105,112,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,115,101,108,101,99,116,58,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,115,101,108,101,99,116,58,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,116,111,111,108,116,105,112,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,102,111,114,109,45,99,111,110,116,114,111,108,45,102,105,108,101,46,105,115,45,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,102,111,114,109,45,99,111,110,116,114,111,108,45,102,105,108,101,46,105,115,45,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,116,111,111,108,116,105,112,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,111,110,116,114,111,108,45,102,105,108,101,58,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,111,110,116,114,111,108,45,102,105,108,101,58,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,116,111,111,108,116,105,112,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,46,105,115,45,105,110,118,97,108,105,100,126,46,102,111,114,109,45,99,104,101,99,107,45,108,97,98,101,108,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,58,105,110,118,97,108,105,100,126,46,102,111,114,109,45,99,104,101,99,107,45,108,97,98,101,108,123,99,111,108,111,114,58,35,100,99,51,53,52,53,125,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,46,105,115,45,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,46,105,115,45,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,116,111,111,108,116,105,112,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,58,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,58,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,116,111,111,108,116,105,112,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,46,105,115,45,105,110,118,97,108,105,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,105,110,118,97,108,105,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,123,99,111,108,111,114,58,35,100,99,51,53,52,53,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,46,105,115,45,105,110,118,97,108,105,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,105,110,118,97,108,105,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,99,51,53,52,53,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,46,105,115,45,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,46,105,115,45,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,116,111,111,108,116,105,112,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,116,111,111,108,116,105,112,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,46,105,115,45,105,110,118,97,108,105,100,58,99,104,101,99,107,101,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,105,110,118,97,108,105,100,58,99,104,101,99,107,101,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,101,52,54,48,54,100,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,52,54,48,54,100,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,46,105,115,45,105,110,118,97,108,105,100,58,102,111,99,117,115,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,105,110,118,97,108,105,100,58,102,111,99,117,115,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,50,48,44,53,51,44,54,57,44,46,50,53,41,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,46,105,115,45,105,110,118,97,108,105,100,58,102,111,99,117,115,58,110,111,116,40,58,99,104,101,99,107,101,100,41,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,105,110,118,97,108,105,100,58,102,111,99,117,115,58,110,111,116,40,58,99,104,101,99,107,101,100,41,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,99,51,53,52,53,125,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,46,105,115,45,105,110,118,97,108,105,100,126,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,58,105,110,118,97,108,105,100,126,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,99,51,53,52,53,125,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,46,105,115,45,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,46,105,115,45,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,116,111,111,108,116,105,112,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,58,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,58,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,116,111,111,108,116,105,112,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,46,105,115,45,105,110,118,97,108,105,100,58,102,111,99,117,115,126,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,58,105,110,118,97,108,105,100,58,102,111,99,117,115,126,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,99,51,53,52,53,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,50,48,44,53,51,44,54,57,44,46,50,53,41,125,46,102,111,114,109,45,105,110,108,105,110,101,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,102,108,111,119,58,114,111,119,32,119,114,97,112,59,102,108,101,120,45,102,108,111,119,58,114,111,119,32,119,114,97,112,59,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,99,101,110,116,101,114,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,125,46,102,111,114,109,45,105,110,108,105,110,101,32,46,102,111,114,109,45,99,104,101,99,107,123,119,105,100,116,104,58,49,48,48,37,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,102,111,114,109,45,105,110,108,105,110,101,32,108,97,98,101,108,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,99,101,110,116,101,114,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,59,45,109,115,45,102,108,101,120,45,112,97,99,107,58,99,101,110,116,101,114,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,46,102,111,114,109,45,105,110,108,105,110,101,32,46,102,111,114,109,45,103,114,111,117,112,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,58,48,32,48,32,97,117,116,111,59,102,108,101,120,58,48,32,48,32,97,117,116,111,59,45,109,115,45,102,108,101,120,45,102,108,111,119,58,114,111,119,32,119,114,97,112,59,102,108,101,120,45,102,108,111,119,58,114,111,119,32,119,114,97,112,59,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,99,101,110,116,101,114,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,46,102,111,114,109,45,105,110,108,105,110,101,32,46,102,111,114,109,45,99,111,110,116,114,111,108,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,119,105,100,116,104,58,97,117,116,111,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,109,105,100,100,108,101,125,46,102,111,114,109,45,105,110,108,105,110,101,32,46,102,111,114,109,45,99,111,110,116,114,111,108,45,112,108,97,105,110,116,101,120,116,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,125,46,102,111,114,109,45,105,110,108,105,110,101,32,46,99,117,115,116,111,109,45,115,101,108,101,99,116,44,46,102,111,114,109,45,105,110,108,105,110,101,32,46,105,110,112,117,116,45,103,114,111,117,112,123,119,105,100,116,104,58,97,117,116,111,125,46,102,111,114,109,45,105,110,108,105,110,101,32,46,102,111,114,109,45,99,104,101,99,107,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,99,101,110,116,101,114,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,59,45,109,115,45,102,108,101,120,45,112,97,99,107,58,99,101,110,116,101,114,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,59,119,105,100,116,104,58,97,117,116,111,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,125,46,102,111,114,109,45,105,110,108,105,110,101,32,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,45,109,115,45,102,108,101,120,45,110,101,103,97,116,105,118,101,58,48,59,102,108,101,120,45,115,104,114,105,110,107,58,48,59,109,97,114,103,105,110,45,116,111,112,58,48,59,109,97,114,103,105,110,45,114,105,103,104,116,58,46,50,53,114,101,109,59,109,97,114,103,105,110,45,108,101,102,116,58,48,125,46,102,111,114,109,45,105,110,108,105,110,101,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,99,101,110,116,101,114,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,59,45,109,115,45,102,108,101,120,45,112,97,99,107,58,99,101,110,116,101,114,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,125,46,102,111,114,109,45,105,110,108,105,110,101,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,125,46,98,116,110,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,102,111,110,116,45,119,101,105,103,104,116,58,52,48,48,59,99,111,108,111,114,58,35,50,49,50,53,50,57,59,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,109,105,100,100,108,101,59,45,119,101,98,107,105,116,45,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,59,45,109,111,122,45,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,59,45,109,115,45,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,59,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,59,112,97,100,100,105,110,103,58,46,51,55,53,114,101,109,32,46,55,53,114,101,109,59,102,111,110,116,45,115,105,122,101,58,49,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,116,114,97,110,115,105,116,105,111,110,58,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,114,100,101,114,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,120,45,115,104,97,100,111,119,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,98,116,110,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,46,98,116,110,58,104,111,118,101,114,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,125,46,98,116,110,46,102,111,99,117,115,44,46,98,116,110,58,102,111,99,117,115,123,111,117,116,108,105,110,101,58,48,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,50,53,41,125,46,98,116,110,46,100,105,115,97,98,108,101,100,44,46,98,116,110,58,100,105,115,97,98,108,101,100,123,111,112,97,99,105,116,121,58,46,54,53,125,97,46,98,116,110,46,100,105,115,97,98,108,101,100,44,102,105,101,108,100,115,101,116,58,100,105,115,97,98,108,101,100,32,97,46,98,116,110,123,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,110,111,110,101,125,46,98,116,110,45,112,114,105,109,97,114,121,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,48,48,55,98,102,102,125,46,98,116,110,45,112,114,105,109,97,114,121,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,54,57,100,57,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,48,48,54,50,99,99,125,46,98,116,110,45,112,114,105,109,97,114,121,46,102,111,99,117,115,44,46,98,116,110,45,112,114,105,109,97,114,121,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,51,56,44,49,52,51,44,50,53,53,44,46,53,41,125,46,98,116,110,45,112,114,105,109,97,114,121,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,112,114,105,109,97,114,121,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,48,48,55,98,102,102,125,46,98,116,110,45,112,114,105,109,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,112,114,105,109,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,112,114,105,109,97,114,121,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,54,50,99,99,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,48,48,53,99,98,102,125,46,98,116,110,45,112,114,105,109,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,112,114,105,109,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,112,114,105,109,97,114,121,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,51,56,44,49,52,51,44,50,53,53,44,46,53,41,125,46,98,116,110,45,115,101,99,111,110,100,97,114,121,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,54,99,55,53,55,100,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,54,99,55,53,55,100,125,46,98,116,110,45,115,101,99,111,110,100,97,114,121,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,53,97,54,50,54,56,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,53,52,53,98,54,50,125,46,98,116,110,45,115,101,99,111,110,100,97,114,121,46,102,111,99,117,115,44,46,98,116,110,45,115,101,99,111,110,100,97,114,121,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,49,51,48,44,49,51,56,44,49,52,53,44,46,53,41,125,46,98,116,110,45,115,101,99,111,110,100,97,114,121,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,115,101,99,111,110,100,97,114,121,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,54,99,55,53,55,100,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,54,99,55,53,55,100,125,46,98,116,110,45,115,101,99,111,110,100,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,115,101,99,111,110,100,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,115,101,99,111,110,100,97,114,121,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,53,52,53,98,54,50,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,52,101,53,53,53,98,125,46,98,116,110,45,115,101,99,111,110,100,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,115,101,99,111,110,100,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,115,101,99,111,110,100,97,114,121,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,49,51,48,44,49,51,56,44,49,52,53,44,46,53,41,125,46,98,116,110,45,115,117,99,99,101,115,115,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,50,56,97,55,52,53,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,50,56,97,55,52,53,125,46,98,116,110,45,115,117,99,99,101,115,115,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,50,49,56,56,51,56,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,49,101,55,101,51,52,125,46,98,116,110,45,115,117,99,99,101,115,115,46,102,111,99,117,115,44,46,98,116,110,45,115,117,99,99,101,115,115,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,55,50,44,49,56,48,44,57,55,44,46,53,41,125,46,98,116,110,45,115,117,99,99,101,115,115,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,115,117,99,99,101,115,115,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,50,56,97,55,52,53,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,50,56,97,55,52,53,125,46,98,116,110,45,115,117,99,99,101,115,115,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,115,117,99,99,101,115,115,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,115,117,99,99,101,115,115,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,101,55,101,51,52,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,49,99,55,52,51,48,125,46,98,116,110,45,115,117,99,99,101,115,115,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,115,117,99,99,101,115,115,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,115,117,99,99,101,115,115,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,55,50,44,49,56,48,44,57,55,44,46,53,41,125,46,98,116,110,45,105,110,102,111,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,55,97,50,98,56,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,49,55,97,50,98,56,125,46,98,116,110,45,105,110,102,111,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,51,56,52,57,54,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,49,49,55,97,56,98,125,46,98,116,110,45,105,110,102,111,46,102,111,99,117,115,44,46,98,116,110,45,105,110,102,111,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,53,56,44,49,55,54,44,49,57,53,44,46,53,41,125,46,98,116,110,45,105,110,102,111,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,105,110,102,111,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,55,97,50,98,56,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,49,55,97,50,98,56,125,46,98,116,110,45,105,110,102,111,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,105,110,102,111,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,105,110,102,111,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,49,55,97,56,98,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,49,48,55,48,55,102,125,46,98,116,110,45,105,110,102,111,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,105,110,102,111,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,105,110,102,111,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,53,56,44,49,55,54,44,49,57,53,44,46,53,41,125,46,98,116,110,45,119,97,114,110,105,110,103,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,99,49,48,55,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,102,99,49,48,55,125,46,98,116,110,45,119,97,114,110,105,110,103,58,104,111,118,101,114,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,48,97,56,48,48,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,51,57,101,48,48,125,46,98,116,110,45,119,97,114,110,105,110,103,46,102,111,99,117,115,44,46,98,116,110,45,119,97,114,110,105,110,103,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,50,50,44,49,55,48,44,49,50,44,46,53,41,125,46,98,116,110,45,119,97,114,110,105,110,103,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,119,97,114,110,105,110,103,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,99,49,48,55,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,102,99,49,48,55,125,46,98,116,110,45,119,97,114,110,105,110,103,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,119,97,114,110,105,110,103,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,119,97,114,110,105,110,103,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,51,57,101,48,48,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,99,54,57,53,48,48,125,46,98,116,110,45,119,97,114,110,105,110,103,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,119,97,114,110,105,110,103,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,119,97,114,110,105,110,103,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,50,50,44,49,55,48,44,49,50,44,46,53,41,125,46,98,116,110,45,100,97,110,103,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,99,51,53,52,53,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,99,51,53,52,53,125,46,98,116,110,45,100,97,110,103,101,114,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,99,56,50,51,51,51,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,98,100,50,49,51,48,125,46,98,116,110,45,100,97,110,103,101,114,46,102,111,99,117,115,44,46,98,116,110,45,100,97,110,103,101,114,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,50,53,44,56,51,44,57,55,44,46,53,41,125,46,98,116,110,45,100,97,110,103,101,114,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,100,97,110,103,101,114,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,99,51,53,52,53,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,99,51,53,52,53,125,46,98,116,110,45,100,97,110,103,101,114,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,100,97,110,103,101,114,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,100,97,110,103,101,114,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,100,50,49,51,48,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,98,50,49,102,50,100,125,46,98,116,110,45,100,97,110,103,101,114,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,100,97,110,103,101,114,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,100,97,110,103,101,114,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,50,53,44,56,51,44,57,55,44,46,53,41,125,46,98,116,110,45,108,105,103,104,116,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,56,102,57,102,97,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,56,102,57,102,97,125,46,98,116,110,45,108,105,103,104,116,58,104,111,118,101,114,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,50,101,54,101,97,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,97,101,48,101,53,125,46,98,116,110,45,108,105,103,104,116,46,102,111,99,117,115,44,46,98,116,110,45,108,105,103,104,116,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,49,54,44,50,49,55,44,50,49,57,44,46,53,41,125,46,98,116,110,45,108,105,103,104,116,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,108,105,103,104,116,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,56,102,57,102,97,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,56,102,57,102,97,125,46,98,116,110,45,108,105,103,104,116,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,108,105,103,104,116,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,108,105,103,104,116,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,97,101,48,101,53,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,51,100,57,100,102,125,46,98,116,110,45,108,105,103,104,116,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,108,105,103,104,116,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,108,105,103,104,116,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,49,54,44,50,49,55,44,50,49,57,44,46,53,41,125,46,98,116,110,45,100,97,114,107,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,51,52,51,97,52,48,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,51,52,51,97,52,48,125,46,98,116,110,45,100,97,114,107,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,50,51,50,55,50,98,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,49,100,50,49,50,52,125,46,98,116,110,45,100,97,114,107,46,102,111,99,117,115,44,46,98,116,110,45,100,97,114,107,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,56,50,44,56,56,44,57,51,44,46,53,41,125,46,98,116,110,45,100,97,114,107,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,100,97,114,107,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,51,52,51,97,52,48,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,51,52,51,97,52,48,125,46,98,116,110,45,100,97,114,107,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,100,97,114,107,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,100,97,114,107,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,100,50,49,50,52,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,49,55,49,97,49,100,125,46,98,116,110,45,100,97,114,107,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,100,97,114,107,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,100,97,114,107,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,56,50,44,56,56,44,57,51,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,112,114,105,109,97,114,121,123,99,111,108,111,114,58,35,48,48,55,98,102,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,48,48,55,98,102,102,125,46,98,116,110,45,111,117,116,108,105,110,101,45,112,114,105,109,97,114,121,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,48,48,55,98,102,102,125,46,98,116,110,45,111,117,116,108,105,110,101,45,112,114,105,109,97,114,121,46,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,112,114,105,109,97,114,121,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,112,114,105,109,97,114,121,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,111,117,116,108,105,110,101,45,112,114,105,109,97,114,121,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,48,48,55,98,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,125,46,98,116,110,45,111,117,116,108,105,110,101,45,112,114,105,109,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,111,117,116,108,105,110,101,45,112,114,105,109,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,112,114,105,109,97,114,121,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,48,48,55,98,102,102,125,46,98,116,110,45,111,117,116,108,105,110,101,45,112,114,105,109,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,112,114,105,109,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,112,114,105,109,97,114,121,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,115,101,99,111,110,100,97,114,121,123,99,111,108,111,114,58,35,54,99,55,53,55,100,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,54,99,55,53,55,100,125,46,98,116,110,45,111,117,116,108,105,110,101,45,115,101,99,111,110,100,97,114,121,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,54,99,55,53,55,100,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,54,99,55,53,55,100,125,46,98,116,110,45,111,117,116,108,105,110,101,45,115,101,99,111,110,100,97,114,121,46,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,115,101,99,111,110,100,97,114,121,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,49,48,56,44,49,49,55,44,49,50,53,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,115,101,99,111,110,100,97,114,121,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,111,117,116,108,105,110,101,45,115,101,99,111,110,100,97,114,121,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,54,99,55,53,55,100,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,125,46,98,116,110,45,111,117,116,108,105,110,101,45,115,101,99,111,110,100,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,111,117,116,108,105,110,101,45,115,101,99,111,110,100,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,115,101,99,111,110,100,97,114,121,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,54,99,55,53,55,100,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,54,99,55,53,55,100,125,46,98,116,110,45,111,117,116,108,105,110,101,45,115,101,99,111,110,100,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,115,101,99,111,110,100,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,115,101,99,111,110,100,97,114,121,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,49,48,56,44,49,49,55,44,49,50,53,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,115,117,99,99,101,115,115,123,99,111,108,111,114,58,35,50,56,97,55,52,53,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,50,56,97,55,52,53,125,46,98,116,110,45,111,117,116,108,105,110,101,45,115,117,99,99,101,115,115,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,50,56,97,55,52,53,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,50,56,97,55,52,53,125,46,98,116,110,45,111,117,116,108,105,110,101,45,115,117,99,99,101,115,115,46,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,115,117,99,99,101,115,115,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,52,48,44,49,54,55,44,54,57,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,115,117,99,99,101,115,115,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,111,117,116,108,105,110,101,45,115,117,99,99,101,115,115,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,50,56,97,55,52,53,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,125,46,98,116,110,45,111,117,116,108,105,110,101,45,115,117,99,99,101,115,115,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,111,117,116,108,105,110,101,45,115,117,99,99,101,115,115,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,115,117,99,99,101,115,115,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,50,56,97,55,52,53,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,50,56,97,55,52,53,125,46,98,116,110,45,111,117,116,108,105,110,101,45,115,117,99,99,101,115,115,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,115,117,99,99,101,115,115,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,115,117,99,99,101,115,115,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,52,48,44,49,54,55,44,54,57,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,105,110,102,111,123,99,111,108,111,114,58,35,49,55,97,50,98,56,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,49,55,97,50,98,56,125,46,98,116,110,45,111,117,116,108,105,110,101,45,105,110,102,111,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,55,97,50,98,56,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,49,55,97,50,98,56,125,46,98,116,110,45,111,117,116,108,105,110,101,45,105,110,102,111,46,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,105,110,102,111,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,51,44,49,54,50,44,49,56,52,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,105,110,102,111,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,111,117,116,108,105,110,101,45,105,110,102,111,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,49,55,97,50,98,56,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,125,46,98,116,110,45,111,117,116,108,105,110,101,45,105,110,102,111,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,111,117,116,108,105,110,101,45,105,110,102,111,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,105,110,102,111,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,55,97,50,98,56,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,49,55,97,50,98,56,125,46,98,116,110,45,111,117,116,108,105,110,101,45,105,110,102,111,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,105,110,102,111,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,105,110,102,111,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,51,44,49,54,50,44,49,56,52,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,119,97,114,110,105,110,103,123,99,111,108,111,114,58,35,102,102,99,49,48,55,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,102,99,49,48,55,125,46,98,116,110,45,111,117,116,108,105,110,101,45,119,97,114,110,105,110,103,58,104,111,118,101,114,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,99,49,48,55,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,102,99,49,48,55,125,46,98,116,110,45,111,117,116,108,105,110,101,45,119,97,114,110,105,110,103,46,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,119,97,114,110,105,110,103,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,53,53,44,49,57,51,44,55,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,119,97,114,110,105,110,103,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,111,117,116,108,105,110,101,45,119,97,114,110,105,110,103,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,102,102,99,49,48,55,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,125,46,98,116,110,45,111,117,116,108,105,110,101,45,119,97,114,110,105,110,103,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,111,117,116,108,105,110,101,45,119,97,114,110,105,110,103,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,119,97,114,110,105,110,103,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,99,49,48,55,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,102,99,49,48,55,125,46,98,116,110,45,111,117,116,108,105,110,101,45,119,97,114,110,105,110,103,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,119,97,114,110,105,110,103,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,119,97,114,110,105,110,103,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,53,53,44,49,57,51,44,55,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,110,103,101,114,123,99,111,108,111,114,58,35,100,99,51,53,52,53,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,99,51,53,52,53,125,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,110,103,101,114,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,99,51,53,52,53,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,99,51,53,52,53,125,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,110,103,101,114,46,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,110,103,101,114,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,50,48,44,53,51,44,54,57,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,110,103,101,114,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,110,103,101,114,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,100,99,51,53,52,53,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,125,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,110,103,101,114,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,110,103,101,114,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,110,103,101,114,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,99,51,53,52,53,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,99,51,53,52,53,125,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,110,103,101,114,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,110,103,101,114,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,110,103,101,114,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,50,48,44,53,51,44,54,57,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,108,105,103,104,116,123,99,111,108,111,114,58,35,102,56,102,57,102,97,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,56,102,57,102,97,125,46,98,116,110,45,111,117,116,108,105,110,101,45,108,105,103,104,116,58,104,111,118,101,114,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,56,102,57,102,97,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,56,102,57,102,97,125,46,98,116,110,45,111,117,116,108,105,110,101,45,108,105,103,104,116,46,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,108,105,103,104,116,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,52,56,44,50,52,57,44,50,53,48,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,108,105,103,104,116,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,111,117,116,108,105,110,101,45,108,105,103,104,116,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,102,56,102,57,102,97,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,125,46,98,116,110,45,111,117,116,108,105,110,101,45,108,105,103,104,116,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,111,117,116,108,105,110,101,45,108,105,103,104,116,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,108,105,103,104,116,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,56,102,57,102,97,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,56,102,57,102,97,125,46,98,116,110,45,111,117,116,108,105,110,101,45,108,105,103,104,116,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,108,105,103,104,116,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,108,105,103,104,116,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,52,56,44,50,52,57,44,50,53,48,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,114,107,123,99,111,108,111,114,58,35,51,52,51,97,52,48,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,51,52,51,97,52,48,125,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,114,107,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,51,52,51,97,52,48,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,51,52,51,97,52,48,125,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,114,107,46,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,114,107,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,53,50,44,53,56,44,54,52,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,114,107,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,114,107,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,51,52,51,97,52,48,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,125,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,114,107,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,114,107,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,114,107,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,51,52,51,97,52,48,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,51,52,51,97,52,48,125,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,114,107,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,114,107,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,114,107,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,53,50,44,53,56,44,54,52,44,46,53,41,125,46,98,116,110,45,108,105,110,107,123,102,111,110,116,45,119,101,105,103,104,116,58,52,48,48,59,99,111,108,111,114,58,35,48,48,55,98,102,102,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,125,46,98,116,110,45,108,105,110,107,58,104,111,118,101,114,123,99,111,108,111,114,58,35,48,48,53,54,98,51,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,117,110,100,101,114,108,105,110,101,125,46,98,116,110,45,108,105,110,107,46,102,111,99,117,115,44,46,98,116,110,45,108,105,110,107,58,102,111,99,117,115,123,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,117,110,100,101,114,108,105,110,101,59,98,111,120,45,115,104,97,100,111,119,58,110,111,110,101,125,46,98,116,110,45,108,105,110,107,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,108,105,110,107,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,54,99,55,53,55,100,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,110,111,110,101,125,46,98,116,110,45,103,114,111,117,112,45,108,103,62,46,98,116,110,44,46,98,116,110,45,108,103,123,112,97,100,100,105,110,103,58,46,53,114,101,109,32,49,114,101,109,59,102,111,110,116,45,115,105,122,101,58,49,46,50,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,51,114,101,109,125,46,98,116,110,45,103,114,111,117,112,45,115,109,62,46,98,116,110,44,46,98,116,110,45,115,109,123,112,97,100,100,105,110,103,58,46,50,53,114,101,109,32,46,53,114,101,109,59,102,111,110,116,45,115,105,122,101,58,46,56,55,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,114,101,109,125,46,98,116,110,45,98,108,111,99,107,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,125,46,98,116,110,45,98,108,111,99,107,43,46,98,116,110,45,98,108,111,99,107,123,109,97,114,103,105,110,45,116,111,112,58,46,53,114,101,109,125,105,110,112,117,116,91,116,121,112,101,61,98,117,116,116,111,110,93,46,98,116,110,45,98,108,111,99,107,44,105,110,112,117,116,91,116,121,112,101,61,114,101,115,101,116,93,46,98,116,110,45,98,108,111,99,107,44,105,110,112,117,116,91,116,121,112,101,61,115,117,98,109,105,116,93,46,98,116,110,45,98,108,111,99,107,123,119,105,100,116,104,58,49,48,48,37,125,46,102,97,100,101,123,116,114,97,110,115,105,116,105,111,110,58,111,112,97,99,105,116,121,32,46,49,53,115,32,108,105,110,101,97,114,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,102,97,100,101,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,46,102,97,100,101,58,110,111,116,40,46,115,104,111,119,41,123,111,112,97,99,105,116,121,58,48,125,46,99,111,108,108,97,112,115,101,58,110,111,116,40,46,115,104,111,119,41,123,100,105,115,112,108,97,121,58,110,111,110,101,125,46,99,111,108,108,97,112,115,105,110,103,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,104,101,105,103,104,116,58,48,59,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,59,116,114,97,110,115,105,116,105,111,110,58,104,101,105,103,104,116,32,46,51,53,115,32,101,97,115,101,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,99,111,108,108,97,112,115,105,110,103,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,46,100,114,111,112,100,111,119,110,44,46,100,114,111,112,108,101,102,116,44,46,100,114,111,112,114,105,103,104,116,44,46,100,114,111,112,117,112,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,125,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,119,104,105,116,101,45,115,112,97,99,101,58,110,111,119,114,97,112,125,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,58,97,102,116,101,114,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,109,97,114,103,105,110,45,108,101,102,116,58,46,50,53,53,101,109,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,46,50,53,53,101,109,59,99,111,110,116,101,110,116,58,34,34,59,98,111,114,100,101,114,45,116,111,112,58,46,51,101,109,32,115,111,108,105,100,59,98,111,114,100,101,114,45,114,105,103,104,116,58,46,51,101,109,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,48,59,98,111,114,100,101,114,45,108,101,102,116,58,46,51,101,109,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,125,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,101,109,112,116,121,58,58,97,102,116,101,114,123,109,97,114,103,105,110,45,108,101,102,116,58,48,125,46,100,114,111,112,100,111,119,110,45,109,101,110,117,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,49,48,48,37,59,108,101,102,116,58,48,59,122,45,105,110,100,101,120,58,49,48,48,48,59,100,105,115,112,108,97,121,58,110,111,110,101,59,102,108,111,97,116,58,108,101,102,116,59,109,105,110,45,119,105,100,116,104,58,49,48,114,101,109,59,112,97,100,100,105,110,103,58,46,53,114,101,109,32,48,59,109,97,114,103,105,110,58,46,49,50,53,114,101,109,32,48,32,48,59,102,111,110,116,45,115,105,122,101,58,49,114,101,109,59,99,111,108,111,114,58,35,50,49,50,53,50,57,59,116,101,120,116,45,97,108,105,103,110,58,108,101,102,116,59,108,105,115,116,45,115,116,121,108,101,58,110,111,110,101,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,108,105,112,58,112,97,100,100,105,110,103,45,98,111,120,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,114,103,98,97,40,48,44,48,44,48,44,46,49,53,41,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,100,114,111,112,100,111,119,110,45,109,101,110,117,45,108,101,102,116,123,114,105,103,104,116,58,97,117,116,111,59,108,101,102,116,58,48,125,46,100,114,111,112,100,111,119,110,45,109,101,110,117,45,114,105,103,104,116,123,114,105,103,104,116,58,48,59,108,101,102,116,58,97,117,116,111,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,100,114,111,112,100,111,119,110,45,109,101,110,117,45,115,109,45,108,101,102,116,123,114,105,103,104,116,58,97,117,116,111,59,108,101,102,116,58,48,125,46,100,114,111,112,100,111,119,110,45,109,101,110,117,45,115,109,45,114,105,103,104,116,123,114,105,103,104,116,58,48,59,108,101,102,116,58,97,117,116,111,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,55,54,56,112,120,41,123,46,100,114,111,112,100,111,119,110,45,109,101,110,117,45,109,100,45,108,101,102,116,123,114,105,103,104,116,58,97,117,116,111,59,108,101,102,116,58,48,125,46,100,114,111,112,100,111,119,110,45,109,101,110,117,45,109,100,45,114,105,103,104,116,123,114,105,103,104,116,58,48,59,108,101,102,116,58,97,117,116,111,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,57,57,50,112,120,41,123,46,100,114,111,112,100,111,119,110,45,109,101,110,117,45,108,103,45,108,101,102,116,123,114,105,103,104,116,58,97,117,116,111,59,108,101,102,116,58,48,125,46,100,114,111,112,100,111,119,110,45,109,101,110,117,45,108,103,45,114,105,103,104,116,123,114,105,103,104,116,58,48,59,108,101,102,116,58,97,117,116,111,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,49,50,48,48,112,120,41,123,46,100,114,111,112,100,111,119,110,45,109,101,110,117,45,120,108,45,108,101,102,116,123,114,105,103,104,116,58,97,117,116,111,59,108,101,102,116,58,48,125,46,100,114,111,112,100,111,119,110,45,109,101,110,117,45,120,108,45,114,105,103,104,116,123,114,105,103,104,116,58,48,59,108,101,102,116,58,97,117,116,111,125,125,46,100,114,111,112,117,112,32,46,100,114,111,112,100,111,119,110,45,109,101,110,117,123,116,111,112,58,97,117,116,111,59,98,111,116,116,111,109,58,49,48,48,37,59,109,97,114,103,105,110,45,116,111,112,58,48,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,49,50,53,114,101,109,125,46,100,114,111,112,117,112,32,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,58,97,102,116,101,114,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,109,97,114,103,105,110,45,108,101,102,116,58,46,50,53,53,101,109,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,46,50,53,53,101,109,59,99,111,110,116,101,110,116,58,34,34,59,98,111,114,100,101,114,45,116,111,112,58,48,59,98,111,114,100,101,114,45,114,105,103,104,116,58,46,51,101,109,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,46,51,101,109,32,115,111,108,105,100,59,98,111,114,100,101,114,45,108,101,102,116,58,46,51,101,109,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,125,46,100,114,111,112,117,112,32,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,101,109,112,116,121,58,58,97,102,116,101,114,123,109,97,114,103,105,110,45,108,101,102,116,58,48,125,46,100,114,111,112,114,105,103,104,116,32,46,100,114,111,112,100,111,119,110,45,109,101,110,117,123,116,111,112,58,48,59,114,105,103,104,116,58,97,117,116,111,59,108,101,102,116,58,49,48,48,37,59,109,97,114,103,105,110,45,116,111,112,58,48,59,109,97,114,103,105,110,45,108,101,102,116,58,46,49,50,53,114,101,109,125,46,100,114,111,112,114,105,103,104,116,32,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,58,97,102,116,101,114,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,109,97,114,103,105,110,45,108,101,102,116,58,46,50,53,53,101,109,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,46,50,53,53,101,109,59,99,111,110,116,101,110,116,58,34,34,59,98,111,114,100,101,114,45,116,111,112,58,46,51,101,109,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,114,105,103,104,116,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,46,51,101,109,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,108,101,102,116,58,46,51,101,109,32,115,111,108,105,100,125,46,100,114,111,112,114,105,103,104,116,32,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,101,109,112,116,121,58,58,97,102,116,101,114,123,109,97,114,103,105,110,45,108,101,102,116,58,48,125,46,100,114,111,112,114,105,103,104,116,32,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,58,97,102,116,101,114,123,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,48,125,46,100,114,111,112,108,101,102,116,32,46,100,114,111,112,100,111,119,110,45,109,101,110,117,123,116,111,112,58,48,59,114,105,103,104,116,58,49,48,48,37,59,108,101,102,116,58,97,117,116,111,59,109,97,114,103,105,110,45,116,111,112,58,48,59,109,97,114,103,105,110,45,114,105,103,104,116,58,46,49,50,53,114,101,109,125,46,100,114,111,112,108,101,102,116,32,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,58,97,102,116,101,114,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,109,97,114,103,105,110,45,108,101,102,116,58,46,50,53,53,101,109,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,46,50,53,53,101,109,59,99,111,110,116,101,110,116,58,34,34,125,46,100,114,111,112,108,101,102,116,32,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,58,97,102,116,101,114,123,100,105,115,112,108,97,121,58,110,111,110,101,125,46,100,114,111,112,108,101,102,116,32,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,58,98,101,102,111,114,101,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,109,97,114,103,105,110,45,114,105,103,104,116,58,46,50,53,53,101,109,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,46,50,53,53,101,109,59,99,111,110,116,101,110,116,58,34,34,59,98,111,114,100,101,114,45,116,111,112,58,46,51,101,109,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,114,105,103,104,116,58,46,51,101,109,32,115,111,108,105,100,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,46,51,101,109,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,125,46,100,114,111,112,108,101,102,116,32,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,101,109,112,116,121,58,58,97,102,116,101,114,123,109,97,114,103,105,110,45,108,101,102,116,58,48,125,46,100,114,111,112,108,101,102,116,32,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,58,98,101,102,111,114,101,123,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,48,125,46,100,114,111,112,100,111,119,110,45,109,101,110,117,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,44,46,100,114,111,112,100,111,119,110,45,109,101,110,117,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,44,46,100,114,111,112,100,111,119,110,45,109,101,110,117,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,44,46,100,114,111,112,100,111,119,110,45,109,101,110,117,91,120,45,112,108,97,99,101,109,101,110,116,94,61,116,111,112,93,123,114,105,103,104,116,58,97,117,116,111,59,98,111,116,116,111,109,58,97,117,116,111,125,46,100,114,111,112,100,111,119,110,45,100,105,118,105,100,101,114,123,104,101,105,103,104,116,58,48,59,109,97,114,103,105,110,58,46,53,114,101,109,32,48,59,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,59,98,111,114,100,101,114,45,116,111,112,58,49,112,120,32,115,111,108,105,100,32,35,101,57,101,99,101,102,125,46,100,114,111,112,100,111,119,110,45,105,116,101,109,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,59,112,97,100,100,105,110,103,58,46,50,53,114,101,109,32,49,46,53,114,101,109,59,99,108,101,97,114,58,98,111,116,104,59,102,111,110,116,45,119,101,105,103,104,116,58,52,48,48,59,99,111,108,111,114,58,35,50,49,50,53,50,57,59,116,101,120,116,45,97,108,105,103,110,58,105,110,104,101,114,105,116,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,119,114,97,112,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,58,48,125,46,100,114,111,112,100,111,119,110,45,105,116,101,109,58,102,111,99,117,115,44,46,100,114,111,112,100,111,119,110,45,105,116,101,109,58,104,111,118,101,114,123,99,111,108,111,114,58,35,49,54,49,56,49,98,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,56,102,57,102,97,125,46,100,114,111,112,100,111,119,110,45,105,116,101,109,46,97,99,116,105,118,101,44,46,100,114,111,112,100,111,119,110,45,105,116,101,109,58,97,99,116,105,118,101,123,99,111,108,111,114,58,35,102,102,102,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,125,46,100,114,111,112,100,111,119,110,45,105,116,101,109,46,100,105,115,97,98,108,101,100,44,46,100,114,111,112,100,111,119,110,45,105,116,101,109,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,54,99,55,53,55,100,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,110,111,110,101,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,125,46,100,114,111,112,100,111,119,110,45,109,101,110,117,46,115,104,111,119,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,100,114,111,112,100,111,119,110,45,104,101,97,100,101,114,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,112,97,100,100,105,110,103,58,46,53,114,101,109,32,49,46,53,114,101,109,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,59,102,111,110,116,45,115,105,122,101,58,46,56,55,53,114,101,109,59,99,111,108,111,114,58,35,54,99,55,53,55,100,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,119,114,97,112,125,46,100,114,111,112,100,111,119,110,45,105,116,101,109,45,116,101,120,116,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,112,97,100,100,105,110,103,58,46,50,53,114,101,109,32,49,46,53,114,101,109,59,99,111,108,111,114,58,35,50,49,50,53,50,57,125,46,98,116,110,45,103,114,111,117,112,44,46,98,116,110,45,103,114,111,117,112,45,118,101,114,116,105,99,97,108,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,100,105,115,112,108,97,121,58,45,109,115,45,105,110,108,105,110,101,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,102,108,101,120,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,109,105,100,100,108,101,125,46,98,116,110,45,103,114,111,117,112,45,118,101,114,116,105,99,97,108,62,46,98,116,110,44,46,98,116,110,45,103,114,111,117,112,62,46,98,116,110,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,45,109,115,45,102,108,101,120,58,49,32,49,32,97,117,116,111,59,102,108,101,120,58,49,32,49,32,97,117,116,111,125,46,98,116,110,45,103,114,111,117,112,45,118,101,114,116,105,99,97,108,62,46,98,116,110,58,104,111,118,101,114,44,46,98,116,110,45,103,114,111,117,112,62,46,98,116,110,58,104,111,118,101,114,123,122,45,105,110,100,101,120,58,49,125,46,98,116,110,45,103,114,111,117,112,45,118,101,114,116,105,99,97,108,62,46,98,116,110,46,97,99,116,105,118,101,44,46,98,116,110,45,103,114,111,117,112,45,118,101,114,116,105,99,97,108,62,46,98,116,110,58,97,99,116,105,118,101,44,46,98,116,110,45,103,114,111,117,112,45,118,101,114,116,105,99,97,108,62,46,98,116,110,58,102,111,99,117,115,44,46,98,116,110,45,103,114,111,117,112,62,46,98,116,110,46,97,99,116,105,118,101,44,46,98,116,110,45,103,114,111,117,112,62,46,98,116,110,58,97,99,116,105,118,101,44,46,98,116,110,45,103,114,111,117,112,62,46,98,116,110,58,102,111,99,117,115,123,122,45,105,110,100,101,120,58,49,125,46,98,116,110,45,116,111,111,108,98,97,114,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,45,109,115,45,102,108,101,120,45,112,97,99,107,58,115,116,97,114,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,125,46,98,116,110,45,116,111,111,108,98,97,114,32,46,105,110,112,117,116,45,103,114,111,117,112,123,119,105,100,116,104,58,97,117,116,111,125,46,98,116,110,45,103,114,111,117,112,62,46,98,116,110,45,103,114,111,117,112,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,44,46,98,116,110,45,103,114,111,117,112,62,46,98,116,110,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,112,120,125,46,98,116,110,45,103,114,111,117,112,62,46,98,116,110,45,103,114,111,117,112,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,62,46,98,116,110,44,46,98,116,110,45,103,114,111,117,112,62,46,98,116,110,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,58,110,111,116,40,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,41,123,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,125,46,98,116,110,45,103,114,111,117,112,62,46,98,116,110,45,103,114,111,117,112,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,62,46,98,116,110,44,46,98,116,110,45,103,114,111,117,112,62,46,98,116,110,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,48,125,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,45,115,112,108,105,116,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,53,54,50,53,114,101,109,59,112,97,100,100,105,110,103,45,108,101,102,116,58,46,53,54,50,53,114,101,109,125,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,45,115,112,108,105,116,58,58,97,102,116,101,114,44,46,100,114,111,112,114,105,103,104,116,32,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,45,115,112,108,105,116,58,58,97,102,116,101,114,44,46,100,114,111,112,117,112,32,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,45,115,112,108,105,116,58,58,97,102,116,101,114,123,109,97,114,103,105,110,45,108,101,102,116,58,48,125,46,100,114,111,112,108,101,102,116,32,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,45,115,112,108,105,116,58,58,98,101,102,111,114,101,123,109,97,114,103,105,110,45,114,105,103,104,116,58,48,125,46,98,116,110,45,103,114,111,117,112,45,115,109,62,46,98,116,110,43,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,45,115,112,108,105,116,44,46,98,116,110,45,115,109,43,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,45,115,112,108,105,116,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,51,55,53,114,101,109,59,112,97,100,100,105,110,103,45,108,101,102,116,58,46,51,55,53,114,101,109,125,46,98,116,110,45,103,114,111,117,112,45,108,103,62,46,98,116,110,43,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,45,115,112,108,105,116,44,46,98,116,110,45,108,103,43,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,45,115,112,108,105,116,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,55,53,114,101,109,59,112,97,100,100,105,110,103,45,108,101,102,116,58,46,55,53,114,101,109,125,46,98,116,110,45,103,114,111,117,112,45,118,101,114,116,105,99,97,108,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,115,116,97,114,116,59,97,108,105,103,110,45,105,116,101,109,115,58,102,108,101,120,45,115,116,97,114,116,59,45,109,115,45,102,108,101,120,45,112,97,99,107,58,99,101,110,116,101,114,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,125,46,98,116,110,45,103,114,111,117,112,45,118,101,114,116,105,99,97,108,62,46,98,116,110,44,46,98,116,110,45,103,114,111,117,112,45,118,101,114,116,105,99,97,108,62,46,98,116,110,45,103,114,111,117,112,123,119,105,100,116,104,58,49,48,48,37,125,46,98,116,110,45,103,114,111,117,112,45,118,101,114,116,105,99,97,108,62,46,98,116,110,45,103,114,111,117,112,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,44,46,98,116,110,45,103,114,111,117,112,45,118,101,114,116,105,99,97,108,62,46,98,116,110,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,123,109,97,114,103,105,110,45,116,111,112,58,45,49,112,120,125,46,98,116,110,45,103,114,111,117,112,45,118,101,114,116,105,99,97,108,62,46,98,116,110,45,103,114,111,117,112,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,62,46,98,116,110,44,46,98,116,110,45,103,114,111,117,112,45,118,101,114,116,105,99,97,108,62,46,98,116,110,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,58,110,111,116,40,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,41,123,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,48,125,46,98,116,110,45,103,114,111,117,112,45,118,101,114,116,105,99,97,108,62,46,98,116,110,45,103,114,111,117,112,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,62,46,98,116,110,44,46,98,116,110,45,103,114,111,117,112,45,118,101,114,116,105,99,97,108,62,46,98,116,110,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,125,46,98,116,110,45,103,114,111,117,112,45,116,111,103,103,108,101,62,46,98,116,110,44,46,98,116,110,45,103,114,111,117,112,45,116,111,103,103,108,101,62,46,98,116,110,45,103,114,111,117,112,62,46,98,116,110,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,46,98,116,110,45,103,114,111,117,112,45,116,111,103,103,108,101,62,46,98,116,110,32,105,110,112,117,116,91,116,121,112,101,61,99,104,101,99,107,98,111,120,93,44,46,98,116,110,45,103,114,111,117,112,45,116,111,103,103,108,101,62,46,98,116,110,32,105,110,112,117,116,91,116,121,112,101,61,114,97,100,105,111,93,44,46,98,116,110,45,103,114,111,117,112,45,116,111,103,103,108,101,62,46,98,116,110,45,103,114,111,117,112,62,46,98,116,110,32,105,110,112,117,116,91,116,121,112,101,61,99,104,101,99,107,98,111,120,93,44,46,98,116,110,45,103,114,111,117,112,45,116,111,103,103,108,101,62,46,98,116,110,45,103,114,111,117,112,62,46,98,116,110,32,105,110,112,117,116,91,116,121,112,101,61,114,97,100,105,111,93,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,99,108,105,112,58,114,101,99,116,40,48,44,48,44,48,44,48,41,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,110,111,110,101,125,46,105,110,112,117,116,45,103,114,111,117,112,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,115,116,114,101,116,99,104,59,97,108,105,103,110,45,105,116,101,109,115,58,115,116,114,101,116,99,104,59,119,105,100,116,104,58,49,48,48,37,125,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,102,105,108,101,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,115,101,108,101,99,116,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,102,111,114,109,45,99,111,110,116,114,111,108,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,102,111,114,109,45,99,111,110,116,114,111,108,45,112,108,97,105,110,116,101,120,116,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,45,109,115,45,102,108,101,120,58,49,32,49,32,97,117,116,111,59,102,108,101,120,58,49,32,49,32,97,117,116,111,59,119,105,100,116,104,58,49,37,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,102,105,108,101,43,46,99,117,115,116,111,109,45,102,105,108,101,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,102,105,108,101,43,46,99,117,115,116,111,109,45,115,101,108,101,99,116,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,102,105,108,101,43,46,102,111,114,109,45,99,111,110,116,114,111,108,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,115,101,108,101,99,116,43,46,99,117,115,116,111,109,45,102,105,108,101,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,115,101,108,101,99,116,43,46,99,117,115,116,111,109,45,115,101,108,101,99,116,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,115,101,108,101,99,116,43,46,102,111,114,109,45,99,111,110,116,114,111,108,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,102,111,114,109,45,99,111,110,116,114,111,108,43,46,99,117,115,116,111,109,45,102,105,108,101,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,102,111,114,109,45,99,111,110,116,114,111,108,43,46,99,117,115,116,111,109,45,115,101,108,101,99,116,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,102,111,114,109,45,99,111,110,116,114,111,108,43,46,102,111,114,109,45,99,111,110,116,114,111,108,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,102,111,114,109,45,99,111,110,116,114,111,108,45,112,108,97,105,110,116,101,120,116,43,46,99,117,115,116,111,109,45,102,105,108,101,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,102,111,114,109,45,99,111,110,116,114,111,108,45,112,108,97,105,110,116,101,120,116,43,46,99,117,115,116,111,109,45,115,101,108,101,99,116,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,102,111,114,109,45,99,111,110,116,114,111,108,45,112,108,97,105,110,116,101,120,116,43,46,102,111,114,109,45,99,111,110,116,114,111,108,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,112,120,125,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,102,105,108,101,32,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,58,102,111,99,117,115,126,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,115,101,108,101,99,116,58,102,111,99,117,115,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,102,111,114,109,45,99,111,110,116,114,111,108,58,102,111,99,117,115,123,122,45,105,110,100,101,120,58,51,125,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,102,105,108,101,32,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,58,102,111,99,117,115,123,122,45,105,110,100,101,120,58,52,125,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,115,101,108,101,99,116,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,102,111,114,109,45,99,111,110,116,114,111,108,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,123,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,125,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,115,101,108,101,99,116,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,102,111,114,109,45,99,111,110,116,114,111,108,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,48,125,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,102,105,108,101,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,99,101,110,116,101,114,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,125,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,102,105,108,101,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,32,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,102,105,108,101,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,32,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,58,58,97,102,116,101,114,123,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,125,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,102,105,108,101,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,32,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,48,125,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,44,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,125,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,32,46,98,116,110,44,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,32,46,98,116,110,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,122,45,105,110,100,101,120,58,50,125,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,32,46,98,116,110,58,102,111,99,117,115,44,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,32,46,98,116,110,58,102,111,99,117,115,123,122,45,105,110,100,101,120,58,51,125,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,32,46,98,116,110,43,46,98,116,110,44,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,32,46,98,116,110,43,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,44,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,32,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,43,46,98,116,110,44,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,32,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,43,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,44,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,32,46,98,116,110,43,46,98,116,110,44,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,32,46,98,116,110,43,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,44,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,32,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,43,46,98,116,110,44,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,32,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,43,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,112,120,125,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,112,120,125,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,112,120,125,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,99,101,110,116,101,114,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,59,112,97,100,100,105,110,103,58,46,51,55,53,114,101,109,32,46,55,53,114,101,109,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,59,102,111,110,116,45,115,105,122,101,58,49,114,101,109,59,102,111,110,116,45,119,101,105,103,104,116,58,52,48,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,99,111,108,111,114,58,35,52,57,53,48,53,55,59,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,119,114,97,112,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,57,101,99,101,102,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,99,101,100,52,100,97,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,32,105,110,112,117,116,91,116,121,112,101,61,99,104,101,99,107,98,111,120,93,44,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,32,105,110,112,117,116,91,116,121,112,101,61,114,97,100,105,111,93,123,109,97,114,103,105,110,45,116,111,112,58,48,125,46,105,110,112,117,116,45,103,114,111,117,112,45,108,103,62,46,99,117,115,116,111,109,45,115,101,108,101,99,116,44,46,105,110,112,117,116,45,103,114,111,117,112,45,108,103,62,46,102,111,114,109,45,99,111,110,116,114,111,108,58,110,111,116,40,116,101,120,116,97,114,101,97,41,123,104,101,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,49,114,101,109,32,43,32,50,112,120,41,125,46,105,110,112,117,116,45,103,114,111,117,112,45,108,103,62,46,99,117,115,116,111,109,45,115,101,108,101,99,116,44,46,105,110,112,117,116,45,103,114,111,117,112,45,108,103,62,46,102,111,114,109,45,99,111,110,116,114,111,108,44,46,105,110,112,117,116,45,103,114,111,117,112,45,108,103,62,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,62,46,98,116,110,44,46,105,110,112,117,116,45,103,114,111,117,112,45,108,103,62,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,62,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,44,46,105,110,112,117,116,45,103,114,111,117,112,45,108,103,62,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,62,46,98,116,110,44,46,105,110,112,117,116,45,103,114,111,117,112,45,108,103,62,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,62,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,123,112,97,100,100,105,110,103,58,46,53,114,101,109,32,49,114,101,109,59,102,111,110,116,45,115,105,122,101,58,49,46,50,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,51,114,101,109,125,46,105,110,112,117,116,45,103,114,111,117,112,45,115,109,62,46,99,117,115,116,111,109,45,115,101,108,101,99,116,44,46,105,110,112,117,116,45,103,114,111,117,112,45,115,109,62,46,102,111,114,109,45,99,111,110,116,114,111,108,58,110,111,116,40,116,101,120,116,97,114,101,97,41,123,104,101,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,46,53,114,101,109,32,43,32,50,112,120,41,125,46,105,110,112,117,116,45,103,114,111,117,112,45,115,109,62,46,99,117,115,116,111,109,45,115,101,108,101,99,116,44,46,105,110,112,117,116,45,103,114,111,117,112,45,115,109,62,46,102,111,114,109,45,99,111,110,116,114,111,108,44,46,105,110,112,117,116,45,103,114,111,117,112,45,115,109,62,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,62,46,98,116,110,44,46,105,110,112,117,116,45,103,114,111,117,112,45,115,109,62,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,62,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,44,46,105,110,112,117,116,45,103,114,111,117,112,45,115,109,62,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,62,46,98,116,110,44,46,105,110,112,117,116,45,103,114,111,117,112,45,115,109,62,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,62,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,123,112,97,100,100,105,110,103,58,46,50,53,114,101,109,32,46,53,114,101,109,59,102,111,110,116,45,115,105,122,101,58,46,56,55,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,114,101,109,125,46,105,110,112,117,116,45,103,114,111,117,112,45,108,103,62,46,99,117,115,116,111,109,45,115,101,108,101,99,116,44,46,105,110,112,117,116,45,103,114,111,117,112,45,115,109,62,46,99,117,115,116,111,109,45,115,101,108,101,99,116,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,49,46,55,53,114,101,109,125,46,105,110,112,117,116,45,103,114,111,117,112,62,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,58,108,97,115,116,45,99,104,105,108,100,62,46,98,116,110,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,58,110,111,116,40,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,41,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,58,108,97,115,116,45,99,104,105,108,100,62,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,62,46,98,116,110,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,62,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,62,46,98,116,110,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,62,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,123,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,125,46,105,110,112,117,116,45,103,114,111,117,112,62,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,62,46,98,116,110,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,62,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,58,102,105,114,115,116,45,99,104,105,108,100,62,46,98,116,110,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,58,102,105,114,115,116,45,99,104,105,108,100,62,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,62,46,98,116,110,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,62,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,48,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,109,105,110,45,104,101,105,103,104,116,58,49,46,53,114,101,109,59,112,97,100,100,105,110,103,45,108,101,102,116,58,49,46,53,114,101,109,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,108,105,110,101,123,100,105,115,112,108,97,121,58,45,109,115,45,105,110,108,105,110,101,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,102,108,101,120,59,109,97,114,103,105,110,45,114,105,103,104,116,58,49,114,101,109,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,122,45,105,110,100,101,120,58,45,49,59,111,112,97,99,105,116,121,58,48,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,99,104,101,99,107,101,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,99,111,108,111,114,58,35,102,102,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,48,48,55,98,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,102,111,99,117,115,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,50,53,41,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,102,111,99,117,115,58,110,111,116,40,58,99,104,101,99,107,101,100,41,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,56,48,98,100,102,102,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,51,100,55,102,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,98,51,100,55,102,102,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,100,105,115,97,98,108,101,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,123,99,111,108,111,114,58,35,54,99,55,53,55,100,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,100,105,115,97,98,108,101,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,57,101,99,101,102,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,116,111,112,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,46,50,53,114,101,109,59,108,101,102,116,58,45,49,46,53,114,101,109,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,114,101,109,59,104,101,105,103,104,116,58,49,114,101,109,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,110,111,110,101,59,99,111,110,116,101,110,116,58,34,34,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,111,114,100,101,114,58,35,97,100,98,53,98,100,32,115,111,108,105,100,32,49,112,120,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,97,102,116,101,114,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,46,50,53,114,101,109,59,108,101,102,116,58,45,49,46,53,114,101,109,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,114,101,109,59,104,101,105,103,104,116,58,49,114,101,109,59,99,111,110,116,101,110,116,58,34,34,59,98,97,99,107,103,114,111,117,110,100,58,110,111,45,114,101,112,101,97,116,32,53,48,37,47,53,48,37,32,53,48,37,125,46,99,117,115,116,111,109,45,99,104,101,99,107,98,111,120,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,99,117,115,116,111,109,45,99,104,101,99,107,98,111,120,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,99,104,101,99,107,101,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,97,102,116,101,114,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,39,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,115,118,103,39,32,118,105,101,119,66,111,120,61,39,48,32,48,32,56,32,56,39,37,51,101,37,51,99,112,97,116,104,32,102,105,108,108,61,39,37,50,51,102,102,102,39,32,100,61,39,77,54,46,53,54,52,46,55,53,108,45,51,46,53,57,32,51,46,54,49,50,45,49,46,53,51,56,45,49,46,53,53,76,48,32,52,46,50,54,32,50,46,57,55,52,32,55,46,50,53,32,56,32,50,46,49,57,51,122,39,47,37,51,101,37,51,99,47,115,118,103,37,51,101,34,41,125,46,99,117,115,116,111,109,45,99,104,101,99,107,98,111,120,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,105,110,100,101,116,101,114,109,105,110,97,116,101,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,48,48,55,98,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,125,46,99,117,115,116,111,109,45,99,104,101,99,107,98,111,120,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,105,110,100,101,116,101,114,109,105,110,97,116,101,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,97,102,116,101,114,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,39,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,115,118,103,39,32,118,105,101,119,66,111,120,61,39,48,32,48,32,52,32,52,39,37,51,101,37,51,99,112,97,116,104,32,115,116,114,111,107,101,61,39,37,50,51,102,102,102,39,32,100,61,39,77,48,32,50,104,52,39,47,37,51,101,37,51,99,47,115,118,103,37,51,101,34,41,125,46,99,117,115,116,111,109,45,99,104,101,99,107,98,111,120,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,100,105,115,97,98,108,101,100,58,99,104,101,99,107,101,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,53,41,125,46,99,117,115,116,111,109,45,99,104,101,99,107,98,111,120,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,100,105,115,97,98,108,101,100,58,105,110,100,101,116,101,114,109,105,110,97,116,101,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,53,41,125,46,99,117,115,116,111,109,45,114,97,100,105,111,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,114,97,100,105,117,115,58,53,48,37,125,46,99,117,115,116,111,109,45,114,97,100,105,111,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,99,104,101,99,107,101,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,97,102,116,101,114,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,39,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,115,118,103,39,32,118,105,101,119,66,111,120,61,39,45,52,32,45,52,32,56,32,56,39,37,51,101,37,51,99,99,105,114,99,108,101,32,114,61,39,51,39,32,102,105,108,108,61,39,37,50,51,102,102,102,39,47,37,51,101,37,51,99,47,115,118,103,37,51,101,34,41,125,46,99,117,115,116,111,109,45,114,97,100,105,111,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,100,105,115,97,98,108,101,100,58,99,104,101,99,107,101,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,53,41,125,46,99,117,115,116,111,109,45,115,119,105,116,99,104,123,112,97,100,100,105,110,103,45,108,101,102,116,58,50,46,50,53,114,101,109,125,46,99,117,115,116,111,109,45,115,119,105,116,99,104,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,108,101,102,116,58,45,50,46,50,53,114,101,109,59,119,105,100,116,104,58,49,46,55,53,114,101,109,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,97,108,108,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,53,114,101,109,125,46,99,117,115,116,111,109,45,115,119,105,116,99,104,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,97,102,116,101,114,123,116,111,112,58,99,97,108,99,40,46,50,53,114,101,109,32,43,32,50,112,120,41,59,108,101,102,116,58,99,97,108,99,40,45,50,46,50,53,114,101,109,32,43,32,50,112,120,41,59,119,105,100,116,104,58,99,97,108,99,40,49,114,101,109,32,45,32,52,112,120,41,59,104,101,105,103,104,116,58,99,97,108,99,40,49,114,101,109,32,45,32,52,112,120,41,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,97,100,98,53,98,100,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,53,114,101,109,59,116,114,97,110,115,105,116,105,111,110,58,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,114,100,101,114,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,120,45,115,104,97,100,111,119,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,59,116,114,97,110,115,105,116,105,111,110,58,116,114,97,110,115,102,111,114,109,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,114,100,101,114,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,120,45,115,104,97,100,111,119,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,59,116,114,97,110,115,105,116,105,111,110,58,116,114,97,110,115,102,111,114,109,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,114,100,101,114,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,120,45,115,104,97,100,111,119,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,99,117,115,116,111,109,45,115,119,105,116,99,104,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,97,102,116,101,114,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,46,99,117,115,116,111,109,45,115,119,105,116,99,104,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,99,104,101,99,107,101,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,97,102,116,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,88,40,46,55,53,114,101,109,41,59,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,88,40,46,55,53,114,101,109,41,125,46,99,117,115,116,111,109,45,115,119,105,116,99,104,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,100,105,115,97,98,108,101,100,58,99,104,101,99,107,101,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,53,41,125,46,99,117,115,116,111,109,45,115,101,108,101,99,116,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,46,55,53,114,101,109,32,43,32,50,112,120,41,59,112,97,100,100,105,110,103,58,46,51,55,53,114,101,109,32,49,46,55,53,114,101,109,32,46,51,55,53,114,101,109,32,46,55,53,114,101,109,59,102,111,110,116,45,115,105,122,101,58,49,114,101,109,59,102,111,110,116,45,119,101,105,103,104,116,58,52,48,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,99,111,108,111,114,58,35,52,57,53,48,53,55,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,109,105,100,100,108,101,59,98,97,99,107,103,114,111,117,110,100,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,39,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,115,118,103,39,32,118,105,101,119,66,111,120,61,39,48,32,48,32,52,32,53,39,37,51,101,37,51,99,112,97,116,104,32,102,105,108,108,61,39,37,50,51,51,52,51,97,52,48,39,32,100,61,39,77,50,32,48,76,48,32,50,104,52,122,109,48,32,53,76,48,32,51,104,52,122,39,47,37,51,101,37,51,99,47,115,118,103,37,51,101,34,41,32,110,111,45,114,101,112,101,97,116,32,114,105,103,104,116,32,46,55,53,114,101,109,32,99,101,110,116,101,114,47,56,112,120,32,49,48,112,120,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,99,101,100,52,100,97,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,45,119,101,98,107,105,116,45,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,59,45,109,111,122,45,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,59,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,125,46,99,117,115,116,111,109,45,115,101,108,101,99,116,58,102,111,99,117,115,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,56,48,98,100,102,102,59,111,117,116,108,105,110,101,58,48,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,50,53,41,125,46,99,117,115,116,111,109,45,115,101,108,101,99,116,58,102,111,99,117,115,58,58,45,109,115,45,118,97,108,117,101,123,99,111,108,111,114,58,35,52,57,53,48,53,55,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,125,46,99,117,115,116,111,109,45,115,101,108,101,99,116,91,109,117,108,116,105,112,108,101,93,44,46,99,117,115,116,111,109,45,115,101,108,101,99,116,91,115,105,122,101,93,58,110,111,116,40,91,115,105,122,101,61,34,49,34,93,41,123,104,101,105,103,104,116,58,97,117,116,111,59,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,55,53,114,101,109,59,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,110,111,110,101,125,46,99,117,115,116,111,109,45,115,101,108,101,99,116,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,54,99,55,53,55,100,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,57,101,99,101,102,125,46,99,117,115,116,111,109,45,115,101,108,101,99,116,58,58,45,109,115,45,101,120,112,97,110,100,123,100,105,115,112,108,97,121,58,110,111,110,101,125,46,99,117,115,116,111,109,45,115,101,108,101,99,116,45,115,109,123,104,101,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,46,53,114,101,109,32,43,32,50,112,120,41,59,112,97,100,100,105,110,103,45,116,111,112,58,46,50,53,114,101,109,59,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,50,53,114,101,109,59,112,97,100,100,105,110,103,45,108,101,102,116,58,46,53,114,101,109,59,102,111,110,116,45,115,105,122,101,58,46,56,55,53,114,101,109,125,46,99,117,115,116,111,109,45,115,101,108,101,99,116,45,108,103,123,104,101,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,49,114,101,109,32,43,32,50,112,120,41,59,112,97,100,100,105,110,103,45,116,111,112,58,46,53,114,101,109,59,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,53,114,101,109,59,112,97,100,100,105,110,103,45,108,101,102,116,58,49,114,101,109,59,102,111,110,116,45,115,105,122,101,58,49,46,50,53,114,101,109,125,46,99,117,115,116,111,109,45,102,105,108,101,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,46,55,53,114,101,109,32,43,32,50,112,120,41,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,122,45,105,110,100,101,120,58,50,59,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,46,55,53,114,101,109,32,43,32,50,112,120,41,59,109,97,114,103,105,110,58,48,59,111,112,97,99,105,116,121,58,48,125,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,58,102,111,99,117,115,126,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,56,48,98,100,102,102,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,50,53,41,125,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,58,100,105,115,97,98,108,101,100,126,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,57,101,99,101,102,125,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,58,108,97,110,103,40,101,110,41,126,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,58,58,97,102,116,101,114,123,99,111,110,116,101,110,116,58,34,66,114,111,119,115,101,34,125,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,126,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,91,100,97,116,97,45,98,114,111,119,115,101,93,58,58,97,102,116,101,114,123,99,111,110,116,101,110,116,58,97,116,116,114,40,100,97,116,97,45,98,114,111,119,115,101,41,125,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,48,59,114,105,103,104,116,58,48,59,108,101,102,116,58,48,59,122,45,105,110,100,101,120,58,49,59,104,101,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,46,55,53,114,101,109,32,43,32,50,112,120,41,59,112,97,100,100,105,110,103,58,46,51,55,53,114,101,109,32,46,55,53,114,101,109,59,102,111,110,116,45,119,101,105,103,104,116,58,52,48,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,99,111,108,111,114,58,35,52,57,53,48,53,55,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,99,101,100,52,100,97,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,58,58,97,102,116,101,114,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,48,59,114,105,103,104,116,58,48,59,98,111,116,116,111,109,58,48,59,122,45,105,110,100,101,120,58,51,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,104,101,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,46,55,53,114,101,109,41,59,112,97,100,100,105,110,103,58,46,51,55,53,114,101,109,32,46,55,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,99,111,108,111,114,58,35,52,57,53,48,53,55,59,99,111,110,116,101,110,116,58,34,66,114,111,119,115,101,34,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,57,101,99,101,102,59,98,111,114,100,101,114,45,108,101,102,116,58,105,110,104,101,114,105,116,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,48,32,46,50,53,114,101,109,32,46,50,53,114,101,109,32,48,125,46,99,117,115,116,111,109,45,114,97,110,103,101,123,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,99,97,108,99,40,49,114,101,109,32,43,32,46,52,114,101,109,41,59,112,97,100,100,105,110,103,58,48,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,45,119,101,98,107,105,116,45,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,59,45,109,111,122,45,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,59,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,102,111,99,117,115,123,111,117,116,108,105,110,101,58,48,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,102,111,99,117,115,58,58,45,119,101,98,107,105,116,45,115,108,105,100,101,114,45,116,104,117,109,98,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,49,112,120,32,35,102,102,102,44,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,50,53,41,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,102,111,99,117,115,58,58,45,109,111,122,45,114,97,110,103,101,45,116,104,117,109,98,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,49,112,120,32,35,102,102,102,44,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,50,53,41,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,102,111,99,117,115,58,58,45,109,115,45,116,104,117,109,98,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,49,112,120,32,35,102,102,102,44,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,50,53,41,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,58,45,109,111,122,45,102,111,99,117,115,45,111,117,116,101,114,123,98,111,114,100,101,114,58,48,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,58,45,119,101,98,107,105,116,45,115,108,105,100,101,114,45,116,104,117,109,98,123,119,105,100,116,104,58,49,114,101,109,59,104,101,105,103,104,116,58,49,114,101,109,59,109,97,114,103,105,110,45,116,111,112,58,45,46,50,53,114,101,109,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,59,98,111,114,100,101,114,58,48,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,49,114,101,109,59,116,114,97,110,115,105,116,105,111,110,58,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,114,100,101,114,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,120,45,115,104,97,100,111,119,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,59,45,119,101,98,107,105,116,45,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,59,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,99,117,115,116,111,109,45,114,97,110,103,101,58,58,45,119,101,98,107,105,116,45,115,108,105,100,101,114,45,116,104,117,109,98,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,58,45,119,101,98,107,105,116,45,115,108,105,100,101,114,45,116,104,117,109,98,58,97,99,116,105,118,101,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,51,100,55,102,102,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,58,45,119,101,98,107,105,116,45,115,108,105,100,101,114,45,114,117,110,110,97,98,108,101,45,116,114,97,99,107,123,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,46,53,114,101,109,59,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,99,117,114,115,111,114,58,112,111,105,110,116,101,114,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,101,101,50,101,54,59,98,111,114,100,101,114,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,49,114,101,109,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,58,45,109,111,122,45,114,97,110,103,101,45,116,104,117,109,98,123,119,105,100,116,104,58,49,114,101,109,59,104,101,105,103,104,116,58,49,114,101,109,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,59,98,111,114,100,101,114,58,48,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,49,114,101,109,59,116,114,97,110,115,105,116,105,111,110,58,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,114,100,101,114,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,120,45,115,104,97,100,111,119,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,59,45,109,111,122,45,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,59,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,99,117,115,116,111,109,45,114,97,110,103,101,58,58,45,109,111,122,45,114,97,110,103,101,45,116,104,117,109,98,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,58,45,109,111,122,45,114,97,110,103,101,45,116,104,117,109,98,58,97,99,116,105,118,101,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,51,100,55,102,102,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,58,45,109,111,122,45,114,97,110,103,101,45,116,114,97,99,107,123,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,46,53,114,101,109,59,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,99,117,114,115,111,114,58,112,111,105,110,116,101,114,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,101,101,50,101,54,59,98,111,114,100,101,114,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,49,114,101,109,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,58,45,109,115,45,116,104,117,109,98,123,119,105,100,116,104,58,49,114,101,109,59,104,101,105,103,104,116,58,49,114,101,109,59,109,97,114,103,105,110,45,116,111,112,58,48,59,109,97,114,103,105,110,45,114,105,103,104,116,58,46,50,114,101,109,59,109,97,114,103,105,110,45,108,101,102,116,58,46,50,114,101,109,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,59,98,111,114,100,101,114,58,48,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,49,114,101,109,59,116,114,97,110,115,105,116,105,111,110,58,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,114,100,101,114,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,120,45,115,104,97,100,111,119,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,59,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,99,117,115,116,111,109,45,114,97,110,103,101,58,58,45,109,115,45,116,104,117,109,98,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,58,45,109,115,45,116,104,117,109,98,58,97,99,116,105,118,101,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,51,100,55,102,102,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,58,45,109,115,45,116,114,97,99,107,123,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,46,53,114,101,109,59,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,99,117,114,115,111,114,58,112,111,105,110,116,101,114,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,119,105,100,116,104,58,46,53,114,101,109,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,58,45,109,115,45,102,105,108,108,45,108,111,119,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,101,101,50,101,54,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,49,114,101,109,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,58,45,109,115,45,102,105,108,108,45,117,112,112,101,114,123,109,97,114,103,105,110,45,114,105,103,104,116,58,49,53,112,120,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,101,101,50,101,54,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,49,114,101,109,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,100,105,115,97,98,108,101,100,58,58,45,119,101,98,107,105,116,45,115,108,105,100,101,114,45,116,104,117,109,98,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,97,100,98,53,98,100,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,100,105,115,97,98,108,101,100,58,58,45,119,101,98,107,105,116,45,115,108,105,100,101,114,45,114,117,110,110,97,98,108,101,45,116,114,97,99,107,123,99,117,114,115,111,114,58,100,101,102,97,117,108,116,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,100,105,115,97,98,108,101,100,58,58,45,109,111,122,45,114,97,110,103,101,45,116,104,117,109,98,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,97,100,98,53,98,100,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,100,105,115,97,98,108,101,100,58,58,45,109,111,122,45,114,97,110,103,101,45,116,114,97,99,107,123,99,117,114,115,111,114,58,100,101,102,97,117,108,116,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,100,105,115,97,98,108,101,100,58,58,45,109,115,45,116,104,117,109,98,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,97,100,98,53,98,100,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,44,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,44,46,99,117,115,116,111,109,45,115,101,108,101,99,116,123,116,114,97,110,115,105,116,105,111,110,58,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,114,100,101,114,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,120,45,115,104,97,100,111,119,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,44,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,44,46,99,117,115,116,111,109,45,115,101,108,101,99,116,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,46,110,97,118,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,59,108,105,115,116,45,115,116,121,108,101,58,110,111,110,101,125,46,110,97,118,45,108,105,110,107,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,112,97,100,100,105,110,103,58,46,53,114,101,109,32,49,114,101,109,125,46,110,97,118,45,108,105,110,107,58,102,111,99,117,115,44,46,110,97,118,45,108,105,110,107,58,104,111,118,101,114,123,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,125,46,110,97,118,45,108,105,110,107,46,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,54,99,55,53,55,100,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,110,111,110,101,59,99,117,114,115,111,114,58,100,101,102,97,117,108,116,125,46,110,97,118,45,116,97,98,115,123,98,111,114,100,101,114,45,98,111,116,116,111,109,58,49,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,125,46,110,97,118,45,116,97,98,115,32,46,110,97,118,45,105,116,101,109,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,49,112,120,125,46,110,97,118,45,116,97,98,115,32,46,110,97,118,45,108,105,110,107,123,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,110,97,118,45,116,97,98,115,32,46,110,97,118,45,108,105,110,107,58,102,111,99,117,115,44,46,110,97,118,45,116,97,98,115,32,46,110,97,118,45,108,105,110,107,58,104,111,118,101,114,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,101,57,101,99,101,102,32,35,101,57,101,99,101,102,32,35,100,101,101,50,101,54,125,46,110,97,118,45,116,97,98,115,32,46,110,97,118,45,108,105,110,107,46,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,54,99,55,53,55,100,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,125,46,110,97,118,45,116,97,98,115,32,46,110,97,118,45,105,116,101,109,46,115,104,111,119,32,46,110,97,118,45,108,105,110,107,44,46,110,97,118,45,116,97,98,115,32,46,110,97,118,45,108,105,110,107,46,97,99,116,105,118,101,123,99,111,108,111,114,58,35,52,57,53,48,53,55,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,101,101,50,101,54,32,35,100,101,101,50,101,54,32,35,102,102,102,125,46,110,97,118,45,116,97,98,115,32,46,100,114,111,112,100,111,119,110,45,109,101,110,117,123,109,97,114,103,105,110,45,116,111,112,58,45,49,112,120,59,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,125,46,110,97,118,45,112,105,108,108,115,32,46,110,97,118,45,108,105,110,107,123,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,110,97,118,45,112,105,108,108,115,32,46,110,97,118,45,108,105,110,107,46,97,99,116,105,118,101,44,46,110,97,118,45,112,105,108,108,115,32,46,115,104,111,119,62,46,110,97,118,45,108,105,110,107,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,125,46,110,97,118,45,102,105,108,108,32,46,110,97,118,45,105,116,101,109,123,45,109,115,45,102,108,101,120,58,49,32,49,32,97,117,116,111,59,102,108,101,120,58,49,32,49,32,97,117,116,111,59,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,125,46,110,97,118,45,106,117,115,116,105,102,105,101,100,32,46,110,97,118,45,105,116,101,109,123,45,109,115,45,102,108,101,120,45,112,114,101,102,101,114,114,101,100,45,115,105,122,101,58,48,59,102,108,101,120,45,98,97,115,105,115,58,48,59,45,109,115,45,102,108,101,120,45,112,111,115,105,116,105,118,101,58,49,59,102,108,101,120,45,103,114,111,119,58,49,59,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,125,46,116,97,98,45,99,111,110,116,101,110,116,62,46,116,97,98,45,112,97,110,101,123,100,105,115,112,108,97,121,58,110,111,110,101,125,46,116,97,98,45,99,111,110,116,101,110,116,62,46,97,99,116,105,118,101,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,110,97,118,98,97,114,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,99,101,110,116,101,114,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,59,45,109,115,45,102,108,101,120,45,112,97,99,107,58,106,117,115,116,105,102,121,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,98,101,116,119,101,101,110,59,112,97,100,100,105,110,103,58,46,53,114,101,109,32,49,114,101,109,125,46,110,97,118,98,97,114,62,46,99,111,110,116,97,105,110,101,114,44,46,110,97,118,98,97,114,62,46,99,111,110,116,97,105,110,101,114,45,102,108,117,105,100,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,99,101,110,116,101,114,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,59,45,109,115,45,102,108,101,120,45,112,97,99,107,58,106,117,115,116,105,102,121,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,98,101,116,119,101,101,110,125,46,110,97,118,98,97,114,45,98,114,97,110,100,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,112,97,100,100,105,110,103,45,116,111,112,58,46,51,49,50,53,114,101,109,59,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,51,49,50,53,114,101,109,59,109,97,114,103,105,110,45,114,105,103,104,116,58,49,114,101,109,59,102,111,110,116,45,115,105,122,101,58,49,46,50,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,105,110,104,101,114,105,116,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,119,114,97,112,125,46,110,97,118,98,97,114,45,98,114,97,110,100,58,102,111,99,117,115,44,46,110,97,118,98,97,114,45,98,114,97,110,100,58,104,111,118,101,114,123,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,125,46,110,97,118,98,97,114,45,110,97,118,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,59,108,105,115,116,45,115,116,121,108,101,58,110,111,110,101,125,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,48,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,125,46,110,97,118,98,97,114,45,110,97,118,32,46,100,114,111,112,100,111,119,110,45,109,101,110,117,123,112,111,115,105,116,105,111,110,58,115,116,97,116,105,99,59,102,108,111,97,116,58,110,111,110,101,125,46,110,97,118,98,97,114,45,116,101,120,116,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,112,97,100,100,105,110,103,45,116,111,112,58,46,53,114,101,109,59,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,53,114,101,109,125,46,110,97,118,98,97,114,45,99,111,108,108,97,112,115,101,123,45,109,115,45,102,108,101,120,45,112,114,101,102,101,114,114,101,100,45,115,105,122,101,58,49,48,48,37,59,102,108,101,120,45,98,97,115,105,115,58,49,48,48,37,59,45,109,115,45,102,108,101,120,45,112,111,115,105,116,105,118,101,58,49,59,102,108,101,120,45,103,114,111,119,58,49,59,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,99,101,110,116,101,114,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,125,46,110,97,118,98,97,114,45,116,111,103,103,108,101,114,123,112,97,100,100,105,110,103,58,46,50,53,114,101,109,32,46,55,53,114,101,109,59,102,111,110,116,45,115,105,122,101,58,49,46,50,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,110,97,118,98,97,114,45,116,111,103,103,108,101,114,58,102,111,99,117,115,44,46,110,97,118,98,97,114,45,116,111,103,103,108,101,114,58,104,111,118,101,114,123,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,125,46,110,97,118,98,97,114,45,116,111,103,103,108,101,114,45,105,99,111,110,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,119,105,100,116,104,58,49,46,53,101,109,59,104,101,105,103,104,116,58,49,46,53,101,109,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,109,105,100,100,108,101,59,99,111,110,116,101,110,116,58,34,34,59,98,97,99,107,103,114,111,117,110,100,58,110,111,45,114,101,112,101,97,116,32,99,101,110,116,101,114,32,99,101,110,116,101,114,59,98,97,99,107,103,114,111,117,110,100,45,115,105,122,101,58,49,48,48,37,32,49,48,48,37,125,64,109,101,100,105,97,32,40,109,97,120,45,119,105,100,116,104,58,53,55,53,46,57,56,112,120,41,123,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,115,109,62,46,99,111,110,116,97,105,110,101,114,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,115,109,62,46,99,111,110,116,97,105,110,101,114,45,102,108,117,105,100,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,48,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,115,109,123,45,109,115,45,102,108,101,120,45,102,108,111,119,58,114,111,119,32,110,111,119,114,97,112,59,102,108,101,120,45,102,108,111,119,58,114,111,119,32,110,111,119,114,97,112,59,45,109,115,45,102,108,101,120,45,112,97,99,107,58,115,116,97,114,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,115,109,32,46,110,97,118,98,97,114,45,110,97,118,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,115,109,32,46,110,97,118,98,97,114,45,110,97,118,32,46,100,114,111,112,100,111,119,110,45,109,101,110,117,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,115,109,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,53,114,101,109,59,112,97,100,100,105,110,103,45,108,101,102,116,58,46,53,114,101,109,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,115,109,62,46,99,111,110,116,97,105,110,101,114,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,115,109,62,46,99,111,110,116,97,105,110,101,114,45,102,108,117,105,100,123,45,109,115,45,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,59,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,115,109,32,46,110,97,118,98,97,114,45,99,111,108,108,97,112,115,101,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,33,105,109,112,111,114,116,97,110,116,59,100,105,115,112,108,97,121,58,102,108,101,120,33,105,109,112,111,114,116,97,110,116,59,45,109,115,45,102,108,101,120,45,112,114,101,102,101,114,114,101,100,45,115,105,122,101,58,97,117,116,111,59,102,108,101,120,45,98,97,115,105,115,58,97,117,116,111,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,115,109,32,46,110,97,118,98,97,114,45,116,111,103,103,108,101,114,123,100,105,115,112,108,97,121,58,110,111,110,101,125,125,64,109,101,100,105,97,32,40,109,97,120,45,119,105,100,116,104,58,55,54,55,46,57,56,112,120,41,123,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,109,100,62,46,99,111,110,116,97,105,110,101,114,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,109,100,62,46,99,111,110,116,97,105,110,101,114,45,102,108,117,105,100,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,48,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,55,54,56,112,120,41,123,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,109,100,123,45,109,115,45,102,108,101,120,45,102,108,111,119,58,114,111,119,32,110,111,119,114,97,112,59,102,108,101,120,45,102,108,111,119,58,114,111,119,32,110,111,119,114,97,112,59,45,109,115,45,102,108,101,120,45,112,97,99,107,58,115,116,97,114,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,109,100,32,46,110,97,118,98,97,114,45,110,97,118,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,109,100,32,46,110,97,118,98,97,114,45,110,97,118,32,46,100,114,111,112,100,111,119,110,45,109,101,110,117,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,109,100,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,53,114,101,109,59,112,97,100,100,105,110,103,45,108,101,102,116,58,46,53,114,101,109,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,109,100,62,46,99,111,110,116,97,105,110,101,114,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,109,100,62,46,99,111,110,116,97,105,110,101,114,45,102,108,117,105,100,123,45,109,115,45,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,59,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,109,100,32,46,110,97,118,98,97,114,45,99,111,108,108,97,112,115,101,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,33,105,109,112,111,114,116,97,110,116,59,100,105,115,112,108,97,121,58,102,108,101,120,33,105,109,112,111,114,116,97,110,116,59,45,109,115,45,102,108,101,120,45,112,114,101,102,101,114,114,101,100,45,115,105,122,101,58,97,117,116,111,59,102,108,101,120,45,98,97,115,105,115,58,97,117,116,111,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,109,100,32,46,110,97,118,98,97,114,45,116,111,103,103,108,101,114,123,100,105,115,112,108,97,121,58,110,111,110,101,125,125,64,109,101,100,105,97,32,40,109,97,120,45,119,105,100,116,104,58,57,57,49,46,57,56,112,120,41,123,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,108,103,62,46,99,111,110,116,97,105,110,101,114,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,108,103,62,46,99,111,110,116,97,105,110,101,114,45,102,108,117,105,100,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,48,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,57,57,50,112,120,41,123,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,108,103,123,45,109,115,45,102,108,101,120,45,102,108,111,119,58,114,111,119,32,110,111,119,114,97,112,59,102,108,101,120,45,102,108,111,119,58,114,111,119,32,110,111,119,114,97,112,59,45,109,115,45,102,108,101,120,45,112,97,99,107,58,115,116,97,114,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,108,103,32,46,110,97,118,98,97,114,45,110,97,118,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,108,103,32,46,110,97,118,98,97,114,45,110,97,118,32,46,100,114,111,112,100,111,119,110,45,109,101,110,117,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,108,103,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,53,114,101,109,59,112,97,100,100,105,110,103,45,108,101,102,116,58,46,53,114,101,109,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,108,103,62,46,99,111,110,116,97,105,110,101,114,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,108,103,62,46,99,111,110,116,97,105,110,101,114,45,102,108,117,105,100,123,45,109,115,45,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,59,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,108,103,32,46,110,97,118,98,97,114,45,99,111,108,108,97,112,115,101,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,33,105,109,112,111,114,116,97,110,116,59,100,105,115,112,108,97,121,58,102,108,101,120,33,105,109,112,111,114,116,97,110,116,59,45,109,115,45,102,108,101,120,45,112,114,101,102,101,114,114,101,100,45,115,105,122,101,58,97,117,116,111,59,102,108,101,120,45,98,97,115,105,115,58,97,117,116,111,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,108,103,32,46,110,97,118,98,97,114,45,116,111,103,103,108,101,114,123,100,105,115,112,108,97,121,58,110,111,110,101,125,125,64,109,101,100,105,97,32,40,109,97,120,45,119,105,100,116,104,58,49,49,57,57,46,57,56,112,120,41,123,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,120,108,62,46,99,111,110,116,97,105,110,101,114,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,120,108,62,46,99,111,110,116,97,105,110,101,114,45,102,108,117,105,100,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,48,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,49,50,48,48,112,120,41,123,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,120,108,123,45,109,115,45,102,108,101,120,45,102,108,111,119,58,114,111,119,32,110,111,119,114,97,112,59,102,108,101,120,45,102,108,111,119,58,114,111,119,32,110,111,119,114,97,112,59,45,109,115,45,102,108,101,120,45,112,97,99,107,58,115,116,97,114,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,120,108,32,46,110,97,118,98,97,114,45,110,97,118,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,120,108,32,46,110,97,118,98,97,114,45,110,97,118,32,46,100,114,111,112,100,111,119,110,45,109,101,110,117,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,120,108,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,53,114,101,109,59,112,97,100,100,105,110,103,45,108,101,102,116,58,46,53,114,101,109,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,120,108,62,46,99,111,110,116,97,105,110,101,114,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,120,108,62,46,99,111,110,116,97,105,110,101,114,45,102,108,117,105,100,123,45,109,115,45,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,59,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,120,108,32,46,110,97,118,98,97,114,45,99,111,108,108,97,112,115,101,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,33,105,109,112,111,114,116,97,110,116,59,100,105,115,112,108,97,121,58,102,108,101,120,33,105,109,112,111,114,116,97,110,116,59,45,109,115,45,102,108,101,120,45,112,114,101,102,101,114,114,101,100,45,115,105,122,101,58,97,117,116,111,59,102,108,101,120,45,98,97,115,105,115,58,97,117,116,111,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,120,108,32,46,110,97,118,98,97,114,45,116,111,103,103,108,101,114,123,100,105,115,112,108,97,121,58,110,111,110,101,125,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,123,45,109,115,45,102,108,101,120,45,102,108,111,119,58,114,111,119,32,110,111,119,114,97,112,59,102,108,101,120,45,102,108,111,119,58,114,111,119,32,110,111,119,114,97,112,59,45,109,115,45,102,108,101,120,45,112,97,99,107,58,115,116,97,114,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,62,46,99,111,110,116,97,105,110,101,114,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,62,46,99,111,110,116,97,105,110,101,114,45,102,108,117,105,100,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,48,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,32,46,110,97,118,98,97,114,45,110,97,118,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,32,46,110,97,118,98,97,114,45,110,97,118,32,46,100,114,111,112,100,111,119,110,45,109,101,110,117,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,53,114,101,109,59,112,97,100,100,105,110,103,45,108,101,102,116,58,46,53,114,101,109,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,62,46,99,111,110,116,97,105,110,101,114,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,62,46,99,111,110,116,97,105,110,101,114,45,102,108,117,105,100,123,45,109,115,45,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,59,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,32,46,110,97,118,98,97,114,45,99,111,108,108,97,112,115,101,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,33,105,109,112,111,114,116,97,110,116,59,100,105,115,112,108,97,121,58,102,108,101,120,33,105,109,112,111,114,116,97,110,116,59,45,109,115,45,102,108,101,120,45,112,114,101,102,101,114,114,101,100,45,115,105,122,101,58,97,117,116,111,59,102,108,101,120,45,98,97,115,105,115,58,97,117,116,111,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,32,46,110,97,118,98,97,114,45,116,111,103,103,108,101,114,123,100,105,115,112,108,97,121,58,110,111,110,101,125,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,98,114,97,110,100,123,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,57,41,125,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,98,114,97,110,100,58,102,111,99,117,115,44,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,98,114,97,110,100,58,104,111,118,101,114,123,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,57,41,125,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,123,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,53,41,125,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,58,102,111,99,117,115,44,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,58,104,111,118,101,114,123,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,55,41,125,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,46,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,51,41,125,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,110,97,118,32,46,97,99,116,105,118,101,62,46,110,97,118,45,108,105,110,107,44,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,46,97,99,116,105,118,101,44,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,46,115,104,111,119,44,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,110,97,118,32,46,115,104,111,119,62,46,110,97,118,45,108,105,110,107,123,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,57,41,125,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,116,111,103,103,108,101,114,123,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,53,41,59,98,111,114,100,101,114,45,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,49,41,125,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,116,111,103,103,108,101,114,45,105,99,111,110,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,118,105,101,119,66,111,120,61,39,48,32,48,32,51,48,32,51,48,39,32,120,109,108,110,115,61,39,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,115,118,103,39,37,51,101,37,51,99,112,97,116,104,32,115,116,114,111,107,101,61,39,114,103,98,97,40,48,44,32,48,44,32,48,44,32,48,46,53,41,39,32,115,116,114,111,107,101,45,119,105,100,116,104,61,39,50,39,32,115,116,114,111,107,101,45,108,105,110,101,99,97,112,61,39,114,111,117,110,100,39,32,115,116,114,111,107,101,45,109,105,116,101,114,108,105,109,105,116,61,39,49,48,39,32,100,61,39,77,52,32,55,104,50,50,77,52,32,49,53,104,50,50,77,52,32,50,51,104,50,50,39,47,37,51,101,37,51,99,47,115,118,103,37,51,101,34,41,125,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,116,101,120,116,123,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,53,41,125,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,116,101,120,116,32,97,123,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,57,41,125,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,116,101,120,116,32,97,58,102,111,99,117,115,44,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,116,101,120,116,32,97,58,104,111,118,101,114,123,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,57,41,125,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,98,114,97,110,100,123,99,111,108,111,114,58,35,102,102,102,125,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,98,114,97,110,100,58,102,111,99,117,115,44,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,98,114,97,110,100,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,125,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,123,99,111,108,111,114,58,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,46,53,41,125,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,58,102,111,99,117,115,44,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,58,104,111,118,101,114,123,99,111,108,111,114,58,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,46,55,53,41,125,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,46,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,46,50,53,41,125,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,110,97,118,32,46,97,99,116,105,118,101,62,46,110,97,118,45,108,105,110,107,44,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,46,97,99,116,105,118,101,44,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,46,115,104,111,119,44,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,110,97,118,32,46,115,104,111,119,62,46,110,97,118,45,108,105,110,107,123,99,111,108,111,114,58,35,102,102,102,125,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,116,111,103,103,108,101,114,123,99,111,108,111,114,58,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,46,53,41,59,98,111,114,100,101,114,45,99,111,108,111,114,58,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,46,49,41,125,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,116,111,103,103,108,101,114,45,105,99,111,110,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,118,105,101,119,66,111,120,61,39,48,32,48,32,51,48,32,51,48,39,32,120,109,108,110,115,61,39,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,115,118,103,39,37,51,101,37,51,99,112,97,116,104,32,115,116,114,111,107,101,61,39,114,103,98,97,40,50,53,53,44,32,50,53,53,44,32,50,53,53,44,32,48,46,53,41,39,32,115,116,114,111,107,101,45,119,105,100,116,104,61,39,50,39,32,115,116,114,111,107,101,45,108,105,110,101,99,97,112,61,39,114,111,117,110,100,39,32,115,116,114,111,107,101,45,109,105,116,101,114,108,105,109,105,116,61,39,49,48,39,32,100,61,39,77,52,32,55,104,50,50,77,52,32,49,53,104,50,50,77,52,32,50,51,104,50,50,39,47,37,51,101,37,51,99,47,115,118,103,37,51,101,34,41,125,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,116,101,120,116,123,99,111,108,111,114,58,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,46,53,41,125,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,116,101,120,116,32,97,123,99,111,108,111,114,58,35,102,102,102,125,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,116,101,120,116,32,97,58,102,111,99,117,115,44,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,116,101,120,116,32,97,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,125,46,99,97,114,100,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,109,105,110,45,119,105,100,116,104,58,48,59,119,111,114,100,45,119,114,97,112,58,98,114,101,97,107,45,119,111,114,100,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,108,105,112,58,98,111,114,100,101,114,45,98,111,120,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,114,103,98,97,40,48,44,48,44,48,44,46,49,50,53,41,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,99,97,114,100,62,104,114,123,109,97,114,103,105,110,45,114,105,103,104,116,58,48,59,109,97,114,103,105,110,45,108,101,102,116,58,48,125,46,99,97,114,100,62,46,108,105,115,116,45,103,114,111,117,112,58,102,105,114,115,116,45,99,104,105,108,100,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,102,105,114,115,116,45,99,104,105,108,100,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,99,97,114,100,62,46,108,105,115,116,45,103,114,111,117,112,58,108,97,115,116,45,99,104,105,108,100,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,108,97,115,116,45,99,104,105,108,100,123,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,99,97,114,100,45,98,111,100,121,123,45,109,115,45,102,108,101,120,58,49,32,49,32,97,117,116,111,59,102,108,101,120,58,49,32,49,32,97,117,116,111,59,112,97,100,100,105,110,103,58,49,46,50,53,114,101,109,125,46,99,97,114,100,45,116,105,116,108,101,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,55,53,114,101,109,125,46,99,97,114,100,45,115,117,98,116,105,116,108,101,123,109,97,114,103,105,110,45,116,111,112,58,45,46,51,55,53,114,101,109,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,46,99,97,114,100,45,116,101,120,116,58,108,97,115,116,45,99,104,105,108,100,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,46,99,97,114,100,45,108,105,110,107,58,104,111,118,101,114,123,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,125,46,99,97,114,100,45,108,105,110,107,43,46,99,97,114,100,45,108,105,110,107,123,109,97,114,103,105,110,45,108,101,102,116,58,49,46,50,53,114,101,109,125,46,99,97,114,100,45,104,101,97,100,101,114,123,112,97,100,100,105,110,103,58,46,55,53,114,101,109,32,49,46,50,53,114,101,109,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,48,51,41,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,49,112,120,32,115,111,108,105,100,32,114,103,98,97,40,48,44,48,44,48,44,46,49,50,53,41,125,46,99,97,114,100,45,104,101,97,100,101,114,58,102,105,114,115,116,45,99,104,105,108,100,123,98,111,114,100,101,114,45,114,97,100,105,117,115,58,99,97,108,99,40,46,50,53,114,101,109,32,45,32,49,112,120,41,32,99,97,108,99,40,46,50,53,114,101,109,32,45,32,49,112,120,41,32,48,32,48,125,46,99,97,114,100,45,104,101,97,100,101,114,43,46,108,105,115,116,45,103,114,111,117,112,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,102,105,114,115,116,45,99,104,105,108,100,123,98,111,114,100,101,114,45,116,111,112,58,48,125,46,99,97,114,100,45,102,111,111,116,101,114,123,112,97,100,100,105,110,103,58,46,55,53,114,101,109,32,49,46,50,53,114,101,109,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,48,51,41,59,98,111,114,100,101,114,45,116,111,112,58,49,112,120,32,115,111,108,105,100,32,114,103,98,97,40,48,44,48,44,48,44,46,49,50,53,41,125,46,99,97,114,100,45,102,111,111,116,101,114,58,108,97,115,116,45,99,104,105,108,100,123,98,111,114,100,101,114,45,114,97,100,105,117,115,58,48,32,48,32,99,97,108,99,40,46,50,53,114,101,109,32,45,32,49,112,120,41,32,99,97,108,99,40,46,50,53,114,101,109,32,45,32,49,112,120,41,125,46,99,97,114,100,45,104,101,97,100,101,114,45,116,97,98,115,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,46,54,50,53,114,101,109,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,46,55,53,114,101,109,59,109,97,114,103,105,110,45,108,101,102,116,58,45,46,54,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,48,125,46,99,97,114,100,45,104,101,97,100,101,114,45,112,105,108,108,115,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,46,54,50,53,114,101,109,59,109,97,114,103,105,110,45,108,101,102,116,58,45,46,54,50,53,114,101,109,125,46,99,97,114,100,45,105,109,103,45,111,118,101,114,108,97,121,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,48,59,114,105,103,104,116,58,48,59,98,111,116,116,111,109,58,48,59,108,101,102,116,58,48,59,112,97,100,100,105,110,103,58,49,46,50,53,114,101,109,125,46,99,97,114,100,45,105,109,103,123,119,105,100,116,104,58,49,48,48,37,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,99,97,108,99,40,46,50,53,114,101,109,32,45,32,49,112,120,41,125,46,99,97,114,100,45,105,109,103,45,116,111,112,123,119,105,100,116,104,58,49,48,48,37,59,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,99,97,108,99,40,46,50,53,114,101,109,32,45,32,49,112,120,41,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,99,97,108,99,40,46,50,53,114,101,109,32,45,32,49,112,120,41,125,46,99,97,114,100,45,105,109,103,45,98,111,116,116,111,109,123,119,105,100,116,104,58,49,48,48,37,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,99,97,108,99,40,46,50,53,114,101,109,32,45,32,49,112,120,41,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,99,97,108,99,40,46,50,53,114,101,109,32,45,32,49,112,120,41,125,46,99,97,114,100,45,100,101,99,107,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,125,46,99,97,114,100,45,100,101,99,107,32,46,99,97,114,100,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,53,112,120,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,99,97,114,100,45,100,101,99,107,123,45,109,115,45,102,108,101,120,45,102,108,111,119,58,114,111,119,32,119,114,97,112,59,102,108,101,120,45,102,108,111,119,58,114,111,119,32,119,114,97,112,59,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,53,112,120,59,109,97,114,103,105,110,45,108,101,102,116,58,45,49,53,112,120,125,46,99,97,114,100,45,100,101,99,107,32,46,99,97,114,100,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,58,49,32,48,32,48,37,59,102,108,101,120,58,49,32,48,32,48,37,59,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,109,97,114,103,105,110,45,114,105,103,104,116,58,49,53,112,120,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,59,109,97,114,103,105,110,45,108,101,102,116,58,49,53,112,120,125,125,46,99,97,114,100,45,103,114,111,117,112,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,125,46,99,97,114,100,45,103,114,111,117,112,62,46,99,97,114,100,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,53,112,120,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,99,97,114,100,45,103,114,111,117,112,123,45,109,115,45,102,108,101,120,45,102,108,111,119,58,114,111,119,32,119,114,97,112,59,102,108,101,120,45,102,108,111,119,58,114,111,119,32,119,114,97,112,125,46,99,97,114,100,45,103,114,111,117,112,62,46,99,97,114,100,123,45,109,115,45,102,108,101,120,58,49,32,48,32,48,37,59,102,108,101,120,58,49,32,48,32,48,37,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,46,99,97,114,100,45,103,114,111,117,112,62,46,99,97,114,100,43,46,99,97,114,100,123,109,97,114,103,105,110,45,108,101,102,116,58,48,59,98,111,114,100,101,114,45,108,101,102,116,58,48,125,46,99,97,114,100,45,103,114,111,117,112,62,46,99,97,114,100,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,123,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,125,46,99,97,114,100,45,103,114,111,117,112,62,46,99,97,114,100,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,32,46,99,97,114,100,45,104,101,97,100,101,114,44,46,99,97,114,100,45,103,114,111,117,112,62,46,99,97,114,100,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,32,46,99,97,114,100,45,105,109,103,45,116,111,112,123,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,125,46,99,97,114,100,45,103,114,111,117,112,62,46,99,97,114,100,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,32,46,99,97,114,100,45,102,111,111,116,101,114,44,46,99,97,114,100,45,103,114,111,117,112,62,46,99,97,114,100,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,32,46,99,97,114,100,45,105,109,103,45,98,111,116,116,111,109,123,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,125,46,99,97,114,100,45,103,114,111,117,112,62,46,99,97,114,100,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,48,125,46,99,97,114,100,45,103,114,111,117,112,62,46,99,97,114,100,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,32,46,99,97,114,100,45,104,101,97,100,101,114,44,46,99,97,114,100,45,103,114,111,117,112,62,46,99,97,114,100,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,32,46,99,97,114,100,45,105,109,103,45,116,111,112,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,48,125,46,99,97,114,100,45,103,114,111,117,112,62,46,99,97,114,100,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,32,46,99,97,114,100,45,102,111,111,116,101,114,44,46,99,97,114,100,45,103,114,111,117,112,62,46,99,97,114,100,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,32,46,99,97,114,100,45,105,109,103,45,98,111,116,116,111,109,123,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,48,125,125,46,99,97,114,100,45,99,111,108,117,109,110,115,32,46,99,97,114,100,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,55,53,114,101,109,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,99,97,114,100,45,99,111,108,117,109,110,115,123,45,119,101,98,107,105,116,45,99,111,108,117,109,110,45,99,111,117,110,116,58,51,59,45,109,111,122,45,99,111,108,117,109,110,45,99,111,117,110,116,58,51,59,99,111,108,117,109,110,45,99,111,117,110,116,58,51,59,45,119,101,98,107,105,116,45,99,111,108,117,109,110,45,103,97,112,58,49,46,50,53,114,101,109,59,45,109,111,122,45,99,111,108,117,109,110,45,103,97,112,58,49,46,50,53,114,101,109,59,99,111,108,117,109,110,45,103,97,112,58,49,46,50,53,114,101,109,59,111,114,112,104,97,110,115,58,49,59,119,105,100,111,119,115,58,49,125,46,99,97,114,100,45,99,111,108,117,109,110,115,32,46,99,97,114,100,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,125,125,46,97,99,99,111,114,100,105,111,110,62,46,99,97,114,100,123,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,125,46,97,99,99,111,114,100,105,111,110,62,46,99,97,114,100,58,110,111,116,40,58,102,105,114,115,116,45,111,102,45,116,121,112,101,41,32,46,99,97,114,100,45,104,101,97,100,101,114,58,102,105,114,115,116,45,99,104,105,108,100,123,98,111,114,100,101,114,45,114,97,100,105,117,115,58,48,125,46,97,99,99,111,114,100,105,111,110,62,46,99,97,114,100,58,110,111,116,40,58,102,105,114,115,116,45,111,102,45,116,121,112,101,41,58,110,111,116,40,58,108,97,115,116,45,111,102,45,116,121,112,101,41,123,98,111,114,100,101,114,45,98,111,116,116,111,109,58,48,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,48,125,46,97,99,99,111,114,100,105,111,110,62,46,99,97,114,100,58,102,105,114,115,116,45,111,102,45,116,121,112,101,123,98,111,114,100,101,114,45,98,111,116,116,111,109,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,48,125,46,97,99,99,111,114,100,105,111,110,62,46,99,97,114,100,58,108,97,115,116,45,111,102,45,116,121,112,101,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,125,46,97,99,99,111,114,100,105,111,110,62,46,99,97,114,100,32,46,99,97,114,100,45,104,101,97,100,101,114,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,49,112,120,125,46,98,114,101,97,100,99,114,117,109,98,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,112,97,100,100,105,110,103,58,46,55,53,114,101,109,32,49,114,101,109,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,114,101,109,59,108,105,115,116,45,115,116,121,108,101,58,110,111,110,101,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,57,101,99,101,102,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,98,114,101,97,100,99,114,117,109,98,45,105,116,101,109,43,46,98,114,101,97,100,99,114,117,109,98,45,105,116,101,109,123,112,97,100,100,105,110,103,45,108,101,102,116,58,46,53,114,101,109,125,46,98,114,101,97,100,99,114,117,109,98,45,105,116,101,109,43,46,98,114,101,97,100,99,114,117,109,98,45,105,116,101,109,58,58,98,101,102,111,114,101,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,53,114,101,109,59,99,111,108,111,114,58,35,54,99,55,53,55,100,59,99,111,110,116,101,110,116,58,34,47,34,125,46,98,114,101,97,100,99,114,117,109,98,45,105,116,101,109,43,46,98,114,101,97,100,99,114,117,109,98,45,105,116,101,109,58,104,111,118,101,114,58,58,98,101,102,111,114,101,123,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,117,110,100,101,114,108,105,110,101,125,46,98,114,101,97,100,99,114,117,109,98,45,105,116,101,109,43,46,98,114,101,97,100,99,114,117,109,98,45,105,116,101,109,58,104,111,118,101,114,58,58,98,101,102,111,114,101,123,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,125,46,98,114,101,97,100,99,114,117,109,98,45,105,116,101,109,46,97,99,116,105,118,101,123,99,111,108,111,114,58,35,54,99,55,53,55,100,125,46,112,97,103,105,110,97,116,105,111,110,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,59,108,105,115,116,45,115,116,121,108,101,58,110,111,110,101,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,112,97,103,101,45,108,105,110,107,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,112,97,100,100,105,110,103,58,46,53,114,101,109,32,46,55,53,114,101,109,59,109,97,114,103,105,110,45,108,101,102,116,58,45,49,112,120,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,50,53,59,99,111,108,111,114,58,35,48,48,55,98,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,125,46,112,97,103,101,45,108,105,110,107,58,104,111,118,101,114,123,122,45,105,110,100,101,120,58,50,59,99,111,108,111,114,58,35,48,48,53,54,98,51,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,57,101,99,101,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,101,101,50,101,54,125,46,112,97,103,101,45,108,105,110,107,58,102,111,99,117,115,123,122,45,105,110,100,101,120,58,50,59,111,117,116,108,105,110,101,58,48,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,50,53,41,125,46,112,97,103,101,45,105,116,101,109,58,102,105,114,115,116,45,99,104,105,108,100,32,46,112,97,103,101,45,108,105,110,107,123,109,97,114,103,105,110,45,108,101,102,116,58,48,59,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,112,97,103,101,45,105,116,101,109,58,108,97,115,116,45,99,104,105,108,100,32,46,112,97,103,101,45,108,105,110,107,123,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,112,97,103,101,45,105,116,101,109,46,97,99,116,105,118,101,32,46,112,97,103,101,45,108,105,110,107,123,122,45,105,110,100,101,120,58,49,59,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,48,48,55,98,102,102,125,46,112,97,103,101,45,105,116,101,109,46,100,105,115,97,98,108,101,100,32,46,112,97,103,101,45,108,105,110,107,123,99,111,108,111,114,58,35,54,99,55,53,55,100,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,110,111,110,101,59,99,117,114,115,111,114,58,97,117,116,111,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,101,101,50,101,54,125,46,112,97,103,105,110,97,116,105,111,110,45,108,103,32,46,112,97,103,101,45,108,105,110,107,123,112,97,100,100,105,110,103,58,46,55,53,114,101,109,32,49,46,53,114,101,109,59,102,111,110,116,45,115,105,122,101,58,49,46,50,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,125,46,112,97,103,105,110,97,116,105,111,110,45,108,103,32,46,112,97,103,101,45,105,116,101,109,58,102,105,114,115,116,45,99,104,105,108,100,32,46,112,97,103,101,45,108,105,110,107,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,46,51,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,46,51,114,101,109,125,46,112,97,103,105,110,97,116,105,111,110,45,108,103,32,46,112,97,103,101,45,105,116,101,109,58,108,97,115,116,45,99,104,105,108,100,32,46,112,97,103,101,45,108,105,110,107,123,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,51,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,51,114,101,109,125,46,112,97,103,105,110,97,116,105,111,110,45,115,109,32,46,112,97,103,101,45,108,105,110,107,123,112,97,100,100,105,110,103,58,46,50,53,114,101,109,32,46,53,114,101,109,59,102,111,110,116,45,115,105,122,101,58,46,56,55,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,125,46,112,97,103,105,110,97,116,105,111,110,45,115,109,32,46,112,97,103,101,45,105,116,101,109,58,102,105,114,115,116,45,99,104,105,108,100,32,46,112,97,103,101,45,108,105,110,107,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,114,101,109,125,46,112,97,103,105,110,97,116,105,111,110,45,115,109,32,46,112,97,103,101,45,105,116,101,109,58,108,97,115,116,45,99,104,105,108,100,32,46,112,97,103,101,45,108,105,110,107,123,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,114,101,109,125,46,98,97,100,103,101,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,112,97,100,100,105,110,103,58,46,50,53,101,109,32,46,52,101,109,59,102,111,110,116,45,115,105,122,101,58,55,53,37,59,102,111,110,116,45,119,101,105,103,104,116,58,55,48,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,59,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,119,114,97,112,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,98,97,115,101,108,105,110,101,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,116,114,97,110,115,105,116,105,111,110,58,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,114,100,101,114,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,120,45,115,104,97,100,111,119,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,98,97,100,103,101,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,97,46,98,97,100,103,101,58,102,111,99,117,115,44,97,46,98,97,100,103,101,58,104,111,118,101,114,123,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,125,46,98,97,100,103,101,58,101,109,112,116,121,123,100,105,115,112,108,97,121,58,110,111,110,101,125,46,98,116,110,32,46,98,97,100,103,101,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,116,111,112,58,45,49,112,120,125,46,98,97,100,103,101,45,112,105,108,108,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,54,101,109,59,112,97,100,100,105,110,103,45,108,101,102,116,58,46,54,101,109,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,49,48,114,101,109,125,46,98,97,100,103,101,45,112,114,105,109,97,114,121,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,125,97,46,98,97,100,103,101,45,112,114,105,109,97,114,121,58,102,111,99,117,115,44,97,46,98,97,100,103,101,45,112,114,105,109,97,114,121,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,54,50,99,99,125,97,46,98,97,100,103,101,45,112,114,105,109,97,114,121,46,102,111,99,117,115,44,97,46,98,97,100,103,101,45,112,114,105,109,97,114,121,58,102,111,99,117,115,123,111,117,116,108,105,110,101,58,48,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,53,41,125,46,98,97,100,103,101,45,115,101,99,111,110,100,97,114,121,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,54,99,55,53,55,100,125,97,46,98,97,100,103,101,45,115,101,99,111,110,100,97,114,121,58,102,111,99,117,115,44,97,46,98,97,100,103,101,45,115,101,99,111,110,100,97,114,121,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,53,52,53,98,54,50,125,97,46,98,97,100,103,101,45,115,101,99,111,110,100,97,114,121,46,102,111,99,117,115,44,97,46,98,97,100,103,101,45,115,101,99,111,110,100,97,114,121,58,102,111,99,117,115,123,111,117,116,108,105,110,101,58,48,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,49,48,56,44,49,49,55,44,49,50,53,44,46,53,41,125,46,98,97,100,103,101,45,115,117,99,99,101,115,115,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,50,56,97,55,52,53,125,97,46,98,97,100,103,101,45,115,117,99,99,101,115,115,58,102,111,99,117,115,44,97,46,98,97,100,103,101,45,115,117,99,99,101,115,115,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,101,55,101,51,52,125,97,46,98,97,100,103,101,45,115,117,99,99,101,115,115,46,102,111,99,117,115,44,97,46,98,97,100,103,101,45,115,117,99,99,101,115,115,58,102,111,99,117,115,123,111,117,116,108,105,110,101,58,48,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,52,48,44,49,54,55,44,54,57,44,46,53,41,125,46,98,97,100,103,101,45,105,110,102,111,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,55,97,50,98,56,125,97,46,98,97,100,103,101,45,105,110,102,111,58,102,111,99,117,115,44,97,46,98,97,100,103,101,45,105,110,102,111,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,49,55,97,56,98,125,97,46,98,97,100,103,101,45,105,110,102,111,46,102,111,99,117,115,44,97,46,98,97,100,103,101,45,105,110,102,111,58,102,111,99,117,115,123,111,117,116,108,105,110,101,58,48,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,51,44,49,54,50,44,49,56,52,44,46,53,41,125,46,98,97,100,103,101,45,119,97,114,110,105,110,103,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,99,49,48,55,125,97,46,98,97,100,103,101,45,119,97,114,110,105,110,103,58,102,111,99,117,115,44,97,46,98,97,100,103,101,45,119,97,114,110,105,110,103,58,104,111,118,101,114,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,51,57,101,48,48,125,97,46,98,97,100,103,101,45,119,97,114,110,105,110,103,46,102,111,99,117,115,44,97,46,98,97,100,103,101,45,119,97,114,110,105,110,103,58,102,111,99,117,115,123,111,117,116,108,105,110,101,58,48,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,53,53,44,49,57,51,44,55,44,46,53,41,125,46,98,97,100,103,101,45,100,97,110,103,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,99,51,53,52,53,125,97,46,98,97,100,103,101,45,100,97,110,103,101,114,58,102,111,99,117,115,44,97,46,98,97,100,103,101,45,100,97,110,103,101,114,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,100,50,49,51,48,125,97,46,98,97,100,103,101,45,100,97,110,103,101,114,46,102,111,99,117,115,44,97,46,98,97,100,103,101,45,100,97,110,103,101,114,58,102,111,99,117,115,123,111,117,116,108,105,110,101,58,48,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,50,48,44,53,51,44,54,57,44,46,53,41,125,46,98,97,100,103,101,45,108,105,103,104,116,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,56,102,57,102,97,125,97,46,98,97,100,103,101,45,108,105,103,104,116,58,102,111,99,117,115,44,97,46,98,97,100,103,101,45,108,105,103,104,116,58,104,111,118,101,114,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,97,101,48,101,53,125,97,46,98,97,100,103,101,45,108,105,103,104,116,46,102,111,99,117,115,44,97,46,98,97,100,103,101,45,108,105,103,104,116,58,102,111,99,117,115,123,111,117,116,108,105,110,101,58,48,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,52,56,44,50,52,57,44,50,53,48,44,46,53,41,125,46,98,97,100,103,101,45,100,97,114,107,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,51,52,51,97,52,48,125,97,46,98,97,100,103,101,45,100,97,114,107,58,102,111,99,117,115,44,97,46,98,97,100,103,101,45,100,97,114,107,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,100,50,49,50,52,125,97,46,98,97,100,103,101,45,100,97,114,107,46,102,111,99,117,115,44,97,46,98,97,100,103,101,45,100,97,114,107,58,102,111,99,117,115,123,111,117,116,108,105,110,101,58,48,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,53,50,44,53,56,44,54,52,44,46,53,41,125,46,106,117,109,98,111,116,114,111,110,123,112,97,100,100,105,110,103,58,50,114,101,109,32,49,114,101,109,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,50,114,101,109,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,57,101,99,101,102,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,51,114,101,109,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,106,117,109,98,111,116,114,111,110,123,112,97,100,100,105,110,103,58,52,114,101,109,32,50,114,101,109,125,125,46,106,117,109,98,111,116,114,111,110,45,102,108,117,105,100,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,48,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,48,125,46,97,108,101,114,116,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,112,97,100,100,105,110,103,58,46,55,53,114,101,109,32,49,46,50,53,114,101,109,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,114,101,109,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,97,108,101,114,116,45,104,101,97,100,105,110,103,123,99,111,108,111,114,58,105,110,104,101,114,105,116,125,46,97,108,101,114,116,45,108,105,110,107,123,102,111,110,116,45,119,101,105,103,104,116,58,55,48,48,125,46,97,108,101,114,116,45,100,105,115,109,105,115,115,105,98,108,101,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,52,114,101,109,125,46,97,108,101,114,116,45,100,105,115,109,105,115,115,105,98,108,101,32,46,99,108,111,115,101,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,48,59,114,105,103,104,116,58,48,59,112,97,100,100,105,110,103,58,46,55,53,114,101,109,32,49,46,50,53,114,101,109,59,99,111,108,111,114,58,105,110,104,101,114,105,116,125,46,97,108,101,114,116,45,112,114,105,109,97,114,121,123,99,111,108,111,114,58,35,48,48,52,48,56,53,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,99,99,101,53,102,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,98,56,100,97,102,102,125,46,97,108,101,114,116,45,112,114,105,109,97,114,121,32,104,114,123,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,57,102,99,100,102,102,125,46,97,108,101,114,116,45,112,114,105,109,97,114,121,32,46,97,108,101,114,116,45,108,105,110,107,123,99,111,108,111,114,58,35,48,48,50,55,53,50,125,46,97,108,101,114,116,45,115,101,99,111,110,100,97,114,121,123,99,111,108,111,114,58,35,51,56,51,100,52,49,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,50,101,51,101,53,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,54,100,56,100,98,125,46,97,108,101,114,116,45,115,101,99,111,110,100,97,114,121,32,104,114,123,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,99,56,99,98,99,102,125,46,97,108,101,114,116,45,115,101,99,111,110,100,97,114,121,32,46,97,108,101,114,116,45,108,105,110,107,123,99,111,108,111,114,58,35,50,48,50,51,50,54,125,46,97,108,101,114,116,45,115,117,99,99,101,115,115,123,99,111,108,111,114,58,35,49,53,53,55,50,52,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,52,101,100,100,97,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,99,51,101,54,99,98,125,46,97,108,101,114,116,45,115,117,99,99,101,115,115,32,104,114,123,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,98,49,100,102,98,98,125,46,97,108,101,114,116,45,115,117,99,99,101,115,115,32,46,97,108,101,114,116,45,108,105,110,107,123,99,111,108,111,114,58,35,48,98,50,101,49,51,125,46,97,108,101,114,116,45,105,110,102,111,123,99,111,108,111,114,58,35,48,99,53,52,54,48,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,49,101,99,102,49,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,98,101,101,53,101,98,125,46,97,108,101,114,116,45,105,110,102,111,32,104,114,123,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,97,98,100,100,101,53,125,46,97,108,101,114,116,45,105,110,102,111,32,46,97,108,101,114,116,45,108,105,110,107,123,99,111,108,111,114,58,35,48,54,50,99,51,51,125,46,97,108,101,114,116,45,119,97,114,110,105,110,103,123,99,111,108,111,114,58,35,56,53,54,52,48,52,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,51,99,100,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,102,101,101,98,97,125,46,97,108,101,114,116,45,119,97,114,110,105,110,103,32,104,114,123,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,102,102,101,56,97,49,125,46,97,108,101,114,116,45,119,97,114,110,105,110,103,32,46,97,108,101,114,116,45,108,105,110,107,123,99,111,108,111,114,58,35,53,51,51,102,48,51,125,46,97,108,101,114,116,45,100,97,110,103,101,114,123,99,111,108,111,114,58,35,55,50,49,99,50,52,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,56,100,55,100,97,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,53,99,54,99,98,125,46,97,108,101,114,116,45,100,97,110,103,101,114,32,104,114,123,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,102,49,98,48,98,55,125,46,97,108,101,114,116,45,100,97,110,103,101,114,32,46,97,108,101,114,116,45,108,105,110,107,123,99,111,108,111,114,58,35,52,57,49,50,49,55,125,46,97,108,101,114,116,45,108,105,103,104,116,123,99,111,108,111,114,58,35,56,49,56,49,56,50,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,101,102,101,102,101,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,100,102,100,102,101,125,46,97,108,101,114,116,45,108,105,103,104,116,32,104,114,123,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,101,99,101,99,102,54,125,46,97,108,101,114,116,45,108,105,103,104,116,32,46,97,108,101,114,116,45,108,105,110,107,123,99,111,108,111,114,58,35,54,56,54,56,54,56,125,46,97,108,101,114,116,45,100,97,114,107,123,99,111,108,111,114,58,35,49,98,49,101,50,49,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,54,100,56,100,57,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,99,54,99,56,99,97,125,46,97,108,101,114,116,45,100,97,114,107,32,104,114,123,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,98,57,98,98,98,101,125,46,97,108,101,114,116,45,100,97,114,107,32,46,97,108,101,114,116,45,108,105,110,107,123,99,111,108,111,114,58,35,48,52,48,53,48,53,125,64,45,119,101,98,107,105,116,45,107,101,121,102,114,97,109,101,115,32,112,114,111,103,114,101,115,115,45,98,97,114,45,115,116,114,105,112,101,115,123,102,114,111,109,123,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,49,114,101,109,32,48,125,116,111,123,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,48,32,48,125,125,64,107,101,121,102,114,97,109,101,115,32,112,114,111,103,114,101,115,115,45,98,97,114,45,115,116,114,105,112,101,115,123,102,114,111,109,123,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,49,114,101,109,32,48,125,116,111,123,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,48,32,48,125,125,46,112,114,111,103,114,101,115,115,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,104,101,105,103,104,116,58,49,114,101,109,59,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,59,102,111,110,116,45,115,105,122,101,58,46,55,53,114,101,109,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,57,101,99,101,102,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,112,114,111,103,114,101,115,115,45,98,97,114,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,45,109,115,45,102,108,101,120,45,112,97,99,107,58,99,101,110,116,101,114,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,59,99,111,108,111,114,58,35,102,102,102,59,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,119,114,97,112,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,59,116,114,97,110,115,105,116,105,111,110,58,119,105,100,116,104,32,46,54,115,32,101,97,115,101,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,112,114,111,103,114,101,115,115,45,98,97,114,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,46,112,114,111,103,114,101,115,115,45,98,97,114,45,115,116,114,105,112,101,100,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,108,105,110,101,97,114,45,103,114,97,100,105,101,110,116,40,52,53,100,101,103,44,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,46,49,53,41,32,50,53,37,44,116,114,97,110,115,112,97,114,101,110,116,32,50,53,37,44,116,114,97,110,115,112,97,114,101,110,116,32,53,48,37,44,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,46,49,53,41,32,53,48,37,44,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,46,49,53,41,32,55,53,37,44,116,114,97,110,115,112,97,114,101,110,116,32,55,53,37,44,116,114,97,110,115,112,97,114,101,110,116,41,59,98,97,99,107,103,114,111,117,110,100,45,115,105,122,101,58,49,114,101,109,32,49,114,101,109,125,46,112,114,111,103,114,101,115,115,45,98,97,114,45,97,110,105,109,97,116,101,100,123,45,119,101,98,107,105,116,45,97,110,105,109,97,116,105,111,110,58,112,114,111,103,114,101,115,115,45,98,97,114,45,115,116,114,105,112,101,115,32,49,115,32,108,105,110,101,97,114,32,105,110,102,105,110,105,116,101,59,97,110,105,109,97,116,105,111,110,58,112,114,111,103,114,101,115,115,45,98,97,114,45,115,116,114,105,112,101,115,32,49,115,32,108,105,110,101,97,114,32,105,110,102,105,110,105,116,101,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,112,114,111,103,114,101,115,115,45,98,97,114,45,97,110,105,109,97,116,101,100,123,45,119,101,98,107,105,116,45,97,110,105,109,97,116,105,111,110,58,110,111,110,101,59,97,110,105,109,97,116,105,111,110,58,110,111,110,101,125,125,46,109,101,100,105,97,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,115,116,97,114,116,59,97,108,105,103,110,45,105,116,101,109,115,58,102,108,101,120,45,115,116,97,114,116,125,46,109,101,100,105,97,45,98,111,100,121,123,45,109,115,45,102,108,101,120,58,49,59,102,108,101,120,58,49,125,46,108,105,115,116,45,103,114,111,117,112,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,123,119,105,100,116,104,58,49,48,48,37,59,99,111,108,111,114,58,35,52,57,53,48,53,55,59,116,101,120,116,45,97,108,105,103,110,58,105,110,104,101,114,105,116,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,102,111,99,117,115,44,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,104,111,118,101,114,123,122,45,105,110,100,101,120,58,49,59,99,111,108,111,114,58,35,52,57,53,48,53,55,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,56,102,57,102,97,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,97,99,116,105,118,101,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,57,101,99,101,102,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,112,97,100,100,105,110,103,58,46,55,53,114,101,109,32,49,46,50,53,114,101,109,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,49,112,120,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,114,103,98,97,40,48,44,48,44,48,44,46,49,50,53,41,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,102,105,114,115,116,45,99,104,105,108,100,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,108,97,115,116,45,99,104,105,108,100,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,46,100,105,115,97,98,108,101,100,44,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,54,99,55,53,55,100,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,110,111,110,101,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,46,97,99,116,105,118,101,123,122,45,105,110,100,101,120,58,50,59,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,48,48,55,98,102,102,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,112,120,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,102,105,114,115,116,45,99,104,105,108,100,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,108,97,115,116,45,99,104,105,108,100,123,109,97,114,103,105,110,45,114,105,103,104,116,58,48,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,48,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,115,109,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,115,109,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,112,120,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,115,109,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,102,105,114,115,116,45,99,104,105,108,100,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,115,109,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,108,97,115,116,45,99,104,105,108,100,123,109,97,114,103,105,110,45,114,105,103,104,116,58,48,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,48,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,55,54,56,112,120,41,123,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,109,100,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,109,100,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,112,120,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,109,100,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,102,105,114,115,116,45,99,104,105,108,100,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,109,100,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,108,97,115,116,45,99,104,105,108,100,123,109,97,114,103,105,110,45,114,105,103,104,116,58,48,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,48,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,57,57,50,112,120,41,123,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,108,103,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,108,103,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,112,120,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,108,103,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,102,105,114,115,116,45,99,104,105,108,100,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,108,103,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,108,97,115,116,45,99,104,105,108,100,123,109,97,114,103,105,110,45,114,105,103,104,116,58,48,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,48,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,49,50,48,48,112,120,41,123,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,120,108,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,120,108,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,112,120,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,120,108,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,102,105,114,115,116,45,99,104,105,108,100,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,120,108,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,108,97,115,116,45,99,104,105,108,100,123,109,97,114,103,105,110,45,114,105,103,104,116,58,48,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,48,125,125,46,108,105,115,116,45,103,114,111,117,112,45,102,108,117,115,104,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,123,98,111,114,100,101,114,45,114,105,103,104,116,58,48,59,98,111,114,100,101,114,45,108,101,102,116,58,48,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,102,108,117,115,104,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,108,97,115,116,45,99,104,105,108,100,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,49,112,120,125,46,108,105,115,116,45,103,114,111,117,112,45,102,108,117,115,104,58,102,105,114,115,116,45,99,104,105,108,100,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,102,105,114,115,116,45,99,104,105,108,100,123,98,111,114,100,101,114,45,116,111,112,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,102,108,117,115,104,58,108,97,115,116,45,99,104,105,108,100,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,108,97,115,116,45,99,104,105,108,100,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,112,114,105,109,97,114,121,123,99,111,108,111,114,58,35,48,48,52,48,56,53,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,56,100,97,102,102,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,112,114,105,109,97,114,121,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,102,111,99,117,115,44,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,112,114,105,109,97,114,121,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,104,111,118,101,114,123,99,111,108,111,114,58,35,48,48,52,48,56,53,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,57,102,99,100,102,102,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,112,114,105,109,97,114,121,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,46,97,99,116,105,118,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,52,48,56,53,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,48,48,52,48,56,53,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,115,101,99,111,110,100,97,114,121,123,99,111,108,111,114,58,35,51,56,51,100,52,49,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,54,100,56,100,98,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,115,101,99,111,110,100,97,114,121,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,102,111,99,117,115,44,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,115,101,99,111,110,100,97,114,121,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,104,111,118,101,114,123,99,111,108,111,114,58,35,51,56,51,100,52,49,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,99,56,99,98,99,102,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,115,101,99,111,110,100,97,114,121,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,46,97,99,116,105,118,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,51,56,51,100,52,49,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,51,56,51,100,52,49,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,115,117,99,99,101,115,115,123,99,111,108,111,114,58,35,49,53,53,55,50,52,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,99,51,101,54,99,98,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,115,117,99,99,101,115,115,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,102,111,99,117,115,44,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,115,117,99,99,101,115,115,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,104,111,118,101,114,123,99,111,108,111,114,58,35,49,53,53,55,50,52,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,49,100,102,98,98,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,115,117,99,99,101,115,115,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,46,97,99,116,105,118,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,53,53,55,50,52,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,49,53,53,55,50,52,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,105,110,102,111,123,99,111,108,111,114,58,35,48,99,53,52,54,48,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,101,101,53,101,98,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,105,110,102,111,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,102,111,99,117,115,44,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,105,110,102,111,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,104,111,118,101,114,123,99,111,108,111,114,58,35,48,99,53,52,54,48,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,97,98,100,100,101,53,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,105,110,102,111,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,46,97,99,116,105,118,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,99,53,52,54,48,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,48,99,53,52,54,48,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,119,97,114,110,105,110,103,123,99,111,108,111,114,58,35,56,53,54,52,48,52,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,101,101,98,97,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,119,97,114,110,105,110,103,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,102,111,99,117,115,44,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,119,97,114,110,105,110,103,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,104,111,118,101,114,123,99,111,108,111,114,58,35,56,53,54,52,48,52,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,101,56,97,49,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,119,97,114,110,105,110,103,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,46,97,99,116,105,118,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,56,53,54,52,48,52,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,56,53,54,52,48,52,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,100,97,110,103,101,114,123,99,111,108,111,114,58,35,55,50,49,99,50,52,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,53,99,54,99,98,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,100,97,110,103,101,114,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,102,111,99,117,115,44,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,100,97,110,103,101,114,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,104,111,118,101,114,123,99,111,108,111,114,58,35,55,50,49,99,50,52,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,49,98,48,98,55,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,100,97,110,103,101,114,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,46,97,99,116,105,118,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,55,50,49,99,50,52,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,55,50,49,99,50,52,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,108,105,103,104,116,123,99,111,108,111,114,58,35,56,49,56,49,56,50,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,100,102,100,102,101,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,108,105,103,104,116,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,102,111,99,117,115,44,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,108,105,103,104,116,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,104,111,118,101,114,123,99,111,108,111,114,58,35,56,49,56,49,56,50,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,99,101,99,102,54,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,108,105,103,104,116,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,46,97,99,116,105,118,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,56,49,56,49,56,50,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,56,49,56,49,56,50,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,100,97,114,107,123,99,111,108,111,114,58,35,49,98,49,101,50,49,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,99,54,99,56,99,97,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,100,97,114,107,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,102,111,99,117,115,44,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,100,97,114,107,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,104,111,118,101,114,123,99,111,108,111,114,58,35,49,98,49,101,50,49,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,57,98,98,98,101,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,100,97,114,107,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,46,97,99,116,105,118,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,98,49,101,50,49,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,49,98,49,101,50,49,125,46,99,108,111,115,101,123,102,108,111,97,116,58,114,105,103,104,116,59,102,111,110,116,45,115,105,122,101,58,49,46,53,114,101,109,59,102,111,110,116,45,119,101,105,103,104,116,58,55,48,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,59,99,111,108,111,114,58,35,48,48,48,59,116,101,120,116,45,115,104,97,100,111,119,58,48,32,49,112,120,32,48,32,35,102,102,102,59,111,112,97,99,105,116,121,58,46,53,125,46,99,108,111,115,101,58,104,111,118,101,114,123,99,111,108,111,114,58,35,48,48,48,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,125,46,99,108,111,115,101,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,102,111,99,117,115,44,46,99,108,111,115,101,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,104,111,118,101,114,123,111,112,97,99,105,116,121,58,46,55,53,125,98,117,116,116,111,110,46,99,108,111,115,101,123,112,97,100,100,105,110,103,58,48,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,58,48,59,45,119,101,98,107,105,116,45,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,59,45,109,111,122,45,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,59,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,125,97,46,99,108,111,115,101,46,100,105,115,97,98,108,101,100,123,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,110,111,110,101,125,46,116,111,97,115,116,123,109,97,120,45,119,105,100,116,104,58,51,53,48,112,120,59,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,59,102,111,110,116,45,115,105,122,101,58,46,56,55,53,114,101,109,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,46,56,53,41,59,98,97,99,107,103,114,111,117,110,100,45,99,108,105,112,58,112,97,100,100,105,110,103,45,98,111,120,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,114,103,98,97,40,48,44,48,44,48,44,46,49,41,59,98,111,120,45,115,104,97,100,111,119,58,48,32,46,50,53,114,101,109,32,46,55,53,114,101,109,32,114,103,98,97,40,48,44,48,44,48,44,46,49,41,59,45,119,101,98,107,105,116,45,98,97,99,107,100,114,111,112,45,102,105,108,116,101,114,58,98,108,117,114,40,49,48,112,120,41,59,98,97,99,107,100,114,111,112,45,102,105,108,116,101,114,58,98,108,117,114,40,49,48,112,120,41,59,111,112,97,99,105,116,121,58,48,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,116,111,97,115,116,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,55,53,114,101,109,125,46,116,111,97,115,116,46,115,104,111,119,105,110,103,123,111,112,97,99,105,116,121,58,49,125,46,116,111,97,115,116,46,115,104,111,119,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,111,112,97,99,105,116,121,58,49,125,46,116,111,97,115,116,46,104,105,100,101,123,100,105,115,112,108,97,121,58,110,111,110,101,125,46,116,111,97,115,116,45,104,101,97,100,101,114,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,99,101,110,116,101,114,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,59,112,97,100,100,105,110,103,58,46,50,53,114,101,109,32,46,55,53,114,101,109,59,99,111,108,111,114,58,35,54,99,55,53,55,100,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,46,56,53,41,59,98,97,99,107,103,114,111,117,110,100,45,99,108,105,112,58,112,97,100,100,105,110,103,45,98,111,120,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,49,112,120,32,115,111,108,105,100,32,114,103,98,97,40,48,44,48,44,48,44,46,48,53,41,125,46,116,111,97,115,116,45,98,111,100,121,123,112,97,100,100,105,110,103,58,46,55,53,114,101,109,125,46,109,111,100,97,108,45,111,112,101,110,123,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,125,46,109,111,100,97,108,45,111,112,101,110,32,46,109,111,100,97,108,123,111,118,101,114,102,108,111,119,45,120,58,104,105,100,100,101,110,59,111,118,101,114,102,108,111,119,45,121,58,97,117,116,111,125,46,109,111,100,97,108,123,112,111,115,105,116,105,111,110,58,102,105,120,101,100,59,116,111,112,58,48,59,108,101,102,116,58,48,59,122,45,105,110,100,101,120,58,49,48,53,48,59,100,105,115,112,108,97,121,58,110,111,110,101,59,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,49,48,48,37,59,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,59,111,117,116,108,105,110,101,58,48,125,46,109,111,100,97,108,45,100,105,97,108,111,103,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,119,105,100,116,104,58,97,117,116,111,59,109,97,114,103,105,110,58,46,53,114,101,109,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,110,111,110,101,125,46,109,111,100,97,108,46,102,97,100,101,32,46,109,111,100,97,108,45,100,105,97,108,111,103,123,116,114,97,110,115,105,116,105,111,110,58,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,32,46,51,115,32,101,97,115,101,45,111,117,116,59,116,114,97,110,115,105,116,105,111,110,58,116,114,97,110,115,102,111,114,109,32,46,51,115,32,101,97,115,101,45,111,117,116,59,116,114,97,110,115,105,116,105,111,110,58,116,114,97,110,115,102,111,114,109,32,46,51,115,32,101,97,115,101,45,111,117,116,44,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,32,46,51,115,32,101,97,115,101,45,111,117,116,59,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,40,48,44,45,53,48,112,120,41,59,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,40,48,44,45,53,48,112,120,41,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,109,111,100,97,108,46,102,97,100,101,32,46,109,111,100,97,108,45,100,105,97,108,111,103,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,46,109,111,100,97,108,46,115,104,111,119,32,46,109,111,100,97,108,45,100,105,97,108,111,103,123,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,58,110,111,110,101,59,116,114,97,110,115,102,111,114,109,58,110,111,110,101,125,46,109,111,100,97,108,45,100,105,97,108,111,103,45,115,99,114,111,108,108,97,98,108,101,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,109,97,120,45,104,101,105,103,104,116,58,99,97,108,99,40,49,48,48,37,32,45,32,49,114,101,109,41,125,46,109,111,100,97,108,45,100,105,97,108,111,103,45,115,99,114,111,108,108,97,98,108,101,32,46,109,111,100,97,108,45,99,111,110,116,101,110,116,123,109,97,120,45,104,101,105,103,104,116,58,99,97,108,99,40,49,48,48,118,104,32,45,32,49,114,101,109,41,59,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,125,46,109,111,100,97,108,45,100,105,97,108,111,103,45,115,99,114,111,108,108,97,98,108,101,32,46,109,111,100,97,108,45,102,111,111,116,101,114,44,46,109,111,100,97,108,45,100,105,97,108,111,103,45,115,99,114,111,108,108,97,98,108,101,32,46,109,111,100,97,108,45,104,101,97,100,101,114,123,45,109,115,45,102,108,101,120,45,110,101,103,97,116,105,118,101,58,48,59,102,108,101,120,45,115,104,114,105,110,107,58,48,125,46,109,111,100,97,108,45,100,105,97,108,111,103,45,115,99,114,111,108,108,97,98,108,101,32,46,109,111,100,97,108,45,98,111,100,121,123,111,118,101,114,102,108,111,119,45,121,58,97,117,116,111,125,46,109,111,100,97,108,45,100,105,97,108,111,103,45,99,101,110,116,101,114,101,100,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,99,101,110,116,101,114,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,59,109,105,110,45,104,101,105,103,104,116,58,99,97,108,99,40,49,48,48,37,32,45,32,49,114,101,109,41,125,46,109,111,100,97,108,45,100,105,97,108,111,103,45,99,101,110,116,101,114,101,100,58,58,98,101,102,111,114,101,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,104,101,105,103,104,116,58,99,97,108,99,40,49,48,48,118,104,32,45,32,49,114,101,109,41,59,99,111,110,116,101,110,116,58,34,34,125,46,109,111,100,97,108,45,100,105,97,108,111,103,45,99,101,110,116,101,114,101,100,46,109,111,100,97,108,45,100,105,97,108,111,103,45,115,99,114,111,108,108,97,98,108,101,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,45,109,115,45,102,108,101,120,45,112,97,99,107,58,99,101,110,116,101,114,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,59,104,101,105,103,104,116,58,49,48,48,37,125,46,109,111,100,97,108,45,100,105,97,108,111,103,45,99,101,110,116,101,114,101,100,46,109,111,100,97,108,45,100,105,97,108,111,103,45,115,99,114,111,108,108,97,98,108,101,32,46,109,111,100,97,108,45,99,111,110,116,101,110,116,123,109,97,120,45,104,101,105,103,104,116,58,110,111,110,101,125,46,109,111,100,97,108,45,100,105,97,108,111,103,45,99,101,110,116,101,114,101,100,46,109,111,100,97,108,45,100,105,97,108,111,103,45,115,99,114,111,108,108,97,98,108,101,58,58,98,101,102,111,114,101,123,99,111,110,116,101,110,116,58,110,111,110,101,125,46,109,111,100,97,108,45,99,111,110,116,101,110,116,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,119,105,100,116,104,58,49,48,48,37,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,97,117,116,111,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,108,105,112,58,112,97,100,100,105,110,103,45,98,111,120,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,114,103,98,97,40,48,44,48,44,48,44,46,50,41,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,51,114,101,109,59,111,117,116,108,105,110,101,58,48,125,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,123,112,111,115,105,116,105,111,110,58,102,105,120,101,100,59,116,111,112,58,48,59,108,101,102,116,58,48,59,122,45,105,110,100,101,120,58,49,48,52,48,59,119,105,100,116,104,58,49,48,48,118,119,59,104,101,105,103,104,116,58,49,48,48,118,104,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,48,125,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,46,102,97,100,101,123,111,112,97,99,105,116,121,58,48,125,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,46,115,104,111,119,123,111,112,97,99,105,116,121,58,46,53,125,46,109,111,100,97,108,45,104,101,97,100,101,114,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,115,116,97,114,116,59,97,108,105,103,110,45,105,116,101,109,115,58,102,108,101,120,45,115,116,97,114,116,59,45,109,115,45,102,108,101,120,45,112,97,99,107,58,106,117,115,116,105,102,121,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,98,101,116,119,101,101,110,59,112,97,100,100,105,110,103,58,49,114,101,109,32,49,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,49,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,59,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,46,51,114,101,109,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,51,114,101,109,125,46,109,111,100,97,108,45,104,101,97,100,101,114,32,46,99,108,111,115,101,123,112,97,100,100,105,110,103,58,49,114,101,109,32,49,114,101,109,59,109,97,114,103,105,110,58,45,49,114,101,109,32,45,49,114,101,109,32,45,49,114,101,109,32,97,117,116,111,125,46,109,111,100,97,108,45,116,105,116,108,101,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,125,46,109,111,100,97,108,45,98,111,100,121,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,45,109,115,45,102,108,101,120,58,49,32,49,32,97,117,116,111,59,102,108,101,120,58,49,32,49,32,97,117,116,111,59,112,97,100,100,105,110,103,58,49,114,101,109,125,46,109,111,100,97,108,45,102,111,111,116,101,114,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,99,101,110,116,101,114,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,59,45,109,115,45,102,108,101,120,45,112,97,99,107,58,101,110,100,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,101,110,100,59,112,97,100,100,105,110,103,58,49,114,101,109,59,98,111,114,100,101,114,45,116,111,112,58,49,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,51,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,46,51,114,101,109,125,46,109,111,100,97,108,45,102,111,111,116,101,114,62,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,123,109,97,114,103,105,110,45,108,101,102,116,58,46,50,53,114,101,109,125,46,109,111,100,97,108,45,102,111,111,116,101,114,62,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,123,109,97,114,103,105,110,45,114,105,103,104,116,58,46,50,53,114,101,109,125,46,109,111,100,97,108,45,115,99,114,111,108,108,98,97,114,45,109,101,97,115,117,114,101,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,45,57,57,57,57,112,120,59,119,105,100,116,104,58,53,48,112,120,59,104,101,105,103,104,116,58,53,48,112,120,59,111,118,101,114,102,108,111,119,58,115,99,114,111,108,108,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,109,111,100,97,108,45,100,105,97,108,111,103,123,109,97,120,45,119,105,100,116,104,58,53,48,48,112,120,59,109,97,114,103,105,110,58,49,46,55,53,114,101,109,32,97,117,116,111,125,46,109,111,100,97,108,45,100,105,97,108,111,103,45,115,99,114,111,108,108,97,98,108,101,123,109,97,120,45,104,101,105,103,104,116,58,99,97,108,99,40,49,48,48,37,32,45,32,51,46,53,114,101,109,41,125,46,109,111,100,97,108,45,100,105,97,108,111,103,45,115,99,114,111,108,108,97,98,108,101,32,46,109,111,100,97,108,45,99,111,110,116,101,110,116,123,109,97,120,45,104,101,105,103,104,116,58,99,97,108,99,40,49,48,48,118,104,32,45,32,51,46,53,114,101,109,41,125,46,109,111,100,97,108,45,100,105,97,108,111,103,45,99,101,110,116,101,114,101,100,123,109,105,110,45,104,101,105,103,104,116,58,99,97,108,99,40,49,48,48,37,32,45,32,51,46,53,114,101,109,41,125,46,109,111,100,97,108,45,100,105,97,108,111,103,45,99,101,110,116,101,114,101,100,58,58,98,101,102,111,114,101,123,104,101,105,103,104,116,58,99,97,108,99,40,49,48,48,118,104,32,45,32,51,46,53,114,101,109,41,125,46,109,111,100,97,108,45,115,109,123,109,97,120,45,119,105,100,116,104,58,51,48,48,112,120,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,57,57,50,112,120,41,123,46,109,111,100,97,108,45,108,103,44,46,109,111,100,97,108,45,120,108,123,109,97,120,45,119,105,100,116,104,58,56,48,48,112,120,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,49,50,48,48,112,120,41,123,46,109,111,100,97,108,45,120,108,123,109,97,120,45,119,105,100,116,104,58,49,49,52,48,112,120,125,125,46,116,111,111,108,116,105,112,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,122,45,105,110,100,101,120,58,49,48,55,48,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,109,97,114,103,105,110,58,48,59,102,111,110,116,45,102,97,109,105,108,121,58,45,97,112,112,108,101,45,115,121,115,116,101,109,44,66,108,105,110,107,77,97,99,83,121,115,116,101,109,70,111,110,116,44,34,83,101,103,111,101,32,85,73,34,44,82,111,98,111,116,111,44,34,72,101,108,118,101,116,105,99,97,32,78,101,117,101,34,44,65,114,105,97,108,44,34,78,111,116,111,32,83,97,110,115,34,44,115,97,110,115,45,115,101,114,105,102,44,34,65,112,112,108,101,32,67,111,108,111,114,32,69,109,111,106,105,34,44,34,83,101,103,111,101,32,85,73,32,69,109,111,106,105,34,44,34,83,101,103,111,101,32,85,73,32,83,121,109,98,111,108,34,44,34,78,111,116,111,32,67,111,108,111,114,32,69,109,111,106,105,34,59,102,111,110,116,45,115,116,121,108,101,58,110,111,114,109,97,108,59,102,111,110,116,45,119,101,105,103,104,116,58,52,48,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,116,101,120,116,45,97,108,105,103,110,58,108,101,102,116,59,116,101,120,116,45,97,108,105,103,110,58,115,116,97,114,116,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,59,116,101,120,116,45,115,104,97,100,111,119,58,110,111,110,101,59,116,101,120,116,45,116,114,97,110,115,102,111,114,109,58,110,111,110,101,59,108,101,116,116,101,114,45,115,112,97,99,105,110,103,58,110,111,114,109,97,108,59,119,111,114,100,45,98,114,101,97,107,58,110,111,114,109,97,108,59,119,111,114,100,45,115,112,97,99,105,110,103,58,110,111,114,109,97,108,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,114,109,97,108,59,108,105,110,101,45,98,114,101,97,107,58,97,117,116,111,59,102,111,110,116,45,115,105,122,101,58,46,56,55,53,114,101,109,59,119,111,114,100,45,119,114,97,112,58,98,114,101,97,107,45,119,111,114,100,59,111,112,97,99,105,116,121,58,48,125,46,116,111,111,108,116,105,112,46,115,104,111,119,123,111,112,97,99,105,116,121,58,46,57,125,46,116,111,111,108,116,105,112,32,46,97,114,114,111,119,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,46,56,114,101,109,59,104,101,105,103,104,116,58,46,52,114,101,109,125,46,116,111,111,108,116,105,112,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,99,111,110,116,101,110,116,58,34,34,59,98,111,114,100,101,114,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,115,116,121,108,101,58,115,111,108,105,100,125,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,116,111,112,93,44,46,98,115,45,116,111,111,108,116,105,112,45,116,111,112,123,112,97,100,100,105,110,103,58,46,52,114,101,109,32,48,125,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,116,111,112,93,32,46,97,114,114,111,119,44,46,98,115,45,116,111,111,108,116,105,112,45,116,111,112,32,46,97,114,114,111,119,123,98,111,116,116,111,109,58,48,125,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,116,111,112,93,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,44,46,98,115,45,116,111,111,108,116,105,112,45,116,111,112,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,116,111,112,58,48,59,98,111,114,100,101,114,45,119,105,100,116,104,58,46,52,114,101,109,32,46,52,114,101,109,32,48,59,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,48,48,48,125,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,44,46,98,115,45,116,111,111,108,116,105,112,45,114,105,103,104,116,123,112,97,100,100,105,110,103,58,48,32,46,52,114,101,109,125,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,32,46,97,114,114,111,119,44,46,98,115,45,116,111,111,108,116,105,112,45,114,105,103,104,116,32,46,97,114,114,111,119,123,108,101,102,116,58,48,59,119,105,100,116,104,58,46,52,114,101,109,59,104,101,105,103,104,116,58,46,56,114,101,109,125,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,44,46,98,115,45,116,111,111,108,116,105,112,45,114,105,103,104,116,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,114,105,103,104,116,58,48,59,98,111,114,100,101,114,45,119,105,100,116,104,58,46,52,114,101,109,32,46,52,114,101,109,32,46,52,114,101,109,32,48,59,98,111,114,100,101,114,45,114,105,103,104,116,45,99,111,108,111,114,58,35,48,48,48,125,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,44,46,98,115,45,116,111,111,108,116,105,112,45,98,111,116,116,111,109,123,112,97,100,100,105,110,103,58,46,52,114,101,109,32,48,125,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,32,46,97,114,114,111,119,44,46,98,115,45,116,111,111,108,116,105,112,45,98,111,116,116,111,109,32,46,97,114,114,111,119,123,116,111,112,58,48,125,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,44,46,98,115,45,116,111,111,108,116,105,112,45,98,111,116,116,111,109,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,98,111,116,116,111,109,58,48,59,98,111,114,100,101,114,45,119,105,100,116,104,58,48,32,46,52,114,101,109,32,46,52,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,99,111,108,111,114,58,35,48,48,48,125,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,44,46,98,115,45,116,111,111,108,116,105,112,45,108,101,102,116,123,112,97,100,100,105,110,103,58,48,32,46,52,114,101,109,125,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,32,46,97,114,114,111,119,44,46,98,115,45,116,111,111,108,116,105,112,45,108,101,102,116,32,46,97,114,114,111,119,123,114,105,103,104,116,58,48,59,119,105,100,116,104,58,46,52,114,101,109,59,104,101,105,103,104,116,58,46,56,114,101,109,125,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,44,46,98,115,45,116,111,111,108,116,105,112,45,108,101,102,116,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,108,101,102,116,58,48,59,98,111,114,100,101,114,45,119,105,100,116,104,58,46,52,114,101,109,32,48,32,46,52,114,101,109,32,46,52,114,101,109,59,98,111,114,100,101,114,45,108,101,102,116,45,99,111,108,111,114,58,35,48,48,48,125,46,116,111,111,108,116,105,112,45,105,110,110,101,114,123,109,97,120,45,119,105,100,116,104,58,50,48,48,112,120,59,112,97,100,100,105,110,103,58,46,50,53,114,101,109,32,46,53,114,101,109,59,99,111,108,111,114,58,35,102,102,102,59,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,48,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,112,111,112,111,118,101,114,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,48,59,108,101,102,116,58,48,59,122,45,105,110,100,101,120,58,49,48,54,48,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,109,97,120,45,119,105,100,116,104,58,50,55,54,112,120,59,102,111,110,116,45,102,97,109,105,108,121,58,45,97,112,112,108,101,45,115,121,115,116,101,109,44,66,108,105,110,107,77,97,99,83,121,115,116,101,109,70,111,110,116,44,34,83,101,103,111,101,32,85,73,34,44,82,111,98,111,116,111,44,34,72,101,108,118,101,116,105,99,97,32,78,101,117,101,34,44,65,114,105,97,108,44,34,78,111,116,111,32,83,97,110,115,34,44,115,97,110,115,45,115,101,114,105,102,44,34,65,112,112,108,101,32,67,111,108,111,114,32,69,109,111,106,105,34,44,34,83,101,103,111,101,32,85,73,32,69,109,111,106,105,34,44,34,83,101,103,111,101,32,85,73,32,83,121,109,98,111,108,34,44,34,78,111,116,111,32,67,111,108,111,114,32,69,109,111,106,105,34,59,102,111,110,116,45,115,116,121,108,101,58,110,111,114,109,97,108,59,102,111,110,116,45,119,101,105,103,104,116,58,52,48,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,116,101,120,116,45,97,108,105,103,110,58,108,101,102,116,59,116,101,120,116,45,97,108,105,103,110,58,115,116,97,114,116,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,59,116,101,120,116,45,115,104,97,100,111,119,58,110,111,110,101,59,116,101,120,116,45,116,114,97,110,115,102,111,114,109,58,110,111,110,101,59,108,101,116,116,101,114,45,115,112,97,99,105,110,103,58,110,111,114,109,97,108,59,119,111,114,100,45,98,114,101,97,107,58,110,111,114,109,97,108,59,119,111,114,100,45,115,112,97,99,105,110,103,58,110,111,114,109,97,108,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,114,109,97,108,59,108,105,110,101,45,98,114,101,97,107,58,97,117,116,111,59,102,111,110,116,45,115,105,122,101,58,46,56,55,53,114,101,109,59,119,111,114,100,45,119,114,97,112,58,98,114,101,97,107,45,119,111,114,100,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,108,105,112,58,112,97,100,100,105,110,103,45,98,111,120,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,114,103,98,97,40,48,44,48,44,48,44,46,50,41,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,51,114,101,109,125,46,112,111,112,111,118,101,114,32,46,97,114,114,111,119,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,114,101,109,59,104,101,105,103,104,116,58,46,53,114,101,109,59,109,97,114,103,105,110,58,48,32,46,51,114,101,109,125,46,112,111,112,111,118,101,114,32,46,97,114,114,111,119,58,58,97,102,116,101,114,44,46,112,111,112,111,118,101,114,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,99,111,110,116,101,110,116,58,34,34,59,98,111,114,100,101,114,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,115,116,121,108,101,58,115,111,108,105,100,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,116,111,112,93,44,46,98,115,45,112,111,112,111,118,101,114,45,116,111,112,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,53,114,101,109,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,116,111,112,93,62,46,97,114,114,111,119,44,46,98,115,45,112,111,112,111,118,101,114,45,116,111,112,62,46,97,114,114,111,119,123,98,111,116,116,111,109,58,99,97,108,99,40,40,46,53,114,101,109,32,43,32,49,112,120,41,32,42,32,45,49,41,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,116,111,112,93,62,46,97,114,114,111,119,58,58,98,101,102,111,114,101,44,46,98,115,45,112,111,112,111,118,101,114,45,116,111,112,62,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,98,111,116,116,111,109,58,48,59,98,111,114,100,101,114,45,119,105,100,116,104,58,46,53,114,101,109,32,46,53,114,101,109,32,48,59,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,50,53,41,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,116,111,112,93,62,46,97,114,114,111,119,58,58,97,102,116,101,114,44,46,98,115,45,112,111,112,111,118,101,114,45,116,111,112,62,46,97,114,114,111,119,58,58,97,102,116,101,114,123,98,111,116,116,111,109,58,49,112,120,59,98,111,114,100,101,114,45,119,105,100,116,104,58,46,53,114,101,109,32,46,53,114,101,109,32,48,59,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,102,102,102,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,44,46,98,115,45,112,111,112,111,118,101,114,45,114,105,103,104,116,123,109,97,114,103,105,110,45,108,101,102,116,58,46,53,114,101,109,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,62,46,97,114,114,111,119,44,46,98,115,45,112,111,112,111,118,101,114,45,114,105,103,104,116,62,46,97,114,114,111,119,123,108,101,102,116,58,99,97,108,99,40,40,46,53,114,101,109,32,43,32,49,112,120,41,32,42,32,45,49,41,59,119,105,100,116,104,58,46,53,114,101,109,59,104,101,105,103,104,116,58,49,114,101,109,59,109,97,114,103,105,110,58,46,51,114,101,109,32,48,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,62,46,97,114,114,111,119,58,58,98,101,102,111,114,101,44,46,98,115,45,112,111,112,111,118,101,114,45,114,105,103,104,116,62,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,108,101,102,116,58,48,59,98,111,114,100,101,114,45,119,105,100,116,104,58,46,53,114,101,109,32,46,53,114,101,109,32,46,53,114,101,109,32,48,59,98,111,114,100,101,114,45,114,105,103,104,116,45,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,50,53,41,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,62,46,97,114,114,111,119,58,58,97,102,116,101,114,44,46,98,115,45,112,111,112,111,118,101,114,45,114,105,103,104,116,62,46,97,114,114,111,119,58,58,97,102,116,101,114,123,108,101,102,116,58,49,112,120,59,98,111,114,100,101,114,45,119,105,100,116,104,58,46,53,114,101,109,32,46,53,114,101,109,32,46,53,114,101,109,32,48,59,98,111,114,100,101,114,45,114,105,103,104,116,45,99,111,108,111,114,58,35,102,102,102,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,44,46,98,115,45,112,111,112,111,118,101,114,45,98,111,116,116,111,109,123,109,97,114,103,105,110,45,116,111,112,58,46,53,114,101,109,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,62,46,97,114,114,111,119,44,46,98,115,45,112,111,112,111,118,101,114,45,98,111,116,116,111,109,62,46,97,114,114,111,119,123,116,111,112,58,99,97,108,99,40,40,46,53,114,101,109,32,43,32,49,112,120,41,32,42,32,45,49,41,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,62,46,97,114,114,111,119,58,58,98,101,102,111,114,101,44,46,98,115,45,112,111,112,111,118,101,114,45,98,111,116,116,111,109,62,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,116,111,112,58,48,59,98,111,114,100,101,114,45,119,105,100,116,104,58,48,32,46,53,114,101,109,32,46,53,114,101,109,32,46,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,50,53,41,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,62,46,97,114,114,111,119,58,58,97,102,116,101,114,44,46,98,115,45,112,111,112,111,118,101,114,45,98,111,116,116,111,109,62,46,97,114,114,111,119,58,58,97,102,116,101,114,123,116,111,112,58,49,112,120,59,98,111,114,100,101,114,45,119,105,100,116,104,58,48,32,46,53,114,101,109,32,46,53,114,101,109,32,46,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,99,111,108,111,114,58,35,102,102,102,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,32,46,112,111,112,111,118,101,114,45,104,101,97,100,101,114,58,58,98,101,102,111,114,101,44,46,98,115,45,112,111,112,111,118,101,114,45,98,111,116,116,111,109,32,46,112,111,112,111,118,101,114,45,104,101,97,100,101,114,58,58,98,101,102,111,114,101,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,48,59,108,101,102,116,58,53,48,37,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,114,101,109,59,109,97,114,103,105,110,45,108,101,102,116,58,45,46,53,114,101,109,59,99,111,110,116,101,110,116,58,34,34,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,49,112,120,32,115,111,108,105,100,32,35,102,55,102,55,102,55,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,44,46,98,115,45,112,111,112,111,118,101,114,45,108,101,102,116,123,109,97,114,103,105,110,45,114,105,103,104,116,58,46,53,114,101,109,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,62,46,97,114,114,111,119,44,46,98,115,45,112,111,112,111,118,101,114,45,108,101,102,116,62,46,97,114,114,111,119,123,114,105,103,104,116,58,99,97,108,99,40,40,46,53,114,101,109,32,43,32,49,112,120,41,32,42,32,45,49,41,59,119,105,100,116,104,58,46,53,114,101,109,59,104,101,105,103,104,116,58,49,114,101,109,59,109,97,114,103,105,110,58,46,51,114,101,109,32,48,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,62,46,97,114,114,111,119,58,58,98,101,102,111,114,101,44,46,98,115,45,112,111,112,111,118,101,114,45,108,101,102,116,62,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,114,105,103,104,116,58,48,59,98,111,114,100,101,114,45,119,105,100,116,104,58,46,53,114,101,109,32,48,32,46,53,114,101,109,32,46,53,114,101,109,59,98,111,114,100,101,114,45,108,101,102,116,45,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,50,53,41,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,62,46,97,114,114,111,119,58,58,97,102,116,101,114,44,46,98,115,45,112,111,112,111,118,101,114,45,108,101,102,116,62,46,97,114,114,111,119,58,58,97,102,116,101,114,123,114,105,103,104,116,58,49,112,120,59,98,111,114,100,101,114,45,119,105,100,116,104,58,46,53,114,101,109,32,48,32,46,53,114,101,109,32,46,53,114,101,109,59,98,111,114,100,101,114,45,108,101,102,116,45,99,111,108,111,114,58,35,102,102,102,125,46,112,111,112,111,118,101,114,45,104,101,97,100,101,114,123,112,97,100,100,105,110,103,58,46,53,114,101,109,32,46,55,53,114,101,109,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,59,102,111,110,116,45,115,105,122,101,58,49,114,101,109,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,55,102,55,102,55,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,49,112,120,32,115,111,108,105,100,32,35,101,98,101,98,101,98,59,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,99,97,108,99,40,46,51,114,101,109,32,45,32,49,112,120,41,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,99,97,108,99,40,46,51,114,101,109,32,45,32,49,112,120,41,125,46,112,111,112,111,118,101,114,45,104,101,97,100,101,114,58,101,109,112,116,121,123,100,105,115,112,108,97,121,58,110,111,110,101,125,46,112,111,112,111,118,101,114,45,98,111,100,121,123,112,97,100,100,105,110,103,58,46,53,114,101,109,32,46,55,53,114,101,109,59,99,111,108,111,114,58,35,50,49,50,53,50,57,125,46,99,97,114,111,117,115,101,108,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,125,46,99,97,114,111,117,115,101,108,46,112,111,105,110,116,101,114,45,101,118,101,110,116,123,45,109,115,45,116,111,117,99,104,45,97,99,116,105,111,110,58,112,97,110,45,121,59,116,111,117,99,104,45,97,99,116,105,111,110,58,112,97,110,45,121,125,46,99,97,114,111,117,115,101,108,45,105,110,110,101,114,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,119,105,100,116,104,58,49,48,48,37,59,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,125,46,99,97,114,111,117,115,101,108,45,105,110,110,101,114,58,58,97,102,116,101,114,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,99,108,101,97,114,58,98,111,116,104,59,99,111,110,116,101,110,116,58,34,34,125,46,99,97,114,111,117,115,101,108,45,105,116,101,109,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,100,105,115,112,108,97,121,58,110,111,110,101,59,102,108,111,97,116,58,108,101,102,116,59,119,105,100,116,104,58,49,48,48,37,59,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,48,48,37,59,45,119,101,98,107,105,116,45,98,97,99,107,102,97,99,101,45,118,105,115,105,98,105,108,105,116,121,58,104,105,100,100,101,110,59,98,97,99,107,102,97,99,101,45,118,105,115,105,98,105,108,105,116,121,58,104,105,100,100,101,110,59,116,114,97,110,115,105,116,105,111,110,58,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,32,46,54,115,32,101,97,115,101,45,105,110,45,111,117,116,59,116,114,97,110,115,105,116,105,111,110,58,116,114,97,110,115,102,111,114,109,32,46,54,115,32,101,97,115,101,45,105,110,45,111,117,116,59,116,114,97,110,115,105,116,105,111,110,58,116,114,97,110,115,102,111,114,109,32,46,54,115,32,101,97,115,101,45,105,110,45,111,117,116,44,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,32,46,54,115,32,101,97,115,101,45,105,110,45,111,117,116,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,99,97,114,111,117,115,101,108,45,105,116,101,109,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,110,101,120,116,44,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,112,114,101,118,44,46,99,97,114,111,117,115,101,108,45,105,116,101,109,46,97,99,116,105,118,101,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,97,99,116,105,118,101,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,114,105,103,104,116,44,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,110,101,120,116,58,110,111,116,40,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,108,101,102,116,41,123,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,88,40,49,48,48,37,41,59,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,88,40,49,48,48,37,41,125,46,97,99,116,105,118,101,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,108,101,102,116,44,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,112,114,101,118,58,110,111,116,40,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,114,105,103,104,116,41,123,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,88,40,45,49,48,48,37,41,59,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,88,40,45,49,48,48,37,41,125,46,99,97,114,111,117,115,101,108,45,102,97,100,101,32,46,99,97,114,111,117,115,101,108,45,105,116,101,109,123,111,112,97,99,105,116,121,58,48,59,116,114,97,110,115,105,116,105,111,110,45,112,114,111,112,101,114,116,121,58,111,112,97,99,105,116,121,59,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,58,110,111,110,101,59,116,114,97,110,115,102,111,114,109,58,110,111,110,101,125,46,99,97,114,111,117,115,101,108,45,102,97,100,101,32,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,110,101,120,116,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,108,101,102,116,44,46,99,97,114,111,117,115,101,108,45,102,97,100,101,32,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,112,114,101,118,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,114,105,103,104,116,44,46,99,97,114,111,117,115,101,108,45,102,97,100,101,32,46,99,97,114,111,117,115,101,108,45,105,116,101,109,46,97,99,116,105,118,101,123,122,45,105,110,100,101,120,58,49,59,111,112,97,99,105,116,121,58,49,125,46,99,97,114,111,117,115,101,108,45,102,97,100,101,32,46,97,99,116,105,118,101,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,108,101,102,116,44,46,99,97,114,111,117,115,101,108,45,102,97,100,101,32,46,97,99,116,105,118,101,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,114,105,103,104,116,123,122,45,105,110,100,101,120,58,48,59,111,112,97,99,105,116,121,58,48,59,116,114,97,110,115,105,116,105,111,110,58,48,115,32,46,54,115,32,111,112,97,99,105,116,121,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,99,97,114,111,117,115,101,108,45,102,97,100,101,32,46,97,99,116,105,118,101,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,108,101,102,116,44,46,99,97,114,111,117,115,101,108,45,102,97,100,101,32,46,97,99,116,105,118,101,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,114,105,103,104,116,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,46,99,97,114,111,117,115,101,108,45,99,111,110,116,114,111,108,45,110,101,120,116,44,46,99,97,114,111,117,115,101,108,45,99,111,110,116,114,111,108,45,112,114,101,118,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,48,59,98,111,116,116,111,109,58,48,59,122,45,105,110,100,101,120,58,49,59,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,99,101,110,116,101,114,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,59,45,109,115,45,102,108,101,120,45,112,97,99,107,58,99,101,110,116,101,114,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,59,119,105,100,116,104,58,49,53,37,59,99,111,108,111,114,58,35,102,102,102,59,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,59,111,112,97,99,105,116,121,58,46,53,59,116,114,97,110,115,105,116,105,111,110,58,111,112,97,99,105,116,121,32,46,49,53,115,32,101,97,115,101,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,99,97,114,111,117,115,101,108,45,99,111,110,116,114,111,108,45,110,101,120,116,44,46,99,97,114,111,117,115,101,108,45,99,111,110,116,114,111,108,45,112,114,101,118,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,46,99,97,114,111,117,115,101,108,45,99,111,110,116,114,111,108,45,110,101,120,116,58,102,111,99,117,115,44,46,99,97,114,111,117,115,101,108,45,99,111,110,116,114,111,108,45,110,101,120,116,58,104,111,118,101,114,44,46,99,97,114,111,117,115,101,108,45,99,111,110,116,114,111,108,45,112,114,101,118,58,102,111,99,117,115,44,46,99,97,114,111,117,115,101,108,45,99,111,110,116,114,111,108,45,112,114,101,118,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,59,111,117,116,108,105,110,101,58,48,59,111,112,97,99,105,116,121,58,46,57,125,46,99,97,114,111,117,115,101,108,45,99,111,110,116,114,111,108,45,112,114,101,118,123,108,101,102,116,58,48,125,46,99,97,114,111,117,115,101,108,45,99,111,110,116,114,111,108,45,110,101,120,116,123,114,105,103,104,116,58,48,125,46,99,97,114,111,117,115,101,108,45,99,111,110,116,114,111,108,45,110,101,120,116,45,105,99,111,110,44,46,99,97,114,111,117,115,101,108,45,99,111,110,116,114,111,108,45,112,114,101,118,45,105,99,111,110,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,119,105,100,116,104,58,50,48,112,120,59,104,101,105,103,104,116,58,50,48,112,120,59,98,97,99,107,103,114,111,117,110,100,58,110,111,45,114,101,112,101,97,116,32,53,48,37,47,49,48,48,37,32,49,48,48,37,125,46,99,97,114,111,117,115,101,108,45,99,111,110,116,114,111,108,45,112,114,101,118,45,105,99,111,110,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,39,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,115,118,103,39,32,102,105,108,108,61,39,37,50,51,102,102,102,39,32,118,105,101,119,66,111,120,61,39,48,32,48,32,56,32,56,39,37,51,101,37,51,99,112,97,116,104,32,100,61,39,77,53,46,50,53,32,48,108,45,52,32,52,32,52,32,52,32,49,46,53,45,49,46,53,45,50,46,53,45,50,46,53,32,50,46,53,45,50,46,53,45,49,46,53,45,49,46,53,122,39,47,37,51,101,37,51,99,47,115,118,103,37,51,101,34,41,125,46,99,97,114,111,117,115,101,108,45,99,111,110,116,114,111,108,45,110,101,120,116,45,105,99,111,110,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,39,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,115,118,103,39,32,102,105,108,108,61,39,37,50,51,102,102,102,39,32,118,105,101,119,66,111,120,61,39,48,32,48,32,56,32,56,39,37,51,101,37,51,99,112,97,116,104,32,100,61,39,77,50,46,55,53,32,48,108,45,49,46,53,32,49,46,53,32,50,46,53,32,50,46,53,45,50,46,53,32,50,46,53,32,49,46,53,32,49,46,53,32,52,45,52,45,52,45,52,122,39,47,37,51,101,37,51,99,47,115,118,103,37,51,101,34,41,125,46,99,97,114,111,117,115,101,108,45,105,110,100,105,99,97,116,111,114,115,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,114,105,103,104,116,58,48,59,98,111,116,116,111,109,58,48,59,108,101,102,116,58,48,59,122,45,105,110,100,101,120,58,49,53,59,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,112,97,99,107,58,99,101,110,116,101,114,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,59,109,97,114,103,105,110,45,114,105,103,104,116,58,49,53,37,59,109,97,114,103,105,110,45,108,101,102,116,58,49,53,37,59,108,105,115,116,45,115,116,121,108,101,58,110,111,110,101,125,46,99,97,114,111,117,115,101,108,45,105,110,100,105,99,97,116,111,114,115,32,108,105,123,98,111,120,45,115,105,122,105,110,103,58,99,111,110,116,101,110,116,45,98,111,120,59,45,109,115,45,102,108,101,120,58,48,32,49,32,97,117,116,111,59,102,108,101,120,58,48,32,49,32,97,117,116,111,59,119,105,100,116,104,58,51,48,112,120,59,104,101,105,103,104,116,58,51,112,120,59,109,97,114,103,105,110,45,114,105,103,104,116,58,51,112,120,59,109,97,114,103,105,110,45,108,101,102,116,58,51,112,120,59,116,101,120,116,45,105,110,100,101,110,116,58,45,57,57,57,112,120,59,99,117,114,115,111,114,58,112,111,105,110,116,101,114,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,108,105,112,58,112,97,100,100,105,110,103,45,98,111,120,59,98,111,114,100,101,114,45,116,111,112,58,49,48,112,120,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,49,48,112,120,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,59,111,112,97,99,105,116,121,58,46,53,59,116,114,97,110,115,105,116,105,111,110,58,111,112,97,99,105,116,121,32,46,54,115,32,101,97,115,101,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,99,97,114,111,117,115,101,108,45,105,110,100,105,99,97,116,111,114,115,32,108,105,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,46,99,97,114,111,117,115,101,108,45,105,110,100,105,99,97,116,111,114,115,32,46,97,99,116,105,118,101,123,111,112,97,99,105,116,121,58,49,125,46,99,97,114,111,117,115,101,108,45,99,97,112,116,105,111,110,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,114,105,103,104,116,58,49,53,37,59,98,111,116,116,111,109,58,50,48,112,120,59,108,101,102,116,58,49,53,37,59,122,45,105,110,100,101,120,58,49,48,59,112,97,100,100,105,110,103,45,116,111,112,58,50,48,112,120,59,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,50,48,112,120,59,99,111,108,111,114,58,35,102,102,102,59,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,125,64,45,119,101,98,107,105,116,45,107,101,121,102,114,97,109,101,115,32,115,112,105,110,110,101,114,45,98,111,114,100,101,114,123,116,111,123,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,58,114,111,116,97,116,101,40,51,54,48,100,101,103,41,59,116,114,97,110,115,102,111,114,109,58,114,111,116,97,116,101,40,51,54,48,100,101,103,41,125,125,64,107,101,121,102,114,97,109,101,115,32,115,112,105,110,110,101,114,45,98,111,114,100,101,114,123,116,111,123,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,58,114,111,116,97,116,101,40,51,54,48,100,101,103,41,59,116,114,97,110,115,102,111,114,109,58,114,111,116,97,116,101,40,51,54,48,100,101,103,41,125,125,46,115,112,105,110,110,101,114,45,98,111,114,100,101,114,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,119,105,100,116,104,58,50,114,101,109,59,104,101,105,103,104,116,58,50,114,101,109,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,116,101,120,116,45,98,111,116,116,111,109,59,98,111,114,100,101,114,58,46,50,53,101,109,32,115,111,108,105,100,32,99,117,114,114,101,110,116,67,111,108,111,114,59,98,111,114,100,101,114,45,114,105,103,104,116,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,53,48,37,59,45,119,101,98,107,105,116,45,97,110,105,109,97,116,105,111,110,58,115,112,105,110,110,101,114,45,98,111,114,100,101,114,32,46,55,53,115,32,108,105,110,101,97,114,32,105,110,102,105,110,105,116,101,59,97,110,105,109,97,116,105,111,110,58,115,112,105,110,110,101,114,45,98,111,114,100,101,114,32,46,55,53,115,32,108,105,110,101,97,114,32,105,110,102,105,110,105,116,101,125,46,115,112,105,110,110,101,114,45,98,111,114,100,101,114,45,115,109,123,119,105,100,116,104,58,49,114,101,109,59,104,101,105,103,104,116,58,49,114,101,109,59,98,111,114,100,101,114,45,119,105,100,116,104,58,46,50,101,109,125,64,45,119,101,98,107,105,116,45,107,101,121,102,114,97,109,101,115,32,115,112,105,110,110,101,114,45,103,114,111,119,123,48,37,123,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,58,115,99,97,108,101,40,48,41,59,116,114,97,110,115,102,111,114,109,58,115,99,97,108,101,40,48,41,125,53,48,37,123,111,112,97,99,105,116,121,58,49,125,125,64,107,101,121,102,114,97,109,101,115,32,115,112,105,110,110,101,114,45,103,114,111,119,123,48,37,123,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,58,115,99,97,108,101,40,48,41,59,116,114,97,110,115,102,111,114,109,58,115,99,97,108,101,40,48,41,125,53,48,37,123,111,112,97,99,105,116,121,58,49,125,125,46,115,112,105,110,110,101,114,45,103,114,111,119,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,119,105,100,116,104,58,50,114,101,109,59,104,101,105,103,104,116,58,50,114,101,109,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,116,101,120,116,45,98,111,116,116,111,109,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,99,117,114,114,101,110,116,67,111,108,111,114,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,53,48,37,59,111,112,97,99,105,116,121,58,48,59,45,119,101,98,107,105,116,45,97,110,105,109,97,116,105,111,110,58,115,112,105,110,110,101,114,45,103,114,111,119,32,46,55,53,115,32,108,105,110,101,97,114,32,105,110,102,105,110,105,116,101,59,97,110,105,109,97,116,105,111,110,58,115,112,105,110,110,101,114,45,103,114,111,119,32,46,55,53,115,32,108,105,110,101,97,114,32,105,110,102,105,110,105,116,101,125,46,115,112,105,110,110,101,114,45,103,114,111,119,45,115,109,123,119,105,100,116,104,58,49,114,101,109,59,104,101,105,103,104,116,58,49,114,101,109,125,46,97,108,105,103,110,45,98,97,115,101,108,105,110,101,123,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,116,111,112,123,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,116,111,112,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,109,105,100,100,108,101,123,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,109,105,100,100,108,101,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,98,111,116,116,111,109,123,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,98,111,116,116,111,109,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,116,101,120,116,45,98,111,116,116,111,109,123,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,116,101,120,116,45,98,111,116,116,111,109,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,116,101,120,116,45,116,111,112,123,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,116,101,120,116,45,116,111,112,33,105,109,112,111,114,116,97,110,116,125,46,98,103,45,112,114,105,109,97,114,121,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,33,105,109,112,111,114,116,97,110,116,125,97,46,98,103,45,112,114,105,109,97,114,121,58,102,111,99,117,115,44,97,46,98,103,45,112,114,105,109,97,114,121,58,104,111,118,101,114,44,98,117,116,116,111,110,46,98,103,45,112,114,105,109,97,114,121,58,102,111,99,117,115,44,98,117,116,116,111,110,46,98,103,45,112,114,105,109,97,114,121,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,54,50,99,99,33,105,109,112,111,114,116,97,110,116,125,46,98,103,45,115,101,99,111,110,100,97,114,121,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,54,99,55,53,55,100,33,105,109,112,111,114,116,97,110,116,125,97,46,98,103,45,115,101,99,111,110,100,97,114,121,58,102,111,99,117,115,44,97,46,98,103,45,115,101,99,111,110,100,97,114,121,58,104,111,118,101,114,44,98,117,116,116,111,110,46,98,103,45,115,101,99,111,110,100,97,114,121,58,102,111,99,117,115,44,98,117,116,116,111,110,46,98,103,45,115,101,99,111,110,100,97,114,121,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,53,52,53,98,54,50,33,105,109,112,111,114,116,97,110,116,125,46,98,103,45,115,117,99,99,101,115,115,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,50,56,97,55,52,53,33,105,109,112,111,114,116,97,110,116,125,97,46,98,103,45,115,117,99,99,101,115,115,58,102,111,99,117,115,44,97,46,98,103,45,115,117,99,99,101,115,115,58,104,111,118,101,114,44,98,117,116,116,111,110,46,98,103,45,115,117,99,99,101,115,115,58,102,111,99,117,115,44,98,117,116,116,111,110,46,98,103,45,115,117,99,99,101,115,115,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,101,55,101,51,52,33,105,109,112,111,114,116,97,110,116,125,46,98,103,45,105,110,102,111,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,55,97,50,98,56,33,105,109,112,111,114,116,97,110,116,125,97,46,98,103,45,105,110,102,111,58,102,111,99,117,115,44,97,46,98,103,45,105,110,102,111,58,104,111,118,101,114,44,98,117,116,116,111,110,46,98,103,45,105,110,102,111,58,102,111,99,117,115,44,98,117,116,116,111,110,46,98,103,45,105,110,102,111,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,49,55,97,56,98,33,105,109,112,111,114,116,97,110,116,125,46,98,103,45,119,97,114,110,105,110,103,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,99,49,48,55,33,105,109,112,111,114,116,97,110,116,125,97,46,98,103,45,119,97,114,110,105,110,103,58,102,111,99,117,115,44,97,46,98,103,45,119,97,114,110,105,110,103,58,104,111,118,101,114,44,98,117,116,116,111,110,46,98,103,45,119,97,114,110,105,110,103,58,102,111,99,117,115,44,98,117,116,116,111,110,46,98,103,45,119,97,114,110,105,110,103,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,51,57,101,48,48,33,105,109,112,111,114,116,97,110,116,125,46,98,103,45,100,97,110,103,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,99,51,53,52,53,33,105,109,112,111,114,116,97,110,116,125,97,46,98,103,45,100,97,110,103,101,114,58,102,111,99,117,115,44,97,46,98,103,45,100,97,110,103,101,114,58,104,111,118,101,114,44,98,117,116,116,111,110,46,98,103,45,100,97,110,103,101,114,58,102,111,99,117,115,44,98,117,116,116,111,110,46,98,103,45,100,97,110,103,101,114,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,100,50,49,51,48,33,105,109,112,111,114,116,97,110,116,125,46,98,103,45,108,105,103,104,116,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,56,102,57,102,97,33,105,109,112,111,114,116,97,110,116,125,97,46,98,103,45,108,105,103,104,116,58,102,111,99,117,115,44,97,46,98,103,45,108,105,103,104,116,58,104,111,118,101,114,44,98,117,116,116,111,110,46,98,103,45,108,105,103,104,116,58,102,111,99,117,115,44,98,117,116,116,111,110,46,98,103,45,108,105,103,104,116,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,97,101,48,101,53,33,105,109,112,111,114,116,97,110,116,125,46,98,103,45,100,97,114,107,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,51,52,51,97,52,48,33,105,109,112,111,114,116,97,110,116,125,97,46,98,103,45,100,97,114,107,58,102,111,99,117,115,44,97,46,98,103,45,100,97,114,107,58,104,111,118,101,114,44,98,117,116,116,111,110,46,98,103,45,100,97,114,107,58,102,111,99,117,115,44,98,117,116,116,111,110,46,98,103,45,100,97,114,107,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,100,50,49,50,52,33,105,109,112,111,114,116,97,110,116,125,46,98,103,45,119,104,105,116,101,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,33,105,109,112,111,114,116,97,110,116,125,46,98,103,45,116,114,97,110,115,112,97,114,101,110,116,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,123,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,116,111,112,123,98,111,114,100,101,114,45,116,111,112,58,49,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,114,105,103,104,116,123,98,111,114,100,101,114,45,114,105,103,104,116,58,49,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,98,111,116,116,111,109,123,98,111,114,100,101,114,45,98,111,116,116,111,109,58,49,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,108,101,102,116,123,98,111,114,100,101,114,45,108,101,102,116,58,49,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,48,123,98,111,114,100,101,114,58,48,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,116,111,112,45,48,123,98,111,114,100,101,114,45,116,111,112,58,48,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,114,105,103,104,116,45,48,123,98,111,114,100,101,114,45,114,105,103,104,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,98,111,116,116,111,109,45,48,123,98,111,114,100,101,114,45,98,111,116,116,111,109,58,48,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,108,101,102,116,45,48,123,98,111,114,100,101,114,45,108,101,102,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,112,114,105,109,97,114,121,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,48,48,55,98,102,102,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,115,101,99,111,110,100,97,114,121,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,54,99,55,53,55,100,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,115,117,99,99,101,115,115,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,50,56,97,55,52,53,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,105,110,102,111,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,49,55,97,50,98,56,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,119,97,114,110,105,110,103,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,102,99,49,48,55,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,100,97,110,103,101,114,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,99,51,53,52,53,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,108,105,103,104,116,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,56,102,57,102,97,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,100,97,114,107,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,51,52,51,97,52,48,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,119,104,105,116,101,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,102,102,33,105,109,112,111,114,116,97,110,116,125,46,114,111,117,110,100,101,100,45,115,109,123,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,114,111,117,110,100,101,100,123,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,114,111,117,110,100,101,100,45,116,111,112,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,114,111,117,110,100,101,100,45,114,105,103,104,116,123,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,114,111,117,110,100,101,100,45,98,111,116,116,111,109,123,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,114,111,117,110,100,101,100,45,108,101,102,116,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,114,111,117,110,100,101,100,45,108,103,123,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,114,111,117,110,100,101,100,45,99,105,114,99,108,101,123,98,111,114,100,101,114,45,114,97,100,105,117,115,58,53,48,37,33,105,109,112,111,114,116,97,110,116,125,46,114,111,117,110,100,101,100,45,112,105,108,108,123,98,111,114,100,101,114,45,114,97,100,105,117,115,58,53,48,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,114,111,117,110,100,101,100,45,48,123,98,111,114,100,101,114,45,114,97,100,105,117,115,58,48,33,105,109,112,111,114,116,97,110,116,125,46,99,108,101,97,114,102,105,120,58,58,97,102,116,101,114,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,99,108,101,97,114,58,98,111,116,104,59,99,111,110,116,101,110,116,58,34,34,125,46,100,45,110,111,110,101,123,100,105,115,112,108,97,121,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,105,110,108,105,110,101,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,105,110,108,105,110,101,45,98,108,111,99,107,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,33,105,109,112,111,114,116,97,110,116,125,46,100,45,98,108,111,99,107,123,100,105,115,112,108,97,121,58,98,108,111,99,107,33,105,109,112,111,114,116,97,110,116,125,46,100,45,116,97,98,108,101,123,100,105,115,112,108,97,121,58,116,97,98,108,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,116,97,98,108,101,45,114,111,119,123,100,105,115,112,108,97,121,58,116,97,98,108,101,45,114,111,119,33,105,109,112,111,114,116,97,110,116,125,46,100,45,116,97,98,108,101,45,99,101,108,108,123,100,105,115,112,108,97,121,58,116,97,98,108,101,45,99,101,108,108,33,105,109,112,111,114,116,97,110,116,125,46,100,45,102,108,101,120,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,33,105,109,112,111,114,116,97,110,116,59,100,105,115,112,108,97,121,58,102,108,101,120,33,105,109,112,111,114,116,97,110,116,125,46,100,45,105,110,108,105,110,101,45,102,108,101,120,123,100,105,115,112,108,97,121,58,45,109,115,45,105,110,108,105,110,101,45,102,108,101,120,98,111,120,33,105,109,112,111,114,116,97,110,116,59,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,102,108,101,120,33,105,109,112,111,114,116,97,110,116,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,100,45,115,109,45,110,111,110,101,123,100,105,115,112,108,97,121,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,115,109,45,105,110,108,105,110,101,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,115,109,45,105,110,108,105,110,101,45,98,108,111,99,107,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,33,105,109,112,111,114,116,97,110,116,125,46,100,45,115,109,45,98,108,111,99,107,123,100,105,115,112,108,97,121,58,98,108,111,99,107,33,105,109,112,111,114,116,97,110,116,125,46,100,45,115,109,45,116,97,98,108,101,123,100,105,115,112,108,97,121,58,116,97,98,108,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,115,109,45,116,97,98,108,101,45,114,111,119,123,100,105,115,112,108,97,121,58,116,97,98,108,101,45,114,111,119,33,105,109,112,111,114,116,97,110,116,125,46,100,45,115,109,45,116,97,98,108,101,45,99,101,108,108,123,100,105,115,112,108,97,121,58,116,97,98,108,101,45,99,101,108,108,33,105,109,112,111,114,116,97,110,116,125,46,100,45,115,109,45,102,108,101,120,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,33,105,109,112,111,114,116,97,110,116,59,100,105,115,112,108,97,121,58,102,108,101,120,33,105,109,112,111,114,116,97,110,116,125,46,100,45,115,109,45,105,110,108,105,110,101,45,102,108,101,120,123,100,105,115,112,108,97,121,58,45,109,115,45,105,110,108,105,110,101,45,102,108,101,120,98,111,120,33,105,109,112,111,114,116,97,110,116,59,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,102,108,101,120,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,55,54,56,112,120,41,123,46,100,45,109,100,45,110,111,110,101,123,100,105,115,112,108,97,121,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,109,100,45,105,110,108,105,110,101,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,109,100,45,105,110,108,105,110,101,45,98,108,111,99,107,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,33,105,109,112,111,114,116,97,110,116,125,46,100,45,109,100,45,98,108,111,99,107,123,100,105,115,112,108,97,121,58,98,108,111,99,107,33,105,109,112,111,114,116,97,110,116,125,46,100,45,109,100,45,116,97,98,108,101,123,100,105,115,112,108,97,121,58,116,97,98,108,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,109,100,45,116,97,98,108,101,45,114,111,119,123,100,105,115,112,108,97,121,58,116,97,98,108,101,45,114,111,119,33,105,109,112,111,114,116,97,110,116,125,46,100,45,109,100,45,116,97,98,108,101,45,99,101,108,108,123,100,105,115,112,108,97,121,58,116,97,98,108,101,45,99,101,108,108,33,105,109,112,111,114,116,97,110,116,125,46,100,45,109,100,45,102,108,101,120,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,33,105,109,112,111,114,116,97,110,116,59,100,105,115,112,108,97,121,58,102,108,101,120,33,105,109,112,111,114,116,97,110,116,125,46,100,45,109,100,45,105,110,108,105,110,101,45,102,108,101,120,123,100,105,115,112,108,97,121,58,45,109,115,45,105,110,108,105,110,101,45,102,108,101,120,98,111,120,33,105,109,112,111,114,116,97,110,116,59,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,102,108,101,120,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,57,57,50,112,120,41,123,46,100,45,108,103,45,110,111,110,101,123,100,105,115,112,108,97,121,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,108,103,45,105,110,108,105,110,101,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,108,103,45,105,110,108,105,110,101,45,98,108,111,99,107,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,33,105,109,112,111,114,116,97,110,116,125,46,100,45,108,103,45,98,108,111,99,107,123,100,105,115,112,108,97,121,58,98,108,111,99,107,33,105,109,112,111,114,116,97,110,116,125,46,100,45,108,103,45,116,97,98,108,101,123,100,105,115,112,108,97,121,58,116,97,98,108,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,108,103,45,116,97,98,108,101,45,114,111,119,123,100,105,115,112,108,97,121,58,116,97,98,108,101,45,114,111,119,33,105,109,112,111,114,116,97,110,116,125,46,100,45,108,103,45,116,97,98,108,101,45,99,101,108,108,123,100,105,115,112,108,97,121,58,116,97,98,108,101,45,99,101,108,108,33,105,109,112,111,114,116,97,110,116,125,46,100,45,108,103,45,102,108,101,120,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,33,105,109,112,111,114,116,97,110,116,59,100,105,115,112,108,97,121,58,102,108,101,120,33,105,109,112,111,114,116,97,110,116,125,46,100,45,108,103,45,105,110,108,105,110,101,45,102,108,101,120,123,100,105,115,112,108,97,121,58,45,109,115,45,105,110,108,105,110,101,45,102,108,101,120,98,111,120,33,105,109,112,111,114,116,97,110,116,59,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,102,108,101,120,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,49,50,48,48,112,120,41,123,46,100,45,120,108,45,110,111,110,101,123,100,105,115,112,108,97,121,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,120,108,45,105,110,108,105,110,101,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,120,108,45,105,110,108,105,110,101,45,98,108,111,99,107,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,33,105,109,112,111,114,116,97,110,116,125,46,100,45,120,108,45,98,108,111,99,107,123,100,105,115,112,108,97,121,58,98,108,111,99,107,33,105,109,112,111,114,116,97,110,116,125,46,100,45,120,108,45,116,97,98,108,101,123,100,105,115,112,108,97,121,58,116,97,98,108,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,120,108,45,116,97,98,108,101,45,114,111,119,123,100,105,115,112,108,97,121,58,116,97,98,108,101,45,114,111,119,33,105,109,112,111,114,116,97,110,116,125,46,100,45,120,108,45,116,97,98,108,101,45,99,101,108,108,123,100,105,115,112,108,97,121,58,116,97,98,108,101,45,99,101,108,108,33,105,109,112,111,114,116,97,110,116,125,46,100,45,120,108,45,102,108,101,120,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,33,105,109,112,111,114,116,97,110,116,59,100,105,115,112,108,97,121,58,102,108,101,120,33,105,109,112,111,114,116,97,110,116,125,46,100,45,120,108,45,105,110,108,105,110,101,45,102,108,101,120,123,100,105,115,112,108,97,121,58,45,109,115,45,105,110,108,105,110,101,45,102,108,101,120,98,111,120,33,105,109,112,111,114,116,97,110,116,59,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,102,108,101,120,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,112,114,105,110,116,123,46,100,45,112,114,105,110,116,45,110,111,110,101,123,100,105,115,112,108,97,121,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,112,114,105,110,116,45,105,110,108,105,110,101,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,112,114,105,110,116,45,105,110,108,105,110,101,45,98,108,111,99,107,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,33,105,109,112,111,114,116,97,110,116,125,46,100,45,112,114,105,110,116,45,98,108,111,99,107,123,100,105,115,112,108,97,121,58,98,108,111,99,107,33,105,109,112,111,114,116,97,110,116,125,46,100,45,112,114,105,110,116,45,116,97,98,108,101,123,100,105,115,112,108,97,121,58,116,97,98,108,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,112,114,105,110,116,45,116,97,98,108,101,45,114,111,119,123,100,105,115,112,108,97,121,58,116,97,98,108,101,45,114,111,119,33,105,109,112,111,114,116,97,110,116,125,46,100,45,112,114,105,110,116,45,116,97,98,108,101,45,99,101,108,108,123,100,105,115,112,108,97,121,58,116,97,98,108,101,45,99,101,108,108,33,105,109,112,111,114,116,97,110,116,125,46,100,45,112,114,105,110,116,45,102,108,101,120,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,33,105,109,112,111,114,116,97,110,116,59,100,105,115,112,108,97,121,58,102,108,101,120,33,105,109,112,111,114,116,97,110,116,125,46,100,45,112,114,105,110,116,45,105,110,108,105,110,101,45,102,108,101,120,123,100,105,115,112,108,97,121,58,45,109,115,45,105,110,108,105,110,101,45,102,108,101,120,98,111,120,33,105,109,112,111,114,116,97,110,116,59,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,102,108,101,120,33,105,109,112,111,114,116,97,110,116,125,125,46,101,109,98,101,100,45,114,101,115,112,111,110,115,105,118,101,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,59,112,97,100,100,105,110,103,58,48,59,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,125,46,101,109,98,101,100,45,114,101,115,112,111,110,115,105,118,101,58,58,98,101,102,111,114,101,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,99,111,110,116,101,110,116,58,34,34,125,46,101,109,98,101,100,45,114,101,115,112,111,110,115,105,118,101,32,46,101,109,98,101,100,45,114,101,115,112,111,110,115,105,118,101,45,105,116,101,109,44,46,101,109,98,101,100,45,114,101,115,112,111,110,115,105,118,101,32,101,109,98,101,100,44,46,101,109,98,101,100,45,114,101,115,112,111,110,115,105,118,101,32,105,102,114,97,109,101,44,46,101,109,98,101,100,45,114,101,115,112,111,110,115,105,118,101,32,111,98,106,101,99,116,44,46,101,109,98,101,100,45,114,101,115,112,111,110,115,105,118,101,32,118,105,100,101,111,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,48,59,98,111,116,116,111,109,58,48,59,108,101,102,116,58,48,59,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,49,48,48,37,59,98,111,114,100,101,114,58,48,125,46,101,109,98,101,100,45,114,101,115,112,111,110,115,105,118,101,45,50,49,98,121,57,58,58,98,101,102,111,114,101,123,112,97,100,100,105,110,103,45,116,111,112,58,52,50,46,56,53,55,49,52,51,37,125,46,101,109,98,101,100,45,114,101,115,112,111,110,115,105,118,101,45,49,54,98,121,57,58,58,98,101,102,111,114,101,123,112,97,100,100,105,110,103,45,116,111,112,58,53,54,46,50,53,37,125,46,101,109,98,101,100,45,114,101,115,112,111,110,115,105,118,101,45,52,98,121,51,58,58,98,101,102,111,114,101,123,112,97,100,100,105,110,103,45,116,111,112,58,55,53,37,125,46,101,109,98,101,100,45,114,101,115,112,111,110,115,105,118,101,45,49,98,121,49,58,58,98,101,102,111,114,101,123,112,97,100,100,105,110,103,45,116,111,112,58,49,48,48,37,125,46,102,108,101,120,45,114,111,119,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,99,111,108,117,109,110,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,114,111,119,45,114,101,118,101,114,115,101,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,99,111,108,117,109,110,45,114,101,118,101,114,115,101,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,119,114,97,112,123,45,109,115,45,102,108,101,120,45,119,114,97,112,58,119,114,97,112,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,110,111,119,114,97,112,123,45,109,115,45,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,119,114,97,112,45,114,101,118,101,114,115,101,123,45,109,115,45,102,108,101,120,45,119,114,97,112,58,119,114,97,112,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,102,105,108,108,123,45,109,115,45,102,108,101,120,58,49,32,49,32,97,117,116,111,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,58,49,32,49,32,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,103,114,111,119,45,48,123,45,109,115,45,102,108,101,120,45,112,111,115,105,116,105,118,101,58,48,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,103,114,111,119,58,48,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,103,114,111,119,45,49,123,45,109,115,45,102,108,101,120,45,112,111,115,105,116,105,118,101,58,49,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,103,114,111,119,58,49,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,115,104,114,105,110,107,45,48,123,45,109,115,45,102,108,101,120,45,110,101,103,97,116,105,118,101,58,48,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,115,104,114,105,110,107,58,48,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,115,104,114,105,110,107,45,49,123,45,109,115,45,102,108,101,120,45,110,101,103,97,116,105,118,101,58,49,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,115,104,114,105,110,107,58,49,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,115,116,97,114,116,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,101,110,100,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,101,110,100,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,99,101,110,116,101,114,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,98,101,116,119,101,101,110,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,106,117,115,116,105,102,121,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,98,101,116,119,101,101,110,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,97,114,111,117,110,100,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,100,105,115,116,114,105,98,117,116,101,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,97,114,111,117,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,115,116,97,114,116,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,101,110,100,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,101,110,100,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,99,101,110,116,101,114,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,98,97,115,101,108,105,110,101,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,115,116,114,101,116,99,104,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,115,116,97,114,116,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,101,110,100,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,101,110,100,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,99,101,110,116,101,114,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,98,101,116,119,101,101,110,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,106,117,115,116,105,102,121,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,98,101,116,119,101,101,110,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,97,114,111,117,110,100,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,100,105,115,116,114,105,98,117,116,101,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,97,114,111,117,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,115,116,114,101,116,99,104,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,97,117,116,111,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,115,116,97,114,116,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,101,110,100,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,101,110,100,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,99,101,110,116,101,114,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,98,97,115,101,108,105,110,101,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,115,116,114,101,116,99,104,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,102,108,101,120,45,115,109,45,114,111,119,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,115,109,45,99,111,108,117,109,110,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,115,109,45,114,111,119,45,114,101,118,101,114,115,101,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,115,109,45,99,111,108,117,109,110,45,114,101,118,101,114,115,101,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,115,109,45,119,114,97,112,123,45,109,115,45,102,108,101,120,45,119,114,97,112,58,119,114,97,112,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,115,109,45,110,111,119,114,97,112,123,45,109,115,45,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,115,109,45,119,114,97,112,45,114,101,118,101,114,115,101,123,45,109,115,45,102,108,101,120,45,119,114,97,112,58,119,114,97,112,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,115,109,45,102,105,108,108,123,45,109,115,45,102,108,101,120,58,49,32,49,32,97,117,116,111,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,58,49,32,49,32,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,115,109,45,103,114,111,119,45,48,123,45,109,115,45,102,108,101,120,45,112,111,115,105,116,105,118,101,58,48,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,103,114,111,119,58,48,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,115,109,45,103,114,111,119,45,49,123,45,109,115,45,102,108,101,120,45,112,111,115,105,116,105,118,101,58,49,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,103,114,111,119,58,49,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,115,109,45,115,104,114,105,110,107,45,48,123,45,109,115,45,102,108,101,120,45,110,101,103,97,116,105,118,101,58,48,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,115,104,114,105,110,107,58,48,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,115,109,45,115,104,114,105,110,107,45,49,123,45,109,115,45,102,108,101,120,45,110,101,103,97,116,105,118,101,58,49,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,115,104,114,105,110,107,58,49,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,115,109,45,115,116,97,114,116,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,115,109,45,101,110,100,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,101,110,100,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,115,109,45,99,101,110,116,101,114,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,115,109,45,98,101,116,119,101,101,110,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,106,117,115,116,105,102,121,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,98,101,116,119,101,101,110,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,115,109,45,97,114,111,117,110,100,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,100,105,115,116,114,105,98,117,116,101,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,97,114,111,117,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,115,109,45,115,116,97,114,116,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,115,109,45,101,110,100,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,101,110,100,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,115,109,45,99,101,110,116,101,114,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,115,109,45,98,97,115,101,108,105,110,101,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,115,109,45,115,116,114,101,116,99,104,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,115,109,45,115,116,97,114,116,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,115,109,45,101,110,100,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,101,110,100,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,115,109,45,99,101,110,116,101,114,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,115,109,45,98,101,116,119,101,101,110,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,106,117,115,116,105,102,121,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,98,101,116,119,101,101,110,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,115,109,45,97,114,111,117,110,100,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,100,105,115,116,114,105,98,117,116,101,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,97,114,111,117,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,115,109,45,115,116,114,101,116,99,104,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,115,109,45,97,117,116,111,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,115,109,45,115,116,97,114,116,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,115,109,45,101,110,100,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,101,110,100,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,115,109,45,99,101,110,116,101,114,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,115,109,45,98,97,115,101,108,105,110,101,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,115,109,45,115,116,114,101,116,99,104,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,55,54,56,112,120,41,123,46,102,108,101,120,45,109,100,45,114,111,119,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,109,100,45,99,111,108,117,109,110,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,109,100,45,114,111,119,45,114,101,118,101,114,115,101,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,109,100,45,99,111,108,117,109,110,45,114,101,118,101,114,115,101,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,109,100,45,119,114,97,112,123,45,109,115,45,102,108,101,120,45,119,114,97,112,58,119,114,97,112,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,109,100,45,110,111,119,114,97,112,123,45,109,115,45,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,109,100,45,119,114,97,112,45,114,101,118,101,114,115,101,123,45,109,115,45,102,108,101,120,45,119,114,97,112,58,119,114,97,112,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,109,100,45,102,105,108,108,123,45,109,115,45,102,108,101,120,58,49,32,49,32,97,117,116,111,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,58,49,32,49,32,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,109,100,45,103,114,111,119,45,48,123,45,109,115,45,102,108,101,120,45,112,111,115,105,116,105,118,101,58,48,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,103,114,111,119,58,48,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,109,100,45,103,114,111,119,45,49,123,45,109,115,45,102,108,101,120,45,112,111,115,105,116,105,118,101,58,49,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,103,114,111,119,58,49,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,109,100,45,115,104,114,105,110,107,45,48,123,45,109,115,45,102,108,101,120,45,110,101,103,97,116,105,118,101,58,48,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,115,104,114,105,110,107,58,48,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,109,100,45,115,104,114,105,110,107,45,49,123,45,109,115,45,102,108,101,120,45,110,101,103,97,116,105,118,101,58,49,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,115,104,114,105,110,107,58,49,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,109,100,45,115,116,97,114,116,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,109,100,45,101,110,100,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,101,110,100,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,109,100,45,99,101,110,116,101,114,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,109,100,45,98,101,116,119,101,101,110,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,106,117,115,116,105,102,121,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,98,101,116,119,101,101,110,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,109,100,45,97,114,111,117,110,100,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,100,105,115,116,114,105,98,117,116,101,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,97,114,111,117,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,109,100,45,115,116,97,114,116,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,109,100,45,101,110,100,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,101,110,100,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,109,100,45,99,101,110,116,101,114,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,109,100,45,98,97,115,101,108,105,110,101,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,109,100,45,115,116,114,101,116,99,104,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,109,100,45,115,116,97,114,116,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,109,100,45,101,110,100,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,101,110,100,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,109,100,45,99,101,110,116,101,114,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,109,100,45,98,101,116,119,101,101,110,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,106,117,115,116,105,102,121,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,98,101,116,119,101,101,110,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,109,100,45,97,114,111,117,110,100,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,100,105,115,116,114,105,98,117,116,101,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,97,114,111,117,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,109,100,45,115,116,114,101,116,99,104,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,109,100,45,97,117,116,111,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,109,100,45,115,116,97,114,116,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,109,100,45,101,110,100,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,101,110,100,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,109,100,45,99,101,110,116,101,114,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,109,100,45,98,97,115,101,108,105,110,101,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,109,100,45,115,116,114,101,116,99,104,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,57,57,50,112,120,41,123,46,102,108,101,120,45,108,103,45,114,111,119,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,108,103,45,99,111,108,117,109,110,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,108,103,45,114,111,119,45,114,101,118,101,114,115,101,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,108,103,45,99,111,108,117,109,110,45,114,101,118,101,114,115,101,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,108,103,45,119,114,97,112,123,45,109,115,45,102,108,101,120,45,119,114,97,112,58,119,114,97,112,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,108,103,45,110,111,119,114,97,112,123,45,109,115,45,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,108,103,45,119,114,97,112,45,114,101,118,101,114,115,101,123,45,109,115,45,102,108,101,120,45,119,114,97,112,58,119,114,97,112,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,108,103,45,102,105,108,108,123,45,109,115,45,102,108,101,120,58,49,32,49,32,97,117,116,111,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,58,49,32,49,32,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,108,103,45,103,114,111,119,45,48,123,45,109,115,45,102,108,101,120,45,112,111,115,105,116,105,118,101,58,48,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,103,114,111,119,58,48,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,108,103,45,103,114,111,119,45,49,123,45,109,115,45,102,108,101,120,45,112,111,115,105,116,105,118,101,58,49,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,103,114,111,119,58,49,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,108,103,45,115,104,114,105,110,107,45,48,123,45,109,115,45,102,108,101,120,45,110,101,103,97,116,105,118,101,58,48,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,115,104,114,105,110,107,58,48,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,108,103,45,115,104,114,105,110,107,45,49,123,45,109,115,45,102,108,101,120,45,110,101,103,97,116,105,118,101,58,49,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,115,104,114,105,110,107,58,49,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,108,103,45,115,116,97,114,116,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,108,103,45,101,110,100,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,101,110,100,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,108,103,45,99,101,110,116,101,114,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,108,103,45,98,101,116,119,101,101,110,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,106,117,115,116,105,102,121,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,98,101,116,119,101,101,110,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,108,103,45,97,114,111,117,110,100,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,100,105,115,116,114,105,98,117,116,101,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,97,114,111,117,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,108,103,45,115,116,97,114,116,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,108,103,45,101,110,100,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,101,110,100,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,108,103,45,99,101,110,116,101,114,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,108,103,45,98,97,115,101,108,105,110,101,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,108,103,45,115,116,114,101,116,99,104,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,108,103,45,115,116,97,114,116,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,108,103,45,101,110,100,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,101,110,100,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,108,103,45,99,101,110,116,101,114,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,108,103,45,98,101,116,119,101,101,110,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,106,117,115,116,105,102,121,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,98,101,116,119,101,101,110,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,108,103,45,97,114,111,117,110,100,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,100,105,115,116,114,105,98,117,116,101,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,97,114,111,117,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,108,103,45,115,116,114,101,116,99,104,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,108,103,45,97,117,116,111,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,108,103,45,115,116,97,114,116,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,108,103,45,101,110,100,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,101,110,100,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,108,103,45,99,101,110,116,101,114,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,108,103,45,98,97,115,101,108,105,110,101,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,108,103,45,115,116,114,101,116,99,104,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,49,50,48,48,112,120,41,123,46,102,108,101,120,45,120,108,45,114,111,119,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,120,108,45,99,111,108,117,109,110,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,120,108,45,114,111,119,45,114,101,118,101,114,115,101,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,120,108,45,99,111,108,117,109,110,45,114,101,118,101,114,115,101,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,120,108,45,119,114,97,112,123,45,109,115,45,102,108,101,120,45,119,114,97,112,58,119,114,97,112,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,120,108,45,110,111,119,114,97,112,123,45,109,115,45,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,120,108,45,119,114,97,112,45,114,101,118,101,114,115,101,123,45,109,115,45,102,108,101,120,45,119,114,97,112,58,119,114,97,112,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,120,108,45,102,105,108,108,123,45,109,115,45,102,108,101,120,58,49,32,49,32,97,117,116,111,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,58,49,32,49,32,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,120,108,45,103,114,111,119,45,48,123,45,109,115,45,102,108,101,120,45,112,111,115,105,116,105,118,101,58,48,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,103,114,111,119,58,48,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,120,108,45,103,114,111,119,45,49,123,45,109,115,45,102,108,101,120,45,112,111,115,105,116,105,118,101,58,49,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,103,114,111,119,58,49,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,120,108,45,115,104,114,105,110,107,45,48,123,45,109,115,45,102,108,101,120,45,110,101,103,97,116,105,118,101,58,48,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,115,104,114,105,110,107,58,48,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,120,108,45,115,104,114,105,110,107,45,49,123,45,109,115,45,102,108,101,120,45,110,101,103,97,116,105,118,101,58,49,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,115,104,114,105,110,107,58,49,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,120,108,45,115,116,97,114,116,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,120,108,45,101,110,100,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,101,110,100,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,120,108,45,99,101,110,116,101,114,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,120,108,45,98,101,116,119,101,101,110,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,106,117,115,116,105,102,121,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,98,101,116,119,101,101,110,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,120,108,45,97,114,111,117,110,100,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,100,105,115,116,114,105,98,117,116,101,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,97,114,111,117,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,120,108,45,115,116,97,114,116,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,120,108,45,101,110,100,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,101,110,100,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,120,108,45,99,101,110,116,101,114,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,120,108,45,98,97,115,101,108,105,110,101,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,120,108,45,115,116,114,101,116,99,104,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,120,108,45,115,116,97,114,116,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,120,108,45,101,110,100,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,101,110,100,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,120,108,45,99,101,110,116,101,114,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,120,108,45,98,101,116,119,101,101,110,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,106,117,115,116,105,102,121,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,98,101,116,119,101,101,110,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,120,108,45,97,114,111,117,110,100,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,100,105,115,116,114,105,98,117,116,101,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,97,114,111,117,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,120,108,45,115,116,114,101,116,99,104,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,120,108,45,97,117,116,111,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,120,108,45,115,116,97,114,116,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,120,108,45,101,110,100,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,101,110,100,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,120,108,45,99,101,110,116,101,114,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,120,108,45,98,97,115,101,108,105,110,101,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,120,108,45,115,116,114,101,116,99,104,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,125,125,46,102,108,111,97,116,45,108,101,102,116,123,102,108,111,97,116,58,108,101,102,116,33,105,109,112,111,114,116,97,110,116,125,46,102,108,111,97,116,45,114,105,103,104,116,123,102,108,111,97,116,58,114,105,103,104,116,33,105,109,112,111,114,116,97,110,116,125,46,102,108,111,97,116,45,110,111,110,101,123,102,108,111,97,116,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,102,108,111,97,116,45,115,109,45,108,101,102,116,123,102,108,111,97,116,58,108,101,102,116,33,105,109,112,111,114,116,97,110,116,125,46,102,108,111,97,116,45,115,109,45,114,105,103,104,116,123,102,108,111,97,116,58,114,105,103,104,116,33,105,109,112,111,114,116,97,110,116,125,46,102,108,111,97,116,45,115,109,45,110,111,110,101,123,102,108,111,97,116,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,55,54,56,112,120,41,123,46,102,108,111,97,116,45,109,100,45,108,101,102,116,123,102,108,111,97,116,58,108,101,102,116,33,105,109,112,111,114,116,97,110,116,125,46,102,108,111,97,116,45,109,100,45,114,105,103,104,116,123,102,108,111,97,116,58,114,105,103,104,116,33,105,109,112,111,114,116,97,110,116,125,46,102,108,111,97,116,45,109,100,45,110,111,110,101,123,102,108,111,97,116,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,57,57,50,112,120,41,123,46,102,108,111,97,116,45,108,103,45,108,101,102,116,123,102,108,111,97,116,58,108,101,102,116,33,105,109,112,111,114,116,97,110,116,125,46,102,108,111,97,116,45,108,103,45,114,105,103,104,116,123,102,108,111,97,116,58,114,105,103,104,116,33,105,109,112,111,114,116,97,110,116,125,46,102,108,111,97,116,45,108,103,45,110,111,110,101,123,102,108,111,97,116,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,49,50,48,48,112,120,41,123,46,102,108,111,97,116,45,120,108,45,108,101,102,116,123,102,108,111,97,116,58,108,101,102,116,33,105,109,112,111,114,116,97,110,116,125,46,102,108,111,97,116,45,120,108,45,114,105,103,104,116,123,102,108,111,97,116,58,114,105,103,104,116,33,105,109,112,111,114,116,97,110,116,125,46,102,108,111,97,116,45,120,108,45,110,111,110,101,123,102,108,111,97,116,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,125,46,111,118,101,114,102,108,111,119,45,97,117,116,111,123,111,118,101,114,102,108,111,119,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,111,118,101,114,102,108,111,119,45,104,105,100,100,101,110,123,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,33,105,109,112,111,114,116,97,110,116,125,46,112,111,115,105,116,105,111,110,45,115,116,97,116,105,99,123,112,111,115,105,116,105,111,110,58,115,116,97,116,105,99,33,105,109,112,111,114,116,97,110,116,125,46,112,111,115,105,116,105,111,110,45,114,101,108,97,116,105,118,101,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,33,105,109,112,111,114,116,97,110,116,125,46,112,111,115,105,116,105,111,110,45,97,98,115,111,108,117,116,101,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,33,105,109,112,111,114,116,97,110,116,125,46,112,111,115,105,116,105,111,110,45,102,105,120,101,100,123,112,111,115,105,116,105,111,110,58,102,105,120,101,100,33,105,109,112,111,114,116,97,110,116,125,46,112,111,115,105,116,105,111,110,45,115,116,105,99,107,121,123,112,111,115,105,116,105,111,110,58,45,119,101,98,107,105,116,45,115,116,105,99,107,121,33,105,109,112,111,114,116,97,110,116,59,112,111,115,105,116,105,111,110,58,115,116,105,99,107,121,33,105,109,112,111,114,116,97,110,116,125,46,102,105,120,101,100,45,116,111,112,123,112,111,115,105,116,105,111,110,58,102,105,120,101,100,59,116,111,112,58,48,59,114,105,103,104,116,58,48,59,108,101,102,116,58,48,59,122,45,105,110,100,101,120,58,49,48,51,48,125,46,102,105,120,101,100,45,98,111,116,116,111,109,123,112,111,115,105,116,105,111,110,58,102,105,120,101,100,59,114,105,103,104,116,58,48,59,98,111,116,116,111,109,58,48,59,108,101,102,116,58,48,59,122,45,105,110,100,101,120,58,49,48,51,48,125,64,115,117,112,112,111,114,116,115,32,40,40,112,111,115,105,116,105,111,110,58,45,119,101,98,107,105,116,45,115,116,105,99,107,121,41,32,111,114,32,40,112,111,115,105,116,105,111,110,58,115,116,105,99,107,121,41,41,123,46,115,116,105,99,107,121,45,116,111,112,123,112,111,115,105,116,105,111,110,58,45,119,101,98,107,105,116,45,115,116,105,99,107,121,59,112,111,115,105,116,105,111,110,58,115,116,105,99,107,121,59,116,111,112,58,48,59,122,45,105,110,100,101,120,58,49,48,50,48,125,125,46,115,114,45,111,110,108,121,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,119,105,100,116,104,58,49,112,120,59,104,101,105,103,104,116,58,49,112,120,59,112,97,100,100,105,110,103,58,48,59,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,59,99,108,105,112,58,114,101,99,116,40,48,44,48,44,48,44,48,41,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,119,114,97,112,59,98,111,114,100,101,114,58,48,125,46,115,114,45,111,110,108,121,45,102,111,99,117,115,97,98,108,101,58,97,99,116,105,118,101,44,46,115,114,45,111,110,108,121,45,102,111,99,117,115,97,98,108,101,58,102,111,99,117,115,123,112,111,115,105,116,105,111,110,58,115,116,97,116,105,99,59,119,105,100,116,104,58,97,117,116,111,59,104,101,105,103,104,116,58,97,117,116,111,59,111,118,101,114,102,108,111,119,58,118,105,115,105,98,108,101,59,99,108,105,112,58,97,117,116,111,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,114,109,97,108,125,46,115,104,97,100,111,119,45,115,109,123,98,111,120,45,115,104,97,100,111,119,58,48,32,46,49,50,53,114,101,109,32,46,50,53,114,101,109,32,114,103,98,97,40,48,44,48,44,48,44,46,48,55,53,41,33,105,109,112,111,114,116,97,110,116,125,46,115,104,97,100,111,119,123,98,111,120,45,115,104,97,100,111,119,58,48,32,46,53,114,101,109,32,49,114,101,109,32,114,103,98,97,40,48,44,48,44,48,44,46,49,53,41,33,105,109,112,111,114,116,97,110,116,125,46,115,104,97,100,111,119,45,108,103,123,98,111,120,45,115,104,97,100,111,119,58,48,32,49,114,101,109,32,51,114,101,109,32,114,103,98,97,40,48,44,48,44,48,44,46,49,55,53,41,33,105,109,112,111,114,116,97,110,116,125,46,115,104,97,100,111,119,45,110,111,110,101,123,98,111,120,45,115,104,97,100,111,119,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,46,119,45,50,53,123,119,105,100,116,104,58,50,53,37,33,105,109,112,111,114,116,97,110,116,125,46,119,45,53,48,123,119,105,100,116,104,58,53,48,37,33,105,109,112,111,114,116,97,110,116,125,46,119,45,55,53,123,119,105,100,116,104,58,55,53,37,33,105,109,112,111,114,116,97,110,116,125,46,119,45,49,48,48,123,119,105,100,116,104,58,49,48,48,37,33,105,109,112,111,114,116,97,110,116,125,46,119,45,97,117,116,111,123,119,105,100,116,104,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,104,45,50,53,123,104,101,105,103,104,116,58,50,53,37,33,105,109,112,111,114,116,97,110,116,125,46,104,45,53,48,123,104,101,105,103,104,116,58,53,48,37,33,105,109,112,111,114,116,97,110,116,125,46,104,45,55,53,123,104,101,105,103,104,116,58,55,53,37,33,105,109,112,111,114,116,97,110,116,125,46,104,45,49,48,48,123,104,101,105,103,104,116,58,49,48,48,37,33,105,109,112,111,114,116,97,110,116,125,46,104,45,97,117,116,111,123,104,101,105,103,104,116,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,119,45,49,48,48,123,109,97,120,45,119,105,100,116,104,58,49,48,48,37,33,105,109,112,111,114,116,97,110,116,125,46,109,104,45,49,48,48,123,109,97,120,45,104,101,105,103,104,116,58,49,48,48,37,33,105,109,112,111,114,116,97,110,116,125,46,109,105,110,45,118,119,45,49,48,48,123,109,105,110,45,119,105,100,116,104,58,49,48,48,118,119,33,105,109,112,111,114,116,97,110,116,125,46,109,105,110,45,118,104,45,49,48,48,123,109,105,110,45,104,101,105,103,104,116,58,49,48,48,118,104,33,105,109,112,111,114,116,97,110,116,125,46,118,119,45,49,48,48,123,119,105,100,116,104,58,49,48,48,118,119,33,105,109,112,111,114,116,97,110,116,125,46,118,104,45,49,48,48,123,104,101,105,103,104,116,58,49,48,48,118,104,33,105,109,112,111,114,116,97,110,116,125,46,115,116,114,101,116,99,104,101,100,45,108,105,110,107,58,58,97,102,116,101,114,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,48,59,114,105,103,104,116,58,48,59,98,111,116,116,111,109,58,48,59,108,101,102,116,58,48,59,122,45,105,110,100,101,120,58,49,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,97,117,116,111,59,99,111,110,116,101,110,116,58,34,34,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,48,41,125,46,109,45,48,123,109,97,114,103,105,110,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,48,44,46,109,121,45,48,123,109,97,114,103,105,110,45,116,111,112,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,48,44,46,109,120,45,48,123,109,97,114,103,105,110,45,114,105,103,104,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,48,44,46,109,121,45,48,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,48,44,46,109,120,45,48,123,109,97,114,103,105,110,45,108,101,102,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,45,49,123,109,97,114,103,105,110,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,49,44,46,109,121,45,49,123,109,97,114,103,105,110,45,116,111,112,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,49,44,46,109,120,45,49,123,109,97,114,103,105,110,45,114,105,103,104,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,49,44,46,109,121,45,49,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,49,44,46,109,120,45,49,123,109,97,114,103,105,110,45,108,101,102,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,50,123,109,97,114,103,105,110,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,50,44,46,109,121,45,50,123,109,97,114,103,105,110,45,116,111,112,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,50,44,46,109,120,45,50,123,109,97,114,103,105,110,45,114,105,103,104,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,50,44,46,109,121,45,50,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,50,44,46,109,120,45,50,123,109,97,114,103,105,110,45,108,101,102,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,51,123,109,97,114,103,105,110,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,51,44,46,109,121,45,51,123,109,97,114,103,105,110,45,116,111,112,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,51,44,46,109,120,45,51,123,109,97,114,103,105,110,45,114,105,103,104,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,51,44,46,109,121,45,51,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,51,44,46,109,120,45,51,123,109,97,114,103,105,110,45,108,101,102,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,52,123,109,97,114,103,105,110,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,52,44,46,109,121,45,52,123,109,97,114,103,105,110,45,116,111,112,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,52,44,46,109,120,45,52,123,109,97,114,103,105,110,45,114,105,103,104,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,52,44,46,109,121,45,52,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,52,44,46,109,120,45,52,123,109,97,114,103,105,110,45,108,101,102,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,53,123,109,97,114,103,105,110,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,53,44,46,109,121,45,53,123,109,97,114,103,105,110,45,116,111,112,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,53,44,46,109,120,45,53,123,109,97,114,103,105,110,45,114,105,103,104,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,53,44,46,109,121,45,53,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,53,44,46,109,120,45,53,123,109,97,114,103,105,110,45,108,101,102,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,48,123,112,97,100,100,105,110,103,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,48,44,46,112,121,45,48,123,112,97,100,100,105,110,103,45,116,111,112,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,48,44,46,112,120,45,48,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,48,44,46,112,121,45,48,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,48,44,46,112,120,45,48,123,112,97,100,100,105,110,103,45,108,101,102,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,45,49,123,112,97,100,100,105,110,103,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,49,44,46,112,121,45,49,123,112,97,100,100,105,110,103,45,116,111,112,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,49,44,46,112,120,45,49,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,49,44,46,112,121,45,49,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,49,44,46,112,120,45,49,123,112,97,100,100,105,110,103,45,108,101,102,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,50,123,112,97,100,100,105,110,103,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,50,44,46,112,121,45,50,123,112,97,100,100,105,110,103,45,116,111,112,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,50,44,46,112,120,45,50,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,50,44,46,112,121,45,50,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,50,44,46,112,120,45,50,123,112,97,100,100,105,110,103,45,108,101,102,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,51,123,112,97,100,100,105,110,103,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,51,44,46,112,121,45,51,123,112,97,100,100,105,110,103,45,116,111,112,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,51,44,46,112,120,45,51,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,51,44,46,112,121,45,51,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,51,44,46,112,120,45,51,123,112,97,100,100,105,110,103,45,108,101,102,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,52,123,112,97,100,100,105,110,103,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,52,44,46,112,121,45,52,123,112,97,100,100,105,110,103,45,116,111,112,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,52,44,46,112,120,45,52,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,52,44,46,112,121,45,52,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,52,44,46,112,120,45,52,123,112,97,100,100,105,110,103,45,108,101,102,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,53,123,112,97,100,100,105,110,103,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,53,44,46,112,121,45,53,123,112,97,100,100,105,110,103,45,116,111,112,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,53,44,46,112,120,45,53,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,53,44,46,112,121,45,53,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,53,44,46,112,120,45,53,123,112,97,100,100,105,110,103,45,108,101,102,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,110,49,123,109,97,114,103,105,110,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,110,49,44,46,109,121,45,110,49,123,109,97,114,103,105,110,45,116,111,112,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,110,49,44,46,109,120,45,110,49,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,110,49,44,46,109,121,45,110,49,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,110,49,44,46,109,120,45,110,49,123,109,97,114,103,105,110,45,108,101,102,116,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,110,50,123,109,97,114,103,105,110,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,110,50,44,46,109,121,45,110,50,123,109,97,114,103,105,110,45,116,111,112,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,110,50,44,46,109,120,45,110,50,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,110,50,44,46,109,121,45,110,50,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,110,50,44,46,109,120,45,110,50,123,109,97,114,103,105,110,45,108,101,102,116,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,110,51,123,109,97,114,103,105,110,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,110,51,44,46,109,121,45,110,51,123,109,97,114,103,105,110,45,116,111,112,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,110,51,44,46,109,120,45,110,51,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,110,51,44,46,109,121,45,110,51,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,110,51,44,46,109,120,45,110,51,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,110,52,123,109,97,114,103,105,110,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,110,52,44,46,109,121,45,110,52,123,109,97,114,103,105,110,45,116,111,112,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,110,52,44,46,109,120,45,110,52,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,110,52,44,46,109,121,45,110,52,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,110,52,44,46,109,120,45,110,52,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,110,53,123,109,97,114,103,105,110,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,110,53,44,46,109,121,45,110,53,123,109,97,114,103,105,110,45,116,111,112,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,110,53,44,46,109,120,45,110,53,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,110,53,44,46,109,121,45,110,53,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,110,53,44,46,109,120,45,110,53,123,109,97,114,103,105,110,45,108,101,102,116,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,97,117,116,111,123,109,97,114,103,105,110,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,97,117,116,111,44,46,109,121,45,97,117,116,111,123,109,97,114,103,105,110,45,116,111,112,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,97,117,116,111,44,46,109,120,45,97,117,116,111,123,109,97,114,103,105,110,45,114,105,103,104,116,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,97,117,116,111,44,46,109,121,45,97,117,116,111,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,97,117,116,111,44,46,109,120,45,97,117,116,111,123,109,97,114,103,105,110,45,108,101,102,116,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,109,45,115,109,45,48,123,109,97,114,103,105,110,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,115,109,45,48,44,46,109,121,45,115,109,45,48,123,109,97,114,103,105,110,45,116,111,112,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,115,109,45,48,44,46,109,120,45,115,109,45,48,123,109,97,114,103,105,110,45,114,105,103,104,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,115,109,45,48,44,46,109,121,45,115,109,45,48,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,115,109,45,48,44,46,109,120,45,115,109,45,48,123,109,97,114,103,105,110,45,108,101,102,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,45,115,109,45,49,123,109,97,114,103,105,110,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,115,109,45,49,44,46,109,121,45,115,109,45,49,123,109,97,114,103,105,110,45,116,111,112,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,115,109,45,49,44,46,109,120,45,115,109,45,49,123,109,97,114,103,105,110,45,114,105,103,104,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,115,109,45,49,44,46,109,121,45,115,109,45,49,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,115,109,45,49,44,46,109,120,45,115,109,45,49,123,109,97,114,103,105,110,45,108,101,102,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,115,109,45,50,123,109,97,114,103,105,110,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,115,109,45,50,44,46,109,121,45,115,109,45,50,123,109,97,114,103,105,110,45,116,111,112,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,115,109,45,50,44,46,109,120,45,115,109,45,50,123,109,97,114,103,105,110,45,114,105,103,104,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,115,109,45,50,44,46,109,121,45,115,109,45,50,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,115,109,45,50,44,46,109,120,45,115,109,45,50,123,109,97,114,103,105,110,45,108,101,102,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,115,109,45,51,123,109,97,114,103,105,110,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,115,109,45,51,44,46,109,121,45,115,109,45,51,123,109,97,114,103,105,110,45,116,111,112,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,115,109,45,51,44,46,109,120,45,115,109,45,51,123,109,97,114,103,105,110,45,114,105,103,104,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,115,109,45,51,44,46,109,121,45,115,109,45,51,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,115,109,45,51,44,46,109,120,45,115,109,45,51,123,109,97,114,103,105,110,45,108,101,102,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,115,109,45,52,123,109,97,114,103,105,110,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,115,109,45,52,44,46,109,121,45,115,109,45,52,123,109,97,114,103,105,110,45,116,111,112,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,115,109,45,52,44,46,109,120,45,115,109,45,52,123,109,97,114,103,105,110,45,114,105,103,104,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,115,109,45,52,44,46,109,121,45,115,109,45,52,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,115,109,45,52,44,46,109,120,45,115,109,45,52,123,109,97,114,103,105,110,45,108,101,102,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,115,109,45,53,123,109,97,114,103,105,110,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,115,109,45,53,44,46,109,121,45,115,109,45,53,123,109,97,114,103,105,110,45,116,111,112,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,115,109,45,53,44,46,109,120,45,115,109,45,53,123,109,97,114,103,105,110,45,114,105,103,104,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,115,109,45,53,44,46,109,121,45,115,109,45,53,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,115,109,45,53,44,46,109,120,45,115,109,45,53,123,109,97,114,103,105,110,45,108,101,102,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,115,109,45,48,123,112,97,100,100,105,110,103,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,115,109,45,48,44,46,112,121,45,115,109,45,48,123,112,97,100,100,105,110,103,45,116,111,112,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,115,109,45,48,44,46,112,120,45,115,109,45,48,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,115,109,45,48,44,46,112,121,45,115,109,45,48,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,115,109,45,48,44,46,112,120,45,115,109,45,48,123,112,97,100,100,105,110,103,45,108,101,102,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,45,115,109,45,49,123,112,97,100,100,105,110,103,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,115,109,45,49,44,46,112,121,45,115,109,45,49,123,112,97,100,100,105,110,103,45,116,111,112,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,115,109,45,49,44,46,112,120,45,115,109,45,49,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,115,109,45,49,44,46,112,121,45,115,109,45,49,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,115,109,45,49,44,46,112,120,45,115,109,45,49,123,112,97,100,100,105,110,103,45,108,101,102,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,115,109,45,50,123,112,97,100,100,105,110,103,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,115,109,45,50,44,46,112,121,45,115,109,45,50,123,112,97,100,100,105,110,103,45,116,111,112,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,115,109,45,50,44,46,112,120,45,115,109,45,50,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,115,109,45,50,44,46,112,121,45,115,109,45,50,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,115,109,45,50,44,46,112,120,45,115,109,45,50,123,112,97,100,100,105,110,103,45,108,101,102,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,115,109,45,51,123,112,97,100,100,105,110,103,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,115,109,45,51,44,46,112,121,45,115,109,45,51,123,112,97,100,100,105,110,103,45,116,111,112,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,115,109,45,51,44,46,112,120,45,115,109,45,51,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,115,109,45,51,44,46,112,121,45,115,109,45,51,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,115,109,45,51,44,46,112,120,45,115,109,45,51,123,112,97,100,100,105,110,103,45,108,101,102,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,115,109,45,52,123,112,97,100,100,105,110,103,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,115,109,45,52,44,46,112,121,45,115,109,45,52,123,112,97,100,100,105,110,103,45,116,111,112,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,115,109,45,52,44,46,112,120,45,115,109,45,52,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,115,109,45,52,44,46,112,121,45,115,109,45,52,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,115,109,45,52,44,46,112,120,45,115,109,45,52,123,112,97,100,100,105,110,103,45,108,101,102,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,115,109,45,53,123,112,97,100,100,105,110,103,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,115,109,45,53,44,46,112,121,45,115,109,45,53,123,112,97,100,100,105,110,103,45,116,111,112,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,115,109,45,53,44,46,112,120,45,115,109,45,53,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,115,109,45,53,44,46,112,121,45,115,109,45,53,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,115,109,45,53,44,46,112,120,45,115,109,45,53,123,112,97,100,100,105,110,103,45,108,101,102,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,115,109,45,110,49,123,109,97,114,103,105,110,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,115,109,45,110,49,44,46,109,121,45,115,109,45,110,49,123,109,97,114,103,105,110,45,116,111,112,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,115,109,45,110,49,44,46,109,120,45,115,109,45,110,49,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,115,109,45,110,49,44,46,109,121,45,115,109,45,110,49,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,115,109,45,110,49,44,46,109,120,45,115,109,45,110,49,123,109,97,114,103,105,110,45,108,101,102,116,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,115,109,45,110,50,123,109,97,114,103,105,110,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,115,109,45,110,50,44,46,109,121,45,115,109,45,110,50,123,109,97,114,103,105,110,45,116,111,112,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,115,109,45,110,50,44,46,109,120,45,115,109,45,110,50,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,115,109,45,110,50,44,46,109,121,45,115,109,45,110,50,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,115,109,45,110,50,44,46,109,120,45,115,109,45,110,50,123,109,97,114,103,105,110,45,108,101,102,116,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,115,109,45,110,51,123,109,97,114,103,105,110,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,115,109,45,110,51,44,46,109,121,45,115,109,45,110,51,123,109,97,114,103,105,110,45,116,111,112,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,115,109,45,110,51,44,46,109,120,45,115,109,45,110,51,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,115,109,45,110,51,44,46,109,121,45,115,109,45,110,51,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,115,109,45,110,51,44,46,109,120,45,115,109,45,110,51,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,115,109,45,110,52,123,109,97,114,103,105,110,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,115,109,45,110,52,44,46,109,121,45,115,109,45,110,52,123,109,97,114,103,105,110,45,116,111,112,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,115,109,45,110,52,44,46,109,120,45,115,109,45,110,52,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,115,109,45,110,52,44,46,109,121,45,115,109,45,110,52,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,115,109,45,110,52,44,46,109,120,45,115,109,45,110,52,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,115,109,45,110,53,123,109,97,114,103,105,110,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,115,109,45,110,53,44,46,109,121,45,115,109,45,110,53,123,109,97,114,103,105,110,45,116,111,112,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,115,109,45,110,53,44,46,109,120,45,115,109,45,110,53,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,115,109,45,110,53,44,46,109,121,45,115,109,45,110,53,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,115,109,45,110,53,44,46,109,120,45,115,109,45,110,53,123,109,97,114,103,105,110,45,108,101,102,116,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,115,109,45,97,117,116,111,123,109,97,114,103,105,110,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,115,109,45,97,117,116,111,44,46,109,121,45,115,109,45,97,117,116,111,123,109,97,114,103,105,110,45,116,111,112,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,115,109,45,97,117,116,111,44,46,109,120,45,115,109,45,97,117,116,111,123,109,97,114,103,105,110,45,114,105,103,104,116,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,115,109,45,97,117,116,111,44,46,109,121,45,115,109,45,97,117,116,111,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,115,109,45,97,117,116,111,44,46,109,120,45,115,109,45,97,117,116,111,123,109,97,114,103,105,110,45,108,101,102,116,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,55,54,56,112,120,41,123,46,109,45,109,100,45,48,123,109,97,114,103,105,110,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,109,100,45,48,44,46,109,121,45,109,100,45,48,123,109,97,114,103,105,110,45,116,111,112,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,109,100,45,48,44,46,109,120,45,109,100,45,48,123,109,97,114,103,105,110,45,114,105,103,104,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,109,100,45,48,44,46,109,121,45,109,100,45,48,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,109,100,45,48,44,46,109,120,45,109,100,45,48,123,109,97,114,103,105,110,45,108,101,102,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,45,109,100,45,49,123,109,97,114,103,105,110,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,109,100,45,49,44,46,109,121,45,109,100,45,49,123,109,97,114,103,105,110,45,116,111,112,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,109,100,45,49,44,46,109,120,45,109,100,45,49,123,109,97,114,103,105,110,45,114,105,103,104,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,109,100,45,49,44,46,109,121,45,109,100,45,49,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,109,100,45,49,44,46,109,120,45,109,100,45,49,123,109,97,114,103,105,110,45,108,101,102,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,109,100,45,50,123,109,97,114,103,105,110,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,109,100,45,50,44,46,109,121,45,109,100,45,50,123,109,97,114,103,105,110,45,116,111,112,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,109,100,45,50,44,46,109,120,45,109,100,45,50,123,109,97,114,103,105,110,45,114,105,103,104,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,109,100,45,50,44,46,109,121,45,109,100,45,50,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,109,100,45,50,44,46,109,120,45,109,100,45,50,123,109,97,114,103,105,110,45,108,101,102,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,109,100,45,51,123,109,97,114,103,105,110,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,109,100,45,51,44,46,109,121,45,109,100,45,51,123,109,97,114,103,105,110,45,116,111,112,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,109,100,45,51,44,46,109,120,45,109,100,45,51,123,109,97,114,103,105,110,45,114,105,103,104,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,109,100,45,51,44,46,109,121,45,109,100,45,51,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,109,100,45,51,44,46,109,120,45,109,100,45,51,123,109,97,114,103,105,110,45,108,101,102,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,109,100,45,52,123,109,97,114,103,105,110,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,109,100,45,52,44,46,109,121,45,109,100,45,52,123,109,97,114,103,105,110,45,116,111,112,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,109,100,45,52,44,46,109,120,45,109,100,45,52,123,109,97,114,103,105,110,45,114,105,103,104,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,109,100,45,52,44,46,109,121,45,109,100,45,52,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,109,100,45,52,44,46,109,120,45,109,100,45,52,123,109,97,114,103,105,110,45,108,101,102,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,109,100,45,53,123,109,97,114,103,105,110,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,109,100,45,53,44,46,109,121,45,109,100,45,53,123,109,97,114,103,105,110,45,116,111,112,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,109,100,45,53,44,46,109,120,45,109,100,45,53,123,109,97,114,103,105,110,45,114,105,103,104,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,109,100,45,53,44,46,109,121,45,109,100,45,53,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,109,100,45,53,44,46,109,120,45,109,100,45,53,123,109,97,114,103,105,110,45,108,101,102,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,109,100,45,48,123,112,97,100,100,105,110,103,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,109,100,45,48,44,46,112,121,45,109,100,45,48,123,112,97,100,100,105,110,103,45,116,111,112,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,109,100,45,48,44,46,112,120,45,109,100,45,48,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,109,100,45,48,44,46,112,121,45,109,100,45,48,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,109,100,45,48,44,46,112,120,45,109,100,45,48,123,112,97,100,100,105,110,103,45,108,101,102,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,45,109,100,45,49,123,112,97,100,100,105,110,103,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,109,100,45,49,44,46,112,121,45,109,100,45,49,123,112,97,100,100,105,110,103,45,116,111,112,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,109,100,45,49,44,46,112,120,45,109,100,45,49,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,109,100,45,49,44,46,112,121,45,109,100,45,49,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,109,100,45,49,44,46,112,120,45,109,100,45,49,123,112,97,100,100,105,110,103,45,108,101,102,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,109,100,45,50,123,112,97,100,100,105,110,103,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,109,100,45,50,44,46,112,121,45,109,100,45,50,123,112,97,100,100,105,110,103,45,116,111,112,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,109,100,45,50,44,46,112,120,45,109,100,45,50,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,109,100,45,50,44,46,112,121,45,109,100,45,50,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,109,100,45,50,44,46,112,120,45,109,100,45,50,123,112,97,100,100,105,110,103,45,108,101,102,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,109,100,45,51,123,112,97,100,100,105,110,103,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,109,100,45,51,44,46,112,121,45,109,100,45,51,123,112,97,100,100,105,110,103,45,116,111,112,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,109,100,45,51,44,46,112,120,45,109,100,45,51,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,109,100,45,51,44,46,112,121,45,109,100,45,51,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,109,100,45,51,44,46,112,120,45,109,100,45,51,123,112,97,100,100,105,110,103,45,108,101,102,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,109,100,45,52,123,112,97,100,100,105,110,103,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,109,100,45,52,44,46,112,121,45,109,100,45,52,123,112,97,100,100,105,110,103,45,116,111,112,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,109,100,45,52,44,46,112,120,45,109,100,45,52,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,109,100,45,52,44,46,112,121,45,109,100,45,52,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,109,100,45,52,44,46,112,120,45,109,100,45,52,123,112,97,100,100,105,110,103,45,108,101,102,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,109,100,45,53,123,112,97,100,100,105,110,103,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,109,100,45,53,44,46,112,121,45,109,100,45,53,123,112,97,100,100,105,110,103,45,116,111,112,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,109,100,45,53,44,46,112,120,45,109,100,45,53,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,109,100,45,53,44,46,112,121,45,109,100,45,53,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,109,100,45,53,44,46,112,120,45,109,100,45,53,123,112,97,100,100,105,110,103,45,108,101,102,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,109,100,45,110,49,123,109,97,114,103,105,110,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,109,100,45,110,49,44,46,109,121,45,109,100,45,110,49,123,109,97,114,103,105,110,45,116,111,112,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,109,100,45,110,49,44,46,109,120,45,109,100,45,110,49,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,109,100,45,110,49,44,46,109,121,45,109,100,45,110,49,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,109,100,45,110,49,44,46,109,120,45,109,100,45,110,49,123,109,97,114,103,105,110,45,108,101,102,116,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,109,100,45,110,50,123,109,97,114,103,105,110,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,109,100,45,110,50,44,46,109,121,45,109,100,45,110,50,123,109,97,114,103,105,110,45,116,111,112,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,109,100,45,110,50,44,46,109,120,45,109,100,45,110,50,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,109,100,45,110,50,44,46,109,121,45,109,100,45,110,50,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,109,100,45,110,50,44,46,109,120,45,109,100,45,110,50,123,109,97,114,103,105,110,45,108,101,102,116,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,109,100,45,110,51,123,109,97,114,103,105,110,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,109,100,45,110,51,44,46,109,121,45,109,100,45,110,51,123,109,97,114,103,105,110,45,116,111,112,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,109,100,45,110,51,44,46,109,120,45,109,100,45,110,51,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,109,100,45,110,51,44,46,109,121,45,109,100,45,110,51,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,109,100,45,110,51,44,46,109,120,45,109,100,45,110,51,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,109,100,45,110,52,123,109,97,114,103,105,110,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,109,100,45,110,52,44,46,109,121,45,109,100,45,110,52,123,109,97,114,103,105,110,45,116,111,112,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,109,100,45,110,52,44,46,109,120,45,109,100,45,110,52,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,109,100,45,110,52,44,46,109,121,45,109,100,45,110,52,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,109,100,45,110,52,44,46,109,120,45,109,100,45,110,52,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,109,100,45,110,53,123,109,97,114,103,105,110,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,109,100,45,110,53,44,46,109,121,45,109,100,45,110,53,123,109,97,114,103,105,110,45,116,111,112,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,109,100,45,110,53,44,46,109,120,45,109,100,45,110,53,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,109,100,45,110,53,44,46,109,121,45,109,100,45,110,53,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,109,100,45,110,53,44,46,109,120,45,109,100,45,110,53,123,109,97,114,103,105,110,45,108,101,102,116,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,109,100,45,97,117,116,111,123,109,97,114,103,105,110,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,109,100,45,97,117,116,111,44,46,109,121,45,109,100,45,97,117,116,111,123,109,97,114,103,105,110,45,116,111,112,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,109,100,45,97,117,116,111,44,46,109,120,45,109,100,45,97,117,116,111,123,109,97,114,103,105,110,45,114,105,103,104,116,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,109,100,45,97,117,116,111,44,46,109,121,45,109,100,45,97,117,116,111,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,109,100,45,97,117,116,111,44,46,109,120,45,109,100,45,97,117,116,111,123,109,97,114,103,105,110,45,108,101,102,116,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,57,57,50,112,120,41,123,46,109,45,108,103,45,48,123,109,97,114,103,105,110,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,108,103,45,48,44,46,109,121,45,108,103,45,48,123,109,97,114,103,105,110,45,116,111,112,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,108,103,45,48,44,46,109,120,45,108,103,45,48,123,109,97,114,103,105,110,45,114,105,103,104,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,108,103,45,48,44,46,109,121,45,108,103,45,48,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,108,103,45,48,44,46,109,120,45,108,103,45,48,123,109,97,114,103,105,110,45,108,101,102,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,45,108,103,45,49,123,109,97,114,103,105,110,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,108,103,45,49,44,46,109,121,45,108,103,45,49,123,109,97,114,103,105,110,45,116,111,112,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,108,103,45,49,44,46,109,120,45,108,103,45,49,123,109,97,114,103,105,110,45,114,105,103,104,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,108,103,45,49,44,46,109,121,45,108,103,45,49,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,108,103,45,49,44,46,109,120,45,108,103,45,49,123,109,97,114,103,105,110,45,108,101,102,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,108,103,45,50,123,109,97,114,103,105,110,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,108,103,45,50,44,46,109,121,45,108,103,45,50,123,109,97,114,103,105,110,45,116,111,112,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,108,103,45,50,44,46,109,120,45,108,103,45,50,123,109,97,114,103,105,110,45,114,105,103,104,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,108,103,45,50,44,46,109,121,45,108,103,45,50,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,108,103,45,50,44,46,109,120,45,108,103,45,50,123,109,97,114,103,105,110,45,108,101,102,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,108,103,45,51,123,109,97,114,103,105,110,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,108,103,45,51,44,46,109,121,45,108,103,45,51,123,109,97,114,103,105,110,45,116,111,112,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,108,103,45,51,44,46,109,120,45,108,103,45,51,123,109,97,114,103,105,110,45,114,105,103,104,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,108,103,45,51,44,46,109,121,45,108,103,45,51,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,108,103,45,51,44,46,109,120,45,108,103,45,51,123,109,97,114,103,105,110,45,108,101,102,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,108,103,45,52,123,109,97,114,103,105,110,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,108,103,45,52,44,46,109,121,45,108,103,45,52,123,109,97,114,103,105,110,45,116,111,112,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,108,103,45,52,44,46,109,120,45,108,103,45,52,123,109,97,114,103,105,110,45,114,105,103,104,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,108,103,45,52,44,46,109,121,45,108,103,45,52,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,108,103,45,52,44,46,109,120,45,108,103,45,52,123,109,97,114,103,105,110,45,108,101,102,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,108,103,45,53,123,109,97,114,103,105,110,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,108,103,45,53,44,46,109,121,45,108,103,45,53,123,109,97,114,103,105,110,45,116,111,112,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,108,103,45,53,44,46,109,120,45,108,103,45,53,123,109,97,114,103,105,110,45,114,105,103,104,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,108,103,45,53,44,46,109,121,45,108,103,45,53,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,108,103,45,53,44,46,109,120,45,108,103,45,53,123,109,97,114,103,105,110,45,108,101,102,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,108,103,45,48,123,112,97,100,100,105,110,103,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,108,103,45,48,44,46,112,121,45,108,103,45,48,123,112,97,100,100,105,110,103,45,116,111,112,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,108,103,45,48,44,46,112,120,45,108,103,45,48,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,108,103,45,48,44,46,112,121,45,108,103,45,48,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,108,103,45,48,44,46,112,120,45,108,103,45,48,123,112,97,100,100,105,110,103,45,108,101,102,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,45,108,103,45,49,123,112,97,100,100,105,110,103,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,108,103,45,49,44,46,112,121,45,108,103,45,49,123,112,97,100,100,105,110,103,45,116,111,112,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,108,103,45,49,44,46,112,120,45,108,103,45,49,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,108,103,45,49,44,46,112,121,45,108,103,45,49,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,108,103,45,49,44,46,112,120,45,108,103,45,49,123,112,97,100,100,105,110,103,45,108,101,102,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,108,103,45,50,123,112,97,100,100,105,110,103,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,108,103,45,50,44,46,112,121,45,108,103,45,50,123,112,97,100,100,105,110,103,45,116,111,112,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,108,103,45,50,44,46,112,120,45,108,103,45,50,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,108,103,45,50,44,46,112,121,45,108,103,45,50,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,108,103,45,50,44,46,112,120,45,108,103,45,50,123,112,97,100,100,105,110,103,45,108,101,102,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,108,103,45,51,123,112,97,100,100,105,110,103,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,108,103,45,51,44,46,112,121,45,108,103,45,51,123,112,97,100,100,105,110,103,45,116,111,112,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,108,103,45,51,44,46,112,120,45,108,103,45,51,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,108,103,45,51,44,46,112,121,45,108,103,45,51,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,108,103,45,51,44,46,112,120,45,108,103,45,51,123,112,97,100,100,105,110,103,45,108,101,102,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,108,103,45,52,123,112,97,100,100,105,110,103,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,108,103,45,52,44,46,112,121,45,108,103,45,52,123,112,97,100,100,105,110,103,45,116,111,112,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,108,103,45,52,44,46,112,120,45,108,103,45,52,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,108,103,45,52,44,46,112,121,45,108,103,45,52,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,108,103,45,52,44,46,112,120,45,108,103,45,52,123,112,97,100,100,105,110,103,45,108,101,102,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,108,103,45,53,123,112,97,100,100,105,110,103,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,108,103,45,53,44,46,112,121,45,108,103,45,53,123,112,97,100,100,105,110,103,45,116,111,112,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,108,103,45,53,44,46,112,120,45,108,103,45,53,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,108,103,45,53,44,46,112,121,45,108,103,45,53,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,108,103,45,53,44,46,112,120,45,108,103,45,53,123,112,97,100,100,105,110,103,45,108,101,102,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,108,103,45,110,49,123,109,97,114,103,105,110,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,108,103,45,110,49,44,46,109,121,45,108,103,45,110,49,123,109,97,114,103,105,110,45,116,111,112,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,108,103,45,110,49,44,46,109,120,45,108,103,45,110,49,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,108,103,45,110,49,44,46,109,121,45,108,103,45,110,49,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,108,103,45,110,49,44,46,109,120,45,108,103,45,110,49,123,109,97,114,103,105,110,45,108,101,102,116,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,108,103,45,110,50,123,109,97,114,103,105,110,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,108,103,45,110,50,44,46,109,121,45,108,103,45,110,50,123,109,97,114,103,105,110,45,116,111,112,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,108,103,45,110,50,44,46,109,120,45,108,103,45,110,50,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,108,103,45,110,50,44,46,109,121,45,108,103,45,110,50,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,108,103,45,110,50,44,46,109,120,45,108,103,45,110,50,123,109,97,114,103,105,110,45,108,101,102,116,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,108,103,45,110,51,123,109,97,114,103,105,110,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,108,103,45,110,51,44,46,109,121,45,108,103,45,110,51,123,109,97,114,103,105,110,45,116,111,112,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,108,103,45,110,51,44,46,109,120,45,108,103,45,110,51,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,108,103,45,110,51,44,46,109,121,45,108,103,45,110,51,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,108,103,45,110,51,44,46,109,120,45,108,103,45,110,51,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,108,103,45,110,52,123,109,97,114,103,105,110,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,108,103,45,110,52,44,46,109,121,45,108,103,45,110,52,123,109,97,114,103,105,110,45,116,111,112,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,108,103,45,110,52,44,46,109,120,45,108,103,45,110,52,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,108,103,45,110,52,44,46,109,121,45,108,103,45,110,52,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,108,103,45,110,52,44,46,109,120,45,108,103,45,110,52,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,108,103,45,110,53,123,109,97,114,103,105,110,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,108,103,45,110,53,44,46,109,121,45,108,103,45,110,53,123,109,97,114,103,105,110,45,116,111,112,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,108,103,45,110,53,44,46,109,120,45,108,103,45,110,53,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,108,103,45,110,53,44,46,109,121,45,108,103,45,110,53,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,108,103,45,110,53,44,46,109,120,45,108,103,45,110,53,123,109,97,114,103,105,110,45,108,101,102,116,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,108,103,45,97,117,116,111,123,109,97,114,103,105,110,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,108,103,45,97,117,116,111,44,46,109,121,45,108,103,45,97,117,116,111,123,109,97,114,103,105,110,45,116,111,112,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,108,103,45,97,117,116,111,44,46,109,120,45,108,103,45,97,117,116,111,123,109,97,114,103,105,110,45,114,105,103,104,116,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,108,103,45,97,117,116,111,44,46,109,121,45,108,103,45,97,117,116,111,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,108,103,45,97,117,116,111,44,46,109,120,45,108,103,45,97,117,116,111,123,109,97,114,103,105,110,45,108,101,102,116,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,49,50,48,48,112,120,41,123,46,109,45,120,108,45,48,123,109,97,114,103,105,110,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,120,108,45,48,44,46,109,121,45,120,108,45,48,123,109,97,114,103,105,110,45,116,111,112,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,120,108,45,48,44,46,109,120,45,120,108,45,48,123,109,97,114,103,105,110,45,114,105,103,104,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,120,108,45,48,44,46,109,121,45,120,108,45,48,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,120,108,45,48,44,46,109,120,45,120,108,45,48,123,109,97,114,103,105,110,45,108,101,102,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,45,120,108,45,49,123,109,97,114,103,105,110,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,120,108,45,49,44,46,109,121,45,120,108,45,49,123,109,97,114,103,105,110,45,116,111,112,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,120,108,45,49,44,46,109,120,45,120,108,45,49,123,109,97,114,103,105,110,45,114,105,103,104,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,120,108,45,49,44,46,109,121,45,120,108,45,49,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,120,108,45,49,44,46,109,120,45,120,108,45,49,123,109,97,114,103,105,110,45,108,101,102,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,120,108,45,50,123,109,97,114,103,105,110,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,120,108,45,50,44,46,109,121,45,120,108,45,50,123,109,97,114,103,105,110,45,116,111,112,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,120,108,45,50,44,46,109,120,45,120,108,45,50,123,109,97,114,103,105,110,45,114,105,103,104,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,120,108,45,50,44,46,109,121,45,120,108,45,50,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,120,108,45,50,44,46,109,120,45,120,108,45,50,123,109,97,114,103,105,110,45,108,101,102,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,120,108,45,51,123,109,97,114,103,105,110,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,120,108,45,51,44,46,109,121,45,120,108,45,51,123,109,97,114,103,105,110,45,116,111,112,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,120,108,45,51,44,46,109,120,45,120,108,45,51,123,109,97,114,103,105,110,45,114,105,103,104,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,120,108,45,51,44,46,109,121,45,120,108,45,51,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,120,108,45,51,44,46,109,120,45,120,108,45,51,123,109,97,114,103,105,110,45,108,101,102,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,120,108,45,52,123,109,97,114,103,105,110,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,120,108,45,52,44,46,109,121,45,120,108,45,52,123,109,97,114,103,105,110,45,116,111,112,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,120,108,45,52,44,46,109,120,45,120,108,45,52,123,109,97,114,103,105,110,45,114,105,103,104,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,120,108,45,52,44,46,109,121,45,120,108,45,52,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,120,108,45,52,44,46,109,120,45,120,108,45,52,123,109,97,114,103,105,110,45,108,101,102,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,120,108,45,53,123,109,97,114,103,105,110,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,120,108,45,53,44,46,109,121,45,120,108,45,53,123,109,97,114,103,105,110,45,116,111,112,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,120,108,45,53,44,46,109,120,45,120,108,45,53,123,109,97,114,103,105,110,45,114,105,103,104,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,120,108,45,53,44,46,109,121,45,120,108,45,53,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,120,108,45,53,44,46,109,120,45,120,108,45,53,123,109,97,114,103,105,110,45,108,101,102,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,120,108,45,48,123,112,97,100,100,105,110,103,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,120,108,45,48,44,46,112,121,45,120,108,45,48,123,112,97,100,100,105,110,103,45,116,111,112,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,120,108,45,48,44,46,112,120,45,120,108,45,48,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,120,108,45,48,44,46,112,121,45,120,108,45,48,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,120,108,45,48,44,46,112,120,45,120,108,45,48,123,112,97,100,100,105,110,103,45,108,101,102,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,45,120,108,45,49,123,112,97,100,100,105,110,103,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,120,108,45,49,44,46,112,121,45,120,108,45,49,123,112,97,100,100,105,110,103,45,116,111,112,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,120,108,45,49,44,46,112,120,45,120,108,45,49,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,120,108,45,49,44,46,112,121,45,120,108,45,49,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,120,108,45,49,44,46,112,120,45,120,108,45,49,123,112,97,100,100,105,110,103,45,108,101,102,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,120,108,45,50,123,112,97,100,100,105,110,103,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,120,108,45,50,44,46,112,121,45,120,108,45,50,123,112,97,100,100,105,110,103,45,116,111,112,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,120,108,45,50,44,46,112,120,45,120,108,45,50,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,120,108,45,50,44,46,112,121,45,120,108,45,50,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,120,108,45,50,44,46,112,120,45,120,108,45,50,123,112,97,100,100,105,110,103,45,108,101,102,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,120,108,45,51,123,112,97,100,100,105,110,103,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,120,108,45,51,44,46,112,121,45,120,108,45,51,123,112,97,100,100,105,110,103,45,116,111,112,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,120,108,45,51,44,46,112,120,45,120,108,45,51,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,120,108,45,51,44,46,112,121,45,120,108,45,51,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,120,108,45,51,44,46,112,120,45,120,108,45,51,123,112,97,100,100,105,110,103,45,108,101,102,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,120,108,45,52,123,112,97,100,100,105,110,103,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,120,108,45,52,44,46,112,121,45,120,108,45,52,123,112,97,100,100,105,110,103,45,116,111,112,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,120,108,45,52,44,46,112,120,45,120,108,45,52,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,120,108,45,52,44,46,112,121,45,120,108,45,52,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,120,108,45,52,44,46,112,120,45,120,108,45,52,123,112,97,100,100,105,110,103,45,108,101,102,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,120,108,45,53,123,112,97,100,100,105,110,103,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,120,108,45,53,44,46,112,121,45,120,108,45,53,123,112,97,100,100,105,110,103,45,116,111,112,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,120,108,45,53,44,46,112,120,45,120,108,45,53,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,120,108,45,53,44,46,112,121,45,120,108,45,53,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,120,108,45,53,44,46,112,120,45,120,108,45,53,123,112,97,100,100,105,110,103,45,108,101,102,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,120,108,45,110,49,123,109,97,114,103,105,110,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,120,108,45,110,49,44,46,109,121,45,120,108,45,110,49,123,109,97,114,103,105,110,45,116,111,112,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,120,108,45,110,49,44,46,109,120,45,120,108,45,110,49,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,120,108,45,110,49,44,46,109,121,45,120,108,45,110,49,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,120,108,45,110,49,44,46,109,120,45,120,108,45,110,49,123,109,97,114,103,105,110,45,108,101,102,116,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,120,108,45,110,50,123,109,97,114,103,105,110,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,120,108,45,110,50,44,46,109,121,45,120,108,45,110,50,123,109,97,114,103,105,110,45,116,111,112,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,120,108,45,110,50,44,46,109,120,45,120,108,45,110,50,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,120,108,45,110,50,44,46,109,121,45,120,108,45,110,50,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,120,108,45,110,50,44,46,109,120,45,120,108,45,110,50,123,109,97,114,103,105,110,45,108,101,102,116,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,120,108,45,110,51,123,109,97,114,103,105,110,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,120,108,45,110,51,44,46,109,121,45,120,108,45,110,51,123,109,97,114,103,105,110,45,116,111,112,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,120,108,45,110,51,44,46,109,120,45,120,108,45,110,51,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,120,108,45,110,51,44,46,109,121,45,120,108,45,110,51,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,120,108,45,110,51,44,46,109,120,45,120,108,45,110,51,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,120,108,45,110,52,123,109,97,114,103,105,110,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,120,108,45,110,52,44,46,109,121,45,120,108,45,110,52,123,109,97,114,103,105,110,45,116,111,112,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,120,108,45,110,52,44,46,109,120,45,120,108,45,110,52,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,120,108,45,110,52,44,46,109,121,45,120,108,45,110,52,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,120,108,45,110,52,44,46,109,120,45,120,108,45,110,52,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,120,108,45,110,53,123,109,97,114,103,105,110,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,120,108,45,110,53,44,46,109,121,45,120,108,45,110,53,123,109,97,114,103,105,110,45,116,111,112,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,120,108,45,110,53,44,46,109,120,45,120,108,45,110,53,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,120,108,45,110,53,44,46,109,121,45,120,108,45,110,53,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,120,108,45,110,53,44,46,109,120,45,120,108,45,110,53,123,109,97,114,103,105,110,45,108,101,102,116,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,120,108,45,97,117,116,111,123,109,97,114,103,105,110,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,120,108,45,97,117,116,111,44,46,109,121,45,120,108,45,97,117,116,111,123,109,97,114,103,105,110,45,116,111,112,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,120,108,45,97,117,116,111,44,46,109,120,45,120,108,45,97,117,116,111,123,109,97,114,103,105,110,45,114,105,103,104,116,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,120,108,45,97,117,116,111,44,46,109,121,45,120,108,45,97,117,116,111,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,120,108,45,97,117,116,111,44,46,109,120,45,120,108,45,97,117,116,111,123,109,97,114,103,105,110,45,108,101,102,116,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,125,46,116,101,120,116,45,109,111,110,111,115,112,97,99,101,123,102,111,110,116,45,102,97,109,105,108,121,58,83,70,77,111,110,111,45,82,101,103,117,108,97,114,44,77,101,110,108,111,44,77,111,110,97,99,111,44,67,111,110,115,111,108,97,115,44,34,76,105,98,101,114,97,116,105,111,110,32,77,111,110,111,34,44,34,67,111,117,114,105,101,114,32,78,101,119,34,44,109,111,110,111,115,112,97,99,101,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,106,117,115,116,105,102,121,123,116,101,120,116,45,97,108,105,103,110,58,106,117,115,116,105,102,121,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,119,114,97,112,123,119,104,105,116,101,45,115,112,97,99,101,58,110,111,114,109,97,108,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,110,111,119,114,97,112,123,119,104,105,116,101,45,115,112,97,99,101,58,110,111,119,114,97,112,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,116,114,117,110,99,97,116,101,123,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,59,116,101,120,116,45,111,118,101,114,102,108,111,119,58,101,108,108,105,112,115,105,115,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,119,114,97,112,125,46,116,101,120,116,45,108,101,102,116,123,116,101,120,116,45,97,108,105,103,110,58,108,101,102,116,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,114,105,103,104,116,123,116,101,120,116,45,97,108,105,103,110,58,114,105,103,104,116,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,99,101,110,116,101,114,123,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,116,101,120,116,45,115,109,45,108,101,102,116,123,116,101,120,116,45,97,108,105,103,110,58,108,101,102,116,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,115,109,45,114,105,103,104,116,123,116,101,120,116,45,97,108,105,103,110,58,114,105,103,104,116,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,115,109,45,99,101,110,116,101,114,123,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,55,54,56,112,120,41,123,46,116,101,120,116,45,109,100,45,108,101,102,116,123,116,101,120,116,45,97,108,105,103,110,58,108,101,102,116,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,109,100,45,114,105,103,104,116,123,116,101,120,116,45,97,108,105,103,110,58,114,105,103,104,116,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,109,100,45,99,101,110,116,101,114,123,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,57,57,50,112,120,41,123,46,116,101,120,116,45,108,103,45,108,101,102,116,123,116,101,120,116,45,97,108,105,103,110,58,108,101,102,116,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,108,103,45,114,105,103,104,116,123,116,101,120,116,45,97,108,105,103,110,58,114,105,103,104,116,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,108,103,45,99,101,110,116,101,114,123,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,49,50,48,48,112,120,41,123,46,116,101,120,116,45,120,108,45,108,101,102,116,123,116,101,120,116,45,97,108,105,103,110,58,108,101,102,116,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,120,108,45,114,105,103,104,116,123,116,101,120,116,45,97,108,105,103,110,58,114,105,103,104,116,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,120,108,45,99,101,110,116,101,114,123,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,125,46,116,101,120,116,45,108,111,119,101,114,99,97,115,101,123,116,101,120,116,45,116,114,97,110,115,102,111,114,109,58,108,111,119,101,114,99,97,115,101,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,117,112,112,101,114,99,97,115,101,123,116,101,120,116,45,116,114,97,110,115,102,111,114,109,58,117,112,112,101,114,99,97,115,101,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,99,97,112,105,116,97,108,105,122,101,123,116,101,120,116,45,116,114,97,110,115,102,111,114,109,58,99,97,112,105,116,97,108,105,122,101,33,105,109,112,111,114,116,97,110,116,125,46,102,111,110,116,45,119,101,105,103,104,116,45,108,105,103,104,116,123,102,111,110,116,45,119,101,105,103,104,116,58,51,48,48,33,105,109,112,111,114,116,97,110,116,125,46,102,111,110,116,45,119,101,105,103,104,116,45,108,105,103,104,116,101,114,123,102,111,110,116,45,119,101,105,103,104,116,58,108,105,103,104,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,102,111,110,116,45,119,101,105,103,104,116,45,110,111,114,109,97,108,123,102,111,110,116,45,119,101,105,103,104,116,58,52,48,48,33,105,109,112,111,114,116,97,110,116,125,46,102,111,110,116,45,119,101,105,103,104,116,45,98,111,108,100,123,102,111,110,116,45,119,101,105,103,104,116,58,55,48,48,33,105,109,112,111,114,116,97,110,116,125,46,102,111,110,116,45,119,101,105,103,104,116,45,98,111,108,100,101,114,123,102,111,110,116,45,119,101,105,103,104,116,58,98,111,108,100,101,114,33,105,109,112,111,114,116,97,110,116,125,46,102,111,110,116,45,105,116,97,108,105,99,123,102,111,110,116,45,115,116,121,108,101,58,105,116,97,108,105,99,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,119,104,105,116,101,123,99,111,108,111,114,58,35,102,102,102,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,112,114,105,109,97,114,121,123,99,111,108,111,114,58,35,48,48,55,98,102,102,33,105,109,112,111,114,116,97,110,116,125,97,46,116,101,120,116,45,112,114,105,109,97,114,121,58,102,111,99,117,115,44,97,46,116,101,120,116,45,112,114,105,109,97,114,121,58,104,111,118,101,114,123,99,111,108,111,114,58,35,48,48,53,54,98,51,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,115,101,99,111,110,100,97,114,121,123,99,111,108,111,114,58,35,54,99,55,53,55,100,33,105,109,112,111,114,116,97,110,116,125,97,46,116,101,120,116,45,115,101,99,111,110,100,97,114,121,58,102,111,99,117,115,44,97,46,116,101,120,116,45,115,101,99,111,110,100,97,114,121,58,104,111,118,101,114,123,99,111,108,111,114,58,35,52,57,52,102,53,52,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,115,117,99,99,101,115,115,123,99,111,108,111,114,58,35,50,56,97,55,52,53,33,105,109,112,111,114,116,97,110,116,125,97,46,116,101,120,116,45,115,117,99,99,101,115,115,58,102,111,99,117,115,44,97,46,116,101,120,116,45,115,117,99,99,101,115,115,58,104,111,118,101,114,123,99,111,108,111,114,58,35,49,57,54,57,50,99,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,105,110,102,111,123,99,111,108,111,114,58,35,49,55,97,50,98,56,33,105,109,112,111,114,116,97,110,116,125,97,46,116,101,120,116,45,105,110,102,111,58,102,111,99,117,115,44,97,46,116,101,120,116,45,105,110,102,111,58,104,111,118,101,114,123,99,111,108,111,114,58,35,48,102,54,54,55,52,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,119,97,114,110,105,110,103,123,99,111,108,111,114,58,35,102,102,99,49,48,55,33,105,109,112,111,114,116,97,110,116,125,97,46,116,101,120,116,45,119,97,114,110,105,110,103,58,102,111,99,117,115,44,97,46,116,101,120,116,45,119,97,114,110,105,110,103,58,104,111,118,101,114,123,99,111,108,111,114,58,35,98,97,56,98,48,48,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,100,97,110,103,101,114,123,99,111,108,111,114,58,35,100,99,51,53,52,53,33,105,109,112,111,114,116,97,110,116,125,97,46,116,101,120,116,45,100,97,110,103,101,114,58,102,111,99,117,115,44,97,46,116,101,120,116,45,100,97,110,103,101,114,58,104,111,118,101,114,123,99,111,108,111,114,58,35,97,55,49,100,50,97,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,108,105,103,104,116,123,99,111,108,111,114,58,35,102,56,102,57,102,97,33,105,109,112,111,114,116,97,110,116,125,97,46,116,101,120,116,45,108,105,103,104,116,58,102,111,99,117,115,44,97,46,116,101,120,116,45,108,105,103,104,116,58,104,111,118,101,114,123,99,111,108,111,114,58,35,99,98,100,51,100,97,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,100,97,114,107,123,99,111,108,111,114,58,35,51,52,51,97,52,48,33,105,109,112,111,114,116,97,110,116,125,97,46,116,101,120,116,45,100,97,114,107,58,102,111,99,117,115,44,97,46,116,101,120,116,45,100,97,114,107,58,104,111,118,101,114,123,99,111,108,111,114,58,35,49,50,49,52,49,54,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,98,111,100,121,123,99,111,108,111,114,58,35,50,49,50,53,50,57,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,109,117,116,101,100,123,99,111,108,111,114,58,35,54,99,55,53,55,100,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,98,108,97,99,107,45,53,48,123,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,53,41,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,119,104,105,116,101,45,53,48,123,99,111,108,111,114,58,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,46,53,41,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,104,105,100,101,123,102,111,110,116,58,48,47,48,32,97,59,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,116,101,120,116,45,115,104,97,100,111,119,58,110,111,110,101,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,58,48,125,46,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,45,110,111,110,101,123,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,98,114,101,97,107,123,119,111,114,100,45,98,114,101,97,107,58,98,114,101,97,107,45,119,111,114,100,33,105,109,112,111,114,116,97,110,116,59,111,118,101,114,102,108,111,119,45,119,114,97,112,58,98,114,101,97,107,45,119,111,114,100,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,114,101,115,101,116,123,99,111,108,111,114,58,105,110,104,101,114,105,116,33,105,109,112,111,114,116,97,110,116,125,46,118,105,115,105,98,108,101,123,118,105,115,105,98,105,108,105,116,121,58,118,105,115,105,98,108,101,33,105,109,112,111,114,116,97,110,116,125,46,105,110,118,105,115,105,98,108,101,123,118,105,115,105,98,105,108,105,116,121,58,104,105,100,100,101,110,33,105,109,112,111,114,116,97,110,116,125,64,109,101,100,105,97,32,112,114,105,110,116,123,42,44,58,58,97,102,116,101,114,44,58,58,98,101,102,111,114,101,123,116,101,120,116,45,115,104,97,100,111,119,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,59,98,111,120,45,115,104,97,100,111,119,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,97,58,110,111,116,40,46,98,116,110,41,123,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,117,110,100,101,114,108,105,110,101,125,97,98,98,114,91,116,105,116,108,101,93,58,58,97,102,116,101,114,123,99,111,110,116,101,110,116,58,34,32,40,34,32,97,116,116,114,40,116,105,116,108,101,41,32,34,41,34,125,112,114,101,123,119,104,105,116,101,45,115,112,97,99,101,58,112,114,101,45,119,114,97,112,33,105,109,112,111,114,116,97,110,116,125,98,108,111,99,107,113,117,111,116,101,44,112,114,101,123,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,97,100,98,53,98,100,59,112,97,103,101,45,98,114,101,97,107,45,105,110,115,105,100,101,58,97,118,111,105,100,125,116,104,101,97,100,123,100,105,115,112,108,97,121,58,116,97,98,108,101,45,104,101,97,100,101,114,45,103,114,111,117,112,125,105,109,103,44,116,114,123,112,97,103,101,45,98,114,101,97,107,45,105,110,115,105,100,101,58,97,118,111,105,100,125,104,50,44,104,51,44,112,123,111,114,112,104,97,110,115,58,51,59,119,105,100,111,119,115,58,51,125,104,50,44,104,51,123,112,97,103,101,45,98,114,101,97,107,45,97,102,116,101,114,58,97,118,111,105,100,125,64,112,97,103,101,123,115,105,122,101,58,97,51,125,98,111,100,121,123,109,105,110,45,119,105,100,116,104,58,57,57,50,112,120,33,105,109,112,111,114,116,97,110,116,125,46,99,111,110,116,97,105,110,101,114,123,109,105,110,45,119,105,100,116,104,58,57,57,50,112,120,33,105,109,112,111,114,116,97,110,116,125,46,110,97,118,98,97,114,123,100,105,115,112,108,97,121,58,110,111,110,101,125,46,98,97,100,103,101,123,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,48,48,48,125,46,116,97,98,108,101,123,98,111,114,100,101,114,45,99,111,108,108,97,112,115,101,58,99,111,108,108,97,112,115,101,33,105,109,112,111,114,116,97,110,116,125,46,116,97,98,108,101,32,116,100,44,46,116,97,98,108,101,32,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,33,105,109,112,111,114,116,97,110,116,125,46,116,97,98,108,101,45,98,111,114,100,101,114,101,100,32,116,100,44,46,116,97,98,108,101,45,98,111,114,100,101,114,101,100,32,116,104,123,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,33,105,109,112,111,114,116,97,110,116,125,46,116,97,98,108,101,45,100,97,114,107,123,99,111,108,111,114,58,105,110,104,101,114,105,116,125,46,116,97,98,108,101,45,100,97,114,107,32,116,98,111,100,121,43,116,98,111,100,121,44,46,116,97,98,108,101,45,100,97,114,107,32,116,100,44,46,116,97,98,108,101,45,100,97,114,107,32,116,104,44,46,116,97,98,108,101,45,100,97,114,107,32,116,104,101,97,100,32,116,104,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,101,101,50,101,54,125,46,116,97,98,108,101,32,46,116,104,101,97,100,45,100,97,114,107,32,116,104,123,99,111,108,111,114,58,105,110,104,101,114,105,116,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,101,101,50,101,54,125,125,10,46,98,114,105,99,107,108,97,121,101,114,123,100,105,115,112,108,97,121,58,45,119,101,98,107,105,116,45,98,111,120,59,100,105,115,112,108,97,121,58,45,119,101,98,107,105,116,45,102,108,101,120,59,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,119,101,98,107,105,116,45,98,111,120,45,97,108,105,103,110,58,115,116,97,114,116,59,45,119,101,98,107,105,116,45,97,108,105,103,110,45,105,116,101,109,115,58,102,108,101,120,45,115,116,97,114,116,59,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,115,116,97,114,116,59,97,108,105,103,110,45,105,116,101,109,115,58,102,108,101,120,45,115,116,97,114,116,59,45,119,101,98,107,105,116,45,98,111,120,45,112,97,99,107,58,99,101,110,116,101,114,59,45,119,101,98,107,105,116,45,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,59,45,109,115,45,102,108,101,120,45,112,97,99,107,58,99,101,110,116,101,114,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,59,45,119,101,98,107,105,116,45,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,45,109,115,45,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,125,46,98,114,105,99,107,108,97,121,101,114,45,99,111,108,117,109,110,45,115,105,122,101,114,123,119,105,100,116,104,58,49,48,48,37,59,100,105,115,112,108,97,121,58,110,111,110,101,125,64,109,101,100,105,97,32,115,99,114,101,101,110,32,97,110,100,32,40,109,105,110,45,119,105,100,116,104,58,54,52,48,112,120,41,123,46,98,114,105,99,107,108,97,121,101,114,45,99,111,108,117,109,110,45,115,105,122,101,114,123,119,105,100,116,104,58,53,48,37,125,125,64,109,101,100,105,97,32,115,99,114,101,101,110,32,97,110,100,32,40,109,105,110,45,119,105,100,116,104,58,57,56,48,112,120,41,123,46,98,114,105,99,107,108,97,121,101,114,45,99,111,108,117,109,110,45,115,105,122,101,114,123,119,105,100,116,104,58,51,51,46,51,51,51,37,125,125,64,109,101,100,105,97,32,115,99,114,101,101,110,32,97,110,100,32,40,109,105,110,45,119,105,100,116,104,58,49,50,48,48,112,120,41,123,46,98,114,105,99,107,108,97,121,101,114,45,99,111,108,117,109,110,45,115,105,122,101,114,123,119,105,100,116,104,58,50,53,37,125,125,46,98,114,105,99,107,108,97,121,101,114,45,99,111,108,117,109,110,123,45,119,101,98,107,105,116,45,98,111,120,45,102,108,101,120,58,49,59,45,119,101,98,107,105,116,45,102,108,101,120,58,49,59,45,109,115,45,102,108,101,120,58,49,59,102,108,101,120,58,49,59,112,97,100,100,105,110,103,45,108,101,102,116,58,53,112,120,59,112,97,100,100,105,110,103,45,114,105,103,104,116,58,53,112,120,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,98,116,110,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,50,53,53,44,32,50,53,53,44,32,50,53,53,44,32,48,46,52,41,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,114,103,98,97,40,48,44,32,48,44,32,48,44,32,48,46,50,41,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,51,112,120,59,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,104,101,105,103,104,116,58,50,48,112,120,59,45,119,101,98,107,105,116,45,116,114,97,110,115,105,116,105,111,110,58,97,108,108,32,49,53,48,109,115,32,108,105,110,101,97,114,59,116,114,97,110,115,105,116,105,111,110,58,97,108,108,32,49,53,48,109,115,32,108,105,110,101,97,114,59,119,105,100,116,104,58,50,48,112,120,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,98,116,110,58,104,111,118,101,114,123,45,119,101,98,107,105,116,45,98,111,120,45,115,104,97,100,111,119,58,48,32,50,112,120,32,51,112,120,32,114,103,98,97,40,48,44,32,48,44,32,48,44,32,48,46,49,41,59,98,111,120,45,115,104,97,100,111,119,58,48,32,50,112,120,32,51,112,120,32,114,103,98,97,40,48,44,32,48,44,32,48,44,32,48,46,49,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,98,116,110,32,43,32,46,98,116,110,123,109,97,114,103,105,110,45,108,101,102,116,58,53,112,120,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,98,116,110,46,105,99,111,110,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,98,116,110,46,105,99,111,110,58,58,98,101,102,111,114,101,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,104,101,105,103,104,116,58,49,52,112,120,59,108,101,102,116,58,53,48,37,59,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,53,48,37,59,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,40,45,53,48,37,44,32,45,53,48,37,41,59,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,40,45,53,48,37,44,32,45,53,48,37,41,59,119,105,100,116,104,58,49,52,112,120,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,98,116,110,45,103,114,111,117,112,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,104,101,105,103,104,116,58,50,53,112,120,59,108,105,110,101,45,104,101,105,103,104,116,58,50,53,112,120,125,46,105,116,114,101,101,45,109,101,110,117,123,98,97,99,107,103,114,111,117,110,100,58,35,100,100,100,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,99,52,99,52,99,52,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,51,112,120,59,102,111,110,116,45,102,97,109,105,108,121,58,115,97,110,115,45,115,101,114,105,102,59,108,105,115,116,45,115,116,121,108,101,58,110,111,110,101,59,109,97,114,103,105,110,58,48,59,109,105,110,45,119,105,100,116,104,58,49,53,48,112,120,59,112,97,100,100,105,110,103,58,48,59,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,122,45,105,110,100,101,120,58,49,48,125,46,105,116,114,101,101,45,109,101,110,117,32,97,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,112,97,100,100,105,110,103,58,51,112,120,32,56,112,120,125,46,105,116,114,101,101,45,109,101,110,117,32,97,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,58,114,103,98,97,40,50,49,56,44,32,50,53,48,44,32,50,53,53,44,32,48,46,53,41,59,99,111,108,111,114,58,114,103,98,97,40,49,54,52,44,32,50,51,52,44,32,50,52,53,44,32,48,46,53,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,123,45,119,101,98,107,105,116,45,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,59,45,109,111,122,45,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,59,45,109,115,45,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,59,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,125,46,105,110,115,112,105,114,101,45,116,114,101,101,58,102,111,99,117,115,123,111,117,116,108,105,110,101,58,110,111,110,101,125,46,105,110,115,112,105,114,101,45,116,114,101,101,44,46,105,110,115,112,105,114,101,45,116,114,101,101,32,42,123,45,119,101,98,107,105,116,45,98,111,120,45,115,105,122,105,110,103,58,98,111,114,100,101,114,45,98,111,120,59,98,111,120,45,115,105,122,105,110,103,58,98,111,114,100,101,114,45,98,111,120,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,111,108,123,108,105,115,116,45,115,116,121,108,101,58,110,111,110,101,59,109,97,114,103,105,110,58,48,59,112,97,100,100,105,110,103,58,48,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,111,108,32,111,108,123,112,97,100,100,105,110,103,45,108,101,102,116,58,50,48,112,120,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,99,111,108,108,97,112,115,101,100,32,62,32,111,108,44,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,104,105,100,100,101,110,123,100,105,115,112,108,97,121,58,110,111,110,101,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,108,105,32,62,32,46,116,105,116,108,101,45,119,114,97,112,123,109,105,110,45,104,101,105,103,104,116,58,50,53,112,120,59,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,122,45,105,110,100,101,120,58,50,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,116,111,103,103,108,101,123,104,101,105,103,104,116,58,50,53,112,120,59,108,101,102,116,58,48,59,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,48,59,119,105,100,116,104,58,50,53,112,120,59,122,45,105,110,100,101,120,58,50,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,116,111,103,103,108,101,58,58,98,101,102,111,114,101,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,108,101,102,116,58,53,48,37,59,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,53,48,37,59,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,40,45,53,48,37,44,32,45,53,48,37,41,59,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,40,45,53,48,37,44,32,45,53,48,37,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,91,116,121,112,101,61,34,99,104,101,99,107,98,111,120,34,93,123,108,101,102,116,58,50,50,112,120,59,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,55,112,120,59,119,105,100,116,104,58,50,48,112,120,59,122,45,105,110,100,101,120,58,50,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,116,105,116,108,101,123,99,117,114,115,111,114,58,100,101,102,97,117,108,116,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,104,101,105,103,104,116,58,50,53,112,120,59,108,105,110,101,45,104,101,105,103,104,116,58,50,53,112,120,59,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,59,112,97,100,100,105,110,103,45,108,101,102,116,58,52,50,112,120,59,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,116,101,120,116,45,111,118,101,114,102,108,111,119,58,101,108,108,105,112,115,105,115,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,109,105,100,100,108,101,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,119,114,97,112,59,122,45,105,110,100,101,120,58,49,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,116,105,116,108,101,46,108,111,97,100,45,109,111,114,101,123,99,111,108,111,114,58,35,52,55,54,99,98,56,59,99,117,114,115,111,114,58,112,111,105,110,116,101,114,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,116,105,116,108,101,46,108,111,97,100,45,109,111,114,101,58,104,111,118,101,114,123,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,117,110,100,101,114,108,105,110,101,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,116,105,116,108,101,58,58,98,101,102,111,114,101,123,108,101,102,116,58,50,52,112,120,59,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,53,48,37,59,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,89,40,45,53,48,37,41,59,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,89,40,45,53,48,37,41,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,116,111,112,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,116,105,116,108,101,58,102,111,99,117,115,123,111,117,116,108,105,110,101,58,110,111,110,101,125,46,105,110,115,112,105,114,101,45,116,114,101,101,46,100,114,97,103,45,97,110,100,45,100,114,111,112,32,108,105,58,110,111,116,40,46,100,114,111,112,45,116,97,114,103,101,116,41,123,111,112,97,99,105,116,121,58,48,46,53,125,46,100,114,97,103,45,116,97,114,103,101,116,105,110,103,46,100,114,97,103,45,116,97,114,103,101,116,105,110,103,45,105,110,115,101,114,116,32,62,32,46,116,105,116,108,101,45,119,114,97,112,32,62,32,46,116,105,116,108,101,44,46,100,114,97,103,45,116,97,114,103,101,116,105,110,103,46,100,114,97,103,45,116,97,114,103,101,116,105,110,103,45,105,110,115,101,114,116,46,105,110,115,112,105,114,101,45,116,114,101,101,123,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,50,100,97,100,99,53,125,46,100,114,97,103,45,116,97,114,103,101,116,105,110,103,46,100,114,97,103,45,116,97,114,103,101,116,105,110,103,45,97,98,111,118,101,32,62,32,46,116,105,116,108,101,45,119,114,97,112,32,62,32,46,116,105,116,108,101,123,98,111,114,100,101,114,45,116,111,112,58,51,112,120,32,115,111,108,105,100,32,35,50,100,97,100,99,53,125,46,100,114,97,103,45,116,97,114,103,101,116,105,110,103,46,100,114,97,103,45,116,97,114,103,101,116,105,110,103,45,98,101,108,111,119,32,62,32,46,116,105,116,108,101,45,119,114,97,112,32,62,32,46,116,105,116,108,101,123,98,111,114,100,101,114,45,98,111,116,116,111,109,58,51,112,120,32,115,111,108,105,100,32,35,50,100,97,100,99,53,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,101,100,105,116,97,98,108,101,32,102,111,114,109,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,104,101,105,103,104,116,58,50,53,112,120,59,108,105,110,101,45,104,101,105,103,104,116,58,50,53,112,120,59,112,97,100,100,105,110,103,45,116,111,112,58,50,112,120,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,101,100,105,116,97,98,108,101,32,102,111,114,109,32,105,110,112,117,116,123,104,101,105,103,104,116,58,50,48,112,120,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,101,100,105,116,97,98,108,101,32,102,111,114,109,32,46,98,116,110,44,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,101,100,105,116,97,98,108,101,32,102,111,114,109,32,105,110,112,117,116,123,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,116,111,112,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,101,100,105,116,97,98,108,101,32,62,32,46,98,116,110,45,103,114,111,117,112,123,100,105,115,112,108,97,121,58,110,111,110,101,59,112,97,100,100,105,110,103,45,116,111,112,58,50,112,120,59,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,114,105,103,104,116,58,49,48,112,120,59,122,45,105,110,100,101,120,58,51,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,101,100,105,116,97,98,108,101,58,104,111,118,101,114,32,62,32,46,98,116,110,45,103,114,111,117,112,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,105,110,112,117,116,32,43,32,46,98,116,110,45,103,114,111,117,112,123,109,97,114,103,105,110,45,108,101,102,116,58,49,48,112,120,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,62,32,46,98,116,110,46,105,99,111,110,123,109,97,114,103,105,110,45,108,101,102,116,58,50,112,120,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,62,32,111,108,32,62,32,46,102,111,108,100,101,114,58,102,105,114,115,116,45,99,104,105,108,100,58,110,111,116,40,58,111,110,108,121,45,99,104,105,108,100,41,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,112,110,103,59,98,97,115,101,54,52,44,105,86,66,79,82,119,48,75,71,103,111,65,65,65,65,78,83,85,104,69,85,103,65,65,65,65,69,65,65,65,65,77,67,65,89,65,65,65,67,106,105,57,100,88,65,65,65,65,70,85,108,69,81,86,81,73,87,50,77,56,100,43,72,83,102,48,89,71,66,103,89,71,82,112,74,90,65,74,50,117,70,75,99,112,52,72,102,112,65,65,65,65,65,69,108,70,84,107,83,117,81,109,67,67,34,41,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,49,49,112,120,32,49,51,112,120,59,98,97,99,107,103,114,111,117,110,100,45,114,101,112,101,97,116,58,110,111,45,114,101,112,101,97,116,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,102,111,108,100,101,114,58,108,97,115,116,45,99,104,105,108,100,58,110,111,116,40,58,111,110,108,121,45,99,104,105,108,100,41,44,46,105,110,115,112,105,114,101,45,116,114,101,101,32,108,105,32,46,102,111,108,100,101,114,58,108,97,115,116,45,99,104,105,108,100,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,112,110,103,59,98,97,115,101,54,52,44,105,86,66,79,82,119,48,75,71,103,111,65,65,65,65,78,83,85,104,69,85,103,65,65,65,65,69,65,65,65,65,77,67,65,89,65,65,65,67,106,105,57,100,88,65,65,65,65,70,85,108,69,81,86,81,73,87,50,77,56,100,43,72,83,102,48,89,71,66,103,89,71,82,112,74,90,65,74,50,117,70,75,99,112,52,72,102,112,65,65,65,65,65,69,108,70,84,107,83,117,81,109,67,67,34,41,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,49,49,112,120,32,48,59,98,97,99,107,103,114,111,117,110,100,45,114,101,112,101,97,116,58,110,111,45,114,101,112,101,97,116,125,46,105,110,115,112,105,114,101,45,116,114,101,101,46,101,100,105,116,97,98,108,101,45,97,100,100,32,62,32,111,108,32,62,32,46,102,111,108,100,101,114,58,108,97,115,116,45,99,104,105,108,100,58,110,111,116,40,58,111,110,108,121,45,99,104,105,108,100,41,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,112,110,103,59,98,97,115,101,54,52,44,105,86,66,79,82,119,48,75,71,103,111,65,65,65,65,78,83,85,104,69,85,103,65,65,65,65,69,65,65,65,65,89,67,65,89,65,65,65,65,55,122,74,102,97,65,65,65,65,70,85,108,69,81,86,81,73,87,50,77,56,100,43,72,83,102,48,89,71,66,103,89,71,82,114,113,121,65,66,75,101,75,85,48,83,86,43,116,50,65,65,65,65,65,69,108,70,84,107,83,117,81,109,67,67,34,41,59,98,97,99,107,103,114,111,117,110,100,45,114,101,112,101,97,116,58,114,101,112,101,97,116,45,121,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,62,32,111,108,32,46,101,120,112,97,110,100,101,100,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,44,46,105,110,115,112,105,114,101,45,116,114,101,101,32,108,105,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,112,110,103,59,98,97,115,101,54,52,44,105,86,66,79,82,119,48,75,71,103,111,65,65,65,65,78,83,85,104,69,85,103,65,65,65,65,69,65,65,65,65,89,67,65,89,65,65,65,65,55,122,74,102,97,65,65,65,65,70,85,108,69,81,86,81,73,87,50,77,56,100,43,72,83,102,48,89,71,66,103,89,71,82,114,113,121,65,66,75,101,75,85,48,83,86,43,116,50,65,65,65,65,65,69,108,70,84,107,83,117,81,109,67,67,34,41,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,49,49,112,120,32,48,59,98,97,99,107,103,114,111,117,110,100,45,114,101,112,101,97,116,58,110,111,45,114,101,112,101,97,116,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,108,105,46,101,120,112,97,110,100,101,100,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,32,62,32,111,108,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,112,110,103,59,98,97,115,101,54,52,44,105,86,66,79,82,119,48,75,71,103,111,65,65,65,65,78,83,85,104,69,85,103,65,65,65,65,69,65,65,65,65,89,67,65,89,65,65,65,65,55,122,74,102,97,65,65,65,65,70,85,108,69,81,86,81,73,87,50,77,56,100,43,72,83,102,48,89,71,66,103,89,71,82,114,113,121,65,66,75,101,75,85,48,83,86,43,116,50,65,65,65,65,65,69,108,70,84,107,83,117,81,109,67,67,34,41,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,49,49,112,120,32,48,59,98,97,99,107,103,114,111,117,110,100,45,114,101,112,101,97,116,58,114,101,112,101,97,116,45,121,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,108,105,46,101,120,112,97,110,100,101,100,46,102,111,108,100,101,114,58,110,111,116,40,46,108,111,97,100,105,110,103,41,32,62,32,46,116,105,116,108,101,45,119,114,97,112,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,112,110,103,59,98,97,115,101,54,52,44,105,86,66,79,82,119,48,75,71,103,111,65,65,65,65,78,83,85,104,69,85,103,65,65,65,65,69,65,65,65,65,77,67,65,89,65,65,65,67,106,105,57,100,88,65,65,65,65,70,85,108,69,81,86,81,73,87,50,77,56,100,43,72,83,102,48,89,71,66,103,89,71,82,112,74,90,65,74,50,117,70,75,99,112,52,72,102,112,65,65,65,65,65,69,108,70,84,107,83,117,81,109,67,67,34,41,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,51,49,112,120,32,49,51,112,120,59,98,97,99,107,103,114,111,117,110,100,45,114,101,112,101,97,116,58,110,111,45,114,101,112,101,97,116,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,108,101,97,102,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,58,110,111,116,40,46,100,101,116,97,99,104,101,100,41,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,112,110,103,59,98,97,115,101,54,52,44,105,86,66,79,82,119,48,75,71,103,111,65,65,65,65,78,83,85,104,69,85,103,65,65,65,65,48,65,65,65,65,89,67,65,89,65,65,65,65,104,56,72,100,85,65,65,65,65,78,48,108,69,81,86,81,52,84,50,77,56,100,43,72,83,102,121,77,68,80,85,89,71,69,103,66,74,105,109,72,109,77,111,55,97,66,65,109,75,48,100,67,68,74,103,108,52,105,111,67,108,68,71,76,111,48,100,66,68,68,122,48,83,77,117,53,111,50,111,77,70,70,103,66,88,98,69,101,73,48,88,119,89,73,119,65,65,65,65,66,74,82,85,53,69,114,107,74,103,103,103,65,65,34,41,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,49,49,112,120,32,48,59,98,97,99,107,103,114,111,117,110,100,45,114,101,112,101,97,116,58,110,111,45,114,101,112,101,97,116,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,108,101,97,102,58,108,97,115,116,45,99,104,105,108,100,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,112,110,103,59,98,97,115,101,54,52,44,105,86,66,79,82,119,48,75,71,103,111,65,65,65,65,78,83,85,104,69,85,103,65,65,65,65,48,65,65,65,65,78,67,65,89,65,65,65,66,121,54,43,82,56,65,65,65,65,75,107,108,69,81,86,81,111,85,50,77,56,100,43,72,83,102,121,77,68,80,85,89,71,69,103,66,74,105,109,72,109,77,111,55,97,66,65,109,75,48,100,67,68,74,103,108,52,105,111,67,108,68,71,74,111,65,71,85,90,77,51,50,90,48,85,56,116,65,65,65,65,65,69,108,70,84,107,83,117,81,109,67,67,34,41,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,49,49,112,120,32,48,59,98,97,99,107,103,114,111,117,110,100,45,114,101,112,101,97,116,58,110,111,45,114,101,112,101,97,116,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,108,101,97,102,46,100,101,116,97,99,104,101,100,58,108,97,115,116,45,99,104,105,108,100,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,112,110,103,59,98,97,115,101,54,52,44,105,86,66,79,82,119,48,75,71,103,111,65,65,65,65,78,83,85,104,69,85,103,65,65,65,65,69,65,65,65,65,77,67,65,89,65,65,65,67,106,105,57,100,88,65,65,65,65,70,85,108,69,81,86,81,73,87,50,77,56,100,43,72,83,102,48,89,71,66,103,89,71,82,112,74,90,65,74,50,117,70,75,99,112,52,72,102,112,65,65,65,65,65,69,108,70,84,107,83,117,81,109,67,67,34,41,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,49,49,112,120,32,48,59,98,97,99,107,103,114,111,117,110,100,45,114,101,112,101,97,116,58,110,111,45,114,101,112,101,97,116,125,46,105,110,115,112,105,114,101,45,116,114,101,101,46,101,100,105,116,97,98,108,101,45,97,100,100,32,62,32,111,108,32,62,32,46,108,101,97,102,58,108,97,115,116,45,99,104,105,108,100,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,112,110,103,59,98,97,115,101,54,52,44,105,86,66,79,82,119,48,75,71,103,111,65,65,65,65,78,83,85,104,69,85,103,65,65,65,65,48,65,65,65,65,89,67,65,89,65,65,65,65,104,56,72,100,85,65,65,65,65,78,48,108,69,81,86,81,52,84,50,77,56,100,43,72,83,102,121,77,68,80,85,89,71,69,103,66,74,105,109,72,109,77,111,55,97,66,65,109,75,48,100,67,68,74,103,108,52,105,111,67,108,68,71,76,111,48,100,66,68,68,122,48,83,77,117,53,111,50,111,77,70,70,103,66,88,98,69,101,73,48,88,119,89,73,119,65,65,65,65,66,74,82,85,53,69,114,107,74,103,103,103,65,65,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,48,32,48,59,98,97,99,107,103,114,111,117,110,100,45,114,101,112,101,97,116,58,110,111,45,114,101,112,101,97,116,59,99,111,110,116,101,110,116,58,39,39,59,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,104,101,105,103,104,116,58,49,52,112,120,59,119,105,100,116,104,58,49,52,112,120,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,99,104,101,99,107,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,54,97,54,97,54,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,50,55,37,50,48,52,108,45,49,53,37,50,48,49,53,45,55,45,55,45,53,37,50,48,53,37,50,48,49,50,37,50,48,49,50,37,50,48,50,48,45,50,48,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,99,104,101,99,107,58,104,111,118,101,114,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,48,99,99,99,48,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,50,55,37,50,48,52,108,45,49,53,37,50,48,49,53,45,55,45,55,45,53,37,50,48,53,37,50,48,49,50,37,50,48,49,50,37,50,48,50,48,45,50,48,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,99,111,108,108,97,112,115,101,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,50,52,37,50,48,50,52,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,97,97,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,52,37,50,48,49,104,49,54,113,49,46,50,52,50,37,50,48,48,37,50,48,50,46,49,50,49,37,50,48,48,46,56,55,57,116,48,46,56,55,57,37,50,48,50,46,49,50,49,118,49,54,113,48,37,50,48,49,46,50,52,50,45,48,46,56,55,57,37,50,48,50,46,49,50,49,116,45,50,46,49,50,49,37,50,48,48,46,56,55,57,104,45,49,54,113,45,49,46,50,52,50,37,50,48,48,45,50,46,49,50,49,45,48,46,56,55,57,116,45,48,46,56,55,57,45,50,46,49,50,49,118,45,49,54,113,48,45,49,46,50,52,50,37,50,48,48,46,56,55,57,45,50,46,49,50,49,116,50,46,49,50,49,45,48,46,56,55,57,122,77,50,48,37,50,48,51,104,45,49,54,113,45,48,46,52,49,52,37,50,48,48,45,48,46,55,48,55,37,50,48,48,46,50,57,51,116,45,48,46,50,57,51,37,50,48,48,46,55,48,55,118,49,54,113,48,37,50,48,48,46,52,49,52,37,50,48,48,46,50,57,51,37,50,48,48,46,55,48,55,116,48,46,55,48,55,37,50,48,48,46,50,57,51,104,49,54,113,48,46,52,49,52,37,50,48,48,37,50,48,48,46,55,48,55,45,48,46,50,57,51,116,48,46,50,57,51,45,48,46,55,48,55,118,45,49,54,113,48,45,48,46,52,49,52,45,48,46,50,57,51,45,48,46,55,48,55,116,45,48,46,55,48,55,45,48,46,50,57,51,122,77,56,37,50,48,49,49,104,56,113,48,46,52,49,52,37,50,48,48,37,50,48,48,46,55,48,55,37,50,48,48,46,50,57,51,116,48,46,50,57,51,37,50,48,48,46,55,48,55,45,48,46,50,57,51,37,50,48,48,46,55,48,55,45,48,46,55,48,55,37,50,48,48,46,50,57,51,104,45,56,113,45,48,46,52,49,52,37,50,48,48,45,48,46,55,48,55,45,48,46,50,57,51,116,45,48,46,50,57,51,45,48,46,55,48,55,37,50,48,48,46,50,57,51,45,48,46,55,48,55,37,50,48,48,46,55,48,55,45,48,46,50,57,51,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,41,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,119,104,105,116,101,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,51,112,120,59,109,97,114,103,105,110,45,108,101,102,116,58,45,49,112,120,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,99,114,111,115,115,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,54,97,54,97,54,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,51,49,46,55,48,56,37,50,48,50,53,46,55,48,56,99,45,48,45,48,45,48,45,48,45,48,45,48,108,45,57,46,55,48,56,45,57,46,55,48,56,37,50,48,57,46,55,48,56,45,57,46,55,48,56,99,48,45,48,37,50,48,48,45,48,37,50,48,48,45,48,37,50,48,48,46,49,48,53,45,48,46,49,48,53,37,50,48,48,46,49,56,45,48,46,50,50,55,37,50,48,48,46,50,50,57,45,48,46,51,53,55,37,50,48,48,46,49,51,51,45,48,46,51,53,54,37,50,48,48,46,48,53,55,45,48,46,55,55,49,45,48,46,50,50,57,45,49,46,48,53,55,108,45,52,46,53,56,54,45,52,46,53,56,54,99,45,48,46,50,56,54,45,48,46,50,56,54,45,48,46,55,48,50,45,48,46,51,54,49,45,49,46,48,53,55,45,48,46,50,50,57,45,48,46,49,51,37,50,48,48,46,48,52,56,45,48,46,50,53,50,37,50,48,48,46,49,50,52,45,48,46,51,53,55,37,50,48,48,46,50,50,56,37,50,48,48,37,50,48,48,45,48,37,50,48,48,45,48,37,50,48,48,108,45,57,46,55,48,56,37,50,48,57,46,55,48,56,45,57,46,55,48,56,45,57,46,55,48,56,99,45,48,45,48,45,48,45,48,45,48,45,48,45,48,46,49,48,53,45,48,46,49,48,52,45,48,46,50,50,55,45,48,46,49,56,45,48,46,51,53,55,45,48,46,50,50,56,45,48,46,51,53,54,45,48,46,49,51,51,45,48,46,55,55,49,45,48,46,48,53,55,45,49,46,48,53,55,37,50,48,48,46,50,50,57,108,45,52,46,53,56,54,37,50,48,52,46,53,56,54,99,45,48,46,50,56,54,37,50,48,48,46,50,56,54,45,48,46,51,54,49,37,50,48,48,46,55,48,50,45,48,46,50,50,57,37,50,48,49,46,48,53,55,37,50,48,48,46,48,52,57,37,50,48,48,46,49,51,37,50,48,48,46,49,50,52,37,50,48,48,46,50,53,50,37,50,48,48,46,50,50,57,37,50,48,48,46,51,53,55,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,108,57,46,55,48,56,37,50,48,57,46,55,48,56,45,57,46,55,48,56,37,50,48,57,46,55,48,56,99,45,48,37,50,48,48,45,48,37,50,48,48,45,48,37,50,48,48,45,48,46,49,48,52,37,50,48,48,46,49,48,53,45,48,46,49,56,37,50,48,48,46,50,50,55,45,48,46,50,50,57,37,50,48,48,46,51,53,55,45,48,46,49,51,51,37,50,48,48,46,51,53,53,45,48,46,48,53,55,37,50,48,48,46,55,55,49,37,50,48,48,46,50,50,57,37,50,48,49,46,48,53,55,108,52,46,53,56,54,37,50,48,52,46,53,56,54,99,48,46,50,56,54,37,50,48,48,46,50,56,54,37,50,48,48,46,55,48,50,37,50,48,48,46,51,54,49,37,50,48,49,46,48,53,55,37,50,48,48,46,50,50,57,37,50,48,48,46,49,51,45,48,46,48,52,57,37,50,48,48,46,50,53,50,45,48,46,49,50,52,37,50,48,48,46,51,53,55,45,48,46,50,50,57,37,50,48,48,45,48,37,50,48,48,45,48,37,50,48,48,45,48,108,57,46,55,48,56,45,57,46,55,48,56,37,50,48,57,46,55,48,56,37,50,48,57,46,55,48,56,99,48,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,46,49,48,53,37,50,48,48,46,49,48,53,37,50,48,48,46,50,50,55,37,50,48,48,46,49,56,37,50,48,48,46,51,53,55,37,50,48,48,46,50,50,57,37,50,48,48,46,51,53,54,37,50,48,48,46,49,51,51,37,50,48,48,46,55,55,49,37,50,48,48,46,48,53,55,37,50,48,49,46,48,53,55,45,48,46,50,50,57,108,52,46,53,56,54,45,52,46,53,56,54,99,48,46,50,56,54,45,48,46,50,56,54,37,50,48,48,46,51,54,50,45,48,46,55,48,50,37,50,48,48,46,50,50,57,45,49,46,48,53,55,45,48,46,48,52,57,45,48,46,49,51,45,48,46,49,50,52,45,48,46,50,53,50,45,48,46,50,50,57,45,48,46,51,53,55,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,99,114,111,115,115,58,104,111,118,101,114,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,99,48,48,37,50,50,37,50,48,100,37,51,68,37,50,50,77,51,49,46,55,48,56,37,50,48,50,53,46,55,48,56,99,45,48,45,48,45,48,45,48,45,48,45,48,108,45,57,46,55,48,56,45,57,46,55,48,56,37,50,48,57,46,55,48,56,45,57,46,55,48,56,99,48,45,48,37,50,48,48,45,48,37,50,48,48,45,48,37,50,48,48,46,49,48,53,45,48,46,49,48,53,37,50,48,48,46,49,56,45,48,46,50,50,55,37,50,48,48,46,50,50,57,45,48,46,51,53,55,37,50,48,48,46,49,51,51,45,48,46,51,53,54,37,50,48,48,46,48,53,55,45,48,46,55,55,49,45,48,46,50,50,57,45,49,46,48,53,55,108,45,52,46,53,56,54,45,52,46,53,56,54,99,45,48,46,50,56,54,45,48,46,50,56,54,45,48,46,55,48,50,45,48,46,51,54,49,45,49,46,48,53,55,45,48,46,50,50,57,45,48,46,49,51,37,50,48,48,46,48,52,56,45,48,46,50,53,50,37,50,48,48,46,49,50,52,45,48,46,51,53,55,37,50,48,48,46,50,50,56,37,50,48,48,37,50,48,48,45,48,37,50,48,48,45,48,37,50,48,48,108,45,57,46,55,48,56,37,50,48,57,46,55,48,56,45,57,46,55,48,56,45,57,46,55,48,56,99,45,48,45,48,45,48,45,48,45,48,45,48,45,48,46,49,48,53,45,48,46,49,48,52,45,48,46,50,50,55,45,48,46,49,56,45,48,46,51,53,55,45,48,46,50,50,56,45,48,46,51,53,54,45,48,46,49,51,51,45,48,46,55,55,49,45,48,46,48,53,55,45,49,46,48,53,55,37,50,48,48,46,50,50,57,108,45,52,46,53,56,54,37,50,48,52,46,53,56,54,99,45,48,46,50,56,54,37,50,48,48,46,50,56,54,45,48,46,51,54,49,37,50,48,48,46,55,48,50,45,48,46,50,50,57,37,50,48,49,46,48,53,55,37,50,48,48,46,48,52,57,37,50,48,48,46,49,51,37,50,48,48,46,49,50,52,37,50,48,48,46,50,53,50,37,50,48,48,46,50,50,57,37,50,48,48,46,51,53,55,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,108,57,46,55,48,56,37,50,48,57,46,55,48,56,45,57,46,55,48,56,37,50,48,57,46,55,48,56,99,45,48,37,50,48,48,45,48,37,50,48,48,45,48,37,50,48,48,45,48,46,49,48,52,37,50,48,48,46,49,48,53,45,48,46,49,56,37,50,48,48,46,50,50,55,45,48,46,50,50,57,37,50,48,48,46,51,53,55,45,48,46,49,51,51,37,50,48,48,46,51,53,53,45,48,46,48,53,55,37,50,48,48,46,55,55,49,37,50,48,48,46,50,50,57,37,50,48,49,46,48,53,55,108,52,46,53,56,54,37,50,48,52,46,53,56,54,99,48,46,50,56,54,37,50,48,48,46,50,56,54,37,50,48,48,46,55,48,50,37,50,48,48,46,51,54,49,37,50,48,49,46,48,53,55,37,50,48,48,46,50,50,57,37,50,48,48,46,49,51,45,48,46,48,52,57,37,50,48,48,46,50,53,50,45,48,46,49,50,52,37,50,48,48,46,51,53,55,45,48,46,50,50,57,37,50,48,48,45,48,37,50,48,48,45,48,37,50,48,48,45,48,108,57,46,55,48,56,45,57,46,55,48,56,37,50,48,57,46,55,48,56,37,50,48,57,46,55,48,56,99,48,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,46,49,48,53,37,50,48,48,46,49,48,53,37,50,48,48,46,50,50,55,37,50,48,48,46,49,56,37,50,48,48,46,51,53,55,37,50,48,48,46,50,50,57,37,50,48,48,46,51,53,54,37,50,48,48,46,49,51,51,37,50,48,48,46,55,55,49,37,50,48,48,46,48,53,55,37,50,48,49,46,48,53,55,45,48,46,50,50,57,108,52,46,53,56,54,45,52,46,53,56,54,99,48,46,50,56,54,45,48,46,50,56,54,37,50,48,48,46,51,54,50,45,48,46,55,48,50,37,50,48,48,46,50,50,57,45,49,46,48,53,55,45,48,46,48,52,57,45,48,46,49,51,45,48,46,49,50,52,45,48,46,50,53,50,45,48,46,50,50,57,45,48,46,51,53,55,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,101,120,112,97,110,100,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,50,52,37,50,48,50,52,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,97,97,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,52,37,50,48,49,104,49,54,113,49,46,50,52,50,37,50,48,48,37,50,48,50,46,49,50,49,37,50,48,48,46,56,55,57,116,48,46,56,55,57,37,50,48,50,46,49,50,49,118,49,54,113,48,37,50,48,49,46,50,52,50,45,48,46,56,55,57,37,50,48,50,46,49,50,49,116,45,50,46,49,50,49,37,50,48,48,46,56,55,57,104,45,49,54,113,45,49,46,50,52,50,37,50,48,48,45,50,46,49,50,49,45,48,46,56,55,57,116,45,48,46,56,55,57,45,50,46,49,50,49,118,45,49,54,113,48,45,49,46,50,52,50,37,50,48,48,46,56,55,57,45,50,46,49,50,49,116,50,46,49,50,49,45,48,46,56,55,57,122,77,50,48,37,50,48,51,104,45,49,54,113,45,48,46,52,49,52,37,50,48,48,45,48,46,55,48,55,37,50,48,48,46,50,57,51,116,45,48,46,50,57,51,37,50,48,48,46,55,48,55,118,49,54,113,48,37,50,48,48,46,52,49,52,37,50,48,48,46,50,57,51,37,50,48,48,46,55,48,55,116,48,46,55,48,55,37,50,48,48,46,50,57,51,104,49,54,113,48,46,52,49,52,37,50,48,48,37,50,48,48,46,55,48,55,45,48,46,50,57,51,116,48,46,50,57,51,45,48,46,55,48,55,118,45,49,54,113,48,45,48,46,52,49,52,45,48,46,50,57,51,45,48,46,55,48,55,116,45,48,46,55,48,55,45,48,46,50,57,51,122,77,49,50,37,50,48,55,113,48,46,52,49,52,37,50,48,48,37,50,48,48,46,55,48,55,37,50,48,48,46,50,57,51,116,48,46,50,57,51,37,50,48,48,46,55,48,55,118,51,104,51,113,48,46,52,49,52,37,50,48,48,37,50,48,48,46,55,48,55,37,50,48,48,46,50,57,51,116,48,46,50,57,51,37,50,48,48,46,55,48,55,45,48,46,50,57,51,37,50,48,48,46,55,48,55,45,48,46,55,48,55,37,50,48,48,46,50,57,51,104,45,51,118,51,113,48,37,50,48,48,46,52,49,52,45,48,46,50,57,51,37,50,48,48,46,55,48,55,116,45,48,46,55,48,55,37,50,48,48,46,50,57,51,45,48,46,55,48,55,45,48,46,50,57,51,45,48,46,50,57,51,45,48,46,55,48,55,118,45,51,104,45,51,113,45,48,46,52,49,52,37,50,48,48,45,48,46,55,48,55,45,48,46,50,57,51,116,45,48,46,50,57,51,45,48,46,55,48,55,37,50,48,48,46,50,57,51,45,48,46,55,48,55,37,50,48,48,46,55,48,55,45,48,46,50,57,51,104,51,118,45,51,113,48,45,48,46,52,49,52,37,50,48,48,46,50,57,51,45,48,46,55,48,55,116,48,46,55,48,55,45,48,46,50,57,51,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,41,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,119,104,105,116,101,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,51,112,120,59,109,97,114,103,105,110,45,108,101,102,116,58,45,49,112,120,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,102,105,108,101,45,101,109,112,116,121,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,97,53,97,53,97,53,37,50,50,37,50,48,100,37,51,68,37,50,50,77,50,56,46,54,56,49,37,50,48,55,46,49,53,57,99,45,48,46,54,57,52,45,48,46,57,52,55,45,49,46,54,54,50,45,50,46,48,53,51,45,50,46,55,50,52,45,51,46,49,49,54,115,45,50,46,49,54,57,45,50,46,48,51,48,45,51,46,49,49,54,45,50,46,55,50,52,99,45,49,46,54,49,50,45,49,46,49,56,50,45,50,46,51,57,51,45,49,46,51,49,57,45,50,46,56,52,49,45,49,46,51,49,57,104,45,49,53,46,53,99,45,49,46,51,55,56,37,50,48,48,45,50,46,53,37,50,48,49,46,49,50,49,45,50,46,53,37,50,48,50,46,53,118,50,55,99,48,37,50,48,49,46,51,55,56,37,50,48,49,46,49,50,50,37,50,48,50,46,53,37,50,48,50,46,53,37,50,48,50,46,53,104,50,51,99,49,46,51,55,56,37,50,48,48,37,50,48,50,46,53,45,49,46,49,50,50,37,50,48,50,46,53,45,50,46,53,118,45,49,57,46,53,99,48,45,48,46,52,52,56,45,48,46,49,51,55,45,49,46,50,51,45,49,46,51,49,57,45,50,46,56,52,49,122,77,50,52,46,53,52,51,37,50,48,53,46,52,53,55,99,48,46,57,53,57,37,50,48,48,46,57,53,57,37,50,48,49,46,55,49,50,37,50,48,49,46,56,50,53,37,50,48,50,46,50,54,56,37,50,48,50,46,53,52,51,104,45,52,46,56,49,49,118,45,52,46,56,49,49,99,48,46,55,49,56,37,50,48,48,46,53,53,54,37,50,48,49,46,53,56,52,37,50,48,49,46,51,48,57,37,50,48,50,46,53,52,51,37,50,48,50,46,50,54,56,122,77,50,56,37,50,48,50,57,46,53,99,48,37,50,48,48,46,50,55,49,45,48,46,50,50,57,37,50,48,48,46,53,45,48,46,53,37,50,48,48,46,53,104,45,50,51,99,45,48,46,50,55,49,37,50,48,48,45,48,46,53,45,48,46,50,50,57,45,48,46,53,45,48,46,53,118,45,50,55,99,48,45,48,46,50,55,49,37,50,48,48,46,50,50,57,45,48,46,53,37,50,48,48,46,53,45,48,46,53,37,50,48,48,37,50,48,48,37,50,48,49,53,46,52,57,57,45,48,37,50,48,49,53,46,53,37,50,48,48,118,55,99,48,37,50,48,48,46,53,53,50,37,50,48,48,46,52,52,56,37,50,48,49,37,50,48,49,37,50,48,49,104,55,118,49,57,46,53,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,102,111,108,100,101,114,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,54,97,54,97,54,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,49,52,37,50,48,52,108,52,37,50,48,52,104,49,52,118,50,50,104,45,51,50,118,45,50,54,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,102,111,108,100,101,114,45,111,112,101,110,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,54,97,54,97,54,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,50,54,37,50,48,51,48,108,54,45,49,54,104,45,50,54,108,45,54,37,50,48,49,54,122,77,52,37,50,48,49,50,108,45,52,37,50,48,49,56,118,45,50,54,104,57,108,52,37,50,48,52,104,49,51,118,52,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,37,48,65,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,109,105,110,117,115,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,54,97,54,97,54,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,48,37,50,48,49,51,118,54,99,48,37,50,48,48,46,53,53,50,37,50,48,48,46,52,52,56,37,50,48,49,37,50,48,49,37,50,48,49,104,51,48,99,48,46,53,53,50,37,50,48,48,37,50,48,49,45,48,46,52,52,56,37,50,48,49,45,49,118,45,54,99,48,45,48,46,53,53,50,45,48,46,52,52,56,45,49,45,49,45,49,104,45,51,48,99,45,48,46,53,53,50,37,50,48,48,45,49,37,50,48,48,46,52,52,56,45,49,37,50,48,49,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,109,105,110,117,115,58,104,111,118,101,114,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,99,48,48,37,50,50,37,50,48,100,37,51,68,37,50,50,77,48,37,50,48,49,51,118,54,99,48,37,50,48,48,46,53,53,50,37,50,48,48,46,52,52,56,37,50,48,49,37,50,48,49,37,50,48,49,104,51,48,99,48,46,53,53,50,37,50,48,48,37,50,48,49,45,48,46,52,52,56,37,50,48,49,45,49,118,45,54,99,48,45,48,46,53,53,50,45,48,46,52,52,56,45,49,45,49,45,49,104,45,51,48,99,45,48,46,53,53,50,37,50,48,48,45,49,37,50,48,48,46,52,52,56,45,49,37,50,48,49,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,109,111,114,101,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,50,52,37,50,48,50,52,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,54,97,54,97,54,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,49,50,37,50,48,57,46,57,56,52,99,49,46,48,55,56,37,50,48,48,37,50,48,50,46,48,49,54,37,50,48,48,46,57,51,56,37,50,48,50,46,48,49,54,37,50,48,50,46,48,49,54,115,45,48,46,57,51,56,37,50,48,50,46,48,49,54,45,50,46,48,49,54,37,50,48,50,46,48,49,54,45,50,46,48,49,54,45,48,46,57,51,56,45,50,46,48,49,54,45,50,46,48,49,54,37,50,48,48,46,57,51,56,45,50,46,48,49,54,37,50,48,50,46,48,49,54,45,50,46,48,49,54,122,77,49,56,37,50,48,57,46,57,56,52,99,49,46,48,55,56,37,50,48,48,37,50,48,50,46,48,49,54,37,50,48,48,46,57,51,56,37,50,48,50,46,48,49,54,37,50,48,50,46,48,49,54,115,45,48,46,57,51,56,37,50,48,50,46,48,49,54,45,50,46,48,49,54,37,50,48,50,46,48,49,54,45,50,46,48,49,54,45,48,46,57,51,56,45,50,46,48,49,54,45,50,46,48,49,54,37,50,48,48,46,57,51,56,45,50,46,48,49,54,37,50,48,50,46,48,49,54,45,50,46,48,49,54,122,77,54,37,50,48,57,46,57,56,52,99,49,46,48,55,56,37,50,48,48,37,50,48,50,46,48,49,54,37,50,48,48,46,57,51,56,37,50,48,50,46,48,49,54,37,50,48,50,46,48,49,54,115,45,48,46,57,51,56,37,50,48,50,46,48,49,54,45,50,46,48,49,54,37,50,48,50,46,48,49,54,45,50,46,48,49,54,45,48,46,57,51,56,45,50,46,48,49,54,45,50,46,48,49,54,37,50,48,48,46,57,51,56,45,50,46,48,49,54,37,50,48,50,46,48,49,54,45,50,46,48,49,54,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,112,101,110,99,105,108,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,54,97,54,97,54,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,50,55,37,50,48,48,99,50,46,55,54,49,37,50,48,48,37,50,48,53,37,50,48,50,46,50,51,57,37,50,48,53,37,50,48,53,37,50,48,48,37,50,48,49,46,49,50,54,45,48,46,51,55,50,37,50,48,50,46,49,54,52,45,49,37,50,48,51,108,45,50,37,50,48,50,45,55,45,55,37,50,48,50,45,50,99,48,46,56,51,54,45,48,46,54,50,56,37,50,48,49,46,56,55,52,45,49,37,50,48,51,45,49,122,77,50,37,50,48,50,51,108,45,50,37,50,48,57,37,50,48,57,45,50,37,50,48,49,56,46,53,45,49,56,46,53,45,55,45,55,45,49,56,46,53,37,50,48,49,56,46,53,122,77,50,50,46,51,54,50,37,50,48,49,49,46,51,54,50,108,45,49,52,37,50,48,49,52,45,49,46,55,50,52,45,49,46,55,50,52,37,50,48,49,52,45,49,52,37,50,48,49,46,55,50,52,37,50,48,49,46,55,50,52,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,37,48,65,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,112,101,110,99,105,108,58,104,111,118,101,114,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,48,99,99,99,48,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,50,55,37,50,48,48,99,50,46,55,54,49,37,50,48,48,37,50,48,53,37,50,48,50,46,50,51,57,37,50,48,53,37,50,48,53,37,50,48,48,37,50,48,49,46,49,50,54,45,48,46,51,55,50,37,50,48,50,46,49,54,52,45,49,37,50,48,51,108,45,50,37,50,48,50,45,55,45,55,37,50,48,50,45,50,99,48,46,56,51,54,45,48,46,54,50,56,37,50,48,49,46,56,55,52,45,49,37,50,48,51,45,49,122,77,50,37,50,48,50,51,108,45,50,37,50,48,57,37,50,48,57,45,50,37,50,48,49,56,46,53,45,49,56,46,53,45,55,45,55,45,49,56,46,53,37,50,48,49,56,46,53,122,77,50,50,46,51,54,50,37,50,48,49,49,46,51,54,50,108,45,49,52,37,50,48,49,52,45,49,46,55,50,52,45,49,46,55,50,52,37,50,48,49,52,45,49,52,37,50,48,49,46,55,50,52,37,50,48,49,46,55,50,52,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,37,48,65,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,112,108,117,115,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,54,97,54,97,54,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,51,49,37,50,48,49,50,104,45,49,49,118,45,49,49,99,48,45,48,46,53,53,50,45,48,46,52,52,56,45,49,45,49,45,49,104,45,54,99,45,48,46,53,53,50,37,50,48,48,45,49,37,50,48,48,46,52,52,56,45,49,37,50,48,49,118,49,49,104,45,49,49,99,45,48,46,53,53,50,37,50,48,48,45,49,37,50,48,48,46,52,52,56,45,49,37,50,48,49,118,54,99,48,37,50,48,48,46,53,53,50,37,50,48,48,46,52,52,56,37,50,48,49,37,50,48,49,37,50,48,49,104,49,49,118,49,49,99,48,37,50,48,48,46,53,53,50,37,50,48,48,46,52,52,56,37,50,48,49,37,50,48,49,37,50,48,49,104,54,99,48,46,53,53,50,37,50,48,48,37,50,48,49,45,48,46,52,52,56,37,50,48,49,45,49,118,45,49,49,104,49,49,99,48,46,53,53,50,37,50,48,48,37,50,48,49,45,48,46,52,52,56,37,50,48,49,45,49,118,45,54,99,48,45,48,46,53,53,50,45,48,46,52,52,56,45,49,45,49,45,49,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,112,108,117,115,58,104,111,118,101,114,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,48,99,99,99,48,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,51,49,37,50,48,49,50,104,45,49,49,118,45,49,49,99,48,45,48,46,53,53,50,45,48,46,52,52,56,45,49,45,49,45,49,104,45,54,99,45,48,46,53,53,50,37,50,48,48,45,49,37,50,48,48,46,52,52,56,45,49,37,50,48,49,118,49,49,104,45,49,49,99,45,48,46,53,53,50,37,50,48,48,45,49,37,50,48,48,46,52,52,56,45,49,37,50,48,49,118,54,99,48,37,50,48,48,46,53,53,50,37,50,48,48,46,52,52,56,37,50,48,49,37,50,48,49,37,50,48,49,104,49,49,118,49,49,99,48,37,50,48,48,46,53,53,50,37,50,48,48,46,52,52,56,37,50,48,49,37,50,48,49,37,50,48,49,104,54,99,48,46,53,53,50,37,50,48,48,37,50,48,49,45,48,46,52,52,56,37,50,48,49,45,49,118,45,49,49,104,49,49,99,48,46,53,53,50,37,50,48,48,37,50,48,49,45,48,46,52,52,56,37,50,48,49,45,49,118,45,54,99,48,45,48,46,53,53,50,45,48,46,52,52,56,45,49,45,49,45,49,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,115,101,108,101,99,116,101,100,32,62,32,46,116,105,116,108,101,45,119,114,97,112,32,46,105,99,111,110,45,102,111,108,100,101,114,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,49,55,57,98,98,57,37,50,50,37,50,48,100,37,51,68,37,50,50,77,49,52,37,50,48,52,108,52,37,50,48,52,104,49,52,118,50,50,104,45,51,50,118,45,50,54,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,115,101,108,101,99,116,101,100,32,62,32,46,116,105,116,108,101,45,119,114,97,112,32,46,105,99,111,110,45,102,111,108,100,101,114,45,111,112,101,110,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,49,55,57,98,98,57,37,50,50,37,50,48,100,37,51,68,37,50,50,77,50,54,37,50,48,51,48,108,54,45,49,54,104,45,50,54,108,45,54,37,50,48,49,54,122,77,52,37,50,48,49,50,108,45,52,37,50,48,49,56,118,45,50,54,104,57,108,52,37,50,48,52,104,49,51,118,52,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,37,48,65,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,115,101,108,101,99,116,101,100,32,62,32,46,116,105,116,108,101,45,119,114,97,112,32,46,105,99,111,110,45,102,105,108,101,45,101,109,112,116,121,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,49,55,57,98,98,57,37,50,50,37,50,48,100,37,51,68,37,50,50,77,50,56,46,54,56,49,37,50,48,55,46,49,53,57,99,45,48,46,54,57,52,45,48,46,57,52,55,45,49,46,54,54,50,45,50,46,48,53,51,45,50,46,55,50,52,45,51,46,49,49,54,115,45,50,46,49,54,57,45,50,46,48,51,48,45,51,46,49,49,54,45,50,46,55,50,52,99,45,49,46,54,49,50,45,49,46,49,56,50,45,50,46,51,57,51,45,49,46,51,49,57,45,50,46,56,52,49,45,49,46,51,49,57,104,45,49,53,46,53,99,45,49,46,51,55,56,37,50,48,48,45,50,46,53,37,50,48,49,46,49,50,49,45,50,46,53,37,50,48,50,46,53,118,50,55,99,48,37,50,48,49,46,51,55,56,37,50,48,49,46,49,50,50,37,50,48,50,46,53,37,50,48,50,46,53,37,50,48,50,46,53,104,50,51,99,49,46,51,55,56,37,50,48,48,37,50,48,50,46,53,45,49,46,49,50,50,37,50,48,50,46,53,45,50,46,53,118,45,49,57,46,53,99,48,45,48,46,52,52,56,45,48,46,49,51,55,45,49,46,50,51,45,49,46,51,49,57,45,50,46,56,52,49,122,77,50,52,46,53,52,51,37,50,48,53,46,52,53,55,99,48,46,57,53,57,37,50,48,48,46,57,53,57,37,50,48,49,46,55,49,50,37,50,48,49,46,56,50,53,37,50,48,50,46,50,54,56,37,50,48,50,46,53,52,51,104,45,52,46,56,49,49,118,45,52,46,56,49,49,99,48,46,55,49,56,37,50,48,48,46,53,53,54,37,50,48,49,46,53,56,52,37,50,48,49,46,51,48,57,37,50,48,50,46,53,52,51,37,50,48,50,46,50,54,56,122,77,50,56,37,50,48,50,57,46,53,99,48,37,50,48,48,46,50,55,49,45,48,46,50,50,57,37,50,48,48,46,53,45,48,46,53,37,50,48,48,46,53,104,45,50,51,99,45,48,46,50,55,49,37,50,48,48,45,48,46,53,45,48,46,50,50,57,45,48,46,53,45,48,46,53,118,45,50,55,99,48,45,48,46,50,55,49,37,50,48,48,46,50,50,57,45,48,46,53,37,50,48,48,46,53,45,48,46,53,37,50,48,48,37,50,48,48,37,50,48,49,53,46,52,57,57,45,48,37,50,48,49,53,46,53,37,50,48,48,118,55,99,48,37,50,48,48,46,53,53,50,37,50,48,48,46,52,52,56,37,50,48,49,37,50,48,49,37,50,48,49,104,55,118,49,57,46,53,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,108,111,97,100,105,110,103,32,62,32,46,116,105,116,108,101,45,119,114,97,112,32,105,110,112,117,116,123,100,105,115,112,108,97,121,58,110,111,110,101,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,108,111,97,100,105,110,103,32,62,32,46,116,105,116,108,101,45,119,114,97,112,32,46,116,105,116,108,101,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,119,105,100,116,104,37,51,68,37,50,55,49,52,112,120,37,50,55,37,50,48,104,101,105,103,104,116,37,51,68,37,50,55,49,52,112,120,37,50,55,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,49,48,48,37,50,48,49,48,48,37,50,50,37,50,48,112,114,101,115,101,114,118,101,65,115,112,101,99,116,82,97,116,105,111,37,51,68,37,50,50,120,77,105,100,89,77,105,100,37,50,50,37,50,48,99,108,97,115,115,37,51,68,37,50,50,117,105,108,45,114,105,110,103,37,50,50,37,51,69,37,51,67,114,101,99,116,37,50,48,120,37,51,68,37,50,50,48,37,50,50,37,50,48,121,37,51,68,37,50,50,48,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,50,37,50,48,102,105,108,108,37,51,68,37,50,50,110,111,110,101,37,50,50,37,50,48,99,108,97,115,115,37,51,68,37,50,50,98,107,37,50,50,37,51,69,37,51,67,37,50,70,114,101,99,116,37,51,69,37,51,67,100,101,102,115,37,51,69,37,51,67,102,105,108,116,101,114,37,50,48,105,100,37,51,68,37,50,50,117,105,108,45,114,105,110,103,45,115,104,97,100,111,119,37,50,50,37,50,48,120,37,51,68,37,50,50,45,49,48,48,37,50,53,37,50,50,37,50,48,121,37,51,68,37,50,50,45,49,48,48,37,50,53,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,51,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,51,48,48,37,50,53,37,50,50,37,51,69,37,51,67,102,101,79,102,102,115,101,116,37,50,48,114,101,115,117,108,116,37,51,68,37,50,50,111,102,102,79,117,116,37,50,50,37,50,48,105,110,37,51,68,37,50,50,83,111,117,114,99,101,71,114,97,112,104,105,99,37,50,50,37,50,48,100,120,37,51,68,37,50,50,48,37,50,50,37,50,48,100,121,37,51,68,37,50,50,48,37,50,50,37,51,69,37,51,67,37,50,70,102,101,79,102,102,115,101,116,37,51,69,37,51,67,102,101,71,97,117,115,115,105,97,110,66,108,117,114,37,50,48,114,101,115,117,108,116,37,51,68,37,50,50,98,108,117,114,79,117,116,37,50,50,37,50,48,105,110,37,51,68,37,50,50,111,102,102,79,117,116,37,50,50,37,50,48,115,116,100,68,101,118,105,97,116,105,111,110,37,51,68,37,50,50,48,37,50,50,37,51,69,37,51,67,37,50,70,102,101,71,97,117,115,115,105,97,110,66,108,117,114,37,51,69,37,51,67,102,101,66,108,101,110,100,37,50,48,105,110,37,51,68,37,50,50,83,111,117,114,99,101,71,114,97,112,104,105,99,37,50,50,37,50,48,105,110,50,37,51,68,37,50,50,98,108,117,114,79,117,116,37,50,50,37,50,48,109,111,100,101,37,51,68,37,50,50,110,111,114,109,97,108,37,50,50,37,51,69,37,51,67,37,50,70,102,101,66,108,101,110,100,37,51,69,37,51,67,37,50,70,102,105,108,116,101,114,37,51,69,37,51,67,37,50,70,100,101,102,115,37,51,69,37,51,67,112,97,116,104,37,50,48,100,37,51,68,37,50,50,77,49,48,37,50,67,53,48,99,48,37,50,67,48,37,50,67,48,37,50,67,48,46,53,37,50,67,48,46,49,37,50,67,49,46,52,99,48,37,50,67,48,46,53,37,50,67,48,46,49,37,50,67,49,37,50,67,48,46,50,37,50,67,49,46,55,99,48,37,50,67,48,46,51,37,50,67,48,46,49,37,50,67,48,46,55,37,50,67,48,46,49,37,50,67,49,46,49,99,48,46,49,37,50,67,48,46,52,37,50,67,48,46,49,37,50,67,48,46,56,37,50,67,48,46,50,37,50,67,49,46,50,99,48,46,50,37,50,67,48,46,56,37,50,67,48,46,51,37,50,67,49,46,56,37,50,67,48,46,53,37,50,67,50,46,56,37,50,48,99,48,46,51,37,50,67,49,37,50,67,48,46,54,37,50,67,50,46,49,37,50,67,48,46,57,37,50,67,51,46,50,99,48,46,51,37,50,67,49,46,49,37,50,67,48,46,57,37,50,67,50,46,51,37,50,67,49,46,52,37,50,67,51,46,53,99,48,46,53,37,50,67,49,46,50,37,50,67,49,46,50,37,50,67,50,46,52,37,50,67,49,46,56,37,50,67,51,46,55,99,48,46,51,37,50,67,48,46,54,37,50,67,48,46,56,37,50,67,49,46,50,37,50,67,49,46,50,37,50,67,49,46,57,99,48,46,52,37,50,67,48,46,54,37,50,67,48,46,56,37,50,67,49,46,51,37,50,67,49,46,51,37,50,67,49,46,57,37,50,48,99,49,37,50,67,49,46,50,37,50,67,49,46,57,37,50,67,50,46,54,37,50,67,51,46,49,37,50,67,51,46,55,99,50,46,50,37,50,67,50,46,53,37,50,67,53,37,50,67,52,46,55,37,50,67,55,46,57,37,50,67,54,46,55,99,51,37,50,67,50,37,50,67,54,46,53,37,50,67,51,46,52,37,50,67,49,48,46,49,37,50,67,52,46,54,99,51,46,54,37,50,67,49,46,49,37,50,67,55,46,53,37,50,67,49,46,53,37,50,67,49,49,46,50,37,50,67,49,46,54,99,52,45,48,46,49,37,50,67,55,46,55,45,48,46,54,37,50,67,49,49,46,51,45,49,46,54,37,50,48,99,51,46,54,45,49,46,50,37,50,67,55,45,50,46,54,37,50,67,49,48,45,52,46,54,99,51,45,50,37,50,67,53,46,56,45,52,46,50,37,50,67,55,46,57,45,54,46,55,99,49,46,50,45,49,46,50,37,50,67,50,46,49,45,50,46,53,37,50,67,51,46,49,45,51,46,55,99,48,46,53,45,48,46,54,37,50,67,48,46,57,45,49,46,51,37,50,67,49,46,51,45,49,46,57,99,48,46,52,45,48,46,54,37,50,67,48,46,56,45,49,46,51,37,50,67,49,46,50,45,49,46,57,37,50,48,99,48,46,54,45,49,46,51,37,50,67,49,46,51,45,50,46,53,37,50,67,49,46,56,45,51,46,55,99,48,46,53,45,49,46,50,37,50,67,49,45,50,46,52,37,50,67,49,46,52,45,51,46,53,99,48,46,51,45,49,46,49,37,50,67,48,46,54,45,50,46,50,37,50,67,48,46,57,45,51,46,50,99,48,46,50,45,49,37,50,67,48,46,52,45,49,46,57,37,50,67,48,46,53,45,50,46,56,99,48,46,49,45,48,46,52,37,50,67,48,46,49,45,48,46,56,37,50,67,48,46,50,45,49,46,50,37,50,48,99,48,45,48,46,52,37,50,67,48,46,49,45,48,46,55,37,50,67,48,46,49,45,49,46,49,99,48,46,49,45,48,46,55,37,50,67,48,46,49,45,49,46,50,37,50,67,48,46,50,45,49,46,55,67,57,48,37,50,67,53,48,46,53,37,50,67,57,48,37,50,67,53,48,37,50,67,57,48,37,50,67,53,48,115,48,37,50,67,48,46,53,37,50,67,48,37,50,67,49,46,52,99,48,37,50,67,48,46,53,37,50,67,48,37,50,67,49,37,50,67,48,37,50,67,49,46,55,99,48,37,50,67,48,46,51,37,50,67,48,37,50,67,48,46,55,37,50,67,48,37,50,67,49,46,49,37,50,48,99,48,37,50,67,48,46,52,45,48,46,49,37,50,67,48,46,56,45,48,46,49,37,50,67,49,46,50,99,45,48,46,49,37,50,67,48,46,57,45,48,46,50,37,50,67,49,46,56,45,48,46,52,37,50,67,50,46,56,99,45,48,46,50,37,50,67,49,45,48,46,53,37,50,67,50,46,49,45,48,46,55,37,50,67,51,46,51,99,45,48,46,51,37,50,67,49,46,50,45,48,46,56,37,50,67,50,46,52,45,49,46,50,37,50,67,51,46,55,99,45,48,46,50,37,50,67,48,46,55,45,48,46,53,37,50,67,49,46,51,45,48,46,56,37,50,67,49,46,57,37,50,48,99,45,48,46,51,37,50,67,48,46,55,45,48,46,54,37,50,67,49,46,51,45,48,46,57,37,50,67,50,99,45,48,46,51,37,50,67,48,46,55,45,48,46,55,37,50,67,49,46,51,45,49,46,49,37,50,67,50,99,45,48,46,52,37,50,67,48,46,55,45,48,46,55,37,50,67,49,46,52,45,49,46,50,37,50,67,50,99,45,49,37,50,67,49,46,51,45,49,46,57,37,50,67,50,46,55,45,51,46,49,37,50,67,52,99,45,50,46,50,37,50,67,50,46,55,45,53,37,50,67,53,45,56,46,49,37,50,67,55,46,49,37,50,48,99,45,48,46,56,37,50,67,48,46,53,45,49,46,54,37,50,67,49,45,50,46,52,37,50,67,49,46,53,99,45,48,46,56,37,50,67,48,46,53,45,49,46,55,37,50,67,48,46,57,45,50,46,54,37,50,67,49,46,51,76,54,54,37,50,67,56,55,46,55,108,45,49,46,52,37,50,67,48,46,53,99,45,48,46,57,37,50,67,48,46,51,45,49,46,56,37,50,67,48,46,55,45,50,46,56,37,50,67,49,99,45,51,46,56,37,50,67,49,46,49,45,55,46,57,37,50,67,49,46,55,45,49,49,46,56,37,50,67,49,46,56,76,52,55,37,50,67,57,48,46,56,37,50,48,99,45,49,37,50,67,48,45,50,45,48,46,50,45,51,45,48,46,51,108,45,49,46,53,45,48,46,50,108,45,48,46,55,45,48,46,49,76,52,49,46,49,37,50,67,57,48,99,45,49,45,48,46,51,45,49,46,57,45,48,46,53,45,50,46,57,45,48,46,55,99,45,48,46,57,45,48,46,51,45,49,46,57,45,48,46,55,45,50,46,56,45,49,76,51,52,37,50,67,56,55,46,55,108,45,49,46,51,45,48,46,54,37,50,48,99,45,48,46,57,45,48,46,52,45,49,46,56,45,48,46,56,45,50,46,54,45,49,46,51,99,45,48,46,56,45,48,46,53,45,49,46,54,45,49,45,50,46,52,45,49,46,53,99,45,51,46,49,45,50,46,49,45,53,46,57,45,52,46,53,45,56,46,49,45,55,46,49,99,45,49,46,50,45,49,46,50,45,50,46,49,45,50,46,55,45,51,46,49,45,52,99,45,48,46,53,45,48,46,54,45,48,46,56,45,49,46,52,45,49,46,50,45,50,37,50,48,99,45,48,46,52,45,48,46,55,45,48,46,56,45,49,46,51,45,49,46,49,45,50,99,45,48,46,51,45,48,46,55,45,48,46,54,45,49,46,51,45,48,46,57,45,50,99,45,48,46,51,45,48,46,55,45,48,46,54,45,49,46,51,45,48,46,56,45,49,46,57,99,45,48,46,52,45,49,46,51,45,48,46,57,45,50,46,53,45,49,46,50,45,51,46,55,99,45,48,46,51,45,49,46,50,45,48,46,53,45,50,46,51,45,48,46,55,45,51,46,51,37,50,48,99,45,48,46,50,45,49,45,48,46,51,45,50,45,48,46,52,45,50,46,56,99,45,48,46,49,45,48,46,52,45,48,46,49,45,48,46,56,45,48,46,49,45,49,46,50,99,48,45,48,46,52,37,50,67,48,45,48,46,55,37,50,67,48,45,49,46,49,99,48,45,48,46,55,37,50,67,48,45,49,46,50,37,50,67,48,45,49,46,55,67,49,48,37,50,67,53,48,46,53,37,50,67,49,48,37,50,67,53,48,37,50,67,49,48,37,50,67,53,48,122,37,50,50,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,48,49,51,49,51,56,37,50,50,37,50,48,102,105,108,116,101,114,37,51,68,37,50,50,117,114,108,40,37,50,51,117,105,108,45,114,105,110,103,45,115,104,97,100,111,119,41,37,50,50,37,51,69,37,51,67,97,110,105,109,97,116,101,84,114,97,110,115,102,111,114,109,37,50,48,97,116,116,114,105,98,117,116,101,78,97,109,101,37,51,68,37,50,50,116,114,97,110,115,102,111,114,109,37,50,50,37,50,48,116,121,112,101,37,51,68,37,50,50,114,111,116,97,116,101,37,50,50,37,50,48,102,114,111,109,37,51,68,37,50,50,48,37,50,48,53,48,37,50,48,53,48,37,50,50,37,50,48,116,111,37,51,68,37,50,50,51,54,48,37,50,48,53,48,37,50,48,53,48,37,50,50,37,50,48,114,101,112,101,97,116,67,111,117,110,116,37,51,68,37,50,50,105,110,100,101,102,105,110,105,116,101,37,50,50,37,50,48,100,117,114,37,51,68,37,50,50,49,115,37,50,50,37,51,69,37,51,67,37,50,70,97,110,105,109,97,116,101,84,114,97,110,115,102,111,114,109,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,41,59,99,111,110,116,101,110,116,58,39,39,59,104,101,105,103,104,116,58,49,52,112,120,59,119,105,100,116,104,58,49,52,112,120,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,62,32,111,108,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,119,104,111,108,101,114,111,119,123,104,101,105,103,104,116,58,50,53,112,120,59,108,101,102,116,58,48,59,109,97,114,103,105,110,45,116,111,112,58,45,50,53,112,120,59,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,119,105,100,116,104,58,49,48,48,37,59,122,45,105,110,100,101,120,58,49,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,102,111,99,117,115,101,100,58,110,111,116,40,46,115,101,108,101,99,116,101,100,41,32,62,32,46,119,104,111,108,101,114,111,119,123,111,117,116,108,105,110,101,58,49,112,120,32,100,111,116,116,101,100,32,98,108,97,99,107,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,116,105,116,108,101,45,119,114,97,112,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,58,114,103,98,97,40,48,44,48,44,48,44,46,48,55,53,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,115,101,108,101,99,116,101,100,32,62,32,46,116,105,116,108,101,45,119,114,97,112,58,104,111,118,101,114,32,43,32,46,119,104,111,108,101,114,111,119,44,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,115,101,108,101,99,116,101,100,32,62,32,46,119,104,111,108,101,114,111,119,123,98,97,99,107,103,114,111,117,110,100,58,35,66,66,68,69,70,66,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,97,123,99,111,108,111,114,58,35,52,57,53,48,53,55,125,46,105,114,115,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,45,119,101,98,107,105,116,45,116,111,117,99,104,45,99,97,108,108,111,117,116,58,110,111,110,101,59,45,119,101,98,107,105,116,45,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,59,45,107,104,116,109,108,45,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,59,45,109,111,122,45,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,59,45,109,115,45,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,59,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,125,46,105,114,115,45,108,105,110,101,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,59,111,117,116,108,105,110,101,58,110,111,110,101,32,33,105,109,112,111,114,116,97,110,116,125,46,105,114,115,45,108,105,110,101,45,108,101,102,116,44,46,105,114,115,45,108,105,110,101,45,109,105,100,44,46,105,114,115,45,108,105,110,101,45,114,105,103,104,116,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,116,111,112,58,48,125,46,105,114,115,45,108,105,110,101,45,108,101,102,116,123,108,101,102,116,58,48,59,119,105,100,116,104,58,49,49,37,125,46,105,114,115,45,108,105,110,101,45,109,105,100,123,108,101,102,116,58,57,37,59,119,105,100,116,104,58,56,50,37,125,46,105,114,115,45,108,105,110,101,45,114,105,103,104,116,123,114,105,103,104,116,58,48,59,119,105,100,116,104,58,49,49,37,125,46,105,114,115,45,98,97,114,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,108,101,102,116,58,48,59,119,105,100,116,104,58,48,125,46,105,114,115,45,98,97,114,45,101,100,103,101,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,116,111,112,58,48,59,108,101,102,116,58,48,125,46,105,114,115,45,115,104,97,100,111,119,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,100,105,115,112,108,97,121,58,110,111,110,101,59,108,101,102,116,58,48,59,119,105,100,116,104,58,48,125,46,105,114,115,45,115,108,105,100,101,114,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,99,117,114,115,111,114,58,100,101,102,97,117,108,116,59,122,45,105,110,100,101,120,58,49,125,46,105,114,115,45,115,108,105,100,101,114,46,115,105,110,103,108,101,123,125,46,105,114,115,45,115,108,105,100,101,114,46,102,114,111,109,123,125,46,105,114,115,45,115,108,105,100,101,114,46,116,111,123,125,46,105,114,115,45,115,108,105,100,101,114,46,116,121,112,101,95,108,97,115,116,123,122,45,105,110,100,101,120,58,50,125,46,105,114,115,45,109,105,110,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,108,101,102,116,58,48,59,99,117,114,115,111,114,58,100,101,102,97,117,108,116,125,46,105,114,115,45,109,97,120,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,114,105,103,104,116,58,48,59,99,117,114,115,111,114,58,100,101,102,97,117,108,116,125,46,105,114,115,45,102,114,111,109,44,46,105,114,115,45,115,105,110,103,108,101,44,46,105,114,115,45,116,111,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,116,111,112,58,48,59,108,101,102,116,58,48,59,99,117,114,115,111,114,58,100,101,102,97,117,108,116,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,119,114,97,112,125,46,105,114,115,45,103,114,105,100,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,100,105,115,112,108,97,121,58,110,111,110,101,59,98,111,116,116,111,109,58,48,59,108,101,102,116,58,48,59,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,50,48,112,120,125,46,105,114,115,45,119,105,116,104,45,103,114,105,100,32,46,105,114,115,45,103,114,105,100,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,105,114,115,45,103,114,105,100,45,112,111,108,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,48,59,108,101,102,116,58,48,59,119,105,100,116,104,58,49,112,120,59,104,101,105,103,104,116,58,56,112,120,59,98,97,99,107,103,114,111,117,110,100,58,35,48,48,48,125,46,105,114,115,45,103,114,105,100,45,112,111,108,46,115,109,97,108,108,123,104,101,105,103,104,116,58,52,112,120,125,46,105,114,115,45,103,114,105,100,45,116,101,120,116,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,98,111,116,116,111,109,58,48,59,108,101,102,116,58,48,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,119,114,97,112,59,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,59,102,111,110,116,45,115,105,122,101,58,57,112,120,59,108,105,110,101,45,104,101,105,103,104,116,58,57,112,120,59,112,97,100,100,105,110,103,58,48,32,51,112,120,59,99,111,108,111,114,58,35,48,48,48,125,46,105,114,115,45,100,105,115,97,98,108,101,45,109,97,115,107,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,116,111,112,58,48,59,108,101,102,116,58,45,49,37,59,119,105,100,116,104,58,49,48,50,37,59,104,101,105,103,104,116,58,49,48,48,37,59,99,117,114,115,111,114,58,100,101,102,97,117,108,116,59,98,97,99,107,103,114,111,117,110,100,58,114,103,98,97,40,48,44,48,44,48,44,48,46,48,41,59,122,45,105,110,100,101,120,58,50,125,46,105,114,115,45,100,105,115,97,98,108,101,100,123,111,112,97,99,105,116,121,58,48,46,52,125,46,108,116,45,105,101,57,32,46,105,114,115,45,100,105,115,97,98,108,101,100,123,102,105,108,116,101,114,58,32,97,108,112,104,97,40,111,112,97,99,105,116,121,61,52,48,41,125,46,105,114,115,45,104,105,100,100,101,110,45,105,110,112,117,116,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,32,33,105,109,112,111,114,116,97,110,116,59,100,105,115,112,108,97,121,58,98,108,111,99,107,32,33,105,109,112,111,114,116,97,110,116,59,116,111,112,58,48,32,33,105,109,112,111,114,116,97,110,116,59,108,101,102,116,58,48,32,33,105,109,112,111,114,116,97,110,116,59,119,105,100,116,104,58,48,32,33,105,109,112,111,114,116,97,110,116,59,104,101,105,103,104,116,58,48,32,33,105,109,112,111,114,116,97,110,116,59,102,111,110,116,45,115,105,122,101,58,48,32,33,105,109,112,111,114,116,97,110,116,59,108,105,110,101,45,104,101,105,103,104,116,58,48,32,33,105,109,112,111,114,116,97,110,116,59,112,97,100,100,105,110,103,58,48,32,33,105,109,112,111,114,116,97,110,116,59,109,97,114,103,105,110,58,48,32,33,105,109,112,111,114,116,97,110,116,59,111,117,116,108,105,110,101,58,110,111,110,101,32,33,105,109,112,111,114,116,97,110,116,59,122,45,105,110,100,101,120,58,45,57,57,57,57,32,33,105,109,112,111,114,116,97,110,116,59,98,97,99,107,103,114,111,117,110,100,58,110,111,110,101,32,33,105,109,112,111,114,116,97,110,116,59,98,111,114,100,101,114,45,115,116,121,108,101,58,115,111,108,105,100,32,33,105,109,112,111,114,116,97,110,116,59,98,111,114,100,101,114,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,32,33,105,109,112,111,114,116,97,110,116,125,10,46,105,114,115,45,98,97,114,44,46,105,114,115,45,98,97,114,45,101,100,103,101,44,46,105,114,115,45,108,105,110,101,45,108,101,102,116,44,46,105,114,115,45,108,105,110,101,45,109,105,100,44,46,105,114,115,45,108,105,110,101,45,114,105,103,104,116,44,46,105,114,115,45,115,108,105,100,101,114,123,98,97,99,107,103,114,111,117,110,100,58,117,114,108,40,34,46,46,47,105,109,103,47,115,112,114,105,116,101,45,115,107,105,110,45,102,108,97,116,46,112,110,103,34,41,32,114,101,112,101,97,116,45,120,125,46,105,114,115,123,104,101,105,103,104,116,58,52,48,112,120,125,46,105,114,115,45,119,105,116,104,45,103,114,105,100,123,104,101,105,103,104,116,58,54,48,112,120,125,46,105,114,115,45,108,105,110,101,123,104,101,105,103,104,116,58,49,50,112,120,59,116,111,112,58,50,53,112,120,125,46,105,114,115,45,108,105,110,101,45,108,101,102,116,123,104,101,105,103,104,116,58,49,50,112,120,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,48,32,45,51,48,112,120,125,46,105,114,115,45,108,105,110,101,45,109,105,100,123,104,101,105,103,104,116,58,49,50,112,120,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,48,32,48,125,46,105,114,115,45,108,105,110,101,45,114,105,103,104,116,123,104,101,105,103,104,116,58,49,50,112,120,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,49,48,48,37,32,45,51,48,112,120,125,46,105,114,115,45,98,97,114,123,104,101,105,103,104,116,58,49,50,112,120,59,116,111,112,58,50,53,112,120,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,48,32,45,54,48,112,120,125,46,105,114,115,45,98,97,114,45,101,100,103,101,123,116,111,112,58,50,53,112,120,59,104,101,105,103,104,116,58,49,50,112,120,59,119,105,100,116,104,58,57,112,120,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,48,32,45,57,48,112,120,125,46,105,114,115,45,115,104,97,100,111,119,123,104,101,105,103,104,116,58,51,112,120,59,116,111,112,58,51,52,112,120,59,98,97,99,107,103,114,111,117,110,100,58,35,48,48,48,59,111,112,97,99,105,116,121,58,48,46,50,53,125,46,108,116,45,105,101,57,32,46,105,114,115,45,115,104,97,100,111,119,123,102,105,108,116,101,114,58,32,97,108,112,104,97,40,111,112,97,99,105,116,121,61,50,53,41,125,46,105,114,115,45,115,108,105,100,101,114,123,119,105,100,116,104,58,49,54,112,120,59,104,101,105,103,104,116,58,49,56,112,120,59,116,111,112,58,50,50,112,120,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,48,32,45,49,50,48,112,120,125,46,105,114,115,45,115,108,105,100,101,114,46,115,116,97,116,101,95,104,111,118,101,114,44,46,105,114,115,45,115,108,105,100,101,114,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,48,32,45,49,53,48,112,120,125,46,105,114,115,45,109,97,120,44,46,105,114,115,45,109,105,110,123,99,111,108,111,114,58,35,57,57,57,59,102,111,110,116,45,115,105,122,101,58,49,48,112,120,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,51,51,51,59,116,101,120,116,45,115,104,97,100,111,119,58,110,111,110,101,59,116,111,112,58,48,59,112,97,100,100,105,110,103,58,49,112,120,32,51,112,120,59,98,97,99,107,103,114,111,117,110,100,58,35,101,49,101,52,101,57,59,45,109,111,122,45,98,111,114,100,101,114,45,114,97,100,105,117,115,58,52,112,120,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,52,112,120,125,46,105,114,115,45,102,114,111,109,44,46,105,114,115,45,115,105,110,103,108,101,44,46,105,114,115,45,116,111,123,99,111,108,111,114,58,35,102,102,102,59,102,111,110,116,45,115,105,122,101,58,49,48,112,120,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,51,51,51,59,116,101,120,116,45,115,104,97,100,111,119,58,110,111,110,101,59,112,97,100,100,105,110,103,58,49,112,120,32,53,112,120,59,98,97,99,107,103,114,111,117,110,100,58,35,50,49,57,54,70,51,59,45,109,111,122,45,98,111,114,100,101,114,45,114,97,100,105,117,115,58,52,112,120,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,52,112,120,125,46,105,114,115,45,102,114,111,109,58,97,102,116,101,114,44,46,105,114,115,45,115,105,110,103,108,101,58,97,102,116,101,114,44,46,105,114,115,45,116,111,58,97,102,116,101,114,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,99,111,110,116,101,110,116,58,34,34,59,98,111,116,116,111,109,58,45,54,112,120,59,108,101,102,116,58,53,48,37,59,119,105,100,116,104,58,48,59,104,101,105,103,104,116,58,48,59,109,97,114,103,105,110,45,108,101,102,116,58,45,51,112,120,59,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,59,98,111,114,100,101,114,58,51,112,120,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,50,49,57,54,70,51,125,46,105,114,115,45,103,114,105,100,45,112,111,108,123,98,97,99,107,103,114,111,117,110,100,58,35,101,49,101,52,101,57,125,46,105,114,115,45,103,114,105,100,45,116,101,120,116,123,99,111,108,111,114,58,35,57,57,57,125,46,105,114,115,45,100,105,115,97,98,108,101,100,123,125,10,46,106,113,45,116,111,97,115,116,45,119,114,97,112,44,46,106,113,45,116,111,97,115,116,45,119,114,97,112,32,42,123,109,97,114,103,105,110,58,48,59,112,97,100,100,105,110,103,58,48,125,46,106,113,45,116,111,97,115,116,45,119,114,97,112,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,112,111,115,105,116,105,111,110,58,102,105,120,101,100,59,119,105,100,116,104,58,50,53,48,112,120,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,59,108,101,116,116,101,114,45,115,112,97,99,105,110,103,58,110,111,114,109,97,108,59,122,45,105,110,100,101,120,58,57,48,48,48,33,105,109,112,111,114,116,97,110,116,125,46,106,113,45,116,111,97,115,116,45,119,114,97,112,46,98,111,116,116,111,109,45,108,101,102,116,123,98,111,116,116,111,109,58,50,48,112,120,59,108,101,102,116,58,50,48,112,120,125,46,106,113,45,116,111,97,115,116,45,119,114,97,112,46,98,111,116,116,111,109,45,114,105,103,104,116,123,98,111,116,116,111,109,58,50,48,112,120,59,114,105,103,104,116,58,52,48,112,120,125,46,106,113,45,116,111,97,115,116,45,119,114,97,112,46,116,111,112,45,108,101,102,116,123,116,111,112,58,50,48,112,120,59,108,101,102,116,58,50,48,112,120,125,46,106,113,45,116,111,97,115,116,45,119,114,97,112,46,116,111,112,45,114,105,103,104,116,123,116,111,112,58,50,48,112,120,59,114,105,103,104,116,58,52,48,112,120,125,46,106,113,45,116,111,97,115,116,45,115,105,110,103,108,101,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,59,112,97,100,100,105,110,103,58,49,48,112,120,59,109,97,114,103,105,110,58,48,32,48,32,53,112,120,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,52,112,120,59,102,111,110,116,45,115,105,122,101,58,49,50,112,120,59,102,111,110,116,45,102,97,109,105,108,121,58,97,114,105,97,108,44,115,97,110,115,45,115,101,114,105,102,59,108,105,110,101,45,104,101,105,103,104,116,58,49,55,112,120,59,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,97,108,108,33,105,109,112,111,114,116,97,110,116,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,52,52,52,59,99,111,108,111,114,58,35,102,102,102,125,46,106,113,45,116,111,97,115,116,45,115,105,110,103,108,101,32,104,50,123,102,111,110,116,45,102,97,109,105,108,121,58,97,114,105,97,108,44,115,97,110,115,45,115,101,114,105,102,59,102,111,110,116,45,115,105,122,101,58,49,52,112,120,59,109,97,114,103,105,110,58,48,32,48,32,55,112,120,59,98,97,99,107,103,114,111,117,110,100,58,48,32,48,59,99,111,108,111,114,58,105,110,104,101,114,105,116,59,108,105,110,101,45,104,101,105,103,104,116,58,105,110,104,101,114,105,116,59,108,101,116,116,101,114,45,115,112,97,99,105,110,103,58,110,111,114,109,97,108,125,46,106,113,45,116,111,97,115,116,45,115,105,110,103,108,101,32,97,123,99,111,108,111,114,58,35,101,101,101,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,59,102,111,110,116,45,119,101,105,103,104,116,58,55,48,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,49,112,120,32,115,111,108,105,100,32,35,102,102,102,59,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,51,112,120,59,102,111,110,116,45,115,105,122,101,58,49,50,112,120,125,46,106,113,45,116,111,97,115,116,45,115,105,110,103,108,101,32,117,108,123,109,97,114,103,105,110,58,48,32,48,32,48,32,49,53,112,120,59,98,97,99,107,103,114,111,117,110,100,58,48,32,48,59,112,97,100,100,105,110,103,58,48,125,46,106,113,45,116,111,97,115,116,45,115,105,110,103,108,101,32,117,108,32,108,105,123,108,105,115,116,45,115,116,121,108,101,45,116,121,112,101,58,100,105,115,99,33,105,109,112,111,114,116,97,110,116,59,108,105,110,101,45,104,101,105,103,104,116,58,49,55,112,120,59,98,97,99,107,103,114,111,117,110,100,58,48,32,48,59,109,97,114,103,105,110,58,48,59,112,97,100,100,105,110,103,58,48,59,108,101,116,116,101,114,45,115,112,97,99,105,110,103,58,110,111,114,109,97,108,125,46,99,108,111,115,101,45,106,113,45,116,111,97,115,116,45,115,105,110,103,108,101,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,51,112,120,59,114,105,103,104,116,58,55,112,120,59,102,111,110,116,45,115,105,122,101,58,49,52,112,120,59,99,117,114,115,111,114,58,112,111,105,110,116,101,114,125,46,106,113,45,116,111,97,115,116,45,108,111,97,100,101,114,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,45,50,112,120,59,104,101,105,103,104,116,58,53,112,120,59,119,105,100,116,104,58,48,59,108,101,102,116,58,48,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,53,112,120,59,98,97,99,107,103,114,111,117,110,100,58,114,101,100,125,46,106,113,45,116,111,97,115,116,45,108,111,97,100,101,100,123,119,105,100,116,104,58,49,48,48,37,125,46,106,113,45,104,97,115,45,105,99,111,110,123,112,97,100,100,105,110,103,58,49,48,112,120,32,49,48,112,120,32,49,48,112,120,32,53,48,112,120,59,98,97,99,107,103,114,111,117,110,100,45,114,101,112,101,97,116,58,110,111,45,114,101,112,101,97,116,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,49,48,112,120,125,46,106,113,45,105,99,111,110,45,105,110,102,111,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,100,97,116,97,58,105,109,97,103,101,47,112,110,103,59,98,97,115,101,54,52,44,105,86,66,79,82,119,48,75,71,103,111,65,65,65,65,78,83,85,104,69,85,103,65,65,65,66,103,65,65,65,65,89,67,65,89,65,65,65,68,103,100,122,51,52,65,65,65,65,65,88,78,83,82,48,73,65,114,115,52,99,54,81,65,65,65,65,82,110,81,85,49,66,65,65,67,120,106,119,118,56,89,81,85,65,65,65,65,74,99,69,104,90,99,119,65,65,68,115,77,65,65,65,55,68,65,99,100,118,113,71,81,65,65,65,71,119,83,85,82,66,86,69,104,76,116,90,97,57,83,103,78,66,69,77,99,57,115,85,120,120,82,99,111,85,75,83,122,83,87,73,104,88,112,70,77,104,104,89,87,70,104,97,66,103,52,121,80,89,105,87,67,88,90,120,66,76,69,82,115,76,82,83,51,69,81,107,69,102,119,67,75,100,106,87,74,65,119,83,75,67,103,111,75,67,99,117,100,118,52,79,53,89,76,114,116,55,69,122,103,88,104,105,85,51,47,52,43,98,50,99,107,109,119,86,106,74,83,112,75,107,81,54,119,65,105,52,103,119,104,84,43,122,51,119,82,66,99,69,122,48,121,106,83,115,101,85,84,114,99,82,121,102,115,72,115,88,109,68,48,65,109,98,72,79,67,57,73,105,56,86,73,109,110,117,88,66,80,103,108,72,112,81,53,119,119,83,86,77,55,115,78,110,84,71,55,90,97,52,74,119,68,100,67,106,120,121,65,105,72,51,110,121,65,50,109,116,97,84,74,117,102,105,68,90,53,100,67,97,113,108,73,116,73,76,104,49,78,72,97,116,102,78,53,115,107,118,106,120,57,90,51,56,109,54,57,67,103,122,117,88,109,90,103,86,114,80,73,71,69,55,54,51,74,120,57,113,75,115,82,111,122,87,89,119,54,120,79,72,100,69,82,43,110,110,50,75,107,79,43,66,98,43,85,86,53,67,66,78,54,87,67,54,81,116,66,103,98,82,86,111,122,114,97,104,65,98,109,109,54,72,116,85,115,103,116,80,67,49,57,116,70,100,120,88,90,89,66,79,102,107,98,109,70,74,49,86,97,72,65,49,86,65,72,106,100,48,112,112,55,48,111,84,90,122,118,82,43,69,86,114,120,50,89,103,102,100,115,113,54,101,117,53,53,66,72,89,82,56,104,108,99,107,105,43,110,43,107,69,82,85,70,71,56,66,114,65,48,66,119,106,101,65,118,50,77,56,87,76,81,66,116,99,121,43,83,68,54,102,78,115,109,110,66,51,65,108,66,76,114,103,84,116,86,87,49,99,50,81,78,52,98,86,87,76,65,84,97,73,83,54,48,74,50,68,117,53,121,49,84,105,74,103,106,83,66,118,70,86,90,103,84,109,119,67,85,43,100,65,90,70,111,80,120,71,69,69,115,56,110,121,72,67,57,66,119,101,50,71,118,69,74,118,50,87,88,90,98,48,118,106,100,121,70,84,52,67,120,107,51,101,47,107,73,113,108,79,71,111,86,76,119,119,80,101,118,112,89,72,84,43,48,48,84,43,104,87,119,88,68,102,52,65,74,65,79,85,113,87,99,68,104,98,119,65,65,65,65,65,83,85,86,79,82,75,53,67,89,73,73,61,41,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,51,49,55,48,56,102,59,99,111,108,111,114,58,35,100,57,101,100,102,55,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,98,99,101,56,102,49,125,46,106,113,45,105,99,111,110,45,119,97,114,110,105,110,103,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,100,97,116,97,58,105,109,97,103,101,47,112,110,103,59,98,97,115,101,54,52,44,105,86,66,79,82,119,48,75,71,103,111,65,65,65,65,78,83,85,104,69,85,103,65,65,65,66,103,65,65,65,65,89,67,65,89,65,65,65,68,103,100,122,51,52,65,65,65,65,65,88,78,83,82,48,73,65,114,115,52,99,54,81,65,65,65,65,82,110,81,85,49,66,65,65,67,120,106,119,118,56,89,81,85,65,65,65,65,74,99,69,104,90,99,119,65,65,68,115,77,65,65,65,55,68,65,99,100,118,113,71,81,65,65,65,71,89,83,85,82,66,86,69,104,76,53,90,83,118,84,115,78,81,70,77,98,88,90,71,73,67,77,89,71,89,109,74,104,65,81,73,74,65,73,67,89,81,80,65,65,67,105,83,68,66,56,65,105,73,67,81,81,74,84,52,67,113,81,69,119,103,74,118,89,65,83,65,81,67,105,90,105,89,109,74,104,65,73,66,65,84,67,65,82,74,121,43,57,114,84,115,108,100,100,56,115,75,117,49,77,48,43,100,76,98,48,53,55,118,54,47,108,98,113,47,50,114,75,48,109,83,47,84,82,78,106,57,99,87,78,65,75,80,89,73,74,73,73,55,103,73,120,67,99,81,53,49,99,118,113,73,68,43,71,73,69,88,56,65,83,71,52,66,49,98,75,53,103,73,90,70,101,81,102,111,74,100,69,88,79,102,103,88,52,81,65,81,103,55,107,72,50,65,54,53,121,81,56,55,108,121,120,98,50,55,115,103,103,107,65,122,65,117,70,104,98,98,103,49,75,50,107,103,67,107,66,49,98,86,119,121,73,82,57,109,50,76,55,80,82,80,73,104,68,85,73,88,103,71,116,121,75,119,53,55,53,121,122,51,108,84,78,115,54,88,52,74,88,110,106,86,43,76,75,77,47,109,51,77,121,100,110,84,98,116,79,75,73,106,116,122,54,86,104,67,66,113,52,118,83,109,51,110,99,100,114,68,50,108,107,48,86,103,85,88,83,86,75,106,86,68,74,88,74,122,105,106,87,49,82,81,100,115,85,55,70,55,55,72,101,56,117,54,56,107,111,78,90,84,122,56,79,122,53,121,71,97,54,74,51,72,51,108,90,48,120,89,103,88,66,75,50,81,121,109,108,87,87,65,43,82,87,110,89,104,115,107,76,66,118,50,118,109,69,43,104,66,77,67,116,98,65,55,75,88,53,100,114,87,121,82,84,47,50,74,115,113,90,50,73,118,102,66,57,89,52,98,87,68,78,77,70,98,74,82,70,109,67,57,69,55,52,83,111,83,48,67,113,117,108,119,106,107,67,48,43,53,98,112,99,86,49,67,90,56,78,77,101,106,52,112,106,121,48,85,43,100,111,68,81,115,71,121,111,49,104,122,86,74,116,116,73,106,104,81,55,71,110,66,116,82,70,78,49,85,97,114,85,108,72,56,70,51,120,105,99,116,43,72,89,48,55,114,69,122,111,85,71,80,108,87,99,106,82,70,82,114,52,47,103,67,104,90,103,99,51,90,76,50,100,56,111,65,65,65,65,65,83,85,86,79,82,75,53,67,89,73,73,61,41,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,56,97,54,100,51,98,59,99,111,108,111,114,58,35,102,99,102,56,101,51,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,97,101,98,99,99,125,46,106,113,45,105,99,111,110,45,101,114,114,111,114,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,100,97,116,97,58,105,109,97,103,101,47,112,110,103,59,98,97,115,101,54,52,44,105,86,66,79,82,119,48,75,71,103,111,65,65,65,65,78,83,85,104,69,85,103,65,65,65,66,103,65,65,65,65,89,67,65,89,65,65,65,68,103,100,122,51,52,65,65,65,65,65,88,78,83,82,48,73,65,114,115,52,99,54,81,65,65,65,65,82,110,81,85,49,66,65,65,67,120,106,119,118,56,89,81,85,65,65,65,65,74,99,69,104,90,99,119,65,65,68,115,77,65,65,65,55,68,65,99,100,118,113,71,81,65,65,65,72,79,83,85,82,66,86,69,104,76,114,90,97,47,83,103,78,66,69,77,90,122,104,48,87,75,67,67,108,83,67,75,97,73,89,79,69,68,43,65,65,75,101,81,81,76,71,56,72,87,122,116,76,67,73,109,66,114,89,97,100,103,73,100,89,43,103,73,75,78,89,107,66,70,83,119,117,55,67,65,111,113,67,103,107,107,111,71,66,73,47,69,50,56,80,100,98,76,90,109,101,68,76,103,122,90,122,99,120,56,51,47,122,90,50,83,83,88,67,49,106,57,102,114,43,73,49,72,113,57,51,103,50,121,120,72,52,105,119,77,49,118,107,111,66,87,65,100,120,67,109,112,122,84,120,102,107,78,50,82,99,121,90,78,97,72,70,73,107,83,111,49,48,43,56,107,103,120,107,88,73,85,82,86,53,72,71,120,84,109,70,117,99,55,53,66,50,82,102,81,107,112,120,72,71,56,97,65,103,97,65,70,97,48,116,65,72,113,89,70,102,81,55,73,119,101,50,121,104,79,68,107,56,43,74,52,67,55,121,65,111,82,84,87,73,51,119,47,52,107,108,71,82,103,82,52,108,79,55,82,112,110,57,43,103,118,77,121,87,112,43,117,120,70,104,56,43,72,43,65,82,108,103,78,49,110,74,117,74,117,81,65,89,118,78,107,69,110,119,71,70,99,107,49,56,69,114,52,113,51,101,103,69,99,47,111,79,43,109,104,76,100,75,103,82,121,104,100,78,70,105,97,99,67,48,114,108,79,67,98,104,78,86,122,52,72,57,70,110,65,89,103,68,66,118,85,51,81,73,105,111,90,108,74,70,76,74,116,115,111,72,89,82,68,102,105,90,111,85,121,73,120,113,67,116,82,112,86,108,65,78,113,48,69,85,52,100,65,112,106,114,116,103,101,122,80,70,97,100,53,83,49,57,87,103,106,107,99,48,104,78,86,110,117,70,52,72,106,86,65,54,67,55,81,114,83,73,98,121,108,66,43,111,90,101,51,97,72,103,66,115,113,108,78,113,75,89,72,52,56,106,88,121,74,75,77,117,65,98,105,121,86,74,56,75,122,97,66,51,101,82,99,48,112,103,57,86,119,81,52,110,105,70,114,121,73,54,56,113,105,79,105,51,65,98,106,119,100,115,102,110,65,116,107,48,98,67,106,84,76,74,75,114,54,109,114,68,57,103,56,105,113,47,83,47,66,56,49,104,103,117,79,77,108,81,84,110,86,121,71,52,48,119,65,99,106,110,109,103,115,67,78,69,83,68,114,106,109,101,55,119,102,102,116,80,52,80,55,83,80,52,78,51,67,74,90,100,118,122,111,78,121,71,113,50,99,47,72,87,79,88,74,71,115,118,86,103,43,82,65,47,107,50,77,67,47,119,78,54,73,50,89,65,50,80,116,56,71,107,65,65,65,65,65,83,85,86,79,82,75,53,67,89,73,73,61,41,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,97,57,52,52,52,50,59,99,111,108,111,114,58,35,102,50,100,101,100,101,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,101,98,99,99,100,49,125,46,106,113,45,105,99,111,110,45,115,117,99,99,101,115,115,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,100,97,116,97,58,105,109,97,103,101,47,112,110,103,59,98,97,115,101,54,52,44,105,86,66,79,82,119,48,75,71,103,111,65,65,65,65,78,83,85,104,69,85,103,65,65,65,66,103,65,65,65,65,89,67,65,89,65,65,65,68,103,100,122,51,52,65,65,65,65,65,88,78,83,82,48,73,65,114,115,52,99,54,81,65,65,65,65,82,110,81,85,49,66,65,65,67,120,106,119,118,56,89,81,85,65,65,65,65,74,99,69,104,90,99,119,65,65,68,115,77,65,65,65,55,68,65,99,100,118,113,71,81,65,65,65,68,115,83,85,82,66,86,69,104,76,89,50,65,89,66,102,81,77,103,102,47,47,47,51,80,56,43,47,101,118,65,73,103,118,65,47,70,115,73,70,43,66,97,118,89,68,68,87,77,66,71,114,111,97,83,77,77,66,105,69,56,86,67,55,65,90,68,114,73,70,97,77,70,110,105,105,51,65,90,84,106,85,103,115,85,85,87,85,68,65,56,79,100,65,72,54,105,81,98,81,69,104,119,52,72,121,71,115,80,69,99,75,66,88,66,73,67,52,65,82,104,101,120,52,71,52,66,115,106,109,119,101,85,49,115,111,73,70,97,71,103,47,87,116,111,70,90,82,73,90,100,69,118,73,77,104,120,107,67,67,106,88,73,86,115,65,84,86,54,103,70,71,65,67,115,52,82,115,119,48,69,71,103,73,73,72,51,81,74,89,74,103,72,83,65,82,81,90,68,114,87,65,66,43,106,97,119,122,103,115,43,81,50,85,79,52,57,68,55,106,110,82,83,82,71,111,69,70,82,73,76,99,100,109,69,77,87,71,73,48,99,109,48,74,74,50,81,112,89,65,49,82,68,118,99,109,122,74,69,87,104,65,66,104,68,47,112,113,114,76,48,83,48,67,87,117,65,66,75,103,110,82,107,105,57,108,76,115,101,83,55,103,50,65,108,113,119,72,87,81,83,75,72,52,111,75,76,114,73,76,112,82,71,104,69,81,67,119,50,76,105,82,85,73,97,52,108,119,65,65,65,65,66,74,82,85,53,69,114,107,74,103,103,103,61,61,41,59,99,111,108,111,114,58,35,100,102,102,48,100,56,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,51,99,55,54,51,100,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,54,101,57,99,54,125,47,42,33,32,76,105,116,121,32,45,32,118,50,46,52,46,48,32,45,32,50,48,49,57,45,48,56,45,49,48,10,42,32,104,116,116,112,58,47,47,115,111,114,103,97,108,108,97,46,99,111,109,47,108,105,116,121,47,10,42,32,67,111,112,121,114,105,103,104,116,32,40,99,41,32,50,48,49,53,45,50,48,49,57,32,74,97,110,32,83,111,114,103,97,108,108,97,59,32,76,105,99,101,110,115,101,100,32,77,73,84,32,42,47,46,108,105,116,121,123,122,45,105,110,100,101,120,58,57,57,57,48,59,112,111,115,105,116,105,111,110,58,102,105,120,101,100,59,116,111,112,58,48,59,114,105,103,104,116,58,48,59,98,111,116,116,111,109,58,48,59,108,101,102,116,58,48,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,119,114,97,112,59,98,97,99,107,103,114,111,117,110,100,58,35,48,98,48,98,48,98,59,98,97,99,107,103,114,111,117,110,100,58,114,103,98,97,40,48,44,48,44,48,44,48,46,57,41,59,111,117,116,108,105,110,101,58,110,111,110,101,32,33,105,109,112,111,114,116,97,110,116,59,111,112,97,99,105,116,121,58,48,59,45,119,101,98,107,105,116,45,116,114,97,110,115,105,116,105,111,110,58,111,112,97,99,105,116,121,32,46,51,115,32,101,97,115,101,59,45,111,45,116,114,97,110,115,105,116,105,111,110,58,111,112,97,99,105,116,121,32,46,51,115,32,101,97,115,101,59,116,114,97,110,115,105,116,105,111,110,58,111,112,97,99,105,116,121,32,46,51,115,32,101,97,115,101,125,46,108,105,116,121,46,108,105,116,121,45,111,112,101,110,101,100,123,111,112,97,99,105,116,121,58,49,125,46,108,105,116,121,46,108,105,116,121,45,99,108,111,115,101,100,123,111,112,97,99,105,116,121,58,48,125,46,108,105,116,121,32,42,123,45,119,101,98,107,105,116,45,98,111,120,45,115,105,122,105,110,103,58,98,111,114,100,101,114,45,98,111,120,59,45,109,111,122,45,98,111,120,45,115,105,122,105,110,103,58,98,111,114,100,101,114,45,98,111,120,59,98,111,120,45,115,105,122,105,110,103,58,98,111,114,100,101,114,45,98,111,120,125,46,108,105,116,121,45,119,114,97,112,123,122,45,105,110,100,101,120,58,57,57,57,48,59,112,111,115,105,116,105,111,110,58,102,105,120,101,100,59,116,111,112,58,48,59,114,105,103,104,116,58,48,59,98,111,116,116,111,109,58,48,59,108,101,102,116,58,48,59,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,59,111,117,116,108,105,110,101,58,110,111,110,101,32,33,105,109,112,111,114,116,97,110,116,125,46,108,105,116,121,45,119,114,97,112,58,98,101,102,111,114,101,123,99,111,110,116,101,110,116,58,39,39,59,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,104,101,105,103,104,116,58,49,48,48,37,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,109,105,100,100,108,101,59,109,97,114,103,105,110,45,114,105,103,104,116,58,45,48,46,50,53,101,109,125,46,108,105,116,121,45,108,111,97,100,101,114,123,122,45,105,110,100,101,120,58,57,57,57,49,59,99,111,108,111,114,58,35,102,102,102,59,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,53,48,37,59,109,97,114,103,105,110,45,116,111,112,58,45,48,46,56,101,109,59,119,105,100,116,104,58,49,48,48,37,59,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,59,102,111,110,116,45,115,105,122,101,58,49,52,112,120,59,102,111,110,116,45,102,97,109,105,108,121,58,65,114,105,97,108,44,72,101,108,118,101,116,105,99,97,44,115,97,110,115,45,115,101,114,105,102,59,111,112,97,99,105,116,121,58,48,59,45,119,101,98,107,105,116,45,116,114,97,110,115,105,116,105,111,110,58,111,112,97,99,105,116,121,32,46,51,115,32,101,97,115,101,59,45,111,45,116,114,97,110,115,105,116,105,111,110,58,111,112,97,99,105,116,121,32,46,51,115,32,101,97,115,101,59,116,114,97,110,115,105,116,105,111,110,58,111,112,97,99,105,116,121,32,46,51,115,32,101,97,115,101,125,46,108,105,116,121,45,108,111,97,100,105,110,103,32,46,108,105,116,121,45,108,111,97,100,101,114,123,111,112,97,99,105,116,121,58,49,125,46,108,105,116,121,45,99,111,110,116,97,105,110,101,114,123,122,45,105,110,100,101,120,58,57,57,57,50,59,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,116,101,120,116,45,97,108,105,103,110,58,108,101,102,116,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,109,105,100,100,108,101,59,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,114,109,97,108,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,59,109,97,120,45,104,101,105,103,104,116,58,49,48,48,37,59,111,117,116,108,105,110,101,58,110,111,110,101,32,33,105,109,112,111,114,116,97,110,116,125,46,108,105,116,121,45,99,111,110,116,101,110,116,123,122,45,105,110,100,101,120,58,57,57,57,51,59,119,105,100,116,104,58,49,48,48,37,59,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,58,115,99,97,108,101,40,49,41,59,45,109,115,45,116,114,97,110,115,102,111,114,109,58,115,99,97,108,101,40,49,41,59,45,111,45,116,114,97,110,115,102,111,114,109,58,115,99,97,108,101,40,49,41,59,116,114,97,110,115,102,111,114,109,58,115,99,97,108,101,40,49,41,59,45,119,101,98,107,105,116,45,116,114,97,110,115,105,116,105,111,110,58,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,32,46,51,115,32,101,97,115,101,59,116,114,97,110,115,105,116,105,111,110,58,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,32,46,51,115,32,101,97,115,101,59,45,111,45,116,114,97,110,115,105,116,105,111,110,58,45,111,45,116,114,97,110,115,102,111,114,109,32,46,51,115,32,101,97,115,101,59,116,114,97,110,115,105,116,105,111,110,58,116,114,97,110,115,102,111,114,109,32,46,51,115,32,101,97,115,101,59,116,114,97,110,115,105,116,105,111,110,58,116,114,97,110,115,102,111,114,109,32,46,51,115,32,101,97,115,101,44,32,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,32,46,51,115,32,101,97,115,101,44,32,45,111,45,116,114,97,110,115,102,111,114,109,32,46,51,115,32,101,97,115,101,125,46,108,105,116,121,45,108,111,97,100,105,110,103,32,46,108,105,116,121,45,99,111,110,116,101,110,116,44,46,108,105,116,121,45,99,108,111,115,101,100,32,46,108,105,116,121,45,99,111,110,116,101,110,116,123,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,58,115,99,97,108,101,40,46,56,41,59,45,109,115,45,116,114,97,110,115,102,111,114,109,58,115,99,97,108,101,40,46,56,41,59,45,111,45,116,114,97,110,115,102,111,114,109,58,115,99,97,108,101,40,46,56,41,59,116,114,97,110,115,102,111,114,109,58,115,99,97,108,101,40,46,56,41,125,46,108,105,116,121,45,99,111,110,116,101,110,116,58,97,102,116,101,114,123,99,111,110,116,101,110,116,58,39,39,59,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,108,101,102,116,58,48,59,116,111,112,58,48,59,98,111,116,116,111,109,58,48,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,114,105,103,104,116,58,48,59,119,105,100,116,104,58,97,117,116,111,59,104,101,105,103,104,116,58,97,117,116,111,59,122,45,105,110,100,101,120,58,45,49,59,45,119,101,98,107,105,116,45,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,56,112,120,32,114,103,98,97,40,48,44,48,44,48,44,48,46,54,41,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,56,112,120,32,114,103,98,97,40,48,44,48,44,48,44,48,46,54,41,125,46,108,105,116,121,45,99,108,111,115,101,123,122,45,105,110,100,101,120,58,57,57,57,52,59,119,105,100,116,104,58,51,53,112,120,59,104,101,105,103,104,116,58,51,53,112,120,59,112,111,115,105,116,105,111,110,58,102,105,120,101,100,59,114,105,103,104,116,58,48,59,116,111,112,58,48,59,45,119,101,98,107,105,116,45,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,59,99,117,114,115,111,114,58,112,111,105,110,116,101,114,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,59,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,59,112,97,100,100,105,110,103,58,48,59,99,111,108,111,114,58,35,102,102,102,59,102,111,110,116,45,115,116,121,108,101,58,110,111,114,109,97,108,59,102,111,110,116,45,115,105,122,101,58,51,53,112,120,59,102,111,110,116,45,102,97,109,105,108,121,58,65,114,105,97,108,44,66,97,115,107,101,114,118,105,108,108,101,44,109,111,110,111,115,112,97,99,101,59,108,105,110,101,45,104,101,105,103,104,116,58,51,53,112,120,59,116,101,120,116,45,115,104,97,100,111,119,58,48,32,49,112,120,32,50,112,120,32,114,103,98,97,40,48,44,48,44,48,44,48,46,54,41,59,98,111,114,100,101,114,58,48,59,98,97,99,107,103,114,111,117,110,100,58,110,111,110,101,59,111,117,116,108,105,110,101,58,110,111,110,101,59,45,119,101,98,107,105,116,45,98,111,120,45,115,104,97,100,111,119,58,110,111,110,101,59,98,111,120,45,115,104,97,100,111,119,58,110,111,110,101,125,46,108,105,116,121,45,99,108,111,115,101,58,58,45,109,111,122,45,102,111,99,117,115,45,105,110,110,101,114,123,98,111,114,100,101,114,58,48,59,112,97,100,100,105,110,103,58,48,125,46,108,105,116,121,45,99,108,111,115,101,58,104,111,118,101,114,44,46,108,105,116,121,45,99,108,111,115,101,58,102,111,99,117,115,44,46,108,105,116,121,45,99,108,111,115,101,58,97,99,116,105,118,101,44,46,108,105,116,121,45,99,108,111,115,101,58,118,105,115,105,116,101,100,123,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,59,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,59,112,97,100,100,105,110,103,58,48,59,99,111,108,111,114,58,35,102,102,102,59,102,111,110,116,45,115,116,121,108,101,58,110,111,114,109,97,108,59,102,111,110,116,45,115,105,122,101,58,51,53,112,120,59,102,111,110,116,45,102,97,109,105,108,121,58,65,114,105,97,108,44,66,97,115,107,101,114,118,105,108,108,101,44,109,111,110,111,115,112,97,99,101,59,108,105,110,101,45,104,101,105,103,104,116,58,51,53,112,120,59,116,101,120,116,45,115,104,97,100,111,119,58,48,32,49,112,120,32,50,112,120,32,114,103,98,97,40,48,44,48,44,48,44,48,46,54,41,59,98,111,114,100,101,114,58,48,59,98,97,99,107,103,114,111,117,110,100,58,110,111,110,101,59,111,117,116,108,105,110,101,58,110,111,110,101,59,45,119,101,98,107,105,116,45,98,111,120,45,115,104,97,100,111,119,58,110,111,110,101,59,98,111,120,45,115,104,97,100,111,119,58,110,111,110,101,125,46,108,105,116,121,45,99,108,111,115,101,58,97,99,116,105,118,101,123,116,111,112,58,49,112,120,125,46,108,105,116,121,45,105,109,97,103,101,32,105,109,103,123,109,97,120,45,119,105,100,116,104,58,49,48,48,37,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,108,105,110,101,45,104,101,105,103,104,116,58,48,59,98,111,114,100,101,114,58,48,125,46,108,105,116,121,45,105,102,114,97,109,101,32,46,108,105,116,121,45,99,111,110,116,97,105,110,101,114,44,46,108,105,116,121,45,121,111,117,116,117,98,101,32,46,108,105,116,121,45,99,111,110,116,97,105,110,101,114,44,46,108,105,116,121,45,118,105,109,101,111,32,46,108,105,116,121,45,99,111,110,116,97,105,110,101,114,44,46,108,105,116,121,45,102,97,99,101,98,111,111,107,118,105,100,101,111,32,46,108,105,116,121,45,99,111,110,116,97,105,110,101,114,44,46,108,105,116,121,45,103,111,111,103,108,101,109,97,112,115,32,46,108,105,116,121,45,99,111,110,116,97,105,110,101,114,123,119,105,100,116,104,58,49,48,48,37,59,109,97,120,45,119,105,100,116,104,58,57,54,52,112,120,125,46,108,105,116,121,45,105,102,114,97,109,101,45,99,111,110,116,97,105,110,101,114,123,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,48,59,112,97,100,100,105,110,103,45,116,111,112,58,53,54,46,50,53,37,59,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,97,108,108,59,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,90,40,48,41,59,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,90,40,48,41,59,45,119,101,98,107,105,116,45,111,118,101,114,102,108,111,119,45,115,99,114,111,108,108,105,110,103,58,116,111,117,99,104,125,46,108,105,116,121,45,105,102,114,97,109,101,45,99,111,110,116,97,105,110,101,114,32,105,102,114,97,109,101,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,116,111,112,58,48,59,108,101,102,116,58,48,59,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,49,48,48,37,59,45,119,101,98,107,105,116,45,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,56,112,120,32,114,103,98,97,40,48,44,48,44,48,44,48,46,54,41,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,56,112,120,32,114,103,98,97,40,48,44,48,44,48,44,48,46,54,41,59,98,97,99,107,103,114,111,117,110,100,58,35,48,48,48,125,46,108,105,116,121,45,104,105,100,101,123,100,105,115,112,108,97,121,58,110,111,110,101,125,42,58,102,111,99,117,115,32,123,10,32,32,32,32,111,117,116,108,105,110,101,58,32,48,59,10,125,10,10,46,105,110,102,111,45,105,99,111,110,32,123,10,32,32,32,32,119,105,100,116,104,58,32,49,114,101,109,59,10,32,32,32,32,109,97,114,103,105,110,45,114,105,103,104,116,58,32,48,46,50,114,101,109,59,10,32,32,32,32,99,117,114,115,111,114,58,32,112,111,105,110,116,101,114,59,10,32,32,32,32,108,105,110,101,45,104,101,105,103,104,116,58,32,49,114,101,109,59,10,32,32,32,32,104,101,105,103,104,116,58,32,49,114,101,109,59,10,32,32,32,32,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,32,117,114,108,40,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,98,97,115,101,54,52,44,80,72,78,50,90,121,66,52,98,87,120,117,99,122,48,105,97,72,82,48,99,68,111,118,76,51,100,51,100,121,53,51,77,121,53,118,99,109,99,118,77,106,65,119,77,67,57,122,100,109,99,105,73,72,104,116,98,71,53,122,79,110,104,115,97,87,53,114,80,83,74,111,100,72,82,119,79,105,56,118,100,51,100,51,76,110,99,122,76,109,57,121,90,121,56,120,79,84,107,53,76,51,104,115,97,87,53,114,73,105,66,52,80,83,73,119,99,72,103,105,73,72,107,57,73,106,66,119,101,67,73,75,73,67,65,103,73,67,66,50,97,87,86,51,81,109,57,52,80,83,73,119,73,68,65,103,78,68,73,50,76,106,89,50,78,121,65,48,77,106,89,117,78,106,89,51,73,105,66,122,100,72,108,115,90,84,48,105,90,87,53,104,89,109,120,108,76,87,74,104,89,50,116,110,99,109,57,49,98,109,81,54,98,109,86,51,73,68,65,103,77,67,65,48,77,106,89,117,78,106,89,51,73,68,81,121,78,105,52,50,78,106,99,55,73,105,66,109,97,87,120,115,80,83,73,106,90,109,90,109,73,106,52,75,80,71,99,43,67,105,65,103,73,67,65,56,90,122,52,75,73,67,65,103,73,67,65,103,73,67,65,56,90,122,52,75,73,67,65,103,73,67,65,103,73,67,65,103,73,67,65,103,80,72,74,108,89,51,81,103,101,68,48,105,77,84,107,121,73,105,66,53,80,83,73,120,79,84,73,105,73,72,100,112,90,72,82,111,80,83,73,48,77,105,52,50,78,106,99,105,73,71,104,108,97,87,100,111,100,68,48,105,77,84,73,52,73,105,56,43,67,105,65,103,73,67,65,103,73,67,65,103,73,67,65,103,73,68,120,119,89,88,82,111,73,71,81,57,73,107,48,121,77,84,77,117,77,122,77,122,76,68,66,68,79,84,85,117,78,68,89,51,76,68,65,115,77,67,119,53,78,83,52,48,78,106,99,115,77,67,119,121,77,84,77,117,77,122,77,122,99,122,107,49,76,106,81,50,78,121,119,121,77,84,77,117,77,122,77,122,76,68,73,120,77,121,52,122,77,122,77,115,77,106,69,122,76,106,77,122,77,49,77,48,77,106,89,117,78,106,89,51,76,68,77,122,77,83,52,121,76,68,81,121,78,105,52,50,78,106,99,115,77,106,69,122,76,106,77,122,77,119,111,103,73,67,65,103,73,67,65,103,73,67,65,103,73,67,65,103,73,67,65,103,85,122,77,122,77,83,52,121,76,68,65,115,77,106,69,122,76,106,77,122,77,121,119,119,101,105,66,78,77,106,69,122,76,106,77,122,77,121,119,122,79,68,82,106,76,84,107,48,76,106,65,52,76,68,65,116,77,84,99,119,76,106,89,50,78,121,48,51,78,105,52,49,79,68,99,116,77,84,99,119,76,106,89,50,78,121,48,120,78,122,65,117,78,106,89,51,85,122,69,120,79,83,52,121,78,84,77,115,78,68,73,117,78,106,89,51,76,68,73,120,77,121,52,122,77,122,77,115,78,68,73,117,78,106,89,51,67,105,65,103,73,67,65,103,73,67,65,103,73,67,65,103,73,67,65,103,73,67,66,84,77,122,103,48,76,68,69,120,79,83,52,121,78,84,77,115,77,122,103,48,76,68,73,120,77,121,52,122,77,122,78,84,77,122,65,51,76,106,81,120,77,121,119,122,79,68,81,115,77,106,69,122,76,106,77,122,77,121,119,122,79,68,82,54,73,105,56,43,67,105,65,103,73,67,65,103,73,67,65,103,73,67,65,103,73,68,120,121,90,87,78,48,73,72,103,57,73,106,69,53,77,105,73,103,101,84,48,105,77,84,65,50,76,106,89,50,78,121,73,103,100,50,108,107,100,71,103,57,73,106,81,121,76,106,89,50,78,121,73,103,97,71,86,112,90,50,104,48,80,83,73,48,77,105,52,50,78,106,99,105,76,122,52,75,73,67,65,103,73,67,65,103,73,67,65,56,76,50,99,43,67,105,65,103,73,67,65,56,76,50,99,43,67,106,119,118,90,122,52,75,80,67,57,122,100,109,99,43,67,103,61,61,41,59,10,32,32,32,32,102,105,108,116,101,114,58,32,98,114,105,103,104,116,110,101,115,115,40,52,53,37,41,59,10,125,10,10,46,105,110,102,111,45,105,99,111,110,58,104,111,118,101,114,32,123,10,32,32,32,32,99,111,108,111,114,58,32,105,110,104,101,114,105,116,59,10,125,10,10,46,109,111,100,97,108,45,116,105,116,108,101,32,123,10,32,32,32,32,109,97,120,45,119,105,100,116,104,58,32,99,97,108,99,40,49,48,48,37,32,45,32,50,114,101,109,41,59,10,32,32,32,32,111,118,101,114,102,108,111,119,58,32,104,105,100,100,101,110,59,10,32,32,32,32,116,101,120,116,45,111,118,101,114,102,108,111,119,58,32,101,108,108,105,112,115,105,115,59,10,125,10,10,46,112,97,116,104,45,114,111,119,32,123,10,32,32,32,32,100,105,115,112,108,97,121,58,32,45,109,115,45,102,108,101,120,98,111,120,59,10,32,32,32,32,100,105,115,112,108,97,121,58,32,102,108,101,120,59,10,32,32,32,32,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,32,115,116,97,114,116,59,10,32,32,32,32,97,108,105,103,110,45,105,116,101,109,115,58,32,102,108,101,120,45,115,116,97,114,116,59,10,125,10,10,46,116,97,103,45,99,111,110,116,97,105,110,101,114,32,123,10,32,32,32,32,109,97,114,103,105,110,45,108,101,102,116,58,32,48,46,51,114,101,109,59,10,125,10,10,46,112,97,116,104,45,108,105,110,101,32,123,10,32,32,32,32,99,111,108,111,114,58,32,35,52,52,52,59,10,32,32,32,32,116,101,120,116,45,111,118,101,114,102,108,111,119,58,32,101,108,108,105,112,115,105,115,59,10,32,32,32,32,111,118,101,114,102,108,111,119,58,32,104,105,100,100,101,110,59,10,32,32,32,32,119,104,105,116,101,45,115,112,97,99,101,58,32,110,111,119,114,97,112,59,10,125,10,10,98,111,100,121,32,123,10,32,32,32,32,111,118,101,114,102,108,111,119,45,121,58,32,115,99,114,111,108,108,59,10,125,10,10,46,112,114,111,103,114,101,115,115,32,123,10,32,32,32,32,109,97,114,103,105,110,45,116,111,112,58,32,49,101,109,59,10,125,10,10,46,99,97,114,100,32,123,10,32,32,32,32,109,97,114,103,105,110,45,116,111,112,58,32,49,101,109,59,10,32,32,32,32,98,111,120,45,115,104,97,100,111,119,58,32,48,32,46,49,50,53,114,101,109,32,46,50,53,114,101,109,32,114,103,98,97,40,48,44,32,48,44,32,48,44,32,46,48,56,41,32,33,105,109,112,111,114,116,97,110,116,59,10,32,32,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,48,59,10,32,32,32,32,98,111,114,100,101,114,58,32,110,111,110,101,59,10,125,10,10,46,115,117,98,45,100,111,99,117,109,101,110,116,32,123,10,32,32,32,32,98,97,99,107,103,114,111,117,110,100,58,32,35,65,66,52,55,66,67,49,70,32,33,105,109,112,111,114,116,97,110,116,59,10,125,10,10,46,110,97,118,98,97,114,45,98,114,97,110,100,32,123,10,32,32,32,32,102,111,110,116,45,115,105,122,101,58,32,49,46,55,53,114,101,109,59,10,32,32,32,32,112,97,100,100,105,110,103,58,32,48,59,10,125,10,10,46,110,97,118,98,97,114,32,123,10,32,32,32,32,98,97,99,107,103,114,111,117,110,100,58,32,35,70,55,70,55,70,55,59,10,32,32,32,32,98,111,114,100,101,114,45,98,111,116,116,111,109,58,32,115,111,108,105,100,32,49,112,120,32,35,100,102,100,102,100,102,59,10,125,10,10,46,100,111,99,117,109,101,110,116,32,123,10,32,32,32,112,97,100,100,105,110,103,58,32,48,46,51,114,101,109,59,10,125,10,10,46,99,97,114,100,45,116,101,120,116,58,108,97,115,116,45,99,104,105,108,100,32,123,10,32,32,32,32,109,97,114,103,105,110,45,116,111,112,58,32,45,49,112,120,59,10,125,10,10,46,100,111,99,117,109,101,110,116,32,112,32,123,10,32,32,32,32,109,97,114,103,105,110,45,98,111,116,116,111,109,58,32,48,59,10,125,10,10,46,100,111,99,117,109,101,110,116,58,104,111,118,101,114,32,112,32,123,10,32,32,32,32,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,32,117,110,100,101,114,108,105,110,101,59,10,125,10,10,46,98,97,100,103,101,45,118,105,100,101,111,32,123,10,32,32,32,32,99,111,108,111,114,58,32,35,70,70,70,70,70,70,59,10,32,32,32,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,35,70,50,55,55,54,49,59,10,125,10,10,46,98,97,100,103,101,45,105,109,97,103,101,32,123,10,32,32,32,32,99,111,108,111,114,58,32,35,70,70,70,70,70,70,59,10,32,32,32,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,35,65,65,57,57,67,57,59,10,125,10,10,46,98,97,100,103,101,45,97,117,100,105,111,32,123,10,32,32,32,32,99,111,108,111,114,58,32,35,70,70,70,70,70,70,59,10,32,32,32,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,35,48,48,65,68,69,70,59,10,125,10,10,46,98,97,100,103,101,45,114,101,115,111,108,117,116,105,111,110,32,123,10,32,32,32,32,99,111,108,111,114,58,32,35,50,49,50,53,50,57,59,10,32,32,32,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,35,70,70,67,49,48,55,59,10,125,10,10,46,98,97,100,103,101,45,117,115,101,114,32,123,10,32,32,32,32,99,111,108,111,114,58,32,35,50,49,50,53,50,57,59,10,32,32,32,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,35,101,48,101,48,101,48,59,10,125,10,10,46,98,97,100,103,101,32,123,10,32,32,32,32,109,97,114,103,105,110,45,114,105,103,104,116,58,32,51,112,120,59,10,125,10,10,46,98,97,100,103,101,45,100,101,108,101,116,101,32,123,10,32,32,32,32,109,97,114,103,105,110,45,114,105,103,104,116,58,32,45,50,112,120,59,10,32,32,32,32,109,97,114,103,105,110,45,108,101,102,116,58,32,50,112,120,59,10,32,32,32,32,109,97,114,103,105,110,45,116,111,112,58,32,45,49,112,120,59,10,32,32,32,32,102,111,110,116,45,102,97,109,105,108,121,58,32,109,111,110,111,115,112,97,99,101,59,10,32,32,32,32,102,111,110,116,45,115,105,122,101,58,32,57,48,37,59,10,32,32,32,32,98,97,99,107,103,114,111,117,110,100,58,32,114,103,98,97,40,48,44,48,44,48,44,48,46,50,41,59,10,32,32,32,32,112,97,100,100,105,110,103,58,32,48,46,49,101,109,32,48,46,52,101,109,59,10,32,32,32,32,99,111,108,111,114,58,32,119,104,105,116,101,59,10,32,32,32,32,99,117,114,115,111,114,58,32,112,111,105,110,116,101,114,59,10,125,10,10,46,98,97,100,103,101,45,116,101,120,116,32,123,10,32,32,32,32,99,111,108,111,114,58,32,35,70,70,70,70,70,70,59,10,32,32,32,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,35,70,65,65,66,51,67,59,10,125,10,10,46,97,100,100,45,116,97,103,45,98,117,116,116,111,110,32,123,10,32,32,32,32,99,117,114,115,111,114,58,32,112,111,105,110,116,101,114,59,10,32,32,32,32,99,111,108,111,114,58,32,35,50,49,50,53,50,57,59,10,32,32,32,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,35,101,48,101,48,101,48,59,10,125,10,10,46,99,97,114,100,45,105,109,103,45,111,118,101,114,108,97,121,32,123,10,32,32,32,32,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,32,110,111,110,101,59,10,32,32,32,32,112,97,100,100,105,110,103,58,32,48,46,55,53,114,101,109,59,10,10,32,32,32,32,98,111,116,116,111,109,58,32,117,110,115,101,116,59,10,32,32,32,32,116,111,112,58,32,48,59,10,32,32,32,32,108,101,102,116,58,32,117,110,115,101,116,59,10,32,32,32,32,114,105,103,104,116,58,32,117,110,115,101,116,59,10,125,10,10,46,102,105,108,101,45,116,105,116,108,101,32,123,10,32,32,32,32,119,105,100,116,104,58,32,49,48,48,37,59,10,32,32,32,32,108,105,110,101,45,104,101,105,103,104,116,58,32,49,114,101,109,59,10,32,32,32,32,104,101,105,103,104,116,58,32,49,46,49,114,101,109,59,10,32,32,32,32,102,111,110,116,45,115,105,122,101,58,32,49,48,112,116,59,10,32,32,32,32,119,104,105,116,101,45,115,112,97,99,101,58,32,110,111,119,114,97,112,59,10,32,32,32,32,116,101,120,116,45,111,118,101,114,102,108,111,119,58,32,101,108,108,105,112,115,105,115,59,10,32,32,32,32,111,118,101,114,102,108,111,119,58,32,104,105,100,100,101,110,59,10,125,10,10,46,99,97,114,100,45,105,109,103,45,116,111,112,32,123,10,32,32,32,32,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,32,48,59,10,32,32,32,32,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,32,48,59,10,125,10,10,46,102,105,116,32,123,10,32,32,32,32,100,105,115,112,108,97,121,58,32,98,108,111,99,107,59,10,32,32,32,32,109,105,110,45,119,105,100,116,104,58,32,54,52,112,120,59,10,32,32,32,32,109,97,120,45,119,105,100,116,104,58,32,49,48,48,37,59,10,32,32,32,32,109,97,120,45,104,101,105,103,104,116,58,32,52,48,48,112,120,59,10,32,32,32,32,109,97,114,103,105,110,58,32,48,32,97,117,116,111,32,48,59,10,32,32,32,32,119,105,100,116,104,58,32,97,117,116,111,59,10,32,32,32,32,104,101,105,103,104,116,58,32,97,117,116,111,59,10,125,10,10,46,105,109,103,45,112,97,100,100,105,110,103,32,123,10,32,32,32,32,112,97,100,100,105,110,103,58,32,52,112,120,32,52,112,120,32,48,32,52,112,120,59,10,125,10,10,46,102,105,116,45,115,109,32,123,10,32,32,32,32,100,105,115,112,108,97,121,58,32,98,108,111,99,107,59,10,32,32,32,32,109,97,120,45,119,105,100,116,104,58,32,54,52,112,120,59,10,32,32,32,32,109,97,120,45,104,101,105,103,104,116,58,32,54,52,112,120,59,10,32,32,32,32,109,97,114,103,105,110,58,32,48,32,97,117,116,111,32,48,59,10,32,32,32,32,119,105,100,116,104,58,32,97,117,116,111,59,10,32,32,32,32,104,101,105,103,104,116,58,32,97,117,116,111,59,10,125,10,10,46,97,117,100,105,111,45,102,105,116,32,123,10,32,32,32,32,104,101,105,103,104,116,58,32,51,57,112,120,59,10,32,32,32,32,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,32,98,111,116,116,111,109,59,10,32,32,32,32,100,105,115,112,108,97,121,58,32,105,110,108,105,110,101,59,10,32,32,32,32,119,105,100,116,104,58,32,49,48,48,37,59,10,125,10,10,46,98,114,105,99,107,108,97,121,101,114,32,123,10,32,32,32,32,47,42,109,97,120,45,119,105,100,116,104,58,32,49,48,48,37,59,42,47,10,125,10,10,64,109,101,100,105,97,32,115,99,114,101,101,110,32,97,110,100,32,40,109,97,120,45,119,105,100,116,104,58,32,49,50,48,48,112,120,41,32,123,10,32,32,32,32,46,98,114,105,99,107,108,97,121,101,114,45,99,111,108,117,109,110,32,123,10,32,32,32,32,32,32,32,32,109,97,120,45,119,105,100,116,104,58,32,49,48,48,37,59,10,32,32,32,32,125,10,125,10,10,64,109,101,100,105,97,32,115,99,114,101,101,110,32,97,110,100,32,40,109,105,110,45,119,105,100,116,104,58,32,49,53,48,48,112,120,41,32,123,10,32,32,32,32,46,99,111,110,116,97,105,110,101,114,32,123,10,32,32,32,32,32,32,32,32,109,97,120,45,119,105,100,116,104,58,32,49,52,52,48,112,120,59,10,32,32,32,32,125,10,10,32,32,32,32,46,98,114,105,99,107,108,97,121,101,114,45,99,111,108,117,109,110,45,115,105,122,101,114,32,123,10,32,32,32,32,32,32,32,32,119,105,100,116,104,58,32,50,48,37,32,33,105,109,112,111,114,116,97,110,116,59,10,32,32,32,32,125,10,10,32,32,32,32,46,98,114,105,99,107,108,97,121,101,114,45,99,111,108,117,109,110,32,123,10,32,32,32,32,32,32,32,32,109,97,120,45,119,105,100,116,104,58,32,50,48,37,59,10,32,32,32,32,125,10,125,10,10,64,109,101,100,105,97,32,115,99,114,101,101,110,32,97,110,100,32,40,109,105,110,45,119,105,100,116,104,58,32,49,56,48,48,112,120,41,32,123,10,32,32,32,32,46,99,111,110,116,97,105,110,101,114,32,123,10,32,32,32,32,32,32,32,32,109,97,120,45,119,105,100,116,104,58,32,49,53,53,48,112,120,59,10,32,32,32,32,125,10,125,10,10,109,97,114,107,32,123,10,32,32,32,32,98,97,99,107,103,114,111,117,110,100,58,32,35,102,102,102,50,49,55,59,10,32,32,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,48,59,10,32,32,32,32,112,97,100,100,105,110,103,58,32,49,112,120,32,48,59,10,32,32,32,32,99,111,108,111,114,58,32,105,110,104,101,114,105,116,59,10,125,10,10,46,99,111,110,116,101,110,116,45,100,105,118,32,123,10,32,32,32,32,102,111,110,116,45,102,97,109,105,108,121,58,32,83,70,77,111,110,111,45,82,101,103,117,108,97,114,44,32,77,101,110,108,111,44,32,77,111,110,97,99,111,44,32,67,111,110,115,111,108,97,115,44,32,34,76,105,98,101,114,97,116,105,111,110,32,77,111,110,111,34,44,32,34,67,111,117,114,105,101,114,32,78,101,119,34,44,32,109,111,110,111,115,112,97,99,101,59,10,32,32,32,32,102,111,110,116,45,115,105,122,101,58,32,49,51,112,120,59,10,32,32,32,32,112,97,100,100,105,110,103,58,32,49,101,109,59,10,32,32,32,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,35,102,53,102,53,102,53,59,10,32,32,32,32,98,111,114,100,101,114,58,32,49,112,120,32,115,111,108,105,100,32,35,99,99,99,59,10,32,32,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,52,112,120,59,10,32,32,32,32,109,97,114,103,105,110,58,32,51,112,120,59,10,32,32,32,32,119,104,105,116,101,45,115,112,97,99,101,58,32,110,111,114,109,97,108,59,10,32,32,32,32,99,111,108,111,114,58,32,35,48,48,48,59,10,32,32,32,32,111,118,101,114,102,108,111,119,58,32,104,105,100,100,101,110,59,10,125,10,10,46,105,114,115,45,115,105,110,103,108,101,44,32,46,105,114,115,45,102,114,111,109,44,32,46,105,114,115,45,116,111,32,123,10,32,32,32,32,102,111,110,116,45,115,105,122,101,58,32,49,51,112,120,59,10,125,10,10,46,105,114,115,45,115,108,105,100,101,114,32,123,10,32,32,32,32,99,117,114,115,111,114,58,32,99,111,108,45,114,101,115,105,122,101,59,10,125,10,10,46,99,117,115,116,111,109,45,115,101,108,101,99,116,32,123,10,32,32,32,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,59,10,125,10,10,46,105,114,115,32,123,10,32,32,32,32,109,97,114,103,105,110,45,116,111,112,58,32,49,101,109,59,10,32,32,32,32,109,97,114,103,105,110,45,98,111,116,116,111,109,58,32,49,101,109,59,10,125,10,10,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,115,101,108,101,99,116,101,100,32,62,32,46,119,104,111,108,101,114,111,119,44,32,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,115,101,108,101,99,116,101,100,32,62,32,46,116,105,116,108,101,45,119,114,97,112,58,104,111,118,101,114,32,43,32,46,119,104,111,108,101,114,111,119,32,123,10,32,32,32,32,98,97,99,107,103,114,111,117,110,100,58,32,110,111,110,101,59,10,125,10,10,46,105,110,115,112,105,114,101,45,116,114,101,101,32,123,10,32,32,32,32,102,111,110,116,45,119,101,105,103,104,116,58,32,52,48,48,59,10,32,32,32,32,102,111,110,116,45,115,105,122,101,58,32,49,52,112,120,59,10,32,32,32,32,102,111,110,116,45,102,97,109,105,108,121,58,32,72,101,108,118,101,116,105,99,97,44,32,78,117,101,117,101,44,32,86,101,114,100,97,110,97,44,32,115,97,110,115,45,115,101,114,105,102,59,10,32,32,32,32,109,97,120,45,104,101,105,103,104,116,58,32,51,53,48,112,120,59,10,32,32,32,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,59,10,125,10,10,46,112,97,103,101,45,105,110,100,105,99,97,116,111,114,32,123,10,32,32,32,32,108,105,110,101,45,104,101,105,103,104,116,58,32,49,114,101,109,59,10,32,32,32,32,112,97,100,100,105,110,103,58,32,48,46,53,114,101,109,59,10,32,32,32,32,98,97,99,107,103,114,111,117,110,100,58,32,35,102,56,102,57,102,97,59,10,32,32,32,32,109,97,114,103,105,110,45,116,111,112,58,32,49,101,109,59,10,125,10,10,46,98,116,110,45,120,115,32,123,10,32,32,32,32,112,97,100,100,105,110,103,58,32,46,49,114,101,109,32,46,51,114,101,109,59,10,32,32,32,32,102,111,110,116,45,115,105,122,101,58,32,46,56,55,53,114,101,109,59,10,32,32,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,46,50,114,101,109,59,10,125,10,10,46,110,97,118,32,123,10,32,32,32,32,109,97,114,103,105,110,45,116,111,112,58,32,48,46,53,114,101,109,59,10,125,10,10,64,109,101,100,105,97,32,40,109,97,120,45,119,105,100,116,104,58,32,56,48,48,112,120,41,32,123,10,32,32,32,32,35,116,114,101,101,84,97,98,115,32,123,10,32,32,32,32,32,32,32,32,102,108,101,120,45,98,97,115,105,115,58,32,105,110,104,101,114,105,116,59,10,32,32,32,32,32,32,32,32,102,108,101,120,45,103,114,111,119,58,32,105,110,104,101,114,105,116,59,10,32,32,32,32,125,10,125,10,10,46,108,105,115,116,45,103,114,111,117,112,32,123,10,32,32,32,32,109,97,114,103,105,110,45,116,111,112,58,32,49,101,109,59,10,125,10,10,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,32,123,10,32,32,32,32,112,97,100,100,105,110,103,58,32,46,50,53,114,101,109,32,48,46,53,114,101,109,59,10,125,10,10,46,119,114,97,112,112,101,114,45,115,109,32,123,10,32,32,32,32,109,105,110,45,119,105,100,116,104,58,32,54,52,112,120,59,10,125,10,10,46,109,101,100,105,97,45,101,120,112,97,110,100,101,100,32,123,10,32,32,32,32,100,105,115,112,108,97,121,58,32,105,110,104,101,114,105,116,59,10,125,10,10,46,109,101,100,105,97,45,101,120,112,97,110,100,101,100,32,46,102,105,116,32,123,10,32,32,32,32,109,97,120,45,104,101,105,103,104,116,58,32,50,53,48,112,120,59,10,125,10,10,64,109,101,100,105,97,32,40,109,97,120,45,119,105,100,116,104,58,32,54,53,48,112,120,41,32,123,10,32,32,32,32,46,109,101,100,105,97,45,101,120,112,97,110,100,101,100,32,46,102,105,116,32,123,10,32,32,32,32,32,32,32,32,109,97,120,45,104,101,105,103,104,116,58,32,110,111,110,101,59,10,32,32,32,32,125,10,10,32,32,32,32,46,116,97,103,108,105,110,101,32,123,10,32,32,32,32,32,32,32,32,100,105,115,112,108,97,121,58,32,110,111,110,101,59,10,32,32,32,32,125,10,125,10,10,46,118,101,114,115,105,111,110,32,123,10,32,32,32,32,99,111,108,111,114,58,32,35,48,48,55,98,102,102,59,10,32,32,32,32,109,97,114,103,105,110,45,108,101,102,116,58,32,45,49,56,112,120,59,10,32,32,32,32,109,97,114,103,105,110,45,116,111,112,58,32,45,49,52,112,120,59,10,32,32,32,32,102,111,110,116,45,115,105,122,101,58,32,49,49,112,120,59,10,125,10,10,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,32,56,48,48,112,120,41,32,123,10,32,32,32,32,46,115,109,97,108,108,45,98,116,110,32,123,10,32,32,32,32,32,32,32,32,100,105,115,112,108,97,121,58,32,110,111,110,101,59,10,32,32,32,32,125,10,10,32,32,32,32,46,108,97,114,103,101,45,98,116,110,32,123,10,32,32,32,32,32,32,32,32,100,105,115,112,108,97,121,58,32,105,110,104,101,114,105,116,59,10,32,32,32,32,125,10,125,10,10,64,109,101,100,105,97,32,40,109,97,120,45,119,105,100,116,104,58,32,56,48,49,112,120,41,32,123,10,32,32,32,32,46,115,109,97,108,108,45,98,116,110,32,123,10,32,32,32,32,32,32,32,32,100,105,115,112,108,97,121,58,32,105,110,104,101,114,105,116,59,10,32,32,32,32,125,10,10,32,32,32,32,46,108,97,114,103,101,45,98,116,110,32,123,10,32,32,32,32,32,32,32,32,100,105,115,112,108,97,121,58,32,110,111,110,101,59,10,32,32,32,32,125,10,125,10,10,35,115,101,97,114,99,104,66,97,114,32,123,10,32,32,32,32,98,111,114,100,101,114,45,114,105,103,104,116,58,32,110,111,110,101,59,10,125,10,10,35,112,97,116,104,84,114,101,101,32,46,116,105,116,108,101,32,123,10,32,32,32,32,99,117,114,115,111,114,58,32,112,111,105,110,116,101,114,59,10,125,10,10,46,112,108,97,121,32,123,10,32,32,32,32,112,111,115,105,116,105,111,110,58,32,97,98,115,111,108,117,116,101,59,10,32,32,32,32,119,105,100,116,104,58,32,53,48,112,120,59,10,32,32,32,32,104,101,105,103,104,116,58,32,53,48,112,120,59,10,32,32,32,32,108,101,102,116,58,32,53,48,37,59,10,32,32,32,32,116,111,112,58,32,53,48,37,59,10,32,32,32,32,116,114,97,110,115,102,111,114,109,58,32,116,114,97,110,115,108,97,116,101,40,45,53,48,37,44,32,45,53,48,37,41,59,10,32,32,32,32,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,32,110,111,110,101,59,10,125,10,10,46,112,108,97,121,32,115,118,103,32,123,10,32,32,32,32,102,105,108,108,58,32,114,103,98,97,40,48,44,32,48,44,32,48,44,32,48,46,55,41,59,10,125,10,10,46,105,109,103,45,119,114,97,112,112,101,114,58,104,111,118,101,114,32,115,118,103,32,123,10,32,32,32,32,102,105,108,108,58,32,114,103,98,97,40,48,44,32,48,44,32,48,44,32,49,41,59,10,125,10,10,46,112,111,105,110,116,101,114,32,123,10,32,32,32,32,99,117,114,115,111,114,58,32,112,111,105,110,116,101,114,59,10,125,10,10,46,115,116,97,116,115,45,99,97,114,100,32,123,10,32,32,32,32,116,101,120,116,45,97,108,105,103,110,58,32,99,101,110,116,101,114,59,10,32,32,32,32,109,97,114,103,105,110,45,116,111,112,58,32,49,101,109,59,10,32,32,32,32,112,97,100,100,105,110,103,58,32,49,101,109,59,10,10,32,32,32,32,98,111,120,45,115,104,97,100,111,119,58,32,48,32,46,49,50,53,114,101,109,32,46,50,53,114,101,109,32,114,103,98,97,40,48,44,32,48,44,32,48,44,32,46,48,56,41,32,33,105,109,112,111,114,116,97,110,116,59,10,32,32,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,48,59,10,32,32,32,32,98,111,114,100,101,114,58,32,110,111,110,101,59,10,10,32,32,32,32,98,97,99,107,103,114,111,117,110,100,58,32,35,102,102,102,59,10,125,10,10,46,103,114,97,112,104,32,123,10,32,32,32,32,100,105,115,112,108,97,121,58,32,105,110,108,105,110,101,45,98,108,111,99,107,59,10,32,32,32,32,119,105,100,116,104,58,32,52,48,37,59,10,125,10,10,46,102,117,108,108,45,115,99,114,101,101,110,32,123,10,32,32,32,32,112,111,115,105,116,105,111,110,58,32,97,98,115,111,108,117,116,101,59,10,32,32,32,32,108,101,102,116,58,32,48,59,10,32,32,32,32,119,105,100,116,104,58,32,49,48,48,37,59,10,125,10,10,46,115,116,97,116,115,45,98,116,110,32,123,10,32,32,32,32,102,108,111,97,116,58,32,114,105,103,104,116,59,10,32,32,32,32,109,97,114,103,105,110,45,98,111,116,116,111,109,58,32,49,48,112,120,59,10,125,10,10,46,119,104,111,108,101,114,111,119,32,123,10,32,32,32,32,111,117,116,108,105,110,101,58,32,110,111,110,101,32,33,105,109,112,111,114,116,97,110,116,59,10,125,10,10,46,115,116,97,116,32,62,32,46,99,97,114,100,45,98,111,100,121,32,123,10,32,32,32,32,112,97,100,100,105,110,103,58,32,48,46,55,101,109,32,49,46,50,53,101,109,59,10,125}; char bundle_dark_css[210064] = {46,97,117,116,111,99,111,109,112,108,101,116,101,45,115,117,103,103,101,115,116,105,111,110,115,32,123,32,116,101,120,116,45,97,108,105,103,110,58,32,108,101,102,116,59,32,99,117,114,115,111,114,58,32,100,101,102,97,117,108,116,59,32,98,111,114,100,101,114,58,32,49,112,120,32,115,111,108,105,100,32,35,99,99,99,59,32,98,111,114,100,101,114,45,116,111,112,58,32,48,59,32,98,97,99,107,103,114,111,117,110,100,58,32,35,102,102,102,59,32,98,111,120,45,115,104,97,100,111,119,58,32,45,49,112,120,32,49,112,120,32,51,112,120,32,114,103,98,97,40,48,44,48,44,48,44,46,49,41,59,32,112,111,115,105,116,105,111,110,58,32,97,98,115,111,108,117,116,101,59,32,100,105,115,112,108,97,121,58,32,110,111,110,101,59,32,122,45,105,110,100,101,120,58,32,57,57,57,57,59,32,109,97,120,45,104,101,105,103,104,116,58,32,50,53,52,112,120,59,32,111,118,101,114,102,108,111,119,58,32,104,105,100,100,101,110,59,32,111,118,101,114,102,108,111,119,45,121,58,32,97,117,116,111,59,32,98,111,120,45,115,105,122,105,110,103,58,32,98,111,114,100,101,114,45,98,111,120,59,32,125,10,46,97,117,116,111,99,111,109,112,108,101,116,101,45,115,117,103,103,101,115,116,105,111,110,32,123,32,112,111,115,105,116,105,111,110,58,32,114,101,108,97,116,105,118,101,59,32,112,97,100,100,105,110,103,58,32,48,32,46,54,101,109,59,32,108,105,110,101,45,104,101,105,103,104,116,58,32,50,51,112,120,59,32,119,104,105,116,101,45,115,112,97,99,101,58,32,110,111,119,114,97,112,59,32,111,118,101,114,102,108,111,119,58,32,104,105,100,100,101,110,59,32,116,101,120,116,45,111,118,101,114,102,108,111,119,58,32,101,108,108,105,112,115,105,115,59,32,102,111,110,116,45,115,105,122,101,58,32,49,46,48,50,101,109,59,32,99,111,108,111,114,58,32,35,51,51,51,59,32,125,10,46,97,117,116,111,99,111,109,112,108,101,116,101,45,115,117,103,103,101,115,116,105,111,110,32,98,32,123,32,102,111,110,116,45,119,101,105,103,104,116,58,32,110,111,114,109,97,108,59,32,99,111,108,111,114,58,32,35,49,102,56,100,100,54,59,32,125,10,46,97,117,116,111,99,111,109,112,108,101,116,101,45,115,117,103,103,101,115,116,105,111,110,46,115,101,108,101,99,116,101,100,32,123,32,98,97,99,107,103,114,111,117,110,100,58,32,35,102,48,102,48,102,48,59,32,125,47,42,33,10,32,42,32,66,111,111,116,115,116,114,97,112,32,67,111,108,111,114,112,105,99,107,101,114,32,45,32,66,111,111,116,115,116,114,97,112,32,67,111,108,111,114,112,105,99,107,101,114,32,105,115,32,97,32,109,111,100,117,108,97,114,32,99,111,108,111,114,32,112,105,99,107,101,114,32,112,108,117,103,105,110,32,102,111,114,32,66,111,111,116,115,116,114,97,112,32,52,46,10,32,42,32,64,112,97,99,107,97,103,101,32,98,111,111,116,115,116,114,97,112,45,99,111,108,111,114,112,105,99,107,101,114,10,32,42,32,64,118,101,114,115,105,111,110,32,118,51,46,49,46,50,10,32,42,32,64,108,105,99,101,110,115,101,32,77,73,84,10,32,42,32,64,108,105,110,107,32,104,116,116,112,115,58,47,47,102,97,114,98,101,108,111,117,115,46,103,105,116,104,117,98,46,105,111,47,98,111,111,116,115,116,114,97,112,45,99,111,108,111,114,112,105,99,107,101,114,47,10,32,42,32,64,108,105,110,107,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,102,97,114,98,101,108,111,117,115,47,98,111,111,116,115,116,114,97,112,45,99,111,108,111,114,112,105,99,107,101,114,46,103,105,116,10,32,42,47,10,46,99,111,108,111,114,112,105,99,107,101,114,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,100,105,115,112,108,97,121,58,110,111,110,101,59,102,111,110,116,45,115,105,122,101,58,105,110,104,101,114,105,116,59,99,111,108,111,114,58,105,110,104,101,114,105,116,59,116,101,120,116,45,97,108,105,103,110,58,108,101,102,116,59,108,105,115,116,45,115,116,121,108,101,58,110,111,110,101,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,108,105,112,58,112,97,100,100,105,110,103,45,98,111,120,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,114,103,98,97,40,48,44,48,44,48,44,46,50,41,59,112,97,100,100,105,110,103,58,46,55,53,114,101,109,32,46,55,53,114,101,109,59,119,105,100,116,104,58,49,52,56,112,120,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,52,112,120,59,45,119,101,98,107,105,116,45,98,111,120,45,115,105,122,105,110,103,58,99,111,110,116,101,110,116,45,98,111,120,59,98,111,120,45,115,105,122,105,110,103,58,99,111,110,116,101,110,116,45,98,111,120,125,46,99,111,108,111,114,112,105,99,107,101,114,46,99,111,108,111,114,112,105,99,107,101,114,45,100,105,115,97,98,108,101,100,44,46,99,111,108,111,114,112,105,99,107,101,114,46,99,111,108,111,114,112,105,99,107,101,114,45,100,105,115,97,98,108,101,100,32,42,123,99,117,114,115,111,114,58,100,101,102,97,117,108,116,33,105,109,112,111,114,116,97,110,116,125,46,99,111,108,111,114,112,105,99,107,101,114,32,100,105,118,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,125,46,99,111,108,111,114,112,105,99,107,101,114,45,112,111,112,117,112,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,49,48,48,37,59,108,101,102,116,58,48,59,102,108,111,97,116,58,108,101,102,116,59,109,97,114,103,105,110,45,116,111,112,58,49,112,120,59,122,45,105,110,100,101,120,58,49,48,54,48,125,46,99,111,108,111,114,112,105,99,107,101,114,45,112,111,112,117,112,46,99,111,108,111,114,112,105,99,107,101,114,45,98,115,45,112,111,112,111,118,101,114,45,99,111,110,116,101,110,116,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,116,111,112,58,97,117,116,111,59,108,101,102,116,58,97,117,116,111,59,102,108,111,97,116,58,110,111,110,101,59,109,97,114,103,105,110,58,48,59,122,45,105,110,100,101,120,58,105,110,105,116,105,97,108,59,98,111,114,100,101,114,58,110,111,110,101,59,112,97,100,100,105,110,103,58,46,50,53,114,101,109,32,48,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,48,59,98,97,99,107,103,114,111,117,110,100,58,48,32,48,59,45,119,101,98,107,105,116,45,98,111,120,45,115,104,97,100,111,119,58,110,111,110,101,59,98,111,120,45,115,104,97,100,111,119,58,110,111,110,101,125,46,99,111,108,111,114,112,105,99,107,101,114,58,97,102,116,101,114,44,46,99,111,108,111,114,112,105,99,107,101,114,58,98,101,102,111,114,101,123,99,111,110,116,101,110,116,58,34,34,59,100,105,115,112,108,97,121,58,116,97,98,108,101,59,99,108,101,97,114,58,98,111,116,104,59,108,105,110,101,45,104,101,105,103,104,116,58,48,125,46,99,111,108,111,114,112,105,99,107,101,114,45,99,108,101,97,114,123,99,108,101,97,114,58,98,111,116,104,59,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,99,111,108,111,114,112,105,99,107,101,114,58,98,101,102,111,114,101,123,99,111,110,116,101,110,116,58,39,39,59,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,98,111,114,100,101,114,45,108,101,102,116,58,55,112,120,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,114,105,103,104,116,58,55,112,120,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,55,112,120,32,115,111,108,105,100,32,35,99,99,99,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,50,41,59,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,45,55,112,120,59,108,101,102,116,58,97,117,116,111,59,114,105,103,104,116,58,54,112,120,125,46,99,111,108,111,114,112,105,99,107,101,114,58,97,102,116,101,114,123,99,111,110,116,101,110,116,58,39,39,59,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,98,111,114,100,101,114,45,108,101,102,116,58,54,112,120,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,114,105,103,104,116,58,54,112,120,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,54,112,120,32,115,111,108,105,100,32,35,102,102,102,59,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,45,54,112,120,59,108,101,102,116,58,97,117,116,111,59,114,105,103,104,116,58,55,112,120,125,46,99,111,108,111,114,112,105,99,107,101,114,46,99,111,108,111,114,112,105,99,107,101,114,45,119,105,116,104,45,97,108,112,104,97,123,119,105,100,116,104,58,49,55,48,112,120,125,46,99,111,108,111,114,112,105,99,107,101,114,46,99,111,108,111,114,112,105,99,107,101,114,45,119,105,116,104,45,97,108,112,104,97,32,46,99,111,108,111,114,112,105,99,107,101,114,45,97,108,112,104,97,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,99,111,108,111,114,112,105,99,107,101,114,45,115,97,116,117,114,97,116,105,111,110,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,119,105,100,116,104,58,49,50,54,112,120,59,104,101,105,103,104,116,58,49,50,54,112,120,59,98,97,99,107,103,114,111,117,110,100,58,45,119,101,98,107,105,116,45,103,114,97,100,105,101,110,116,40,108,105,110,101,97,114,44,108,101,102,116,32,116,111,112,44,108,101,102,116,32,98,111,116,116,111,109,44,102,114,111,109,40,116,114,97,110,115,112,97,114,101,110,116,41,44,116,111,40,98,108,97,99,107,41,41,44,45,119,101,98,107,105,116,45,103,114,97,100,105,101,110,116,40,108,105,110,101,97,114,44,108,101,102,116,32,116,111,112,44,114,105,103,104,116,32,116,111,112,44,102,114,111,109,40,119,104,105,116,101,41,44,116,111,40,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,48,41,41,41,59,98,97,99,107,103,114,111,117,110,100,58,108,105,110,101,97,114,45,103,114,97,100,105,101,110,116,40,116,111,32,98,111,116,116,111,109,44,116,114,97,110,115,112,97,114,101,110,116,32,48,44,35,48,48,48,32,49,48,48,37,41,44,108,105,110,101,97,114,45,103,114,97,100,105,101,110,116,40,116,111,32,114,105,103,104,116,44,35,102,102,102,32,48,44,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,48,41,32,49,48,48,37,41,59,99,117,114,115,111,114,58,99,114,111,115,115,104,97,105,114,59,102,108,111,97,116,58,108,101,102,116,59,45,119,101,98,107,105,116,45,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,49,112,120,32,114,103,98,97,40,48,44,48,44,48,44,46,50,41,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,49,112,120,32,114,103,98,97,40,48,44,48,44,48,44,46,50,41,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,54,112,120,125,46,99,111,108,111,114,112,105,99,107,101,114,45,115,97,116,117,114,97,116,105,111,110,32,46,99,111,108,111,114,112,105,99,107,101,114,45,103,117,105,100,101,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,104,101,105,103,104,116,58,54,112,120,59,119,105,100,116,104,58,54,112,120,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,54,112,120,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,48,48,48,59,45,119,101,98,107,105,116,45,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,49,112,120,32,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,46,56,41,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,49,112,120,32,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,46,56,41,59,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,48,59,108,101,102,116,58,48,59,109,97,114,103,105,110,58,45,51,112,120,32,48,32,48,32,45,51,112,120,125,46,99,111,108,111,114,112,105,99,107,101,114,45,97,108,112,104,97,44,46,99,111,108,111,114,112,105,99,107,101,114,45,104,117,101,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,119,105,100,116,104,58,49,54,112,120,59,104,101,105,103,104,116,58,49,50,54,112,120,59,102,108,111,97,116,58,108,101,102,116,59,99,117,114,115,111,114,58,114,111,119,45,114,101,115,105,122,101,59,109,97,114,103,105,110,45,108,101,102,116,58,54,112,120,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,54,112,120,125,46,99,111,108,111,114,112,105,99,107,101,114,45,97,108,112,104,97,45,99,111,108,111,114,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,48,59,108,101,102,116,58,48,59,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,49,48,48,37,125,46,99,111,108,111,114,112,105,99,107,101,114,45,97,108,112,104,97,45,99,111,108,111,114,44,46,99,111,108,111,114,112,105,99,107,101,114,45,104,117,101,123,45,119,101,98,107,105,116,45,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,49,112,120,32,114,103,98,97,40,48,44,48,44,48,44,46,50,41,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,49,112,120,32,114,103,98,97,40,48,44,48,44,48,44,46,50,41,125,46,99,111,108,111,114,112,105,99,107,101,114,45,97,108,112,104,97,32,46,99,111,108,111,114,112,105,99,107,101,114,45,103,117,105,100,101,44,46,99,111,108,111,114,112,105,99,107,101,114,45,104,117,101,32,46,99,111,108,111,114,112,105,99,107,101,114,45,103,117,105,100,101,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,104,101,105,103,104,116,58,52,112,120,59,98,97,99,107,103,114,111,117,110,100,58,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,46,56,41,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,114,103,98,97,40,48,44,48,44,48,44,46,52,41,59,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,48,59,108,101,102,116,58,48,59,109,97,114,103,105,110,45,108,101,102,116,58,45,50,112,120,59,109,97,114,103,105,110,45,116,111,112,58,45,50,112,120,59,114,105,103,104,116,58,45,50,112,120,59,122,45,105,110,100,101,120,58,49,125,46,99,111,108,111,114,112,105,99,107,101,114,45,104,117,101,123,98,97,99,107,103,114,111,117,110,100,58,45,119,101,98,107,105,116,45,103,114,97,100,105,101,110,116,40,108,105,110,101,97,114,44,108,101,102,116,32,98,111,116,116,111,109,44,108,101,102,116,32,116,111,112,44,102,114,111,109,40,114,101,100,41,44,99,111,108,111,114,45,115,116,111,112,40,56,37,44,35,102,102,56,48,48,48,41,44,99,111,108,111,114,45,115,116,111,112,40,49,55,37,44,35,102,102,48,41,44,99,111,108,111,114,45,115,116,111,112,40,50,53,37,44,35,56,48,102,102,48,48,41,44,99,111,108,111,114,45,115,116,111,112,40,51,51,37,44,35,48,102,48,41,44,99,111,108,111,114,45,115,116,111,112,40,52,50,37,44,35,48,48,102,102,56,48,41,44,99,111,108,111,114,45,115,116,111,112,40,53,48,37,44,35,48,102,102,41,44,99,111,108,111,114,45,115,116,111,112,40,53,56,37,44,35,48,48,56,48,102,102,41,44,99,111,108,111,114,45,115,116,111,112,40,54,55,37,44,35,48,48,102,41,44,99,111,108,111,114,45,115,116,111,112,40,55,53,37,44,35,56,48,48,48,102,102,41,44,99,111,108,111,114,45,115,116,111,112,40,56,51,37,44,35,102,102,48,48,102,102,41,44,99,111,108,111,114,45,115,116,111,112,40,57,50,37,44,35,102,102,48,48,56,48,41,44,116,111,40,114,101,100,41,41,59,98,97,99,107,103,114,111,117,110,100,58,108,105,110,101,97,114,45,103,114,97,100,105,101,110,116,40,116,111,32,116,111,112,44,114,101,100,32,48,44,35,102,102,56,48,48,48,32,56,37,44,35,102,102,48,32,49,55,37,44,35,56,48,102,102,48,48,32,50,53,37,44,35,48,102,48,32,51,51,37,44,35,48,48,102,102,56,48,32,52,50,37,44,35,48,102,102,32,53,48,37,44,35,48,48,56,48,102,102,32,53,56,37,44,35,48,48,102,32,54,55,37,44,35,56,48,48,48,102,102,32,55,53,37,44,35,102,102,48,48,102,102,32,56,51,37,44,35,102,102,48,48,56,48,32,57,50,37,44,114,101,100,32,49,48,48,37,41,125,46,99,111,108,111,114,112,105,99,107,101,114,45,97,108,112,104,97,123,98,97,99,107,103,114,111,117,110,100,58,108,105,110,101,97,114,45,103,114,97,100,105,101,110,116,40,52,53,100,101,103,44,114,103,98,97,40,48,44,48,44,48,44,46,49,41,32,50,53,37,44,116,114,97,110,115,112,97,114,101,110,116,32,50,53,37,44,116,114,97,110,115,112,97,114,101,110,116,32,55,53,37,44,114,103,98,97,40,48,44,48,44,48,44,46,49,41,32,55,53,37,44,114,103,98,97,40,48,44,48,44,48,44,46,49,41,32,48,41,44,108,105,110,101,97,114,45,103,114,97,100,105,101,110,116,40,52,53,100,101,103,44,114,103,98,97,40,48,44,48,44,48,44,46,49,41,32,50,53,37,44,116,114,97,110,115,112,97,114,101,110,116,32,50,53,37,44,116,114,97,110,115,112,97,114,101,110,116,32,55,53,37,44,114,103,98,97,40,48,44,48,44,48,44,46,49,41,32,55,53,37,44,114,103,98,97,40,48,44,48,44,48,44,46,49,41,32,48,41,44,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,115,105,122,101,58,49,48,112,120,32,49,48,112,120,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,48,32,48,44,53,112,120,32,53,112,120,59,100,105,115,112,108,97,121,58,110,111,110,101,125,46,99,111,108,111,114,112,105,99,107,101,114,45,98,97,114,123,109,105,110,45,104,101,105,103,104,116,58,49,54,112,120,59,109,97,114,103,105,110,58,54,112,120,32,48,32,48,32,48,59,99,108,101,97,114,58,98,111,116,104,59,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,59,102,111,110,116,45,115,105,122,101,58,49,48,112,120,59,108,105,110,101,45,104,101,105,103,104,116,58,110,111,114,109,97,108,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,59,45,119,101,98,107,105,116,45,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,49,112,120,32,114,103,98,97,40,48,44,48,44,48,44,46,50,41,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,49,112,120,32,114,103,98,97,40,48,44,48,44,48,44,46,50,41,125,46,99,111,108,111,114,112,105,99,107,101,114,45,98,97,114,58,98,101,102,111,114,101,123,99,111,110,116,101,110,116,58,34,34,59,100,105,115,112,108,97,121,58,116,97,98,108,101,59,99,108,101,97,114,58,98,111,116,104,125,46,99,111,108,111,114,112,105,99,107,101,114,45,98,97,114,46,99,111,108,111,114,112,105,99,107,101,114,45,98,97,114,45,104,111,114,105,122,111,110,116,97,108,123,104,101,105,103,104,116,58,49,50,54,112,120,59,119,105,100,116,104,58,49,54,112,120,59,109,97,114,103,105,110,58,48,32,48,32,54,112,120,32,48,59,102,108,111,97,116,58,108,101,102,116,125,46,99,111,108,111,114,112,105,99,107,101,114,45,105,110,112,117,116,45,97,100,100,111,110,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,125,46,99,111,108,111,114,112,105,99,107,101,114,45,105,110,112,117,116,45,97,100,100,111,110,32,105,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,99,117,114,115,111,114,58,112,111,105,110,116,101,114,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,116,101,120,116,45,116,111,112,59,104,101,105,103,104,116,58,49,54,112,120,59,119,105,100,116,104,58,49,54,112,120,59,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,125,46,99,111,108,111,114,112,105,99,107,101,114,45,105,110,112,117,116,45,97,100,100,111,110,58,98,101,102,111,114,101,123,99,111,110,116,101,110,116,58,34,34,59,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,119,105,100,116,104,58,49,54,112,120,59,104,101,105,103,104,116,58,49,54,112,120,59,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,116,101,120,116,45,116,111,112,59,98,97,99,107,103,114,111,117,110,100,58,108,105,110,101,97,114,45,103,114,97,100,105,101,110,116,40,52,53,100,101,103,44,114,103,98,97,40,48,44,48,44,48,44,46,49,41,32,50,53,37,44,116,114,97,110,115,112,97,114,101,110,116,32,50,53,37,44,116,114,97,110,115,112,97,114,101,110,116,32,55,53,37,44,114,103,98,97,40,48,44,48,44,48,44,46,49,41,32,55,53,37,44,114,103,98,97,40,48,44,48,44,48,44,46,49,41,32,48,41,44,108,105,110,101,97,114,45,103,114,97,100,105,101,110,116,40,52,53,100,101,103,44,114,103,98,97,40,48,44,48,44,48,44,46,49,41,32,50,53,37,44,116,114,97,110,115,112,97,114,101,110,116,32,50,53,37,44,116,114,97,110,115,112,97,114,101,110,116,32,55,53,37,44,114,103,98,97,40,48,44,48,44,48,44,46,49,41,32,55,53,37,44,114,103,98,97,40,48,44,48,44,48,44,46,49,41,32,48,41,44,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,115,105,122,101,58,49,48,112,120,32,49,48,112,120,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,48,32,48,44,53,112,120,32,53,112,120,125,46,99,111,108,111,114,112,105,99,107,101,114,46,99,111,108,111,114,112,105,99,107,101,114,45,105,110,108,105,110,101,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,102,108,111,97,116,58,110,111,110,101,59,122,45,105,110,100,101,120,58,97,117,116,111,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,116,101,120,116,45,98,111,116,116,111,109,125,46,99,111,108,111,114,112,105,99,107,101,114,46,99,111,108,111,114,112,105,99,107,101,114,45,104,111,114,105,122,111,110,116,97,108,123,119,105,100,116,104,58,49,50,54,112,120,59,104,101,105,103,104,116,58,97,117,116,111,125,46,99,111,108,111,114,112,105,99,107,101,114,46,99,111,108,111,114,112,105,99,107,101,114,45,104,111,114,105,122,111,110,116,97,108,32,46,99,111,108,111,114,112,105,99,107,101,114,45,98,97,114,123,119,105,100,116,104,58,49,50,54,112,120,125,46,99,111,108,111,114,112,105,99,107,101,114,46,99,111,108,111,114,112,105,99,107,101,114,45,104,111,114,105,122,111,110,116,97,108,32,46,99,111,108,111,114,112,105,99,107,101,114,45,115,97,116,117,114,97,116,105,111,110,123,102,108,111,97,116,58,110,111,110,101,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,46,99,111,108,111,114,112,105,99,107,101,114,46,99,111,108,111,114,112,105,99,107,101,114,45,104,111,114,105,122,111,110,116,97,108,32,46,99,111,108,111,114,112,105,99,107,101,114,45,97,108,112,104,97,44,46,99,111,108,111,114,112,105,99,107,101,114,46,99,111,108,111,114,112,105,99,107,101,114,45,104,111,114,105,122,111,110,116,97,108,32,46,99,111,108,111,114,112,105,99,107,101,114,45,104,117,101,123,102,108,111,97,116,58,110,111,110,101,59,119,105,100,116,104,58,49,50,54,112,120,59,104,101,105,103,104,116,58,49,54,112,120,59,99,117,114,115,111,114,58,99,111,108,45,114,101,115,105,122,101,59,109,97,114,103,105,110,45,108,101,102,116,58,48,59,109,97,114,103,105,110,45,116,111,112,58,54,112,120,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,46,99,111,108,111,114,112,105,99,107,101,114,46,99,111,108,111,114,112,105,99,107,101,114,45,104,111,114,105,122,111,110,116,97,108,32,46,99,111,108,111,114,112,105,99,107,101,114,45,97,108,112,104,97,32,46,99,111,108,111,114,112,105,99,107,101,114,45,103,117,105,100,101,44,46,99,111,108,111,114,112,105,99,107,101,114,46,99,111,108,111,114,112,105,99,107,101,114,45,104,111,114,105,122,111,110,116,97,108,32,46,99,111,108,111,114,112,105,99,107,101,114,45,104,117,101,32,46,99,111,108,111,114,112,105,99,107,101,114,45,103,117,105,100,101,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,98,111,116,116,111,109,58,45,50,112,120,59,108,101,102,116,58,48,59,114,105,103,104,116,58,97,117,116,111,59,104,101,105,103,104,116,58,97,117,116,111,59,119,105,100,116,104,58,52,112,120,125,46,99,111,108,111,114,112,105,99,107,101,114,46,99,111,108,111,114,112,105,99,107,101,114,45,104,111,114,105,122,111,110,116,97,108,32,46,99,111,108,111,114,112,105,99,107,101,114,45,104,117,101,123,98,97,99,107,103,114,111,117,110,100,58,45,119,101,98,107,105,116,45,103,114,97,100,105,101,110,116,40,108,105,110,101,97,114,44,114,105,103,104,116,32,116,111,112,44,108,101,102,116,32,116,111,112,44,102,114,111,109,40,114,101,100,41,44,99,111,108,111,114,45,115,116,111,112,40,56,37,44,35,102,102,56,48,48,48,41,44,99,111,108,111,114,45,115,116,111,112,40,49,55,37,44,35,102,102,48,41,44,99,111,108,111,114,45,115,116,111,112,40,50,53,37,44,35,56,48,102,102,48,48,41,44,99,111,108,111,114,45,115,116,111,112,40,51,51,37,44,35,48,102,48,41,44,99,111,108,111,114,45,115,116,111,112,40,52,50,37,44,35,48,48,102,102,56,48,41,44,99,111,108,111,114,45,115,116,111,112,40,53,48,37,44,35,48,102,102,41,44,99,111,108,111,114,45,115,116,111,112,40,53,56,37,44,35,48,48,56,48,102,102,41,44,99,111,108,111,114,45,115,116,111,112,40,54,55,37,44,35,48,48,102,41,44,99,111,108,111,114,45,115,116,111,112,40,55,53,37,44,35,56,48,48,48,102,102,41,44,99,111,108,111,114,45,115,116,111,112,40,56,51,37,44,35,102,102,48,48,102,102,41,44,99,111,108,111,114,45,115,116,111,112,40,57,50,37,44,35,102,102,48,48,56,48,41,44,116,111,40,114,101,100,41,41,59,98,97,99,107,103,114,111,117,110,100,58,108,105,110,101,97,114,45,103,114,97,100,105,101,110,116,40,116,111,32,108,101,102,116,44,114,101,100,32,48,44,35,102,102,56,48,48,48,32,56,37,44,35,102,102,48,32,49,55,37,44,35,56,48,102,102,48,48,32,50,53,37,44,35,48,102,48,32,51,51,37,44,35,48,48,102,102,56,48,32,52,50,37,44,35,48,102,102,32,53,48,37,44,35,48,48,56,48,102,102,32,53,56,37,44,35,48,48,102,32,54,55,37,44,35,56,48,48,48,102,102,32,55,53,37,44,35,102,102,48,48,102,102,32,56,51,37,44,35,102,102,48,48,56,48,32,57,50,37,44,114,101,100,32,49,48,48,37,41,125,46,99,111,108,111,114,112,105,99,107,101,114,46,99,111,108,111,114,112,105,99,107,101,114,45,104,111,114,105,122,111,110,116,97,108,32,46,99,111,108,111,114,112,105,99,107,101,114,45,97,108,112,104,97,123,98,97,99,107,103,114,111,117,110,100,58,108,105,110,101,97,114,45,103,114,97,100,105,101,110,116,40,52,53,100,101,103,44,114,103,98,97,40,48,44,48,44,48,44,46,49,41,32,50,53,37,44,116,114,97,110,115,112,97,114,101,110,116,32,50,53,37,44,116,114,97,110,115,112,97,114,101,110,116,32,55,53,37,44,114,103,98,97,40,48,44,48,44,48,44,46,49,41,32,55,53,37,44,114,103,98,97,40,48,44,48,44,48,44,46,49,41,32,48,41,44,108,105,110,101,97,114,45,103,114,97,100,105,101,110,116,40,52,53,100,101,103,44,114,103,98,97,40,48,44,48,44,48,44,46,49,41,32,50,53,37,44,116,114,97,110,115,112,97,114,101,110,116,32,50,53,37,44,116,114,97,110,115,112,97,114,101,110,116,32,55,53,37,44,114,103,98,97,40,48,44,48,44,48,44,46,49,41,32,55,53,37,44,114,103,98,97,40,48,44,48,44,48,44,46,49,41,32,48,41,44,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,115,105,122,101,58,49,48,112,120,32,49,48,112,120,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,48,32,48,44,53,112,120,32,53,112,120,125,46,99,111,108,111,114,112,105,99,107,101,114,45,105,110,108,105,110,101,58,98,101,102,111,114,101,44,46,99,111,108,111,114,112,105,99,107,101,114,45,110,111,45,97,114,114,111,119,58,98,101,102,111,114,101,44,46,99,111,108,111,114,112,105,99,107,101,114,45,112,111,112,117,112,46,99,111,108,111,114,112,105,99,107,101,114,45,98,115,45,112,111,112,111,118,101,114,45,99,111,110,116,101,110,116,58,98,101,102,111,114,101,123,99,111,110,116,101,110,116,58,110,111,110,101,59,100,105,115,112,108,97,121,58,110,111,110,101,125,46,99,111,108,111,114,112,105,99,107,101,114,45,105,110,108,105,110,101,58,97,102,116,101,114,44,46,99,111,108,111,114,112,105,99,107,101,114,45,110,111,45,97,114,114,111,119,58,97,102,116,101,114,44,46,99,111,108,111,114,112,105,99,107,101,114,45,112,111,112,117,112,46,99,111,108,111,114,112,105,99,107,101,114,45,98,115,45,112,111,112,111,118,101,114,45,99,111,110,116,101,110,116,58,97,102,116,101,114,123,99,111,110,116,101,110,116,58,110,111,110,101,59,100,105,115,112,108,97,121,58,110,111,110,101,125,46,99,111,108,111,114,112,105,99,107,101,114,45,97,108,112,104,97,44,46,99,111,108,111,114,112,105,99,107,101,114,45,104,117,101,44,46,99,111,108,111,114,112,105,99,107,101,114,45,115,97,116,117,114,97,116,105,111,110,123,45,119,101,98,107,105,116,45,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,59,45,109,111,122,45,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,59,45,109,115,45,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,59,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,125,46,99,111,108,111,114,112,105,99,107,101,114,45,97,108,112,104,97,46,99,111,108,111,114,112,105,99,107,101,114,45,118,105,115,105,98,108,101,44,46,99,111,108,111,114,112,105,99,107,101,114,45,98,97,114,46,99,111,108,111,114,112,105,99,107,101,114,45,118,105,115,105,98,108,101,44,46,99,111,108,111,114,112,105,99,107,101,114,45,104,117,101,46,99,111,108,111,114,112,105,99,107,101,114,45,118,105,115,105,98,108,101,44,46,99,111,108,111,114,112,105,99,107,101,114,45,115,97,116,117,114,97,116,105,111,110,46,99,111,108,111,114,112,105,99,107,101,114,45,118,105,115,105,98,108,101,44,46,99,111,108,111,114,112,105,99,107,101,114,46,99,111,108,111,114,112,105,99,107,101,114,45,118,105,115,105,98,108,101,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,99,111,108,111,114,112,105,99,107,101,114,45,97,108,112,104,97,46,99,111,108,111,114,112,105,99,107,101,114,45,104,105,100,100,101,110,44,46,99,111,108,111,114,112,105,99,107,101,114,45,98,97,114,46,99,111,108,111,114,112,105,99,107,101,114,45,104,105,100,100,101,110,44,46,99,111,108,111,114,112,105,99,107,101,114,45,104,117,101,46,99,111,108,111,114,112,105,99,107,101,114,45,104,105,100,100,101,110,44,46,99,111,108,111,114,112,105,99,107,101,114,45,115,97,116,117,114,97,116,105,111,110,46,99,111,108,111,114,112,105,99,107,101,114,45,104,105,100,100,101,110,44,46,99,111,108,111,114,112,105,99,107,101,114,46,99,111,108,111,114,112,105,99,107,101,114,45,104,105,100,100,101,110,123,100,105,115,112,108,97,121,58,110,111,110,101,125,46,99,111,108,111,114,112,105,99,107,101,114,45,105,110,108,105,110,101,46,99,111,108,111,114,112,105,99,107,101,114,45,118,105,115,105,98,108,101,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,125,46,99,111,108,111,114,112,105,99,107,101,114,46,99,111,108,111,114,112,105,99,107,101,114,45,100,105,115,97,98,108,101,100,58,97,102,116,101,114,123,98,111,114,100,101,114,58,110,111,110,101,59,99,111,110,116,101,110,116,58,39,39,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,49,48,48,37,59,98,97,99,107,103,114,111,117,110,100,58,114,103,98,97,40,50,51,51,44,50,51,54,44,50,51,57,44,46,51,51,41,59,116,111,112,58,48,59,108,101,102,116,58,48,59,114,105,103,104,116,58,97,117,116,111,59,122,45,105,110,100,101,120,58,50,59,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,125,46,99,111,108,111,114,112,105,99,107,101,114,46,99,111,108,111,114,112,105,99,107,101,114,45,100,105,115,97,98,108,101,100,32,46,99,111,108,111,114,112,105,99,107,101,114,45,103,117,105,100,101,123,100,105,115,112,108,97,121,58,110,111,110,101,125,46,99,111,108,111,114,112,105,99,107,101,114,45,112,114,101,118,105,101,119,123,98,97,99,107,103,114,111,117,110,100,58,108,105,110,101,97,114,45,103,114,97,100,105,101,110,116,40,52,53,100,101,103,44,114,103,98,97,40,48,44,48,44,48,44,46,49,41,32,50,53,37,44,116,114,97,110,115,112,97,114,101,110,116,32,50,53,37,44,116,114,97,110,115,112,97,114,101,110,116,32,55,53,37,44,114,103,98,97,40,48,44,48,44,48,44,46,49,41,32,55,53,37,44,114,103,98,97,40,48,44,48,44,48,44,46,49,41,32,48,41,44,108,105,110,101,97,114,45,103,114,97,100,105,101,110,116,40,52,53,100,101,103,44,114,103,98,97,40,48,44,48,44,48,44,46,49,41,32,50,53,37,44,116,114,97,110,115,112,97,114,101,110,116,32,50,53,37,44,116,114,97,110,115,112,97,114,101,110,116,32,55,53,37,44,114,103,98,97,40,48,44,48,44,48,44,46,49,41,32,55,53,37,44,114,103,98,97,40,48,44,48,44,48,44,46,49,41,32,48,41,44,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,115,105,122,101,58,49,48,112,120,32,49,48,112,120,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,48,32,48,44,53,112,120,32,53,112,120,125,46,99,111,108,111,114,112,105,99,107,101,114,45,112,114,101,118,105,101,119,62,100,105,118,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,108,101,102,116,58,48,59,116,111,112,58,48,59,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,49,48,48,37,125,46,99,111,108,111,114,112,105,99,107,101,114,45,98,97,114,46,99,111,108,111,114,112,105,99,107,101,114,45,115,119,97,116,99,104,101,115,123,45,119,101,98,107,105,116,45,98,111,120,45,115,104,97,100,111,119,58,110,111,110,101,59,98,111,120,45,115,104,97,100,111,119,58,110,111,110,101,59,104,101,105,103,104,116,58,97,117,116,111,125,46,99,111,108,111,114,112,105,99,107,101,114,45,115,119,97,116,99,104,101,115,45,45,105,110,110,101,114,123,99,108,101,97,114,58,98,111,116,104,59,109,97,114,103,105,110,45,116,111,112,58,45,54,112,120,125,46,99,111,108,111,114,112,105,99,107,101,114,45,115,119,97,116,99,104,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,99,117,114,115,111,114,58,112,111,105,110,116,101,114,59,102,108,111,97,116,58,108,101,102,116,59,104,101,105,103,104,116,58,49,54,112,120,59,119,105,100,116,104,58,49,54,112,120,59,109,97,114,103,105,110,45,114,105,103,104,116,58,54,112,120,59,109,97,114,103,105,110,45,116,111,112,58,54,112,120,59,109,97,114,103,105,110,45,108,101,102,116,58,48,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,45,119,101,98,107,105,116,45,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,49,112,120,32,114,103,98,97,40,48,44,48,44,48,44,46,50,41,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,49,112,120,32,114,103,98,97,40,48,44,48,44,48,44,46,50,41,59,98,97,99,107,103,114,111,117,110,100,58,108,105,110,101,97,114,45,103,114,97,100,105,101,110,116,40,52,53,100,101,103,44,114,103,98,97,40,48,44,48,44,48,44,46,49,41,32,50,53,37,44,116,114,97,110,115,112,97,114,101,110,116,32,50,53,37,44,116,114,97,110,115,112,97,114,101,110,116,32,55,53,37,44,114,103,98,97,40,48,44,48,44,48,44,46,49,41,32,55,53,37,44,114,103,98,97,40,48,44,48,44,48,44,46,49,41,32,48,41,44,108,105,110,101,97,114,45,103,114,97,100,105,101,110,116,40,52,53,100,101,103,44,114,103,98,97,40,48,44,48,44,48,44,46,49,41,32,50,53,37,44,116,114,97,110,115,112,97,114,101,110,116,32,50,53,37,44,116,114,97,110,115,112,97,114,101,110,116,32,55,53,37,44,114,103,98,97,40,48,44,48,44,48,44,46,49,41,32,55,53,37,44,114,103,98,97,40,48,44,48,44,48,44,46,49,41,32,48,41,44,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,115,105,122,101,58,49,48,112,120,32,49,48,112,120,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,48,32,48,44,53,112,120,32,53,112,120,125,46,99,111,108,111,114,112,105,99,107,101,114,45,115,119,97,116,99,104,45,45,105,110,110,101,114,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,48,59,108,101,102,116,58,48,59,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,49,48,48,37,125,46,99,111,108,111,114,112,105,99,107,101,114,45,115,119,97,116,99,104,58,110,116,104,45,111,102,45,116,121,112,101,40,55,110,43,48,41,123,109,97,114,103,105,110,45,114,105,103,104,116,58,48,125,46,99,111,108,111,114,112,105,99,107,101,114,45,119,105,116,104,45,97,108,112,104,97,32,46,99,111,108,111,114,112,105,99,107,101,114,45,115,119,97,116,99,104,58,110,116,104,45,111,102,45,116,121,112,101,40,55,110,43,48,41,123,109,97,114,103,105,110,45,114,105,103,104,116,58,54,112,120,125,46,99,111,108,111,114,112,105,99,107,101,114,45,119,105,116,104,45,97,108,112,104,97,32,46,99,111,108,111,114,112,105,99,107,101,114,45,115,119,97,116,99,104,58,110,116,104,45,111,102,45,116,121,112,101,40,56,110,43,48,41,123,109,97,114,103,105,110,45,114,105,103,104,116,58,48,125,46,99,111,108,111,114,112,105,99,107,101,114,45,104,111,114,105,122,111,110,116,97,108,32,46,99,111,108,111,114,112,105,99,107,101,114,45,115,119,97,116,99,104,58,110,116,104,45,111,102,45,116,121,112,101,40,54,110,43,48,41,123,109,97,114,103,105,110,45,114,105,103,104,116,58,48,125,46,99,111,108,111,114,112,105,99,107,101,114,45,104,111,114,105,122,111,110,116,97,108,32,46,99,111,108,111,114,112,105,99,107,101,114,45,115,119,97,116,99,104,58,110,116,104,45,111,102,45,116,121,112,101,40,55,110,43,48,41,123,109,97,114,103,105,110,45,114,105,103,104,116,58,54,112,120,125,46,99,111,108,111,114,112,105,99,107,101,114,45,104,111,114,105,122,111,110,116,97,108,32,46,99,111,108,111,114,112,105,99,107,101,114,45,115,119,97,116,99,104,58,110,116,104,45,111,102,45,116,121,112,101,40,56,110,43,48,41,123,109,97,114,103,105,110,45,114,105,103,104,116,58,54,112,120,125,46,99,111,108,111,114,112,105,99,107,101,114,45,115,119,97,116,99,104,58,108,97,115,116,45,111,102,45,116,121,112,101,58,97,102,116,101,114,123,99,111,110,116,101,110,116,58,34,34,59,100,105,115,112,108,97,121,58,116,97,98,108,101,59,99,108,101,97,114,58,98,111,116,104,125,46,99,111,108,111,114,112,105,99,107,101,114,45,101,108,101,109,101,110,116,32,105,110,112,117,116,91,100,105,114,61,114,116,108,93,44,46,99,111,108,111,114,112,105,99,107,101,114,45,101,108,101,109,101,110,116,91,100,105,114,61,114,116,108,93,32,105,110,112,117,116,44,91,100,105,114,61,114,116,108,93,32,46,99,111,108,111,114,112,105,99,107,101,114,45,101,108,101,109,101,110,116,32,105,110,112,117,116,123,100,105,114,101,99,116,105,111,110,58,108,116,114,59,116,101,120,116,45,97,108,105,103,110,58,114,105,103,104,116,125,10,47,42,33,10,32,42,32,66,111,111,116,115,116,114,97,112,32,118,52,46,51,46,49,32,40,104,116,116,112,115,58,47,47,103,101,116,98,111,111,116,115,116,114,97,112,46,99,111,109,47,41,10,32,42,32,67,111,112,121,114,105,103,104,116,32,50,48,49,49,45,50,48,49,57,32,84,104,101,32,66,111,111,116,115,116,114,97,112,32,65,117,116,104,111,114,115,10,32,42,32,67,111,112,121,114,105,103,104,116,32,50,48,49,49,45,50,48,49,57,32,84,119,105,116,116,101,114,44,32,73,110,99,46,10,32,42,32,76,105,99,101,110,115,101,100,32,117,110,100,101,114,32,77,73,84,32,40,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,116,119,98,115,47,98,111,111,116,115,116,114,97,112,47,98,108,111,98,47,109,97,115,116,101,114,47,76,73,67,69,78,83,69,41,10,32,42,47,58,114,111,111,116,123,45,45,98,108,117,101,58,35,48,48,55,98,102,102,59,45,45,105,110,100,105,103,111,58,35,54,54,49,48,102,50,59,45,45,112,117,114,112,108,101,58,35,54,102,52,50,99,49,59,45,45,112,105,110,107,58,35,101,56,51,101,56,99,59,45,45,114,101,100,58,35,100,99,51,53,52,53,59,45,45,111,114,97,110,103,101,58,35,102,100,55,101,49,52,59,45,45,121,101,108,108,111,119,58,35,102,102,99,49,48,55,59,45,45,103,114,101,101,110,58,35,50,56,97,55,52,53,59,45,45,116,101,97,108,58,35,50,48,99,57,57,55,59,45,45,99,121,97,110,58,35,49,55,97,50,98,56,59,45,45,119,104,105,116,101,58,35,102,102,102,59,45,45,103,114,97,121,58,35,54,99,55,53,55,100,59,45,45,103,114,97,121,45,100,97,114,107,58,35,51,52,51,97,52,48,59,45,45,112,114,105,109,97,114,121,58,35,48,48,55,98,102,102,59,45,45,115,101,99,111,110,100,97,114,121,58,35,54,99,55,53,55,100,59,45,45,115,117,99,99,101,115,115,58,35,50,56,97,55,52,53,59,45,45,105,110,102,111,58,35,49,55,97,50,98,56,59,45,45,119,97,114,110,105,110,103,58,35,102,102,99,49,48,55,59,45,45,100,97,110,103,101,114,58,35,100,99,51,53,52,53,59,45,45,108,105,103,104,116,58,35,102,56,102,57,102,97,59,45,45,100,97,114,107,58,35,51,52,51,97,52,48,59,45,45,98,114,101,97,107,112,111,105,110,116,45,120,115,58,48,59,45,45,98,114,101,97,107,112,111,105,110,116,45,115,109,58,53,55,54,112,120,59,45,45,98,114,101,97,107,112,111,105,110,116,45,109,100,58,55,54,56,112,120,59,45,45,98,114,101,97,107,112,111,105,110,116,45,108,103,58,57,57,50,112,120,59,45,45,98,114,101,97,107,112,111,105,110,116,45,120,108,58,49,50,48,48,112,120,59,45,45,102,111,110,116,45,102,97,109,105,108,121,45,115,97,110,115,45,115,101,114,105,102,58,45,97,112,112,108,101,45,115,121,115,116,101,109,44,66,108,105,110,107,77,97,99,83,121,115,116,101,109,70,111,110,116,44,34,83,101,103,111,101,32,85,73,34,44,82,111,98,111,116,111,44,34,72,101,108,118,101,116,105,99,97,32,78,101,117,101,34,44,65,114,105,97,108,44,34,78,111,116,111,32,83,97,110,115,34,44,115,97,110,115,45,115,101,114,105,102,44,34,65,112,112,108,101,32,67,111,108,111,114,32,69,109,111,106,105,34,44,34,83,101,103,111,101,32,85,73,32,69,109,111,106,105,34,44,34,83,101,103,111,101,32,85,73,32,83,121,109,98,111,108,34,44,34,78,111,116,111,32,67,111,108,111,114,32,69,109,111,106,105,34,59,45,45,102,111,110,116,45,102,97,109,105,108,121,45,109,111,110,111,115,112,97,99,101,58,83,70,77,111,110,111,45,82,101,103,117,108,97,114,44,77,101,110,108,111,44,77,111,110,97,99,111,44,67,111,110,115,111,108,97,115,44,34,76,105,98,101,114,97,116,105,111,110,32,77,111,110,111,34,44,34,67,111,117,114,105,101,114,32,78,101,119,34,44,109,111,110,111,115,112,97,99,101,125,42,44,58,58,97,102,116,101,114,44,58,58,98,101,102,111,114,101,123,98,111,120,45,115,105,122,105,110,103,58,98,111,114,100,101,114,45,98,111,120,125,104,116,109,108,123,102,111,110,116,45,102,97,109,105,108,121,58,115,97,110,115,45,115,101,114,105,102,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,49,53,59,45,119,101,98,107,105,116,45,116,101,120,116,45,115,105,122,101,45,97,100,106,117,115,116,58,49,48,48,37,59,45,119,101,98,107,105,116,45,116,97,112,45,104,105,103,104,108,105,103,104,116,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,125,97,114,116,105,99,108,101,44,97,115,105,100,101,44,102,105,103,99,97,112,116,105,111,110,44,102,105,103,117,114,101,44,102,111,111,116,101,114,44,104,101,97,100,101,114,44,104,103,114,111,117,112,44,109,97,105,110,44,110,97,118,44,115,101,99,116,105,111,110,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,98,111,100,121,123,109,97,114,103,105,110,58,48,59,102,111,110,116,45,102,97,109,105,108,121,58,45,97,112,112,108,101,45,115,121,115,116,101,109,44,66,108,105,110,107,77,97,99,83,121,115,116,101,109,70,111,110,116,44,34,83,101,103,111,101,32,85,73,34,44,82,111,98,111,116,111,44,34,72,101,108,118,101,116,105,99,97,32,78,101,117,101,34,44,65,114,105,97,108,44,34,78,111,116,111,32,83,97,110,115,34,44,115,97,110,115,45,115,101,114,105,102,44,34,65,112,112,108,101,32,67,111,108,111,114,32,69,109,111,106,105,34,44,34,83,101,103,111,101,32,85,73,32,69,109,111,106,105,34,44,34,83,101,103,111,101,32,85,73,32,83,121,109,98,111,108,34,44,34,78,111,116,111,32,67,111,108,111,114,32,69,109,111,106,105,34,59,102,111,110,116,45,115,105,122,101,58,49,114,101,109,59,102,111,110,116,45,119,101,105,103,104,116,58,52,48,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,99,111,108,111,114,58,35,50,49,50,53,50,57,59,116,101,120,116,45,97,108,105,103,110,58,108,101,102,116,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,125,91,116,97,98,105,110,100,101,120,61,34,45,49,34,93,58,102,111,99,117,115,123,111,117,116,108,105,110,101,58,48,33,105,109,112,111,114,116,97,110,116,125,104,114,123,98,111,120,45,115,105,122,105,110,103,58,99,111,110,116,101,110,116,45,98,111,120,59,104,101,105,103,104,116,58,48,59,111,118,101,114,102,108,111,119,58,118,105,115,105,98,108,101,125,104,49,44,104,50,44,104,51,44,104,52,44,104,53,44,104,54,123,109,97,114,103,105,110,45,116,111,112,58,48,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,53,114,101,109,125,112,123,109,97,114,103,105,110,45,116,111,112,58,48,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,114,101,109,125,97,98,98,114,91,100,97,116,97,45,111,114,105,103,105,110,97,108,45,116,105,116,108,101,93,44,97,98,98,114,91,116,105,116,108,101,93,123,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,117,110,100,101,114,108,105,110,101,59,45,119,101,98,107,105,116,45,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,117,110,100,101,114,108,105,110,101,32,100,111,116,116,101,100,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,117,110,100,101,114,108,105,110,101,32,100,111,116,116,101,100,59,99,117,114,115,111,114,58,104,101,108,112,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,48,59,45,119,101,98,107,105,116,45,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,45,115,107,105,112,45,105,110,107,58,110,111,110,101,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,45,115,107,105,112,45,105,110,107,58,110,111,110,101,125,97,100,100,114,101,115,115,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,114,101,109,59,102,111,110,116,45,115,116,121,108,101,58,110,111,114,109,97,108,59,108,105,110,101,45,104,101,105,103,104,116,58,105,110,104,101,114,105,116,125,100,108,44,111,108,44,117,108,123,109,97,114,103,105,110,45,116,111,112,58,48,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,114,101,109,125,111,108,32,111,108,44,111,108,32,117,108,44,117,108,32,111,108,44,117,108,32,117,108,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,100,116,123,102,111,110,116,45,119,101,105,103,104,116,58,55,48,48,125,100,100,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,53,114,101,109,59,109,97,114,103,105,110,45,108,101,102,116,58,48,125,98,108,111,99,107,113,117,111,116,101,123,109,97,114,103,105,110,58,48,32,48,32,49,114,101,109,125,98,44,115,116,114,111,110,103,123,102,111,110,116,45,119,101,105,103,104,116,58,98,111,108,100,101,114,125,115,109,97,108,108,123,102,111,110,116,45,115,105,122,101,58,56,48,37,125,115,117,98,44,115,117,112,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,102,111,110,116,45,115,105,122,101,58,55,53,37,59,108,105,110,101,45,104,101,105,103,104,116,58,48,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,98,97,115,101,108,105,110,101,125,115,117,98,123,98,111,116,116,111,109,58,45,46,50,53,101,109,125,115,117,112,123,116,111,112,58,45,46,53,101,109,125,97,123,99,111,108,111,114,58,35,48,48,55,98,102,102,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,125,97,58,104,111,118,101,114,123,99,111,108,111,114,58,35,48,48,53,54,98,51,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,117,110,100,101,114,108,105,110,101,125,97,58,110,111,116,40,91,104,114,101,102,93,41,58,110,111,116,40,91,116,97,98,105,110,100,101,120,93,41,123,99,111,108,111,114,58,105,110,104,101,114,105,116,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,125,97,58,110,111,116,40,91,104,114,101,102,93,41,58,110,111,116,40,91,116,97,98,105,110,100,101,120,93,41,58,102,111,99,117,115,44,97,58,110,111,116,40,91,104,114,101,102,93,41,58,110,111,116,40,91,116,97,98,105,110,100,101,120,93,41,58,104,111,118,101,114,123,99,111,108,111,114,58,105,110,104,101,114,105,116,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,125,97,58,110,111,116,40,91,104,114,101,102,93,41,58,110,111,116,40,91,116,97,98,105,110,100,101,120,93,41,58,102,111,99,117,115,123,111,117,116,108,105,110,101,58,48,125,99,111,100,101,44,107,98,100,44,112,114,101,44,115,97,109,112,123,102,111,110,116,45,102,97,109,105,108,121,58,83,70,77,111,110,111,45,82,101,103,117,108,97,114,44,77,101,110,108,111,44,77,111,110,97,99,111,44,67,111,110,115,111,108,97,115,44,34,76,105,98,101,114,97,116,105,111,110,32,77,111,110,111,34,44,34,67,111,117,114,105,101,114,32,78,101,119,34,44,109,111,110,111,115,112,97,99,101,59,102,111,110,116,45,115,105,122,101,58,49,101,109,125,112,114,101,123,109,97,114,103,105,110,45,116,111,112,58,48,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,114,101,109,59,111,118,101,114,102,108,111,119,58,97,117,116,111,125,102,105,103,117,114,101,123,109,97,114,103,105,110,58,48,32,48,32,49,114,101,109,125,105,109,103,123,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,109,105,100,100,108,101,59,98,111,114,100,101,114,45,115,116,121,108,101,58,110,111,110,101,125,115,118,103,123,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,109,105,100,100,108,101,125,116,97,98,108,101,123,98,111,114,100,101,114,45,99,111,108,108,97,112,115,101,58,99,111,108,108,97,112,115,101,125,99,97,112,116,105,111,110,123,112,97,100,100,105,110,103,45,116,111,112,58,46,55,53,114,101,109,59,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,55,53,114,101,109,59,99,111,108,111,114,58,35,54,99,55,53,55,100,59,116,101,120,116,45,97,108,105,103,110,58,108,101,102,116,59,99,97,112,116,105,111,110,45,115,105,100,101,58,98,111,116,116,111,109,125,116,104,123,116,101,120,116,45,97,108,105,103,110,58,105,110,104,101,114,105,116,125,108,97,98,101,108,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,53,114,101,109,125,98,117,116,116,111,110,123,98,111,114,100,101,114,45,114,97,100,105,117,115,58,48,125,98,117,116,116,111,110,58,102,111,99,117,115,123,111,117,116,108,105,110,101,58,49,112,120,32,100,111,116,116,101,100,59,111,117,116,108,105,110,101,58,53,112,120,32,97,117,116,111,32,45,119,101,98,107,105,116,45,102,111,99,117,115,45,114,105,110,103,45,99,111,108,111,114,125,98,117,116,116,111,110,44,105,110,112,117,116,44,111,112,116,103,114,111,117,112,44,115,101,108,101,99,116,44,116,101,120,116,97,114,101,97,123,109,97,114,103,105,110,58,48,59,102,111,110,116,45,102,97,109,105,108,121,58,105,110,104,101,114,105,116,59,102,111,110,116,45,115,105,122,101,58,105,110,104,101,114,105,116,59,108,105,110,101,45,104,101,105,103,104,116,58,105,110,104,101,114,105,116,125,98,117,116,116,111,110,44,105,110,112,117,116,123,111,118,101,114,102,108,111,119,58,118,105,115,105,98,108,101,125,98,117,116,116,111,110,44,115,101,108,101,99,116,123,116,101,120,116,45,116,114,97,110,115,102,111,114,109,58,110,111,110,101,125,115,101,108,101,99,116,123,119,111,114,100,45,119,114,97,112,58,110,111,114,109,97,108,125,91,116,121,112,101,61,98,117,116,116,111,110,93,44,91,116,121,112,101,61,114,101,115,101,116,93,44,91,116,121,112,101,61,115,117,98,109,105,116,93,44,98,117,116,116,111,110,123,45,119,101,98,107,105,116,45,97,112,112,101,97,114,97,110,99,101,58,98,117,116,116,111,110,125,91,116,121,112,101,61,98,117,116,116,111,110,93,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,44,91,116,121,112,101,61,114,101,115,101,116,93,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,44,91,116,121,112,101,61,115,117,98,109,105,116,93,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,44,98,117,116,116,111,110,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,123,99,117,114,115,111,114,58,112,111,105,110,116,101,114,125,91,116,121,112,101,61,98,117,116,116,111,110,93,58,58,45,109,111,122,45,102,111,99,117,115,45,105,110,110,101,114,44,91,116,121,112,101,61,114,101,115,101,116,93,58,58,45,109,111,122,45,102,111,99,117,115,45,105,110,110,101,114,44,91,116,121,112,101,61,115,117,98,109,105,116,93,58,58,45,109,111,122,45,102,111,99,117,115,45,105,110,110,101,114,44,98,117,116,116,111,110,58,58,45,109,111,122,45,102,111,99,117,115,45,105,110,110,101,114,123,112,97,100,100,105,110,103,58,48,59,98,111,114,100,101,114,45,115,116,121,108,101,58,110,111,110,101,125,105,110,112,117,116,91,116,121,112,101,61,99,104,101,99,107,98,111,120,93,44,105,110,112,117,116,91,116,121,112,101,61,114,97,100,105,111,93,123,98,111,120,45,115,105,122,105,110,103,58,98,111,114,100,101,114,45,98,111,120,59,112,97,100,100,105,110,103,58,48,125,105,110,112,117,116,91,116,121,112,101,61,100,97,116,101,93,44,105,110,112,117,116,91,116,121,112,101,61,100,97,116,101,116,105,109,101,45,108,111,99,97,108,93,44,105,110,112,117,116,91,116,121,112,101,61,109,111,110,116,104,93,44,105,110,112,117,116,91,116,121,112,101,61,116,105,109,101,93,123,45,119,101,98,107,105,116,45,97,112,112,101,97,114,97,110,99,101,58,108,105,115,116,98,111,120,125,116,101,120,116,97,114,101,97,123,111,118,101,114,102,108,111,119,58,97,117,116,111,59,114,101,115,105,122,101,58,118,101,114,116,105,99,97,108,125,102,105,101,108,100,115,101,116,123,109,105,110,45,119,105,100,116,104,58,48,59,112,97,100,100,105,110,103,58,48,59,109,97,114,103,105,110,58,48,59,98,111,114,100,101,114,58,48,125,108,101,103,101,110,100,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,59,112,97,100,100,105,110,103,58,48,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,53,114,101,109,59,102,111,110,116,45,115,105,122,101,58,49,46,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,105,110,104,101,114,105,116,59,99,111,108,111,114,58,105,110,104,101,114,105,116,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,114,109,97,108,125,112,114,111,103,114,101,115,115,123,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,98,97,115,101,108,105,110,101,125,91,116,121,112,101,61,110,117,109,98,101,114,93,58,58,45,119,101,98,107,105,116,45,105,110,110,101,114,45,115,112,105,110,45,98,117,116,116,111,110,44,91,116,121,112,101,61,110,117,109,98,101,114,93,58,58,45,119,101,98,107,105,116,45,111,117,116,101,114,45,115,112,105,110,45,98,117,116,116,111,110,123,104,101,105,103,104,116,58,97,117,116,111,125,91,116,121,112,101,61,115,101,97,114,99,104,93,123,111,117,116,108,105,110,101,45,111,102,102,115,101,116,58,45,50,112,120,59,45,119,101,98,107,105,116,45,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,125,91,116,121,112,101,61,115,101,97,114,99,104,93,58,58,45,119,101,98,107,105,116,45,115,101,97,114,99,104,45,100,101,99,111,114,97,116,105,111,110,123,45,119,101,98,107,105,116,45,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,125,58,58,45,119,101,98,107,105,116,45,102,105,108,101,45,117,112,108,111,97,100,45,98,117,116,116,111,110,123,102,111,110,116,58,105,110,104,101,114,105,116,59,45,119,101,98,107,105,116,45,97,112,112,101,97,114,97,110,99,101,58,98,117,116,116,111,110,125,111,117,116,112,117,116,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,125,115,117,109,109,97,114,121,123,100,105,115,112,108,97,121,58,108,105,115,116,45,105,116,101,109,59,99,117,114,115,111,114,58,112,111,105,110,116,101,114,125,116,101,109,112,108,97,116,101,123,100,105,115,112,108,97,121,58,110,111,110,101,125,91,104,105,100,100,101,110,93,123,100,105,115,112,108,97,121,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,46,104,49,44,46,104,50,44,46,104,51,44,46,104,52,44,46,104,53,44,46,104,54,44,104,49,44,104,50,44,104,51,44,104,52,44,104,53,44,104,54,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,53,114,101,109,59,102,111,110,116,45,119,101,105,103,104,116,58,53,48,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,50,125,46,104,49,44,104,49,123,102,111,110,116,45,115,105,122,101,58,50,46,53,114,101,109,125,46,104,50,44,104,50,123,102,111,110,116,45,115,105,122,101,58,50,114,101,109,125,46,104,51,44,104,51,123,102,111,110,116,45,115,105,122,101,58,49,46,55,53,114,101,109,125,46,104,52,44,104,52,123,102,111,110,116,45,115,105,122,101,58,49,46,53,114,101,109,125,46,104,53,44,104,53,123,102,111,110,116,45,115,105,122,101,58,49,46,50,53,114,101,109,125,46,104,54,44,104,54,123,102,111,110,116,45,115,105,122,101,58,49,114,101,109,125,46,108,101,97,100,123,102,111,110,116,45,115,105,122,101,58,49,46,50,53,114,101,109,59,102,111,110,116,45,119,101,105,103,104,116,58,51,48,48,125,46,100,105,115,112,108,97,121,45,49,123,102,111,110,116,45,115,105,122,101,58,54,114,101,109,59,102,111,110,116,45,119,101,105,103,104,116,58,51,48,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,50,125,46,100,105,115,112,108,97,121,45,50,123,102,111,110,116,45,115,105,122,101,58,53,46,53,114,101,109,59,102,111,110,116,45,119,101,105,103,104,116,58,51,48,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,50,125,46,100,105,115,112,108,97,121,45,51,123,102,111,110,116,45,115,105,122,101,58,52,46,53,114,101,109,59,102,111,110,116,45,119,101,105,103,104,116,58,51,48,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,50,125,46,100,105,115,112,108,97,121,45,52,123,102,111,110,116,45,115,105,122,101,58,51,46,53,114,101,109,59,102,111,110,116,45,119,101,105,103,104,116,58,51,48,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,50,125,104,114,123,109,97,114,103,105,110,45,116,111,112,58,49,114,101,109,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,114,101,109,59,98,111,114,100,101,114,58,48,59,98,111,114,100,101,114,45,116,111,112,58,49,112,120,32,115,111,108,105,100,32,114,103,98,97,40,48,44,48,44,48,44,46,49,41,125,46,115,109,97,108,108,44,115,109,97,108,108,123,102,111,110,116,45,115,105,122,101,58,56,48,37,59,102,111,110,116,45,119,101,105,103,104,116,58,52,48,48,125,46,109,97,114,107,44,109,97,114,107,123,112,97,100,100,105,110,103,58,46,50,101,109,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,99,102,56,101,51,125,46,108,105,115,116,45,117,110,115,116,121,108,101,100,123,112,97,100,100,105,110,103,45,108,101,102,116,58,48,59,108,105,115,116,45,115,116,121,108,101,58,110,111,110,101,125,46,108,105,115,116,45,105,110,108,105,110,101,123,112,97,100,100,105,110,103,45,108,101,102,116,58,48,59,108,105,115,116,45,115,116,121,108,101,58,110,111,110,101,125,46,108,105,115,116,45,105,110,108,105,110,101,45,105,116,101,109,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,125,46,108,105,115,116,45,105,110,108,105,110,101,45,105,116,101,109,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,123,109,97,114,103,105,110,45,114,105,103,104,116,58,46,53,114,101,109,125,46,105,110,105,116,105,97,108,105,115,109,123,102,111,110,116,45,115,105,122,101,58,57,48,37,59,116,101,120,116,45,116,114,97,110,115,102,111,114,109,58,117,112,112,101,114,99,97,115,101,125,46,98,108,111,99,107,113,117,111,116,101,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,114,101,109,59,102,111,110,116,45,115,105,122,101,58,49,46,50,53,114,101,109,125,46,98,108,111,99,107,113,117,111,116,101,45,102,111,111,116,101,114,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,102,111,110,116,45,115,105,122,101,58,56,48,37,59,99,111,108,111,114,58,35,54,99,55,53,55,100,125,46,98,108,111,99,107,113,117,111,116,101,45,102,111,111,116,101,114,58,58,98,101,102,111,114,101,123,99,111,110,116,101,110,116,58,34,92,50,48,49,52,92,48,48,65,48,34,125,46,105,109,103,45,102,108,117,105,100,123,109,97,120,45,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,97,117,116,111,125,46,105,109,103,45,116,104,117,109,98,110,97,105,108,123,112,97,100,100,105,110,103,58,46,50,53,114,101,109,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,97,117,116,111,125,46,102,105,103,117,114,101,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,125,46,102,105,103,117,114,101,45,105,109,103,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,125,46,102,105,103,117,114,101,45,99,97,112,116,105,111,110,123,102,111,110,116,45,115,105,122,101,58,57,48,37,59,99,111,108,111,114,58,35,54,99,55,53,55,100,125,99,111,100,101,123,102,111,110,116,45,115,105,122,101,58,56,55,46,53,37,59,99,111,108,111,114,58,35,101,56,51,101,56,99,59,119,111,114,100,45,98,114,101,97,107,58,98,114,101,97,107,45,119,111,114,100,125,97,62,99,111,100,101,123,99,111,108,111,114,58,105,110,104,101,114,105,116,125,107,98,100,123,112,97,100,100,105,110,103,58,46,50,114,101,109,32,46,52,114,101,109,59,102,111,110,116,45,115,105,122,101,58,56,55,46,53,37,59,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,114,101,109,125,107,98,100,32,107,98,100,123,112,97,100,100,105,110,103,58,48,59,102,111,110,116,45,115,105,122,101,58,49,48,48,37,59,102,111,110,116,45,119,101,105,103,104,116,58,55,48,48,125,112,114,101,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,102,111,110,116,45,115,105,122,101,58,56,55,46,53,37,59,99,111,108,111,114,58,35,50,49,50,53,50,57,125,112,114,101,32,99,111,100,101,123,102,111,110,116,45,115,105,122,101,58,105,110,104,101,114,105,116,59,99,111,108,111,114,58,105,110,104,101,114,105,116,59,119,111,114,100,45,98,114,101,97,107,58,110,111,114,109,97,108,125,46,112,114,101,45,115,99,114,111,108,108,97,98,108,101,123,109,97,120,45,104,101,105,103,104,116,58,51,52,48,112,120,59,111,118,101,114,102,108,111,119,45,121,58,115,99,114,111,108,108,125,46,99,111,110,116,97,105,110,101,114,123,119,105,100,116,104,58,49,48,48,37,59,112,97,100,100,105,110,103,45,114,105,103,104,116,58,49,53,112,120,59,112,97,100,100,105,110,103,45,108,101,102,116,58,49,53,112,120,59,109,97,114,103,105,110,45,114,105,103,104,116,58,97,117,116,111,59,109,97,114,103,105,110,45,108,101,102,116,58,97,117,116,111,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,99,111,110,116,97,105,110,101,114,123,109,97,120,45,119,105,100,116,104,58,53,52,48,112,120,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,55,54,56,112,120,41,123,46,99,111,110,116,97,105,110,101,114,123,109,97,120,45,119,105,100,116,104,58,55,50,48,112,120,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,57,57,50,112,120,41,123,46,99,111,110,116,97,105,110,101,114,123,109,97,120,45,119,105,100,116,104,58,57,54,48,112,120,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,49,50,48,48,112,120,41,123,46,99,111,110,116,97,105,110,101,114,123,109,97,120,45,119,105,100,116,104,58,49,49,52,48,112,120,125,125,46,99,111,110,116,97,105,110,101,114,45,102,108,117,105,100,123,119,105,100,116,104,58,49,48,48,37,59,112,97,100,100,105,110,103,45,114,105,103,104,116,58,49,53,112,120,59,112,97,100,100,105,110,103,45,108,101,102,116,58,49,53,112,120,59,109,97,114,103,105,110,45,114,105,103,104,116,58,97,117,116,111,59,109,97,114,103,105,110,45,108,101,102,116,58,97,117,116,111,125,46,114,111,119,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,53,112,120,59,109,97,114,103,105,110,45,108,101,102,116,58,45,49,53,112,120,125,46,110,111,45,103,117,116,116,101,114,115,123,109,97,114,103,105,110,45,114,105,103,104,116,58,48,59,109,97,114,103,105,110,45,108,101,102,116,58,48,125,46,110,111,45,103,117,116,116,101,114,115,62,46,99,111,108,44,46,110,111,45,103,117,116,116,101,114,115,62,91,99,108,97,115,115,42,61,99,111,108,45,93,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,48,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,125,46,99,111,108,44,46,99,111,108,45,49,44,46,99,111,108,45,49,48,44,46,99,111,108,45,49,49,44,46,99,111,108,45,49,50,44,46,99,111,108,45,50,44,46,99,111,108,45,51,44,46,99,111,108,45,52,44,46,99,111,108,45,53,44,46,99,111,108,45,54,44,46,99,111,108,45,55,44,46,99,111,108,45,56,44,46,99,111,108,45,57,44,46,99,111,108,45,97,117,116,111,44,46,99,111,108,45,108,103,44,46,99,111,108,45,108,103,45,49,44,46,99,111,108,45,108,103,45,49,48,44,46,99,111,108,45,108,103,45,49,49,44,46,99,111,108,45,108,103,45,49,50,44,46,99,111,108,45,108,103,45,50,44,46,99,111,108,45,108,103,45,51,44,46,99,111,108,45,108,103,45,52,44,46,99,111,108,45,108,103,45,53,44,46,99,111,108,45,108,103,45,54,44,46,99,111,108,45,108,103,45,55,44,46,99,111,108,45,108,103,45,56,44,46,99,111,108,45,108,103,45,57,44,46,99,111,108,45,108,103,45,97,117,116,111,44,46,99,111,108,45,109,100,44,46,99,111,108,45,109,100,45,49,44,46,99,111,108,45,109,100,45,49,48,44,46,99,111,108,45,109,100,45,49,49,44,46,99,111,108,45,109,100,45,49,50,44,46,99,111,108,45,109,100,45,50,44,46,99,111,108,45,109,100,45,51,44,46,99,111,108,45,109,100,45,52,44,46,99,111,108,45,109,100,45,53,44,46,99,111,108,45,109,100,45,54,44,46,99,111,108,45,109,100,45,55,44,46,99,111,108,45,109,100,45,56,44,46,99,111,108,45,109,100,45,57,44,46,99,111,108,45,109,100,45,97,117,116,111,44,46,99,111,108,45,115,109,44,46,99,111,108,45,115,109,45,49,44,46,99,111,108,45,115,109,45,49,48,44,46,99,111,108,45,115,109,45,49,49,44,46,99,111,108,45,115,109,45,49,50,44,46,99,111,108,45,115,109,45,50,44,46,99,111,108,45,115,109,45,51,44,46,99,111,108,45,115,109,45,52,44,46,99,111,108,45,115,109,45,53,44,46,99,111,108,45,115,109,45,54,44,46,99,111,108,45,115,109,45,55,44,46,99,111,108,45,115,109,45,56,44,46,99,111,108,45,115,109,45,57,44,46,99,111,108,45,115,109,45,97,117,116,111,44,46,99,111,108,45,120,108,44,46,99,111,108,45,120,108,45,49,44,46,99,111,108,45,120,108,45,49,48,44,46,99,111,108,45,120,108,45,49,49,44,46,99,111,108,45,120,108,45,49,50,44,46,99,111,108,45,120,108,45,50,44,46,99,111,108,45,120,108,45,51,44,46,99,111,108,45,120,108,45,52,44,46,99,111,108,45,120,108,45,53,44,46,99,111,108,45,120,108,45,54,44,46,99,111,108,45,120,108,45,55,44,46,99,111,108,45,120,108,45,56,44,46,99,111,108,45,120,108,45,57,44,46,99,111,108,45,120,108,45,97,117,116,111,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,119,105,100,116,104,58,49,48,48,37,59,112,97,100,100,105,110,103,45,114,105,103,104,116,58,49,53,112,120,59,112,97,100,100,105,110,103,45,108,101,102,116,58,49,53,112,120,125,46,99,111,108,123,45,109,115,45,102,108,101,120,45,112,114,101,102,101,114,114,101,100,45,115,105,122,101,58,48,59,102,108,101,120,45,98,97,115,105,115,58,48,59,45,109,115,45,102,108,101,120,45,112,111,115,105,116,105,118,101,58,49,59,102,108,101,120,45,103,114,111,119,58,49,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,99,111,108,45,97,117,116,111,123,45,109,115,45,102,108,101,120,58,48,32,48,32,97,117,116,111,59,102,108,101,120,58,48,32,48,32,97,117,116,111,59,119,105,100,116,104,58,97,117,116,111,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,99,111,108,45,49,123,45,109,115,45,102,108,101,120,58,48,32,48,32,56,46,51,51,51,51,51,51,37,59,102,108,101,120,58,48,32,48,32,56,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,56,46,51,51,51,51,51,51,37,125,46,99,111,108,45,50,123,45,109,115,45,102,108,101,120,58,48,32,48,32,49,54,46,54,54,54,54,54,55,37,59,102,108,101,120,58,48,32,48,32,49,54,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,49,54,46,54,54,54,54,54,55,37,125,46,99,111,108,45,51,123,45,109,115,45,102,108,101,120,58,48,32,48,32,50,53,37,59,102,108,101,120,58,48,32,48,32,50,53,37,59,109,97,120,45,119,105,100,116,104,58,50,53,37,125,46,99,111,108,45,52,123,45,109,115,45,102,108,101,120,58,48,32,48,32,51,51,46,51,51,51,51,51,51,37,59,102,108,101,120,58,48,32,48,32,51,51,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,51,51,46,51,51,51,51,51,51,37,125,46,99,111,108,45,53,123,45,109,115,45,102,108,101,120,58,48,32,48,32,52,49,46,54,54,54,54,54,55,37,59,102,108,101,120,58,48,32,48,32,52,49,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,52,49,46,54,54,54,54,54,55,37,125,46,99,111,108,45,54,123,45,109,115,45,102,108,101,120,58,48,32,48,32,53,48,37,59,102,108,101,120,58,48,32,48,32,53,48,37,59,109,97,120,45,119,105,100,116,104,58,53,48,37,125,46,99,111,108,45,55,123,45,109,115,45,102,108,101,120,58,48,32,48,32,53,56,46,51,51,51,51,51,51,37,59,102,108,101,120,58,48,32,48,32,53,56,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,53,56,46,51,51,51,51,51,51,37,125,46,99,111,108,45,56,123,45,109,115,45,102,108,101,120,58,48,32,48,32,54,54,46,54,54,54,54,54,55,37,59,102,108,101,120,58,48,32,48,32,54,54,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,54,54,46,54,54,54,54,54,55,37,125,46,99,111,108,45,57,123,45,109,115,45,102,108,101,120,58,48,32,48,32,55,53,37,59,102,108,101,120,58,48,32,48,32,55,53,37,59,109,97,120,45,119,105,100,116,104,58,55,53,37,125,46,99,111,108,45,49,48,123,45,109,115,45,102,108,101,120,58,48,32,48,32,56,51,46,51,51,51,51,51,51,37,59,102,108,101,120,58,48,32,48,32,56,51,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,56,51,46,51,51,51,51,51,51,37,125,46,99,111,108,45,49,49,123,45,109,115,45,102,108,101,120,58,48,32,48,32,57,49,46,54,54,54,54,54,55,37,59,102,108,101,120,58,48,32,48,32,57,49,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,57,49,46,54,54,54,54,54,55,37,125,46,99,111,108,45,49,50,123,45,109,115,45,102,108,101,120,58,48,32,48,32,49,48,48,37,59,102,108,101,120,58,48,32,48,32,49,48,48,37,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,111,114,100,101,114,45,102,105,114,115,116,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,45,49,59,111,114,100,101,114,58,45,49,125,46,111,114,100,101,114,45,108,97,115,116,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,51,59,111,114,100,101,114,58,49,51,125,46,111,114,100,101,114,45,48,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,48,59,111,114,100,101,114,58,48,125,46,111,114,100,101,114,45,49,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,59,111,114,100,101,114,58,49,125,46,111,114,100,101,114,45,50,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,50,59,111,114,100,101,114,58,50,125,46,111,114,100,101,114,45,51,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,51,59,111,114,100,101,114,58,51,125,46,111,114,100,101,114,45,52,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,52,59,111,114,100,101,114,58,52,125,46,111,114,100,101,114,45,53,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,53,59,111,114,100,101,114,58,53,125,46,111,114,100,101,114,45,54,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,54,59,111,114,100,101,114,58,54,125,46,111,114,100,101,114,45,55,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,55,59,111,114,100,101,114,58,55,125,46,111,114,100,101,114,45,56,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,56,59,111,114,100,101,114,58,56,125,46,111,114,100,101,114,45,57,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,57,59,111,114,100,101,114,58,57,125,46,111,114,100,101,114,45,49,48,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,48,59,111,114,100,101,114,58,49,48,125,46,111,114,100,101,114,45,49,49,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,49,59,111,114,100,101,114,58,49,49,125,46,111,114,100,101,114,45,49,50,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,50,59,111,114,100,101,114,58,49,50,125,46,111,102,102,115,101,116,45,49,123,109,97,114,103,105,110,45,108,101,102,116,58,56,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,50,123,109,97,114,103,105,110,45,108,101,102,116,58,49,54,46,54,54,54,54,54,55,37,125,46,111,102,102,115,101,116,45,51,123,109,97,114,103,105,110,45,108,101,102,116,58,50,53,37,125,46,111,102,102,115,101,116,45,52,123,109,97,114,103,105,110,45,108,101,102,116,58,51,51,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,53,123,109,97,114,103,105,110,45,108,101,102,116,58,52,49,46,54,54,54,54,54,55,37,125,46,111,102,102,115,101,116,45,54,123,109,97,114,103,105,110,45,108,101,102,116,58,53,48,37,125,46,111,102,102,115,101,116,45,55,123,109,97,114,103,105,110,45,108,101,102,116,58,53,56,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,56,123,109,97,114,103,105,110,45,108,101,102,116,58,54,54,46,54,54,54,54,54,55,37,125,46,111,102,102,115,101,116,45,57,123,109,97,114,103,105,110,45,108,101,102,116,58,55,53,37,125,46,111,102,102,115,101,116,45,49,48,123,109,97,114,103,105,110,45,108,101,102,116,58,56,51,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,49,49,123,109,97,114,103,105,110,45,108,101,102,116,58,57,49,46,54,54,54,54,54,55,37,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,99,111,108,45,115,109,123,45,109,115,45,102,108,101,120,45,112,114,101,102,101,114,114,101,100,45,115,105,122,101,58,48,59,102,108,101,120,45,98,97,115,105,115,58,48,59,45,109,115,45,102,108,101,120,45,112,111,115,105,116,105,118,101,58,49,59,102,108,101,120,45,103,114,111,119,58,49,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,99,111,108,45,115,109,45,97,117,116,111,123,45,109,115,45,102,108,101,120,58,48,32,48,32,97,117,116,111,59,102,108,101,120,58,48,32,48,32,97,117,116,111,59,119,105,100,116,104,58,97,117,116,111,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,99,111,108,45,115,109,45,49,123,45,109,115,45,102,108,101,120,58,48,32,48,32,56,46,51,51,51,51,51,51,37,59,102,108,101,120,58,48,32,48,32,56,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,56,46,51,51,51,51,51,51,37,125,46,99,111,108,45,115,109,45,50,123,45,109,115,45,102,108,101,120,58,48,32,48,32,49,54,46,54,54,54,54,54,55,37,59,102,108,101,120,58,48,32,48,32,49,54,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,49,54,46,54,54,54,54,54,55,37,125,46,99,111,108,45,115,109,45,51,123,45,109,115,45,102,108,101,120,58,48,32,48,32,50,53,37,59,102,108,101,120,58,48,32,48,32,50,53,37,59,109,97,120,45,119,105,100,116,104,58,50,53,37,125,46,99,111,108,45,115,109,45,52,123,45,109,115,45,102,108,101,120,58,48,32,48,32,51,51,46,51,51,51,51,51,51,37,59,102,108,101,120,58,48,32,48,32,51,51,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,51,51,46,51,51,51,51,51,51,37,125,46,99,111,108,45,115,109,45,53,123,45,109,115,45,102,108,101,120,58,48,32,48,32,52,49,46,54,54,54,54,54,55,37,59,102,108,101,120,58,48,32,48,32,52,49,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,52,49,46,54,54,54,54,54,55,37,125,46,99,111,108,45,115,109,45,54,123,45,109,115,45,102,108,101,120,58,48,32,48,32,53,48,37,59,102,108,101,120,58,48,32,48,32,53,48,37,59,109,97,120,45,119,105,100,116,104,58,53,48,37,125,46,99,111,108,45,115,109,45,55,123,45,109,115,45,102,108,101,120,58,48,32,48,32,53,56,46,51,51,51,51,51,51,37,59,102,108,101,120,58,48,32,48,32,53,56,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,53,56,46,51,51,51,51,51,51,37,125,46,99,111,108,45,115,109,45,56,123,45,109,115,45,102,108,101,120,58,48,32,48,32,54,54,46,54,54,54,54,54,55,37,59,102,108,101,120,58,48,32,48,32,54,54,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,54,54,46,54,54,54,54,54,55,37,125,46,99,111,108,45,115,109,45,57,123,45,109,115,45,102,108,101,120,58,48,32,48,32,55,53,37,59,102,108,101,120,58,48,32,48,32,55,53,37,59,109,97,120,45,119,105,100,116,104,58,55,53,37,125,46,99,111,108,45,115,109,45,49,48,123,45,109,115,45,102,108,101,120,58,48,32,48,32,56,51,46,51,51,51,51,51,51,37,59,102,108,101,120,58,48,32,48,32,56,51,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,56,51,46,51,51,51,51,51,51,37,125,46,99,111,108,45,115,109,45,49,49,123,45,109,115,45,102,108,101,120,58,48,32,48,32,57,49,46,54,54,54,54,54,55,37,59,102,108,101,120,58,48,32,48,32,57,49,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,57,49,46,54,54,54,54,54,55,37,125,46,99,111,108,45,115,109,45,49,50,123,45,109,115,45,102,108,101,120,58,48,32,48,32,49,48,48,37,59,102,108,101,120,58,48,32,48,32,49,48,48,37,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,111,114,100,101,114,45,115,109,45,102,105,114,115,116,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,45,49,59,111,114,100,101,114,58,45,49,125,46,111,114,100,101,114,45,115,109,45,108,97,115,116,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,51,59,111,114,100,101,114,58,49,51,125,46,111,114,100,101,114,45,115,109,45,48,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,48,59,111,114,100,101,114,58,48,125,46,111,114,100,101,114,45,115,109,45,49,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,59,111,114,100,101,114,58,49,125,46,111,114,100,101,114,45,115,109,45,50,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,50,59,111,114,100,101,114,58,50,125,46,111,114,100,101,114,45,115,109,45,51,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,51,59,111,114,100,101,114,58,51,125,46,111,114,100,101,114,45,115,109,45,52,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,52,59,111,114,100,101,114,58,52,125,46,111,114,100,101,114,45,115,109,45,53,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,53,59,111,114,100,101,114,58,53,125,46,111,114,100,101,114,45,115,109,45,54,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,54,59,111,114,100,101,114,58,54,125,46,111,114,100,101,114,45,115,109,45,55,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,55,59,111,114,100,101,114,58,55,125,46,111,114,100,101,114,45,115,109,45,56,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,56,59,111,114,100,101,114,58,56,125,46,111,114,100,101,114,45,115,109,45,57,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,57,59,111,114,100,101,114,58,57,125,46,111,114,100,101,114,45,115,109,45,49,48,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,48,59,111,114,100,101,114,58,49,48,125,46,111,114,100,101,114,45,115,109,45,49,49,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,49,59,111,114,100,101,114,58,49,49,125,46,111,114,100,101,114,45,115,109,45,49,50,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,50,59,111,114,100,101,114,58,49,50,125,46,111,102,102,115,101,116,45,115,109,45,48,123,109,97,114,103,105,110,45,108,101,102,116,58,48,125,46,111,102,102,115,101,116,45,115,109,45,49,123,109,97,114,103,105,110,45,108,101,102,116,58,56,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,115,109,45,50,123,109,97,114,103,105,110,45,108,101,102,116,58,49,54,46,54,54,54,54,54,55,37,125,46,111,102,102,115,101,116,45,115,109,45,51,123,109,97,114,103,105,110,45,108,101,102,116,58,50,53,37,125,46,111,102,102,115,101,116,45,115,109,45,52,123,109,97,114,103,105,110,45,108,101,102,116,58,51,51,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,115,109,45,53,123,109,97,114,103,105,110,45,108,101,102,116,58,52,49,46,54,54,54,54,54,55,37,125,46,111,102,102,115,101,116,45,115,109,45,54,123,109,97,114,103,105,110,45,108,101,102,116,58,53,48,37,125,46,111,102,102,115,101,116,45,115,109,45,55,123,109,97,114,103,105,110,45,108,101,102,116,58,53,56,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,115,109,45,56,123,109,97,114,103,105,110,45,108,101,102,116,58,54,54,46,54,54,54,54,54,55,37,125,46,111,102,102,115,101,116,45,115,109,45,57,123,109,97,114,103,105,110,45,108,101,102,116,58,55,53,37,125,46,111,102,102,115,101,116,45,115,109,45,49,48,123,109,97,114,103,105,110,45,108,101,102,116,58,56,51,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,115,109,45,49,49,123,109,97,114,103,105,110,45,108,101,102,116,58,57,49,46,54,54,54,54,54,55,37,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,55,54,56,112,120,41,123,46,99,111,108,45,109,100,123,45,109,115,45,102,108,101,120,45,112,114,101,102,101,114,114,101,100,45,115,105,122,101,58,48,59,102,108,101,120,45,98,97,115,105,115,58,48,59,45,109,115,45,102,108,101,120,45,112,111,115,105,116,105,118,101,58,49,59,102,108,101,120,45,103,114,111,119,58,49,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,99,111,108,45,109,100,45,97,117,116,111,123,45,109,115,45,102,108,101,120,58,48,32,48,32,97,117,116,111,59,102,108,101,120,58,48,32,48,32,97,117,116,111,59,119,105,100,116,104,58,97,117,116,111,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,99,111,108,45,109,100,45,49,123,45,109,115,45,102,108,101,120,58,48,32,48,32,56,46,51,51,51,51,51,51,37,59,102,108,101,120,58,48,32,48,32,56,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,56,46,51,51,51,51,51,51,37,125,46,99,111,108,45,109,100,45,50,123,45,109,115,45,102,108,101,120,58,48,32,48,32,49,54,46,54,54,54,54,54,55,37,59,102,108,101,120,58,48,32,48,32,49,54,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,49,54,46,54,54,54,54,54,55,37,125,46,99,111,108,45,109,100,45,51,123,45,109,115,45,102,108,101,120,58,48,32,48,32,50,53,37,59,102,108,101,120,58,48,32,48,32,50,53,37,59,109,97,120,45,119,105,100,116,104,58,50,53,37,125,46,99,111,108,45,109,100,45,52,123,45,109,115,45,102,108,101,120,58,48,32,48,32,51,51,46,51,51,51,51,51,51,37,59,102,108,101,120,58,48,32,48,32,51,51,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,51,51,46,51,51,51,51,51,51,37,125,46,99,111,108,45,109,100,45,53,123,45,109,115,45,102,108,101,120,58,48,32,48,32,52,49,46,54,54,54,54,54,55,37,59,102,108,101,120,58,48,32,48,32,52,49,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,52,49,46,54,54,54,54,54,55,37,125,46,99,111,108,45,109,100,45,54,123,45,109,115,45,102,108,101,120,58,48,32,48,32,53,48,37,59,102,108,101,120,58,48,32,48,32,53,48,37,59,109,97,120,45,119,105,100,116,104,58,53,48,37,125,46,99,111,108,45,109,100,45,55,123,45,109,115,45,102,108,101,120,58,48,32,48,32,53,56,46,51,51,51,51,51,51,37,59,102,108,101,120,58,48,32,48,32,53,56,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,53,56,46,51,51,51,51,51,51,37,125,46,99,111,108,45,109,100,45,56,123,45,109,115,45,102,108,101,120,58,48,32,48,32,54,54,46,54,54,54,54,54,55,37,59,102,108,101,120,58,48,32,48,32,54,54,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,54,54,46,54,54,54,54,54,55,37,125,46,99,111,108,45,109,100,45,57,123,45,109,115,45,102,108,101,120,58,48,32,48,32,55,53,37,59,102,108,101,120,58,48,32,48,32,55,53,37,59,109,97,120,45,119,105,100,116,104,58,55,53,37,125,46,99,111,108,45,109,100,45,49,48,123,45,109,115,45,102,108,101,120,58,48,32,48,32,56,51,46,51,51,51,51,51,51,37,59,102,108,101,120,58,48,32,48,32,56,51,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,56,51,46,51,51,51,51,51,51,37,125,46,99,111,108,45,109,100,45,49,49,123,45,109,115,45,102,108,101,120,58,48,32,48,32,57,49,46,54,54,54,54,54,55,37,59,102,108,101,120,58,48,32,48,32,57,49,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,57,49,46,54,54,54,54,54,55,37,125,46,99,111,108,45,109,100,45,49,50,123,45,109,115,45,102,108,101,120,58,48,32,48,32,49,48,48,37,59,102,108,101,120,58,48,32,48,32,49,48,48,37,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,111,114,100,101,114,45,109,100,45,102,105,114,115,116,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,45,49,59,111,114,100,101,114,58,45,49,125,46,111,114,100,101,114,45,109,100,45,108,97,115,116,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,51,59,111,114,100,101,114,58,49,51,125,46,111,114,100,101,114,45,109,100,45,48,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,48,59,111,114,100,101,114,58,48,125,46,111,114,100,101,114,45,109,100,45,49,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,59,111,114,100,101,114,58,49,125,46,111,114,100,101,114,45,109,100,45,50,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,50,59,111,114,100,101,114,58,50,125,46,111,114,100,101,114,45,109,100,45,51,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,51,59,111,114,100,101,114,58,51,125,46,111,114,100,101,114,45,109,100,45,52,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,52,59,111,114,100,101,114,58,52,125,46,111,114,100,101,114,45,109,100,45,53,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,53,59,111,114,100,101,114,58,53,125,46,111,114,100,101,114,45,109,100,45,54,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,54,59,111,114,100,101,114,58,54,125,46,111,114,100,101,114,45,109,100,45,55,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,55,59,111,114,100,101,114,58,55,125,46,111,114,100,101,114,45,109,100,45,56,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,56,59,111,114,100,101,114,58,56,125,46,111,114,100,101,114,45,109,100,45,57,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,57,59,111,114,100,101,114,58,57,125,46,111,114,100,101,114,45,109,100,45,49,48,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,48,59,111,114,100,101,114,58,49,48,125,46,111,114,100,101,114,45,109,100,45,49,49,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,49,59,111,114,100,101,114,58,49,49,125,46,111,114,100,101,114,45,109,100,45,49,50,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,50,59,111,114,100,101,114,58,49,50,125,46,111,102,102,115,101,116,45,109,100,45,48,123,109,97,114,103,105,110,45,108,101,102,116,58,48,125,46,111,102,102,115,101,116,45,109,100,45,49,123,109,97,114,103,105,110,45,108,101,102,116,58,56,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,109,100,45,50,123,109,97,114,103,105,110,45,108,101,102,116,58,49,54,46,54,54,54,54,54,55,37,125,46,111,102,102,115,101,116,45,109,100,45,51,123,109,97,114,103,105,110,45,108,101,102,116,58,50,53,37,125,46,111,102,102,115,101,116,45,109,100,45,52,123,109,97,114,103,105,110,45,108,101,102,116,58,51,51,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,109,100,45,53,123,109,97,114,103,105,110,45,108,101,102,116,58,52,49,46,54,54,54,54,54,55,37,125,46,111,102,102,115,101,116,45,109,100,45,54,123,109,97,114,103,105,110,45,108,101,102,116,58,53,48,37,125,46,111,102,102,115,101,116,45,109,100,45,55,123,109,97,114,103,105,110,45,108,101,102,116,58,53,56,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,109,100,45,56,123,109,97,114,103,105,110,45,108,101,102,116,58,54,54,46,54,54,54,54,54,55,37,125,46,111,102,102,115,101,116,45,109,100,45,57,123,109,97,114,103,105,110,45,108,101,102,116,58,55,53,37,125,46,111,102,102,115,101,116,45,109,100,45,49,48,123,109,97,114,103,105,110,45,108,101,102,116,58,56,51,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,109,100,45,49,49,123,109,97,114,103,105,110,45,108,101,102,116,58,57,49,46,54,54,54,54,54,55,37,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,57,57,50,112,120,41,123,46,99,111,108,45,108,103,123,45,109,115,45,102,108,101,120,45,112,114,101,102,101,114,114,101,100,45,115,105,122,101,58,48,59,102,108,101,120,45,98,97,115,105,115,58,48,59,45,109,115,45,102,108,101,120,45,112,111,115,105,116,105,118,101,58,49,59,102,108,101,120,45,103,114,111,119,58,49,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,99,111,108,45,108,103,45,97,117,116,111,123,45,109,115,45,102,108,101,120,58,48,32,48,32,97,117,116,111,59,102,108,101,120,58,48,32,48,32,97,117,116,111,59,119,105,100,116,104,58,97,117,116,111,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,99,111,108,45,108,103,45,49,123,45,109,115,45,102,108,101,120,58,48,32,48,32,56,46,51,51,51,51,51,51,37,59,102,108,101,120,58,48,32,48,32,56,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,56,46,51,51,51,51,51,51,37,125,46,99,111,108,45,108,103,45,50,123,45,109,115,45,102,108,101,120,58,48,32,48,32,49,54,46,54,54,54,54,54,55,37,59,102,108,101,120,58,48,32,48,32,49,54,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,49,54,46,54,54,54,54,54,55,37,125,46,99,111,108,45,108,103,45,51,123,45,109,115,45,102,108,101,120,58,48,32,48,32,50,53,37,59,102,108,101,120,58,48,32,48,32,50,53,37,59,109,97,120,45,119,105,100,116,104,58,50,53,37,125,46,99,111,108,45,108,103,45,52,123,45,109,115,45,102,108,101,120,58,48,32,48,32,51,51,46,51,51,51,51,51,51,37,59,102,108,101,120,58,48,32,48,32,51,51,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,51,51,46,51,51,51,51,51,51,37,125,46,99,111,108,45,108,103,45,53,123,45,109,115,45,102,108,101,120,58,48,32,48,32,52,49,46,54,54,54,54,54,55,37,59,102,108,101,120,58,48,32,48,32,52,49,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,52,49,46,54,54,54,54,54,55,37,125,46,99,111,108,45,108,103,45,54,123,45,109,115,45,102,108,101,120,58,48,32,48,32,53,48,37,59,102,108,101,120,58,48,32,48,32,53,48,37,59,109,97,120,45,119,105,100,116,104,58,53,48,37,125,46,99,111,108,45,108,103,45,55,123,45,109,115,45,102,108,101,120,58,48,32,48,32,53,56,46,51,51,51,51,51,51,37,59,102,108,101,120,58,48,32,48,32,53,56,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,53,56,46,51,51,51,51,51,51,37,125,46,99,111,108,45,108,103,45,56,123,45,109,115,45,102,108,101,120,58,48,32,48,32,54,54,46,54,54,54,54,54,55,37,59,102,108,101,120,58,48,32,48,32,54,54,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,54,54,46,54,54,54,54,54,55,37,125,46,99,111,108,45,108,103,45,57,123,45,109,115,45,102,108,101,120,58,48,32,48,32,55,53,37,59,102,108,101,120,58,48,32,48,32,55,53,37,59,109,97,120,45,119,105,100,116,104,58,55,53,37,125,46,99,111,108,45,108,103,45,49,48,123,45,109,115,45,102,108,101,120,58,48,32,48,32,56,51,46,51,51,51,51,51,51,37,59,102,108,101,120,58,48,32,48,32,56,51,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,56,51,46,51,51,51,51,51,51,37,125,46,99,111,108,45,108,103,45,49,49,123,45,109,115,45,102,108,101,120,58,48,32,48,32,57,49,46,54,54,54,54,54,55,37,59,102,108,101,120,58,48,32,48,32,57,49,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,57,49,46,54,54,54,54,54,55,37,125,46,99,111,108,45,108,103,45,49,50,123,45,109,115,45,102,108,101,120,58,48,32,48,32,49,48,48,37,59,102,108,101,120,58,48,32,48,32,49,48,48,37,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,111,114,100,101,114,45,108,103,45,102,105,114,115,116,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,45,49,59,111,114,100,101,114,58,45,49,125,46,111,114,100,101,114,45,108,103,45,108,97,115,116,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,51,59,111,114,100,101,114,58,49,51,125,46,111,114,100,101,114,45,108,103,45,48,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,48,59,111,114,100,101,114,58,48,125,46,111,114,100,101,114,45,108,103,45,49,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,59,111,114,100,101,114,58,49,125,46,111,114,100,101,114,45,108,103,45,50,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,50,59,111,114,100,101,114,58,50,125,46,111,114,100,101,114,45,108,103,45,51,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,51,59,111,114,100,101,114,58,51,125,46,111,114,100,101,114,45,108,103,45,52,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,52,59,111,114,100,101,114,58,52,125,46,111,114,100,101,114,45,108,103,45,53,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,53,59,111,114,100,101,114,58,53,125,46,111,114,100,101,114,45,108,103,45,54,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,54,59,111,114,100,101,114,58,54,125,46,111,114,100,101,114,45,108,103,45,55,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,55,59,111,114,100,101,114,58,55,125,46,111,114,100,101,114,45,108,103,45,56,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,56,59,111,114,100,101,114,58,56,125,46,111,114,100,101,114,45,108,103,45,57,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,57,59,111,114,100,101,114,58,57,125,46,111,114,100,101,114,45,108,103,45,49,48,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,48,59,111,114,100,101,114,58,49,48,125,46,111,114,100,101,114,45,108,103,45,49,49,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,49,59,111,114,100,101,114,58,49,49,125,46,111,114,100,101,114,45,108,103,45,49,50,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,50,59,111,114,100,101,114,58,49,50,125,46,111,102,102,115,101,116,45,108,103,45,48,123,109,97,114,103,105,110,45,108,101,102,116,58,48,125,46,111,102,102,115,101,116,45,108,103,45,49,123,109,97,114,103,105,110,45,108,101,102,116,58,56,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,108,103,45,50,123,109,97,114,103,105,110,45,108,101,102,116,58,49,54,46,54,54,54,54,54,55,37,125,46,111,102,102,115,101,116,45,108,103,45,51,123,109,97,114,103,105,110,45,108,101,102,116,58,50,53,37,125,46,111,102,102,115,101,116,45,108,103,45,52,123,109,97,114,103,105,110,45,108,101,102,116,58,51,51,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,108,103,45,53,123,109,97,114,103,105,110,45,108,101,102,116,58,52,49,46,54,54,54,54,54,55,37,125,46,111,102,102,115,101,116,45,108,103,45,54,123,109,97,114,103,105,110,45,108,101,102,116,58,53,48,37,125,46,111,102,102,115,101,116,45,108,103,45,55,123,109,97,114,103,105,110,45,108,101,102,116,58,53,56,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,108,103,45,56,123,109,97,114,103,105,110,45,108,101,102,116,58,54,54,46,54,54,54,54,54,55,37,125,46,111,102,102,115,101,116,45,108,103,45,57,123,109,97,114,103,105,110,45,108,101,102,116,58,55,53,37,125,46,111,102,102,115,101,116,45,108,103,45,49,48,123,109,97,114,103,105,110,45,108,101,102,116,58,56,51,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,108,103,45,49,49,123,109,97,114,103,105,110,45,108,101,102,116,58,57,49,46,54,54,54,54,54,55,37,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,49,50,48,48,112,120,41,123,46,99,111,108,45,120,108,123,45,109,115,45,102,108,101,120,45,112,114,101,102,101,114,114,101,100,45,115,105,122,101,58,48,59,102,108,101,120,45,98,97,115,105,115,58,48,59,45,109,115,45,102,108,101,120,45,112,111,115,105,116,105,118,101,58,49,59,102,108,101,120,45,103,114,111,119,58,49,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,99,111,108,45,120,108,45,97,117,116,111,123,45,109,115,45,102,108,101,120,58,48,32,48,32,97,117,116,111,59,102,108,101,120,58,48,32,48,32,97,117,116,111,59,119,105,100,116,104,58,97,117,116,111,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,99,111,108,45,120,108,45,49,123,45,109,115,45,102,108,101,120,58,48,32,48,32,56,46,51,51,51,51,51,51,37,59,102,108,101,120,58,48,32,48,32,56,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,56,46,51,51,51,51,51,51,37,125,46,99,111,108,45,120,108,45,50,123,45,109,115,45,102,108,101,120,58,48,32,48,32,49,54,46,54,54,54,54,54,55,37,59,102,108,101,120,58,48,32,48,32,49,54,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,49,54,46,54,54,54,54,54,55,37,125,46,99,111,108,45,120,108,45,51,123,45,109,115,45,102,108,101,120,58,48,32,48,32,50,53,37,59,102,108,101,120,58,48,32,48,32,50,53,37,59,109,97,120,45,119,105,100,116,104,58,50,53,37,125,46,99,111,108,45,120,108,45,52,123,45,109,115,45,102,108,101,120,58,48,32,48,32,51,51,46,51,51,51,51,51,51,37,59,102,108,101,120,58,48,32,48,32,51,51,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,51,51,46,51,51,51,51,51,51,37,125,46,99,111,108,45,120,108,45,53,123,45,109,115,45,102,108,101,120,58,48,32,48,32,52,49,46,54,54,54,54,54,55,37,59,102,108,101,120,58,48,32,48,32,52,49,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,52,49,46,54,54,54,54,54,55,37,125,46,99,111,108,45,120,108,45,54,123,45,109,115,45,102,108,101,120,58,48,32,48,32,53,48,37,59,102,108,101,120,58,48,32,48,32,53,48,37,59,109,97,120,45,119,105,100,116,104,58,53,48,37,125,46,99,111,108,45,120,108,45,55,123,45,109,115,45,102,108,101,120,58,48,32,48,32,53,56,46,51,51,51,51,51,51,37,59,102,108,101,120,58,48,32,48,32,53,56,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,53,56,46,51,51,51,51,51,51,37,125,46,99,111,108,45,120,108,45,56,123,45,109,115,45,102,108,101,120,58,48,32,48,32,54,54,46,54,54,54,54,54,55,37,59,102,108,101,120,58,48,32,48,32,54,54,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,54,54,46,54,54,54,54,54,55,37,125,46,99,111,108,45,120,108,45,57,123,45,109,115,45,102,108,101,120,58,48,32,48,32,55,53,37,59,102,108,101,120,58,48,32,48,32,55,53,37,59,109,97,120,45,119,105,100,116,104,58,55,53,37,125,46,99,111,108,45,120,108,45,49,48,123,45,109,115,45,102,108,101,120,58,48,32,48,32,56,51,46,51,51,51,51,51,51,37,59,102,108,101,120,58,48,32,48,32,56,51,46,51,51,51,51,51,51,37,59,109,97,120,45,119,105,100,116,104,58,56,51,46,51,51,51,51,51,51,37,125,46,99,111,108,45,120,108,45,49,49,123,45,109,115,45,102,108,101,120,58,48,32,48,32,57,49,46,54,54,54,54,54,55,37,59,102,108,101,120,58,48,32,48,32,57,49,46,54,54,54,54,54,55,37,59,109,97,120,45,119,105,100,116,104,58,57,49,46,54,54,54,54,54,55,37,125,46,99,111,108,45,120,108,45,49,50,123,45,109,115,45,102,108,101,120,58,48,32,48,32,49,48,48,37,59,102,108,101,120,58,48,32,48,32,49,48,48,37,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,125,46,111,114,100,101,114,45,120,108,45,102,105,114,115,116,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,45,49,59,111,114,100,101,114,58,45,49,125,46,111,114,100,101,114,45,120,108,45,108,97,115,116,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,51,59,111,114,100,101,114,58,49,51,125,46,111,114,100,101,114,45,120,108,45,48,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,48,59,111,114,100,101,114,58,48,125,46,111,114,100,101,114,45,120,108,45,49,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,59,111,114,100,101,114,58,49,125,46,111,114,100,101,114,45,120,108,45,50,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,50,59,111,114,100,101,114,58,50,125,46,111,114,100,101,114,45,120,108,45,51,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,51,59,111,114,100,101,114,58,51,125,46,111,114,100,101,114,45,120,108,45,52,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,52,59,111,114,100,101,114,58,52,125,46,111,114,100,101,114,45,120,108,45,53,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,53,59,111,114,100,101,114,58,53,125,46,111,114,100,101,114,45,120,108,45,54,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,54,59,111,114,100,101,114,58,54,125,46,111,114,100,101,114,45,120,108,45,55,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,55,59,111,114,100,101,114,58,55,125,46,111,114,100,101,114,45,120,108,45,56,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,56,59,111,114,100,101,114,58,56,125,46,111,114,100,101,114,45,120,108,45,57,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,57,59,111,114,100,101,114,58,57,125,46,111,114,100,101,114,45,120,108,45,49,48,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,48,59,111,114,100,101,114,58,49,48,125,46,111,114,100,101,114,45,120,108,45,49,49,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,49,59,111,114,100,101,114,58,49,49,125,46,111,114,100,101,114,45,120,108,45,49,50,123,45,109,115,45,102,108,101,120,45,111,114,100,101,114,58,49,50,59,111,114,100,101,114,58,49,50,125,46,111,102,102,115,101,116,45,120,108,45,48,123,109,97,114,103,105,110,45,108,101,102,116,58,48,125,46,111,102,102,115,101,116,45,120,108,45,49,123,109,97,114,103,105,110,45,108,101,102,116,58,56,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,120,108,45,50,123,109,97,114,103,105,110,45,108,101,102,116,58,49,54,46,54,54,54,54,54,55,37,125,46,111,102,102,115,101,116,45,120,108,45,51,123,109,97,114,103,105,110,45,108,101,102,116,58,50,53,37,125,46,111,102,102,115,101,116,45,120,108,45,52,123,109,97,114,103,105,110,45,108,101,102,116,58,51,51,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,120,108,45,53,123,109,97,114,103,105,110,45,108,101,102,116,58,52,49,46,54,54,54,54,54,55,37,125,46,111,102,102,115,101,116,45,120,108,45,54,123,109,97,114,103,105,110,45,108,101,102,116,58,53,48,37,125,46,111,102,102,115,101,116,45,120,108,45,55,123,109,97,114,103,105,110,45,108,101,102,116,58,53,56,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,120,108,45,56,123,109,97,114,103,105,110,45,108,101,102,116,58,54,54,46,54,54,54,54,54,55,37,125,46,111,102,102,115,101,116,45,120,108,45,57,123,109,97,114,103,105,110,45,108,101,102,116,58,55,53,37,125,46,111,102,102,115,101,116,45,120,108,45,49,48,123,109,97,114,103,105,110,45,108,101,102,116,58,56,51,46,51,51,51,51,51,51,37,125,46,111,102,102,115,101,116,45,120,108,45,49,49,123,109,97,114,103,105,110,45,108,101,102,116,58,57,49,46,54,54,54,54,54,55,37,125,125,46,116,97,98,108,101,123,119,105,100,116,104,58,49,48,48,37,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,114,101,109,59,99,111,108,111,114,58,35,50,49,50,53,50,57,125,46,116,97,98,108,101,32,116,100,44,46,116,97,98,108,101,32,116,104,123,112,97,100,100,105,110,103,58,46,55,53,114,101,109,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,116,111,112,59,98,111,114,100,101,114,45,116,111,112,58,49,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,125,46,116,97,98,108,101,32,116,104,101,97,100,32,116,104,123,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,98,111,116,116,111,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,50,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,125,46,116,97,98,108,101,32,116,98,111,100,121,43,116,98,111,100,121,123,98,111,114,100,101,114,45,116,111,112,58,50,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,125,46,116,97,98,108,101,45,115,109,32,116,100,44,46,116,97,98,108,101,45,115,109,32,116,104,123,112,97,100,100,105,110,103,58,46,51,114,101,109,125,46,116,97,98,108,101,45,98,111,114,100,101,114,101,100,123,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,125,46,116,97,98,108,101,45,98,111,114,100,101,114,101,100,32,116,100,44,46,116,97,98,108,101,45,98,111,114,100,101,114,101,100,32,116,104,123,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,125,46,116,97,98,108,101,45,98,111,114,100,101,114,101,100,32,116,104,101,97,100,32,116,100,44,46,116,97,98,108,101,45,98,111,114,100,101,114,101,100,32,116,104,101,97,100,32,116,104,123,98,111,114,100,101,114,45,98,111,116,116,111,109,45,119,105,100,116,104,58,50,112,120,125,46,116,97,98,108,101,45,98,111,114,100,101,114,108,101,115,115,32,116,98,111,100,121,43,116,98,111,100,121,44,46,116,97,98,108,101,45,98,111,114,100,101,114,108,101,115,115,32,116,100,44,46,116,97,98,108,101,45,98,111,114,100,101,114,108,101,115,115,32,116,104,44,46,116,97,98,108,101,45,98,111,114,100,101,114,108,101,115,115,32,116,104,101,97,100,32,116,104,123,98,111,114,100,101,114,58,48,125,46,116,97,98,108,101,45,115,116,114,105,112,101,100,32,116,98,111,100,121,32,116,114,58,110,116,104,45,111,102,45,116,121,112,101,40,111,100,100,41,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,48,53,41,125,46,116,97,98,108,101,45,104,111,118,101,114,32,116,98,111,100,121,32,116,114,58,104,111,118,101,114,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,48,55,53,41,125,46,116,97,98,108,101,45,112,114,105,109,97,114,121,44,46,116,97,98,108,101,45,112,114,105,109,97,114,121,62,116,100,44,46,116,97,98,108,101,45,112,114,105,109,97,114,121,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,56,100,97,102,102,125,46,116,97,98,108,101,45,112,114,105,109,97,114,121,32,116,98,111,100,121,43,116,98,111,100,121,44,46,116,97,98,108,101,45,112,114,105,109,97,114,121,32,116,100,44,46,116,97,98,108,101,45,112,114,105,109,97,114,121,32,116,104,44,46,116,97,98,108,101,45,112,114,105,109,97,114,121,32,116,104,101,97,100,32,116,104,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,55,97,98,97,102,102,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,112,114,105,109,97,114,121,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,57,102,99,100,102,102,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,112,114,105,109,97,114,121,58,104,111,118,101,114,62,116,100,44,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,112,114,105,109,97,114,121,58,104,111,118,101,114,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,57,102,99,100,102,102,125,46,116,97,98,108,101,45,115,101,99,111,110,100,97,114,121,44,46,116,97,98,108,101,45,115,101,99,111,110,100,97,114,121,62,116,100,44,46,116,97,98,108,101,45,115,101,99,111,110,100,97,114,121,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,54,100,56,100,98,125,46,116,97,98,108,101,45,115,101,99,111,110,100,97,114,121,32,116,98,111,100,121,43,116,98,111,100,121,44,46,116,97,98,108,101,45,115,101,99,111,110,100,97,114,121,32,116,100,44,46,116,97,98,108,101,45,115,101,99,111,110,100,97,114,121,32,116,104,44,46,116,97,98,108,101,45,115,101,99,111,110,100,97,114,121,32,116,104,101,97,100,32,116,104,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,98,51,98,55,98,98,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,115,101,99,111,110,100,97,114,121,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,99,56,99,98,99,102,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,115,101,99,111,110,100,97,114,121,58,104,111,118,101,114,62,116,100,44,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,115,101,99,111,110,100,97,114,121,58,104,111,118,101,114,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,99,56,99,98,99,102,125,46,116,97,98,108,101,45,115,117,99,99,101,115,115,44,46,116,97,98,108,101,45,115,117,99,99,101,115,115,62,116,100,44,46,116,97,98,108,101,45,115,117,99,99,101,115,115,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,99,51,101,54,99,98,125,46,116,97,98,108,101,45,115,117,99,99,101,115,115,32,116,98,111,100,121,43,116,98,111,100,121,44,46,116,97,98,108,101,45,115,117,99,99,101,115,115,32,116,100,44,46,116,97,98,108,101,45,115,117,99,99,101,115,115,32,116,104,44,46,116,97,98,108,101,45,115,117,99,99,101,115,115,32,116,104,101,97,100,32,116,104,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,56,102,100,49,57,101,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,115,117,99,99,101,115,115,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,49,100,102,98,98,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,115,117,99,99,101,115,115,58,104,111,118,101,114,62,116,100,44,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,115,117,99,99,101,115,115,58,104,111,118,101,114,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,49,100,102,98,98,125,46,116,97,98,108,101,45,105,110,102,111,44,46,116,97,98,108,101,45,105,110,102,111,62,116,100,44,46,116,97,98,108,101,45,105,110,102,111,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,101,101,53,101,98,125,46,116,97,98,108,101,45,105,110,102,111,32,116,98,111,100,121,43,116,98,111,100,121,44,46,116,97,98,108,101,45,105,110,102,111,32,116,100,44,46,116,97,98,108,101,45,105,110,102,111,32,116,104,44,46,116,97,98,108,101,45,105,110,102,111,32,116,104,101,97,100,32,116,104,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,56,54,99,102,100,97,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,105,110,102,111,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,97,98,100,100,101,53,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,105,110,102,111,58,104,111,118,101,114,62,116,100,44,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,105,110,102,111,58,104,111,118,101,114,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,97,98,100,100,101,53,125,46,116,97,98,108,101,45,119,97,114,110,105,110,103,44,46,116,97,98,108,101,45,119,97,114,110,105,110,103,62,116,100,44,46,116,97,98,108,101,45,119,97,114,110,105,110,103,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,101,101,98,97,125,46,116,97,98,108,101,45,119,97,114,110,105,110,103,32,116,98,111,100,121,43,116,98,111,100,121,44,46,116,97,98,108,101,45,119,97,114,110,105,110,103,32,116,100,44,46,116,97,98,108,101,45,119,97,114,110,105,110,103,32,116,104,44,46,116,97,98,108,101,45,119,97,114,110,105,110,103,32,116,104,101,97,100,32,116,104,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,102,100,102,55,101,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,119,97,114,110,105,110,103,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,101,56,97,49,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,119,97,114,110,105,110,103,58,104,111,118,101,114,62,116,100,44,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,119,97,114,110,105,110,103,58,104,111,118,101,114,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,101,56,97,49,125,46,116,97,98,108,101,45,100,97,110,103,101,114,44,46,116,97,98,108,101,45,100,97,110,103,101,114,62,116,100,44,46,116,97,98,108,101,45,100,97,110,103,101,114,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,53,99,54,99,98,125,46,116,97,98,108,101,45,100,97,110,103,101,114,32,116,98,111,100,121,43,116,98,111,100,121,44,46,116,97,98,108,101,45,100,97,110,103,101,114,32,116,100,44,46,116,97,98,108,101,45,100,97,110,103,101,114,32,116,104,44,46,116,97,98,108,101,45,100,97,110,103,101,114,32,116,104,101,97,100,32,116,104,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,101,100,57,54,57,101,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,100,97,110,103,101,114,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,49,98,48,98,55,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,100,97,110,103,101,114,58,104,111,118,101,114,62,116,100,44,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,100,97,110,103,101,114,58,104,111,118,101,114,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,49,98,48,98,55,125,46,116,97,98,108,101,45,108,105,103,104,116,44,46,116,97,98,108,101,45,108,105,103,104,116,62,116,100,44,46,116,97,98,108,101,45,108,105,103,104,116,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,100,102,100,102,101,125,46,116,97,98,108,101,45,108,105,103,104,116,32,116,98,111,100,121,43,116,98,111,100,121,44,46,116,97,98,108,101,45,108,105,103,104,116,32,116,100,44,46,116,97,98,108,101,45,108,105,103,104,116,32,116,104,44,46,116,97,98,108,101,45,108,105,103,104,116,32,116,104,101,97,100,32,116,104,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,98,102,99,102,99,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,108,105,103,104,116,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,99,101,99,102,54,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,108,105,103,104,116,58,104,111,118,101,114,62,116,100,44,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,108,105,103,104,116,58,104,111,118,101,114,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,99,101,99,102,54,125,46,116,97,98,108,101,45,100,97,114,107,44,46,116,97,98,108,101,45,100,97,114,107,62,116,100,44,46,116,97,98,108,101,45,100,97,114,107,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,99,54,99,56,99,97,125,46,116,97,98,108,101,45,100,97,114,107,32,116,98,111,100,121,43,116,98,111,100,121,44,46,116,97,98,108,101,45,100,97,114,107,32,116,100,44,46,116,97,98,108,101,45,100,97,114,107,32,116,104,44,46,116,97,98,108,101,45,100,97,114,107,32,116,104,101,97,100,32,116,104,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,57,53,57,57,57,99,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,100,97,114,107,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,57,98,98,98,101,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,100,97,114,107,58,104,111,118,101,114,62,116,100,44,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,100,97,114,107,58,104,111,118,101,114,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,57,98,98,98,101,125,46,116,97,98,108,101,45,97,99,116,105,118,101,44,46,116,97,98,108,101,45,97,99,116,105,118,101,62,116,100,44,46,116,97,98,108,101,45,97,99,116,105,118,101,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,48,55,53,41,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,97,99,116,105,118,101,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,48,55,53,41,125,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,97,99,116,105,118,101,58,104,111,118,101,114,62,116,100,44,46,116,97,98,108,101,45,104,111,118,101,114,32,46,116,97,98,108,101,45,97,99,116,105,118,101,58,104,111,118,101,114,62,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,48,55,53,41,125,46,116,97,98,108,101,32,46,116,104,101,97,100,45,100,97,114,107,32,116,104,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,51,52,51,97,52,48,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,52,53,52,100,53,53,125,46,116,97,98,108,101,32,46,116,104,101,97,100,45,108,105,103,104,116,32,116,104,123,99,111,108,111,114,58,35,52,57,53,48,53,55,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,57,101,99,101,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,101,101,50,101,54,125,46,116,97,98,108,101,45,100,97,114,107,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,51,52,51,97,52,48,125,46,116,97,98,108,101,45,100,97,114,107,32,116,100,44,46,116,97,98,108,101,45,100,97,114,107,32,116,104,44,46,116,97,98,108,101,45,100,97,114,107,32,116,104,101,97,100,32,116,104,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,52,53,52,100,53,53,125,46,116,97,98,108,101,45,100,97,114,107,46,116,97,98,108,101,45,98,111,114,100,101,114,101,100,123,98,111,114,100,101,114,58,48,125,46,116,97,98,108,101,45,100,97,114,107,46,116,97,98,108,101,45,115,116,114,105,112,101,100,32,116,98,111,100,121,32,116,114,58,110,116,104,45,111,102,45,116,121,112,101,40,111,100,100,41,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,46,48,53,41,125,46,116,97,98,108,101,45,100,97,114,107,46,116,97,98,108,101,45,104,111,118,101,114,32,116,98,111,100,121,32,116,114,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,46,48,55,53,41,125,64,109,101,100,105,97,32,40,109,97,120,45,119,105,100,116,104,58,53,55,53,46,57,56,112,120,41,123,46,116,97,98,108,101,45,114,101,115,112,111,110,115,105,118,101,45,115,109,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,59,111,118,101,114,102,108,111,119,45,120,58,97,117,116,111,59,45,119,101,98,107,105,116,45,111,118,101,114,102,108,111,119,45,115,99,114,111,108,108,105,110,103,58,116,111,117,99,104,125,46,116,97,98,108,101,45,114,101,115,112,111,110,115,105,118,101,45,115,109,62,46,116,97,98,108,101,45,98,111,114,100,101,114,101,100,123,98,111,114,100,101,114,58,48,125,125,64,109,101,100,105,97,32,40,109,97,120,45,119,105,100,116,104,58,55,54,55,46,57,56,112,120,41,123,46,116,97,98,108,101,45,114,101,115,112,111,110,115,105,118,101,45,109,100,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,59,111,118,101,114,102,108,111,119,45,120,58,97,117,116,111,59,45,119,101,98,107,105,116,45,111,118,101,114,102,108,111,119,45,115,99,114,111,108,108,105,110,103,58,116,111,117,99,104,125,46,116,97,98,108,101,45,114,101,115,112,111,110,115,105,118,101,45,109,100,62,46,116,97,98,108,101,45,98,111,114,100,101,114,101,100,123,98,111,114,100,101,114,58,48,125,125,64,109,101,100,105,97,32,40,109,97,120,45,119,105,100,116,104,58,57,57,49,46,57,56,112,120,41,123,46,116,97,98,108,101,45,114,101,115,112,111,110,115,105,118,101,45,108,103,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,59,111,118,101,114,102,108,111,119,45,120,58,97,117,116,111,59,45,119,101,98,107,105,116,45,111,118,101,114,102,108,111,119,45,115,99,114,111,108,108,105,110,103,58,116,111,117,99,104,125,46,116,97,98,108,101,45,114,101,115,112,111,110,115,105,118,101,45,108,103,62,46,116,97,98,108,101,45,98,111,114,100,101,114,101,100,123,98,111,114,100,101,114,58,48,125,125,64,109,101,100,105,97,32,40,109,97,120,45,119,105,100,116,104,58,49,49,57,57,46,57,56,112,120,41,123,46,116,97,98,108,101,45,114,101,115,112,111,110,115,105,118,101,45,120,108,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,59,111,118,101,114,102,108,111,119,45,120,58,97,117,116,111,59,45,119,101,98,107,105,116,45,111,118,101,114,102,108,111,119,45,115,99,114,111,108,108,105,110,103,58,116,111,117,99,104,125,46,116,97,98,108,101,45,114,101,115,112,111,110,115,105,118,101,45,120,108,62,46,116,97,98,108,101,45,98,111,114,100,101,114,101,100,123,98,111,114,100,101,114,58,48,125,125,46,116,97,98,108,101,45,114,101,115,112,111,110,115,105,118,101,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,59,111,118,101,114,102,108,111,119,45,120,58,97,117,116,111,59,45,119,101,98,107,105,116,45,111,118,101,114,102,108,111,119,45,115,99,114,111,108,108,105,110,103,58,116,111,117,99,104,125,46,116,97,98,108,101,45,114,101,115,112,111,110,115,105,118,101,62,46,116,97,98,108,101,45,98,111,114,100,101,114,101,100,123,98,111,114,100,101,114,58,48,125,46,102,111,114,109,45,99,111,110,116,114,111,108,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,46,55,53,114,101,109,32,43,32,50,112,120,41,59,112,97,100,100,105,110,103,58,46,51,55,53,114,101,109,32,46,55,53,114,101,109,59,102,111,110,116,45,115,105,122,101,58,49,114,101,109,59,102,111,110,116,45,119,101,105,103,104,116,58,52,48,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,99,111,108,111,114,58,35,52,57,53,48,53,55,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,108,105,112,58,112,97,100,100,105,110,103,45,98,111,120,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,99,101,100,52,100,97,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,116,114,97,110,115,105,116,105,111,110,58,98,111,114,100,101,114,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,120,45,115,104,97,100,111,119,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,102,111,114,109,45,99,111,110,116,114,111,108,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,46,102,111,114,109,45,99,111,110,116,114,111,108,58,58,45,109,115,45,101,120,112,97,110,100,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,58,48,125,46,102,111,114,109,45,99,111,110,116,114,111,108,58,102,111,99,117,115,123,99,111,108,111,114,58,35,52,57,53,48,53,55,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,56,48,98,100,102,102,59,111,117,116,108,105,110,101,58,48,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,50,53,41,125,46,102,111,114,109,45,99,111,110,116,114,111,108,58,58,45,119,101,98,107,105,116,45,105,110,112,117,116,45,112,108,97,99,101,104,111,108,100,101,114,123,99,111,108,111,114,58,35,54,99,55,53,55,100,59,111,112,97,99,105,116,121,58,49,125,46,102,111,114,109,45,99,111,110,116,114,111,108,58,58,45,109,111,122,45,112,108,97,99,101,104,111,108,100,101,114,123,99,111,108,111,114,58,35,54,99,55,53,55,100,59,111,112,97,99,105,116,121,58,49,125,46,102,111,114,109,45,99,111,110,116,114,111,108,58,45,109,115,45,105,110,112,117,116,45,112,108,97,99,101,104,111,108,100,101,114,123,99,111,108,111,114,58,35,54,99,55,53,55,100,59,111,112,97,99,105,116,121,58,49,125,46,102,111,114,109,45,99,111,110,116,114,111,108,58,58,45,109,115,45,105,110,112,117,116,45,112,108,97,99,101,104,111,108,100,101,114,123,99,111,108,111,114,58,35,54,99,55,53,55,100,59,111,112,97,99,105,116,121,58,49,125,46,102,111,114,109,45,99,111,110,116,114,111,108,58,58,112,108,97,99,101,104,111,108,100,101,114,123,99,111,108,111,114,58,35,54,99,55,53,55,100,59,111,112,97,99,105,116,121,58,49,125,46,102,111,114,109,45,99,111,110,116,114,111,108,58,100,105,115,97,98,108,101,100,44,46,102,111,114,109,45,99,111,110,116,114,111,108,91,114,101,97,100,111,110,108,121,93,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,57,101,99,101,102,59,111,112,97,99,105,116,121,58,49,125,115,101,108,101,99,116,46,102,111,114,109,45,99,111,110,116,114,111,108,58,102,111,99,117,115,58,58,45,109,115,45,118,97,108,117,101,123,99,111,108,111,114,58,35,52,57,53,48,53,55,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,125,46,102,111,114,109,45,99,111,110,116,114,111,108,45,102,105,108,101,44,46,102,111,114,109,45,99,111,110,116,114,111,108,45,114,97,110,103,101,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,125,46,99,111,108,45,102,111,114,109,45,108,97,98,101,108,123,112,97,100,100,105,110,103,45,116,111,112,58,99,97,108,99,40,46,51,55,53,114,101,109,32,43,32,49,112,120,41,59,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,99,97,108,99,40,46,51,55,53,114,101,109,32,43,32,49,112,120,41,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,59,102,111,110,116,45,115,105,122,101,58,105,110,104,101,114,105,116,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,125,46,99,111,108,45,102,111,114,109,45,108,97,98,101,108,45,108,103,123,112,97,100,100,105,110,103,45,116,111,112,58,99,97,108,99,40,46,53,114,101,109,32,43,32,49,112,120,41,59,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,99,97,108,99,40,46,53,114,101,109,32,43,32,49,112,120,41,59,102,111,110,116,45,115,105,122,101,58,49,46,50,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,125,46,99,111,108,45,102,111,114,109,45,108,97,98,101,108,45,115,109,123,112,97,100,100,105,110,103,45,116,111,112,58,99,97,108,99,40,46,50,53,114,101,109,32,43,32,49,112,120,41,59,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,99,97,108,99,40,46,50,53,114,101,109,32,43,32,49,112,120,41,59,102,111,110,116,45,115,105,122,101,58,46,56,55,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,125,46,102,111,114,109,45,99,111,110,116,114,111,108,45,112,108,97,105,110,116,101,120,116,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,59,112,97,100,100,105,110,103,45,116,111,112,58,46,51,55,53,114,101,109,59,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,51,55,53,114,101,109,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,58,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,119,105,100,116,104,58,49,112,120,32,48,125,46,102,111,114,109,45,99,111,110,116,114,111,108,45,112,108,97,105,110,116,101,120,116,46,102,111,114,109,45,99,111,110,116,114,111,108,45,108,103,44,46,102,111,114,109,45,99,111,110,116,114,111,108,45,112,108,97,105,110,116,101,120,116,46,102,111,114,109,45,99,111,110,116,114,111,108,45,115,109,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,48,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,125,46,102,111,114,109,45,99,111,110,116,114,111,108,45,115,109,123,104,101,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,46,53,114,101,109,32,43,32,50,112,120,41,59,112,97,100,100,105,110,103,58,46,50,53,114,101,109,32,46,53,114,101,109,59,102,111,110,116,45,115,105,122,101,58,46,56,55,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,114,101,109,125,46,102,111,114,109,45,99,111,110,116,114,111,108,45,108,103,123,104,101,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,49,114,101,109,32,43,32,50,112,120,41,59,112,97,100,100,105,110,103,58,46,53,114,101,109,32,49,114,101,109,59,102,111,110,116,45,115,105,122,101,58,49,46,50,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,51,114,101,109,125,115,101,108,101,99,116,46,102,111,114,109,45,99,111,110,116,114,111,108,91,109,117,108,116,105,112,108,101,93,44,115,101,108,101,99,116,46,102,111,114,109,45,99,111,110,116,114,111,108,91,115,105,122,101,93,123,104,101,105,103,104,116,58,97,117,116,111,125,116,101,120,116,97,114,101,97,46,102,111,114,109,45,99,111,110,116,114,111,108,123,104,101,105,103,104,116,58,97,117,116,111,125,46,102,111,114,109,45,103,114,111,117,112,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,114,101,109,125,46,102,111,114,109,45,116,101,120,116,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,109,97,114,103,105,110,45,116,111,112,58,46,50,53,114,101,109,125,46,102,111,114,109,45,114,111,119,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,109,97,114,103,105,110,45,114,105,103,104,116,58,45,53,112,120,59,109,97,114,103,105,110,45,108,101,102,116,58,45,53,112,120,125,46,102,111,114,109,45,114,111,119,62,46,99,111,108,44,46,102,111,114,109,45,114,111,119,62,91,99,108,97,115,115,42,61,99,111,108,45,93,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,53,112,120,59,112,97,100,100,105,110,103,45,108,101,102,116,58,53,112,120,125,46,102,111,114,109,45,99,104,101,99,107,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,112,97,100,100,105,110,103,45,108,101,102,116,58,49,46,50,53,114,101,109,125,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,109,97,114,103,105,110,45,116,111,112,58,46,51,114,101,109,59,109,97,114,103,105,110,45,108,101,102,116,58,45,49,46,50,53,114,101,109,125,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,58,100,105,115,97,98,108,101,100,126,46,102,111,114,109,45,99,104,101,99,107,45,108,97,98,101,108,123,99,111,108,111,114,58,35,54,99,55,53,55,100,125,46,102,111,114,109,45,99,104,101,99,107,45,108,97,98,101,108,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,46,102,111,114,109,45,99,104,101,99,107,45,105,110,108,105,110,101,123,100,105,115,112,108,97,121,58,45,109,115,45,105,110,108,105,110,101,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,102,108,101,120,59,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,99,101,110,116,101,114,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,59,109,97,114,103,105,110,45,114,105,103,104,116,58,46,55,53,114,101,109,125,46,102,111,114,109,45,99,104,101,99,107,45,105,110,108,105,110,101,32,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,123,112,111,115,105,116,105,111,110,58,115,116,97,116,105,99,59,109,97,114,103,105,110,45,116,111,112,58,48,59,109,97,114,103,105,110,45,114,105,103,104,116,58,46,51,49,50,53,114,101,109,59,109,97,114,103,105,110,45,108,101,102,116,58,48,125,46,118,97,108,105,100,45,102,101,101,100,98,97,99,107,123,100,105,115,112,108,97,121,58,110,111,110,101,59,119,105,100,116,104,58,49,48,48,37,59,109,97,114,103,105,110,45,116,111,112,58,46,50,53,114,101,109,59,102,111,110,116,45,115,105,122,101,58,56,48,37,59,99,111,108,111,114,58,35,50,56,97,55,52,53,125,46,118,97,108,105,100,45,116,111,111,108,116,105,112,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,49,48,48,37,59,122,45,105,110,100,101,120,58,53,59,100,105,115,112,108,97,121,58,110,111,110,101,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,59,112,97,100,100,105,110,103,58,46,50,53,114,101,109,32,46,53,114,101,109,59,109,97,114,103,105,110,45,116,111,112,58,46,49,114,101,109,59,102,111,110,116,45,115,105,122,101,58,46,56,55,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,52,48,44,49,54,55,44,54,57,44,46,57,41,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,102,111,114,109,45,99,111,110,116,114,111,108,46,105,115,45,118,97,108,105,100,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,111,110,116,114,111,108,58,118,97,108,105,100,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,50,56,97,55,52,53,59,112,97,100,100,105,110,103,45,114,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,46,55,53,114,101,109,41,59,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,39,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,115,118,103,39,32,118,105,101,119,66,111,120,61,39,48,32,48,32,56,32,56,39,37,51,101,37,51,99,112,97,116,104,32,102,105,108,108,61,39,37,50,51,50,56,97,55,52,53,39,32,100,61,39,77,50,46,51,32,54,46,55,51,76,46,54,32,52,46,53,51,99,45,46,52,45,49,46,48,52,46,52,54,45,49,46,52,32,49,46,49,45,46,56,108,49,46,49,32,49,46,52,32,51,46,52,45,51,46,56,99,46,54,45,46,54,51,32,49,46,54,45,46,50,55,32,49,46,50,46,55,108,45,52,32,52,46,54,99,45,46,52,51,46,53,45,46,56,46,52,45,49,46,49,46,49,122,39,47,37,51,101,37,51,99,47,115,118,103,37,51,101,34,41,59,98,97,99,107,103,114,111,117,110,100,45,114,101,112,101,97,116,58,110,111,45,114,101,112,101,97,116,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,99,101,110,116,101,114,32,114,105,103,104,116,32,99,97,108,99,40,46,51,55,53,101,109,32,43,32,46,49,56,55,53,114,101,109,41,59,98,97,99,107,103,114,111,117,110,100,45,115,105,122,101,58,99,97,108,99,40,46,55,53,101,109,32,43,32,46,51,55,53,114,101,109,41,32,99,97,108,99,40,46,55,53,101,109,32,43,32,46,51,55,53,114,101,109,41,125,46,102,111,114,109,45,99,111,110,116,114,111,108,46,105,115,45,118,97,108,105,100,58,102,111,99,117,115,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,111,110,116,114,111,108,58,118,97,108,105,100,58,102,111,99,117,115,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,50,56,97,55,52,53,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,52,48,44,49,54,55,44,54,57,44,46,50,53,41,125,46,102,111,114,109,45,99,111,110,116,114,111,108,46,105,115,45,118,97,108,105,100,126,46,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,102,111,114,109,45,99,111,110,116,114,111,108,46,105,115,45,118,97,108,105,100,126,46,118,97,108,105,100,45,116,111,111,108,116,105,112,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,111,110,116,114,111,108,58,118,97,108,105,100,126,46,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,111,110,116,114,111,108,58,118,97,108,105,100,126,46,118,97,108,105,100,45,116,111,111,108,116,105,112,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,116,101,120,116,97,114,101,97,46,102,111,114,109,45,99,111,110,116,114,111,108,58,118,97,108,105,100,44,116,101,120,116,97,114,101,97,46,102,111,114,109,45,99,111,110,116,114,111,108,46,105,115,45,118,97,108,105,100,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,46,55,53,114,101,109,41,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,116,111,112,32,99,97,108,99,40,46,51,55,53,101,109,32,43,32,46,49,56,55,53,114,101,109,41,32,114,105,103,104,116,32,99,97,108,99,40,46,51,55,53,101,109,32,43,32,46,49,56,55,53,114,101,109,41,125,46,99,117,115,116,111,109,45,115,101,108,101,99,116,46,105,115,45,118,97,108,105,100,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,115,101,108,101,99,116,58,118,97,108,105,100,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,50,56,97,55,52,53,59,112,97,100,100,105,110,103,45,114,105,103,104,116,58,99,97,108,99,40,40,49,101,109,32,43,32,46,55,53,114,101,109,41,32,42,32,51,32,47,32,52,32,43,32,49,46,55,53,114,101,109,41,59,98,97,99,107,103,114,111,117,110,100,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,39,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,115,118,103,39,32,118,105,101,119,66,111,120,61,39,48,32,48,32,52,32,53,39,37,51,101,37,51,99,112,97,116,104,32,102,105,108,108,61,39,37,50,51,51,52,51,97,52,48,39,32,100,61,39,77,50,32,48,76,48,32,50,104,52,122,109,48,32,53,76,48,32,51,104,52,122,39,47,37,51,101,37,51,99,47,115,118,103,37,51,101,34,41,32,110,111,45,114,101,112,101,97,116,32,114,105,103,104,116,32,46,55,53,114,101,109,32,99,101,110,116,101,114,47,56,112,120,32,49,48,112,120,44,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,39,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,115,118,103,39,32,118,105,101,119,66,111,120,61,39,48,32,48,32,56,32,56,39,37,51,101,37,51,99,112,97,116,104,32,102,105,108,108,61,39,37,50,51,50,56,97,55,52,53,39,32,100,61,39,77,50,46,51,32,54,46,55,51,76,46,54,32,52,46,53,51,99,45,46,52,45,49,46,48,52,46,52,54,45,49,46,52,32,49,46,49,45,46,56,108,49,46,49,32,49,46,52,32,51,46,52,45,51,46,56,99,46,54,45,46,54,51,32,49,46,54,45,46,50,55,32,49,46,50,46,55,108,45,52,32,52,46,54,99,45,46,52,51,46,53,45,46,56,46,52,45,49,46,49,46,49,122,39,47,37,51,101,37,51,99,47,115,118,103,37,51,101,34,41,32,35,102,102,102,32,110,111,45,114,101,112,101,97,116,32,99,101,110,116,101,114,32,114,105,103,104,116,32,49,46,55,53,114,101,109,47,99,97,108,99,40,46,55,53,101,109,32,43,32,46,51,55,53,114,101,109,41,32,99,97,108,99,40,46,55,53,101,109,32,43,32,46,51,55,53,114,101,109,41,125,46,99,117,115,116,111,109,45,115,101,108,101,99,116,46,105,115,45,118,97,108,105,100,58,102,111,99,117,115,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,115,101,108,101,99,116,58,118,97,108,105,100,58,102,111,99,117,115,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,50,56,97,55,52,53,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,52,48,44,49,54,55,44,54,57,44,46,50,53,41,125,46,99,117,115,116,111,109,45,115,101,108,101,99,116,46,105,115,45,118,97,108,105,100,126,46,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,99,117,115,116,111,109,45,115,101,108,101,99,116,46,105,115,45,118,97,108,105,100,126,46,118,97,108,105,100,45,116,111,111,108,116,105,112,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,115,101,108,101,99,116,58,118,97,108,105,100,126,46,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,115,101,108,101,99,116,58,118,97,108,105,100,126,46,118,97,108,105,100,45,116,111,111,108,116,105,112,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,102,111,114,109,45,99,111,110,116,114,111,108,45,102,105,108,101,46,105,115,45,118,97,108,105,100,126,46,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,102,111,114,109,45,99,111,110,116,114,111,108,45,102,105,108,101,46,105,115,45,118,97,108,105,100,126,46,118,97,108,105,100,45,116,111,111,108,116,105,112,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,111,110,116,114,111,108,45,102,105,108,101,58,118,97,108,105,100,126,46,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,111,110,116,114,111,108,45,102,105,108,101,58,118,97,108,105,100,126,46,118,97,108,105,100,45,116,111,111,108,116,105,112,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,46,105,115,45,118,97,108,105,100,126,46,102,111,114,109,45,99,104,101,99,107,45,108,97,98,101,108,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,58,118,97,108,105,100,126,46,102,111,114,109,45,99,104,101,99,107,45,108,97,98,101,108,123,99,111,108,111,114,58,35,50,56,97,55,52,53,125,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,46,105,115,45,118,97,108,105,100,126,46,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,46,105,115,45,118,97,108,105,100,126,46,118,97,108,105,100,45,116,111,111,108,116,105,112,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,58,118,97,108,105,100,126,46,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,58,118,97,108,105,100,126,46,118,97,108,105,100,45,116,111,111,108,116,105,112,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,46,105,115,45,118,97,108,105,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,118,97,108,105,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,123,99,111,108,111,114,58,35,50,56,97,55,52,53,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,46,105,115,45,118,97,108,105,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,118,97,108,105,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,50,56,97,55,52,53,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,46,105,115,45,118,97,108,105,100,126,46,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,46,105,115,45,118,97,108,105,100,126,46,118,97,108,105,100,45,116,111,111,108,116,105,112,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,118,97,108,105,100,126,46,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,118,97,108,105,100,126,46,118,97,108,105,100,45,116,111,111,108,116,105,112,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,46,105,115,45,118,97,108,105,100,58,99,104,101,99,107,101,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,118,97,108,105,100,58,99,104,101,99,107,101,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,51,52,99,101,53,55,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,51,52,99,101,53,55,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,46,105,115,45,118,97,108,105,100,58,102,111,99,117,115,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,118,97,108,105,100,58,102,111,99,117,115,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,52,48,44,49,54,55,44,54,57,44,46,50,53,41,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,46,105,115,45,118,97,108,105,100,58,102,111,99,117,115,58,110,111,116,40,58,99,104,101,99,107,101,100,41,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,118,97,108,105,100,58,102,111,99,117,115,58,110,111,116,40,58,99,104,101,99,107,101,100,41,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,50,56,97,55,52,53,125,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,46,105,115,45,118,97,108,105,100,126,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,58,118,97,108,105,100,126,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,50,56,97,55,52,53,125,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,46,105,115,45,118,97,108,105,100,126,46,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,46,105,115,45,118,97,108,105,100,126,46,118,97,108,105,100,45,116,111,111,108,116,105,112,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,58,118,97,108,105,100,126,46,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,58,118,97,108,105,100,126,46,118,97,108,105,100,45,116,111,111,108,116,105,112,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,46,105,115,45,118,97,108,105,100,58,102,111,99,117,115,126,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,58,118,97,108,105,100,58,102,111,99,117,115,126,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,50,56,97,55,52,53,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,52,48,44,49,54,55,44,54,57,44,46,50,53,41,125,46,105,110,118,97,108,105,100,45,102,101,101,100,98,97,99,107,123,100,105,115,112,108,97,121,58,110,111,110,101,59,119,105,100,116,104,58,49,48,48,37,59,109,97,114,103,105,110,45,116,111,112,58,46,50,53,114,101,109,59,102,111,110,116,45,115,105,122,101,58,56,48,37,59,99,111,108,111,114,58,35,100,99,51,53,52,53,125,46,105,110,118,97,108,105,100,45,116,111,111,108,116,105,112,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,49,48,48,37,59,122,45,105,110,100,101,120,58,53,59,100,105,115,112,108,97,121,58,110,111,110,101,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,59,112,97,100,100,105,110,103,58,46,50,53,114,101,109,32,46,53,114,101,109,59,109,97,114,103,105,110,45,116,111,112,58,46,49,114,101,109,59,102,111,110,116,45,115,105,122,101,58,46,56,55,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,50,50,48,44,53,51,44,54,57,44,46,57,41,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,102,111,114,109,45,99,111,110,116,114,111,108,46,105,115,45,105,110,118,97,108,105,100,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,111,110,116,114,111,108,58,105,110,118,97,108,105,100,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,99,51,53,52,53,59,112,97,100,100,105,110,103,45,114,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,46,55,53,114,101,109,41,59,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,39,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,115,118,103,39,32,102,105,108,108,61,39,37,50,51,100,99,51,53,52,53,39,32,118,105,101,119,66,111,120,61,39,45,50,32,45,50,32,55,32,55,39,37,51,101,37,51,99,112,97,116,104,32,115,116,114,111,107,101,61,39,37,50,51,100,99,51,53,52,53,39,32,100,61,39,77,48,32,48,108,51,32,51,109,48,45,51,76,48,32,51,39,47,37,51,101,37,51,99,99,105,114,99,108,101,32,114,61,39,46,53,39,47,37,51,101,37,51,99,99,105,114,99,108,101,32,99,120,61,39,51,39,32,114,61,39,46,53,39,47,37,51,101,37,51,99,99,105,114,99,108,101,32,99,121,61,39,51,39,32,114,61,39,46,53,39,47,37,51,101,37,51,99,99,105,114,99,108,101,32,99,120,61,39,51,39,32,99,121,61,39,51,39,32,114,61,39,46,53,39,47,37,51,101,37,51,99,47,115,118,103,37,51,69,34,41,59,98,97,99,107,103,114,111,117,110,100,45,114,101,112,101,97,116,58,110,111,45,114,101,112,101,97,116,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,99,101,110,116,101,114,32,114,105,103,104,116,32,99,97,108,99,40,46,51,55,53,101,109,32,43,32,46,49,56,55,53,114,101,109,41,59,98,97,99,107,103,114,111,117,110,100,45,115,105,122,101,58,99,97,108,99,40,46,55,53,101,109,32,43,32,46,51,55,53,114,101,109,41,32,99,97,108,99,40,46,55,53,101,109,32,43,32,46,51,55,53,114,101,109,41,125,46,102,111,114,109,45,99,111,110,116,114,111,108,46,105,115,45,105,110,118,97,108,105,100,58,102,111,99,117,115,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,111,110,116,114,111,108,58,105,110,118,97,108,105,100,58,102,111,99,117,115,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,99,51,53,52,53,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,50,48,44,53,51,44,54,57,44,46,50,53,41,125,46,102,111,114,109,45,99,111,110,116,114,111,108,46,105,115,45,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,102,111,114,109,45,99,111,110,116,114,111,108,46,105,115,45,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,116,111,111,108,116,105,112,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,111,110,116,114,111,108,58,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,111,110,116,114,111,108,58,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,116,111,111,108,116,105,112,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,116,101,120,116,97,114,101,97,46,102,111,114,109,45,99,111,110,116,114,111,108,58,105,110,118,97,108,105,100,44,116,101,120,116,97,114,101,97,46,102,111,114,109,45,99,111,110,116,114,111,108,46,105,115,45,105,110,118,97,108,105,100,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,46,55,53,114,101,109,41,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,116,111,112,32,99,97,108,99,40,46,51,55,53,101,109,32,43,32,46,49,56,55,53,114,101,109,41,32,114,105,103,104,116,32,99,97,108,99,40,46,51,55,53,101,109,32,43,32,46,49,56,55,53,114,101,109,41,125,46,99,117,115,116,111,109,45,115,101,108,101,99,116,46,105,115,45,105,110,118,97,108,105,100,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,115,101,108,101,99,116,58,105,110,118,97,108,105,100,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,99,51,53,52,53,59,112,97,100,100,105,110,103,45,114,105,103,104,116,58,99,97,108,99,40,40,49,101,109,32,43,32,46,55,53,114,101,109,41,32,42,32,51,32,47,32,52,32,43,32,49,46,55,53,114,101,109,41,59,98,97,99,107,103,114,111,117,110,100,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,39,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,115,118,103,39,32,118,105,101,119,66,111,120,61,39,48,32,48,32,52,32,53,39,37,51,101,37,51,99,112,97,116,104,32,102,105,108,108,61,39,37,50,51,51,52,51,97,52,48,39,32,100,61,39,77,50,32,48,76,48,32,50,104,52,122,109,48,32,53,76,48,32,51,104,52,122,39,47,37,51,101,37,51,99,47,115,118,103,37,51,101,34,41,32,110,111,45,114,101,112,101,97,116,32,114,105,103,104,116,32,46,55,53,114,101,109,32,99,101,110,116,101,114,47,56,112,120,32,49,48,112,120,44,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,39,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,115,118,103,39,32,102,105,108,108,61,39,37,50,51,100,99,51,53,52,53,39,32,118,105,101,119,66,111,120,61,39,45,50,32,45,50,32,55,32,55,39,37,51,101,37,51,99,112,97,116,104,32,115,116,114,111,107,101,61,39,37,50,51,100,99,51,53,52,53,39,32,100,61,39,77,48,32,48,108,51,32,51,109,48,45,51,76,48,32,51,39,47,37,51,101,37,51,99,99,105,114,99,108,101,32,114,61,39,46,53,39,47,37,51,101,37,51,99,99,105,114,99,108,101,32,99,120,61,39,51,39,32,114,61,39,46,53,39,47,37,51,101,37,51,99,99,105,114,99,108,101,32,99,121,61,39,51,39,32,114,61,39,46,53,39,47,37,51,101,37,51,99,99,105,114,99,108,101,32,99,120,61,39,51,39,32,99,121,61,39,51,39,32,114,61,39,46,53,39,47,37,51,101,37,51,99,47,115,118,103,37,51,69,34,41,32,35,102,102,102,32,110,111,45,114,101,112,101,97,116,32,99,101,110,116,101,114,32,114,105,103,104,116,32,49,46,55,53,114,101,109,47,99,97,108,99,40,46,55,53,101,109,32,43,32,46,51,55,53,114,101,109,41,32,99,97,108,99,40,46,55,53,101,109,32,43,32,46,51,55,53,114,101,109,41,125,46,99,117,115,116,111,109,45,115,101,108,101,99,116,46,105,115,45,105,110,118,97,108,105,100,58,102,111,99,117,115,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,115,101,108,101,99,116,58,105,110,118,97,108,105,100,58,102,111,99,117,115,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,99,51,53,52,53,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,50,48,44,53,51,44,54,57,44,46,50,53,41,125,46,99,117,115,116,111,109,45,115,101,108,101,99,116,46,105,115,45,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,99,117,115,116,111,109,45,115,101,108,101,99,116,46,105,115,45,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,116,111,111,108,116,105,112,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,115,101,108,101,99,116,58,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,115,101,108,101,99,116,58,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,116,111,111,108,116,105,112,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,102,111,114,109,45,99,111,110,116,114,111,108,45,102,105,108,101,46,105,115,45,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,102,111,114,109,45,99,111,110,116,114,111,108,45,102,105,108,101,46,105,115,45,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,116,111,111,108,116,105,112,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,111,110,116,114,111,108,45,102,105,108,101,58,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,111,110,116,114,111,108,45,102,105,108,101,58,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,116,111,111,108,116,105,112,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,46,105,115,45,105,110,118,97,108,105,100,126,46,102,111,114,109,45,99,104,101,99,107,45,108,97,98,101,108,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,58,105,110,118,97,108,105,100,126,46,102,111,114,109,45,99,104,101,99,107,45,108,97,98,101,108,123,99,111,108,111,114,58,35,100,99,51,53,52,53,125,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,46,105,115,45,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,46,105,115,45,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,116,111,111,108,116,105,112,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,58,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,58,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,116,111,111,108,116,105,112,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,46,105,115,45,105,110,118,97,108,105,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,105,110,118,97,108,105,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,123,99,111,108,111,114,58,35,100,99,51,53,52,53,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,46,105,115,45,105,110,118,97,108,105,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,105,110,118,97,108,105,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,99,51,53,52,53,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,46,105,115,45,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,46,105,115,45,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,116,111,111,108,116,105,112,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,116,111,111,108,116,105,112,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,46,105,115,45,105,110,118,97,108,105,100,58,99,104,101,99,107,101,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,105,110,118,97,108,105,100,58,99,104,101,99,107,101,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,101,52,54,48,54,100,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,52,54,48,54,100,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,46,105,115,45,105,110,118,97,108,105,100,58,102,111,99,117,115,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,105,110,118,97,108,105,100,58,102,111,99,117,115,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,50,48,44,53,51,44,54,57,44,46,50,53,41,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,46,105,115,45,105,110,118,97,108,105,100,58,102,111,99,117,115,58,110,111,116,40,58,99,104,101,99,107,101,100,41,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,105,110,118,97,108,105,100,58,102,111,99,117,115,58,110,111,116,40,58,99,104,101,99,107,101,100,41,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,99,51,53,52,53,125,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,46,105,115,45,105,110,118,97,108,105,100,126,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,58,105,110,118,97,108,105,100,126,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,99,51,53,52,53,125,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,46,105,115,45,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,46,105,115,45,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,116,111,111,108,116,105,112,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,58,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,102,101,101,100,98,97,99,107,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,58,105,110,118,97,108,105,100,126,46,105,110,118,97,108,105,100,45,116,111,111,108,116,105,112,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,46,105,115,45,105,110,118,97,108,105,100,58,102,111,99,117,115,126,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,44,46,119,97,115,45,118,97,108,105,100,97,116,101,100,32,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,58,105,110,118,97,108,105,100,58,102,111,99,117,115,126,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,99,51,53,52,53,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,50,48,44,53,51,44,54,57,44,46,50,53,41,125,46,102,111,114,109,45,105,110,108,105,110,101,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,102,108,111,119,58,114,111,119,32,119,114,97,112,59,102,108,101,120,45,102,108,111,119,58,114,111,119,32,119,114,97,112,59,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,99,101,110,116,101,114,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,125,46,102,111,114,109,45,105,110,108,105,110,101,32,46,102,111,114,109,45,99,104,101,99,107,123,119,105,100,116,104,58,49,48,48,37,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,102,111,114,109,45,105,110,108,105,110,101,32,108,97,98,101,108,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,99,101,110,116,101,114,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,59,45,109,115,45,102,108,101,120,45,112,97,99,107,58,99,101,110,116,101,114,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,46,102,111,114,109,45,105,110,108,105,110,101,32,46,102,111,114,109,45,103,114,111,117,112,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,58,48,32,48,32,97,117,116,111,59,102,108,101,120,58,48,32,48,32,97,117,116,111,59,45,109,115,45,102,108,101,120,45,102,108,111,119,58,114,111,119,32,119,114,97,112,59,102,108,101,120,45,102,108,111,119,58,114,111,119,32,119,114,97,112,59,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,99,101,110,116,101,114,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,46,102,111,114,109,45,105,110,108,105,110,101,32,46,102,111,114,109,45,99,111,110,116,114,111,108,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,119,105,100,116,104,58,97,117,116,111,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,109,105,100,100,108,101,125,46,102,111,114,109,45,105,110,108,105,110,101,32,46,102,111,114,109,45,99,111,110,116,114,111,108,45,112,108,97,105,110,116,101,120,116,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,125,46,102,111,114,109,45,105,110,108,105,110,101,32,46,99,117,115,116,111,109,45,115,101,108,101,99,116,44,46,102,111,114,109,45,105,110,108,105,110,101,32,46,105,110,112,117,116,45,103,114,111,117,112,123,119,105,100,116,104,58,97,117,116,111,125,46,102,111,114,109,45,105,110,108,105,110,101,32,46,102,111,114,109,45,99,104,101,99,107,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,99,101,110,116,101,114,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,59,45,109,115,45,102,108,101,120,45,112,97,99,107,58,99,101,110,116,101,114,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,59,119,105,100,116,104,58,97,117,116,111,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,125,46,102,111,114,109,45,105,110,108,105,110,101,32,46,102,111,114,109,45,99,104,101,99,107,45,105,110,112,117,116,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,45,109,115,45,102,108,101,120,45,110,101,103,97,116,105,118,101,58,48,59,102,108,101,120,45,115,104,114,105,110,107,58,48,59,109,97,114,103,105,110,45,116,111,112,58,48,59,109,97,114,103,105,110,45,114,105,103,104,116,58,46,50,53,114,101,109,59,109,97,114,103,105,110,45,108,101,102,116,58,48,125,46,102,111,114,109,45,105,110,108,105,110,101,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,99,101,110,116,101,114,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,59,45,109,115,45,102,108,101,120,45,112,97,99,107,58,99,101,110,116,101,114,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,125,46,102,111,114,109,45,105,110,108,105,110,101,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,125,46,98,116,110,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,102,111,110,116,45,119,101,105,103,104,116,58,52,48,48,59,99,111,108,111,114,58,35,50,49,50,53,50,57,59,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,109,105,100,100,108,101,59,45,119,101,98,107,105,116,45,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,59,45,109,111,122,45,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,59,45,109,115,45,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,59,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,59,112,97,100,100,105,110,103,58,46,51,55,53,114,101,109,32,46,55,53,114,101,109,59,102,111,110,116,45,115,105,122,101,58,49,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,116,114,97,110,115,105,116,105,111,110,58,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,114,100,101,114,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,120,45,115,104,97,100,111,119,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,98,116,110,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,46,98,116,110,58,104,111,118,101,114,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,125,46,98,116,110,46,102,111,99,117,115,44,46,98,116,110,58,102,111,99,117,115,123,111,117,116,108,105,110,101,58,48,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,50,53,41,125,46,98,116,110,46,100,105,115,97,98,108,101,100,44,46,98,116,110,58,100,105,115,97,98,108,101,100,123,111,112,97,99,105,116,121,58,46,54,53,125,97,46,98,116,110,46,100,105,115,97,98,108,101,100,44,102,105,101,108,100,115,101,116,58,100,105,115,97,98,108,101,100,32,97,46,98,116,110,123,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,110,111,110,101,125,46,98,116,110,45,112,114,105,109,97,114,121,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,48,48,55,98,102,102,125,46,98,116,110,45,112,114,105,109,97,114,121,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,54,57,100,57,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,48,48,54,50,99,99,125,46,98,116,110,45,112,114,105,109,97,114,121,46,102,111,99,117,115,44,46,98,116,110,45,112,114,105,109,97,114,121,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,51,56,44,49,52,51,44,50,53,53,44,46,53,41,125,46,98,116,110,45,112,114,105,109,97,114,121,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,112,114,105,109,97,114,121,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,48,48,55,98,102,102,125,46,98,116,110,45,112,114,105,109,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,112,114,105,109,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,112,114,105,109,97,114,121,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,54,50,99,99,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,48,48,53,99,98,102,125,46,98,116,110,45,112,114,105,109,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,112,114,105,109,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,112,114,105,109,97,114,121,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,51,56,44,49,52,51,44,50,53,53,44,46,53,41,125,46,98,116,110,45,115,101,99,111,110,100,97,114,121,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,54,99,55,53,55,100,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,54,99,55,53,55,100,125,46,98,116,110,45,115,101,99,111,110,100,97,114,121,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,53,97,54,50,54,56,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,53,52,53,98,54,50,125,46,98,116,110,45,115,101,99,111,110,100,97,114,121,46,102,111,99,117,115,44,46,98,116,110,45,115,101,99,111,110,100,97,114,121,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,49,51,48,44,49,51,56,44,49,52,53,44,46,53,41,125,46,98,116,110,45,115,101,99,111,110,100,97,114,121,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,115,101,99,111,110,100,97,114,121,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,54,99,55,53,55,100,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,54,99,55,53,55,100,125,46,98,116,110,45,115,101,99,111,110,100,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,115,101,99,111,110,100,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,115,101,99,111,110,100,97,114,121,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,53,52,53,98,54,50,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,52,101,53,53,53,98,125,46,98,116,110,45,115,101,99,111,110,100,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,115,101,99,111,110,100,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,115,101,99,111,110,100,97,114,121,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,49,51,48,44,49,51,56,44,49,52,53,44,46,53,41,125,46,98,116,110,45,115,117,99,99,101,115,115,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,50,56,97,55,52,53,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,50,56,97,55,52,53,125,46,98,116,110,45,115,117,99,99,101,115,115,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,50,49,56,56,51,56,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,49,101,55,101,51,52,125,46,98,116,110,45,115,117,99,99,101,115,115,46,102,111,99,117,115,44,46,98,116,110,45,115,117,99,99,101,115,115,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,55,50,44,49,56,48,44,57,55,44,46,53,41,125,46,98,116,110,45,115,117,99,99,101,115,115,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,115,117,99,99,101,115,115,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,50,56,97,55,52,53,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,50,56,97,55,52,53,125,46,98,116,110,45,115,117,99,99,101,115,115,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,115,117,99,99,101,115,115,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,115,117,99,99,101,115,115,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,101,55,101,51,52,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,49,99,55,52,51,48,125,46,98,116,110,45,115,117,99,99,101,115,115,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,115,117,99,99,101,115,115,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,115,117,99,99,101,115,115,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,55,50,44,49,56,48,44,57,55,44,46,53,41,125,46,98,116,110,45,105,110,102,111,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,55,97,50,98,56,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,49,55,97,50,98,56,125,46,98,116,110,45,105,110,102,111,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,51,56,52,57,54,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,49,49,55,97,56,98,125,46,98,116,110,45,105,110,102,111,46,102,111,99,117,115,44,46,98,116,110,45,105,110,102,111,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,53,56,44,49,55,54,44,49,57,53,44,46,53,41,125,46,98,116,110,45,105,110,102,111,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,105,110,102,111,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,55,97,50,98,56,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,49,55,97,50,98,56,125,46,98,116,110,45,105,110,102,111,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,105,110,102,111,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,105,110,102,111,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,49,55,97,56,98,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,49,48,55,48,55,102,125,46,98,116,110,45,105,110,102,111,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,105,110,102,111,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,105,110,102,111,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,53,56,44,49,55,54,44,49,57,53,44,46,53,41,125,46,98,116,110,45,119,97,114,110,105,110,103,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,99,49,48,55,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,102,99,49,48,55,125,46,98,116,110,45,119,97,114,110,105,110,103,58,104,111,118,101,114,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,48,97,56,48,48,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,51,57,101,48,48,125,46,98,116,110,45,119,97,114,110,105,110,103,46,102,111,99,117,115,44,46,98,116,110,45,119,97,114,110,105,110,103,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,50,50,44,49,55,48,44,49,50,44,46,53,41,125,46,98,116,110,45,119,97,114,110,105,110,103,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,119,97,114,110,105,110,103,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,99,49,48,55,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,102,99,49,48,55,125,46,98,116,110,45,119,97,114,110,105,110,103,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,119,97,114,110,105,110,103,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,119,97,114,110,105,110,103,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,51,57,101,48,48,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,99,54,57,53,48,48,125,46,98,116,110,45,119,97,114,110,105,110,103,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,119,97,114,110,105,110,103,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,119,97,114,110,105,110,103,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,50,50,44,49,55,48,44,49,50,44,46,53,41,125,46,98,116,110,45,100,97,110,103,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,99,51,53,52,53,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,99,51,53,52,53,125,46,98,116,110,45,100,97,110,103,101,114,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,99,56,50,51,51,51,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,98,100,50,49,51,48,125,46,98,116,110,45,100,97,110,103,101,114,46,102,111,99,117,115,44,46,98,116,110,45,100,97,110,103,101,114,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,50,53,44,56,51,44,57,55,44,46,53,41,125,46,98,116,110,45,100,97,110,103,101,114,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,100,97,110,103,101,114,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,99,51,53,52,53,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,99,51,53,52,53,125,46,98,116,110,45,100,97,110,103,101,114,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,100,97,110,103,101,114,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,100,97,110,103,101,114,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,100,50,49,51,48,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,98,50,49,102,50,100,125,46,98,116,110,45,100,97,110,103,101,114,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,100,97,110,103,101,114,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,100,97,110,103,101,114,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,50,53,44,56,51,44,57,55,44,46,53,41,125,46,98,116,110,45,108,105,103,104,116,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,56,102,57,102,97,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,56,102,57,102,97,125,46,98,116,110,45,108,105,103,104,116,58,104,111,118,101,114,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,50,101,54,101,97,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,97,101,48,101,53,125,46,98,116,110,45,108,105,103,104,116,46,102,111,99,117,115,44,46,98,116,110,45,108,105,103,104,116,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,49,54,44,50,49,55,44,50,49,57,44,46,53,41,125,46,98,116,110,45,108,105,103,104,116,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,108,105,103,104,116,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,56,102,57,102,97,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,56,102,57,102,97,125,46,98,116,110,45,108,105,103,104,116,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,108,105,103,104,116,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,108,105,103,104,116,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,97,101,48,101,53,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,51,100,57,100,102,125,46,98,116,110,45,108,105,103,104,116,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,108,105,103,104,116,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,108,105,103,104,116,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,49,54,44,50,49,55,44,50,49,57,44,46,53,41,125,46,98,116,110,45,100,97,114,107,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,51,52,51,97,52,48,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,51,52,51,97,52,48,125,46,98,116,110,45,100,97,114,107,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,50,51,50,55,50,98,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,49,100,50,49,50,52,125,46,98,116,110,45,100,97,114,107,46,102,111,99,117,115,44,46,98,116,110,45,100,97,114,107,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,56,50,44,56,56,44,57,51,44,46,53,41,125,46,98,116,110,45,100,97,114,107,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,100,97,114,107,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,51,52,51,97,52,48,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,51,52,51,97,52,48,125,46,98,116,110,45,100,97,114,107,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,100,97,114,107,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,100,97,114,107,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,100,50,49,50,52,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,49,55,49,97,49,100,125,46,98,116,110,45,100,97,114,107,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,100,97,114,107,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,100,97,114,107,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,56,50,44,56,56,44,57,51,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,112,114,105,109,97,114,121,123,99,111,108,111,114,58,35,48,48,55,98,102,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,48,48,55,98,102,102,125,46,98,116,110,45,111,117,116,108,105,110,101,45,112,114,105,109,97,114,121,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,48,48,55,98,102,102,125,46,98,116,110,45,111,117,116,108,105,110,101,45,112,114,105,109,97,114,121,46,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,112,114,105,109,97,114,121,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,112,114,105,109,97,114,121,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,111,117,116,108,105,110,101,45,112,114,105,109,97,114,121,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,48,48,55,98,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,125,46,98,116,110,45,111,117,116,108,105,110,101,45,112,114,105,109,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,111,117,116,108,105,110,101,45,112,114,105,109,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,112,114,105,109,97,114,121,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,48,48,55,98,102,102,125,46,98,116,110,45,111,117,116,108,105,110,101,45,112,114,105,109,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,112,114,105,109,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,112,114,105,109,97,114,121,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,115,101,99,111,110,100,97,114,121,123,99,111,108,111,114,58,35,54,99,55,53,55,100,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,54,99,55,53,55,100,125,46,98,116,110,45,111,117,116,108,105,110,101,45,115,101,99,111,110,100,97,114,121,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,54,99,55,53,55,100,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,54,99,55,53,55,100,125,46,98,116,110,45,111,117,116,108,105,110,101,45,115,101,99,111,110,100,97,114,121,46,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,115,101,99,111,110,100,97,114,121,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,49,48,56,44,49,49,55,44,49,50,53,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,115,101,99,111,110,100,97,114,121,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,111,117,116,108,105,110,101,45,115,101,99,111,110,100,97,114,121,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,54,99,55,53,55,100,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,125,46,98,116,110,45,111,117,116,108,105,110,101,45,115,101,99,111,110,100,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,111,117,116,108,105,110,101,45,115,101,99,111,110,100,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,115,101,99,111,110,100,97,114,121,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,54,99,55,53,55,100,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,54,99,55,53,55,100,125,46,98,116,110,45,111,117,116,108,105,110,101,45,115,101,99,111,110,100,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,115,101,99,111,110,100,97,114,121,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,115,101,99,111,110,100,97,114,121,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,49,48,56,44,49,49,55,44,49,50,53,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,115,117,99,99,101,115,115,123,99,111,108,111,114,58,35,50,56,97,55,52,53,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,50,56,97,55,52,53,125,46,98,116,110,45,111,117,116,108,105,110,101,45,115,117,99,99,101,115,115,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,50,56,97,55,52,53,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,50,56,97,55,52,53,125,46,98,116,110,45,111,117,116,108,105,110,101,45,115,117,99,99,101,115,115,46,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,115,117,99,99,101,115,115,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,52,48,44,49,54,55,44,54,57,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,115,117,99,99,101,115,115,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,111,117,116,108,105,110,101,45,115,117,99,99,101,115,115,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,50,56,97,55,52,53,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,125,46,98,116,110,45,111,117,116,108,105,110,101,45,115,117,99,99,101,115,115,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,111,117,116,108,105,110,101,45,115,117,99,99,101,115,115,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,115,117,99,99,101,115,115,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,50,56,97,55,52,53,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,50,56,97,55,52,53,125,46,98,116,110,45,111,117,116,108,105,110,101,45,115,117,99,99,101,115,115,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,115,117,99,99,101,115,115,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,115,117,99,99,101,115,115,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,52,48,44,49,54,55,44,54,57,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,105,110,102,111,123,99,111,108,111,114,58,35,49,55,97,50,98,56,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,49,55,97,50,98,56,125,46,98,116,110,45,111,117,116,108,105,110,101,45,105,110,102,111,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,55,97,50,98,56,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,49,55,97,50,98,56,125,46,98,116,110,45,111,117,116,108,105,110,101,45,105,110,102,111,46,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,105,110,102,111,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,51,44,49,54,50,44,49,56,52,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,105,110,102,111,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,111,117,116,108,105,110,101,45,105,110,102,111,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,49,55,97,50,98,56,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,125,46,98,116,110,45,111,117,116,108,105,110,101,45,105,110,102,111,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,111,117,116,108,105,110,101,45,105,110,102,111,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,105,110,102,111,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,55,97,50,98,56,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,49,55,97,50,98,56,125,46,98,116,110,45,111,117,116,108,105,110,101,45,105,110,102,111,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,105,110,102,111,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,105,110,102,111,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,51,44,49,54,50,44,49,56,52,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,119,97,114,110,105,110,103,123,99,111,108,111,114,58,35,102,102,99,49,48,55,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,102,99,49,48,55,125,46,98,116,110,45,111,117,116,108,105,110,101,45,119,97,114,110,105,110,103,58,104,111,118,101,114,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,99,49,48,55,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,102,99,49,48,55,125,46,98,116,110,45,111,117,116,108,105,110,101,45,119,97,114,110,105,110,103,46,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,119,97,114,110,105,110,103,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,53,53,44,49,57,51,44,55,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,119,97,114,110,105,110,103,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,111,117,116,108,105,110,101,45,119,97,114,110,105,110,103,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,102,102,99,49,48,55,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,125,46,98,116,110,45,111,117,116,108,105,110,101,45,119,97,114,110,105,110,103,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,111,117,116,108,105,110,101,45,119,97,114,110,105,110,103,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,119,97,114,110,105,110,103,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,99,49,48,55,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,102,99,49,48,55,125,46,98,116,110,45,111,117,116,108,105,110,101,45,119,97,114,110,105,110,103,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,119,97,114,110,105,110,103,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,119,97,114,110,105,110,103,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,53,53,44,49,57,51,44,55,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,110,103,101,114,123,99,111,108,111,114,58,35,100,99,51,53,52,53,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,99,51,53,52,53,125,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,110,103,101,114,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,99,51,53,52,53,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,99,51,53,52,53,125,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,110,103,101,114,46,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,110,103,101,114,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,50,48,44,53,51,44,54,57,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,110,103,101,114,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,110,103,101,114,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,100,99,51,53,52,53,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,125,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,110,103,101,114,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,110,103,101,114,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,110,103,101,114,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,99,51,53,52,53,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,99,51,53,52,53,125,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,110,103,101,114,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,110,103,101,114,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,110,103,101,114,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,50,48,44,53,51,44,54,57,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,108,105,103,104,116,123,99,111,108,111,114,58,35,102,56,102,57,102,97,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,56,102,57,102,97,125,46,98,116,110,45,111,117,116,108,105,110,101,45,108,105,103,104,116,58,104,111,118,101,114,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,56,102,57,102,97,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,56,102,57,102,97,125,46,98,116,110,45,111,117,116,108,105,110,101,45,108,105,103,104,116,46,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,108,105,103,104,116,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,52,56,44,50,52,57,44,50,53,48,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,108,105,103,104,116,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,111,117,116,108,105,110,101,45,108,105,103,104,116,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,102,56,102,57,102,97,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,125,46,98,116,110,45,111,117,116,108,105,110,101,45,108,105,103,104,116,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,111,117,116,108,105,110,101,45,108,105,103,104,116,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,108,105,103,104,116,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,56,102,57,102,97,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,56,102,57,102,97,125,46,98,116,110,45,111,117,116,108,105,110,101,45,108,105,103,104,116,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,108,105,103,104,116,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,108,105,103,104,116,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,52,56,44,50,52,57,44,50,53,48,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,114,107,123,99,111,108,111,114,58,35,51,52,51,97,52,48,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,51,52,51,97,52,48,125,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,114,107,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,51,52,51,97,52,48,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,51,52,51,97,52,48,125,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,114,107,46,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,114,107,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,53,50,44,53,56,44,54,52,44,46,53,41,125,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,114,107,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,114,107,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,51,52,51,97,52,48,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,125,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,114,107,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,44,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,114,107,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,114,107,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,51,52,51,97,52,48,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,51,52,51,97,52,48,125,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,114,107,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,46,97,99,116,105,118,101,58,102,111,99,117,115,44,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,114,107,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,58,102,111,99,117,115,44,46,115,104,111,119,62,46,98,116,110,45,111,117,116,108,105,110,101,45,100,97,114,107,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,102,111,99,117,115,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,53,50,44,53,56,44,54,52,44,46,53,41,125,46,98,116,110,45,108,105,110,107,123,102,111,110,116,45,119,101,105,103,104,116,58,52,48,48,59,99,111,108,111,114,58,35,48,48,55,98,102,102,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,125,46,98,116,110,45,108,105,110,107,58,104,111,118,101,114,123,99,111,108,111,114,58,35,48,48,53,54,98,51,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,117,110,100,101,114,108,105,110,101,125,46,98,116,110,45,108,105,110,107,46,102,111,99,117,115,44,46,98,116,110,45,108,105,110,107,58,102,111,99,117,115,123,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,117,110,100,101,114,108,105,110,101,59,98,111,120,45,115,104,97,100,111,119,58,110,111,110,101,125,46,98,116,110,45,108,105,110,107,46,100,105,115,97,98,108,101,100,44,46,98,116,110,45,108,105,110,107,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,54,99,55,53,55,100,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,110,111,110,101,125,46,98,116,110,45,103,114,111,117,112,45,108,103,62,46,98,116,110,44,46,98,116,110,45,108,103,123,112,97,100,100,105,110,103,58,46,53,114,101,109,32,49,114,101,109,59,102,111,110,116,45,115,105,122,101,58,49,46,50,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,51,114,101,109,125,46,98,116,110,45,103,114,111,117,112,45,115,109,62,46,98,116,110,44,46,98,116,110,45,115,109,123,112,97,100,100,105,110,103,58,46,50,53,114,101,109,32,46,53,114,101,109,59,102,111,110,116,45,115,105,122,101,58,46,56,55,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,114,101,109,125,46,98,116,110,45,98,108,111,99,107,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,125,46,98,116,110,45,98,108,111,99,107,43,46,98,116,110,45,98,108,111,99,107,123,109,97,114,103,105,110,45,116,111,112,58,46,53,114,101,109,125,105,110,112,117,116,91,116,121,112,101,61,98,117,116,116,111,110,93,46,98,116,110,45,98,108,111,99,107,44,105,110,112,117,116,91,116,121,112,101,61,114,101,115,101,116,93,46,98,116,110,45,98,108,111,99,107,44,105,110,112,117,116,91,116,121,112,101,61,115,117,98,109,105,116,93,46,98,116,110,45,98,108,111,99,107,123,119,105,100,116,104,58,49,48,48,37,125,46,102,97,100,101,123,116,114,97,110,115,105,116,105,111,110,58,111,112,97,99,105,116,121,32,46,49,53,115,32,108,105,110,101,97,114,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,102,97,100,101,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,46,102,97,100,101,58,110,111,116,40,46,115,104,111,119,41,123,111,112,97,99,105,116,121,58,48,125,46,99,111,108,108,97,112,115,101,58,110,111,116,40,46,115,104,111,119,41,123,100,105,115,112,108,97,121,58,110,111,110,101,125,46,99,111,108,108,97,112,115,105,110,103,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,104,101,105,103,104,116,58,48,59,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,59,116,114,97,110,115,105,116,105,111,110,58,104,101,105,103,104,116,32,46,51,53,115,32,101,97,115,101,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,99,111,108,108,97,112,115,105,110,103,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,46,100,114,111,112,100,111,119,110,44,46,100,114,111,112,108,101,102,116,44,46,100,114,111,112,114,105,103,104,116,44,46,100,114,111,112,117,112,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,125,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,123,119,104,105,116,101,45,115,112,97,99,101,58,110,111,119,114,97,112,125,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,58,97,102,116,101,114,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,109,97,114,103,105,110,45,108,101,102,116,58,46,50,53,53,101,109,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,46,50,53,53,101,109,59,99,111,110,116,101,110,116,58,34,34,59,98,111,114,100,101,114,45,116,111,112,58,46,51,101,109,32,115,111,108,105,100,59,98,111,114,100,101,114,45,114,105,103,104,116,58,46,51,101,109,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,48,59,98,111,114,100,101,114,45,108,101,102,116,58,46,51,101,109,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,125,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,101,109,112,116,121,58,58,97,102,116,101,114,123,109,97,114,103,105,110,45,108,101,102,116,58,48,125,46,100,114,111,112,100,111,119,110,45,109,101,110,117,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,49,48,48,37,59,108,101,102,116,58,48,59,122,45,105,110,100,101,120,58,49,48,48,48,59,100,105,115,112,108,97,121,58,110,111,110,101,59,102,108,111,97,116,58,108,101,102,116,59,109,105,110,45,119,105,100,116,104,58,49,48,114,101,109,59,112,97,100,100,105,110,103,58,46,53,114,101,109,32,48,59,109,97,114,103,105,110,58,46,49,50,53,114,101,109,32,48,32,48,59,102,111,110,116,45,115,105,122,101,58,49,114,101,109,59,99,111,108,111,114,58,35,50,49,50,53,50,57,59,116,101,120,116,45,97,108,105,103,110,58,108,101,102,116,59,108,105,115,116,45,115,116,121,108,101,58,110,111,110,101,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,108,105,112,58,112,97,100,100,105,110,103,45,98,111,120,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,114,103,98,97,40,48,44,48,44,48,44,46,49,53,41,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,100,114,111,112,100,111,119,110,45,109,101,110,117,45,108,101,102,116,123,114,105,103,104,116,58,97,117,116,111,59,108,101,102,116,58,48,125,46,100,114,111,112,100,111,119,110,45,109,101,110,117,45,114,105,103,104,116,123,114,105,103,104,116,58,48,59,108,101,102,116,58,97,117,116,111,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,100,114,111,112,100,111,119,110,45,109,101,110,117,45,115,109,45,108,101,102,116,123,114,105,103,104,116,58,97,117,116,111,59,108,101,102,116,58,48,125,46,100,114,111,112,100,111,119,110,45,109,101,110,117,45,115,109,45,114,105,103,104,116,123,114,105,103,104,116,58,48,59,108,101,102,116,58,97,117,116,111,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,55,54,56,112,120,41,123,46,100,114,111,112,100,111,119,110,45,109,101,110,117,45,109,100,45,108,101,102,116,123,114,105,103,104,116,58,97,117,116,111,59,108,101,102,116,58,48,125,46,100,114,111,112,100,111,119,110,45,109,101,110,117,45,109,100,45,114,105,103,104,116,123,114,105,103,104,116,58,48,59,108,101,102,116,58,97,117,116,111,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,57,57,50,112,120,41,123,46,100,114,111,112,100,111,119,110,45,109,101,110,117,45,108,103,45,108,101,102,116,123,114,105,103,104,116,58,97,117,116,111,59,108,101,102,116,58,48,125,46,100,114,111,112,100,111,119,110,45,109,101,110,117,45,108,103,45,114,105,103,104,116,123,114,105,103,104,116,58,48,59,108,101,102,116,58,97,117,116,111,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,49,50,48,48,112,120,41,123,46,100,114,111,112,100,111,119,110,45,109,101,110,117,45,120,108,45,108,101,102,116,123,114,105,103,104,116,58,97,117,116,111,59,108,101,102,116,58,48,125,46,100,114,111,112,100,111,119,110,45,109,101,110,117,45,120,108,45,114,105,103,104,116,123,114,105,103,104,116,58,48,59,108,101,102,116,58,97,117,116,111,125,125,46,100,114,111,112,117,112,32,46,100,114,111,112,100,111,119,110,45,109,101,110,117,123,116,111,112,58,97,117,116,111,59,98,111,116,116,111,109,58,49,48,48,37,59,109,97,114,103,105,110,45,116,111,112,58,48,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,49,50,53,114,101,109,125,46,100,114,111,112,117,112,32,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,58,97,102,116,101,114,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,109,97,114,103,105,110,45,108,101,102,116,58,46,50,53,53,101,109,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,46,50,53,53,101,109,59,99,111,110,116,101,110,116,58,34,34,59,98,111,114,100,101,114,45,116,111,112,58,48,59,98,111,114,100,101,114,45,114,105,103,104,116,58,46,51,101,109,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,46,51,101,109,32,115,111,108,105,100,59,98,111,114,100,101,114,45,108,101,102,116,58,46,51,101,109,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,125,46,100,114,111,112,117,112,32,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,101,109,112,116,121,58,58,97,102,116,101,114,123,109,97,114,103,105,110,45,108,101,102,116,58,48,125,46,100,114,111,112,114,105,103,104,116,32,46,100,114,111,112,100,111,119,110,45,109,101,110,117,123,116,111,112,58,48,59,114,105,103,104,116,58,97,117,116,111,59,108,101,102,116,58,49,48,48,37,59,109,97,114,103,105,110,45,116,111,112,58,48,59,109,97,114,103,105,110,45,108,101,102,116,58,46,49,50,53,114,101,109,125,46,100,114,111,112,114,105,103,104,116,32,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,58,97,102,116,101,114,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,109,97,114,103,105,110,45,108,101,102,116,58,46,50,53,53,101,109,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,46,50,53,53,101,109,59,99,111,110,116,101,110,116,58,34,34,59,98,111,114,100,101,114,45,116,111,112,58,46,51,101,109,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,114,105,103,104,116,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,46,51,101,109,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,108,101,102,116,58,46,51,101,109,32,115,111,108,105,100,125,46,100,114,111,112,114,105,103,104,116,32,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,101,109,112,116,121,58,58,97,102,116,101,114,123,109,97,114,103,105,110,45,108,101,102,116,58,48,125,46,100,114,111,112,114,105,103,104,116,32,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,58,97,102,116,101,114,123,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,48,125,46,100,114,111,112,108,101,102,116,32,46,100,114,111,112,100,111,119,110,45,109,101,110,117,123,116,111,112,58,48,59,114,105,103,104,116,58,49,48,48,37,59,108,101,102,116,58,97,117,116,111,59,109,97,114,103,105,110,45,116,111,112,58,48,59,109,97,114,103,105,110,45,114,105,103,104,116,58,46,49,50,53,114,101,109,125,46,100,114,111,112,108,101,102,116,32,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,58,97,102,116,101,114,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,109,97,114,103,105,110,45,108,101,102,116,58,46,50,53,53,101,109,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,46,50,53,53,101,109,59,99,111,110,116,101,110,116,58,34,34,125,46,100,114,111,112,108,101,102,116,32,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,58,97,102,116,101,114,123,100,105,115,112,108,97,121,58,110,111,110,101,125,46,100,114,111,112,108,101,102,116,32,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,58,98,101,102,111,114,101,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,109,97,114,103,105,110,45,114,105,103,104,116,58,46,50,53,53,101,109,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,46,50,53,53,101,109,59,99,111,110,116,101,110,116,58,34,34,59,98,111,114,100,101,114,45,116,111,112,58,46,51,101,109,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,114,105,103,104,116,58,46,51,101,109,32,115,111,108,105,100,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,46,51,101,109,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,125,46,100,114,111,112,108,101,102,116,32,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,101,109,112,116,121,58,58,97,102,116,101,114,123,109,97,114,103,105,110,45,108,101,102,116,58,48,125,46,100,114,111,112,108,101,102,116,32,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,58,58,98,101,102,111,114,101,123,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,48,125,46,100,114,111,112,100,111,119,110,45,109,101,110,117,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,44,46,100,114,111,112,100,111,119,110,45,109,101,110,117,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,44,46,100,114,111,112,100,111,119,110,45,109,101,110,117,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,44,46,100,114,111,112,100,111,119,110,45,109,101,110,117,91,120,45,112,108,97,99,101,109,101,110,116,94,61,116,111,112,93,123,114,105,103,104,116,58,97,117,116,111,59,98,111,116,116,111,109,58,97,117,116,111,125,46,100,114,111,112,100,111,119,110,45,100,105,118,105,100,101,114,123,104,101,105,103,104,116,58,48,59,109,97,114,103,105,110,58,46,53,114,101,109,32,48,59,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,59,98,111,114,100,101,114,45,116,111,112,58,49,112,120,32,115,111,108,105,100,32,35,101,57,101,99,101,102,125,46,100,114,111,112,100,111,119,110,45,105,116,101,109,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,59,112,97,100,100,105,110,103,58,46,50,53,114,101,109,32,49,46,53,114,101,109,59,99,108,101,97,114,58,98,111,116,104,59,102,111,110,116,45,119,101,105,103,104,116,58,52,48,48,59,99,111,108,111,114,58,35,50,49,50,53,50,57,59,116,101,120,116,45,97,108,105,103,110,58,105,110,104,101,114,105,116,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,119,114,97,112,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,58,48,125,46,100,114,111,112,100,111,119,110,45,105,116,101,109,58,102,111,99,117,115,44,46,100,114,111,112,100,111,119,110,45,105,116,101,109,58,104,111,118,101,114,123,99,111,108,111,114,58,35,49,54,49,56,49,98,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,56,102,57,102,97,125,46,100,114,111,112,100,111,119,110,45,105,116,101,109,46,97,99,116,105,118,101,44,46,100,114,111,112,100,111,119,110,45,105,116,101,109,58,97,99,116,105,118,101,123,99,111,108,111,114,58,35,102,102,102,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,125,46,100,114,111,112,100,111,119,110,45,105,116,101,109,46,100,105,115,97,98,108,101,100,44,46,100,114,111,112,100,111,119,110,45,105,116,101,109,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,54,99,55,53,55,100,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,110,111,110,101,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,125,46,100,114,111,112,100,111,119,110,45,109,101,110,117,46,115,104,111,119,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,100,114,111,112,100,111,119,110,45,104,101,97,100,101,114,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,112,97,100,100,105,110,103,58,46,53,114,101,109,32,49,46,53,114,101,109,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,59,102,111,110,116,45,115,105,122,101,58,46,56,55,53,114,101,109,59,99,111,108,111,114,58,35,54,99,55,53,55,100,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,119,114,97,112,125,46,100,114,111,112,100,111,119,110,45,105,116,101,109,45,116,101,120,116,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,112,97,100,100,105,110,103,58,46,50,53,114,101,109,32,49,46,53,114,101,109,59,99,111,108,111,114,58,35,50,49,50,53,50,57,125,46,98,116,110,45,103,114,111,117,112,44,46,98,116,110,45,103,114,111,117,112,45,118,101,114,116,105,99,97,108,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,100,105,115,112,108,97,121,58,45,109,115,45,105,110,108,105,110,101,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,102,108,101,120,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,109,105,100,100,108,101,125,46,98,116,110,45,103,114,111,117,112,45,118,101,114,116,105,99,97,108,62,46,98,116,110,44,46,98,116,110,45,103,114,111,117,112,62,46,98,116,110,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,45,109,115,45,102,108,101,120,58,49,32,49,32,97,117,116,111,59,102,108,101,120,58,49,32,49,32,97,117,116,111,125,46,98,116,110,45,103,114,111,117,112,45,118,101,114,116,105,99,97,108,62,46,98,116,110,58,104,111,118,101,114,44,46,98,116,110,45,103,114,111,117,112,62,46,98,116,110,58,104,111,118,101,114,123,122,45,105,110,100,101,120,58,49,125,46,98,116,110,45,103,114,111,117,112,45,118,101,114,116,105,99,97,108,62,46,98,116,110,46,97,99,116,105,118,101,44,46,98,116,110,45,103,114,111,117,112,45,118,101,114,116,105,99,97,108,62,46,98,116,110,58,97,99,116,105,118,101,44,46,98,116,110,45,103,114,111,117,112,45,118,101,114,116,105,99,97,108,62,46,98,116,110,58,102,111,99,117,115,44,46,98,116,110,45,103,114,111,117,112,62,46,98,116,110,46,97,99,116,105,118,101,44,46,98,116,110,45,103,114,111,117,112,62,46,98,116,110,58,97,99,116,105,118,101,44,46,98,116,110,45,103,114,111,117,112,62,46,98,116,110,58,102,111,99,117,115,123,122,45,105,110,100,101,120,58,49,125,46,98,116,110,45,116,111,111,108,98,97,114,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,45,109,115,45,102,108,101,120,45,112,97,99,107,58,115,116,97,114,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,125,46,98,116,110,45,116,111,111,108,98,97,114,32,46,105,110,112,117,116,45,103,114,111,117,112,123,119,105,100,116,104,58,97,117,116,111,125,46,98,116,110,45,103,114,111,117,112,62,46,98,116,110,45,103,114,111,117,112,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,44,46,98,116,110,45,103,114,111,117,112,62,46,98,116,110,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,112,120,125,46,98,116,110,45,103,114,111,117,112,62,46,98,116,110,45,103,114,111,117,112,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,62,46,98,116,110,44,46,98,116,110,45,103,114,111,117,112,62,46,98,116,110,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,58,110,111,116,40,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,41,123,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,125,46,98,116,110,45,103,114,111,117,112,62,46,98,116,110,45,103,114,111,117,112,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,62,46,98,116,110,44,46,98,116,110,45,103,114,111,117,112,62,46,98,116,110,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,48,125,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,45,115,112,108,105,116,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,53,54,50,53,114,101,109,59,112,97,100,100,105,110,103,45,108,101,102,116,58,46,53,54,50,53,114,101,109,125,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,45,115,112,108,105,116,58,58,97,102,116,101,114,44,46,100,114,111,112,114,105,103,104,116,32,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,45,115,112,108,105,116,58,58,97,102,116,101,114,44,46,100,114,111,112,117,112,32,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,45,115,112,108,105,116,58,58,97,102,116,101,114,123,109,97,114,103,105,110,45,108,101,102,116,58,48,125,46,100,114,111,112,108,101,102,116,32,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,45,115,112,108,105,116,58,58,98,101,102,111,114,101,123,109,97,114,103,105,110,45,114,105,103,104,116,58,48,125,46,98,116,110,45,103,114,111,117,112,45,115,109,62,46,98,116,110,43,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,45,115,112,108,105,116,44,46,98,116,110,45,115,109,43,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,45,115,112,108,105,116,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,51,55,53,114,101,109,59,112,97,100,100,105,110,103,45,108,101,102,116,58,46,51,55,53,114,101,109,125,46,98,116,110,45,103,114,111,117,112,45,108,103,62,46,98,116,110,43,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,45,115,112,108,105,116,44,46,98,116,110,45,108,103,43,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,45,115,112,108,105,116,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,55,53,114,101,109,59,112,97,100,100,105,110,103,45,108,101,102,116,58,46,55,53,114,101,109,125,46,98,116,110,45,103,114,111,117,112,45,118,101,114,116,105,99,97,108,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,115,116,97,114,116,59,97,108,105,103,110,45,105,116,101,109,115,58,102,108,101,120,45,115,116,97,114,116,59,45,109,115,45,102,108,101,120,45,112,97,99,107,58,99,101,110,116,101,114,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,125,46,98,116,110,45,103,114,111,117,112,45,118,101,114,116,105,99,97,108,62,46,98,116,110,44,46,98,116,110,45,103,114,111,117,112,45,118,101,114,116,105,99,97,108,62,46,98,116,110,45,103,114,111,117,112,123,119,105,100,116,104,58,49,48,48,37,125,46,98,116,110,45,103,114,111,117,112,45,118,101,114,116,105,99,97,108,62,46,98,116,110,45,103,114,111,117,112,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,44,46,98,116,110,45,103,114,111,117,112,45,118,101,114,116,105,99,97,108,62,46,98,116,110,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,123,109,97,114,103,105,110,45,116,111,112,58,45,49,112,120,125,46,98,116,110,45,103,114,111,117,112,45,118,101,114,116,105,99,97,108,62,46,98,116,110,45,103,114,111,117,112,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,62,46,98,116,110,44,46,98,116,110,45,103,114,111,117,112,45,118,101,114,116,105,99,97,108,62,46,98,116,110,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,58,110,111,116,40,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,41,123,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,48,125,46,98,116,110,45,103,114,111,117,112,45,118,101,114,116,105,99,97,108,62,46,98,116,110,45,103,114,111,117,112,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,62,46,98,116,110,44,46,98,116,110,45,103,114,111,117,112,45,118,101,114,116,105,99,97,108,62,46,98,116,110,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,125,46,98,116,110,45,103,114,111,117,112,45,116,111,103,103,108,101,62,46,98,116,110,44,46,98,116,110,45,103,114,111,117,112,45,116,111,103,103,108,101,62,46,98,116,110,45,103,114,111,117,112,62,46,98,116,110,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,46,98,116,110,45,103,114,111,117,112,45,116,111,103,103,108,101,62,46,98,116,110,32,105,110,112,117,116,91,116,121,112,101,61,99,104,101,99,107,98,111,120,93,44,46,98,116,110,45,103,114,111,117,112,45,116,111,103,103,108,101,62,46,98,116,110,32,105,110,112,117,116,91,116,121,112,101,61,114,97,100,105,111,93,44,46,98,116,110,45,103,114,111,117,112,45,116,111,103,103,108,101,62,46,98,116,110,45,103,114,111,117,112,62,46,98,116,110,32,105,110,112,117,116,91,116,121,112,101,61,99,104,101,99,107,98,111,120,93,44,46,98,116,110,45,103,114,111,117,112,45,116,111,103,103,108,101,62,46,98,116,110,45,103,114,111,117,112,62,46,98,116,110,32,105,110,112,117,116,91,116,121,112,101,61,114,97,100,105,111,93,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,99,108,105,112,58,114,101,99,116,40,48,44,48,44,48,44,48,41,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,110,111,110,101,125,46,105,110,112,117,116,45,103,114,111,117,112,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,115,116,114,101,116,99,104,59,97,108,105,103,110,45,105,116,101,109,115,58,115,116,114,101,116,99,104,59,119,105,100,116,104,58,49,48,48,37,125,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,102,105,108,101,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,115,101,108,101,99,116,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,102,111,114,109,45,99,111,110,116,114,111,108,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,102,111,114,109,45,99,111,110,116,114,111,108,45,112,108,97,105,110,116,101,120,116,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,45,109,115,45,102,108,101,120,58,49,32,49,32,97,117,116,111,59,102,108,101,120,58,49,32,49,32,97,117,116,111,59,119,105,100,116,104,58,49,37,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,102,105,108,101,43,46,99,117,115,116,111,109,45,102,105,108,101,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,102,105,108,101,43,46,99,117,115,116,111,109,45,115,101,108,101,99,116,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,102,105,108,101,43,46,102,111,114,109,45,99,111,110,116,114,111,108,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,115,101,108,101,99,116,43,46,99,117,115,116,111,109,45,102,105,108,101,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,115,101,108,101,99,116,43,46,99,117,115,116,111,109,45,115,101,108,101,99,116,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,115,101,108,101,99,116,43,46,102,111,114,109,45,99,111,110,116,114,111,108,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,102,111,114,109,45,99,111,110,116,114,111,108,43,46,99,117,115,116,111,109,45,102,105,108,101,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,102,111,114,109,45,99,111,110,116,114,111,108,43,46,99,117,115,116,111,109,45,115,101,108,101,99,116,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,102,111,114,109,45,99,111,110,116,114,111,108,43,46,102,111,114,109,45,99,111,110,116,114,111,108,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,102,111,114,109,45,99,111,110,116,114,111,108,45,112,108,97,105,110,116,101,120,116,43,46,99,117,115,116,111,109,45,102,105,108,101,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,102,111,114,109,45,99,111,110,116,114,111,108,45,112,108,97,105,110,116,101,120,116,43,46,99,117,115,116,111,109,45,115,101,108,101,99,116,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,102,111,114,109,45,99,111,110,116,114,111,108,45,112,108,97,105,110,116,101,120,116,43,46,102,111,114,109,45,99,111,110,116,114,111,108,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,112,120,125,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,102,105,108,101,32,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,58,102,111,99,117,115,126,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,115,101,108,101,99,116,58,102,111,99,117,115,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,102,111,114,109,45,99,111,110,116,114,111,108,58,102,111,99,117,115,123,122,45,105,110,100,101,120,58,51,125,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,102,105,108,101,32,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,58,102,111,99,117,115,123,122,45,105,110,100,101,120,58,52,125,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,115,101,108,101,99,116,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,102,111,114,109,45,99,111,110,116,114,111,108,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,123,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,125,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,115,101,108,101,99,116,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,102,111,114,109,45,99,111,110,116,114,111,108,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,48,125,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,102,105,108,101,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,99,101,110,116,101,114,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,125,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,102,105,108,101,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,32,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,102,105,108,101,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,32,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,58,58,97,102,116,101,114,123,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,125,46,105,110,112,117,116,45,103,114,111,117,112,62,46,99,117,115,116,111,109,45,102,105,108,101,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,32,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,48,125,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,44,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,125,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,32,46,98,116,110,44,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,32,46,98,116,110,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,122,45,105,110,100,101,120,58,50,125,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,32,46,98,116,110,58,102,111,99,117,115,44,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,32,46,98,116,110,58,102,111,99,117,115,123,122,45,105,110,100,101,120,58,51,125,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,32,46,98,116,110,43,46,98,116,110,44,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,32,46,98,116,110,43,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,44,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,32,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,43,46,98,116,110,44,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,32,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,43,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,44,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,32,46,98,116,110,43,46,98,116,110,44,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,32,46,98,116,110,43,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,44,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,32,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,43,46,98,116,110,44,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,32,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,43,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,112,120,125,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,112,120,125,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,112,120,125,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,99,101,110,116,101,114,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,59,112,97,100,100,105,110,103,58,46,51,55,53,114,101,109,32,46,55,53,114,101,109,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,59,102,111,110,116,45,115,105,122,101,58,49,114,101,109,59,102,111,110,116,45,119,101,105,103,104,116,58,52,48,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,99,111,108,111,114,58,35,52,57,53,48,53,55,59,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,119,114,97,112,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,57,101,99,101,102,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,99,101,100,52,100,97,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,32,105,110,112,117,116,91,116,121,112,101,61,99,104,101,99,107,98,111,120,93,44,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,32,105,110,112,117,116,91,116,121,112,101,61,114,97,100,105,111,93,123,109,97,114,103,105,110,45,116,111,112,58,48,125,46,105,110,112,117,116,45,103,114,111,117,112,45,108,103,62,46,99,117,115,116,111,109,45,115,101,108,101,99,116,44,46,105,110,112,117,116,45,103,114,111,117,112,45,108,103,62,46,102,111,114,109,45,99,111,110,116,114,111,108,58,110,111,116,40,116,101,120,116,97,114,101,97,41,123,104,101,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,49,114,101,109,32,43,32,50,112,120,41,125,46,105,110,112,117,116,45,103,114,111,117,112,45,108,103,62,46,99,117,115,116,111,109,45,115,101,108,101,99,116,44,46,105,110,112,117,116,45,103,114,111,117,112,45,108,103,62,46,102,111,114,109,45,99,111,110,116,114,111,108,44,46,105,110,112,117,116,45,103,114,111,117,112,45,108,103,62,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,62,46,98,116,110,44,46,105,110,112,117,116,45,103,114,111,117,112,45,108,103,62,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,62,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,44,46,105,110,112,117,116,45,103,114,111,117,112,45,108,103,62,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,62,46,98,116,110,44,46,105,110,112,117,116,45,103,114,111,117,112,45,108,103,62,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,62,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,123,112,97,100,100,105,110,103,58,46,53,114,101,109,32,49,114,101,109,59,102,111,110,116,45,115,105,122,101,58,49,46,50,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,51,114,101,109,125,46,105,110,112,117,116,45,103,114,111,117,112,45,115,109,62,46,99,117,115,116,111,109,45,115,101,108,101,99,116,44,46,105,110,112,117,116,45,103,114,111,117,112,45,115,109,62,46,102,111,114,109,45,99,111,110,116,114,111,108,58,110,111,116,40,116,101,120,116,97,114,101,97,41,123,104,101,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,46,53,114,101,109,32,43,32,50,112,120,41,125,46,105,110,112,117,116,45,103,114,111,117,112,45,115,109,62,46,99,117,115,116,111,109,45,115,101,108,101,99,116,44,46,105,110,112,117,116,45,103,114,111,117,112,45,115,109,62,46,102,111,114,109,45,99,111,110,116,114,111,108,44,46,105,110,112,117,116,45,103,114,111,117,112,45,115,109,62,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,62,46,98,116,110,44,46,105,110,112,117,116,45,103,114,111,117,112,45,115,109,62,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,62,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,44,46,105,110,112,117,116,45,103,114,111,117,112,45,115,109,62,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,62,46,98,116,110,44,46,105,110,112,117,116,45,103,114,111,117,112,45,115,109,62,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,62,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,123,112,97,100,100,105,110,103,58,46,50,53,114,101,109,32,46,53,114,101,109,59,102,111,110,116,45,115,105,122,101,58,46,56,55,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,114,101,109,125,46,105,110,112,117,116,45,103,114,111,117,112,45,108,103,62,46,99,117,115,116,111,109,45,115,101,108,101,99,116,44,46,105,110,112,117,116,45,103,114,111,117,112,45,115,109,62,46,99,117,115,116,111,109,45,115,101,108,101,99,116,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,49,46,55,53,114,101,109,125,46,105,110,112,117,116,45,103,114,111,117,112,62,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,58,108,97,115,116,45,99,104,105,108,100,62,46,98,116,110,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,58,110,111,116,40,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,41,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,58,108,97,115,116,45,99,104,105,108,100,62,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,62,46,98,116,110,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,62,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,62,46,98,116,110,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,62,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,123,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,125,46,105,110,112,117,116,45,103,114,111,117,112,62,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,62,46,98,116,110,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,105,110,112,117,116,45,103,114,111,117,112,45,97,112,112,101,110,100,62,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,58,102,105,114,115,116,45,99,104,105,108,100,62,46,98,116,110,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,58,102,105,114,115,116,45,99,104,105,108,100,62,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,62,46,98,116,110,44,46,105,110,112,117,116,45,103,114,111,117,112,62,46,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,62,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,48,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,109,105,110,45,104,101,105,103,104,116,58,49,46,53,114,101,109,59,112,97,100,100,105,110,103,45,108,101,102,116,58,49,46,53,114,101,109,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,108,105,110,101,123,100,105,115,112,108,97,121,58,45,109,115,45,105,110,108,105,110,101,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,102,108,101,120,59,109,97,114,103,105,110,45,114,105,103,104,116,58,49,114,101,109,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,122,45,105,110,100,101,120,58,45,49,59,111,112,97,99,105,116,121,58,48,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,99,104,101,99,107,101,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,99,111,108,111,114,58,35,102,102,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,48,48,55,98,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,102,111,99,117,115,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,50,53,41,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,102,111,99,117,115,58,110,111,116,40,58,99,104,101,99,107,101,100,41,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,56,48,98,100,102,102,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,97,99,116,105,118,101,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,51,100,55,102,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,98,51,100,55,102,102,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,100,105,115,97,98,108,101,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,123,99,111,108,111,114,58,35,54,99,55,53,55,100,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,100,105,115,97,98,108,101,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,57,101,99,101,102,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,116,111,112,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,46,50,53,114,101,109,59,108,101,102,116,58,45,49,46,53,114,101,109,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,114,101,109,59,104,101,105,103,104,116,58,49,114,101,109,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,110,111,110,101,59,99,111,110,116,101,110,116,58,34,34,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,111,114,100,101,114,58,35,97,100,98,53,98,100,32,115,111,108,105,100,32,49,112,120,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,97,102,116,101,114,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,46,50,53,114,101,109,59,108,101,102,116,58,45,49,46,53,114,101,109,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,114,101,109,59,104,101,105,103,104,116,58,49,114,101,109,59,99,111,110,116,101,110,116,58,34,34,59,98,97,99,107,103,114,111,117,110,100,58,110,111,45,114,101,112,101,97,116,32,53,48,37,47,53,48,37,32,53,48,37,125,46,99,117,115,116,111,109,45,99,104,101,99,107,98,111,120,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,99,117,115,116,111,109,45,99,104,101,99,107,98,111,120,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,99,104,101,99,107,101,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,97,102,116,101,114,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,39,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,115,118,103,39,32,118,105,101,119,66,111,120,61,39,48,32,48,32,56,32,56,39,37,51,101,37,51,99,112,97,116,104,32,102,105,108,108,61,39,37,50,51,102,102,102,39,32,100,61,39,77,54,46,53,54,52,46,55,53,108,45,51,46,53,57,32,51,46,54,49,50,45,49,46,53,51,56,45,49,46,53,53,76,48,32,52,46,50,54,32,50,46,57,55,52,32,55,46,50,53,32,56,32,50,46,49,57,51,122,39,47,37,51,101,37,51,99,47,115,118,103,37,51,101,34,41,125,46,99,117,115,116,111,109,45,99,104,101,99,107,98,111,120,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,105,110,100,101,116,101,114,109,105,110,97,116,101,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,48,48,55,98,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,125,46,99,117,115,116,111,109,45,99,104,101,99,107,98,111,120,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,105,110,100,101,116,101,114,109,105,110,97,116,101,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,97,102,116,101,114,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,39,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,115,118,103,39,32,118,105,101,119,66,111,120,61,39,48,32,48,32,52,32,52,39,37,51,101,37,51,99,112,97,116,104,32,115,116,114,111,107,101,61,39,37,50,51,102,102,102,39,32,100,61,39,77,48,32,50,104,52,39,47,37,51,101,37,51,99,47,115,118,103,37,51,101,34,41,125,46,99,117,115,116,111,109,45,99,104,101,99,107,98,111,120,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,100,105,115,97,98,108,101,100,58,99,104,101,99,107,101,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,53,41,125,46,99,117,115,116,111,109,45,99,104,101,99,107,98,111,120,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,100,105,115,97,98,108,101,100,58,105,110,100,101,116,101,114,109,105,110,97,116,101,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,53,41,125,46,99,117,115,116,111,109,45,114,97,100,105,111,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,111,114,100,101,114,45,114,97,100,105,117,115,58,53,48,37,125,46,99,117,115,116,111,109,45,114,97,100,105,111,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,99,104,101,99,107,101,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,97,102,116,101,114,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,39,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,115,118,103,39,32,118,105,101,119,66,111,120,61,39,45,52,32,45,52,32,56,32,56,39,37,51,101,37,51,99,99,105,114,99,108,101,32,114,61,39,51,39,32,102,105,108,108,61,39,37,50,51,102,102,102,39,47,37,51,101,37,51,99,47,115,118,103,37,51,101,34,41,125,46,99,117,115,116,111,109,45,114,97,100,105,111,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,100,105,115,97,98,108,101,100,58,99,104,101,99,107,101,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,53,41,125,46,99,117,115,116,111,109,45,115,119,105,116,99,104,123,112,97,100,100,105,110,103,45,108,101,102,116,58,50,46,50,53,114,101,109,125,46,99,117,115,116,111,109,45,115,119,105,116,99,104,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,108,101,102,116,58,45,50,46,50,53,114,101,109,59,119,105,100,116,104,58,49,46,55,53,114,101,109,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,97,108,108,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,53,114,101,109,125,46,99,117,115,116,111,109,45,115,119,105,116,99,104,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,97,102,116,101,114,123,116,111,112,58,99,97,108,99,40,46,50,53,114,101,109,32,43,32,50,112,120,41,59,108,101,102,116,58,99,97,108,99,40,45,50,46,50,53,114,101,109,32,43,32,50,112,120,41,59,119,105,100,116,104,58,99,97,108,99,40,49,114,101,109,32,45,32,52,112,120,41,59,104,101,105,103,104,116,58,99,97,108,99,40,49,114,101,109,32,45,32,52,112,120,41,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,97,100,98,53,98,100,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,53,114,101,109,59,116,114,97,110,115,105,116,105,111,110,58,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,114,100,101,114,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,120,45,115,104,97,100,111,119,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,59,116,114,97,110,115,105,116,105,111,110,58,116,114,97,110,115,102,111,114,109,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,114,100,101,114,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,120,45,115,104,97,100,111,119,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,59,116,114,97,110,115,105,116,105,111,110,58,116,114,97,110,115,102,111,114,109,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,114,100,101,114,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,120,45,115,104,97,100,111,119,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,99,117,115,116,111,109,45,115,119,105,116,99,104,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,97,102,116,101,114,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,46,99,117,115,116,111,109,45,115,119,105,116,99,104,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,99,104,101,99,107,101,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,97,102,116,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,88,40,46,55,53,114,101,109,41,59,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,88,40,46,55,53,114,101,109,41,125,46,99,117,115,116,111,109,45,115,119,105,116,99,104,32,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,105,110,112,117,116,58,100,105,115,97,98,108,101,100,58,99,104,101,99,107,101,100,126,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,53,41,125,46,99,117,115,116,111,109,45,115,101,108,101,99,116,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,46,55,53,114,101,109,32,43,32,50,112,120,41,59,112,97,100,100,105,110,103,58,46,51,55,53,114,101,109,32,49,46,55,53,114,101,109,32,46,51,55,53,114,101,109,32,46,55,53,114,101,109,59,102,111,110,116,45,115,105,122,101,58,49,114,101,109,59,102,111,110,116,45,119,101,105,103,104,116,58,52,48,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,99,111,108,111,114,58,35,52,57,53,48,53,55,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,109,105,100,100,108,101,59,98,97,99,107,103,114,111,117,110,100,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,39,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,115,118,103,39,32,118,105,101,119,66,111,120,61,39,48,32,48,32,52,32,53,39,37,51,101,37,51,99,112,97,116,104,32,102,105,108,108,61,39,37,50,51,51,52,51,97,52,48,39,32,100,61,39,77,50,32,48,76,48,32,50,104,52,122,109,48,32,53,76,48,32,51,104,52,122,39,47,37,51,101,37,51,99,47,115,118,103,37,51,101,34,41,32,110,111,45,114,101,112,101,97,116,32,114,105,103,104,116,32,46,55,53,114,101,109,32,99,101,110,116,101,114,47,56,112,120,32,49,48,112,120,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,99,101,100,52,100,97,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,45,119,101,98,107,105,116,45,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,59,45,109,111,122,45,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,59,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,125,46,99,117,115,116,111,109,45,115,101,108,101,99,116,58,102,111,99,117,115,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,56,48,98,100,102,102,59,111,117,116,108,105,110,101,58,48,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,50,53,41,125,46,99,117,115,116,111,109,45,115,101,108,101,99,116,58,102,111,99,117,115,58,58,45,109,115,45,118,97,108,117,101,123,99,111,108,111,114,58,35,52,57,53,48,53,55,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,125,46,99,117,115,116,111,109,45,115,101,108,101,99,116,91,109,117,108,116,105,112,108,101,93,44,46,99,117,115,116,111,109,45,115,101,108,101,99,116,91,115,105,122,101,93,58,110,111,116,40,91,115,105,122,101,61,34,49,34,93,41,123,104,101,105,103,104,116,58,97,117,116,111,59,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,55,53,114,101,109,59,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,110,111,110,101,125,46,99,117,115,116,111,109,45,115,101,108,101,99,116,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,54,99,55,53,55,100,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,57,101,99,101,102,125,46,99,117,115,116,111,109,45,115,101,108,101,99,116,58,58,45,109,115,45,101,120,112,97,110,100,123,100,105,115,112,108,97,121,58,110,111,110,101,125,46,99,117,115,116,111,109,45,115,101,108,101,99,116,45,115,109,123,104,101,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,46,53,114,101,109,32,43,32,50,112,120,41,59,112,97,100,100,105,110,103,45,116,111,112,58,46,50,53,114,101,109,59,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,50,53,114,101,109,59,112,97,100,100,105,110,103,45,108,101,102,116,58,46,53,114,101,109,59,102,111,110,116,45,115,105,122,101,58,46,56,55,53,114,101,109,125,46,99,117,115,116,111,109,45,115,101,108,101,99,116,45,108,103,123,104,101,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,49,114,101,109,32,43,32,50,112,120,41,59,112,97,100,100,105,110,103,45,116,111,112,58,46,53,114,101,109,59,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,53,114,101,109,59,112,97,100,100,105,110,103,45,108,101,102,116,58,49,114,101,109,59,102,111,110,116,45,115,105,122,101,58,49,46,50,53,114,101,109,125,46,99,117,115,116,111,109,45,102,105,108,101,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,46,55,53,114,101,109,32,43,32,50,112,120,41,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,122,45,105,110,100,101,120,58,50,59,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,46,55,53,114,101,109,32,43,32,50,112,120,41,59,109,97,114,103,105,110,58,48,59,111,112,97,99,105,116,121,58,48,125,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,58,102,111,99,117,115,126,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,56,48,98,100,102,102,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,50,53,41,125,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,58,100,105,115,97,98,108,101,100,126,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,57,101,99,101,102,125,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,58,108,97,110,103,40,101,110,41,126,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,58,58,97,102,116,101,114,123,99,111,110,116,101,110,116,58,34,66,114,111,119,115,101,34,125,46,99,117,115,116,111,109,45,102,105,108,101,45,105,110,112,117,116,126,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,91,100,97,116,97,45,98,114,111,119,115,101,93,58,58,97,102,116,101,114,123,99,111,110,116,101,110,116,58,97,116,116,114,40,100,97,116,97,45,98,114,111,119,115,101,41,125,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,48,59,114,105,103,104,116,58,48,59,108,101,102,116,58,48,59,122,45,105,110,100,101,120,58,49,59,104,101,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,46,55,53,114,101,109,32,43,32,50,112,120,41,59,112,97,100,100,105,110,103,58,46,51,55,53,114,101,109,32,46,55,53,114,101,109,59,102,111,110,116,45,119,101,105,103,104,116,58,52,48,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,99,111,108,111,114,58,35,52,57,53,48,53,55,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,99,101,100,52,100,97,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,58,58,97,102,116,101,114,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,48,59,114,105,103,104,116,58,48,59,98,111,116,116,111,109,58,48,59,122,45,105,110,100,101,120,58,51,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,104,101,105,103,104,116,58,99,97,108,99,40,49,46,53,101,109,32,43,32,46,55,53,114,101,109,41,59,112,97,100,100,105,110,103,58,46,51,55,53,114,101,109,32,46,55,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,99,111,108,111,114,58,35,52,57,53,48,53,55,59,99,111,110,116,101,110,116,58,34,66,114,111,119,115,101,34,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,57,101,99,101,102,59,98,111,114,100,101,114,45,108,101,102,116,58,105,110,104,101,114,105,116,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,48,32,46,50,53,114,101,109,32,46,50,53,114,101,109,32,48,125,46,99,117,115,116,111,109,45,114,97,110,103,101,123,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,99,97,108,99,40,49,114,101,109,32,43,32,46,52,114,101,109,41,59,112,97,100,100,105,110,103,58,48,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,45,119,101,98,107,105,116,45,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,59,45,109,111,122,45,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,59,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,102,111,99,117,115,123,111,117,116,108,105,110,101,58,48,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,102,111,99,117,115,58,58,45,119,101,98,107,105,116,45,115,108,105,100,101,114,45,116,104,117,109,98,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,49,112,120,32,35,102,102,102,44,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,50,53,41,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,102,111,99,117,115,58,58,45,109,111,122,45,114,97,110,103,101,45,116,104,117,109,98,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,49,112,120,32,35,102,102,102,44,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,50,53,41,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,102,111,99,117,115,58,58,45,109,115,45,116,104,117,109,98,123,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,49,112,120,32,35,102,102,102,44,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,50,53,41,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,58,45,109,111,122,45,102,111,99,117,115,45,111,117,116,101,114,123,98,111,114,100,101,114,58,48,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,58,45,119,101,98,107,105,116,45,115,108,105,100,101,114,45,116,104,117,109,98,123,119,105,100,116,104,58,49,114,101,109,59,104,101,105,103,104,116,58,49,114,101,109,59,109,97,114,103,105,110,45,116,111,112,58,45,46,50,53,114,101,109,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,59,98,111,114,100,101,114,58,48,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,49,114,101,109,59,116,114,97,110,115,105,116,105,111,110,58,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,114,100,101,114,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,120,45,115,104,97,100,111,119,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,59,45,119,101,98,107,105,116,45,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,59,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,99,117,115,116,111,109,45,114,97,110,103,101,58,58,45,119,101,98,107,105,116,45,115,108,105,100,101,114,45,116,104,117,109,98,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,58,45,119,101,98,107,105,116,45,115,108,105,100,101,114,45,116,104,117,109,98,58,97,99,116,105,118,101,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,51,100,55,102,102,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,58,45,119,101,98,107,105,116,45,115,108,105,100,101,114,45,114,117,110,110,97,98,108,101,45,116,114,97,99,107,123,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,46,53,114,101,109,59,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,99,117,114,115,111,114,58,112,111,105,110,116,101,114,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,101,101,50,101,54,59,98,111,114,100,101,114,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,49,114,101,109,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,58,45,109,111,122,45,114,97,110,103,101,45,116,104,117,109,98,123,119,105,100,116,104,58,49,114,101,109,59,104,101,105,103,104,116,58,49,114,101,109,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,59,98,111,114,100,101,114,58,48,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,49,114,101,109,59,116,114,97,110,115,105,116,105,111,110,58,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,114,100,101,114,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,120,45,115,104,97,100,111,119,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,59,45,109,111,122,45,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,59,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,99,117,115,116,111,109,45,114,97,110,103,101,58,58,45,109,111,122,45,114,97,110,103,101,45,116,104,117,109,98,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,58,45,109,111,122,45,114,97,110,103,101,45,116,104,117,109,98,58,97,99,116,105,118,101,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,51,100,55,102,102,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,58,45,109,111,122,45,114,97,110,103,101,45,116,114,97,99,107,123,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,46,53,114,101,109,59,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,99,117,114,115,111,114,58,112,111,105,110,116,101,114,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,101,101,50,101,54,59,98,111,114,100,101,114,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,49,114,101,109,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,58,45,109,115,45,116,104,117,109,98,123,119,105,100,116,104,58,49,114,101,109,59,104,101,105,103,104,116,58,49,114,101,109,59,109,97,114,103,105,110,45,116,111,112,58,48,59,109,97,114,103,105,110,45,114,105,103,104,116,58,46,50,114,101,109,59,109,97,114,103,105,110,45,108,101,102,116,58,46,50,114,101,109,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,59,98,111,114,100,101,114,58,48,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,49,114,101,109,59,116,114,97,110,115,105,116,105,111,110,58,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,114,100,101,114,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,120,45,115,104,97,100,111,119,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,59,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,99,117,115,116,111,109,45,114,97,110,103,101,58,58,45,109,115,45,116,104,117,109,98,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,58,45,109,115,45,116,104,117,109,98,58,97,99,116,105,118,101,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,51,100,55,102,102,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,58,45,109,115,45,116,114,97,99,107,123,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,46,53,114,101,109,59,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,99,117,114,115,111,114,58,112,111,105,110,116,101,114,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,119,105,100,116,104,58,46,53,114,101,109,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,58,45,109,115,45,102,105,108,108,45,108,111,119,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,101,101,50,101,54,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,49,114,101,109,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,58,45,109,115,45,102,105,108,108,45,117,112,112,101,114,123,109,97,114,103,105,110,45,114,105,103,104,116,58,49,53,112,120,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,101,101,50,101,54,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,49,114,101,109,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,100,105,115,97,98,108,101,100,58,58,45,119,101,98,107,105,116,45,115,108,105,100,101,114,45,116,104,117,109,98,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,97,100,98,53,98,100,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,100,105,115,97,98,108,101,100,58,58,45,119,101,98,107,105,116,45,115,108,105,100,101,114,45,114,117,110,110,97,98,108,101,45,116,114,97,99,107,123,99,117,114,115,111,114,58,100,101,102,97,117,108,116,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,100,105,115,97,98,108,101,100,58,58,45,109,111,122,45,114,97,110,103,101,45,116,104,117,109,98,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,97,100,98,53,98,100,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,100,105,115,97,98,108,101,100,58,58,45,109,111,122,45,114,97,110,103,101,45,116,114,97,99,107,123,99,117,114,115,111,114,58,100,101,102,97,117,108,116,125,46,99,117,115,116,111,109,45,114,97,110,103,101,58,100,105,115,97,98,108,101,100,58,58,45,109,115,45,116,104,117,109,98,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,97,100,98,53,98,100,125,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,44,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,44,46,99,117,115,116,111,109,45,115,101,108,101,99,116,123,116,114,97,110,115,105,116,105,111,110,58,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,114,100,101,114,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,120,45,115,104,97,100,111,119,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,99,117,115,116,111,109,45,99,111,110,116,114,111,108,45,108,97,98,101,108,58,58,98,101,102,111,114,101,44,46,99,117,115,116,111,109,45,102,105,108,101,45,108,97,98,101,108,44,46,99,117,115,116,111,109,45,115,101,108,101,99,116,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,46,110,97,118,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,59,108,105,115,116,45,115,116,121,108,101,58,110,111,110,101,125,46,110,97,118,45,108,105,110,107,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,112,97,100,100,105,110,103,58,46,53,114,101,109,32,49,114,101,109,125,46,110,97,118,45,108,105,110,107,58,102,111,99,117,115,44,46,110,97,118,45,108,105,110,107,58,104,111,118,101,114,123,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,125,46,110,97,118,45,108,105,110,107,46,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,54,99,55,53,55,100,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,110,111,110,101,59,99,117,114,115,111,114,58,100,101,102,97,117,108,116,125,46,110,97,118,45,116,97,98,115,123,98,111,114,100,101,114,45,98,111,116,116,111,109,58,49,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,125,46,110,97,118,45,116,97,98,115,32,46,110,97,118,45,105,116,101,109,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,49,112,120,125,46,110,97,118,45,116,97,98,115,32,46,110,97,118,45,108,105,110,107,123,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,110,97,118,45,116,97,98,115,32,46,110,97,118,45,108,105,110,107,58,102,111,99,117,115,44,46,110,97,118,45,116,97,98,115,32,46,110,97,118,45,108,105,110,107,58,104,111,118,101,114,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,101,57,101,99,101,102,32,35,101,57,101,99,101,102,32,35,100,101,101,50,101,54,125,46,110,97,118,45,116,97,98,115,32,46,110,97,118,45,108,105,110,107,46,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,54,99,55,53,55,100,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,125,46,110,97,118,45,116,97,98,115,32,46,110,97,118,45,105,116,101,109,46,115,104,111,119,32,46,110,97,118,45,108,105,110,107,44,46,110,97,118,45,116,97,98,115,32,46,110,97,118,45,108,105,110,107,46,97,99,116,105,118,101,123,99,111,108,111,114,58,35,52,57,53,48,53,55,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,101,101,50,101,54,32,35,100,101,101,50,101,54,32,35,102,102,102,125,46,110,97,118,45,116,97,98,115,32,46,100,114,111,112,100,111,119,110,45,109,101,110,117,123,109,97,114,103,105,110,45,116,111,112,58,45,49,112,120,59,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,125,46,110,97,118,45,112,105,108,108,115,32,46,110,97,118,45,108,105,110,107,123,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,110,97,118,45,112,105,108,108,115,32,46,110,97,118,45,108,105,110,107,46,97,99,116,105,118,101,44,46,110,97,118,45,112,105,108,108,115,32,46,115,104,111,119,62,46,110,97,118,45,108,105,110,107,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,125,46,110,97,118,45,102,105,108,108,32,46,110,97,118,45,105,116,101,109,123,45,109,115,45,102,108,101,120,58,49,32,49,32,97,117,116,111,59,102,108,101,120,58,49,32,49,32,97,117,116,111,59,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,125,46,110,97,118,45,106,117,115,116,105,102,105,101,100,32,46,110,97,118,45,105,116,101,109,123,45,109,115,45,102,108,101,120,45,112,114,101,102,101,114,114,101,100,45,115,105,122,101,58,48,59,102,108,101,120,45,98,97,115,105,115,58,48,59,45,109,115,45,102,108,101,120,45,112,111,115,105,116,105,118,101,58,49,59,102,108,101,120,45,103,114,111,119,58,49,59,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,125,46,116,97,98,45,99,111,110,116,101,110,116,62,46,116,97,98,45,112,97,110,101,123,100,105,115,112,108,97,121,58,110,111,110,101,125,46,116,97,98,45,99,111,110,116,101,110,116,62,46,97,99,116,105,118,101,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,110,97,118,98,97,114,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,99,101,110,116,101,114,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,59,45,109,115,45,102,108,101,120,45,112,97,99,107,58,106,117,115,116,105,102,121,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,98,101,116,119,101,101,110,59,112,97,100,100,105,110,103,58,46,53,114,101,109,32,49,114,101,109,125,46,110,97,118,98,97,114,62,46,99,111,110,116,97,105,110,101,114,44,46,110,97,118,98,97,114,62,46,99,111,110,116,97,105,110,101,114,45,102,108,117,105,100,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,99,101,110,116,101,114,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,59,45,109,115,45,102,108,101,120,45,112,97,99,107,58,106,117,115,116,105,102,121,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,98,101,116,119,101,101,110,125,46,110,97,118,98,97,114,45,98,114,97,110,100,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,112,97,100,100,105,110,103,45,116,111,112,58,46,51,49,50,53,114,101,109,59,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,51,49,50,53,114,101,109,59,109,97,114,103,105,110,45,114,105,103,104,116,58,49,114,101,109,59,102,111,110,116,45,115,105,122,101,58,49,46,50,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,105,110,104,101,114,105,116,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,119,114,97,112,125,46,110,97,118,98,97,114,45,98,114,97,110,100,58,102,111,99,117,115,44,46,110,97,118,98,97,114,45,98,114,97,110,100,58,104,111,118,101,114,123,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,125,46,110,97,118,98,97,114,45,110,97,118,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,59,108,105,115,116,45,115,116,121,108,101,58,110,111,110,101,125,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,48,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,125,46,110,97,118,98,97,114,45,110,97,118,32,46,100,114,111,112,100,111,119,110,45,109,101,110,117,123,112,111,115,105,116,105,111,110,58,115,116,97,116,105,99,59,102,108,111,97,116,58,110,111,110,101,125,46,110,97,118,98,97,114,45,116,101,120,116,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,112,97,100,100,105,110,103,45,116,111,112,58,46,53,114,101,109,59,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,53,114,101,109,125,46,110,97,118,98,97,114,45,99,111,108,108,97,112,115,101,123,45,109,115,45,102,108,101,120,45,112,114,101,102,101,114,114,101,100,45,115,105,122,101,58,49,48,48,37,59,102,108,101,120,45,98,97,115,105,115,58,49,48,48,37,59,45,109,115,45,102,108,101,120,45,112,111,115,105,116,105,118,101,58,49,59,102,108,101,120,45,103,114,111,119,58,49,59,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,99,101,110,116,101,114,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,125,46,110,97,118,98,97,114,45,116,111,103,103,108,101,114,123,112,97,100,100,105,110,103,58,46,50,53,114,101,109,32,46,55,53,114,101,109,59,102,111,110,116,45,115,105,122,101,58,49,46,50,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,110,97,118,98,97,114,45,116,111,103,103,108,101,114,58,102,111,99,117,115,44,46,110,97,118,98,97,114,45,116,111,103,103,108,101,114,58,104,111,118,101,114,123,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,125,46,110,97,118,98,97,114,45,116,111,103,103,108,101,114,45,105,99,111,110,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,119,105,100,116,104,58,49,46,53,101,109,59,104,101,105,103,104,116,58,49,46,53,101,109,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,109,105,100,100,108,101,59,99,111,110,116,101,110,116,58,34,34,59,98,97,99,107,103,114,111,117,110,100,58,110,111,45,114,101,112,101,97,116,32,99,101,110,116,101,114,32,99,101,110,116,101,114,59,98,97,99,107,103,114,111,117,110,100,45,115,105,122,101,58,49,48,48,37,32,49,48,48,37,125,64,109,101,100,105,97,32,40,109,97,120,45,119,105,100,116,104,58,53,55,53,46,57,56,112,120,41,123,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,115,109,62,46,99,111,110,116,97,105,110,101,114,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,115,109,62,46,99,111,110,116,97,105,110,101,114,45,102,108,117,105,100,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,48,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,115,109,123,45,109,115,45,102,108,101,120,45,102,108,111,119,58,114,111,119,32,110,111,119,114,97,112,59,102,108,101,120,45,102,108,111,119,58,114,111,119,32,110,111,119,114,97,112,59,45,109,115,45,102,108,101,120,45,112,97,99,107,58,115,116,97,114,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,115,109,32,46,110,97,118,98,97,114,45,110,97,118,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,115,109,32,46,110,97,118,98,97,114,45,110,97,118,32,46,100,114,111,112,100,111,119,110,45,109,101,110,117,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,115,109,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,53,114,101,109,59,112,97,100,100,105,110,103,45,108,101,102,116,58,46,53,114,101,109,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,115,109,62,46,99,111,110,116,97,105,110,101,114,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,115,109,62,46,99,111,110,116,97,105,110,101,114,45,102,108,117,105,100,123,45,109,115,45,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,59,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,115,109,32,46,110,97,118,98,97,114,45,99,111,108,108,97,112,115,101,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,33,105,109,112,111,114,116,97,110,116,59,100,105,115,112,108,97,121,58,102,108,101,120,33,105,109,112,111,114,116,97,110,116,59,45,109,115,45,102,108,101,120,45,112,114,101,102,101,114,114,101,100,45,115,105,122,101,58,97,117,116,111,59,102,108,101,120,45,98,97,115,105,115,58,97,117,116,111,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,115,109,32,46,110,97,118,98,97,114,45,116,111,103,103,108,101,114,123,100,105,115,112,108,97,121,58,110,111,110,101,125,125,64,109,101,100,105,97,32,40,109,97,120,45,119,105,100,116,104,58,55,54,55,46,57,56,112,120,41,123,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,109,100,62,46,99,111,110,116,97,105,110,101,114,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,109,100,62,46,99,111,110,116,97,105,110,101,114,45,102,108,117,105,100,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,48,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,55,54,56,112,120,41,123,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,109,100,123,45,109,115,45,102,108,101,120,45,102,108,111,119,58,114,111,119,32,110,111,119,114,97,112,59,102,108,101,120,45,102,108,111,119,58,114,111,119,32,110,111,119,114,97,112,59,45,109,115,45,102,108,101,120,45,112,97,99,107,58,115,116,97,114,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,109,100,32,46,110,97,118,98,97,114,45,110,97,118,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,109,100,32,46,110,97,118,98,97,114,45,110,97,118,32,46,100,114,111,112,100,111,119,110,45,109,101,110,117,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,109,100,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,53,114,101,109,59,112,97,100,100,105,110,103,45,108,101,102,116,58,46,53,114,101,109,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,109,100,62,46,99,111,110,116,97,105,110,101,114,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,109,100,62,46,99,111,110,116,97,105,110,101,114,45,102,108,117,105,100,123,45,109,115,45,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,59,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,109,100,32,46,110,97,118,98,97,114,45,99,111,108,108,97,112,115,101,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,33,105,109,112,111,114,116,97,110,116,59,100,105,115,112,108,97,121,58,102,108,101,120,33,105,109,112,111,114,116,97,110,116,59,45,109,115,45,102,108,101,120,45,112,114,101,102,101,114,114,101,100,45,115,105,122,101,58,97,117,116,111,59,102,108,101,120,45,98,97,115,105,115,58,97,117,116,111,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,109,100,32,46,110,97,118,98,97,114,45,116,111,103,103,108,101,114,123,100,105,115,112,108,97,121,58,110,111,110,101,125,125,64,109,101,100,105,97,32,40,109,97,120,45,119,105,100,116,104,58,57,57,49,46,57,56,112,120,41,123,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,108,103,62,46,99,111,110,116,97,105,110,101,114,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,108,103,62,46,99,111,110,116,97,105,110,101,114,45,102,108,117,105,100,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,48,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,57,57,50,112,120,41,123,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,108,103,123,45,109,115,45,102,108,101,120,45,102,108,111,119,58,114,111,119,32,110,111,119,114,97,112,59,102,108,101,120,45,102,108,111,119,58,114,111,119,32,110,111,119,114,97,112,59,45,109,115,45,102,108,101,120,45,112,97,99,107,58,115,116,97,114,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,108,103,32,46,110,97,118,98,97,114,45,110,97,118,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,108,103,32,46,110,97,118,98,97,114,45,110,97,118,32,46,100,114,111,112,100,111,119,110,45,109,101,110,117,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,108,103,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,53,114,101,109,59,112,97,100,100,105,110,103,45,108,101,102,116,58,46,53,114,101,109,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,108,103,62,46,99,111,110,116,97,105,110,101,114,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,108,103,62,46,99,111,110,116,97,105,110,101,114,45,102,108,117,105,100,123,45,109,115,45,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,59,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,108,103,32,46,110,97,118,98,97,114,45,99,111,108,108,97,112,115,101,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,33,105,109,112,111,114,116,97,110,116,59,100,105,115,112,108,97,121,58,102,108,101,120,33,105,109,112,111,114,116,97,110,116,59,45,109,115,45,102,108,101,120,45,112,114,101,102,101,114,114,101,100,45,115,105,122,101,58,97,117,116,111,59,102,108,101,120,45,98,97,115,105,115,58,97,117,116,111,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,108,103,32,46,110,97,118,98,97,114,45,116,111,103,103,108,101,114,123,100,105,115,112,108,97,121,58,110,111,110,101,125,125,64,109,101,100,105,97,32,40,109,97,120,45,119,105,100,116,104,58,49,49,57,57,46,57,56,112,120,41,123,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,120,108,62,46,99,111,110,116,97,105,110,101,114,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,120,108,62,46,99,111,110,116,97,105,110,101,114,45,102,108,117,105,100,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,48,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,49,50,48,48,112,120,41,123,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,120,108,123,45,109,115,45,102,108,101,120,45,102,108,111,119,58,114,111,119,32,110,111,119,114,97,112,59,102,108,101,120,45,102,108,111,119,58,114,111,119,32,110,111,119,114,97,112,59,45,109,115,45,102,108,101,120,45,112,97,99,107,58,115,116,97,114,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,120,108,32,46,110,97,118,98,97,114,45,110,97,118,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,120,108,32,46,110,97,118,98,97,114,45,110,97,118,32,46,100,114,111,112,100,111,119,110,45,109,101,110,117,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,120,108,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,53,114,101,109,59,112,97,100,100,105,110,103,45,108,101,102,116,58,46,53,114,101,109,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,120,108,62,46,99,111,110,116,97,105,110,101,114,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,120,108,62,46,99,111,110,116,97,105,110,101,114,45,102,108,117,105,100,123,45,109,115,45,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,59,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,120,108,32,46,110,97,118,98,97,114,45,99,111,108,108,97,112,115,101,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,33,105,109,112,111,114,116,97,110,116,59,100,105,115,112,108,97,121,58,102,108,101,120,33,105,109,112,111,114,116,97,110,116,59,45,109,115,45,102,108,101,120,45,112,114,101,102,101,114,114,101,100,45,115,105,122,101,58,97,117,116,111,59,102,108,101,120,45,98,97,115,105,115,58,97,117,116,111,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,45,120,108,32,46,110,97,118,98,97,114,45,116,111,103,103,108,101,114,123,100,105,115,112,108,97,121,58,110,111,110,101,125,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,123,45,109,115,45,102,108,101,120,45,102,108,111,119,58,114,111,119,32,110,111,119,114,97,112,59,102,108,101,120,45,102,108,111,119,58,114,111,119,32,110,111,119,114,97,112,59,45,109,115,45,102,108,101,120,45,112,97,99,107,58,115,116,97,114,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,62,46,99,111,110,116,97,105,110,101,114,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,62,46,99,111,110,116,97,105,110,101,114,45,102,108,117,105,100,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,48,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,32,46,110,97,118,98,97,114,45,110,97,118,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,32,46,110,97,118,98,97,114,45,110,97,118,32,46,100,114,111,112,100,111,119,110,45,109,101,110,117,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,53,114,101,109,59,112,97,100,100,105,110,103,45,108,101,102,116,58,46,53,114,101,109,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,62,46,99,111,110,116,97,105,110,101,114,44,46,110,97,118,98,97,114,45,101,120,112,97,110,100,62,46,99,111,110,116,97,105,110,101,114,45,102,108,117,105,100,123,45,109,115,45,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,59,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,32,46,110,97,118,98,97,114,45,99,111,108,108,97,112,115,101,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,33,105,109,112,111,114,116,97,110,116,59,100,105,115,112,108,97,121,58,102,108,101,120,33,105,109,112,111,114,116,97,110,116,59,45,109,115,45,102,108,101,120,45,112,114,101,102,101,114,114,101,100,45,115,105,122,101,58,97,117,116,111,59,102,108,101,120,45,98,97,115,105,115,58,97,117,116,111,125,46,110,97,118,98,97,114,45,101,120,112,97,110,100,32,46,110,97,118,98,97,114,45,116,111,103,103,108,101,114,123,100,105,115,112,108,97,121,58,110,111,110,101,125,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,98,114,97,110,100,123,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,57,41,125,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,98,114,97,110,100,58,102,111,99,117,115,44,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,98,114,97,110,100,58,104,111,118,101,114,123,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,57,41,125,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,123,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,53,41,125,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,58,102,111,99,117,115,44,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,58,104,111,118,101,114,123,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,55,41,125,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,46,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,51,41,125,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,110,97,118,32,46,97,99,116,105,118,101,62,46,110,97,118,45,108,105,110,107,44,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,46,97,99,116,105,118,101,44,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,46,115,104,111,119,44,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,110,97,118,32,46,115,104,111,119,62,46,110,97,118,45,108,105,110,107,123,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,57,41,125,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,116,111,103,103,108,101,114,123,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,53,41,59,98,111,114,100,101,114,45,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,49,41,125,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,116,111,103,103,108,101,114,45,105,99,111,110,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,118,105,101,119,66,111,120,61,39,48,32,48,32,51,48,32,51,48,39,32,120,109,108,110,115,61,39,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,115,118,103,39,37,51,101,37,51,99,112,97,116,104,32,115,116,114,111,107,101,61,39,114,103,98,97,40,48,44,32,48,44,32,48,44,32,48,46,53,41,39,32,115,116,114,111,107,101,45,119,105,100,116,104,61,39,50,39,32,115,116,114,111,107,101,45,108,105,110,101,99,97,112,61,39,114,111,117,110,100,39,32,115,116,114,111,107,101,45,109,105,116,101,114,108,105,109,105,116,61,39,49,48,39,32,100,61,39,77,52,32,55,104,50,50,77,52,32,49,53,104,50,50,77,52,32,50,51,104,50,50,39,47,37,51,101,37,51,99,47,115,118,103,37,51,101,34,41,125,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,116,101,120,116,123,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,53,41,125,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,116,101,120,116,32,97,123,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,57,41,125,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,116,101,120,116,32,97,58,102,111,99,117,115,44,46,110,97,118,98,97,114,45,108,105,103,104,116,32,46,110,97,118,98,97,114,45,116,101,120,116,32,97,58,104,111,118,101,114,123,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,57,41,125,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,98,114,97,110,100,123,99,111,108,111,114,58,35,102,102,102,125,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,98,114,97,110,100,58,102,111,99,117,115,44,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,98,114,97,110,100,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,125,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,123,99,111,108,111,114,58,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,46,53,41,125,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,58,102,111,99,117,115,44,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,58,104,111,118,101,114,123,99,111,108,111,114,58,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,46,55,53,41,125,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,46,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,46,50,53,41,125,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,110,97,118,32,46,97,99,116,105,118,101,62,46,110,97,118,45,108,105,110,107,44,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,46,97,99,116,105,118,101,44,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,110,97,118,32,46,110,97,118,45,108,105,110,107,46,115,104,111,119,44,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,110,97,118,32,46,115,104,111,119,62,46,110,97,118,45,108,105,110,107,123,99,111,108,111,114,58,35,102,102,102,125,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,116,111,103,103,108,101,114,123,99,111,108,111,114,58,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,46,53,41,59,98,111,114,100,101,114,45,99,111,108,111,114,58,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,46,49,41,125,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,116,111,103,103,108,101,114,45,105,99,111,110,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,118,105,101,119,66,111,120,61,39,48,32,48,32,51,48,32,51,48,39,32,120,109,108,110,115,61,39,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,115,118,103,39,37,51,101,37,51,99,112,97,116,104,32,115,116,114,111,107,101,61,39,114,103,98,97,40,50,53,53,44,32,50,53,53,44,32,50,53,53,44,32,48,46,53,41,39,32,115,116,114,111,107,101,45,119,105,100,116,104,61,39,50,39,32,115,116,114,111,107,101,45,108,105,110,101,99,97,112,61,39,114,111,117,110,100,39,32,115,116,114,111,107,101,45,109,105,116,101,114,108,105,109,105,116,61,39,49,48,39,32,100,61,39,77,52,32,55,104,50,50,77,52,32,49,53,104,50,50,77,52,32,50,51,104,50,50,39,47,37,51,101,37,51,99,47,115,118,103,37,51,101,34,41,125,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,116,101,120,116,123,99,111,108,111,114,58,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,46,53,41,125,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,116,101,120,116,32,97,123,99,111,108,111,114,58,35,102,102,102,125,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,116,101,120,116,32,97,58,102,111,99,117,115,44,46,110,97,118,98,97,114,45,100,97,114,107,32,46,110,97,118,98,97,114,45,116,101,120,116,32,97,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,125,46,99,97,114,100,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,109,105,110,45,119,105,100,116,104,58,48,59,119,111,114,100,45,119,114,97,112,58,98,114,101,97,107,45,119,111,114,100,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,108,105,112,58,98,111,114,100,101,114,45,98,111,120,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,114,103,98,97,40,48,44,48,44,48,44,46,49,50,53,41,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,99,97,114,100,62,104,114,123,109,97,114,103,105,110,45,114,105,103,104,116,58,48,59,109,97,114,103,105,110,45,108,101,102,116,58,48,125,46,99,97,114,100,62,46,108,105,115,116,45,103,114,111,117,112,58,102,105,114,115,116,45,99,104,105,108,100,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,102,105,114,115,116,45,99,104,105,108,100,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,99,97,114,100,62,46,108,105,115,116,45,103,114,111,117,112,58,108,97,115,116,45,99,104,105,108,100,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,108,97,115,116,45,99,104,105,108,100,123,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,99,97,114,100,45,98,111,100,121,123,45,109,115,45,102,108,101,120,58,49,32,49,32,97,117,116,111,59,102,108,101,120,58,49,32,49,32,97,117,116,111,59,112,97,100,100,105,110,103,58,49,46,50,53,114,101,109,125,46,99,97,114,100,45,116,105,116,108,101,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,55,53,114,101,109,125,46,99,97,114,100,45,115,117,98,116,105,116,108,101,123,109,97,114,103,105,110,45,116,111,112,58,45,46,51,55,53,114,101,109,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,46,99,97,114,100,45,116,101,120,116,58,108,97,115,116,45,99,104,105,108,100,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,46,99,97,114,100,45,108,105,110,107,58,104,111,118,101,114,123,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,125,46,99,97,114,100,45,108,105,110,107,43,46,99,97,114,100,45,108,105,110,107,123,109,97,114,103,105,110,45,108,101,102,116,58,49,46,50,53,114,101,109,125,46,99,97,114,100,45,104,101,97,100,101,114,123,112,97,100,100,105,110,103,58,46,55,53,114,101,109,32,49,46,50,53,114,101,109,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,48,51,41,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,49,112,120,32,115,111,108,105,100,32,114,103,98,97,40,48,44,48,44,48,44,46,49,50,53,41,125,46,99,97,114,100,45,104,101,97,100,101,114,58,102,105,114,115,116,45,99,104,105,108,100,123,98,111,114,100,101,114,45,114,97,100,105,117,115,58,99,97,108,99,40,46,50,53,114,101,109,32,45,32,49,112,120,41,32,99,97,108,99,40,46,50,53,114,101,109,32,45,32,49,112,120,41,32,48,32,48,125,46,99,97,114,100,45,104,101,97,100,101,114,43,46,108,105,115,116,45,103,114,111,117,112,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,102,105,114,115,116,45,99,104,105,108,100,123,98,111,114,100,101,114,45,116,111,112,58,48,125,46,99,97,114,100,45,102,111,111,116,101,114,123,112,97,100,100,105,110,103,58,46,55,53,114,101,109,32,49,46,50,53,114,101,109,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,48,51,41,59,98,111,114,100,101,114,45,116,111,112,58,49,112,120,32,115,111,108,105,100,32,114,103,98,97,40,48,44,48,44,48,44,46,49,50,53,41,125,46,99,97,114,100,45,102,111,111,116,101,114,58,108,97,115,116,45,99,104,105,108,100,123,98,111,114,100,101,114,45,114,97,100,105,117,115,58,48,32,48,32,99,97,108,99,40,46,50,53,114,101,109,32,45,32,49,112,120,41,32,99,97,108,99,40,46,50,53,114,101,109,32,45,32,49,112,120,41,125,46,99,97,114,100,45,104,101,97,100,101,114,45,116,97,98,115,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,46,54,50,53,114,101,109,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,46,55,53,114,101,109,59,109,97,114,103,105,110,45,108,101,102,116,58,45,46,54,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,48,125,46,99,97,114,100,45,104,101,97,100,101,114,45,112,105,108,108,115,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,46,54,50,53,114,101,109,59,109,97,114,103,105,110,45,108,101,102,116,58,45,46,54,50,53,114,101,109,125,46,99,97,114,100,45,105,109,103,45,111,118,101,114,108,97,121,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,48,59,114,105,103,104,116,58,48,59,98,111,116,116,111,109,58,48,59,108,101,102,116,58,48,59,112,97,100,100,105,110,103,58,49,46,50,53,114,101,109,125,46,99,97,114,100,45,105,109,103,123,119,105,100,116,104,58,49,48,48,37,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,99,97,108,99,40,46,50,53,114,101,109,32,45,32,49,112,120,41,125,46,99,97,114,100,45,105,109,103,45,116,111,112,123,119,105,100,116,104,58,49,48,48,37,59,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,99,97,108,99,40,46,50,53,114,101,109,32,45,32,49,112,120,41,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,99,97,108,99,40,46,50,53,114,101,109,32,45,32,49,112,120,41,125,46,99,97,114,100,45,105,109,103,45,98,111,116,116,111,109,123,119,105,100,116,104,58,49,48,48,37,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,99,97,108,99,40,46,50,53,114,101,109,32,45,32,49,112,120,41,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,99,97,108,99,40,46,50,53,114,101,109,32,45,32,49,112,120,41,125,46,99,97,114,100,45,100,101,99,107,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,125,46,99,97,114,100,45,100,101,99,107,32,46,99,97,114,100,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,53,112,120,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,99,97,114,100,45,100,101,99,107,123,45,109,115,45,102,108,101,120,45,102,108,111,119,58,114,111,119,32,119,114,97,112,59,102,108,101,120,45,102,108,111,119,58,114,111,119,32,119,114,97,112,59,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,53,112,120,59,109,97,114,103,105,110,45,108,101,102,116,58,45,49,53,112,120,125,46,99,97,114,100,45,100,101,99,107,32,46,99,97,114,100,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,58,49,32,48,32,48,37,59,102,108,101,120,58,49,32,48,32,48,37,59,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,109,97,114,103,105,110,45,114,105,103,104,116,58,49,53,112,120,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,59,109,97,114,103,105,110,45,108,101,102,116,58,49,53,112,120,125,125,46,99,97,114,100,45,103,114,111,117,112,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,125,46,99,97,114,100,45,103,114,111,117,112,62,46,99,97,114,100,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,53,112,120,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,99,97,114,100,45,103,114,111,117,112,123,45,109,115,45,102,108,101,120,45,102,108,111,119,58,114,111,119,32,119,114,97,112,59,102,108,101,120,45,102,108,111,119,58,114,111,119,32,119,114,97,112,125,46,99,97,114,100,45,103,114,111,117,112,62,46,99,97,114,100,123,45,109,115,45,102,108,101,120,58,49,32,48,32,48,37,59,102,108,101,120,58,49,32,48,32,48,37,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,46,99,97,114,100,45,103,114,111,117,112,62,46,99,97,114,100,43,46,99,97,114,100,123,109,97,114,103,105,110,45,108,101,102,116,58,48,59,98,111,114,100,101,114,45,108,101,102,116,58,48,125,46,99,97,114,100,45,103,114,111,117,112,62,46,99,97,114,100,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,123,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,125,46,99,97,114,100,45,103,114,111,117,112,62,46,99,97,114,100,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,32,46,99,97,114,100,45,104,101,97,100,101,114,44,46,99,97,114,100,45,103,114,111,117,112,62,46,99,97,114,100,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,32,46,99,97,114,100,45,105,109,103,45,116,111,112,123,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,125,46,99,97,114,100,45,103,114,111,117,112,62,46,99,97,114,100,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,32,46,99,97,114,100,45,102,111,111,116,101,114,44,46,99,97,114,100,45,103,114,111,117,112,62,46,99,97,114,100,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,32,46,99,97,114,100,45,105,109,103,45,98,111,116,116,111,109,123,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,125,46,99,97,114,100,45,103,114,111,117,112,62,46,99,97,114,100,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,48,125,46,99,97,114,100,45,103,114,111,117,112,62,46,99,97,114,100,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,32,46,99,97,114,100,45,104,101,97,100,101,114,44,46,99,97,114,100,45,103,114,111,117,112,62,46,99,97,114,100,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,32,46,99,97,114,100,45,105,109,103,45,116,111,112,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,48,125,46,99,97,114,100,45,103,114,111,117,112,62,46,99,97,114,100,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,32,46,99,97,114,100,45,102,111,111,116,101,114,44,46,99,97,114,100,45,103,114,111,117,112,62,46,99,97,114,100,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,32,46,99,97,114,100,45,105,109,103,45,98,111,116,116,111,109,123,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,48,125,125,46,99,97,114,100,45,99,111,108,117,109,110,115,32,46,99,97,114,100,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,55,53,114,101,109,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,99,97,114,100,45,99,111,108,117,109,110,115,123,45,119,101,98,107,105,116,45,99,111,108,117,109,110,45,99,111,117,110,116,58,51,59,45,109,111,122,45,99,111,108,117,109,110,45,99,111,117,110,116,58,51,59,99,111,108,117,109,110,45,99,111,117,110,116,58,51,59,45,119,101,98,107,105,116,45,99,111,108,117,109,110,45,103,97,112,58,49,46,50,53,114,101,109,59,45,109,111,122,45,99,111,108,117,109,110,45,103,97,112,58,49,46,50,53,114,101,109,59,99,111,108,117,109,110,45,103,97,112,58,49,46,50,53,114,101,109,59,111,114,112,104,97,110,115,58,49,59,119,105,100,111,119,115,58,49,125,46,99,97,114,100,45,99,111,108,117,109,110,115,32,46,99,97,114,100,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,125,125,46,97,99,99,111,114,100,105,111,110,62,46,99,97,114,100,123,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,125,46,97,99,99,111,114,100,105,111,110,62,46,99,97,114,100,58,110,111,116,40,58,102,105,114,115,116,45,111,102,45,116,121,112,101,41,32,46,99,97,114,100,45,104,101,97,100,101,114,58,102,105,114,115,116,45,99,104,105,108,100,123,98,111,114,100,101,114,45,114,97,100,105,117,115,58,48,125,46,97,99,99,111,114,100,105,111,110,62,46,99,97,114,100,58,110,111,116,40,58,102,105,114,115,116,45,111,102,45,116,121,112,101,41,58,110,111,116,40,58,108,97,115,116,45,111,102,45,116,121,112,101,41,123,98,111,114,100,101,114,45,98,111,116,116,111,109,58,48,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,48,125,46,97,99,99,111,114,100,105,111,110,62,46,99,97,114,100,58,102,105,114,115,116,45,111,102,45,116,121,112,101,123,98,111,114,100,101,114,45,98,111,116,116,111,109,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,48,125,46,97,99,99,111,114,100,105,111,110,62,46,99,97,114,100,58,108,97,115,116,45,111,102,45,116,121,112,101,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,48,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,125,46,97,99,99,111,114,100,105,111,110,62,46,99,97,114,100,32,46,99,97,114,100,45,104,101,97,100,101,114,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,49,112,120,125,46,98,114,101,97,100,99,114,117,109,98,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,112,97,100,100,105,110,103,58,46,55,53,114,101,109,32,49,114,101,109,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,114,101,109,59,108,105,115,116,45,115,116,121,108,101,58,110,111,110,101,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,57,101,99,101,102,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,98,114,101,97,100,99,114,117,109,98,45,105,116,101,109,43,46,98,114,101,97,100,99,114,117,109,98,45,105,116,101,109,123,112,97,100,100,105,110,103,45,108,101,102,116,58,46,53,114,101,109,125,46,98,114,101,97,100,99,114,117,109,98,45,105,116,101,109,43,46,98,114,101,97,100,99,114,117,109,98,45,105,116,101,109,58,58,98,101,102,111,114,101,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,53,114,101,109,59,99,111,108,111,114,58,35,54,99,55,53,55,100,59,99,111,110,116,101,110,116,58,34,47,34,125,46,98,114,101,97,100,99,114,117,109,98,45,105,116,101,109,43,46,98,114,101,97,100,99,114,117,109,98,45,105,116,101,109,58,104,111,118,101,114,58,58,98,101,102,111,114,101,123,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,117,110,100,101,114,108,105,110,101,125,46,98,114,101,97,100,99,114,117,109,98,45,105,116,101,109,43,46,98,114,101,97,100,99,114,117,109,98,45,105,116,101,109,58,104,111,118,101,114,58,58,98,101,102,111,114,101,123,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,125,46,98,114,101,97,100,99,114,117,109,98,45,105,116,101,109,46,97,99,116,105,118,101,123,99,111,108,111,114,58,35,54,99,55,53,55,100,125,46,112,97,103,105,110,97,116,105,111,110,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,59,108,105,115,116,45,115,116,121,108,101,58,110,111,110,101,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,112,97,103,101,45,108,105,110,107,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,112,97,100,100,105,110,103,58,46,53,114,101,109,32,46,55,53,114,101,109,59,109,97,114,103,105,110,45,108,101,102,116,58,45,49,112,120,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,50,53,59,99,111,108,111,114,58,35,48,48,55,98,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,125,46,112,97,103,101,45,108,105,110,107,58,104,111,118,101,114,123,122,45,105,110,100,101,120,58,50,59,99,111,108,111,114,58,35,48,48,53,54,98,51,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,57,101,99,101,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,101,101,50,101,54,125,46,112,97,103,101,45,108,105,110,107,58,102,111,99,117,115,123,122,45,105,110,100,101,120,58,50,59,111,117,116,108,105,110,101,58,48,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,50,53,41,125,46,112,97,103,101,45,105,116,101,109,58,102,105,114,115,116,45,99,104,105,108,100,32,46,112,97,103,101,45,108,105,110,107,123,109,97,114,103,105,110,45,108,101,102,116,58,48,59,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,112,97,103,101,45,105,116,101,109,58,108,97,115,116,45,99,104,105,108,100,32,46,112,97,103,101,45,108,105,110,107,123,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,112,97,103,101,45,105,116,101,109,46,97,99,116,105,118,101,32,46,112,97,103,101,45,108,105,110,107,123,122,45,105,110,100,101,120,58,49,59,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,48,48,55,98,102,102,125,46,112,97,103,101,45,105,116,101,109,46,100,105,115,97,98,108,101,100,32,46,112,97,103,101,45,108,105,110,107,123,99,111,108,111,114,58,35,54,99,55,53,55,100,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,110,111,110,101,59,99,117,114,115,111,114,58,97,117,116,111,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,101,101,50,101,54,125,46,112,97,103,105,110,97,116,105,111,110,45,108,103,32,46,112,97,103,101,45,108,105,110,107,123,112,97,100,100,105,110,103,58,46,55,53,114,101,109,32,49,46,53,114,101,109,59,102,111,110,116,45,115,105,122,101,58,49,46,50,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,125,46,112,97,103,105,110,97,116,105,111,110,45,108,103,32,46,112,97,103,101,45,105,116,101,109,58,102,105,114,115,116,45,99,104,105,108,100,32,46,112,97,103,101,45,108,105,110,107,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,46,51,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,46,51,114,101,109,125,46,112,97,103,105,110,97,116,105,111,110,45,108,103,32,46,112,97,103,101,45,105,116,101,109,58,108,97,115,116,45,99,104,105,108,100,32,46,112,97,103,101,45,108,105,110,107,123,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,51,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,51,114,101,109,125,46,112,97,103,105,110,97,116,105,111,110,45,115,109,32,46,112,97,103,101,45,108,105,110,107,123,112,97,100,100,105,110,103,58,46,50,53,114,101,109,32,46,53,114,101,109,59,102,111,110,116,45,115,105,122,101,58,46,56,55,53,114,101,109,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,125,46,112,97,103,105,110,97,116,105,111,110,45,115,109,32,46,112,97,103,101,45,105,116,101,109,58,102,105,114,115,116,45,99,104,105,108,100,32,46,112,97,103,101,45,108,105,110,107,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,114,101,109,125,46,112,97,103,105,110,97,116,105,111,110,45,115,109,32,46,112,97,103,101,45,105,116,101,109,58,108,97,115,116,45,99,104,105,108,100,32,46,112,97,103,101,45,108,105,110,107,123,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,114,101,109,125,46,98,97,100,103,101,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,112,97,100,100,105,110,103,58,46,50,53,101,109,32,46,52,101,109,59,102,111,110,116,45,115,105,122,101,58,55,53,37,59,102,111,110,116,45,119,101,105,103,104,116,58,55,48,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,59,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,119,114,97,112,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,98,97,115,101,108,105,110,101,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,116,114,97,110,115,105,116,105,111,110,58,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,114,100,101,114,45,99,111,108,111,114,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,44,98,111,120,45,115,104,97,100,111,119,32,46,49,53,115,32,101,97,115,101,45,105,110,45,111,117,116,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,98,97,100,103,101,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,97,46,98,97,100,103,101,58,102,111,99,117,115,44,97,46,98,97,100,103,101,58,104,111,118,101,114,123,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,125,46,98,97,100,103,101,58,101,109,112,116,121,123,100,105,115,112,108,97,121,58,110,111,110,101,125,46,98,116,110,32,46,98,97,100,103,101,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,116,111,112,58,45,49,112,120,125,46,98,97,100,103,101,45,112,105,108,108,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,54,101,109,59,112,97,100,100,105,110,103,45,108,101,102,116,58,46,54,101,109,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,49,48,114,101,109,125,46,98,97,100,103,101,45,112,114,105,109,97,114,121,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,125,97,46,98,97,100,103,101,45,112,114,105,109,97,114,121,58,102,111,99,117,115,44,97,46,98,97,100,103,101,45,112,114,105,109,97,114,121,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,54,50,99,99,125,97,46,98,97,100,103,101,45,112,114,105,109,97,114,121,46,102,111,99,117,115,44,97,46,98,97,100,103,101,45,112,114,105,109,97,114,121,58,102,111,99,117,115,123,111,117,116,108,105,110,101,58,48,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,48,44,49,50,51,44,50,53,53,44,46,53,41,125,46,98,97,100,103,101,45,115,101,99,111,110,100,97,114,121,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,54,99,55,53,55,100,125,97,46,98,97,100,103,101,45,115,101,99,111,110,100,97,114,121,58,102,111,99,117,115,44,97,46,98,97,100,103,101,45,115,101,99,111,110,100,97,114,121,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,53,52,53,98,54,50,125,97,46,98,97,100,103,101,45,115,101,99,111,110,100,97,114,121,46,102,111,99,117,115,44,97,46,98,97,100,103,101,45,115,101,99,111,110,100,97,114,121,58,102,111,99,117,115,123,111,117,116,108,105,110,101,58,48,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,49,48,56,44,49,49,55,44,49,50,53,44,46,53,41,125,46,98,97,100,103,101,45,115,117,99,99,101,115,115,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,50,56,97,55,52,53,125,97,46,98,97,100,103,101,45,115,117,99,99,101,115,115,58,102,111,99,117,115,44,97,46,98,97,100,103,101,45,115,117,99,99,101,115,115,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,101,55,101,51,52,125,97,46,98,97,100,103,101,45,115,117,99,99,101,115,115,46,102,111,99,117,115,44,97,46,98,97,100,103,101,45,115,117,99,99,101,115,115,58,102,111,99,117,115,123,111,117,116,108,105,110,101,58,48,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,52,48,44,49,54,55,44,54,57,44,46,53,41,125,46,98,97,100,103,101,45,105,110,102,111,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,55,97,50,98,56,125,97,46,98,97,100,103,101,45,105,110,102,111,58,102,111,99,117,115,44,97,46,98,97,100,103,101,45,105,110,102,111,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,49,55,97,56,98,125,97,46,98,97,100,103,101,45,105,110,102,111,46,102,111,99,117,115,44,97,46,98,97,100,103,101,45,105,110,102,111,58,102,111,99,117,115,123,111,117,116,108,105,110,101,58,48,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,51,44,49,54,50,44,49,56,52,44,46,53,41,125,46,98,97,100,103,101,45,119,97,114,110,105,110,103,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,99,49,48,55,125,97,46,98,97,100,103,101,45,119,97,114,110,105,110,103,58,102,111,99,117,115,44,97,46,98,97,100,103,101,45,119,97,114,110,105,110,103,58,104,111,118,101,114,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,51,57,101,48,48,125,97,46,98,97,100,103,101,45,119,97,114,110,105,110,103,46,102,111,99,117,115,44,97,46,98,97,100,103,101,45,119,97,114,110,105,110,103,58,102,111,99,117,115,123,111,117,116,108,105,110,101,58,48,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,53,53,44,49,57,51,44,55,44,46,53,41,125,46,98,97,100,103,101,45,100,97,110,103,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,99,51,53,52,53,125,97,46,98,97,100,103,101,45,100,97,110,103,101,114,58,102,111,99,117,115,44,97,46,98,97,100,103,101,45,100,97,110,103,101,114,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,100,50,49,51,48,125,97,46,98,97,100,103,101,45,100,97,110,103,101,114,46,102,111,99,117,115,44,97,46,98,97,100,103,101,45,100,97,110,103,101,114,58,102,111,99,117,115,123,111,117,116,108,105,110,101,58,48,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,50,48,44,53,51,44,54,57,44,46,53,41,125,46,98,97,100,103,101,45,108,105,103,104,116,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,56,102,57,102,97,125,97,46,98,97,100,103,101,45,108,105,103,104,116,58,102,111,99,117,115,44,97,46,98,97,100,103,101,45,108,105,103,104,116,58,104,111,118,101,114,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,97,101,48,101,53,125,97,46,98,97,100,103,101,45,108,105,103,104,116,46,102,111,99,117,115,44,97,46,98,97,100,103,101,45,108,105,103,104,116,58,102,111,99,117,115,123,111,117,116,108,105,110,101,58,48,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,50,52,56,44,50,52,57,44,50,53,48,44,46,53,41,125,46,98,97,100,103,101,45,100,97,114,107,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,51,52,51,97,52,48,125,97,46,98,97,100,103,101,45,100,97,114,107,58,102,111,99,117,115,44,97,46,98,97,100,103,101,45,100,97,114,107,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,100,50,49,50,52,125,97,46,98,97,100,103,101,45,100,97,114,107,46,102,111,99,117,115,44,97,46,98,97,100,103,101,45,100,97,114,107,58,102,111,99,117,115,123,111,117,116,108,105,110,101,58,48,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,53,50,44,53,56,44,54,52,44,46,53,41,125,46,106,117,109,98,111,116,114,111,110,123,112,97,100,100,105,110,103,58,50,114,101,109,32,49,114,101,109,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,50,114,101,109,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,57,101,99,101,102,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,51,114,101,109,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,106,117,109,98,111,116,114,111,110,123,112,97,100,100,105,110,103,58,52,114,101,109,32,50,114,101,109,125,125,46,106,117,109,98,111,116,114,111,110,45,102,108,117,105,100,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,48,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,48,125,46,97,108,101,114,116,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,112,97,100,100,105,110,103,58,46,55,53,114,101,109,32,49,46,50,53,114,101,109,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,114,101,109,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,97,108,101,114,116,45,104,101,97,100,105,110,103,123,99,111,108,111,114,58,105,110,104,101,114,105,116,125,46,97,108,101,114,116,45,108,105,110,107,123,102,111,110,116,45,119,101,105,103,104,116,58,55,48,48,125,46,97,108,101,114,116,45,100,105,115,109,105,115,115,105,98,108,101,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,52,114,101,109,125,46,97,108,101,114,116,45,100,105,115,109,105,115,115,105,98,108,101,32,46,99,108,111,115,101,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,48,59,114,105,103,104,116,58,48,59,112,97,100,100,105,110,103,58,46,55,53,114,101,109,32,49,46,50,53,114,101,109,59,99,111,108,111,114,58,105,110,104,101,114,105,116,125,46,97,108,101,114,116,45,112,114,105,109,97,114,121,123,99,111,108,111,114,58,35,48,48,52,48,56,53,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,99,99,101,53,102,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,98,56,100,97,102,102,125,46,97,108,101,114,116,45,112,114,105,109,97,114,121,32,104,114,123,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,57,102,99,100,102,102,125,46,97,108,101,114,116,45,112,114,105,109,97,114,121,32,46,97,108,101,114,116,45,108,105,110,107,123,99,111,108,111,114,58,35,48,48,50,55,53,50,125,46,97,108,101,114,116,45,115,101,99,111,110,100,97,114,121,123,99,111,108,111,114,58,35,51,56,51,100,52,49,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,50,101,51,101,53,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,54,100,56,100,98,125,46,97,108,101,114,116,45,115,101,99,111,110,100,97,114,121,32,104,114,123,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,99,56,99,98,99,102,125,46,97,108,101,114,116,45,115,101,99,111,110,100,97,114,121,32,46,97,108,101,114,116,45,108,105,110,107,123,99,111,108,111,114,58,35,50,48,50,51,50,54,125,46,97,108,101,114,116,45,115,117,99,99,101,115,115,123,99,111,108,111,114,58,35,49,53,53,55,50,52,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,52,101,100,100,97,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,99,51,101,54,99,98,125,46,97,108,101,114,116,45,115,117,99,99,101,115,115,32,104,114,123,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,98,49,100,102,98,98,125,46,97,108,101,114,116,45,115,117,99,99,101,115,115,32,46,97,108,101,114,116,45,108,105,110,107,123,99,111,108,111,114,58,35,48,98,50,101,49,51,125,46,97,108,101,114,116,45,105,110,102,111,123,99,111,108,111,114,58,35,48,99,53,52,54,48,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,49,101,99,102,49,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,98,101,101,53,101,98,125,46,97,108,101,114,116,45,105,110,102,111,32,104,114,123,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,97,98,100,100,101,53,125,46,97,108,101,114,116,45,105,110,102,111,32,46,97,108,101,114,116,45,108,105,110,107,123,99,111,108,111,114,58,35,48,54,50,99,51,51,125,46,97,108,101,114,116,45,119,97,114,110,105,110,103,123,99,111,108,111,114,58,35,56,53,54,52,48,52,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,51,99,100,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,102,101,101,98,97,125,46,97,108,101,114,116,45,119,97,114,110,105,110,103,32,104,114,123,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,102,102,101,56,97,49,125,46,97,108,101,114,116,45,119,97,114,110,105,110,103,32,46,97,108,101,114,116,45,108,105,110,107,123,99,111,108,111,114,58,35,53,51,51,102,48,51,125,46,97,108,101,114,116,45,100,97,110,103,101,114,123,99,111,108,111,114,58,35,55,50,49,99,50,52,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,56,100,55,100,97,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,53,99,54,99,98,125,46,97,108,101,114,116,45,100,97,110,103,101,114,32,104,114,123,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,102,49,98,48,98,55,125,46,97,108,101,114,116,45,100,97,110,103,101,114,32,46,97,108,101,114,116,45,108,105,110,107,123,99,111,108,111,114,58,35,52,57,49,50,49,55,125,46,97,108,101,114,116,45,108,105,103,104,116,123,99,111,108,111,114,58,35,56,49,56,49,56,50,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,101,102,101,102,101,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,100,102,100,102,101,125,46,97,108,101,114,116,45,108,105,103,104,116,32,104,114,123,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,101,99,101,99,102,54,125,46,97,108,101,114,116,45,108,105,103,104,116,32,46,97,108,101,114,116,45,108,105,110,107,123,99,111,108,111,114,58,35,54,56,54,56,54,56,125,46,97,108,101,114,116,45,100,97,114,107,123,99,111,108,111,114,58,35,49,98,49,101,50,49,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,54,100,56,100,57,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,99,54,99,56,99,97,125,46,97,108,101,114,116,45,100,97,114,107,32,104,114,123,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,98,57,98,98,98,101,125,46,97,108,101,114,116,45,100,97,114,107,32,46,97,108,101,114,116,45,108,105,110,107,123,99,111,108,111,114,58,35,48,52,48,53,48,53,125,64,45,119,101,98,107,105,116,45,107,101,121,102,114,97,109,101,115,32,112,114,111,103,114,101,115,115,45,98,97,114,45,115,116,114,105,112,101,115,123,102,114,111,109,123,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,49,114,101,109,32,48,125,116,111,123,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,48,32,48,125,125,64,107,101,121,102,114,97,109,101,115,32,112,114,111,103,114,101,115,115,45,98,97,114,45,115,116,114,105,112,101,115,123,102,114,111,109,123,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,49,114,101,109,32,48,125,116,111,123,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,48,32,48,125,125,46,112,114,111,103,114,101,115,115,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,104,101,105,103,104,116,58,49,114,101,109,59,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,59,102,111,110,116,45,115,105,122,101,58,46,55,53,114,101,109,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,57,101,99,101,102,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,112,114,111,103,114,101,115,115,45,98,97,114,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,45,109,115,45,102,108,101,120,45,112,97,99,107,58,99,101,110,116,101,114,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,59,99,111,108,111,114,58,35,102,102,102,59,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,119,114,97,112,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,59,116,114,97,110,115,105,116,105,111,110,58,119,105,100,116,104,32,46,54,115,32,101,97,115,101,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,112,114,111,103,114,101,115,115,45,98,97,114,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,46,112,114,111,103,114,101,115,115,45,98,97,114,45,115,116,114,105,112,101,100,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,108,105,110,101,97,114,45,103,114,97,100,105,101,110,116,40,52,53,100,101,103,44,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,46,49,53,41,32,50,53,37,44,116,114,97,110,115,112,97,114,101,110,116,32,50,53,37,44,116,114,97,110,115,112,97,114,101,110,116,32,53,48,37,44,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,46,49,53,41,32,53,48,37,44,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,46,49,53,41,32,55,53,37,44,116,114,97,110,115,112,97,114,101,110,116,32,55,53,37,44,116,114,97,110,115,112,97,114,101,110,116,41,59,98,97,99,107,103,114,111,117,110,100,45,115,105,122,101,58,49,114,101,109,32,49,114,101,109,125,46,112,114,111,103,114,101,115,115,45,98,97,114,45,97,110,105,109,97,116,101,100,123,45,119,101,98,107,105,116,45,97,110,105,109,97,116,105,111,110,58,112,114,111,103,114,101,115,115,45,98,97,114,45,115,116,114,105,112,101,115,32,49,115,32,108,105,110,101,97,114,32,105,110,102,105,110,105,116,101,59,97,110,105,109,97,116,105,111,110,58,112,114,111,103,114,101,115,115,45,98,97,114,45,115,116,114,105,112,101,115,32,49,115,32,108,105,110,101,97,114,32,105,110,102,105,110,105,116,101,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,112,114,111,103,114,101,115,115,45,98,97,114,45,97,110,105,109,97,116,101,100,123,45,119,101,98,107,105,116,45,97,110,105,109,97,116,105,111,110,58,110,111,110,101,59,97,110,105,109,97,116,105,111,110,58,110,111,110,101,125,125,46,109,101,100,105,97,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,115,116,97,114,116,59,97,108,105,103,110,45,105,116,101,109,115,58,102,108,101,120,45,115,116,97,114,116,125,46,109,101,100,105,97,45,98,111,100,121,123,45,109,115,45,102,108,101,120,58,49,59,102,108,101,120,58,49,125,46,108,105,115,116,45,103,114,111,117,112,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,123,119,105,100,116,104,58,49,48,48,37,59,99,111,108,111,114,58,35,52,57,53,48,53,55,59,116,101,120,116,45,97,108,105,103,110,58,105,110,104,101,114,105,116,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,102,111,99,117,115,44,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,104,111,118,101,114,123,122,45,105,110,100,101,120,58,49,59,99,111,108,111,114,58,35,52,57,53,48,53,55,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,56,102,57,102,97,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,97,99,116,105,118,101,123,99,111,108,111,114,58,35,50,49,50,53,50,57,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,57,101,99,101,102,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,112,97,100,100,105,110,103,58,46,55,53,114,101,109,32,49,46,50,53,114,101,109,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,49,112,120,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,114,103,98,97,40,48,44,48,44,48,44,46,49,50,53,41,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,102,105,114,115,116,45,99,104,105,108,100,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,108,97,115,116,45,99,104,105,108,100,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,46,100,105,115,97,98,108,101,100,44,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,100,105,115,97,98,108,101,100,123,99,111,108,111,114,58,35,54,99,55,53,55,100,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,110,111,110,101,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,46,97,99,116,105,118,101,123,122,45,105,110,100,101,120,58,50,59,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,48,48,55,98,102,102,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,112,120,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,102,105,114,115,116,45,99,104,105,108,100,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,108,97,115,116,45,99,104,105,108,100,123,109,97,114,103,105,110,45,114,105,103,104,116,58,48,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,48,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,115,109,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,115,109,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,112,120,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,115,109,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,102,105,114,115,116,45,99,104,105,108,100,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,115,109,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,108,97,115,116,45,99,104,105,108,100,123,109,97,114,103,105,110,45,114,105,103,104,116,58,48,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,48,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,55,54,56,112,120,41,123,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,109,100,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,109,100,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,112,120,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,109,100,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,102,105,114,115,116,45,99,104,105,108,100,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,109,100,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,108,97,115,116,45,99,104,105,108,100,123,109,97,114,103,105,110,45,114,105,103,104,116,58,48,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,48,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,57,57,50,112,120,41,123,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,108,103,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,108,103,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,112,120,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,108,103,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,102,105,114,115,116,45,99,104,105,108,100,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,108,103,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,108,97,115,116,45,99,104,105,108,100,123,109,97,114,103,105,110,45,114,105,103,104,116,58,48,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,48,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,49,50,48,48,112,120,41,123,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,120,108,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,120,108,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,112,120,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,120,108,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,102,105,114,115,116,45,99,104,105,108,100,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,104,111,114,105,122,111,110,116,97,108,45,120,108,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,108,97,115,116,45,99,104,105,108,100,123,109,97,114,103,105,110,45,114,105,103,104,116,58,48,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,48,125,125,46,108,105,115,116,45,103,114,111,117,112,45,102,108,117,115,104,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,123,98,111,114,100,101,114,45,114,105,103,104,116,58,48,59,98,111,114,100,101,114,45,108,101,102,116,58,48,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,102,108,117,115,104,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,108,97,115,116,45,99,104,105,108,100,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,49,112,120,125,46,108,105,115,116,45,103,114,111,117,112,45,102,108,117,115,104,58,102,105,114,115,116,45,99,104,105,108,100,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,102,105,114,115,116,45,99,104,105,108,100,123,98,111,114,100,101,114,45,116,111,112,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,102,108,117,115,104,58,108,97,115,116,45,99,104,105,108,100,32,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,108,97,115,116,45,99,104,105,108,100,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,48,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,112,114,105,109,97,114,121,123,99,111,108,111,114,58,35,48,48,52,48,56,53,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,56,100,97,102,102,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,112,114,105,109,97,114,121,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,102,111,99,117,115,44,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,112,114,105,109,97,114,121,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,104,111,118,101,114,123,99,111,108,111,114,58,35,48,48,52,48,56,53,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,57,102,99,100,102,102,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,112,114,105,109,97,114,121,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,46,97,99,116,105,118,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,52,48,56,53,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,48,48,52,48,56,53,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,115,101,99,111,110,100,97,114,121,123,99,111,108,111,114,58,35,51,56,51,100,52,49,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,54,100,56,100,98,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,115,101,99,111,110,100,97,114,121,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,102,111,99,117,115,44,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,115,101,99,111,110,100,97,114,121,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,104,111,118,101,114,123,99,111,108,111,114,58,35,51,56,51,100,52,49,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,99,56,99,98,99,102,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,115,101,99,111,110,100,97,114,121,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,46,97,99,116,105,118,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,51,56,51,100,52,49,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,51,56,51,100,52,49,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,115,117,99,99,101,115,115,123,99,111,108,111,114,58,35,49,53,53,55,50,52,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,99,51,101,54,99,98,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,115,117,99,99,101,115,115,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,102,111,99,117,115,44,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,115,117,99,99,101,115,115,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,104,111,118,101,114,123,99,111,108,111,114,58,35,49,53,53,55,50,52,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,49,100,102,98,98,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,115,117,99,99,101,115,115,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,46,97,99,116,105,118,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,53,53,55,50,52,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,49,53,53,55,50,52,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,105,110,102,111,123,99,111,108,111,114,58,35,48,99,53,52,54,48,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,101,101,53,101,98,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,105,110,102,111,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,102,111,99,117,115,44,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,105,110,102,111,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,104,111,118,101,114,123,99,111,108,111,114,58,35,48,99,53,52,54,48,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,97,98,100,100,101,53,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,105,110,102,111,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,46,97,99,116,105,118,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,99,53,52,54,48,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,48,99,53,52,54,48,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,119,97,114,110,105,110,103,123,99,111,108,111,114,58,35,56,53,54,52,48,52,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,101,101,98,97,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,119,97,114,110,105,110,103,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,102,111,99,117,115,44,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,119,97,114,110,105,110,103,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,104,111,118,101,114,123,99,111,108,111,114,58,35,56,53,54,52,48,52,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,101,56,97,49,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,119,97,114,110,105,110,103,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,46,97,99,116,105,118,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,56,53,54,52,48,52,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,56,53,54,52,48,52,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,100,97,110,103,101,114,123,99,111,108,111,114,58,35,55,50,49,99,50,52,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,53,99,54,99,98,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,100,97,110,103,101,114,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,102,111,99,117,115,44,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,100,97,110,103,101,114,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,104,111,118,101,114,123,99,111,108,111,114,58,35,55,50,49,99,50,52,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,49,98,48,98,55,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,100,97,110,103,101,114,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,46,97,99,116,105,118,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,55,50,49,99,50,52,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,55,50,49,99,50,52,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,108,105,103,104,116,123,99,111,108,111,114,58,35,56,49,56,49,56,50,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,100,102,100,102,101,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,108,105,103,104,116,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,102,111,99,117,115,44,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,108,105,103,104,116,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,104,111,118,101,114,123,99,111,108,111,114,58,35,56,49,56,49,56,50,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,101,99,101,99,102,54,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,108,105,103,104,116,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,46,97,99,116,105,118,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,56,49,56,49,56,50,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,56,49,56,49,56,50,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,100,97,114,107,123,99,111,108,111,114,58,35,49,98,49,101,50,49,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,99,54,99,56,99,97,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,100,97,114,107,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,102,111,99,117,115,44,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,100,97,114,107,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,58,104,111,118,101,114,123,99,111,108,111,114,58,35,49,98,49,101,50,49,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,57,98,98,98,101,125,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,100,97,114,107,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,45,97,99,116,105,111,110,46,97,99,116,105,118,101,123,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,98,49,101,50,49,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,49,98,49,101,50,49,125,46,99,108,111,115,101,123,102,108,111,97,116,58,114,105,103,104,116,59,102,111,110,116,45,115,105,122,101,58,49,46,53,114,101,109,59,102,111,110,116,45,119,101,105,103,104,116,58,55,48,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,59,99,111,108,111,114,58,35,48,48,48,59,116,101,120,116,45,115,104,97,100,111,119,58,48,32,49,112,120,32,48,32,35,102,102,102,59,111,112,97,99,105,116,121,58,46,53,125,46,99,108,111,115,101,58,104,111,118,101,114,123,99,111,108,111,114,58,35,48,48,48,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,125,46,99,108,111,115,101,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,102,111,99,117,115,44,46,99,108,111,115,101,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,104,111,118,101,114,123,111,112,97,99,105,116,121,58,46,55,53,125,98,117,116,116,111,110,46,99,108,111,115,101,123,112,97,100,100,105,110,103,58,48,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,58,48,59,45,119,101,98,107,105,116,45,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,59,45,109,111,122,45,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,59,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,125,97,46,99,108,111,115,101,46,100,105,115,97,98,108,101,100,123,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,110,111,110,101,125,46,116,111,97,115,116,123,109,97,120,45,119,105,100,116,104,58,51,53,48,112,120,59,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,59,102,111,110,116,45,115,105,122,101,58,46,56,55,53,114,101,109,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,46,56,53,41,59,98,97,99,107,103,114,111,117,110,100,45,99,108,105,112,58,112,97,100,100,105,110,103,45,98,111,120,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,114,103,98,97,40,48,44,48,44,48,44,46,49,41,59,98,111,120,45,115,104,97,100,111,119,58,48,32,46,50,53,114,101,109,32,46,55,53,114,101,109,32,114,103,98,97,40,48,44,48,44,48,44,46,49,41,59,45,119,101,98,107,105,116,45,98,97,99,107,100,114,111,112,45,102,105,108,116,101,114,58,98,108,117,114,40,49,48,112,120,41,59,98,97,99,107,100,114,111,112,45,102,105,108,116,101,114,58,98,108,117,114,40,49,48,112,120,41,59,111,112,97,99,105,116,121,58,48,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,116,111,97,115,116,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,55,53,114,101,109,125,46,116,111,97,115,116,46,115,104,111,119,105,110,103,123,111,112,97,99,105,116,121,58,49,125,46,116,111,97,115,116,46,115,104,111,119,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,111,112,97,99,105,116,121,58,49,125,46,116,111,97,115,116,46,104,105,100,101,123,100,105,115,112,108,97,121,58,110,111,110,101,125,46,116,111,97,115,116,45,104,101,97,100,101,114,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,99,101,110,116,101,114,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,59,112,97,100,100,105,110,103,58,46,50,53,114,101,109,32,46,55,53,114,101,109,59,99,111,108,111,114,58,35,54,99,55,53,55,100,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,46,56,53,41,59,98,97,99,107,103,114,111,117,110,100,45,99,108,105,112,58,112,97,100,100,105,110,103,45,98,111,120,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,49,112,120,32,115,111,108,105,100,32,114,103,98,97,40,48,44,48,44,48,44,46,48,53,41,125,46,116,111,97,115,116,45,98,111,100,121,123,112,97,100,100,105,110,103,58,46,55,53,114,101,109,125,46,109,111,100,97,108,45,111,112,101,110,123,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,125,46,109,111,100,97,108,45,111,112,101,110,32,46,109,111,100,97,108,123,111,118,101,114,102,108,111,119,45,120,58,104,105,100,100,101,110,59,111,118,101,114,102,108,111,119,45,121,58,97,117,116,111,125,46,109,111,100,97,108,123,112,111,115,105,116,105,111,110,58,102,105,120,101,100,59,116,111,112,58,48,59,108,101,102,116,58,48,59,122,45,105,110,100,101,120,58,49,48,53,48,59,100,105,115,112,108,97,121,58,110,111,110,101,59,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,49,48,48,37,59,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,59,111,117,116,108,105,110,101,58,48,125,46,109,111,100,97,108,45,100,105,97,108,111,103,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,119,105,100,116,104,58,97,117,116,111,59,109,97,114,103,105,110,58,46,53,114,101,109,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,110,111,110,101,125,46,109,111,100,97,108,46,102,97,100,101,32,46,109,111,100,97,108,45,100,105,97,108,111,103,123,116,114,97,110,115,105,116,105,111,110,58,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,32,46,51,115,32,101,97,115,101,45,111,117,116,59,116,114,97,110,115,105,116,105,111,110,58,116,114,97,110,115,102,111,114,109,32,46,51,115,32,101,97,115,101,45,111,117,116,59,116,114,97,110,115,105,116,105,111,110,58,116,114,97,110,115,102,111,114,109,32,46,51,115,32,101,97,115,101,45,111,117,116,44,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,32,46,51,115,32,101,97,115,101,45,111,117,116,59,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,40,48,44,45,53,48,112,120,41,59,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,40,48,44,45,53,48,112,120,41,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,109,111,100,97,108,46,102,97,100,101,32,46,109,111,100,97,108,45,100,105,97,108,111,103,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,46,109,111,100,97,108,46,115,104,111,119,32,46,109,111,100,97,108,45,100,105,97,108,111,103,123,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,58,110,111,110,101,59,116,114,97,110,115,102,111,114,109,58,110,111,110,101,125,46,109,111,100,97,108,45,100,105,97,108,111,103,45,115,99,114,111,108,108,97,98,108,101,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,109,97,120,45,104,101,105,103,104,116,58,99,97,108,99,40,49,48,48,37,32,45,32,49,114,101,109,41,125,46,109,111,100,97,108,45,100,105,97,108,111,103,45,115,99,114,111,108,108,97,98,108,101,32,46,109,111,100,97,108,45,99,111,110,116,101,110,116,123,109,97,120,45,104,101,105,103,104,116,58,99,97,108,99,40,49,48,48,118,104,32,45,32,49,114,101,109,41,59,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,125,46,109,111,100,97,108,45,100,105,97,108,111,103,45,115,99,114,111,108,108,97,98,108,101,32,46,109,111,100,97,108,45,102,111,111,116,101,114,44,46,109,111,100,97,108,45,100,105,97,108,111,103,45,115,99,114,111,108,108,97,98,108,101,32,46,109,111,100,97,108,45,104,101,97,100,101,114,123,45,109,115,45,102,108,101,120,45,110,101,103,97,116,105,118,101,58,48,59,102,108,101,120,45,115,104,114,105,110,107,58,48,125,46,109,111,100,97,108,45,100,105,97,108,111,103,45,115,99,114,111,108,108,97,98,108,101,32,46,109,111,100,97,108,45,98,111,100,121,123,111,118,101,114,102,108,111,119,45,121,58,97,117,116,111,125,46,109,111,100,97,108,45,100,105,97,108,111,103,45,99,101,110,116,101,114,101,100,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,99,101,110,116,101,114,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,59,109,105,110,45,104,101,105,103,104,116,58,99,97,108,99,40,49,48,48,37,32,45,32,49,114,101,109,41,125,46,109,111,100,97,108,45,100,105,97,108,111,103,45,99,101,110,116,101,114,101,100,58,58,98,101,102,111,114,101,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,104,101,105,103,104,116,58,99,97,108,99,40,49,48,48,118,104,32,45,32,49,114,101,109,41,59,99,111,110,116,101,110,116,58,34,34,125,46,109,111,100,97,108,45,100,105,97,108,111,103,45,99,101,110,116,101,114,101,100,46,109,111,100,97,108,45,100,105,97,108,111,103,45,115,99,114,111,108,108,97,98,108,101,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,45,109,115,45,102,108,101,120,45,112,97,99,107,58,99,101,110,116,101,114,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,59,104,101,105,103,104,116,58,49,48,48,37,125,46,109,111,100,97,108,45,100,105,97,108,111,103,45,99,101,110,116,101,114,101,100,46,109,111,100,97,108,45,100,105,97,108,111,103,45,115,99,114,111,108,108,97,98,108,101,32,46,109,111,100,97,108,45,99,111,110,116,101,110,116,123,109,97,120,45,104,101,105,103,104,116,58,110,111,110,101,125,46,109,111,100,97,108,45,100,105,97,108,111,103,45,99,101,110,116,101,114,101,100,46,109,111,100,97,108,45,100,105,97,108,111,103,45,115,99,114,111,108,108,97,98,108,101,58,58,98,101,102,111,114,101,123,99,111,110,116,101,110,116,58,110,111,110,101,125,46,109,111,100,97,108,45,99,111,110,116,101,110,116,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,59,119,105,100,116,104,58,49,48,48,37,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,97,117,116,111,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,108,105,112,58,112,97,100,100,105,110,103,45,98,111,120,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,114,103,98,97,40,48,44,48,44,48,44,46,50,41,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,51,114,101,109,59,111,117,116,108,105,110,101,58,48,125,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,123,112,111,115,105,116,105,111,110,58,102,105,120,101,100,59,116,111,112,58,48,59,108,101,102,116,58,48,59,122,45,105,110,100,101,120,58,49,48,52,48,59,119,105,100,116,104,58,49,48,48,118,119,59,104,101,105,103,104,116,58,49,48,48,118,104,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,48,125,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,46,102,97,100,101,123,111,112,97,99,105,116,121,58,48,125,46,109,111,100,97,108,45,98,97,99,107,100,114,111,112,46,115,104,111,119,123,111,112,97,99,105,116,121,58,46,53,125,46,109,111,100,97,108,45,104,101,97,100,101,114,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,115,116,97,114,116,59,97,108,105,103,110,45,105,116,101,109,115,58,102,108,101,120,45,115,116,97,114,116,59,45,109,115,45,102,108,101,120,45,112,97,99,107,58,106,117,115,116,105,102,121,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,98,101,116,119,101,101,110,59,112,97,100,100,105,110,103,58,49,114,101,109,32,49,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,49,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,59,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,46,51,114,101,109,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,51,114,101,109,125,46,109,111,100,97,108,45,104,101,97,100,101,114,32,46,99,108,111,115,101,123,112,97,100,100,105,110,103,58,49,114,101,109,32,49,114,101,109,59,109,97,114,103,105,110,58,45,49,114,101,109,32,45,49,114,101,109,32,45,49,114,101,109,32,97,117,116,111,125,46,109,111,100,97,108,45,116,105,116,108,101,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,125,46,109,111,100,97,108,45,98,111,100,121,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,45,109,115,45,102,108,101,120,58,49,32,49,32,97,117,116,111,59,102,108,101,120,58,49,32,49,32,97,117,116,111,59,112,97,100,100,105,110,103,58,49,114,101,109,125,46,109,111,100,97,108,45,102,111,111,116,101,114,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,99,101,110,116,101,114,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,59,45,109,115,45,102,108,101,120,45,112,97,99,107,58,101,110,100,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,101,110,100,59,112,97,100,100,105,110,103,58,49,114,101,109,59,98,111,114,100,101,114,45,116,111,112,58,49,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,51,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,46,51,114,101,109,125,46,109,111,100,97,108,45,102,111,111,116,101,114,62,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,123,109,97,114,103,105,110,45,108,101,102,116,58,46,50,53,114,101,109,125,46,109,111,100,97,108,45,102,111,111,116,101,114,62,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,123,109,97,114,103,105,110,45,114,105,103,104,116,58,46,50,53,114,101,109,125,46,109,111,100,97,108,45,115,99,114,111,108,108,98,97,114,45,109,101,97,115,117,114,101,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,45,57,57,57,57,112,120,59,119,105,100,116,104,58,53,48,112,120,59,104,101,105,103,104,116,58,53,48,112,120,59,111,118,101,114,102,108,111,119,58,115,99,114,111,108,108,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,109,111,100,97,108,45,100,105,97,108,111,103,123,109,97,120,45,119,105,100,116,104,58,53,48,48,112,120,59,109,97,114,103,105,110,58,49,46,55,53,114,101,109,32,97,117,116,111,125,46,109,111,100,97,108,45,100,105,97,108,111,103,45,115,99,114,111,108,108,97,98,108,101,123,109,97,120,45,104,101,105,103,104,116,58,99,97,108,99,40,49,48,48,37,32,45,32,51,46,53,114,101,109,41,125,46,109,111,100,97,108,45,100,105,97,108,111,103,45,115,99,114,111,108,108,97,98,108,101,32,46,109,111,100,97,108,45,99,111,110,116,101,110,116,123,109,97,120,45,104,101,105,103,104,116,58,99,97,108,99,40,49,48,48,118,104,32,45,32,51,46,53,114,101,109,41,125,46,109,111,100,97,108,45,100,105,97,108,111,103,45,99,101,110,116,101,114,101,100,123,109,105,110,45,104,101,105,103,104,116,58,99,97,108,99,40,49,48,48,37,32,45,32,51,46,53,114,101,109,41,125,46,109,111,100,97,108,45,100,105,97,108,111,103,45,99,101,110,116,101,114,101,100,58,58,98,101,102,111,114,101,123,104,101,105,103,104,116,58,99,97,108,99,40,49,48,48,118,104,32,45,32,51,46,53,114,101,109,41,125,46,109,111,100,97,108,45,115,109,123,109,97,120,45,119,105,100,116,104,58,51,48,48,112,120,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,57,57,50,112,120,41,123,46,109,111,100,97,108,45,108,103,44,46,109,111,100,97,108,45,120,108,123,109,97,120,45,119,105,100,116,104,58,56,48,48,112,120,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,49,50,48,48,112,120,41,123,46,109,111,100,97,108,45,120,108,123,109,97,120,45,119,105,100,116,104,58,49,49,52,48,112,120,125,125,46,116,111,111,108,116,105,112,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,122,45,105,110,100,101,120,58,49,48,55,48,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,109,97,114,103,105,110,58,48,59,102,111,110,116,45,102,97,109,105,108,121,58,45,97,112,112,108,101,45,115,121,115,116,101,109,44,66,108,105,110,107,77,97,99,83,121,115,116,101,109,70,111,110,116,44,34,83,101,103,111,101,32,85,73,34,44,82,111,98,111,116,111,44,34,72,101,108,118,101,116,105,99,97,32,78,101,117,101,34,44,65,114,105,97,108,44,34,78,111,116,111,32,83,97,110,115,34,44,115,97,110,115,45,115,101,114,105,102,44,34,65,112,112,108,101,32,67,111,108,111,114,32,69,109,111,106,105,34,44,34,83,101,103,111,101,32,85,73,32,69,109,111,106,105,34,44,34,83,101,103,111,101,32,85,73,32,83,121,109,98,111,108,34,44,34,78,111,116,111,32,67,111,108,111,114,32,69,109,111,106,105,34,59,102,111,110,116,45,115,116,121,108,101,58,110,111,114,109,97,108,59,102,111,110,116,45,119,101,105,103,104,116,58,52,48,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,116,101,120,116,45,97,108,105,103,110,58,108,101,102,116,59,116,101,120,116,45,97,108,105,103,110,58,115,116,97,114,116,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,59,116,101,120,116,45,115,104,97,100,111,119,58,110,111,110,101,59,116,101,120,116,45,116,114,97,110,115,102,111,114,109,58,110,111,110,101,59,108,101,116,116,101,114,45,115,112,97,99,105,110,103,58,110,111,114,109,97,108,59,119,111,114,100,45,98,114,101,97,107,58,110,111,114,109,97,108,59,119,111,114,100,45,115,112,97,99,105,110,103,58,110,111,114,109,97,108,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,114,109,97,108,59,108,105,110,101,45,98,114,101,97,107,58,97,117,116,111,59,102,111,110,116,45,115,105,122,101,58,46,56,55,53,114,101,109,59,119,111,114,100,45,119,114,97,112,58,98,114,101,97,107,45,119,111,114,100,59,111,112,97,99,105,116,121,58,48,125,46,116,111,111,108,116,105,112,46,115,104,111,119,123,111,112,97,99,105,116,121,58,46,57,125,46,116,111,111,108,116,105,112,32,46,97,114,114,111,119,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,46,56,114,101,109,59,104,101,105,103,104,116,58,46,52,114,101,109,125,46,116,111,111,108,116,105,112,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,99,111,110,116,101,110,116,58,34,34,59,98,111,114,100,101,114,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,115,116,121,108,101,58,115,111,108,105,100,125,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,116,111,112,93,44,46,98,115,45,116,111,111,108,116,105,112,45,116,111,112,123,112,97,100,100,105,110,103,58,46,52,114,101,109,32,48,125,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,116,111,112,93,32,46,97,114,114,111,119,44,46,98,115,45,116,111,111,108,116,105,112,45,116,111,112,32,46,97,114,114,111,119,123,98,111,116,116,111,109,58,48,125,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,116,111,112,93,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,44,46,98,115,45,116,111,111,108,116,105,112,45,116,111,112,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,116,111,112,58,48,59,98,111,114,100,101,114,45,119,105,100,116,104,58,46,52,114,101,109,32,46,52,114,101,109,32,48,59,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,48,48,48,125,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,44,46,98,115,45,116,111,111,108,116,105,112,45,114,105,103,104,116,123,112,97,100,100,105,110,103,58,48,32,46,52,114,101,109,125,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,32,46,97,114,114,111,119,44,46,98,115,45,116,111,111,108,116,105,112,45,114,105,103,104,116,32,46,97,114,114,111,119,123,108,101,102,116,58,48,59,119,105,100,116,104,58,46,52,114,101,109,59,104,101,105,103,104,116,58,46,56,114,101,109,125,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,44,46,98,115,45,116,111,111,108,116,105,112,45,114,105,103,104,116,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,114,105,103,104,116,58,48,59,98,111,114,100,101,114,45,119,105,100,116,104,58,46,52,114,101,109,32,46,52,114,101,109,32,46,52,114,101,109,32,48,59,98,111,114,100,101,114,45,114,105,103,104,116,45,99,111,108,111,114,58,35,48,48,48,125,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,44,46,98,115,45,116,111,111,108,116,105,112,45,98,111,116,116,111,109,123,112,97,100,100,105,110,103,58,46,52,114,101,109,32,48,125,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,32,46,97,114,114,111,119,44,46,98,115,45,116,111,111,108,116,105,112,45,98,111,116,116,111,109,32,46,97,114,114,111,119,123,116,111,112,58,48,125,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,44,46,98,115,45,116,111,111,108,116,105,112,45,98,111,116,116,111,109,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,98,111,116,116,111,109,58,48,59,98,111,114,100,101,114,45,119,105,100,116,104,58,48,32,46,52,114,101,109,32,46,52,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,99,111,108,111,114,58,35,48,48,48,125,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,44,46,98,115,45,116,111,111,108,116,105,112,45,108,101,102,116,123,112,97,100,100,105,110,103,58,48,32,46,52,114,101,109,125,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,32,46,97,114,114,111,119,44,46,98,115,45,116,111,111,108,116,105,112,45,108,101,102,116,32,46,97,114,114,111,119,123,114,105,103,104,116,58,48,59,119,105,100,116,104,58,46,52,114,101,109,59,104,101,105,103,104,116,58,46,56,114,101,109,125,46,98,115,45,116,111,111,108,116,105,112,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,44,46,98,115,45,116,111,111,108,116,105,112,45,108,101,102,116,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,108,101,102,116,58,48,59,98,111,114,100,101,114,45,119,105,100,116,104,58,46,52,114,101,109,32,48,32,46,52,114,101,109,32,46,52,114,101,109,59,98,111,114,100,101,114,45,108,101,102,116,45,99,111,108,111,114,58,35,48,48,48,125,46,116,111,111,108,116,105,112,45,105,110,110,101,114,123,109,97,120,45,119,105,100,116,104,58,50,48,48,112,120,59,112,97,100,100,105,110,103,58,46,50,53,114,101,109,32,46,53,114,101,109,59,99,111,108,111,114,58,35,102,102,102,59,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,48,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,125,46,112,111,112,111,118,101,114,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,48,59,108,101,102,116,58,48,59,122,45,105,110,100,101,120,58,49,48,54,48,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,109,97,120,45,119,105,100,116,104,58,50,55,54,112,120,59,102,111,110,116,45,102,97,109,105,108,121,58,45,97,112,112,108,101,45,115,121,115,116,101,109,44,66,108,105,110,107,77,97,99,83,121,115,116,101,109,70,111,110,116,44,34,83,101,103,111,101,32,85,73,34,44,82,111,98,111,116,111,44,34,72,101,108,118,101,116,105,99,97,32,78,101,117,101,34,44,65,114,105,97,108,44,34,78,111,116,111,32,83,97,110,115,34,44,115,97,110,115,45,115,101,114,105,102,44,34,65,112,112,108,101,32,67,111,108,111,114,32,69,109,111,106,105,34,44,34,83,101,103,111,101,32,85,73,32,69,109,111,106,105,34,44,34,83,101,103,111,101,32,85,73,32,83,121,109,98,111,108,34,44,34,78,111,116,111,32,67,111,108,111,114,32,69,109,111,106,105,34,59,102,111,110,116,45,115,116,121,108,101,58,110,111,114,109,97,108,59,102,111,110,116,45,119,101,105,103,104,116,58,52,48,48,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,53,59,116,101,120,116,45,97,108,105,103,110,58,108,101,102,116,59,116,101,120,116,45,97,108,105,103,110,58,115,116,97,114,116,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,59,116,101,120,116,45,115,104,97,100,111,119,58,110,111,110,101,59,116,101,120,116,45,116,114,97,110,115,102,111,114,109,58,110,111,110,101,59,108,101,116,116,101,114,45,115,112,97,99,105,110,103,58,110,111,114,109,97,108,59,119,111,114,100,45,98,114,101,97,107,58,110,111,114,109,97,108,59,119,111,114,100,45,115,112,97,99,105,110,103,58,110,111,114,109,97,108,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,114,109,97,108,59,108,105,110,101,45,98,114,101,97,107,58,97,117,116,111,59,102,111,110,116,45,115,105,122,101,58,46,56,55,53,114,101,109,59,119,111,114,100,45,119,114,97,112,58,98,114,101,97,107,45,119,111,114,100,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,108,105,112,58,112,97,100,100,105,110,103,45,98,111,120,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,114,103,98,97,40,48,44,48,44,48,44,46,50,41,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,51,114,101,109,125,46,112,111,112,111,118,101,114,32,46,97,114,114,111,119,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,114,101,109,59,104,101,105,103,104,116,58,46,53,114,101,109,59,109,97,114,103,105,110,58,48,32,46,51,114,101,109,125,46,112,111,112,111,118,101,114,32,46,97,114,114,111,119,58,58,97,102,116,101,114,44,46,112,111,112,111,118,101,114,32,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,99,111,110,116,101,110,116,58,34,34,59,98,111,114,100,101,114,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,115,116,121,108,101,58,115,111,108,105,100,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,116,111,112,93,44,46,98,115,45,112,111,112,111,118,101,114,45,116,111,112,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,53,114,101,109,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,116,111,112,93,62,46,97,114,114,111,119,44,46,98,115,45,112,111,112,111,118,101,114,45,116,111,112,62,46,97,114,114,111,119,123,98,111,116,116,111,109,58,99,97,108,99,40,40,46,53,114,101,109,32,43,32,49,112,120,41,32,42,32,45,49,41,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,116,111,112,93,62,46,97,114,114,111,119,58,58,98,101,102,111,114,101,44,46,98,115,45,112,111,112,111,118,101,114,45,116,111,112,62,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,98,111,116,116,111,109,58,48,59,98,111,114,100,101,114,45,119,105,100,116,104,58,46,53,114,101,109,32,46,53,114,101,109,32,48,59,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,50,53,41,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,116,111,112,93,62,46,97,114,114,111,119,58,58,97,102,116,101,114,44,46,98,115,45,112,111,112,111,118,101,114,45,116,111,112,62,46,97,114,114,111,119,58,58,97,102,116,101,114,123,98,111,116,116,111,109,58,49,112,120,59,98,111,114,100,101,114,45,119,105,100,116,104,58,46,53,114,101,109,32,46,53,114,101,109,32,48,59,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,102,102,102,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,44,46,98,115,45,112,111,112,111,118,101,114,45,114,105,103,104,116,123,109,97,114,103,105,110,45,108,101,102,116,58,46,53,114,101,109,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,62,46,97,114,114,111,119,44,46,98,115,45,112,111,112,111,118,101,114,45,114,105,103,104,116,62,46,97,114,114,111,119,123,108,101,102,116,58,99,97,108,99,40,40,46,53,114,101,109,32,43,32,49,112,120,41,32,42,32,45,49,41,59,119,105,100,116,104,58,46,53,114,101,109,59,104,101,105,103,104,116,58,49,114,101,109,59,109,97,114,103,105,110,58,46,51,114,101,109,32,48,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,62,46,97,114,114,111,119,58,58,98,101,102,111,114,101,44,46,98,115,45,112,111,112,111,118,101,114,45,114,105,103,104,116,62,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,108,101,102,116,58,48,59,98,111,114,100,101,114,45,119,105,100,116,104,58,46,53,114,101,109,32,46,53,114,101,109,32,46,53,114,101,109,32,48,59,98,111,114,100,101,114,45,114,105,103,104,116,45,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,50,53,41,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,114,105,103,104,116,93,62,46,97,114,114,111,119,58,58,97,102,116,101,114,44,46,98,115,45,112,111,112,111,118,101,114,45,114,105,103,104,116,62,46,97,114,114,111,119,58,58,97,102,116,101,114,123,108,101,102,116,58,49,112,120,59,98,111,114,100,101,114,45,119,105,100,116,104,58,46,53,114,101,109,32,46,53,114,101,109,32,46,53,114,101,109,32,48,59,98,111,114,100,101,114,45,114,105,103,104,116,45,99,111,108,111,114,58,35,102,102,102,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,44,46,98,115,45,112,111,112,111,118,101,114,45,98,111,116,116,111,109,123,109,97,114,103,105,110,45,116,111,112,58,46,53,114,101,109,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,62,46,97,114,114,111,119,44,46,98,115,45,112,111,112,111,118,101,114,45,98,111,116,116,111,109,62,46,97,114,114,111,119,123,116,111,112,58,99,97,108,99,40,40,46,53,114,101,109,32,43,32,49,112,120,41,32,42,32,45,49,41,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,62,46,97,114,114,111,119,58,58,98,101,102,111,114,101,44,46,98,115,45,112,111,112,111,118,101,114,45,98,111,116,116,111,109,62,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,116,111,112,58,48,59,98,111,114,100,101,114,45,119,105,100,116,104,58,48,32,46,53,114,101,109,32,46,53,114,101,109,32,46,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,50,53,41,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,62,46,97,114,114,111,119,58,58,97,102,116,101,114,44,46,98,115,45,112,111,112,111,118,101,114,45,98,111,116,116,111,109,62,46,97,114,114,111,119,58,58,97,102,116,101,114,123,116,111,112,58,49,112,120,59,98,111,114,100,101,114,45,119,105,100,116,104,58,48,32,46,53,114,101,109,32,46,53,114,101,109,32,46,53,114,101,109,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,99,111,108,111,114,58,35,102,102,102,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,98,111,116,116,111,109,93,32,46,112,111,112,111,118,101,114,45,104,101,97,100,101,114,58,58,98,101,102,111,114,101,44,46,98,115,45,112,111,112,111,118,101,114,45,98,111,116,116,111,109,32,46,112,111,112,111,118,101,114,45,104,101,97,100,101,114,58,58,98,101,102,111,114,101,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,48,59,108,101,102,116,58,53,48,37,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,114,101,109,59,109,97,114,103,105,110,45,108,101,102,116,58,45,46,53,114,101,109,59,99,111,110,116,101,110,116,58,34,34,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,49,112,120,32,115,111,108,105,100,32,35,102,55,102,55,102,55,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,44,46,98,115,45,112,111,112,111,118,101,114,45,108,101,102,116,123,109,97,114,103,105,110,45,114,105,103,104,116,58,46,53,114,101,109,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,62,46,97,114,114,111,119,44,46,98,115,45,112,111,112,111,118,101,114,45,108,101,102,116,62,46,97,114,114,111,119,123,114,105,103,104,116,58,99,97,108,99,40,40,46,53,114,101,109,32,43,32,49,112,120,41,32,42,32,45,49,41,59,119,105,100,116,104,58,46,53,114,101,109,59,104,101,105,103,104,116,58,49,114,101,109,59,109,97,114,103,105,110,58,46,51,114,101,109,32,48,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,62,46,97,114,114,111,119,58,58,98,101,102,111,114,101,44,46,98,115,45,112,111,112,111,118,101,114,45,108,101,102,116,62,46,97,114,114,111,119,58,58,98,101,102,111,114,101,123,114,105,103,104,116,58,48,59,98,111,114,100,101,114,45,119,105,100,116,104,58,46,53,114,101,109,32,48,32,46,53,114,101,109,32,46,53,114,101,109,59,98,111,114,100,101,114,45,108,101,102,116,45,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,50,53,41,125,46,98,115,45,112,111,112,111,118,101,114,45,97,117,116,111,91,120,45,112,108,97,99,101,109,101,110,116,94,61,108,101,102,116,93,62,46,97,114,114,111,119,58,58,97,102,116,101,114,44,46,98,115,45,112,111,112,111,118,101,114,45,108,101,102,116,62,46,97,114,114,111,119,58,58,97,102,116,101,114,123,114,105,103,104,116,58,49,112,120,59,98,111,114,100,101,114,45,119,105,100,116,104,58,46,53,114,101,109,32,48,32,46,53,114,101,109,32,46,53,114,101,109,59,98,111,114,100,101,114,45,108,101,102,116,45,99,111,108,111,114,58,35,102,102,102,125,46,112,111,112,111,118,101,114,45,104,101,97,100,101,114,123,112,97,100,100,105,110,103,58,46,53,114,101,109,32,46,55,53,114,101,109,59,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,59,102,111,110,116,45,115,105,122,101,58,49,114,101,109,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,55,102,55,102,55,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,49,112,120,32,115,111,108,105,100,32,35,101,98,101,98,101,98,59,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,99,97,108,99,40,46,51,114,101,109,32,45,32,49,112,120,41,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,99,97,108,99,40,46,51,114,101,109,32,45,32,49,112,120,41,125,46,112,111,112,111,118,101,114,45,104,101,97,100,101,114,58,101,109,112,116,121,123,100,105,115,112,108,97,121,58,110,111,110,101,125,46,112,111,112,111,118,101,114,45,98,111,100,121,123,112,97,100,100,105,110,103,58,46,53,114,101,109,32,46,55,53,114,101,109,59,99,111,108,111,114,58,35,50,49,50,53,50,57,125,46,99,97,114,111,117,115,101,108,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,125,46,99,97,114,111,117,115,101,108,46,112,111,105,110,116,101,114,45,101,118,101,110,116,123,45,109,115,45,116,111,117,99,104,45,97,99,116,105,111,110,58,112,97,110,45,121,59,116,111,117,99,104,45,97,99,116,105,111,110,58,112,97,110,45,121,125,46,99,97,114,111,117,115,101,108,45,105,110,110,101,114,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,119,105,100,116,104,58,49,48,48,37,59,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,125,46,99,97,114,111,117,115,101,108,45,105,110,110,101,114,58,58,97,102,116,101,114,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,99,108,101,97,114,58,98,111,116,104,59,99,111,110,116,101,110,116,58,34,34,125,46,99,97,114,111,117,115,101,108,45,105,116,101,109,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,100,105,115,112,108,97,121,58,110,111,110,101,59,102,108,111,97,116,58,108,101,102,116,59,119,105,100,116,104,58,49,48,48,37,59,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,48,48,37,59,45,119,101,98,107,105,116,45,98,97,99,107,102,97,99,101,45,118,105,115,105,98,105,108,105,116,121,58,104,105,100,100,101,110,59,98,97,99,107,102,97,99,101,45,118,105,115,105,98,105,108,105,116,121,58,104,105,100,100,101,110,59,116,114,97,110,115,105,116,105,111,110,58,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,32,46,54,115,32,101,97,115,101,45,105,110,45,111,117,116,59,116,114,97,110,115,105,116,105,111,110,58,116,114,97,110,115,102,111,114,109,32,46,54,115,32,101,97,115,101,45,105,110,45,111,117,116,59,116,114,97,110,115,105,116,105,111,110,58,116,114,97,110,115,102,111,114,109,32,46,54,115,32,101,97,115,101,45,105,110,45,111,117,116,44,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,32,46,54,115,32,101,97,115,101,45,105,110,45,111,117,116,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,99,97,114,111,117,115,101,108,45,105,116,101,109,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,110,101,120,116,44,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,112,114,101,118,44,46,99,97,114,111,117,115,101,108,45,105,116,101,109,46,97,99,116,105,118,101,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,97,99,116,105,118,101,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,114,105,103,104,116,44,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,110,101,120,116,58,110,111,116,40,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,108,101,102,116,41,123,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,88,40,49,48,48,37,41,59,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,88,40,49,48,48,37,41,125,46,97,99,116,105,118,101,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,108,101,102,116,44,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,112,114,101,118,58,110,111,116,40,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,114,105,103,104,116,41,123,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,88,40,45,49,48,48,37,41,59,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,88,40,45,49,48,48,37,41,125,46,99,97,114,111,117,115,101,108,45,102,97,100,101,32,46,99,97,114,111,117,115,101,108,45,105,116,101,109,123,111,112,97,99,105,116,121,58,48,59,116,114,97,110,115,105,116,105,111,110,45,112,114,111,112,101,114,116,121,58,111,112,97,99,105,116,121,59,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,58,110,111,110,101,59,116,114,97,110,115,102,111,114,109,58,110,111,110,101,125,46,99,97,114,111,117,115,101,108,45,102,97,100,101,32,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,110,101,120,116,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,108,101,102,116,44,46,99,97,114,111,117,115,101,108,45,102,97,100,101,32,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,112,114,101,118,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,114,105,103,104,116,44,46,99,97,114,111,117,115,101,108,45,102,97,100,101,32,46,99,97,114,111,117,115,101,108,45,105,116,101,109,46,97,99,116,105,118,101,123,122,45,105,110,100,101,120,58,49,59,111,112,97,99,105,116,121,58,49,125,46,99,97,114,111,117,115,101,108,45,102,97,100,101,32,46,97,99,116,105,118,101,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,108,101,102,116,44,46,99,97,114,111,117,115,101,108,45,102,97,100,101,32,46,97,99,116,105,118,101,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,114,105,103,104,116,123,122,45,105,110,100,101,120,58,48,59,111,112,97,99,105,116,121,58,48,59,116,114,97,110,115,105,116,105,111,110,58,48,115,32,46,54,115,32,111,112,97,99,105,116,121,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,99,97,114,111,117,115,101,108,45,102,97,100,101,32,46,97,99,116,105,118,101,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,108,101,102,116,44,46,99,97,114,111,117,115,101,108,45,102,97,100,101,32,46,97,99,116,105,118,101,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,114,105,103,104,116,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,46,99,97,114,111,117,115,101,108,45,99,111,110,116,114,111,108,45,110,101,120,116,44,46,99,97,114,111,117,115,101,108,45,99,111,110,116,114,111,108,45,112,114,101,118,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,48,59,98,111,116,116,111,109,58,48,59,122,45,105,110,100,101,120,58,49,59,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,99,101,110,116,101,114,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,59,45,109,115,45,102,108,101,120,45,112,97,99,107,58,99,101,110,116,101,114,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,59,119,105,100,116,104,58,49,53,37,59,99,111,108,111,114,58,35,102,102,102,59,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,59,111,112,97,99,105,116,121,58,46,53,59,116,114,97,110,115,105,116,105,111,110,58,111,112,97,99,105,116,121,32,46,49,53,115,32,101,97,115,101,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,99,97,114,111,117,115,101,108,45,99,111,110,116,114,111,108,45,110,101,120,116,44,46,99,97,114,111,117,115,101,108,45,99,111,110,116,114,111,108,45,112,114,101,118,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,46,99,97,114,111,117,115,101,108,45,99,111,110,116,114,111,108,45,110,101,120,116,58,102,111,99,117,115,44,46,99,97,114,111,117,115,101,108,45,99,111,110,116,114,111,108,45,110,101,120,116,58,104,111,118,101,114,44,46,99,97,114,111,117,115,101,108,45,99,111,110,116,114,111,108,45,112,114,101,118,58,102,111,99,117,115,44,46,99,97,114,111,117,115,101,108,45,99,111,110,116,114,111,108,45,112,114,101,118,58,104,111,118,101,114,123,99,111,108,111,114,58,35,102,102,102,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,59,111,117,116,108,105,110,101,58,48,59,111,112,97,99,105,116,121,58,46,57,125,46,99,97,114,111,117,115,101,108,45,99,111,110,116,114,111,108,45,112,114,101,118,123,108,101,102,116,58,48,125,46,99,97,114,111,117,115,101,108,45,99,111,110,116,114,111,108,45,110,101,120,116,123,114,105,103,104,116,58,48,125,46,99,97,114,111,117,115,101,108,45,99,111,110,116,114,111,108,45,110,101,120,116,45,105,99,111,110,44,46,99,97,114,111,117,115,101,108,45,99,111,110,116,114,111,108,45,112,114,101,118,45,105,99,111,110,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,119,105,100,116,104,58,50,48,112,120,59,104,101,105,103,104,116,58,50,48,112,120,59,98,97,99,107,103,114,111,117,110,100,58,110,111,45,114,101,112,101,97,116,32,53,48,37,47,49,48,48,37,32,49,48,48,37,125,46,99,97,114,111,117,115,101,108,45,99,111,110,116,114,111,108,45,112,114,101,118,45,105,99,111,110,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,39,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,115,118,103,39,32,102,105,108,108,61,39,37,50,51,102,102,102,39,32,118,105,101,119,66,111,120,61,39,48,32,48,32,56,32,56,39,37,51,101,37,51,99,112,97,116,104,32,100,61,39,77,53,46,50,53,32,48,108,45,52,32,52,32,52,32,52,32,49,46,53,45,49,46,53,45,50,46,53,45,50,46,53,32,50,46,53,45,50,46,53,45,49,46,53,45,49,46,53,122,39,47,37,51,101,37,51,99,47,115,118,103,37,51,101,34,41,125,46,99,97,114,111,117,115,101,108,45,99,111,110,116,114,111,108,45,110,101,120,116,45,105,99,111,110,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,44,37,51,99,115,118,103,32,120,109,108,110,115,61,39,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,115,118,103,39,32,102,105,108,108,61,39,37,50,51,102,102,102,39,32,118,105,101,119,66,111,120,61,39,48,32,48,32,56,32,56,39,37,51,101,37,51,99,112,97,116,104,32,100,61,39,77,50,46,55,53,32,48,108,45,49,46,53,32,49,46,53,32,50,46,53,32,50,46,53,45,50,46,53,32,50,46,53,32,49,46,53,32,49,46,53,32,52,45,52,45,52,45,52,122,39,47,37,51,101,37,51,99,47,115,118,103,37,51,101,34,41,125,46,99,97,114,111,117,115,101,108,45,105,110,100,105,99,97,116,111,114,115,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,114,105,103,104,116,58,48,59,98,111,116,116,111,109,58,48,59,108,101,102,116,58,48,59,122,45,105,110,100,101,120,58,49,53,59,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,109,115,45,102,108,101,120,45,112,97,99,107,58,99,101,110,116,101,114,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,59,112,97,100,100,105,110,103,45,108,101,102,116,58,48,59,109,97,114,103,105,110,45,114,105,103,104,116,58,49,53,37,59,109,97,114,103,105,110,45,108,101,102,116,58,49,53,37,59,108,105,115,116,45,115,116,121,108,101,58,110,111,110,101,125,46,99,97,114,111,117,115,101,108,45,105,110,100,105,99,97,116,111,114,115,32,108,105,123,98,111,120,45,115,105,122,105,110,103,58,99,111,110,116,101,110,116,45,98,111,120,59,45,109,115,45,102,108,101,120,58,48,32,49,32,97,117,116,111,59,102,108,101,120,58,48,32,49,32,97,117,116,111,59,119,105,100,116,104,58,51,48,112,120,59,104,101,105,103,104,116,58,51,112,120,59,109,97,114,103,105,110,45,114,105,103,104,116,58,51,112,120,59,109,97,114,103,105,110,45,108,101,102,116,58,51,112,120,59,116,101,120,116,45,105,110,100,101,110,116,58,45,57,57,57,112,120,59,99,117,114,115,111,114,58,112,111,105,110,116,101,114,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,59,98,97,99,107,103,114,111,117,110,100,45,99,108,105,112,58,112,97,100,100,105,110,103,45,98,111,120,59,98,111,114,100,101,114,45,116,111,112,58,49,48,112,120,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,49,48,112,120,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,59,111,112,97,99,105,116,121,58,46,53,59,116,114,97,110,115,105,116,105,111,110,58,111,112,97,99,105,116,121,32,46,54,115,32,101,97,115,101,125,64,109,101,100,105,97,32,40,112,114,101,102,101,114,115,45,114,101,100,117,99,101,100,45,109,111,116,105,111,110,58,114,101,100,117,99,101,41,123,46,99,97,114,111,117,115,101,108,45,105,110,100,105,99,97,116,111,114,115,32,108,105,123,116,114,97,110,115,105,116,105,111,110,58,110,111,110,101,125,125,46,99,97,114,111,117,115,101,108,45,105,110,100,105,99,97,116,111,114,115,32,46,97,99,116,105,118,101,123,111,112,97,99,105,116,121,58,49,125,46,99,97,114,111,117,115,101,108,45,99,97,112,116,105,111,110,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,114,105,103,104,116,58,49,53,37,59,98,111,116,116,111,109,58,50,48,112,120,59,108,101,102,116,58,49,53,37,59,122,45,105,110,100,101,120,58,49,48,59,112,97,100,100,105,110,103,45,116,111,112,58,50,48,112,120,59,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,50,48,112,120,59,99,111,108,111,114,58,35,102,102,102,59,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,125,64,45,119,101,98,107,105,116,45,107,101,121,102,114,97,109,101,115,32,115,112,105,110,110,101,114,45,98,111,114,100,101,114,123,116,111,123,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,58,114,111,116,97,116,101,40,51,54,48,100,101,103,41,59,116,114,97,110,115,102,111,114,109,58,114,111,116,97,116,101,40,51,54,48,100,101,103,41,125,125,64,107,101,121,102,114,97,109,101,115,32,115,112,105,110,110,101,114,45,98,111,114,100,101,114,123,116,111,123,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,58,114,111,116,97,116,101,40,51,54,48,100,101,103,41,59,116,114,97,110,115,102,111,114,109,58,114,111,116,97,116,101,40,51,54,48,100,101,103,41,125,125,46,115,112,105,110,110,101,114,45,98,111,114,100,101,114,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,119,105,100,116,104,58,50,114,101,109,59,104,101,105,103,104,116,58,50,114,101,109,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,116,101,120,116,45,98,111,116,116,111,109,59,98,111,114,100,101,114,58,46,50,53,101,109,32,115,111,108,105,100,32,99,117,114,114,101,110,116,67,111,108,111,114,59,98,111,114,100,101,114,45,114,105,103,104,116,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,53,48,37,59,45,119,101,98,107,105,116,45,97,110,105,109,97,116,105,111,110,58,115,112,105,110,110,101,114,45,98,111,114,100,101,114,32,46,55,53,115,32,108,105,110,101,97,114,32,105,110,102,105,110,105,116,101,59,97,110,105,109,97,116,105,111,110,58,115,112,105,110,110,101,114,45,98,111,114,100,101,114,32,46,55,53,115,32,108,105,110,101,97,114,32,105,110,102,105,110,105,116,101,125,46,115,112,105,110,110,101,114,45,98,111,114,100,101,114,45,115,109,123,119,105,100,116,104,58,49,114,101,109,59,104,101,105,103,104,116,58,49,114,101,109,59,98,111,114,100,101,114,45,119,105,100,116,104,58,46,50,101,109,125,64,45,119,101,98,107,105,116,45,107,101,121,102,114,97,109,101,115,32,115,112,105,110,110,101,114,45,103,114,111,119,123,48,37,123,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,58,115,99,97,108,101,40,48,41,59,116,114,97,110,115,102,111,114,109,58,115,99,97,108,101,40,48,41,125,53,48,37,123,111,112,97,99,105,116,121,58,49,125,125,64,107,101,121,102,114,97,109,101,115,32,115,112,105,110,110,101,114,45,103,114,111,119,123,48,37,123,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,58,115,99,97,108,101,40,48,41,59,116,114,97,110,115,102,111,114,109,58,115,99,97,108,101,40,48,41,125,53,48,37,123,111,112,97,99,105,116,121,58,49,125,125,46,115,112,105,110,110,101,114,45,103,114,111,119,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,119,105,100,116,104,58,50,114,101,109,59,104,101,105,103,104,116,58,50,114,101,109,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,116,101,120,116,45,98,111,116,116,111,109,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,99,117,114,114,101,110,116,67,111,108,111,114,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,53,48,37,59,111,112,97,99,105,116,121,58,48,59,45,119,101,98,107,105,116,45,97,110,105,109,97,116,105,111,110,58,115,112,105,110,110,101,114,45,103,114,111,119,32,46,55,53,115,32,108,105,110,101,97,114,32,105,110,102,105,110,105,116,101,59,97,110,105,109,97,116,105,111,110,58,115,112,105,110,110,101,114,45,103,114,111,119,32,46,55,53,115,32,108,105,110,101,97,114,32,105,110,102,105,110,105,116,101,125,46,115,112,105,110,110,101,114,45,103,114,111,119,45,115,109,123,119,105,100,116,104,58,49,114,101,109,59,104,101,105,103,104,116,58,49,114,101,109,125,46,97,108,105,103,110,45,98,97,115,101,108,105,110,101,123,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,116,111,112,123,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,116,111,112,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,109,105,100,100,108,101,123,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,109,105,100,100,108,101,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,98,111,116,116,111,109,123,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,98,111,116,116,111,109,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,116,101,120,116,45,98,111,116,116,111,109,123,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,116,101,120,116,45,98,111,116,116,111,109,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,116,101,120,116,45,116,111,112,123,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,116,101,120,116,45,116,111,112,33,105,109,112,111,114,116,97,110,116,125,46,98,103,45,112,114,105,109,97,114,121,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,55,98,102,102,33,105,109,112,111,114,116,97,110,116,125,97,46,98,103,45,112,114,105,109,97,114,121,58,102,111,99,117,115,44,97,46,98,103,45,112,114,105,109,97,114,121,58,104,111,118,101,114,44,98,117,116,116,111,110,46,98,103,45,112,114,105,109,97,114,121,58,102,111,99,117,115,44,98,117,116,116,111,110,46,98,103,45,112,114,105,109,97,114,121,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,48,48,54,50,99,99,33,105,109,112,111,114,116,97,110,116,125,46,98,103,45,115,101,99,111,110,100,97,114,121,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,54,99,55,53,55,100,33,105,109,112,111,114,116,97,110,116,125,97,46,98,103,45,115,101,99,111,110,100,97,114,121,58,102,111,99,117,115,44,97,46,98,103,45,115,101,99,111,110,100,97,114,121,58,104,111,118,101,114,44,98,117,116,116,111,110,46,98,103,45,115,101,99,111,110,100,97,114,121,58,102,111,99,117,115,44,98,117,116,116,111,110,46,98,103,45,115,101,99,111,110,100,97,114,121,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,53,52,53,98,54,50,33,105,109,112,111,114,116,97,110,116,125,46,98,103,45,115,117,99,99,101,115,115,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,50,56,97,55,52,53,33,105,109,112,111,114,116,97,110,116,125,97,46,98,103,45,115,117,99,99,101,115,115,58,102,111,99,117,115,44,97,46,98,103,45,115,117,99,99,101,115,115,58,104,111,118,101,114,44,98,117,116,116,111,110,46,98,103,45,115,117,99,99,101,115,115,58,102,111,99,117,115,44,98,117,116,116,111,110,46,98,103,45,115,117,99,99,101,115,115,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,101,55,101,51,52,33,105,109,112,111,114,116,97,110,116,125,46,98,103,45,105,110,102,111,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,55,97,50,98,56,33,105,109,112,111,114,116,97,110,116,125,97,46,98,103,45,105,110,102,111,58,102,111,99,117,115,44,97,46,98,103,45,105,110,102,111,58,104,111,118,101,114,44,98,117,116,116,111,110,46,98,103,45,105,110,102,111,58,102,111,99,117,115,44,98,117,116,116,111,110,46,98,103,45,105,110,102,111,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,49,55,97,56,98,33,105,109,112,111,114,116,97,110,116,125,46,98,103,45,119,97,114,110,105,110,103,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,99,49,48,55,33,105,109,112,111,114,116,97,110,116,125,97,46,98,103,45,119,97,114,110,105,110,103,58,102,111,99,117,115,44,97,46,98,103,45,119,97,114,110,105,110,103,58,104,111,118,101,114,44,98,117,116,116,111,110,46,98,103,45,119,97,114,110,105,110,103,58,102,111,99,117,115,44,98,117,116,116,111,110,46,98,103,45,119,97,114,110,105,110,103,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,51,57,101,48,48,33,105,109,112,111,114,116,97,110,116,125,46,98,103,45,100,97,110,103,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,99,51,53,52,53,33,105,109,112,111,114,116,97,110,116,125,97,46,98,103,45,100,97,110,103,101,114,58,102,111,99,117,115,44,97,46,98,103,45,100,97,110,103,101,114,58,104,111,118,101,114,44,98,117,116,116,111,110,46,98,103,45,100,97,110,103,101,114,58,102,111,99,117,115,44,98,117,116,116,111,110,46,98,103,45,100,97,110,103,101,114,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,98,100,50,49,51,48,33,105,109,112,111,114,116,97,110,116,125,46,98,103,45,108,105,103,104,116,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,56,102,57,102,97,33,105,109,112,111,114,116,97,110,116,125,97,46,98,103,45,108,105,103,104,116,58,102,111,99,117,115,44,97,46,98,103,45,108,105,103,104,116,58,104,111,118,101,114,44,98,117,116,116,111,110,46,98,103,45,108,105,103,104,116,58,102,111,99,117,115,44,98,117,116,116,111,110,46,98,103,45,108,105,103,104,116,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,100,97,101,48,101,53,33,105,109,112,111,114,116,97,110,116,125,46,98,103,45,100,97,114,107,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,51,52,51,97,52,48,33,105,109,112,111,114,116,97,110,116,125,97,46,98,103,45,100,97,114,107,58,102,111,99,117,115,44,97,46,98,103,45,100,97,114,107,58,104,111,118,101,114,44,98,117,116,116,111,110,46,98,103,45,100,97,114,107,58,102,111,99,117,115,44,98,117,116,116,111,110,46,98,103,45,100,97,114,107,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,49,100,50,49,50,52,33,105,109,112,111,114,116,97,110,116,125,46,98,103,45,119,104,105,116,101,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,33,105,109,112,111,114,116,97,110,116,125,46,98,103,45,116,114,97,110,115,112,97,114,101,110,116,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,123,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,116,111,112,123,98,111,114,100,101,114,45,116,111,112,58,49,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,114,105,103,104,116,123,98,111,114,100,101,114,45,114,105,103,104,116,58,49,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,98,111,116,116,111,109,123,98,111,114,100,101,114,45,98,111,116,116,111,109,58,49,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,108,101,102,116,123,98,111,114,100,101,114,45,108,101,102,116,58,49,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,48,123,98,111,114,100,101,114,58,48,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,116,111,112,45,48,123,98,111,114,100,101,114,45,116,111,112,58,48,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,114,105,103,104,116,45,48,123,98,111,114,100,101,114,45,114,105,103,104,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,98,111,116,116,111,109,45,48,123,98,111,114,100,101,114,45,98,111,116,116,111,109,58,48,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,108,101,102,116,45,48,123,98,111,114,100,101,114,45,108,101,102,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,112,114,105,109,97,114,121,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,48,48,55,98,102,102,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,115,101,99,111,110,100,97,114,121,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,54,99,55,53,55,100,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,115,117,99,99,101,115,115,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,50,56,97,55,52,53,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,105,110,102,111,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,49,55,97,50,98,56,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,119,97,114,110,105,110,103,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,102,99,49,48,55,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,100,97,110,103,101,114,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,99,51,53,52,53,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,108,105,103,104,116,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,56,102,57,102,97,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,100,97,114,107,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,51,52,51,97,52,48,33,105,109,112,111,114,116,97,110,116,125,46,98,111,114,100,101,114,45,119,104,105,116,101,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,102,102,33,105,109,112,111,114,116,97,110,116,125,46,114,111,117,110,100,101,100,45,115,109,123,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,114,111,117,110,100,101,100,123,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,114,111,117,110,100,101,100,45,116,111,112,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,59,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,114,111,117,110,100,101,100,45,114,105,103,104,116,123,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,114,111,117,110,100,101,100,45,98,111,116,116,111,109,123,98,111,114,100,101,114,45,98,111,116,116,111,109,45,114,105,103,104,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,114,111,117,110,100,101,100,45,108,101,102,116,123,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,59,98,111,114,100,101,114,45,98,111,116,116,111,109,45,108,101,102,116,45,114,97,100,105,117,115,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,114,111,117,110,100,101,100,45,108,103,123,98,111,114,100,101,114,45,114,97,100,105,117,115,58,46,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,114,111,117,110,100,101,100,45,99,105,114,99,108,101,123,98,111,114,100,101,114,45,114,97,100,105,117,115,58,53,48,37,33,105,109,112,111,114,116,97,110,116,125,46,114,111,117,110,100,101,100,45,112,105,108,108,123,98,111,114,100,101,114,45,114,97,100,105,117,115,58,53,48,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,114,111,117,110,100,101,100,45,48,123,98,111,114,100,101,114,45,114,97,100,105,117,115,58,48,33,105,109,112,111,114,116,97,110,116,125,46,99,108,101,97,114,102,105,120,58,58,97,102,116,101,114,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,99,108,101,97,114,58,98,111,116,104,59,99,111,110,116,101,110,116,58,34,34,125,46,100,45,110,111,110,101,123,100,105,115,112,108,97,121,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,105,110,108,105,110,101,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,105,110,108,105,110,101,45,98,108,111,99,107,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,33,105,109,112,111,114,116,97,110,116,125,46,100,45,98,108,111,99,107,123,100,105,115,112,108,97,121,58,98,108,111,99,107,33,105,109,112,111,114,116,97,110,116,125,46,100,45,116,97,98,108,101,123,100,105,115,112,108,97,121,58,116,97,98,108,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,116,97,98,108,101,45,114,111,119,123,100,105,115,112,108,97,121,58,116,97,98,108,101,45,114,111,119,33,105,109,112,111,114,116,97,110,116,125,46,100,45,116,97,98,108,101,45,99,101,108,108,123,100,105,115,112,108,97,121,58,116,97,98,108,101,45,99,101,108,108,33,105,109,112,111,114,116,97,110,116,125,46,100,45,102,108,101,120,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,33,105,109,112,111,114,116,97,110,116,59,100,105,115,112,108,97,121,58,102,108,101,120,33,105,109,112,111,114,116,97,110,116,125,46,100,45,105,110,108,105,110,101,45,102,108,101,120,123,100,105,115,112,108,97,121,58,45,109,115,45,105,110,108,105,110,101,45,102,108,101,120,98,111,120,33,105,109,112,111,114,116,97,110,116,59,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,102,108,101,120,33,105,109,112,111,114,116,97,110,116,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,100,45,115,109,45,110,111,110,101,123,100,105,115,112,108,97,121,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,115,109,45,105,110,108,105,110,101,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,115,109,45,105,110,108,105,110,101,45,98,108,111,99,107,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,33,105,109,112,111,114,116,97,110,116,125,46,100,45,115,109,45,98,108,111,99,107,123,100,105,115,112,108,97,121,58,98,108,111,99,107,33,105,109,112,111,114,116,97,110,116,125,46,100,45,115,109,45,116,97,98,108,101,123,100,105,115,112,108,97,121,58,116,97,98,108,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,115,109,45,116,97,98,108,101,45,114,111,119,123,100,105,115,112,108,97,121,58,116,97,98,108,101,45,114,111,119,33,105,109,112,111,114,116,97,110,116,125,46,100,45,115,109,45,116,97,98,108,101,45,99,101,108,108,123,100,105,115,112,108,97,121,58,116,97,98,108,101,45,99,101,108,108,33,105,109,112,111,114,116,97,110,116,125,46,100,45,115,109,45,102,108,101,120,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,33,105,109,112,111,114,116,97,110,116,59,100,105,115,112,108,97,121,58,102,108,101,120,33,105,109,112,111,114,116,97,110,116,125,46,100,45,115,109,45,105,110,108,105,110,101,45,102,108,101,120,123,100,105,115,112,108,97,121,58,45,109,115,45,105,110,108,105,110,101,45,102,108,101,120,98,111,120,33,105,109,112,111,114,116,97,110,116,59,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,102,108,101,120,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,55,54,56,112,120,41,123,46,100,45,109,100,45,110,111,110,101,123,100,105,115,112,108,97,121,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,109,100,45,105,110,108,105,110,101,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,109,100,45,105,110,108,105,110,101,45,98,108,111,99,107,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,33,105,109,112,111,114,116,97,110,116,125,46,100,45,109,100,45,98,108,111,99,107,123,100,105,115,112,108,97,121,58,98,108,111,99,107,33,105,109,112,111,114,116,97,110,116,125,46,100,45,109,100,45,116,97,98,108,101,123,100,105,115,112,108,97,121,58,116,97,98,108,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,109,100,45,116,97,98,108,101,45,114,111,119,123,100,105,115,112,108,97,121,58,116,97,98,108,101,45,114,111,119,33,105,109,112,111,114,116,97,110,116,125,46,100,45,109,100,45,116,97,98,108,101,45,99,101,108,108,123,100,105,115,112,108,97,121,58,116,97,98,108,101,45,99,101,108,108,33,105,109,112,111,114,116,97,110,116,125,46,100,45,109,100,45,102,108,101,120,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,33,105,109,112,111,114,116,97,110,116,59,100,105,115,112,108,97,121,58,102,108,101,120,33,105,109,112,111,114,116,97,110,116,125,46,100,45,109,100,45,105,110,108,105,110,101,45,102,108,101,120,123,100,105,115,112,108,97,121,58,45,109,115,45,105,110,108,105,110,101,45,102,108,101,120,98,111,120,33,105,109,112,111,114,116,97,110,116,59,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,102,108,101,120,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,57,57,50,112,120,41,123,46,100,45,108,103,45,110,111,110,101,123,100,105,115,112,108,97,121,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,108,103,45,105,110,108,105,110,101,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,108,103,45,105,110,108,105,110,101,45,98,108,111,99,107,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,33,105,109,112,111,114,116,97,110,116,125,46,100,45,108,103,45,98,108,111,99,107,123,100,105,115,112,108,97,121,58,98,108,111,99,107,33,105,109,112,111,114,116,97,110,116,125,46,100,45,108,103,45,116,97,98,108,101,123,100,105,115,112,108,97,121,58,116,97,98,108,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,108,103,45,116,97,98,108,101,45,114,111,119,123,100,105,115,112,108,97,121,58,116,97,98,108,101,45,114,111,119,33,105,109,112,111,114,116,97,110,116,125,46,100,45,108,103,45,116,97,98,108,101,45,99,101,108,108,123,100,105,115,112,108,97,121,58,116,97,98,108,101,45,99,101,108,108,33,105,109,112,111,114,116,97,110,116,125,46,100,45,108,103,45,102,108,101,120,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,33,105,109,112,111,114,116,97,110,116,59,100,105,115,112,108,97,121,58,102,108,101,120,33,105,109,112,111,114,116,97,110,116,125,46,100,45,108,103,45,105,110,108,105,110,101,45,102,108,101,120,123,100,105,115,112,108,97,121,58,45,109,115,45,105,110,108,105,110,101,45,102,108,101,120,98,111,120,33,105,109,112,111,114,116,97,110,116,59,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,102,108,101,120,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,49,50,48,48,112,120,41,123,46,100,45,120,108,45,110,111,110,101,123,100,105,115,112,108,97,121,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,120,108,45,105,110,108,105,110,101,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,120,108,45,105,110,108,105,110,101,45,98,108,111,99,107,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,33,105,109,112,111,114,116,97,110,116,125,46,100,45,120,108,45,98,108,111,99,107,123,100,105,115,112,108,97,121,58,98,108,111,99,107,33,105,109,112,111,114,116,97,110,116,125,46,100,45,120,108,45,116,97,98,108,101,123,100,105,115,112,108,97,121,58,116,97,98,108,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,120,108,45,116,97,98,108,101,45,114,111,119,123,100,105,115,112,108,97,121,58,116,97,98,108,101,45,114,111,119,33,105,109,112,111,114,116,97,110,116,125,46,100,45,120,108,45,116,97,98,108,101,45,99,101,108,108,123,100,105,115,112,108,97,121,58,116,97,98,108,101,45,99,101,108,108,33,105,109,112,111,114,116,97,110,116,125,46,100,45,120,108,45,102,108,101,120,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,33,105,109,112,111,114,116,97,110,116,59,100,105,115,112,108,97,121,58,102,108,101,120,33,105,109,112,111,114,116,97,110,116,125,46,100,45,120,108,45,105,110,108,105,110,101,45,102,108,101,120,123,100,105,115,112,108,97,121,58,45,109,115,45,105,110,108,105,110,101,45,102,108,101,120,98,111,120,33,105,109,112,111,114,116,97,110,116,59,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,102,108,101,120,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,112,114,105,110,116,123,46,100,45,112,114,105,110,116,45,110,111,110,101,123,100,105,115,112,108,97,121,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,112,114,105,110,116,45,105,110,108,105,110,101,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,112,114,105,110,116,45,105,110,108,105,110,101,45,98,108,111,99,107,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,33,105,109,112,111,114,116,97,110,116,125,46,100,45,112,114,105,110,116,45,98,108,111,99,107,123,100,105,115,112,108,97,121,58,98,108,111,99,107,33,105,109,112,111,114,116,97,110,116,125,46,100,45,112,114,105,110,116,45,116,97,98,108,101,123,100,105,115,112,108,97,121,58,116,97,98,108,101,33,105,109,112,111,114,116,97,110,116,125,46,100,45,112,114,105,110,116,45,116,97,98,108,101,45,114,111,119,123,100,105,115,112,108,97,121,58,116,97,98,108,101,45,114,111,119,33,105,109,112,111,114,116,97,110,116,125,46,100,45,112,114,105,110,116,45,116,97,98,108,101,45,99,101,108,108,123,100,105,115,112,108,97,121,58,116,97,98,108,101,45,99,101,108,108,33,105,109,112,111,114,116,97,110,116,125,46,100,45,112,114,105,110,116,45,102,108,101,120,123,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,33,105,109,112,111,114,116,97,110,116,59,100,105,115,112,108,97,121,58,102,108,101,120,33,105,109,112,111,114,116,97,110,116,125,46,100,45,112,114,105,110,116,45,105,110,108,105,110,101,45,102,108,101,120,123,100,105,115,112,108,97,121,58,45,109,115,45,105,110,108,105,110,101,45,102,108,101,120,98,111,120,33,105,109,112,111,114,116,97,110,116,59,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,102,108,101,120,33,105,109,112,111,114,116,97,110,116,125,125,46,101,109,98,101,100,45,114,101,115,112,111,110,115,105,118,101,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,59,112,97,100,100,105,110,103,58,48,59,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,125,46,101,109,98,101,100,45,114,101,115,112,111,110,115,105,118,101,58,58,98,101,102,111,114,101,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,99,111,110,116,101,110,116,58,34,34,125,46,101,109,98,101,100,45,114,101,115,112,111,110,115,105,118,101,32,46,101,109,98,101,100,45,114,101,115,112,111,110,115,105,118,101,45,105,116,101,109,44,46,101,109,98,101,100,45,114,101,115,112,111,110,115,105,118,101,32,101,109,98,101,100,44,46,101,109,98,101,100,45,114,101,115,112,111,110,115,105,118,101,32,105,102,114,97,109,101,44,46,101,109,98,101,100,45,114,101,115,112,111,110,115,105,118,101,32,111,98,106,101,99,116,44,46,101,109,98,101,100,45,114,101,115,112,111,110,115,105,118,101,32,118,105,100,101,111,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,48,59,98,111,116,116,111,109,58,48,59,108,101,102,116,58,48,59,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,49,48,48,37,59,98,111,114,100,101,114,58,48,125,46,101,109,98,101,100,45,114,101,115,112,111,110,115,105,118,101,45,50,49,98,121,57,58,58,98,101,102,111,114,101,123,112,97,100,100,105,110,103,45,116,111,112,58,52,50,46,56,53,55,49,52,51,37,125,46,101,109,98,101,100,45,114,101,115,112,111,110,115,105,118,101,45,49,54,98,121,57,58,58,98,101,102,111,114,101,123,112,97,100,100,105,110,103,45,116,111,112,58,53,54,46,50,53,37,125,46,101,109,98,101,100,45,114,101,115,112,111,110,115,105,118,101,45,52,98,121,51,58,58,98,101,102,111,114,101,123,112,97,100,100,105,110,103,45,116,111,112,58,55,53,37,125,46,101,109,98,101,100,45,114,101,115,112,111,110,115,105,118,101,45,49,98,121,49,58,58,98,101,102,111,114,101,123,112,97,100,100,105,110,103,45,116,111,112,58,49,48,48,37,125,46,102,108,101,120,45,114,111,119,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,99,111,108,117,109,110,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,114,111,119,45,114,101,118,101,114,115,101,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,99,111,108,117,109,110,45,114,101,118,101,114,115,101,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,119,114,97,112,123,45,109,115,45,102,108,101,120,45,119,114,97,112,58,119,114,97,112,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,110,111,119,114,97,112,123,45,109,115,45,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,119,114,97,112,45,114,101,118,101,114,115,101,123,45,109,115,45,102,108,101,120,45,119,114,97,112,58,119,114,97,112,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,102,105,108,108,123,45,109,115,45,102,108,101,120,58,49,32,49,32,97,117,116,111,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,58,49,32,49,32,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,103,114,111,119,45,48,123,45,109,115,45,102,108,101,120,45,112,111,115,105,116,105,118,101,58,48,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,103,114,111,119,58,48,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,103,114,111,119,45,49,123,45,109,115,45,102,108,101,120,45,112,111,115,105,116,105,118,101,58,49,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,103,114,111,119,58,49,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,115,104,114,105,110,107,45,48,123,45,109,115,45,102,108,101,120,45,110,101,103,97,116,105,118,101,58,48,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,115,104,114,105,110,107,58,48,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,115,104,114,105,110,107,45,49,123,45,109,115,45,102,108,101,120,45,110,101,103,97,116,105,118,101,58,49,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,115,104,114,105,110,107,58,49,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,115,116,97,114,116,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,101,110,100,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,101,110,100,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,99,101,110,116,101,114,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,98,101,116,119,101,101,110,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,106,117,115,116,105,102,121,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,98,101,116,119,101,101,110,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,97,114,111,117,110,100,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,100,105,115,116,114,105,98,117,116,101,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,97,114,111,117,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,115,116,97,114,116,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,101,110,100,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,101,110,100,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,99,101,110,116,101,114,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,98,97,115,101,108,105,110,101,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,115,116,114,101,116,99,104,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,115,116,97,114,116,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,101,110,100,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,101,110,100,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,99,101,110,116,101,114,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,98,101,116,119,101,101,110,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,106,117,115,116,105,102,121,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,98,101,116,119,101,101,110,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,97,114,111,117,110,100,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,100,105,115,116,114,105,98,117,116,101,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,97,114,111,117,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,115,116,114,101,116,99,104,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,97,117,116,111,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,115,116,97,114,116,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,101,110,100,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,101,110,100,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,99,101,110,116,101,114,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,98,97,115,101,108,105,110,101,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,115,116,114,101,116,99,104,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,102,108,101,120,45,115,109,45,114,111,119,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,115,109,45,99,111,108,117,109,110,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,115,109,45,114,111,119,45,114,101,118,101,114,115,101,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,115,109,45,99,111,108,117,109,110,45,114,101,118,101,114,115,101,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,115,109,45,119,114,97,112,123,45,109,115,45,102,108,101,120,45,119,114,97,112,58,119,114,97,112,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,115,109,45,110,111,119,114,97,112,123,45,109,115,45,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,115,109,45,119,114,97,112,45,114,101,118,101,114,115,101,123,45,109,115,45,102,108,101,120,45,119,114,97,112,58,119,114,97,112,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,115,109,45,102,105,108,108,123,45,109,115,45,102,108,101,120,58,49,32,49,32,97,117,116,111,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,58,49,32,49,32,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,115,109,45,103,114,111,119,45,48,123,45,109,115,45,102,108,101,120,45,112,111,115,105,116,105,118,101,58,48,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,103,114,111,119,58,48,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,115,109,45,103,114,111,119,45,49,123,45,109,115,45,102,108,101,120,45,112,111,115,105,116,105,118,101,58,49,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,103,114,111,119,58,49,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,115,109,45,115,104,114,105,110,107,45,48,123,45,109,115,45,102,108,101,120,45,110,101,103,97,116,105,118,101,58,48,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,115,104,114,105,110,107,58,48,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,115,109,45,115,104,114,105,110,107,45,49,123,45,109,115,45,102,108,101,120,45,110,101,103,97,116,105,118,101,58,49,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,115,104,114,105,110,107,58,49,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,115,109,45,115,116,97,114,116,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,115,109,45,101,110,100,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,101,110,100,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,115,109,45,99,101,110,116,101,114,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,115,109,45,98,101,116,119,101,101,110,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,106,117,115,116,105,102,121,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,98,101,116,119,101,101,110,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,115,109,45,97,114,111,117,110,100,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,100,105,115,116,114,105,98,117,116,101,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,97,114,111,117,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,115,109,45,115,116,97,114,116,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,115,109,45,101,110,100,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,101,110,100,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,115,109,45,99,101,110,116,101,114,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,115,109,45,98,97,115,101,108,105,110,101,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,115,109,45,115,116,114,101,116,99,104,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,115,109,45,115,116,97,114,116,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,115,109,45,101,110,100,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,101,110,100,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,115,109,45,99,101,110,116,101,114,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,115,109,45,98,101,116,119,101,101,110,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,106,117,115,116,105,102,121,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,98,101,116,119,101,101,110,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,115,109,45,97,114,111,117,110,100,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,100,105,115,116,114,105,98,117,116,101,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,97,114,111,117,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,115,109,45,115,116,114,101,116,99,104,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,115,109,45,97,117,116,111,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,115,109,45,115,116,97,114,116,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,115,109,45,101,110,100,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,101,110,100,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,115,109,45,99,101,110,116,101,114,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,115,109,45,98,97,115,101,108,105,110,101,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,115,109,45,115,116,114,101,116,99,104,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,55,54,56,112,120,41,123,46,102,108,101,120,45,109,100,45,114,111,119,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,109,100,45,99,111,108,117,109,110,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,109,100,45,114,111,119,45,114,101,118,101,114,115,101,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,109,100,45,99,111,108,117,109,110,45,114,101,118,101,114,115,101,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,109,100,45,119,114,97,112,123,45,109,115,45,102,108,101,120,45,119,114,97,112,58,119,114,97,112,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,109,100,45,110,111,119,114,97,112,123,45,109,115,45,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,109,100,45,119,114,97,112,45,114,101,118,101,114,115,101,123,45,109,115,45,102,108,101,120,45,119,114,97,112,58,119,114,97,112,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,109,100,45,102,105,108,108,123,45,109,115,45,102,108,101,120,58,49,32,49,32,97,117,116,111,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,58,49,32,49,32,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,109,100,45,103,114,111,119,45,48,123,45,109,115,45,102,108,101,120,45,112,111,115,105,116,105,118,101,58,48,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,103,114,111,119,58,48,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,109,100,45,103,114,111,119,45,49,123,45,109,115,45,102,108,101,120,45,112,111,115,105,116,105,118,101,58,49,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,103,114,111,119,58,49,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,109,100,45,115,104,114,105,110,107,45,48,123,45,109,115,45,102,108,101,120,45,110,101,103,97,116,105,118,101,58,48,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,115,104,114,105,110,107,58,48,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,109,100,45,115,104,114,105,110,107,45,49,123,45,109,115,45,102,108,101,120,45,110,101,103,97,116,105,118,101,58,49,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,115,104,114,105,110,107,58,49,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,109,100,45,115,116,97,114,116,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,109,100,45,101,110,100,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,101,110,100,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,109,100,45,99,101,110,116,101,114,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,109,100,45,98,101,116,119,101,101,110,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,106,117,115,116,105,102,121,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,98,101,116,119,101,101,110,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,109,100,45,97,114,111,117,110,100,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,100,105,115,116,114,105,98,117,116,101,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,97,114,111,117,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,109,100,45,115,116,97,114,116,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,109,100,45,101,110,100,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,101,110,100,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,109,100,45,99,101,110,116,101,114,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,109,100,45,98,97,115,101,108,105,110,101,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,109,100,45,115,116,114,101,116,99,104,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,109,100,45,115,116,97,114,116,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,109,100,45,101,110,100,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,101,110,100,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,109,100,45,99,101,110,116,101,114,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,109,100,45,98,101,116,119,101,101,110,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,106,117,115,116,105,102,121,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,98,101,116,119,101,101,110,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,109,100,45,97,114,111,117,110,100,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,100,105,115,116,114,105,98,117,116,101,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,97,114,111,117,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,109,100,45,115,116,114,101,116,99,104,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,109,100,45,97,117,116,111,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,109,100,45,115,116,97,114,116,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,109,100,45,101,110,100,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,101,110,100,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,109,100,45,99,101,110,116,101,114,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,109,100,45,98,97,115,101,108,105,110,101,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,109,100,45,115,116,114,101,116,99,104,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,57,57,50,112,120,41,123,46,102,108,101,120,45,108,103,45,114,111,119,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,108,103,45,99,111,108,117,109,110,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,108,103,45,114,111,119,45,114,101,118,101,114,115,101,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,108,103,45,99,111,108,117,109,110,45,114,101,118,101,114,115,101,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,108,103,45,119,114,97,112,123,45,109,115,45,102,108,101,120,45,119,114,97,112,58,119,114,97,112,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,108,103,45,110,111,119,114,97,112,123,45,109,115,45,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,108,103,45,119,114,97,112,45,114,101,118,101,114,115,101,123,45,109,115,45,102,108,101,120,45,119,114,97,112,58,119,114,97,112,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,108,103,45,102,105,108,108,123,45,109,115,45,102,108,101,120,58,49,32,49,32,97,117,116,111,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,58,49,32,49,32,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,108,103,45,103,114,111,119,45,48,123,45,109,115,45,102,108,101,120,45,112,111,115,105,116,105,118,101,58,48,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,103,114,111,119,58,48,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,108,103,45,103,114,111,119,45,49,123,45,109,115,45,102,108,101,120,45,112,111,115,105,116,105,118,101,58,49,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,103,114,111,119,58,49,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,108,103,45,115,104,114,105,110,107,45,48,123,45,109,115,45,102,108,101,120,45,110,101,103,97,116,105,118,101,58,48,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,115,104,114,105,110,107,58,48,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,108,103,45,115,104,114,105,110,107,45,49,123,45,109,115,45,102,108,101,120,45,110,101,103,97,116,105,118,101,58,49,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,115,104,114,105,110,107,58,49,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,108,103,45,115,116,97,114,116,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,108,103,45,101,110,100,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,101,110,100,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,108,103,45,99,101,110,116,101,114,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,108,103,45,98,101,116,119,101,101,110,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,106,117,115,116,105,102,121,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,98,101,116,119,101,101,110,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,108,103,45,97,114,111,117,110,100,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,100,105,115,116,114,105,98,117,116,101,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,97,114,111,117,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,108,103,45,115,116,97,114,116,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,108,103,45,101,110,100,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,101,110,100,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,108,103,45,99,101,110,116,101,114,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,108,103,45,98,97,115,101,108,105,110,101,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,108,103,45,115,116,114,101,116,99,104,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,108,103,45,115,116,97,114,116,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,108,103,45,101,110,100,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,101,110,100,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,108,103,45,99,101,110,116,101,114,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,108,103,45,98,101,116,119,101,101,110,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,106,117,115,116,105,102,121,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,98,101,116,119,101,101,110,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,108,103,45,97,114,111,117,110,100,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,100,105,115,116,114,105,98,117,116,101,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,97,114,111,117,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,108,103,45,115,116,114,101,116,99,104,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,108,103,45,97,117,116,111,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,108,103,45,115,116,97,114,116,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,108,103,45,101,110,100,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,101,110,100,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,108,103,45,99,101,110,116,101,114,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,108,103,45,98,97,115,101,108,105,110,101,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,108,103,45,115,116,114,101,116,99,104,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,49,50,48,48,112,120,41,123,46,102,108,101,120,45,120,108,45,114,111,119,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,120,108,45,99,111,108,117,109,110,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,120,108,45,114,111,119,45,114,101,118,101,114,115,101,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,114,111,119,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,120,108,45,99,111,108,117,109,110,45,114,101,118,101,114,115,101,123,45,109,115,45,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,100,105,114,101,99,116,105,111,110,58,99,111,108,117,109,110,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,120,108,45,119,114,97,112,123,45,109,115,45,102,108,101,120,45,119,114,97,112,58,119,114,97,112,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,120,108,45,110,111,119,114,97,112,123,45,109,115,45,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,119,114,97,112,58,110,111,119,114,97,112,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,120,108,45,119,114,97,112,45,114,101,118,101,114,115,101,123,45,109,115,45,102,108,101,120,45,119,114,97,112,58,119,114,97,112,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,45,114,101,118,101,114,115,101,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,120,108,45,102,105,108,108,123,45,109,115,45,102,108,101,120,58,49,32,49,32,97,117,116,111,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,58,49,32,49,32,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,120,108,45,103,114,111,119,45,48,123,45,109,115,45,102,108,101,120,45,112,111,115,105,116,105,118,101,58,48,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,103,114,111,119,58,48,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,120,108,45,103,114,111,119,45,49,123,45,109,115,45,102,108,101,120,45,112,111,115,105,116,105,118,101,58,49,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,103,114,111,119,58,49,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,120,108,45,115,104,114,105,110,107,45,48,123,45,109,115,45,102,108,101,120,45,110,101,103,97,116,105,118,101,58,48,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,115,104,114,105,110,107,58,48,33,105,109,112,111,114,116,97,110,116,125,46,102,108,101,120,45,120,108,45,115,104,114,105,110,107,45,49,123,45,109,115,45,102,108,101,120,45,110,101,103,97,116,105,118,101,58,49,33,105,109,112,111,114,116,97,110,116,59,102,108,101,120,45,115,104,114,105,110,107,58,49,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,120,108,45,115,116,97,114,116,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,120,108,45,101,110,100,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,101,110,100,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,120,108,45,99,101,110,116,101,114,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,120,108,45,98,101,116,119,101,101,110,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,106,117,115,116,105,102,121,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,98,101,116,119,101,101,110,33,105,109,112,111,114,116,97,110,116,125,46,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,45,120,108,45,97,114,111,117,110,100,123,45,109,115,45,102,108,101,120,45,112,97,99,107,58,100,105,115,116,114,105,98,117,116,101,33,105,109,112,111,114,116,97,110,116,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,97,114,111,117,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,120,108,45,115,116,97,114,116,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,120,108,45,101,110,100,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,101,110,100,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,120,108,45,99,101,110,116,101,114,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,120,108,45,98,97,115,101,108,105,110,101,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,105,116,101,109,115,45,120,108,45,115,116,114,101,116,99,104,123,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,105,116,101,109,115,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,120,108,45,115,116,97,114,116,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,120,108,45,101,110,100,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,101,110,100,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,120,108,45,99,101,110,116,101,114,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,120,108,45,98,101,116,119,101,101,110,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,106,117,115,116,105,102,121,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,98,101,116,119,101,101,110,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,120,108,45,97,114,111,117,110,100,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,100,105,115,116,114,105,98,117,116,101,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,115,112,97,99,101,45,97,114,111,117,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,99,111,110,116,101,110,116,45,120,108,45,115,116,114,101,116,99,104,123,45,109,115,45,102,108,101,120,45,108,105,110,101,45,112,97,99,107,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,99,111,110,116,101,110,116,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,120,108,45,97,117,116,111,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,120,108,45,115,116,97,114,116,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,102,108,101,120,45,115,116,97,114,116,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,120,108,45,101,110,100,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,101,110,100,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,102,108,101,120,45,101,110,100,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,120,108,45,99,101,110,116,101,114,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,120,108,45,98,97,115,101,108,105,110,101,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,98,97,115,101,108,105,110,101,33,105,109,112,111,114,116,97,110,116,125,46,97,108,105,103,110,45,115,101,108,102,45,120,108,45,115,116,114,101,116,99,104,123,45,109,115,45,102,108,101,120,45,105,116,101,109,45,97,108,105,103,110,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,59,97,108,105,103,110,45,115,101,108,102,58,115,116,114,101,116,99,104,33,105,109,112,111,114,116,97,110,116,125,125,46,102,108,111,97,116,45,108,101,102,116,123,102,108,111,97,116,58,108,101,102,116,33,105,109,112,111,114,116,97,110,116,125,46,102,108,111,97,116,45,114,105,103,104,116,123,102,108,111,97,116,58,114,105,103,104,116,33,105,109,112,111,114,116,97,110,116,125,46,102,108,111,97,116,45,110,111,110,101,123,102,108,111,97,116,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,102,108,111,97,116,45,115,109,45,108,101,102,116,123,102,108,111,97,116,58,108,101,102,116,33,105,109,112,111,114,116,97,110,116,125,46,102,108,111,97,116,45,115,109,45,114,105,103,104,116,123,102,108,111,97,116,58,114,105,103,104,116,33,105,109,112,111,114,116,97,110,116,125,46,102,108,111,97,116,45,115,109,45,110,111,110,101,123,102,108,111,97,116,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,55,54,56,112,120,41,123,46,102,108,111,97,116,45,109,100,45,108,101,102,116,123,102,108,111,97,116,58,108,101,102,116,33,105,109,112,111,114,116,97,110,116,125,46,102,108,111,97,116,45,109,100,45,114,105,103,104,116,123,102,108,111,97,116,58,114,105,103,104,116,33,105,109,112,111,114,116,97,110,116,125,46,102,108,111,97,116,45,109,100,45,110,111,110,101,123,102,108,111,97,116,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,57,57,50,112,120,41,123,46,102,108,111,97,116,45,108,103,45,108,101,102,116,123,102,108,111,97,116,58,108,101,102,116,33,105,109,112,111,114,116,97,110,116,125,46,102,108,111,97,116,45,108,103,45,114,105,103,104,116,123,102,108,111,97,116,58,114,105,103,104,116,33,105,109,112,111,114,116,97,110,116,125,46,102,108,111,97,116,45,108,103,45,110,111,110,101,123,102,108,111,97,116,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,49,50,48,48,112,120,41,123,46,102,108,111,97,116,45,120,108,45,108,101,102,116,123,102,108,111,97,116,58,108,101,102,116,33,105,109,112,111,114,116,97,110,116,125,46,102,108,111,97,116,45,120,108,45,114,105,103,104,116,123,102,108,111,97,116,58,114,105,103,104,116,33,105,109,112,111,114,116,97,110,116,125,46,102,108,111,97,116,45,120,108,45,110,111,110,101,123,102,108,111,97,116,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,125,46,111,118,101,114,102,108,111,119,45,97,117,116,111,123,111,118,101,114,102,108,111,119,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,111,118,101,114,102,108,111,119,45,104,105,100,100,101,110,123,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,33,105,109,112,111,114,116,97,110,116,125,46,112,111,115,105,116,105,111,110,45,115,116,97,116,105,99,123,112,111,115,105,116,105,111,110,58,115,116,97,116,105,99,33,105,109,112,111,114,116,97,110,116,125,46,112,111,115,105,116,105,111,110,45,114,101,108,97,116,105,118,101,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,33,105,109,112,111,114,116,97,110,116,125,46,112,111,115,105,116,105,111,110,45,97,98,115,111,108,117,116,101,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,33,105,109,112,111,114,116,97,110,116,125,46,112,111,115,105,116,105,111,110,45,102,105,120,101,100,123,112,111,115,105,116,105,111,110,58,102,105,120,101,100,33,105,109,112,111,114,116,97,110,116,125,46,112,111,115,105,116,105,111,110,45,115,116,105,99,107,121,123,112,111,115,105,116,105,111,110,58,45,119,101,98,107,105,116,45,115,116,105,99,107,121,33,105,109,112,111,114,116,97,110,116,59,112,111,115,105,116,105,111,110,58,115,116,105,99,107,121,33,105,109,112,111,114,116,97,110,116,125,46,102,105,120,101,100,45,116,111,112,123,112,111,115,105,116,105,111,110,58,102,105,120,101,100,59,116,111,112,58,48,59,114,105,103,104,116,58,48,59,108,101,102,116,58,48,59,122,45,105,110,100,101,120,58,49,48,51,48,125,46,102,105,120,101,100,45,98,111,116,116,111,109,123,112,111,115,105,116,105,111,110,58,102,105,120,101,100,59,114,105,103,104,116,58,48,59,98,111,116,116,111,109,58,48,59,108,101,102,116,58,48,59,122,45,105,110,100,101,120,58,49,48,51,48,125,64,115,117,112,112,111,114,116,115,32,40,40,112,111,115,105,116,105,111,110,58,45,119,101,98,107,105,116,45,115,116,105,99,107,121,41,32,111,114,32,40,112,111,115,105,116,105,111,110,58,115,116,105,99,107,121,41,41,123,46,115,116,105,99,107,121,45,116,111,112,123,112,111,115,105,116,105,111,110,58,45,119,101,98,107,105,116,45,115,116,105,99,107,121,59,112,111,115,105,116,105,111,110,58,115,116,105,99,107,121,59,116,111,112,58,48,59,122,45,105,110,100,101,120,58,49,48,50,48,125,125,46,115,114,45,111,110,108,121,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,119,105,100,116,104,58,49,112,120,59,104,101,105,103,104,116,58,49,112,120,59,112,97,100,100,105,110,103,58,48,59,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,59,99,108,105,112,58,114,101,99,116,40,48,44,48,44,48,44,48,41,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,119,114,97,112,59,98,111,114,100,101,114,58,48,125,46,115,114,45,111,110,108,121,45,102,111,99,117,115,97,98,108,101,58,97,99,116,105,118,101,44,46,115,114,45,111,110,108,121,45,102,111,99,117,115,97,98,108,101,58,102,111,99,117,115,123,112,111,115,105,116,105,111,110,58,115,116,97,116,105,99,59,119,105,100,116,104,58,97,117,116,111,59,104,101,105,103,104,116,58,97,117,116,111,59,111,118,101,114,102,108,111,119,58,118,105,115,105,98,108,101,59,99,108,105,112,58,97,117,116,111,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,114,109,97,108,125,46,115,104,97,100,111,119,45,115,109,123,98,111,120,45,115,104,97,100,111,119,58,48,32,46,49,50,53,114,101,109,32,46,50,53,114,101,109,32,114,103,98,97,40,48,44,48,44,48,44,46,48,55,53,41,33,105,109,112,111,114,116,97,110,116,125,46,115,104,97,100,111,119,123,98,111,120,45,115,104,97,100,111,119,58,48,32,46,53,114,101,109,32,49,114,101,109,32,114,103,98,97,40,48,44,48,44,48,44,46,49,53,41,33,105,109,112,111,114,116,97,110,116,125,46,115,104,97,100,111,119,45,108,103,123,98,111,120,45,115,104,97,100,111,119,58,48,32,49,114,101,109,32,51,114,101,109,32,114,103,98,97,40,48,44,48,44,48,44,46,49,55,53,41,33,105,109,112,111,114,116,97,110,116,125,46,115,104,97,100,111,119,45,110,111,110,101,123,98,111,120,45,115,104,97,100,111,119,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,46,119,45,50,53,123,119,105,100,116,104,58,50,53,37,33,105,109,112,111,114,116,97,110,116,125,46,119,45,53,48,123,119,105,100,116,104,58,53,48,37,33,105,109,112,111,114,116,97,110,116,125,46,119,45,55,53,123,119,105,100,116,104,58,55,53,37,33,105,109,112,111,114,116,97,110,116,125,46,119,45,49,48,48,123,119,105,100,116,104,58,49,48,48,37,33,105,109,112,111,114,116,97,110,116,125,46,119,45,97,117,116,111,123,119,105,100,116,104,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,104,45,50,53,123,104,101,105,103,104,116,58,50,53,37,33,105,109,112,111,114,116,97,110,116,125,46,104,45,53,48,123,104,101,105,103,104,116,58,53,48,37,33,105,109,112,111,114,116,97,110,116,125,46,104,45,55,53,123,104,101,105,103,104,116,58,55,53,37,33,105,109,112,111,114,116,97,110,116,125,46,104,45,49,48,48,123,104,101,105,103,104,116,58,49,48,48,37,33,105,109,112,111,114,116,97,110,116,125,46,104,45,97,117,116,111,123,104,101,105,103,104,116,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,119,45,49,48,48,123,109,97,120,45,119,105,100,116,104,58,49,48,48,37,33,105,109,112,111,114,116,97,110,116,125,46,109,104,45,49,48,48,123,109,97,120,45,104,101,105,103,104,116,58,49,48,48,37,33,105,109,112,111,114,116,97,110,116,125,46,109,105,110,45,118,119,45,49,48,48,123,109,105,110,45,119,105,100,116,104,58,49,48,48,118,119,33,105,109,112,111,114,116,97,110,116,125,46,109,105,110,45,118,104,45,49,48,48,123,109,105,110,45,104,101,105,103,104,116,58,49,48,48,118,104,33,105,109,112,111,114,116,97,110,116,125,46,118,119,45,49,48,48,123,119,105,100,116,104,58,49,48,48,118,119,33,105,109,112,111,114,116,97,110,116,125,46,118,104,45,49,48,48,123,104,101,105,103,104,116,58,49,48,48,118,104,33,105,109,112,111,114,116,97,110,116,125,46,115,116,114,101,116,99,104,101,100,45,108,105,110,107,58,58,97,102,116,101,114,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,48,59,114,105,103,104,116,58,48,59,98,111,116,116,111,109,58,48,59,108,101,102,116,58,48,59,122,45,105,110,100,101,120,58,49,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,97,117,116,111,59,99,111,110,116,101,110,116,58,34,34,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,48,41,125,46,109,45,48,123,109,97,114,103,105,110,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,48,44,46,109,121,45,48,123,109,97,114,103,105,110,45,116,111,112,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,48,44,46,109,120,45,48,123,109,97,114,103,105,110,45,114,105,103,104,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,48,44,46,109,121,45,48,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,48,44,46,109,120,45,48,123,109,97,114,103,105,110,45,108,101,102,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,45,49,123,109,97,114,103,105,110,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,49,44,46,109,121,45,49,123,109,97,114,103,105,110,45,116,111,112,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,49,44,46,109,120,45,49,123,109,97,114,103,105,110,45,114,105,103,104,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,49,44,46,109,121,45,49,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,49,44,46,109,120,45,49,123,109,97,114,103,105,110,45,108,101,102,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,50,123,109,97,114,103,105,110,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,50,44,46,109,121,45,50,123,109,97,114,103,105,110,45,116,111,112,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,50,44,46,109,120,45,50,123,109,97,114,103,105,110,45,114,105,103,104,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,50,44,46,109,121,45,50,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,50,44,46,109,120,45,50,123,109,97,114,103,105,110,45,108,101,102,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,51,123,109,97,114,103,105,110,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,51,44,46,109,121,45,51,123,109,97,114,103,105,110,45,116,111,112,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,51,44,46,109,120,45,51,123,109,97,114,103,105,110,45,114,105,103,104,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,51,44,46,109,121,45,51,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,51,44,46,109,120,45,51,123,109,97,114,103,105,110,45,108,101,102,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,52,123,109,97,114,103,105,110,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,52,44,46,109,121,45,52,123,109,97,114,103,105,110,45,116,111,112,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,52,44,46,109,120,45,52,123,109,97,114,103,105,110,45,114,105,103,104,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,52,44,46,109,121,45,52,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,52,44,46,109,120,45,52,123,109,97,114,103,105,110,45,108,101,102,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,53,123,109,97,114,103,105,110,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,53,44,46,109,121,45,53,123,109,97,114,103,105,110,45,116,111,112,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,53,44,46,109,120,45,53,123,109,97,114,103,105,110,45,114,105,103,104,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,53,44,46,109,121,45,53,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,53,44,46,109,120,45,53,123,109,97,114,103,105,110,45,108,101,102,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,48,123,112,97,100,100,105,110,103,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,48,44,46,112,121,45,48,123,112,97,100,100,105,110,103,45,116,111,112,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,48,44,46,112,120,45,48,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,48,44,46,112,121,45,48,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,48,44,46,112,120,45,48,123,112,97,100,100,105,110,103,45,108,101,102,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,45,49,123,112,97,100,100,105,110,103,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,49,44,46,112,121,45,49,123,112,97,100,100,105,110,103,45,116,111,112,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,49,44,46,112,120,45,49,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,49,44,46,112,121,45,49,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,49,44,46,112,120,45,49,123,112,97,100,100,105,110,103,45,108,101,102,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,50,123,112,97,100,100,105,110,103,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,50,44,46,112,121,45,50,123,112,97,100,100,105,110,103,45,116,111,112,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,50,44,46,112,120,45,50,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,50,44,46,112,121,45,50,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,50,44,46,112,120,45,50,123,112,97,100,100,105,110,103,45,108,101,102,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,51,123,112,97,100,100,105,110,103,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,51,44,46,112,121,45,51,123,112,97,100,100,105,110,103,45,116,111,112,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,51,44,46,112,120,45,51,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,51,44,46,112,121,45,51,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,51,44,46,112,120,45,51,123,112,97,100,100,105,110,103,45,108,101,102,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,52,123,112,97,100,100,105,110,103,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,52,44,46,112,121,45,52,123,112,97,100,100,105,110,103,45,116,111,112,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,52,44,46,112,120,45,52,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,52,44,46,112,121,45,52,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,52,44,46,112,120,45,52,123,112,97,100,100,105,110,103,45,108,101,102,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,53,123,112,97,100,100,105,110,103,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,53,44,46,112,121,45,53,123,112,97,100,100,105,110,103,45,116,111,112,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,53,44,46,112,120,45,53,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,53,44,46,112,121,45,53,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,53,44,46,112,120,45,53,123,112,97,100,100,105,110,103,45,108,101,102,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,110,49,123,109,97,114,103,105,110,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,110,49,44,46,109,121,45,110,49,123,109,97,114,103,105,110,45,116,111,112,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,110,49,44,46,109,120,45,110,49,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,110,49,44,46,109,121,45,110,49,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,110,49,44,46,109,120,45,110,49,123,109,97,114,103,105,110,45,108,101,102,116,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,110,50,123,109,97,114,103,105,110,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,110,50,44,46,109,121,45,110,50,123,109,97,114,103,105,110,45,116,111,112,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,110,50,44,46,109,120,45,110,50,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,110,50,44,46,109,121,45,110,50,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,110,50,44,46,109,120,45,110,50,123,109,97,114,103,105,110,45,108,101,102,116,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,110,51,123,109,97,114,103,105,110,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,110,51,44,46,109,121,45,110,51,123,109,97,114,103,105,110,45,116,111,112,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,110,51,44,46,109,120,45,110,51,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,110,51,44,46,109,121,45,110,51,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,110,51,44,46,109,120,45,110,51,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,110,52,123,109,97,114,103,105,110,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,110,52,44,46,109,121,45,110,52,123,109,97,114,103,105,110,45,116,111,112,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,110,52,44,46,109,120,45,110,52,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,110,52,44,46,109,121,45,110,52,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,110,52,44,46,109,120,45,110,52,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,110,53,123,109,97,114,103,105,110,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,110,53,44,46,109,121,45,110,53,123,109,97,114,103,105,110,45,116,111,112,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,110,53,44,46,109,120,45,110,53,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,110,53,44,46,109,121,45,110,53,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,110,53,44,46,109,120,45,110,53,123,109,97,114,103,105,110,45,108,101,102,116,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,97,117,116,111,123,109,97,114,103,105,110,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,97,117,116,111,44,46,109,121,45,97,117,116,111,123,109,97,114,103,105,110,45,116,111,112,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,97,117,116,111,44,46,109,120,45,97,117,116,111,123,109,97,114,103,105,110,45,114,105,103,104,116,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,97,117,116,111,44,46,109,121,45,97,117,116,111,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,97,117,116,111,44,46,109,120,45,97,117,116,111,123,109,97,114,103,105,110,45,108,101,102,116,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,109,45,115,109,45,48,123,109,97,114,103,105,110,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,115,109,45,48,44,46,109,121,45,115,109,45,48,123,109,97,114,103,105,110,45,116,111,112,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,115,109,45,48,44,46,109,120,45,115,109,45,48,123,109,97,114,103,105,110,45,114,105,103,104,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,115,109,45,48,44,46,109,121,45,115,109,45,48,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,115,109,45,48,44,46,109,120,45,115,109,45,48,123,109,97,114,103,105,110,45,108,101,102,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,45,115,109,45,49,123,109,97,114,103,105,110,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,115,109,45,49,44,46,109,121,45,115,109,45,49,123,109,97,114,103,105,110,45,116,111,112,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,115,109,45,49,44,46,109,120,45,115,109,45,49,123,109,97,114,103,105,110,45,114,105,103,104,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,115,109,45,49,44,46,109,121,45,115,109,45,49,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,115,109,45,49,44,46,109,120,45,115,109,45,49,123,109,97,114,103,105,110,45,108,101,102,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,115,109,45,50,123,109,97,114,103,105,110,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,115,109,45,50,44,46,109,121,45,115,109,45,50,123,109,97,114,103,105,110,45,116,111,112,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,115,109,45,50,44,46,109,120,45,115,109,45,50,123,109,97,114,103,105,110,45,114,105,103,104,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,115,109,45,50,44,46,109,121,45,115,109,45,50,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,115,109,45,50,44,46,109,120,45,115,109,45,50,123,109,97,114,103,105,110,45,108,101,102,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,115,109,45,51,123,109,97,114,103,105,110,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,115,109,45,51,44,46,109,121,45,115,109,45,51,123,109,97,114,103,105,110,45,116,111,112,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,115,109,45,51,44,46,109,120,45,115,109,45,51,123,109,97,114,103,105,110,45,114,105,103,104,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,115,109,45,51,44,46,109,121,45,115,109,45,51,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,115,109,45,51,44,46,109,120,45,115,109,45,51,123,109,97,114,103,105,110,45,108,101,102,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,115,109,45,52,123,109,97,114,103,105,110,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,115,109,45,52,44,46,109,121,45,115,109,45,52,123,109,97,114,103,105,110,45,116,111,112,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,115,109,45,52,44,46,109,120,45,115,109,45,52,123,109,97,114,103,105,110,45,114,105,103,104,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,115,109,45,52,44,46,109,121,45,115,109,45,52,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,115,109,45,52,44,46,109,120,45,115,109,45,52,123,109,97,114,103,105,110,45,108,101,102,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,115,109,45,53,123,109,97,114,103,105,110,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,115,109,45,53,44,46,109,121,45,115,109,45,53,123,109,97,114,103,105,110,45,116,111,112,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,115,109,45,53,44,46,109,120,45,115,109,45,53,123,109,97,114,103,105,110,45,114,105,103,104,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,115,109,45,53,44,46,109,121,45,115,109,45,53,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,115,109,45,53,44,46,109,120,45,115,109,45,53,123,109,97,114,103,105,110,45,108,101,102,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,115,109,45,48,123,112,97,100,100,105,110,103,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,115,109,45,48,44,46,112,121,45,115,109,45,48,123,112,97,100,100,105,110,103,45,116,111,112,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,115,109,45,48,44,46,112,120,45,115,109,45,48,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,115,109,45,48,44,46,112,121,45,115,109,45,48,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,115,109,45,48,44,46,112,120,45,115,109,45,48,123,112,97,100,100,105,110,103,45,108,101,102,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,45,115,109,45,49,123,112,97,100,100,105,110,103,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,115,109,45,49,44,46,112,121,45,115,109,45,49,123,112,97,100,100,105,110,103,45,116,111,112,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,115,109,45,49,44,46,112,120,45,115,109,45,49,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,115,109,45,49,44,46,112,121,45,115,109,45,49,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,115,109,45,49,44,46,112,120,45,115,109,45,49,123,112,97,100,100,105,110,103,45,108,101,102,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,115,109,45,50,123,112,97,100,100,105,110,103,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,115,109,45,50,44,46,112,121,45,115,109,45,50,123,112,97,100,100,105,110,103,45,116,111,112,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,115,109,45,50,44,46,112,120,45,115,109,45,50,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,115,109,45,50,44,46,112,121,45,115,109,45,50,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,115,109,45,50,44,46,112,120,45,115,109,45,50,123,112,97,100,100,105,110,103,45,108,101,102,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,115,109,45,51,123,112,97,100,100,105,110,103,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,115,109,45,51,44,46,112,121,45,115,109,45,51,123,112,97,100,100,105,110,103,45,116,111,112,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,115,109,45,51,44,46,112,120,45,115,109,45,51,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,115,109,45,51,44,46,112,121,45,115,109,45,51,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,115,109,45,51,44,46,112,120,45,115,109,45,51,123,112,97,100,100,105,110,103,45,108,101,102,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,115,109,45,52,123,112,97,100,100,105,110,103,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,115,109,45,52,44,46,112,121,45,115,109,45,52,123,112,97,100,100,105,110,103,45,116,111,112,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,115,109,45,52,44,46,112,120,45,115,109,45,52,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,115,109,45,52,44,46,112,121,45,115,109,45,52,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,115,109,45,52,44,46,112,120,45,115,109,45,52,123,112,97,100,100,105,110,103,45,108,101,102,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,115,109,45,53,123,112,97,100,100,105,110,103,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,115,109,45,53,44,46,112,121,45,115,109,45,53,123,112,97,100,100,105,110,103,45,116,111,112,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,115,109,45,53,44,46,112,120,45,115,109,45,53,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,115,109,45,53,44,46,112,121,45,115,109,45,53,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,115,109,45,53,44,46,112,120,45,115,109,45,53,123,112,97,100,100,105,110,103,45,108,101,102,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,115,109,45,110,49,123,109,97,114,103,105,110,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,115,109,45,110,49,44,46,109,121,45,115,109,45,110,49,123,109,97,114,103,105,110,45,116,111,112,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,115,109,45,110,49,44,46,109,120,45,115,109,45,110,49,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,115,109,45,110,49,44,46,109,121,45,115,109,45,110,49,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,115,109,45,110,49,44,46,109,120,45,115,109,45,110,49,123,109,97,114,103,105,110,45,108,101,102,116,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,115,109,45,110,50,123,109,97,114,103,105,110,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,115,109,45,110,50,44,46,109,121,45,115,109,45,110,50,123,109,97,114,103,105,110,45,116,111,112,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,115,109,45,110,50,44,46,109,120,45,115,109,45,110,50,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,115,109,45,110,50,44,46,109,121,45,115,109,45,110,50,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,115,109,45,110,50,44,46,109,120,45,115,109,45,110,50,123,109,97,114,103,105,110,45,108,101,102,116,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,115,109,45,110,51,123,109,97,114,103,105,110,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,115,109,45,110,51,44,46,109,121,45,115,109,45,110,51,123,109,97,114,103,105,110,45,116,111,112,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,115,109,45,110,51,44,46,109,120,45,115,109,45,110,51,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,115,109,45,110,51,44,46,109,121,45,115,109,45,110,51,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,115,109,45,110,51,44,46,109,120,45,115,109,45,110,51,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,115,109,45,110,52,123,109,97,114,103,105,110,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,115,109,45,110,52,44,46,109,121,45,115,109,45,110,52,123,109,97,114,103,105,110,45,116,111,112,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,115,109,45,110,52,44,46,109,120,45,115,109,45,110,52,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,115,109,45,110,52,44,46,109,121,45,115,109,45,110,52,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,115,109,45,110,52,44,46,109,120,45,115,109,45,110,52,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,115,109,45,110,53,123,109,97,114,103,105,110,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,115,109,45,110,53,44,46,109,121,45,115,109,45,110,53,123,109,97,114,103,105,110,45,116,111,112,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,115,109,45,110,53,44,46,109,120,45,115,109,45,110,53,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,115,109,45,110,53,44,46,109,121,45,115,109,45,110,53,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,115,109,45,110,53,44,46,109,120,45,115,109,45,110,53,123,109,97,114,103,105,110,45,108,101,102,116,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,115,109,45,97,117,116,111,123,109,97,114,103,105,110,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,115,109,45,97,117,116,111,44,46,109,121,45,115,109,45,97,117,116,111,123,109,97,114,103,105,110,45,116,111,112,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,115,109,45,97,117,116,111,44,46,109,120,45,115,109,45,97,117,116,111,123,109,97,114,103,105,110,45,114,105,103,104,116,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,115,109,45,97,117,116,111,44,46,109,121,45,115,109,45,97,117,116,111,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,115,109,45,97,117,116,111,44,46,109,120,45,115,109,45,97,117,116,111,123,109,97,114,103,105,110,45,108,101,102,116,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,55,54,56,112,120,41,123,46,109,45,109,100,45,48,123,109,97,114,103,105,110,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,109,100,45,48,44,46,109,121,45,109,100,45,48,123,109,97,114,103,105,110,45,116,111,112,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,109,100,45,48,44,46,109,120,45,109,100,45,48,123,109,97,114,103,105,110,45,114,105,103,104,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,109,100,45,48,44,46,109,121,45,109,100,45,48,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,109,100,45,48,44,46,109,120,45,109,100,45,48,123,109,97,114,103,105,110,45,108,101,102,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,45,109,100,45,49,123,109,97,114,103,105,110,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,109,100,45,49,44,46,109,121,45,109,100,45,49,123,109,97,114,103,105,110,45,116,111,112,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,109,100,45,49,44,46,109,120,45,109,100,45,49,123,109,97,114,103,105,110,45,114,105,103,104,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,109,100,45,49,44,46,109,121,45,109,100,45,49,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,109,100,45,49,44,46,109,120,45,109,100,45,49,123,109,97,114,103,105,110,45,108,101,102,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,109,100,45,50,123,109,97,114,103,105,110,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,109,100,45,50,44,46,109,121,45,109,100,45,50,123,109,97,114,103,105,110,45,116,111,112,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,109,100,45,50,44,46,109,120,45,109,100,45,50,123,109,97,114,103,105,110,45,114,105,103,104,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,109,100,45,50,44,46,109,121,45,109,100,45,50,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,109,100,45,50,44,46,109,120,45,109,100,45,50,123,109,97,114,103,105,110,45,108,101,102,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,109,100,45,51,123,109,97,114,103,105,110,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,109,100,45,51,44,46,109,121,45,109,100,45,51,123,109,97,114,103,105,110,45,116,111,112,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,109,100,45,51,44,46,109,120,45,109,100,45,51,123,109,97,114,103,105,110,45,114,105,103,104,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,109,100,45,51,44,46,109,121,45,109,100,45,51,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,109,100,45,51,44,46,109,120,45,109,100,45,51,123,109,97,114,103,105,110,45,108,101,102,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,109,100,45,52,123,109,97,114,103,105,110,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,109,100,45,52,44,46,109,121,45,109,100,45,52,123,109,97,114,103,105,110,45,116,111,112,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,109,100,45,52,44,46,109,120,45,109,100,45,52,123,109,97,114,103,105,110,45,114,105,103,104,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,109,100,45,52,44,46,109,121,45,109,100,45,52,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,109,100,45,52,44,46,109,120,45,109,100,45,52,123,109,97,114,103,105,110,45,108,101,102,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,109,100,45,53,123,109,97,114,103,105,110,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,109,100,45,53,44,46,109,121,45,109,100,45,53,123,109,97,114,103,105,110,45,116,111,112,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,109,100,45,53,44,46,109,120,45,109,100,45,53,123,109,97,114,103,105,110,45,114,105,103,104,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,109,100,45,53,44,46,109,121,45,109,100,45,53,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,109,100,45,53,44,46,109,120,45,109,100,45,53,123,109,97,114,103,105,110,45,108,101,102,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,109,100,45,48,123,112,97,100,100,105,110,103,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,109,100,45,48,44,46,112,121,45,109,100,45,48,123,112,97,100,100,105,110,103,45,116,111,112,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,109,100,45,48,44,46,112,120,45,109,100,45,48,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,109,100,45,48,44,46,112,121,45,109,100,45,48,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,109,100,45,48,44,46,112,120,45,109,100,45,48,123,112,97,100,100,105,110,103,45,108,101,102,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,45,109,100,45,49,123,112,97,100,100,105,110,103,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,109,100,45,49,44,46,112,121,45,109,100,45,49,123,112,97,100,100,105,110,103,45,116,111,112,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,109,100,45,49,44,46,112,120,45,109,100,45,49,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,109,100,45,49,44,46,112,121,45,109,100,45,49,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,109,100,45,49,44,46,112,120,45,109,100,45,49,123,112,97,100,100,105,110,103,45,108,101,102,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,109,100,45,50,123,112,97,100,100,105,110,103,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,109,100,45,50,44,46,112,121,45,109,100,45,50,123,112,97,100,100,105,110,103,45,116,111,112,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,109,100,45,50,44,46,112,120,45,109,100,45,50,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,109,100,45,50,44,46,112,121,45,109,100,45,50,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,109,100,45,50,44,46,112,120,45,109,100,45,50,123,112,97,100,100,105,110,103,45,108,101,102,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,109,100,45,51,123,112,97,100,100,105,110,103,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,109,100,45,51,44,46,112,121,45,109,100,45,51,123,112,97,100,100,105,110,103,45,116,111,112,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,109,100,45,51,44,46,112,120,45,109,100,45,51,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,109,100,45,51,44,46,112,121,45,109,100,45,51,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,109,100,45,51,44,46,112,120,45,109,100,45,51,123,112,97,100,100,105,110,103,45,108,101,102,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,109,100,45,52,123,112,97,100,100,105,110,103,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,109,100,45,52,44,46,112,121,45,109,100,45,52,123,112,97,100,100,105,110,103,45,116,111,112,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,109,100,45,52,44,46,112,120,45,109,100,45,52,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,109,100,45,52,44,46,112,121,45,109,100,45,52,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,109,100,45,52,44,46,112,120,45,109,100,45,52,123,112,97,100,100,105,110,103,45,108,101,102,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,109,100,45,53,123,112,97,100,100,105,110,103,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,109,100,45,53,44,46,112,121,45,109,100,45,53,123,112,97,100,100,105,110,103,45,116,111,112,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,109,100,45,53,44,46,112,120,45,109,100,45,53,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,109,100,45,53,44,46,112,121,45,109,100,45,53,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,109,100,45,53,44,46,112,120,45,109,100,45,53,123,112,97,100,100,105,110,103,45,108,101,102,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,109,100,45,110,49,123,109,97,114,103,105,110,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,109,100,45,110,49,44,46,109,121,45,109,100,45,110,49,123,109,97,114,103,105,110,45,116,111,112,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,109,100,45,110,49,44,46,109,120,45,109,100,45,110,49,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,109,100,45,110,49,44,46,109,121,45,109,100,45,110,49,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,109,100,45,110,49,44,46,109,120,45,109,100,45,110,49,123,109,97,114,103,105,110,45,108,101,102,116,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,109,100,45,110,50,123,109,97,114,103,105,110,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,109,100,45,110,50,44,46,109,121,45,109,100,45,110,50,123,109,97,114,103,105,110,45,116,111,112,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,109,100,45,110,50,44,46,109,120,45,109,100,45,110,50,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,109,100,45,110,50,44,46,109,121,45,109,100,45,110,50,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,109,100,45,110,50,44,46,109,120,45,109,100,45,110,50,123,109,97,114,103,105,110,45,108,101,102,116,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,109,100,45,110,51,123,109,97,114,103,105,110,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,109,100,45,110,51,44,46,109,121,45,109,100,45,110,51,123,109,97,114,103,105,110,45,116,111,112,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,109,100,45,110,51,44,46,109,120,45,109,100,45,110,51,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,109,100,45,110,51,44,46,109,121,45,109,100,45,110,51,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,109,100,45,110,51,44,46,109,120,45,109,100,45,110,51,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,109,100,45,110,52,123,109,97,114,103,105,110,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,109,100,45,110,52,44,46,109,121,45,109,100,45,110,52,123,109,97,114,103,105,110,45,116,111,112,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,109,100,45,110,52,44,46,109,120,45,109,100,45,110,52,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,109,100,45,110,52,44,46,109,121,45,109,100,45,110,52,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,109,100,45,110,52,44,46,109,120,45,109,100,45,110,52,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,109,100,45,110,53,123,109,97,114,103,105,110,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,109,100,45,110,53,44,46,109,121,45,109,100,45,110,53,123,109,97,114,103,105,110,45,116,111,112,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,109,100,45,110,53,44,46,109,120,45,109,100,45,110,53,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,109,100,45,110,53,44,46,109,121,45,109,100,45,110,53,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,109,100,45,110,53,44,46,109,120,45,109,100,45,110,53,123,109,97,114,103,105,110,45,108,101,102,116,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,109,100,45,97,117,116,111,123,109,97,114,103,105,110,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,109,100,45,97,117,116,111,44,46,109,121,45,109,100,45,97,117,116,111,123,109,97,114,103,105,110,45,116,111,112,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,109,100,45,97,117,116,111,44,46,109,120,45,109,100,45,97,117,116,111,123,109,97,114,103,105,110,45,114,105,103,104,116,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,109,100,45,97,117,116,111,44,46,109,121,45,109,100,45,97,117,116,111,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,109,100,45,97,117,116,111,44,46,109,120,45,109,100,45,97,117,116,111,123,109,97,114,103,105,110,45,108,101,102,116,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,57,57,50,112,120,41,123,46,109,45,108,103,45,48,123,109,97,114,103,105,110,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,108,103,45,48,44,46,109,121,45,108,103,45,48,123,109,97,114,103,105,110,45,116,111,112,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,108,103,45,48,44,46,109,120,45,108,103,45,48,123,109,97,114,103,105,110,45,114,105,103,104,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,108,103,45,48,44,46,109,121,45,108,103,45,48,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,108,103,45,48,44,46,109,120,45,108,103,45,48,123,109,97,114,103,105,110,45,108,101,102,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,45,108,103,45,49,123,109,97,114,103,105,110,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,108,103,45,49,44,46,109,121,45,108,103,45,49,123,109,97,114,103,105,110,45,116,111,112,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,108,103,45,49,44,46,109,120,45,108,103,45,49,123,109,97,114,103,105,110,45,114,105,103,104,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,108,103,45,49,44,46,109,121,45,108,103,45,49,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,108,103,45,49,44,46,109,120,45,108,103,45,49,123,109,97,114,103,105,110,45,108,101,102,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,108,103,45,50,123,109,97,114,103,105,110,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,108,103,45,50,44,46,109,121,45,108,103,45,50,123,109,97,114,103,105,110,45,116,111,112,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,108,103,45,50,44,46,109,120,45,108,103,45,50,123,109,97,114,103,105,110,45,114,105,103,104,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,108,103,45,50,44,46,109,121,45,108,103,45,50,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,108,103,45,50,44,46,109,120,45,108,103,45,50,123,109,97,114,103,105,110,45,108,101,102,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,108,103,45,51,123,109,97,114,103,105,110,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,108,103,45,51,44,46,109,121,45,108,103,45,51,123,109,97,114,103,105,110,45,116,111,112,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,108,103,45,51,44,46,109,120,45,108,103,45,51,123,109,97,114,103,105,110,45,114,105,103,104,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,108,103,45,51,44,46,109,121,45,108,103,45,51,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,108,103,45,51,44,46,109,120,45,108,103,45,51,123,109,97,114,103,105,110,45,108,101,102,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,108,103,45,52,123,109,97,114,103,105,110,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,108,103,45,52,44,46,109,121,45,108,103,45,52,123,109,97,114,103,105,110,45,116,111,112,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,108,103,45,52,44,46,109,120,45,108,103,45,52,123,109,97,114,103,105,110,45,114,105,103,104,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,108,103,45,52,44,46,109,121,45,108,103,45,52,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,108,103,45,52,44,46,109,120,45,108,103,45,52,123,109,97,114,103,105,110,45,108,101,102,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,108,103,45,53,123,109,97,114,103,105,110,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,108,103,45,53,44,46,109,121,45,108,103,45,53,123,109,97,114,103,105,110,45,116,111,112,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,108,103,45,53,44,46,109,120,45,108,103,45,53,123,109,97,114,103,105,110,45,114,105,103,104,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,108,103,45,53,44,46,109,121,45,108,103,45,53,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,108,103,45,53,44,46,109,120,45,108,103,45,53,123,109,97,114,103,105,110,45,108,101,102,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,108,103,45,48,123,112,97,100,100,105,110,103,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,108,103,45,48,44,46,112,121,45,108,103,45,48,123,112,97,100,100,105,110,103,45,116,111,112,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,108,103,45,48,44,46,112,120,45,108,103,45,48,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,108,103,45,48,44,46,112,121,45,108,103,45,48,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,108,103,45,48,44,46,112,120,45,108,103,45,48,123,112,97,100,100,105,110,103,45,108,101,102,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,45,108,103,45,49,123,112,97,100,100,105,110,103,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,108,103,45,49,44,46,112,121,45,108,103,45,49,123,112,97,100,100,105,110,103,45,116,111,112,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,108,103,45,49,44,46,112,120,45,108,103,45,49,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,108,103,45,49,44,46,112,121,45,108,103,45,49,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,108,103,45,49,44,46,112,120,45,108,103,45,49,123,112,97,100,100,105,110,103,45,108,101,102,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,108,103,45,50,123,112,97,100,100,105,110,103,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,108,103,45,50,44,46,112,121,45,108,103,45,50,123,112,97,100,100,105,110,103,45,116,111,112,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,108,103,45,50,44,46,112,120,45,108,103,45,50,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,108,103,45,50,44,46,112,121,45,108,103,45,50,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,108,103,45,50,44,46,112,120,45,108,103,45,50,123,112,97,100,100,105,110,103,45,108,101,102,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,108,103,45,51,123,112,97,100,100,105,110,103,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,108,103,45,51,44,46,112,121,45,108,103,45,51,123,112,97,100,100,105,110,103,45,116,111,112,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,108,103,45,51,44,46,112,120,45,108,103,45,51,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,108,103,45,51,44,46,112,121,45,108,103,45,51,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,108,103,45,51,44,46,112,120,45,108,103,45,51,123,112,97,100,100,105,110,103,45,108,101,102,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,108,103,45,52,123,112,97,100,100,105,110,103,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,108,103,45,52,44,46,112,121,45,108,103,45,52,123,112,97,100,100,105,110,103,45,116,111,112,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,108,103,45,52,44,46,112,120,45,108,103,45,52,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,108,103,45,52,44,46,112,121,45,108,103,45,52,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,108,103,45,52,44,46,112,120,45,108,103,45,52,123,112,97,100,100,105,110,103,45,108,101,102,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,108,103,45,53,123,112,97,100,100,105,110,103,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,108,103,45,53,44,46,112,121,45,108,103,45,53,123,112,97,100,100,105,110,103,45,116,111,112,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,108,103,45,53,44,46,112,120,45,108,103,45,53,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,108,103,45,53,44,46,112,121,45,108,103,45,53,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,108,103,45,53,44,46,112,120,45,108,103,45,53,123,112,97,100,100,105,110,103,45,108,101,102,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,108,103,45,110,49,123,109,97,114,103,105,110,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,108,103,45,110,49,44,46,109,121,45,108,103,45,110,49,123,109,97,114,103,105,110,45,116,111,112,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,108,103,45,110,49,44,46,109,120,45,108,103,45,110,49,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,108,103,45,110,49,44,46,109,121,45,108,103,45,110,49,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,108,103,45,110,49,44,46,109,120,45,108,103,45,110,49,123,109,97,114,103,105,110,45,108,101,102,116,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,108,103,45,110,50,123,109,97,114,103,105,110,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,108,103,45,110,50,44,46,109,121,45,108,103,45,110,50,123,109,97,114,103,105,110,45,116,111,112,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,108,103,45,110,50,44,46,109,120,45,108,103,45,110,50,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,108,103,45,110,50,44,46,109,121,45,108,103,45,110,50,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,108,103,45,110,50,44,46,109,120,45,108,103,45,110,50,123,109,97,114,103,105,110,45,108,101,102,116,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,108,103,45,110,51,123,109,97,114,103,105,110,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,108,103,45,110,51,44,46,109,121,45,108,103,45,110,51,123,109,97,114,103,105,110,45,116,111,112,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,108,103,45,110,51,44,46,109,120,45,108,103,45,110,51,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,108,103,45,110,51,44,46,109,121,45,108,103,45,110,51,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,108,103,45,110,51,44,46,109,120,45,108,103,45,110,51,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,108,103,45,110,52,123,109,97,114,103,105,110,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,108,103,45,110,52,44,46,109,121,45,108,103,45,110,52,123,109,97,114,103,105,110,45,116,111,112,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,108,103,45,110,52,44,46,109,120,45,108,103,45,110,52,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,108,103,45,110,52,44,46,109,121,45,108,103,45,110,52,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,108,103,45,110,52,44,46,109,120,45,108,103,45,110,52,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,108,103,45,110,53,123,109,97,114,103,105,110,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,108,103,45,110,53,44,46,109,121,45,108,103,45,110,53,123,109,97,114,103,105,110,45,116,111,112,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,108,103,45,110,53,44,46,109,120,45,108,103,45,110,53,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,108,103,45,110,53,44,46,109,121,45,108,103,45,110,53,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,108,103,45,110,53,44,46,109,120,45,108,103,45,110,53,123,109,97,114,103,105,110,45,108,101,102,116,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,108,103,45,97,117,116,111,123,109,97,114,103,105,110,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,108,103,45,97,117,116,111,44,46,109,121,45,108,103,45,97,117,116,111,123,109,97,114,103,105,110,45,116,111,112,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,108,103,45,97,117,116,111,44,46,109,120,45,108,103,45,97,117,116,111,123,109,97,114,103,105,110,45,114,105,103,104,116,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,108,103,45,97,117,116,111,44,46,109,121,45,108,103,45,97,117,116,111,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,108,103,45,97,117,116,111,44,46,109,120,45,108,103,45,97,117,116,111,123,109,97,114,103,105,110,45,108,101,102,116,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,49,50,48,48,112,120,41,123,46,109,45,120,108,45,48,123,109,97,114,103,105,110,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,120,108,45,48,44,46,109,121,45,120,108,45,48,123,109,97,114,103,105,110,45,116,111,112,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,120,108,45,48,44,46,109,120,45,120,108,45,48,123,109,97,114,103,105,110,45,114,105,103,104,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,120,108,45,48,44,46,109,121,45,120,108,45,48,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,120,108,45,48,44,46,109,120,45,120,108,45,48,123,109,97,114,103,105,110,45,108,101,102,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,109,45,120,108,45,49,123,109,97,114,103,105,110,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,120,108,45,49,44,46,109,121,45,120,108,45,49,123,109,97,114,103,105,110,45,116,111,112,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,120,108,45,49,44,46,109,120,45,120,108,45,49,123,109,97,114,103,105,110,45,114,105,103,104,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,120,108,45,49,44,46,109,121,45,120,108,45,49,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,120,108,45,49,44,46,109,120,45,120,108,45,49,123,109,97,114,103,105,110,45,108,101,102,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,120,108,45,50,123,109,97,114,103,105,110,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,120,108,45,50,44,46,109,121,45,120,108,45,50,123,109,97,114,103,105,110,45,116,111,112,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,120,108,45,50,44,46,109,120,45,120,108,45,50,123,109,97,114,103,105,110,45,114,105,103,104,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,120,108,45,50,44,46,109,121,45,120,108,45,50,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,120,108,45,50,44,46,109,120,45,120,108,45,50,123,109,97,114,103,105,110,45,108,101,102,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,120,108,45,51,123,109,97,114,103,105,110,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,120,108,45,51,44,46,109,121,45,120,108,45,51,123,109,97,114,103,105,110,45,116,111,112,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,120,108,45,51,44,46,109,120,45,120,108,45,51,123,109,97,114,103,105,110,45,114,105,103,104,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,120,108,45,51,44,46,109,121,45,120,108,45,51,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,120,108,45,51,44,46,109,120,45,120,108,45,51,123,109,97,114,103,105,110,45,108,101,102,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,120,108,45,52,123,109,97,114,103,105,110,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,120,108,45,52,44,46,109,121,45,120,108,45,52,123,109,97,114,103,105,110,45,116,111,112,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,120,108,45,52,44,46,109,120,45,120,108,45,52,123,109,97,114,103,105,110,45,114,105,103,104,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,120,108,45,52,44,46,109,121,45,120,108,45,52,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,120,108,45,52,44,46,109,120,45,120,108,45,52,123,109,97,114,103,105,110,45,108,101,102,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,120,108,45,53,123,109,97,114,103,105,110,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,120,108,45,53,44,46,109,121,45,120,108,45,53,123,109,97,114,103,105,110,45,116,111,112,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,120,108,45,53,44,46,109,120,45,120,108,45,53,123,109,97,114,103,105,110,45,114,105,103,104,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,120,108,45,53,44,46,109,121,45,120,108,45,53,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,120,108,45,53,44,46,109,120,45,120,108,45,53,123,109,97,114,103,105,110,45,108,101,102,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,120,108,45,48,123,112,97,100,100,105,110,103,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,120,108,45,48,44,46,112,121,45,120,108,45,48,123,112,97,100,100,105,110,103,45,116,111,112,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,120,108,45,48,44,46,112,120,45,120,108,45,48,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,120,108,45,48,44,46,112,121,45,120,108,45,48,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,120,108,45,48,44,46,112,120,45,120,108,45,48,123,112,97,100,100,105,110,103,45,108,101,102,116,58,48,33,105,109,112,111,114,116,97,110,116,125,46,112,45,120,108,45,49,123,112,97,100,100,105,110,103,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,120,108,45,49,44,46,112,121,45,120,108,45,49,123,112,97,100,100,105,110,103,45,116,111,112,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,120,108,45,49,44,46,112,120,45,120,108,45,49,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,120,108,45,49,44,46,112,121,45,120,108,45,49,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,120,108,45,49,44,46,112,120,45,120,108,45,49,123,112,97,100,100,105,110,103,45,108,101,102,116,58,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,120,108,45,50,123,112,97,100,100,105,110,103,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,120,108,45,50,44,46,112,121,45,120,108,45,50,123,112,97,100,100,105,110,103,45,116,111,112,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,120,108,45,50,44,46,112,120,45,120,108,45,50,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,120,108,45,50,44,46,112,121,45,120,108,45,50,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,120,108,45,50,44,46,112,120,45,120,108,45,50,123,112,97,100,100,105,110,103,45,108,101,102,116,58,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,120,108,45,51,123,112,97,100,100,105,110,103,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,120,108,45,51,44,46,112,121,45,120,108,45,51,123,112,97,100,100,105,110,103,45,116,111,112,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,120,108,45,51,44,46,112,120,45,120,108,45,51,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,120,108,45,51,44,46,112,121,45,120,108,45,51,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,120,108,45,51,44,46,112,120,45,120,108,45,51,123,112,97,100,100,105,110,103,45,108,101,102,116,58,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,120,108,45,52,123,112,97,100,100,105,110,103,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,120,108,45,52,44,46,112,121,45,120,108,45,52,123,112,97,100,100,105,110,103,45,116,111,112,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,120,108,45,52,44,46,112,120,45,120,108,45,52,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,120,108,45,52,44,46,112,121,45,120,108,45,52,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,120,108,45,52,44,46,112,120,45,120,108,45,52,123,112,97,100,100,105,110,103,45,108,101,102,116,58,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,45,120,108,45,53,123,112,97,100,100,105,110,103,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,116,45,120,108,45,53,44,46,112,121,45,120,108,45,53,123,112,97,100,100,105,110,103,45,116,111,112,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,114,45,120,108,45,53,44,46,112,120,45,120,108,45,53,123,112,97,100,100,105,110,103,45,114,105,103,104,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,98,45,120,108,45,53,44,46,112,121,45,120,108,45,53,123,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,112,108,45,120,108,45,53,44,46,112,120,45,120,108,45,53,123,112,97,100,100,105,110,103,45,108,101,102,116,58,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,120,108,45,110,49,123,109,97,114,103,105,110,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,120,108,45,110,49,44,46,109,121,45,120,108,45,110,49,123,109,97,114,103,105,110,45,116,111,112,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,120,108,45,110,49,44,46,109,120,45,120,108,45,110,49,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,120,108,45,110,49,44,46,109,121,45,120,108,45,110,49,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,120,108,45,110,49,44,46,109,120,45,120,108,45,110,49,123,109,97,114,103,105,110,45,108,101,102,116,58,45,46,50,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,120,108,45,110,50,123,109,97,114,103,105,110,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,120,108,45,110,50,44,46,109,121,45,120,108,45,110,50,123,109,97,114,103,105,110,45,116,111,112,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,120,108,45,110,50,44,46,109,120,45,120,108,45,110,50,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,120,108,45,110,50,44,46,109,121,45,120,108,45,110,50,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,120,108,45,110,50,44,46,109,120,45,120,108,45,110,50,123,109,97,114,103,105,110,45,108,101,102,116,58,45,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,120,108,45,110,51,123,109,97,114,103,105,110,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,120,108,45,110,51,44,46,109,121,45,120,108,45,110,51,123,109,97,114,103,105,110,45,116,111,112,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,120,108,45,110,51,44,46,109,120,45,120,108,45,110,51,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,120,108,45,110,51,44,46,109,121,45,120,108,45,110,51,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,120,108,45,110,51,44,46,109,120,45,120,108,45,110,51,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,120,108,45,110,52,123,109,97,114,103,105,110,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,120,108,45,110,52,44,46,109,121,45,120,108,45,110,52,123,109,97,114,103,105,110,45,116,111,112,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,120,108,45,110,52,44,46,109,120,45,120,108,45,110,52,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,120,108,45,110,52,44,46,109,121,45,120,108,45,110,52,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,120,108,45,110,52,44,46,109,120,45,120,108,45,110,52,123,109,97,114,103,105,110,45,108,101,102,116,58,45,49,46,53,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,120,108,45,110,53,123,109,97,114,103,105,110,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,120,108,45,110,53,44,46,109,121,45,120,108,45,110,53,123,109,97,114,103,105,110,45,116,111,112,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,120,108,45,110,53,44,46,109,120,45,120,108,45,110,53,123,109,97,114,103,105,110,45,114,105,103,104,116,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,120,108,45,110,53,44,46,109,121,45,120,108,45,110,53,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,120,108,45,110,53,44,46,109,120,45,120,108,45,110,53,123,109,97,114,103,105,110,45,108,101,102,116,58,45,51,114,101,109,33,105,109,112,111,114,116,97,110,116,125,46,109,45,120,108,45,97,117,116,111,123,109,97,114,103,105,110,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,116,45,120,108,45,97,117,116,111,44,46,109,121,45,120,108,45,97,117,116,111,123,109,97,114,103,105,110,45,116,111,112,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,114,45,120,108,45,97,117,116,111,44,46,109,120,45,120,108,45,97,117,116,111,123,109,97,114,103,105,110,45,114,105,103,104,116,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,98,45,120,108,45,97,117,116,111,44,46,109,121,45,120,108,45,97,117,116,111,123,109,97,114,103,105,110,45,98,111,116,116,111,109,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,46,109,108,45,120,108,45,97,117,116,111,44,46,109,120,45,120,108,45,97,117,116,111,123,109,97,114,103,105,110,45,108,101,102,116,58,97,117,116,111,33,105,109,112,111,114,116,97,110,116,125,125,46,116,101,120,116,45,109,111,110,111,115,112,97,99,101,123,102,111,110,116,45,102,97,109,105,108,121,58,83,70,77,111,110,111,45,82,101,103,117,108,97,114,44,77,101,110,108,111,44,77,111,110,97,99,111,44,67,111,110,115,111,108,97,115,44,34,76,105,98,101,114,97,116,105,111,110,32,77,111,110,111,34,44,34,67,111,117,114,105,101,114,32,78,101,119,34,44,109,111,110,111,115,112,97,99,101,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,106,117,115,116,105,102,121,123,116,101,120,116,45,97,108,105,103,110,58,106,117,115,116,105,102,121,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,119,114,97,112,123,119,104,105,116,101,45,115,112,97,99,101,58,110,111,114,109,97,108,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,110,111,119,114,97,112,123,119,104,105,116,101,45,115,112,97,99,101,58,110,111,119,114,97,112,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,116,114,117,110,99,97,116,101,123,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,59,116,101,120,116,45,111,118,101,114,102,108,111,119,58,101,108,108,105,112,115,105,115,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,119,114,97,112,125,46,116,101,120,116,45,108,101,102,116,123,116,101,120,116,45,97,108,105,103,110,58,108,101,102,116,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,114,105,103,104,116,123,116,101,120,116,45,97,108,105,103,110,58,114,105,103,104,116,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,99,101,110,116,101,114,123,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,53,55,54,112,120,41,123,46,116,101,120,116,45,115,109,45,108,101,102,116,123,116,101,120,116,45,97,108,105,103,110,58,108,101,102,116,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,115,109,45,114,105,103,104,116,123,116,101,120,116,45,97,108,105,103,110,58,114,105,103,104,116,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,115,109,45,99,101,110,116,101,114,123,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,55,54,56,112,120,41,123,46,116,101,120,116,45,109,100,45,108,101,102,116,123,116,101,120,116,45,97,108,105,103,110,58,108,101,102,116,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,109,100,45,114,105,103,104,116,123,116,101,120,116,45,97,108,105,103,110,58,114,105,103,104,116,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,109,100,45,99,101,110,116,101,114,123,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,57,57,50,112,120,41,123,46,116,101,120,116,45,108,103,45,108,101,102,116,123,116,101,120,116,45,97,108,105,103,110,58,108,101,102,116,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,108,103,45,114,105,103,104,116,123,116,101,120,116,45,97,108,105,103,110,58,114,105,103,104,116,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,108,103,45,99,101,110,116,101,114,123,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,125,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,49,50,48,48,112,120,41,123,46,116,101,120,116,45,120,108,45,108,101,102,116,123,116,101,120,116,45,97,108,105,103,110,58,108,101,102,116,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,120,108,45,114,105,103,104,116,123,116,101,120,116,45,97,108,105,103,110,58,114,105,103,104,116,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,120,108,45,99,101,110,116,101,114,123,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,33,105,109,112,111,114,116,97,110,116,125,125,46,116,101,120,116,45,108,111,119,101,114,99,97,115,101,123,116,101,120,116,45,116,114,97,110,115,102,111,114,109,58,108,111,119,101,114,99,97,115,101,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,117,112,112,101,114,99,97,115,101,123,116,101,120,116,45,116,114,97,110,115,102,111,114,109,58,117,112,112,101,114,99,97,115,101,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,99,97,112,105,116,97,108,105,122,101,123,116,101,120,116,45,116,114,97,110,115,102,111,114,109,58,99,97,112,105,116,97,108,105,122,101,33,105,109,112,111,114,116,97,110,116,125,46,102,111,110,116,45,119,101,105,103,104,116,45,108,105,103,104,116,123,102,111,110,116,45,119,101,105,103,104,116,58,51,48,48,33,105,109,112,111,114,116,97,110,116,125,46,102,111,110,116,45,119,101,105,103,104,116,45,108,105,103,104,116,101,114,123,102,111,110,116,45,119,101,105,103,104,116,58,108,105,103,104,116,101,114,33,105,109,112,111,114,116,97,110,116,125,46,102,111,110,116,45,119,101,105,103,104,116,45,110,111,114,109,97,108,123,102,111,110,116,45,119,101,105,103,104,116,58,52,48,48,33,105,109,112,111,114,116,97,110,116,125,46,102,111,110,116,45,119,101,105,103,104,116,45,98,111,108,100,123,102,111,110,116,45,119,101,105,103,104,116,58,55,48,48,33,105,109,112,111,114,116,97,110,116,125,46,102,111,110,116,45,119,101,105,103,104,116,45,98,111,108,100,101,114,123,102,111,110,116,45,119,101,105,103,104,116,58,98,111,108,100,101,114,33,105,109,112,111,114,116,97,110,116,125,46,102,111,110,116,45,105,116,97,108,105,99,123,102,111,110,116,45,115,116,121,108,101,58,105,116,97,108,105,99,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,119,104,105,116,101,123,99,111,108,111,114,58,35,102,102,102,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,112,114,105,109,97,114,121,123,99,111,108,111,114,58,35,48,48,55,98,102,102,33,105,109,112,111,114,116,97,110,116,125,97,46,116,101,120,116,45,112,114,105,109,97,114,121,58,102,111,99,117,115,44,97,46,116,101,120,116,45,112,114,105,109,97,114,121,58,104,111,118,101,114,123,99,111,108,111,114,58,35,48,48,53,54,98,51,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,115,101,99,111,110,100,97,114,121,123,99,111,108,111,114,58,35,54,99,55,53,55,100,33,105,109,112,111,114,116,97,110,116,125,97,46,116,101,120,116,45,115,101,99,111,110,100,97,114,121,58,102,111,99,117,115,44,97,46,116,101,120,116,45,115,101,99,111,110,100,97,114,121,58,104,111,118,101,114,123,99,111,108,111,114,58,35,52,57,52,102,53,52,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,115,117,99,99,101,115,115,123,99,111,108,111,114,58,35,50,56,97,55,52,53,33,105,109,112,111,114,116,97,110,116,125,97,46,116,101,120,116,45,115,117,99,99,101,115,115,58,102,111,99,117,115,44,97,46,116,101,120,116,45,115,117,99,99,101,115,115,58,104,111,118,101,114,123,99,111,108,111,114,58,35,49,57,54,57,50,99,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,105,110,102,111,123,99,111,108,111,114,58,35,49,55,97,50,98,56,33,105,109,112,111,114,116,97,110,116,125,97,46,116,101,120,116,45,105,110,102,111,58,102,111,99,117,115,44,97,46,116,101,120,116,45,105,110,102,111,58,104,111,118,101,114,123,99,111,108,111,114,58,35,48,102,54,54,55,52,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,119,97,114,110,105,110,103,123,99,111,108,111,114,58,35,102,102,99,49,48,55,33,105,109,112,111,114,116,97,110,116,125,97,46,116,101,120,116,45,119,97,114,110,105,110,103,58,102,111,99,117,115,44,97,46,116,101,120,116,45,119,97,114,110,105,110,103,58,104,111,118,101,114,123,99,111,108,111,114,58,35,98,97,56,98,48,48,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,100,97,110,103,101,114,123,99,111,108,111,114,58,35,100,99,51,53,52,53,33,105,109,112,111,114,116,97,110,116,125,97,46,116,101,120,116,45,100,97,110,103,101,114,58,102,111,99,117,115,44,97,46,116,101,120,116,45,100,97,110,103,101,114,58,104,111,118,101,114,123,99,111,108,111,114,58,35,97,55,49,100,50,97,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,108,105,103,104,116,123,99,111,108,111,114,58,35,102,56,102,57,102,97,33,105,109,112,111,114,116,97,110,116,125,97,46,116,101,120,116,45,108,105,103,104,116,58,102,111,99,117,115,44,97,46,116,101,120,116,45,108,105,103,104,116,58,104,111,118,101,114,123,99,111,108,111,114,58,35,99,98,100,51,100,97,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,100,97,114,107,123,99,111,108,111,114,58,35,51,52,51,97,52,48,33,105,109,112,111,114,116,97,110,116,125,97,46,116,101,120,116,45,100,97,114,107,58,102,111,99,117,115,44,97,46,116,101,120,116,45,100,97,114,107,58,104,111,118,101,114,123,99,111,108,111,114,58,35,49,50,49,52,49,54,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,98,111,100,121,123,99,111,108,111,114,58,35,50,49,50,53,50,57,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,109,117,116,101,100,123,99,111,108,111,114,58,35,54,99,55,53,55,100,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,98,108,97,99,107,45,53,48,123,99,111,108,111,114,58,114,103,98,97,40,48,44,48,44,48,44,46,53,41,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,119,104,105,116,101,45,53,48,123,99,111,108,111,114,58,114,103,98,97,40,50,53,53,44,50,53,53,44,50,53,53,44,46,53,41,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,104,105,100,101,123,102,111,110,116,58,48,47,48,32,97,59,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,116,101,120,116,45,115,104,97,100,111,119,58,110,111,110,101,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,58,48,125,46,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,45,110,111,110,101,123,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,98,114,101,97,107,123,119,111,114,100,45,98,114,101,97,107,58,98,114,101,97,107,45,119,111,114,100,33,105,109,112,111,114,116,97,110,116,59,111,118,101,114,102,108,111,119,45,119,114,97,112,58,98,114,101,97,107,45,119,111,114,100,33,105,109,112,111,114,116,97,110,116,125,46,116,101,120,116,45,114,101,115,101,116,123,99,111,108,111,114,58,105,110,104,101,114,105,116,33,105,109,112,111,114,116,97,110,116,125,46,118,105,115,105,98,108,101,123,118,105,115,105,98,105,108,105,116,121,58,118,105,115,105,98,108,101,33,105,109,112,111,114,116,97,110,116,125,46,105,110,118,105,115,105,98,108,101,123,118,105,115,105,98,105,108,105,116,121,58,104,105,100,100,101,110,33,105,109,112,111,114,116,97,110,116,125,64,109,101,100,105,97,32,112,114,105,110,116,123,42,44,58,58,97,102,116,101,114,44,58,58,98,101,102,111,114,101,123,116,101,120,116,45,115,104,97,100,111,119,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,59,98,111,120,45,115,104,97,100,111,119,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,125,97,58,110,111,116,40,46,98,116,110,41,123,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,117,110,100,101,114,108,105,110,101,125,97,98,98,114,91,116,105,116,108,101,93,58,58,97,102,116,101,114,123,99,111,110,116,101,110,116,58,34,32,40,34,32,97,116,116,114,40,116,105,116,108,101,41,32,34,41,34,125,112,114,101,123,119,104,105,116,101,45,115,112,97,99,101,58,112,114,101,45,119,114,97,112,33,105,109,112,111,114,116,97,110,116,125,98,108,111,99,107,113,117,111,116,101,44,112,114,101,123,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,97,100,98,53,98,100,59,112,97,103,101,45,98,114,101,97,107,45,105,110,115,105,100,101,58,97,118,111,105,100,125,116,104,101,97,100,123,100,105,115,112,108,97,121,58,116,97,98,108,101,45,104,101,97,100,101,114,45,103,114,111,117,112,125,105,109,103,44,116,114,123,112,97,103,101,45,98,114,101,97,107,45,105,110,115,105,100,101,58,97,118,111,105,100,125,104,50,44,104,51,44,112,123,111,114,112,104,97,110,115,58,51,59,119,105,100,111,119,115,58,51,125,104,50,44,104,51,123,112,97,103,101,45,98,114,101,97,107,45,97,102,116,101,114,58,97,118,111,105,100,125,64,112,97,103,101,123,115,105,122,101,58,97,51,125,98,111,100,121,123,109,105,110,45,119,105,100,116,104,58,57,57,50,112,120,33,105,109,112,111,114,116,97,110,116,125,46,99,111,110,116,97,105,110,101,114,123,109,105,110,45,119,105,100,116,104,58,57,57,50,112,120,33,105,109,112,111,114,116,97,110,116,125,46,110,97,118,98,97,114,123,100,105,115,112,108,97,121,58,110,111,110,101,125,46,98,97,100,103,101,123,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,48,48,48,125,46,116,97,98,108,101,123,98,111,114,100,101,114,45,99,111,108,108,97,112,115,101,58,99,111,108,108,97,112,115,101,33,105,109,112,111,114,116,97,110,116,125,46,116,97,98,108,101,32,116,100,44,46,116,97,98,108,101,32,116,104,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,102,102,102,33,105,109,112,111,114,116,97,110,116,125,46,116,97,98,108,101,45,98,111,114,100,101,114,101,100,32,116,100,44,46,116,97,98,108,101,45,98,111,114,100,101,114,101,100,32,116,104,123,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,100,101,101,50,101,54,33,105,109,112,111,114,116,97,110,116,125,46,116,97,98,108,101,45,100,97,114,107,123,99,111,108,111,114,58,105,110,104,101,114,105,116,125,46,116,97,98,108,101,45,100,97,114,107,32,116,98,111,100,121,43,116,98,111,100,121,44,46,116,97,98,108,101,45,100,97,114,107,32,116,100,44,46,116,97,98,108,101,45,100,97,114,107,32,116,104,44,46,116,97,98,108,101,45,100,97,114,107,32,116,104,101,97,100,32,116,104,123,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,101,101,50,101,54,125,46,116,97,98,108,101,32,46,116,104,101,97,100,45,100,97,114,107,32,116,104,123,99,111,108,111,114,58,105,110,104,101,114,105,116,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,101,101,50,101,54,125,125,10,46,98,114,105,99,107,108,97,121,101,114,123,100,105,115,112,108,97,121,58,45,119,101,98,107,105,116,45,98,111,120,59,100,105,115,112,108,97,121,58,45,119,101,98,107,105,116,45,102,108,101,120,59,100,105,115,112,108,97,121,58,45,109,115,45,102,108,101,120,98,111,120,59,100,105,115,112,108,97,121,58,102,108,101,120,59,45,119,101,98,107,105,116,45,98,111,120,45,97,108,105,103,110,58,115,116,97,114,116,59,45,119,101,98,107,105,116,45,97,108,105,103,110,45,105,116,101,109,115,58,102,108,101,120,45,115,116,97,114,116,59,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,115,116,97,114,116,59,97,108,105,103,110,45,105,116,101,109,115,58,102,108,101,120,45,115,116,97,114,116,59,45,119,101,98,107,105,116,45,98,111,120,45,112,97,99,107,58,99,101,110,116,101,114,59,45,119,101,98,107,105,116,45,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,59,45,109,115,45,102,108,101,120,45,112,97,99,107,58,99,101,110,116,101,114,59,106,117,115,116,105,102,121,45,99,111,110,116,101,110,116,58,99,101,110,116,101,114,59,45,119,101,98,107,105,116,45,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,45,109,115,45,102,108,101,120,45,119,114,97,112,58,119,114,97,112,59,102,108,101,120,45,119,114,97,112,58,119,114,97,112,125,46,98,114,105,99,107,108,97,121,101,114,45,99,111,108,117,109,110,45,115,105,122,101,114,123,119,105,100,116,104,58,49,48,48,37,59,100,105,115,112,108,97,121,58,110,111,110,101,125,64,109,101,100,105,97,32,115,99,114,101,101,110,32,97,110,100,32,40,109,105,110,45,119,105,100,116,104,58,54,52,48,112,120,41,123,46,98,114,105,99,107,108,97,121,101,114,45,99,111,108,117,109,110,45,115,105,122,101,114,123,119,105,100,116,104,58,53,48,37,125,125,64,109,101,100,105,97,32,115,99,114,101,101,110,32,97,110,100,32,40,109,105,110,45,119,105,100,116,104,58,57,56,48,112,120,41,123,46,98,114,105,99,107,108,97,121,101,114,45,99,111,108,117,109,110,45,115,105,122,101,114,123,119,105,100,116,104,58,51,51,46,51,51,51,37,125,125,64,109,101,100,105,97,32,115,99,114,101,101,110,32,97,110,100,32,40,109,105,110,45,119,105,100,116,104,58,49,50,48,48,112,120,41,123,46,98,114,105,99,107,108,97,121,101,114,45,99,111,108,117,109,110,45,115,105,122,101,114,123,119,105,100,116,104,58,50,53,37,125,125,46,98,114,105,99,107,108,97,121,101,114,45,99,111,108,117,109,110,123,45,119,101,98,107,105,116,45,98,111,120,45,102,108,101,120,58,49,59,45,119,101,98,107,105,116,45,102,108,101,120,58,49,59,45,109,115,45,102,108,101,120,58,49,59,102,108,101,120,58,49,59,112,97,100,100,105,110,103,45,108,101,102,116,58,53,112,120,59,112,97,100,100,105,110,103,45,114,105,103,104,116,58,53,112,120,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,98,116,110,123,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,114,103,98,97,40,50,53,53,44,32,50,53,53,44,32,50,53,53,44,32,48,46,52,41,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,114,103,98,97,40,48,44,32,48,44,32,48,44,32,48,46,50,41,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,51,112,120,59,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,104,101,105,103,104,116,58,50,48,112,120,59,45,119,101,98,107,105,116,45,116,114,97,110,115,105,116,105,111,110,58,97,108,108,32,49,53,48,109,115,32,108,105,110,101,97,114,59,116,114,97,110,115,105,116,105,111,110,58,97,108,108,32,49,53,48,109,115,32,108,105,110,101,97,114,59,119,105,100,116,104,58,50,48,112,120,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,98,116,110,58,104,111,118,101,114,123,45,119,101,98,107,105,116,45,98,111,120,45,115,104,97,100,111,119,58,48,32,50,112,120,32,51,112,120,32,114,103,98,97,40,48,44,32,48,44,32,48,44,32,48,46,49,41,59,98,111,120,45,115,104,97,100,111,119,58,48,32,50,112,120,32,51,112,120,32,114,103,98,97,40,48,44,32,48,44,32,48,44,32,48,46,49,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,98,116,110,32,43,32,46,98,116,110,123,109,97,114,103,105,110,45,108,101,102,116,58,53,112,120,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,98,116,110,46,105,99,111,110,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,98,116,110,46,105,99,111,110,58,58,98,101,102,111,114,101,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,104,101,105,103,104,116,58,49,52,112,120,59,108,101,102,116,58,53,48,37,59,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,53,48,37,59,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,40,45,53,48,37,44,32,45,53,48,37,41,59,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,40,45,53,48,37,44,32,45,53,48,37,41,59,119,105,100,116,104,58,49,52,112,120,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,98,116,110,45,103,114,111,117,112,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,104,101,105,103,104,116,58,50,53,112,120,59,108,105,110,101,45,104,101,105,103,104,116,58,50,53,112,120,125,46,105,116,114,101,101,45,109,101,110,117,123,98,97,99,107,103,114,111,117,110,100,58,35,100,100,100,59,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,99,52,99,52,99,52,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,51,112,120,59,102,111,110,116,45,102,97,109,105,108,121,58,115,97,110,115,45,115,101,114,105,102,59,108,105,115,116,45,115,116,121,108,101,58,110,111,110,101,59,109,97,114,103,105,110,58,48,59,109,105,110,45,119,105,100,116,104,58,49,53,48,112,120,59,112,97,100,100,105,110,103,58,48,59,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,122,45,105,110,100,101,120,58,49,48,125,46,105,116,114,101,101,45,109,101,110,117,32,97,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,112,97,100,100,105,110,103,58,51,112,120,32,56,112,120,125,46,105,116,114,101,101,45,109,101,110,117,32,97,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,58,114,103,98,97,40,50,49,56,44,32,50,53,48,44,32,50,53,53,44,32,48,46,53,41,59,99,111,108,111,114,58,114,103,98,97,40,49,54,52,44,32,50,51,52,44,32,50,52,53,44,32,48,46,53,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,123,45,119,101,98,107,105,116,45,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,59,45,109,111,122,45,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,59,45,109,115,45,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,59,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,125,46,105,110,115,112,105,114,101,45,116,114,101,101,58,102,111,99,117,115,123,111,117,116,108,105,110,101,58,110,111,110,101,125,46,105,110,115,112,105,114,101,45,116,114,101,101,44,46,105,110,115,112,105,114,101,45,116,114,101,101,32,42,123,45,119,101,98,107,105,116,45,98,111,120,45,115,105,122,105,110,103,58,98,111,114,100,101,114,45,98,111,120,59,98,111,120,45,115,105,122,105,110,103,58,98,111,114,100,101,114,45,98,111,120,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,111,108,123,108,105,115,116,45,115,116,121,108,101,58,110,111,110,101,59,109,97,114,103,105,110,58,48,59,112,97,100,100,105,110,103,58,48,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,111,108,32,111,108,123,112,97,100,100,105,110,103,45,108,101,102,116,58,50,48,112,120,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,99,111,108,108,97,112,115,101,100,32,62,32,111,108,44,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,104,105,100,100,101,110,123,100,105,115,112,108,97,121,58,110,111,110,101,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,108,105,32,62,32,46,116,105,116,108,101,45,119,114,97,112,123,109,105,110,45,104,101,105,103,104,116,58,50,53,112,120,59,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,122,45,105,110,100,101,120,58,50,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,116,111,103,103,108,101,123,104,101,105,103,104,116,58,50,53,112,120,59,108,101,102,116,58,48,59,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,48,59,119,105,100,116,104,58,50,53,112,120,59,122,45,105,110,100,101,120,58,50,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,116,111,103,103,108,101,58,58,98,101,102,111,114,101,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,108,101,102,116,58,53,48,37,59,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,53,48,37,59,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,40,45,53,48,37,44,32,45,53,48,37,41,59,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,40,45,53,48,37,44,32,45,53,48,37,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,91,116,121,112,101,61,34,99,104,101,99,107,98,111,120,34,93,123,108,101,102,116,58,50,50,112,120,59,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,55,112,120,59,119,105,100,116,104,58,50,48,112,120,59,122,45,105,110,100,101,120,58,50,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,116,105,116,108,101,123,99,117,114,115,111,114,58,100,101,102,97,117,108,116,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,104,101,105,103,104,116,58,50,53,112,120,59,108,105,110,101,45,104,101,105,103,104,116,58,50,53,112,120,59,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,59,112,97,100,100,105,110,103,45,108,101,102,116,58,52,50,112,120,59,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,116,101,120,116,45,111,118,101,114,102,108,111,119,58,101,108,108,105,112,115,105,115,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,109,105,100,100,108,101,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,119,114,97,112,59,122,45,105,110,100,101,120,58,49,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,116,105,116,108,101,46,108,111,97,100,45,109,111,114,101,123,99,111,108,111,114,58,35,52,55,54,99,98,56,59,99,117,114,115,111,114,58,112,111,105,110,116,101,114,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,116,105,116,108,101,46,108,111,97,100,45,109,111,114,101,58,104,111,118,101,114,123,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,117,110,100,101,114,108,105,110,101,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,116,105,116,108,101,58,58,98,101,102,111,114,101,123,108,101,102,116,58,50,52,112,120,59,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,53,48,37,59,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,89,40,45,53,48,37,41,59,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,89,40,45,53,48,37,41,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,116,111,112,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,116,105,116,108,101,58,102,111,99,117,115,123,111,117,116,108,105,110,101,58,110,111,110,101,125,46,105,110,115,112,105,114,101,45,116,114,101,101,46,100,114,97,103,45,97,110,100,45,100,114,111,112,32,108,105,58,110,111,116,40,46,100,114,111,112,45,116,97,114,103,101,116,41,123,111,112,97,99,105,116,121,58,48,46,53,125,46,100,114,97,103,45,116,97,114,103,101,116,105,110,103,46,100,114,97,103,45,116,97,114,103,101,116,105,110,103,45,105,110,115,101,114,116,32,62,32,46,116,105,116,108,101,45,119,114,97,112,32,62,32,46,116,105,116,108,101,44,46,100,114,97,103,45,116,97,114,103,101,116,105,110,103,46,100,114,97,103,45,116,97,114,103,101,116,105,110,103,45,105,110,115,101,114,116,46,105,110,115,112,105,114,101,45,116,114,101,101,123,98,111,114,100,101,114,58,49,112,120,32,115,111,108,105,100,32,35,50,100,97,100,99,53,125,46,100,114,97,103,45,116,97,114,103,101,116,105,110,103,46,100,114,97,103,45,116,97,114,103,101,116,105,110,103,45,97,98,111,118,101,32,62,32,46,116,105,116,108,101,45,119,114,97,112,32,62,32,46,116,105,116,108,101,123,98,111,114,100,101,114,45,116,111,112,58,51,112,120,32,115,111,108,105,100,32,35,50,100,97,100,99,53,125,46,100,114,97,103,45,116,97,114,103,101,116,105,110,103,46,100,114,97,103,45,116,97,114,103,101,116,105,110,103,45,98,101,108,111,119,32,62,32,46,116,105,116,108,101,45,119,114,97,112,32,62,32,46,116,105,116,108,101,123,98,111,114,100,101,114,45,98,111,116,116,111,109,58,51,112,120,32,115,111,108,105,100,32,35,50,100,97,100,99,53,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,101,100,105,116,97,98,108,101,32,102,111,114,109,123,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,104,101,105,103,104,116,58,50,53,112,120,59,108,105,110,101,45,104,101,105,103,104,116,58,50,53,112,120,59,112,97,100,100,105,110,103,45,116,111,112,58,50,112,120,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,101,100,105,116,97,98,108,101,32,102,111,114,109,32,105,110,112,117,116,123,104,101,105,103,104,116,58,50,48,112,120,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,101,100,105,116,97,98,108,101,32,102,111,114,109,32,46,98,116,110,44,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,101,100,105,116,97,98,108,101,32,102,111,114,109,32,105,110,112,117,116,123,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,116,111,112,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,101,100,105,116,97,98,108,101,32,62,32,46,98,116,110,45,103,114,111,117,112,123,100,105,115,112,108,97,121,58,110,111,110,101,59,112,97,100,100,105,110,103,45,116,111,112,58,50,112,120,59,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,114,105,103,104,116,58,49,48,112,120,59,122,45,105,110,100,101,120,58,51,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,101,100,105,116,97,98,108,101,58,104,111,118,101,114,32,62,32,46,98,116,110,45,103,114,111,117,112,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,105,110,112,117,116,32,43,32,46,98,116,110,45,103,114,111,117,112,123,109,97,114,103,105,110,45,108,101,102,116,58,49,48,112,120,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,62,32,46,98,116,110,46,105,99,111,110,123,109,97,114,103,105,110,45,108,101,102,116,58,50,112,120,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,62,32,111,108,32,62,32,46,102,111,108,100,101,114,58,102,105,114,115,116,45,99,104,105,108,100,58,110,111,116,40,58,111,110,108,121,45,99,104,105,108,100,41,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,112,110,103,59,98,97,115,101,54,52,44,105,86,66,79,82,119,48,75,71,103,111,65,65,65,65,78,83,85,104,69,85,103,65,65,65,65,69,65,65,65,65,77,67,65,89,65,65,65,67,106,105,57,100,88,65,65,65,65,70,85,108,69,81,86,81,73,87,50,77,56,100,43,72,83,102,48,89,71,66,103,89,71,82,112,74,90,65,74,50,117,70,75,99,112,52,72,102,112,65,65,65,65,65,69,108,70,84,107,83,117,81,109,67,67,34,41,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,49,49,112,120,32,49,51,112,120,59,98,97,99,107,103,114,111,117,110,100,45,114,101,112,101,97,116,58,110,111,45,114,101,112,101,97,116,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,102,111,108,100,101,114,58,108,97,115,116,45,99,104,105,108,100,58,110,111,116,40,58,111,110,108,121,45,99,104,105,108,100,41,44,46,105,110,115,112,105,114,101,45,116,114,101,101,32,108,105,32,46,102,111,108,100,101,114,58,108,97,115,116,45,99,104,105,108,100,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,112,110,103,59,98,97,115,101,54,52,44,105,86,66,79,82,119,48,75,71,103,111,65,65,65,65,78,83,85,104,69,85,103,65,65,65,65,69,65,65,65,65,77,67,65,89,65,65,65,67,106,105,57,100,88,65,65,65,65,70,85,108,69,81,86,81,73,87,50,77,56,100,43,72,83,102,48,89,71,66,103,89,71,82,112,74,90,65,74,50,117,70,75,99,112,52,72,102,112,65,65,65,65,65,69,108,70,84,107,83,117,81,109,67,67,34,41,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,49,49,112,120,32,48,59,98,97,99,107,103,114,111,117,110,100,45,114,101,112,101,97,116,58,110,111,45,114,101,112,101,97,116,125,46,105,110,115,112,105,114,101,45,116,114,101,101,46,101,100,105,116,97,98,108,101,45,97,100,100,32,62,32,111,108,32,62,32,46,102,111,108,100,101,114,58,108,97,115,116,45,99,104,105,108,100,58,110,111,116,40,58,111,110,108,121,45,99,104,105,108,100,41,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,112,110,103,59,98,97,115,101,54,52,44,105,86,66,79,82,119,48,75,71,103,111,65,65,65,65,78,83,85,104,69,85,103,65,65,65,65,69,65,65,65,65,89,67,65,89,65,65,65,65,55,122,74,102,97,65,65,65,65,70,85,108,69,81,86,81,73,87,50,77,56,100,43,72,83,102,48,89,71,66,103,89,71,82,114,113,121,65,66,75,101,75,85,48,83,86,43,116,50,65,65,65,65,65,69,108,70,84,107,83,117,81,109,67,67,34,41,59,98,97,99,107,103,114,111,117,110,100,45,114,101,112,101,97,116,58,114,101,112,101,97,116,45,121,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,62,32,111,108,32,46,101,120,112,97,110,100,101,100,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,58,110,111,116,40,58,102,105,114,115,116,45,99,104,105,108,100,41,44,46,105,110,115,112,105,114,101,45,116,114,101,101,32,108,105,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,112,110,103,59,98,97,115,101,54,52,44,105,86,66,79,82,119,48,75,71,103,111,65,65,65,65,78,83,85,104,69,85,103,65,65,65,65,69,65,65,65,65,89,67,65,89,65,65,65,65,55,122,74,102,97,65,65,65,65,70,85,108,69,81,86,81,73,87,50,77,56,100,43,72,83,102,48,89,71,66,103,89,71,82,114,113,121,65,66,75,101,75,85,48,83,86,43,116,50,65,65,65,65,65,69,108,70,84,107,83,117,81,109,67,67,34,41,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,49,49,112,120,32,48,59,98,97,99,107,103,114,111,117,110,100,45,114,101,112,101,97,116,58,110,111,45,114,101,112,101,97,116,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,108,105,46,101,120,112,97,110,100,101,100,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,32,62,32,111,108,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,112,110,103,59,98,97,115,101,54,52,44,105,86,66,79,82,119,48,75,71,103,111,65,65,65,65,78,83,85,104,69,85,103,65,65,65,65,69,65,65,65,65,89,67,65,89,65,65,65,65,55,122,74,102,97,65,65,65,65,70,85,108,69,81,86,81,73,87,50,77,56,100,43,72,83,102,48,89,71,66,103,89,71,82,114,113,121,65,66,75,101,75,85,48,83,86,43,116,50,65,65,65,65,65,69,108,70,84,107,83,117,81,109,67,67,34,41,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,49,49,112,120,32,48,59,98,97,99,107,103,114,111,117,110,100,45,114,101,112,101,97,116,58,114,101,112,101,97,116,45,121,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,108,105,46,101,120,112,97,110,100,101,100,46,102,111,108,100,101,114,58,110,111,116,40,46,108,111,97,100,105,110,103,41,32,62,32,46,116,105,116,108,101,45,119,114,97,112,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,112,110,103,59,98,97,115,101,54,52,44,105,86,66,79,82,119,48,75,71,103,111,65,65,65,65,78,83,85,104,69,85,103,65,65,65,65,69,65,65,65,65,77,67,65,89,65,65,65,67,106,105,57,100,88,65,65,65,65,70,85,108,69,81,86,81,73,87,50,77,56,100,43,72,83,102,48,89,71,66,103,89,71,82,112,74,90,65,74,50,117,70,75,99,112,52,72,102,112,65,65,65,65,65,69,108,70,84,107,83,117,81,109,67,67,34,41,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,51,49,112,120,32,49,51,112,120,59,98,97,99,107,103,114,111,117,110,100,45,114,101,112,101,97,116,58,110,111,45,114,101,112,101,97,116,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,108,101,97,102,58,110,111,116,40,58,108,97,115,116,45,99,104,105,108,100,41,58,110,111,116,40,46,100,101,116,97,99,104,101,100,41,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,112,110,103,59,98,97,115,101,54,52,44,105,86,66,79,82,119,48,75,71,103,111,65,65,65,65,78,83,85,104,69,85,103,65,65,65,65,48,65,65,65,65,89,67,65,89,65,65,65,65,104,56,72,100,85,65,65,65,65,78,48,108,69,81,86,81,52,84,50,77,56,100,43,72,83,102,121,77,68,80,85,89,71,69,103,66,74,105,109,72,109,77,111,55,97,66,65,109,75,48,100,67,68,74,103,108,52,105,111,67,108,68,71,76,111,48,100,66,68,68,122,48,83,77,117,53,111,50,111,77,70,70,103,66,88,98,69,101,73,48,88,119,89,73,119,65,65,65,65,66,74,82,85,53,69,114,107,74,103,103,103,65,65,34,41,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,49,49,112,120,32,48,59,98,97,99,107,103,114,111,117,110,100,45,114,101,112,101,97,116,58,110,111,45,114,101,112,101,97,116,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,108,101,97,102,58,108,97,115,116,45,99,104,105,108,100,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,112,110,103,59,98,97,115,101,54,52,44,105,86,66,79,82,119,48,75,71,103,111,65,65,65,65,78,83,85,104,69,85,103,65,65,65,65,48,65,65,65,65,78,67,65,89,65,65,65,66,121,54,43,82,56,65,65,65,65,75,107,108,69,81,86,81,111,85,50,77,56,100,43,72,83,102,121,77,68,80,85,89,71,69,103,66,74,105,109,72,109,77,111,55,97,66,65,109,75,48,100,67,68,74,103,108,52,105,111,67,108,68,71,74,111,65,71,85,90,77,51,50,90,48,85,56,116,65,65,65,65,65,69,108,70,84,107,83,117,81,109,67,67,34,41,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,49,49,112,120,32,48,59,98,97,99,107,103,114,111,117,110,100,45,114,101,112,101,97,116,58,110,111,45,114,101,112,101,97,116,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,108,101,97,102,46,100,101,116,97,99,104,101,100,58,108,97,115,116,45,99,104,105,108,100,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,112,110,103,59,98,97,115,101,54,52,44,105,86,66,79,82,119,48,75,71,103,111,65,65,65,65,78,83,85,104,69,85,103,65,65,65,65,69,65,65,65,65,77,67,65,89,65,65,65,67,106,105,57,100,88,65,65,65,65,70,85,108,69,81,86,81,73,87,50,77,56,100,43,72,83,102,48,89,71,66,103,89,71,82,112,74,90,65,74,50,117,70,75,99,112,52,72,102,112,65,65,65,65,65,69,108,70,84,107,83,117,81,109,67,67,34,41,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,49,49,112,120,32,48,59,98,97,99,107,103,114,111,117,110,100,45,114,101,112,101,97,116,58,110,111,45,114,101,112,101,97,116,125,46,105,110,115,112,105,114,101,45,116,114,101,101,46,101,100,105,116,97,98,108,101,45,97,100,100,32,62,32,111,108,32,62,32,46,108,101,97,102,58,108,97,115,116,45,99,104,105,108,100,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,112,110,103,59,98,97,115,101,54,52,44,105,86,66,79,82,119,48,75,71,103,111,65,65,65,65,78,83,85,104,69,85,103,65,65,65,65,48,65,65,65,65,89,67,65,89,65,65,65,65,104,56,72,100,85,65,65,65,65,78,48,108,69,81,86,81,52,84,50,77,56,100,43,72,83,102,121,77,68,80,85,89,71,69,103,66,74,105,109,72,109,77,111,55,97,66,65,109,75,48,100,67,68,74,103,108,52,105,111,67,108,68,71,76,111,48,100,66,68,68,122,48,83,77,117,53,111,50,111,77,70,70,103,66,88,98,69,101,73,48,88,119,89,73,119,65,65,65,65,66,74,82,85,53,69,114,107,74,103,103,103,65,65,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,48,32,48,59,98,97,99,107,103,114,111,117,110,100,45,114,101,112,101,97,116,58,110,111,45,114,101,112,101,97,116,59,99,111,110,116,101,110,116,58,39,39,59,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,104,101,105,103,104,116,58,49,52,112,120,59,119,105,100,116,104,58,49,52,112,120,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,99,104,101,99,107,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,54,97,54,97,54,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,50,55,37,50,48,52,108,45,49,53,37,50,48,49,53,45,55,45,55,45,53,37,50,48,53,37,50,48,49,50,37,50,48,49,50,37,50,48,50,48,45,50,48,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,99,104,101,99,107,58,104,111,118,101,114,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,48,99,99,99,48,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,50,55,37,50,48,52,108,45,49,53,37,50,48,49,53,45,55,45,55,45,53,37,50,48,53,37,50,48,49,50,37,50,48,49,50,37,50,48,50,48,45,50,48,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,99,111,108,108,97,112,115,101,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,50,52,37,50,48,50,52,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,97,97,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,52,37,50,48,49,104,49,54,113,49,46,50,52,50,37,50,48,48,37,50,48,50,46,49,50,49,37,50,48,48,46,56,55,57,116,48,46,56,55,57,37,50,48,50,46,49,50,49,118,49,54,113,48,37,50,48,49,46,50,52,50,45,48,46,56,55,57,37,50,48,50,46,49,50,49,116,45,50,46,49,50,49,37,50,48,48,46,56,55,57,104,45,49,54,113,45,49,46,50,52,50,37,50,48,48,45,50,46,49,50,49,45,48,46,56,55,57,116,45,48,46,56,55,57,45,50,46,49,50,49,118,45,49,54,113,48,45,49,46,50,52,50,37,50,48,48,46,56,55,57,45,50,46,49,50,49,116,50,46,49,50,49,45,48,46,56,55,57,122,77,50,48,37,50,48,51,104,45,49,54,113,45,48,46,52,49,52,37,50,48,48,45,48,46,55,48,55,37,50,48,48,46,50,57,51,116,45,48,46,50,57,51,37,50,48,48,46,55,48,55,118,49,54,113,48,37,50,48,48,46,52,49,52,37,50,48,48,46,50,57,51,37,50,48,48,46,55,48,55,116,48,46,55,48,55,37,50,48,48,46,50,57,51,104,49,54,113,48,46,52,49,52,37,50,48,48,37,50,48,48,46,55,48,55,45,48,46,50,57,51,116,48,46,50,57,51,45,48,46,55,48,55,118,45,49,54,113,48,45,48,46,52,49,52,45,48,46,50,57,51,45,48,46,55,48,55,116,45,48,46,55,48,55,45,48,46,50,57,51,122,77,56,37,50,48,49,49,104,56,113,48,46,52,49,52,37,50,48,48,37,50,48,48,46,55,48,55,37,50,48,48,46,50,57,51,116,48,46,50,57,51,37,50,48,48,46,55,48,55,45,48,46,50,57,51,37,50,48,48,46,55,48,55,45,48,46,55,48,55,37,50,48,48,46,50,57,51,104,45,56,113,45,48,46,52,49,52,37,50,48,48,45,48,46,55,48,55,45,48,46,50,57,51,116,45,48,46,50,57,51,45,48,46,55,48,55,37,50,48,48,46,50,57,51,45,48,46,55,48,55,37,50,48,48,46,55,48,55,45,48,46,50,57,51,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,41,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,119,104,105,116,101,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,51,112,120,59,109,97,114,103,105,110,45,108,101,102,116,58,45,49,112,120,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,99,114,111,115,115,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,54,97,54,97,54,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,51,49,46,55,48,56,37,50,48,50,53,46,55,48,56,99,45,48,45,48,45,48,45,48,45,48,45,48,108,45,57,46,55,48,56,45,57,46,55,48,56,37,50,48,57,46,55,48,56,45,57,46,55,48,56,99,48,45,48,37,50,48,48,45,48,37,50,48,48,45,48,37,50,48,48,46,49,48,53,45,48,46,49,48,53,37,50,48,48,46,49,56,45,48,46,50,50,55,37,50,48,48,46,50,50,57,45,48,46,51,53,55,37,50,48,48,46,49,51,51,45,48,46,51,53,54,37,50,48,48,46,48,53,55,45,48,46,55,55,49,45,48,46,50,50,57,45,49,46,48,53,55,108,45,52,46,53,56,54,45,52,46,53,56,54,99,45,48,46,50,56,54,45,48,46,50,56,54,45,48,46,55,48,50,45,48,46,51,54,49,45,49,46,48,53,55,45,48,46,50,50,57,45,48,46,49,51,37,50,48,48,46,48,52,56,45,48,46,50,53,50,37,50,48,48,46,49,50,52,45,48,46,51,53,55,37,50,48,48,46,50,50,56,37,50,48,48,37,50,48,48,45,48,37,50,48,48,45,48,37,50,48,48,108,45,57,46,55,48,56,37,50,48,57,46,55,48,56,45,57,46,55,48,56,45,57,46,55,48,56,99,45,48,45,48,45,48,45,48,45,48,45,48,45,48,46,49,48,53,45,48,46,49,48,52,45,48,46,50,50,55,45,48,46,49,56,45,48,46,51,53,55,45,48,46,50,50,56,45,48,46,51,53,54,45,48,46,49,51,51,45,48,46,55,55,49,45,48,46,48,53,55,45,49,46,48,53,55,37,50,48,48,46,50,50,57,108,45,52,46,53,56,54,37,50,48,52,46,53,56,54,99,45,48,46,50,56,54,37,50,48,48,46,50,56,54,45,48,46,51,54,49,37,50,48,48,46,55,48,50,45,48,46,50,50,57,37,50,48,49,46,48,53,55,37,50,48,48,46,48,52,57,37,50,48,48,46,49,51,37,50,48,48,46,49,50,52,37,50,48,48,46,50,53,50,37,50,48,48,46,50,50,57,37,50,48,48,46,51,53,55,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,108,57,46,55,48,56,37,50,48,57,46,55,48,56,45,57,46,55,48,56,37,50,48,57,46,55,48,56,99,45,48,37,50,48,48,45,48,37,50,48,48,45,48,37,50,48,48,45,48,46,49,48,52,37,50,48,48,46,49,48,53,45,48,46,49,56,37,50,48,48,46,50,50,55,45,48,46,50,50,57,37,50,48,48,46,51,53,55,45,48,46,49,51,51,37,50,48,48,46,51,53,53,45,48,46,48,53,55,37,50,48,48,46,55,55,49,37,50,48,48,46,50,50,57,37,50,48,49,46,48,53,55,108,52,46,53,56,54,37,50,48,52,46,53,56,54,99,48,46,50,56,54,37,50,48,48,46,50,56,54,37,50,48,48,46,55,48,50,37,50,48,48,46,51,54,49,37,50,48,49,46,48,53,55,37,50,48,48,46,50,50,57,37,50,48,48,46,49,51,45,48,46,48,52,57,37,50,48,48,46,50,53,50,45,48,46,49,50,52,37,50,48,48,46,51,53,55,45,48,46,50,50,57,37,50,48,48,45,48,37,50,48,48,45,48,37,50,48,48,45,48,108,57,46,55,48,56,45,57,46,55,48,56,37,50,48,57,46,55,48,56,37,50,48,57,46,55,48,56,99,48,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,46,49,48,53,37,50,48,48,46,49,48,53,37,50,48,48,46,50,50,55,37,50,48,48,46,49,56,37,50,48,48,46,51,53,55,37,50,48,48,46,50,50,57,37,50,48,48,46,51,53,54,37,50,48,48,46,49,51,51,37,50,48,48,46,55,55,49,37,50,48,48,46,48,53,55,37,50,48,49,46,48,53,55,45,48,46,50,50,57,108,52,46,53,56,54,45,52,46,53,56,54,99,48,46,50,56,54,45,48,46,50,56,54,37,50,48,48,46,51,54,50,45,48,46,55,48,50,37,50,48,48,46,50,50,57,45,49,46,48,53,55,45,48,46,48,52,57,45,48,46,49,51,45,48,46,49,50,52,45,48,46,50,53,50,45,48,46,50,50,57,45,48,46,51,53,55,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,99,114,111,115,115,58,104,111,118,101,114,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,99,48,48,37,50,50,37,50,48,100,37,51,68,37,50,50,77,51,49,46,55,48,56,37,50,48,50,53,46,55,48,56,99,45,48,45,48,45,48,45,48,45,48,45,48,108,45,57,46,55,48,56,45,57,46,55,48,56,37,50,48,57,46,55,48,56,45,57,46,55,48,56,99,48,45,48,37,50,48,48,45,48,37,50,48,48,45,48,37,50,48,48,46,49,48,53,45,48,46,49,48,53,37,50,48,48,46,49,56,45,48,46,50,50,55,37,50,48,48,46,50,50,57,45,48,46,51,53,55,37,50,48,48,46,49,51,51,45,48,46,51,53,54,37,50,48,48,46,48,53,55,45,48,46,55,55,49,45,48,46,50,50,57,45,49,46,48,53,55,108,45,52,46,53,56,54,45,52,46,53,56,54,99,45,48,46,50,56,54,45,48,46,50,56,54,45,48,46,55,48,50,45,48,46,51,54,49,45,49,46,48,53,55,45,48,46,50,50,57,45,48,46,49,51,37,50,48,48,46,48,52,56,45,48,46,50,53,50,37,50,48,48,46,49,50,52,45,48,46,51,53,55,37,50,48,48,46,50,50,56,37,50,48,48,37,50,48,48,45,48,37,50,48,48,45,48,37,50,48,48,108,45,57,46,55,48,56,37,50,48,57,46,55,48,56,45,57,46,55,48,56,45,57,46,55,48,56,99,45,48,45,48,45,48,45,48,45,48,45,48,45,48,46,49,48,53,45,48,46,49,48,52,45,48,46,50,50,55,45,48,46,49,56,45,48,46,51,53,55,45,48,46,50,50,56,45,48,46,51,53,54,45,48,46,49,51,51,45,48,46,55,55,49,45,48,46,48,53,55,45,49,46,48,53,55,37,50,48,48,46,50,50,57,108,45,52,46,53,56,54,37,50,48,52,46,53,56,54,99,45,48,46,50,56,54,37,50,48,48,46,50,56,54,45,48,46,51,54,49,37,50,48,48,46,55,48,50,45,48,46,50,50,57,37,50,48,49,46,48,53,55,37,50,48,48,46,48,52,57,37,50,48,48,46,49,51,37,50,48,48,46,49,50,52,37,50,48,48,46,50,53,50,37,50,48,48,46,50,50,57,37,50,48,48,46,51,53,55,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,108,57,46,55,48,56,37,50,48,57,46,55,48,56,45,57,46,55,48,56,37,50,48,57,46,55,48,56,99,45,48,37,50,48,48,45,48,37,50,48,48,45,48,37,50,48,48,45,48,46,49,48,52,37,50,48,48,46,49,48,53,45,48,46,49,56,37,50,48,48,46,50,50,55,45,48,46,50,50,57,37,50,48,48,46,51,53,55,45,48,46,49,51,51,37,50,48,48,46,51,53,53,45,48,46,48,53,55,37,50,48,48,46,55,55,49,37,50,48,48,46,50,50,57,37,50,48,49,46,48,53,55,108,52,46,53,56,54,37,50,48,52,46,53,56,54,99,48,46,50,56,54,37,50,48,48,46,50,56,54,37,50,48,48,46,55,48,50,37,50,48,48,46,51,54,49,37,50,48,49,46,48,53,55,37,50,48,48,46,50,50,57,37,50,48,48,46,49,51,45,48,46,48,52,57,37,50,48,48,46,50,53,50,45,48,46,49,50,52,37,50,48,48,46,51,53,55,45,48,46,50,50,57,37,50,48,48,45,48,37,50,48,48,45,48,37,50,48,48,45,48,108,57,46,55,48,56,45,57,46,55,48,56,37,50,48,57,46,55,48,56,37,50,48,57,46,55,48,56,99,48,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,37,50,48,48,46,49,48,53,37,50,48,48,46,49,48,53,37,50,48,48,46,50,50,55,37,50,48,48,46,49,56,37,50,48,48,46,51,53,55,37,50,48,48,46,50,50,57,37,50,48,48,46,51,53,54,37,50,48,48,46,49,51,51,37,50,48,48,46,55,55,49,37,50,48,48,46,48,53,55,37,50,48,49,46,48,53,55,45,48,46,50,50,57,108,52,46,53,56,54,45,52,46,53,56,54,99,48,46,50,56,54,45,48,46,50,56,54,37,50,48,48,46,51,54,50,45,48,46,55,48,50,37,50,48,48,46,50,50,57,45,49,46,48,53,55,45,48,46,48,52,57,45,48,46,49,51,45,48,46,49,50,52,45,48,46,50,53,50,45,48,46,50,50,57,45,48,46,51,53,55,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,101,120,112,97,110,100,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,50,52,37,50,48,50,52,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,97,97,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,52,37,50,48,49,104,49,54,113,49,46,50,52,50,37,50,48,48,37,50,48,50,46,49,50,49,37,50,48,48,46,56,55,57,116,48,46,56,55,57,37,50,48,50,46,49,50,49,118,49,54,113,48,37,50,48,49,46,50,52,50,45,48,46,56,55,57,37,50,48,50,46,49,50,49,116,45,50,46,49,50,49,37,50,48,48,46,56,55,57,104,45,49,54,113,45,49,46,50,52,50,37,50,48,48,45,50,46,49,50,49,45,48,46,56,55,57,116,45,48,46,56,55,57,45,50,46,49,50,49,118,45,49,54,113,48,45,49,46,50,52,50,37,50,48,48,46,56,55,57,45,50,46,49,50,49,116,50,46,49,50,49,45,48,46,56,55,57,122,77,50,48,37,50,48,51,104,45,49,54,113,45,48,46,52,49,52,37,50,48,48,45,48,46,55,48,55,37,50,48,48,46,50,57,51,116,45,48,46,50,57,51,37,50,48,48,46,55,48,55,118,49,54,113,48,37,50,48,48,46,52,49,52,37,50,48,48,46,50,57,51,37,50,48,48,46,55,48,55,116,48,46,55,48,55,37,50,48,48,46,50,57,51,104,49,54,113,48,46,52,49,52,37,50,48,48,37,50,48,48,46,55,48,55,45,48,46,50,57,51,116,48,46,50,57,51,45,48,46,55,48,55,118,45,49,54,113,48,45,48,46,52,49,52,45,48,46,50,57,51,45,48,46,55,48,55,116,45,48,46,55,48,55,45,48,46,50,57,51,122,77,49,50,37,50,48,55,113,48,46,52,49,52,37,50,48,48,37,50,48,48,46,55,48,55,37,50,48,48,46,50,57,51,116,48,46,50,57,51,37,50,48,48,46,55,48,55,118,51,104,51,113,48,46,52,49,52,37,50,48,48,37,50,48,48,46,55,48,55,37,50,48,48,46,50,57,51,116,48,46,50,57,51,37,50,48,48,46,55,48,55,45,48,46,50,57,51,37,50,48,48,46,55,48,55,45,48,46,55,48,55,37,50,48,48,46,50,57,51,104,45,51,118,51,113,48,37,50,48,48,46,52,49,52,45,48,46,50,57,51,37,50,48,48,46,55,48,55,116,45,48,46,55,48,55,37,50,48,48,46,50,57,51,45,48,46,55,48,55,45,48,46,50,57,51,45,48,46,50,57,51,45,48,46,55,48,55,118,45,51,104,45,51,113,45,48,46,52,49,52,37,50,48,48,45,48,46,55,48,55,45,48,46,50,57,51,116,45,48,46,50,57,51,45,48,46,55,48,55,37,50,48,48,46,50,57,51,45,48,46,55,48,55,37,50,48,48,46,55,48,55,45,48,46,50,57,51,104,51,118,45,51,113,48,45,48,46,52,49,52,37,50,48,48,46,50,57,51,45,48,46,55,48,55,116,48,46,55,48,55,45,48,46,50,57,51,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,41,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,119,104,105,116,101,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,51,112,120,59,109,97,114,103,105,110,45,108,101,102,116,58,45,49,112,120,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,102,105,108,101,45,101,109,112,116,121,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,97,53,97,53,97,53,37,50,50,37,50,48,100,37,51,68,37,50,50,77,50,56,46,54,56,49,37,50,48,55,46,49,53,57,99,45,48,46,54,57,52,45,48,46,57,52,55,45,49,46,54,54,50,45,50,46,48,53,51,45,50,46,55,50,52,45,51,46,49,49,54,115,45,50,46,49,54,57,45,50,46,48,51,48,45,51,46,49,49,54,45,50,46,55,50,52,99,45,49,46,54,49,50,45,49,46,49,56,50,45,50,46,51,57,51,45,49,46,51,49,57,45,50,46,56,52,49,45,49,46,51,49,57,104,45,49,53,46,53,99,45,49,46,51,55,56,37,50,48,48,45,50,46,53,37,50,48,49,46,49,50,49,45,50,46,53,37,50,48,50,46,53,118,50,55,99,48,37,50,48,49,46,51,55,56,37,50,48,49,46,49,50,50,37,50,48,50,46,53,37,50,48,50,46,53,37,50,48,50,46,53,104,50,51,99,49,46,51,55,56,37,50,48,48,37,50,48,50,46,53,45,49,46,49,50,50,37,50,48,50,46,53,45,50,46,53,118,45,49,57,46,53,99,48,45,48,46,52,52,56,45,48,46,49,51,55,45,49,46,50,51,45,49,46,51,49,57,45,50,46,56,52,49,122,77,50,52,46,53,52,51,37,50,48,53,46,52,53,55,99,48,46,57,53,57,37,50,48,48,46,57,53,57,37,50,48,49,46,55,49,50,37,50,48,49,46,56,50,53,37,50,48,50,46,50,54,56,37,50,48,50,46,53,52,51,104,45,52,46,56,49,49,118,45,52,46,56,49,49,99,48,46,55,49,56,37,50,48,48,46,53,53,54,37,50,48,49,46,53,56,52,37,50,48,49,46,51,48,57,37,50,48,50,46,53,52,51,37,50,48,50,46,50,54,56,122,77,50,56,37,50,48,50,57,46,53,99,48,37,50,48,48,46,50,55,49,45,48,46,50,50,57,37,50,48,48,46,53,45,48,46,53,37,50,48,48,46,53,104,45,50,51,99,45,48,46,50,55,49,37,50,48,48,45,48,46,53,45,48,46,50,50,57,45,48,46,53,45,48,46,53,118,45,50,55,99,48,45,48,46,50,55,49,37,50,48,48,46,50,50,57,45,48,46,53,37,50,48,48,46,53,45,48,46,53,37,50,48,48,37,50,48,48,37,50,48,49,53,46,52,57,57,45,48,37,50,48,49,53,46,53,37,50,48,48,118,55,99,48,37,50,48,48,46,53,53,50,37,50,48,48,46,52,52,56,37,50,48,49,37,50,48,49,37,50,48,49,104,55,118,49,57,46,53,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,102,111,108,100,101,114,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,54,97,54,97,54,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,49,52,37,50,48,52,108,52,37,50,48,52,104,49,52,118,50,50,104,45,51,50,118,45,50,54,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,102,111,108,100,101,114,45,111,112,101,110,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,54,97,54,97,54,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,50,54,37,50,48,51,48,108,54,45,49,54,104,45,50,54,108,45,54,37,50,48,49,54,122,77,52,37,50,48,49,50,108,45,52,37,50,48,49,56,118,45,50,54,104,57,108,52,37,50,48,52,104,49,51,118,52,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,37,48,65,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,109,105,110,117,115,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,54,97,54,97,54,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,48,37,50,48,49,51,118,54,99,48,37,50,48,48,46,53,53,50,37,50,48,48,46,52,52,56,37,50,48,49,37,50,48,49,37,50,48,49,104,51,48,99,48,46,53,53,50,37,50,48,48,37,50,48,49,45,48,46,52,52,56,37,50,48,49,45,49,118,45,54,99,48,45,48,46,53,53,50,45,48,46,52,52,56,45,49,45,49,45,49,104,45,51,48,99,45,48,46,53,53,50,37,50,48,48,45,49,37,50,48,48,46,52,52,56,45,49,37,50,48,49,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,109,105,110,117,115,58,104,111,118,101,114,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,99,48,48,37,50,50,37,50,48,100,37,51,68,37,50,50,77,48,37,50,48,49,51,118,54,99,48,37,50,48,48,46,53,53,50,37,50,48,48,46,52,52,56,37,50,48,49,37,50,48,49,37,50,48,49,104,51,48,99,48,46,53,53,50,37,50,48,48,37,50,48,49,45,48,46,52,52,56,37,50,48,49,45,49,118,45,54,99,48,45,48,46,53,53,50,45,48,46,52,52,56,45,49,45,49,45,49,104,45,51,48,99,45,48,46,53,53,50,37,50,48,48,45,49,37,50,48,48,46,52,52,56,45,49,37,50,48,49,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,109,111,114,101,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,50,52,37,50,48,50,52,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,54,97,54,97,54,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,49,50,37,50,48,57,46,57,56,52,99,49,46,48,55,56,37,50,48,48,37,50,48,50,46,48,49,54,37,50,48,48,46,57,51,56,37,50,48,50,46,48,49,54,37,50,48,50,46,48,49,54,115,45,48,46,57,51,56,37,50,48,50,46,48,49,54,45,50,46,48,49,54,37,50,48,50,46,48,49,54,45,50,46,48,49,54,45,48,46,57,51,56,45,50,46,48,49,54,45,50,46,48,49,54,37,50,48,48,46,57,51,56,45,50,46,48,49,54,37,50,48,50,46,48,49,54,45,50,46,48,49,54,122,77,49,56,37,50,48,57,46,57,56,52,99,49,46,48,55,56,37,50,48,48,37,50,48,50,46,48,49,54,37,50,48,48,46,57,51,56,37,50,48,50,46,48,49,54,37,50,48,50,46,48,49,54,115,45,48,46,57,51,56,37,50,48,50,46,48,49,54,45,50,46,48,49,54,37,50,48,50,46,48,49,54,45,50,46,48,49,54,45,48,46,57,51,56,45,50,46,48,49,54,45,50,46,48,49,54,37,50,48,48,46,57,51,56,45,50,46,48,49,54,37,50,48,50,46,48,49,54,45,50,46,48,49,54,122,77,54,37,50,48,57,46,57,56,52,99,49,46,48,55,56,37,50,48,48,37,50,48,50,46,48,49,54,37,50,48,48,46,57,51,56,37,50,48,50,46,48,49,54,37,50,48,50,46,48,49,54,115,45,48,46,57,51,56,37,50,48,50,46,48,49,54,45,50,46,48,49,54,37,50,48,50,46,48,49,54,45,50,46,48,49,54,45,48,46,57,51,56,45,50,46,48,49,54,45,50,46,48,49,54,37,50,48,48,46,57,51,56,45,50,46,48,49,54,37,50,48,50,46,48,49,54,45,50,46,48,49,54,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,112,101,110,99,105,108,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,54,97,54,97,54,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,50,55,37,50,48,48,99,50,46,55,54,49,37,50,48,48,37,50,48,53,37,50,48,50,46,50,51,57,37,50,48,53,37,50,48,53,37,50,48,48,37,50,48,49,46,49,50,54,45,48,46,51,55,50,37,50,48,50,46,49,54,52,45,49,37,50,48,51,108,45,50,37,50,48,50,45,55,45,55,37,50,48,50,45,50,99,48,46,56,51,54,45,48,46,54,50,56,37,50,48,49,46,56,55,52,45,49,37,50,48,51,45,49,122,77,50,37,50,48,50,51,108,45,50,37,50,48,57,37,50,48,57,45,50,37,50,48,49,56,46,53,45,49,56,46,53,45,55,45,55,45,49,56,46,53,37,50,48,49,56,46,53,122,77,50,50,46,51,54,50,37,50,48,49,49,46,51,54,50,108,45,49,52,37,50,48,49,52,45,49,46,55,50,52,45,49,46,55,50,52,37,50,48,49,52,45,49,52,37,50,48,49,46,55,50,52,37,50,48,49,46,55,50,52,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,37,48,65,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,112,101,110,99,105,108,58,104,111,118,101,114,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,48,99,99,99,48,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,50,55,37,50,48,48,99,50,46,55,54,49,37,50,48,48,37,50,48,53,37,50,48,50,46,50,51,57,37,50,48,53,37,50,48,53,37,50,48,48,37,50,48,49,46,49,50,54,45,48,46,51,55,50,37,50,48,50,46,49,54,52,45,49,37,50,48,51,108,45,50,37,50,48,50,45,55,45,55,37,50,48,50,45,50,99,48,46,56,51,54,45,48,46,54,50,56,37,50,48,49,46,56,55,52,45,49,37,50,48,51,45,49,122,77,50,37,50,48,50,51,108,45,50,37,50,48,57,37,50,48,57,45,50,37,50,48,49,56,46,53,45,49,56,46,53,45,55,45,55,45,49,56,46,53,37,50,48,49,56,46,53,122,77,50,50,46,51,54,50,37,50,48,49,49,46,51,54,50,108,45,49,52,37,50,48,49,52,45,49,46,55,50,52,45,49,46,55,50,52,37,50,48,49,52,45,49,52,37,50,48,49,46,55,50,52,37,50,48,49,46,55,50,52,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,37,48,65,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,112,108,117,115,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,54,97,54,97,54,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,51,49,37,50,48,49,50,104,45,49,49,118,45,49,49,99,48,45,48,46,53,53,50,45,48,46,52,52,56,45,49,45,49,45,49,104,45,54,99,45,48,46,53,53,50,37,50,48,48,45,49,37,50,48,48,46,52,52,56,45,49,37,50,48,49,118,49,49,104,45,49,49,99,45,48,46,53,53,50,37,50,48,48,45,49,37,50,48,48,46,52,52,56,45,49,37,50,48,49,118,54,99,48,37,50,48,48,46,53,53,50,37,50,48,48,46,52,52,56,37,50,48,49,37,50,48,49,37,50,48,49,104,49,49,118,49,49,99,48,37,50,48,48,46,53,53,50,37,50,48,48,46,52,52,56,37,50,48,49,37,50,48,49,37,50,48,49,104,54,99,48,46,53,53,50,37,50,48,48,37,50,48,49,45,48,46,52,52,56,37,50,48,49,45,49,118,45,49,49,104,49,49,99,48,46,53,53,50,37,50,48,48,37,50,48,49,45,48,46,52,52,56,37,50,48,49,45,49,118,45,54,99,48,45,48,46,53,53,50,45,48,46,52,52,56,45,49,45,49,45,49,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,112,108,117,115,58,104,111,118,101,114,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,48,99,99,99,48,97,37,50,50,37,50,48,100,37,51,68,37,50,50,77,51,49,37,50,48,49,50,104,45,49,49,118,45,49,49,99,48,45,48,46,53,53,50,45,48,46,52,52,56,45,49,45,49,45,49,104,45,54,99,45,48,46,53,53,50,37,50,48,48,45,49,37,50,48,48,46,52,52,56,45,49,37,50,48,49,118,49,49,104,45,49,49,99,45,48,46,53,53,50,37,50,48,48,45,49,37,50,48,48,46,52,52,56,45,49,37,50,48,49,118,54,99,48,37,50,48,48,46,53,53,50,37,50,48,48,46,52,52,56,37,50,48,49,37,50,48,49,37,50,48,49,104,49,49,118,49,49,99,48,37,50,48,48,46,53,53,50,37,50,48,48,46,52,52,56,37,50,48,49,37,50,48,49,37,50,48,49,104,54,99,48,46,53,53,50,37,50,48,48,37,50,48,49,45,48,46,52,52,56,37,50,48,49,45,49,118,45,49,49,104,49,49,99,48,46,53,53,50,37,50,48,48,37,50,48,49,45,48,46,52,52,56,37,50,48,49,45,49,118,45,54,99,48,45,48,46,53,53,50,45,48,46,52,52,56,45,49,45,49,45,49,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,115,101,108,101,99,116,101,100,32,62,32,46,116,105,116,108,101,45,119,114,97,112,32,46,105,99,111,110,45,102,111,108,100,101,114,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,49,55,57,98,98,57,37,50,50,37,50,48,100,37,51,68,37,50,50,77,49,52,37,50,48,52,108,52,37,50,48,52,104,49,52,118,50,50,104,45,51,50,118,45,50,54,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,115,101,108,101,99,116,101,100,32,62,32,46,116,105,116,108,101,45,119,114,97,112,32,46,105,99,111,110,45,102,111,108,100,101,114,45,111,112,101,110,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,49,55,57,98,98,57,37,50,50,37,50,48,100,37,51,68,37,50,50,77,50,54,37,50,48,51,48,108,54,45,49,54,104,45,50,54,108,45,54,37,50,48,49,54,122,77,52,37,50,48,49,50,108,45,52,37,50,48,49,56,118,45,50,54,104,57,108,52,37,50,48,52,104,49,51,118,52,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,37,48,65,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,115,101,108,101,99,116,101,100,32,62,32,46,116,105,116,108,101,45,119,114,97,112,32,46,105,99,111,110,45,102,105,108,101,45,101,109,112,116,121,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,118,101,114,115,105,111,110,37,51,68,37,50,50,49,46,49,37,50,50,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,120,109,108,110,115,37,51,65,120,108,105,110,107,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,49,57,57,57,37,50,70,120,108,105,110,107,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,53,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,51,50,37,50,48,51,50,37,50,50,37,51,69,37,51,67,112,97,116,104,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,49,55,57,98,98,57,37,50,50,37,50,48,100,37,51,68,37,50,50,77,50,56,46,54,56,49,37,50,48,55,46,49,53,57,99,45,48,46,54,57,52,45,48,46,57,52,55,45,49,46,54,54,50,45,50,46,48,53,51,45,50,46,55,50,52,45,51,46,49,49,54,115,45,50,46,49,54,57,45,50,46,48,51,48,45,51,46,49,49,54,45,50,46,55,50,52,99,45,49,46,54,49,50,45,49,46,49,56,50,45,50,46,51,57,51,45,49,46,51,49,57,45,50,46,56,52,49,45,49,46,51,49,57,104,45,49,53,46,53,99,45,49,46,51,55,56,37,50,48,48,45,50,46,53,37,50,48,49,46,49,50,49,45,50,46,53,37,50,48,50,46,53,118,50,55,99,48,37,50,48,49,46,51,55,56,37,50,48,49,46,49,50,50,37,50,48,50,46,53,37,50,48,50,46,53,37,50,48,50,46,53,104,50,51,99,49,46,51,55,56,37,50,48,48,37,50,48,50,46,53,45,49,46,49,50,50,37,50,48,50,46,53,45,50,46,53,118,45,49,57,46,53,99,48,45,48,46,52,52,56,45,48,46,49,51,55,45,49,46,50,51,45,49,46,51,49,57,45,50,46,56,52,49,122,77,50,52,46,53,52,51,37,50,48,53,46,52,53,55,99,48,46,57,53,57,37,50,48,48,46,57,53,57,37,50,48,49,46,55,49,50,37,50,48,49,46,56,50,53,37,50,48,50,46,50,54,56,37,50,48,50,46,53,52,51,104,45,52,46,56,49,49,118,45,52,46,56,49,49,99,48,46,55,49,56,37,50,48,48,46,53,53,54,37,50,48,49,46,53,56,52,37,50,48,49,46,51,48,57,37,50,48,50,46,53,52,51,37,50,48,50,46,50,54,56,122,77,50,56,37,50,48,50,57,46,53,99,48,37,50,48,48,46,50,55,49,45,48,46,50,50,57,37,50,48,48,46,53,45,48,46,53,37,50,48,48,46,53,104,45,50,51,99,45,48,46,50,55,49,37,50,48,48,45,48,46,53,45,48,46,50,50,57,45,48,46,53,45,48,46,53,118,45,50,55,99,48,45,48,46,50,55,49,37,50,48,48,46,50,50,57,45,48,46,53,37,50,48,48,46,53,45,48,46,53,37,50,48,48,37,50,48,48,37,50,48,49,53,46,52,57,57,45,48,37,50,48,49,53,46,53,37,50,48,48,118,55,99,48,37,50,48,48,46,53,53,50,37,50,48,48,46,52,52,56,37,50,48,49,37,50,48,49,37,50,48,49,104,55,118,49,57,46,53,122,37,50,50,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,108,111,97,100,105,110,103,32,62,32,46,116,105,116,108,101,45,119,114,97,112,32,105,110,112,117,116,123,100,105,115,112,108,97,121,58,110,111,110,101,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,108,111,97,100,105,110,103,32,62,32,46,116,105,116,108,101,45,119,114,97,112,32,46,116,105,116,108,101,58,58,98,101,102,111,114,101,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,85,83,45,65,83,67,73,73,44,37,51,67,115,118,103,37,50,48,119,105,100,116,104,37,51,68,37,50,55,49,52,112,120,37,50,55,37,50,48,104,101,105,103,104,116,37,51,68,37,50,55,49,52,112,120,37,50,55,37,50,48,120,109,108,110,115,37,51,68,37,50,50,104,116,116,112,37,51,65,37,50,70,37,50,70,119,119,119,46,119,51,46,111,114,103,37,50,70,50,48,48,48,37,50,70,115,118,103,37,50,50,37,50,48,118,105,101,119,66,111,120,37,51,68,37,50,50,48,37,50,48,48,37,50,48,49,48,48,37,50,48,49,48,48,37,50,50,37,50,48,112,114,101,115,101,114,118,101,65,115,112,101,99,116,82,97,116,105,111,37,51,68,37,50,50,120,77,105,100,89,77,105,100,37,50,50,37,50,48,99,108,97,115,115,37,51,68,37,50,50,117,105,108,45,114,105,110,103,37,50,50,37,51,69,37,51,67,114,101,99,116,37,50,48,120,37,51,68,37,50,50,48,37,50,50,37,50,48,121,37,51,68,37,50,50,48,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,49,48,48,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,49,48,48,37,50,50,37,50,48,102,105,108,108,37,51,68,37,50,50,110,111,110,101,37,50,50,37,50,48,99,108,97,115,115,37,51,68,37,50,50,98,107,37,50,50,37,51,69,37,51,67,37,50,70,114,101,99,116,37,51,69,37,51,67,100,101,102,115,37,51,69,37,51,67,102,105,108,116,101,114,37,50,48,105,100,37,51,68,37,50,50,117,105,108,45,114,105,110,103,45,115,104,97,100,111,119,37,50,50,37,50,48,120,37,51,68,37,50,50,45,49,48,48,37,50,53,37,50,50,37,50,48,121,37,51,68,37,50,50,45,49,48,48,37,50,53,37,50,50,37,50,48,119,105,100,116,104,37,51,68,37,50,50,51,48,48,37,50,53,37,50,50,37,50,48,104,101,105,103,104,116,37,51,68,37,50,50,51,48,48,37,50,53,37,50,50,37,51,69,37,51,67,102,101,79,102,102,115,101,116,37,50,48,114,101,115,117,108,116,37,51,68,37,50,50,111,102,102,79,117,116,37,50,50,37,50,48,105,110,37,51,68,37,50,50,83,111,117,114,99,101,71,114,97,112,104,105,99,37,50,50,37,50,48,100,120,37,51,68,37,50,50,48,37,50,50,37,50,48,100,121,37,51,68,37,50,50,48,37,50,50,37,51,69,37,51,67,37,50,70,102,101,79,102,102,115,101,116,37,51,69,37,51,67,102,101,71,97,117,115,115,105,97,110,66,108,117,114,37,50,48,114,101,115,117,108,116,37,51,68,37,50,50,98,108,117,114,79,117,116,37,50,50,37,50,48,105,110,37,51,68,37,50,50,111,102,102,79,117,116,37,50,50,37,50,48,115,116,100,68,101,118,105,97,116,105,111,110,37,51,68,37,50,50,48,37,50,50,37,51,69,37,51,67,37,50,70,102,101,71,97,117,115,115,105,97,110,66,108,117,114,37,51,69,37,51,67,102,101,66,108,101,110,100,37,50,48,105,110,37,51,68,37,50,50,83,111,117,114,99,101,71,114,97,112,104,105,99,37,50,50,37,50,48,105,110,50,37,51,68,37,50,50,98,108,117,114,79,117,116,37,50,50,37,50,48,109,111,100,101,37,51,68,37,50,50,110,111,114,109,97,108,37,50,50,37,51,69,37,51,67,37,50,70,102,101,66,108,101,110,100,37,51,69,37,51,67,37,50,70,102,105,108,116,101,114,37,51,69,37,51,67,37,50,70,100,101,102,115,37,51,69,37,51,67,112,97,116,104,37,50,48,100,37,51,68,37,50,50,77,49,48,37,50,67,53,48,99,48,37,50,67,48,37,50,67,48,37,50,67,48,46,53,37,50,67,48,46,49,37,50,67,49,46,52,99,48,37,50,67,48,46,53,37,50,67,48,46,49,37,50,67,49,37,50,67,48,46,50,37,50,67,49,46,55,99,48,37,50,67,48,46,51,37,50,67,48,46,49,37,50,67,48,46,55,37,50,67,48,46,49,37,50,67,49,46,49,99,48,46,49,37,50,67,48,46,52,37,50,67,48,46,49,37,50,67,48,46,56,37,50,67,48,46,50,37,50,67,49,46,50,99,48,46,50,37,50,67,48,46,56,37,50,67,48,46,51,37,50,67,49,46,56,37,50,67,48,46,53,37,50,67,50,46,56,37,50,48,99,48,46,51,37,50,67,49,37,50,67,48,46,54,37,50,67,50,46,49,37,50,67,48,46,57,37,50,67,51,46,50,99,48,46,51,37,50,67,49,46,49,37,50,67,48,46,57,37,50,67,50,46,51,37,50,67,49,46,52,37,50,67,51,46,53,99,48,46,53,37,50,67,49,46,50,37,50,67,49,46,50,37,50,67,50,46,52,37,50,67,49,46,56,37,50,67,51,46,55,99,48,46,51,37,50,67,48,46,54,37,50,67,48,46,56,37,50,67,49,46,50,37,50,67,49,46,50,37,50,67,49,46,57,99,48,46,52,37,50,67,48,46,54,37,50,67,48,46,56,37,50,67,49,46,51,37,50,67,49,46,51,37,50,67,49,46,57,37,50,48,99,49,37,50,67,49,46,50,37,50,67,49,46,57,37,50,67,50,46,54,37,50,67,51,46,49,37,50,67,51,46,55,99,50,46,50,37,50,67,50,46,53,37,50,67,53,37,50,67,52,46,55,37,50,67,55,46,57,37,50,67,54,46,55,99,51,37,50,67,50,37,50,67,54,46,53,37,50,67,51,46,52,37,50,67,49,48,46,49,37,50,67,52,46,54,99,51,46,54,37,50,67,49,46,49,37,50,67,55,46,53,37,50,67,49,46,53,37,50,67,49,49,46,50,37,50,67,49,46,54,99,52,45,48,46,49,37,50,67,55,46,55,45,48,46,54,37,50,67,49,49,46,51,45,49,46,54,37,50,48,99,51,46,54,45,49,46,50,37,50,67,55,45,50,46,54,37,50,67,49,48,45,52,46,54,99,51,45,50,37,50,67,53,46,56,45,52,46,50,37,50,67,55,46,57,45,54,46,55,99,49,46,50,45,49,46,50,37,50,67,50,46,49,45,50,46,53,37,50,67,51,46,49,45,51,46,55,99,48,46,53,45,48,46,54,37,50,67,48,46,57,45,49,46,51,37,50,67,49,46,51,45,49,46,57,99,48,46,52,45,48,46,54,37,50,67,48,46,56,45,49,46,51,37,50,67,49,46,50,45,49,46,57,37,50,48,99,48,46,54,45,49,46,51,37,50,67,49,46,51,45,50,46,53,37,50,67,49,46,56,45,51,46,55,99,48,46,53,45,49,46,50,37,50,67,49,45,50,46,52,37,50,67,49,46,52,45,51,46,53,99,48,46,51,45,49,46,49,37,50,67,48,46,54,45,50,46,50,37,50,67,48,46,57,45,51,46,50,99,48,46,50,45,49,37,50,67,48,46,52,45,49,46,57,37,50,67,48,46,53,45,50,46,56,99,48,46,49,45,48,46,52,37,50,67,48,46,49,45,48,46,56,37,50,67,48,46,50,45,49,46,50,37,50,48,99,48,45,48,46,52,37,50,67,48,46,49,45,48,46,55,37,50,67,48,46,49,45,49,46,49,99,48,46,49,45,48,46,55,37,50,67,48,46,49,45,49,46,50,37,50,67,48,46,50,45,49,46,55,67,57,48,37,50,67,53,48,46,53,37,50,67,57,48,37,50,67,53,48,37,50,67,57,48,37,50,67,53,48,115,48,37,50,67,48,46,53,37,50,67,48,37,50,67,49,46,52,99,48,37,50,67,48,46,53,37,50,67,48,37,50,67,49,37,50,67,48,37,50,67,49,46,55,99,48,37,50,67,48,46,51,37,50,67,48,37,50,67,48,46,55,37,50,67,48,37,50,67,49,46,49,37,50,48,99,48,37,50,67,48,46,52,45,48,46,49,37,50,67,48,46,56,45,48,46,49,37,50,67,49,46,50,99,45,48,46,49,37,50,67,48,46,57,45,48,46,50,37,50,67,49,46,56,45,48,46,52,37,50,67,50,46,56,99,45,48,46,50,37,50,67,49,45,48,46,53,37,50,67,50,46,49,45,48,46,55,37,50,67,51,46,51,99,45,48,46,51,37,50,67,49,46,50,45,48,46,56,37,50,67,50,46,52,45,49,46,50,37,50,67,51,46,55,99,45,48,46,50,37,50,67,48,46,55,45,48,46,53,37,50,67,49,46,51,45,48,46,56,37,50,67,49,46,57,37,50,48,99,45,48,46,51,37,50,67,48,46,55,45,48,46,54,37,50,67,49,46,51,45,48,46,57,37,50,67,50,99,45,48,46,51,37,50,67,48,46,55,45,48,46,55,37,50,67,49,46,51,45,49,46,49,37,50,67,50,99,45,48,46,52,37,50,67,48,46,55,45,48,46,55,37,50,67,49,46,52,45,49,46,50,37,50,67,50,99,45,49,37,50,67,49,46,51,45,49,46,57,37,50,67,50,46,55,45,51,46,49,37,50,67,52,99,45,50,46,50,37,50,67,50,46,55,45,53,37,50,67,53,45,56,46,49,37,50,67,55,46,49,37,50,48,99,45,48,46,56,37,50,67,48,46,53,45,49,46,54,37,50,67,49,45,50,46,52,37,50,67,49,46,53,99,45,48,46,56,37,50,67,48,46,53,45,49,46,55,37,50,67,48,46,57,45,50,46,54,37,50,67,49,46,51,76,54,54,37,50,67,56,55,46,55,108,45,49,46,52,37,50,67,48,46,53,99,45,48,46,57,37,50,67,48,46,51,45,49,46,56,37,50,67,48,46,55,45,50,46,56,37,50,67,49,99,45,51,46,56,37,50,67,49,46,49,45,55,46,57,37,50,67,49,46,55,45,49,49,46,56,37,50,67,49,46,56,76,52,55,37,50,67,57,48,46,56,37,50,48,99,45,49,37,50,67,48,45,50,45,48,46,50,45,51,45,48,46,51,108,45,49,46,53,45,48,46,50,108,45,48,46,55,45,48,46,49,76,52,49,46,49,37,50,67,57,48,99,45,49,45,48,46,51,45,49,46,57,45,48,46,53,45,50,46,57,45,48,46,55,99,45,48,46,57,45,48,46,51,45,49,46,57,45,48,46,55,45,50,46,56,45,49,76,51,52,37,50,67,56,55,46,55,108,45,49,46,51,45,48,46,54,37,50,48,99,45,48,46,57,45,48,46,52,45,49,46,56,45,48,46,56,45,50,46,54,45,49,46,51,99,45,48,46,56,45,48,46,53,45,49,46,54,45,49,45,50,46,52,45,49,46,53,99,45,51,46,49,45,50,46,49,45,53,46,57,45,52,46,53,45,56,46,49,45,55,46,49,99,45,49,46,50,45,49,46,50,45,50,46,49,45,50,46,55,45,51,46,49,45,52,99,45,48,46,53,45,48,46,54,45,48,46,56,45,49,46,52,45,49,46,50,45,50,37,50,48,99,45,48,46,52,45,48,46,55,45,48,46,56,45,49,46,51,45,49,46,49,45,50,99,45,48,46,51,45,48,46,55,45,48,46,54,45,49,46,51,45,48,46,57,45,50,99,45,48,46,51,45,48,46,55,45,48,46,54,45,49,46,51,45,48,46,56,45,49,46,57,99,45,48,46,52,45,49,46,51,45,48,46,57,45,50,46,53,45,49,46,50,45,51,46,55,99,45,48,46,51,45,49,46,50,45,48,46,53,45,50,46,51,45,48,46,55,45,51,46,51,37,50,48,99,45,48,46,50,45,49,45,48,46,51,45,50,45,48,46,52,45,50,46,56,99,45,48,46,49,45,48,46,52,45,48,46,49,45,48,46,56,45,48,46,49,45,49,46,50,99,48,45,48,46,52,37,50,67,48,45,48,46,55,37,50,67,48,45,49,46,49,99,48,45,48,46,55,37,50,67,48,45,49,46,50,37,50,67,48,45,49,46,55,67,49,48,37,50,67,53,48,46,53,37,50,67,49,48,37,50,67,53,48,37,50,67,49,48,37,50,67,53,48,122,37,50,50,37,50,48,102,105,108,108,37,51,68,37,50,50,37,50,51,48,49,51,49,51,56,37,50,50,37,50,48,102,105,108,116,101,114,37,51,68,37,50,50,117,114,108,40,37,50,51,117,105,108,45,114,105,110,103,45,115,104,97,100,111,119,41,37,50,50,37,51,69,37,51,67,97,110,105,109,97,116,101,84,114,97,110,115,102,111,114,109,37,50,48,97,116,116,114,105,98,117,116,101,78,97,109,101,37,51,68,37,50,50,116,114,97,110,115,102,111,114,109,37,50,50,37,50,48,116,121,112,101,37,51,68,37,50,50,114,111,116,97,116,101,37,50,50,37,50,48,102,114,111,109,37,51,68,37,50,50,48,37,50,48,53,48,37,50,48,53,48,37,50,50,37,50,48,116,111,37,51,68,37,50,50,51,54,48,37,50,48,53,48,37,50,48,53,48,37,50,50,37,50,48,114,101,112,101,97,116,67,111,117,110,116,37,51,68,37,50,50,105,110,100,101,102,105,110,105,116,101,37,50,50,37,50,48,100,117,114,37,51,68,37,50,50,49,115,37,50,50,37,51,69,37,51,67,37,50,70,97,110,105,109,97,116,101,84,114,97,110,115,102,111,114,109,37,51,69,37,51,67,37,50,70,112,97,116,104,37,51,69,37,51,67,37,50,70,115,118,103,37,51,69,34,41,59,99,111,110,116,101,110,116,58,39,39,59,104,101,105,103,104,116,58,49,52,112,120,59,119,105,100,116,104,58,49,52,112,120,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,62,32,111,108,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,119,104,111,108,101,114,111,119,123,104,101,105,103,104,116,58,50,53,112,120,59,108,101,102,116,58,48,59,109,97,114,103,105,110,45,116,111,112,58,45,50,53,112,120,59,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,119,105,100,116,104,58,49,48,48,37,59,122,45,105,110,100,101,120,58,49,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,102,111,99,117,115,101,100,58,110,111,116,40,46,115,101,108,101,99,116,101,100,41,32,62,32,46,119,104,111,108,101,114,111,119,123,111,117,116,108,105,110,101,58,49,112,120,32,100,111,116,116,101,100,32,98,108,97,99,107,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,116,105,116,108,101,45,119,114,97,112,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,58,114,103,98,97,40,48,44,48,44,48,44,46,48,55,53,41,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,115,101,108,101,99,116,101,100,32,62,32,46,116,105,116,108,101,45,119,114,97,112,58,104,111,118,101,114,32,43,32,46,119,104,111,108,101,114,111,119,44,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,115,101,108,101,99,116,101,100,32,62,32,46,119,104,111,108,101,114,111,119,123,98,97,99,107,103,114,111,117,110,100,58,35,66,66,68,69,70,66,125,46,105,110,115,112,105,114,101,45,116,114,101,101,32,97,123,99,111,108,111,114,58,35,52,57,53,48,53,55,125,46,105,114,115,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,45,119,101,98,107,105,116,45,116,111,117,99,104,45,99,97,108,108,111,117,116,58,110,111,110,101,59,45,119,101,98,107,105,116,45,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,59,45,107,104,116,109,108,45,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,59,45,109,111,122,45,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,59,45,109,115,45,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,59,117,115,101,114,45,115,101,108,101,99,116,58,110,111,110,101,125,46,105,114,115,45,108,105,110,101,123,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,59,111,117,116,108,105,110,101,58,110,111,110,101,32,33,105,109,112,111,114,116,97,110,116,125,46,105,114,115,45,108,105,110,101,45,108,101,102,116,44,46,105,114,115,45,108,105,110,101,45,109,105,100,44,46,105,114,115,45,108,105,110,101,45,114,105,103,104,116,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,116,111,112,58,48,125,46,105,114,115,45,108,105,110,101,45,108,101,102,116,123,108,101,102,116,58,48,59,119,105,100,116,104,58,49,49,37,125,46,105,114,115,45,108,105,110,101,45,109,105,100,123,108,101,102,116,58,57,37,59,119,105,100,116,104,58,56,50,37,125,46,105,114,115,45,108,105,110,101,45,114,105,103,104,116,123,114,105,103,104,116,58,48,59,119,105,100,116,104,58,49,49,37,125,46,105,114,115,45,98,97,114,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,108,101,102,116,58,48,59,119,105,100,116,104,58,48,125,46,105,114,115,45,98,97,114,45,101,100,103,101,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,116,111,112,58,48,59,108,101,102,116,58,48,125,46,105,114,115,45,115,104,97,100,111,119,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,100,105,115,112,108,97,121,58,110,111,110,101,59,108,101,102,116,58,48,59,119,105,100,116,104,58,48,125,46,105,114,115,45,115,108,105,100,101,114,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,99,117,114,115,111,114,58,100,101,102,97,117,108,116,59,122,45,105,110,100,101,120,58,49,125,46,105,114,115,45,115,108,105,100,101,114,46,115,105,110,103,108,101,123,125,46,105,114,115,45,115,108,105,100,101,114,46,102,114,111,109,123,125,46,105,114,115,45,115,108,105,100,101,114,46,116,111,123,125,46,105,114,115,45,115,108,105,100,101,114,46,116,121,112,101,95,108,97,115,116,123,122,45,105,110,100,101,120,58,50,125,46,105,114,115,45,109,105,110,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,108,101,102,116,58,48,59,99,117,114,115,111,114,58,100,101,102,97,117,108,116,125,46,105,114,115,45,109,97,120,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,114,105,103,104,116,58,48,59,99,117,114,115,111,114,58,100,101,102,97,117,108,116,125,46,105,114,115,45,102,114,111,109,44,46,105,114,115,45,115,105,110,103,108,101,44,46,105,114,115,45,116,111,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,116,111,112,58,48,59,108,101,102,116,58,48,59,99,117,114,115,111,114,58,100,101,102,97,117,108,116,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,119,114,97,112,125,46,105,114,115,45,103,114,105,100,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,100,105,115,112,108,97,121,58,110,111,110,101,59,98,111,116,116,111,109,58,48,59,108,101,102,116,58,48,59,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,50,48,112,120,125,46,105,114,115,45,119,105,116,104,45,103,114,105,100,32,46,105,114,115,45,103,114,105,100,123,100,105,115,112,108,97,121,58,98,108,111,99,107,125,46,105,114,115,45,103,114,105,100,45,112,111,108,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,48,59,108,101,102,116,58,48,59,119,105,100,116,104,58,49,112,120,59,104,101,105,103,104,116,58,56,112,120,59,98,97,99,107,103,114,111,117,110,100,58,35,48,48,48,125,46,105,114,115,45,103,114,105,100,45,112,111,108,46,115,109,97,108,108,123,104,101,105,103,104,116,58,52,112,120,125,46,105,114,115,45,103,114,105,100,45,116,101,120,116,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,98,111,116,116,111,109,58,48,59,108,101,102,116,58,48,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,119,114,97,112,59,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,59,102,111,110,116,45,115,105,122,101,58,57,112,120,59,108,105,110,101,45,104,101,105,103,104,116,58,57,112,120,59,112,97,100,100,105,110,103,58,48,32,51,112,120,59,99,111,108,111,114,58,35,48,48,48,125,46,105,114,115,45,100,105,115,97,98,108,101,45,109,97,115,107,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,116,111,112,58,48,59,108,101,102,116,58,45,49,37,59,119,105,100,116,104,58,49,48,50,37,59,104,101,105,103,104,116,58,49,48,48,37,59,99,117,114,115,111,114,58,100,101,102,97,117,108,116,59,98,97,99,107,103,114,111,117,110,100,58,114,103,98,97,40,48,44,48,44,48,44,48,46,48,41,59,122,45,105,110,100,101,120,58,50,125,46,105,114,115,45,100,105,115,97,98,108,101,100,123,111,112,97,99,105,116,121,58,48,46,52,125,46,108,116,45,105,101,57,32,46,105,114,115,45,100,105,115,97,98,108,101,100,123,102,105,108,116,101,114,58,32,97,108,112,104,97,40,111,112,97,99,105,116,121,61,52,48,41,125,46,105,114,115,45,104,105,100,100,101,110,45,105,110,112,117,116,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,32,33,105,109,112,111,114,116,97,110,116,59,100,105,115,112,108,97,121,58,98,108,111,99,107,32,33,105,109,112,111,114,116,97,110,116,59,116,111,112,58,48,32,33,105,109,112,111,114,116,97,110,116,59,108,101,102,116,58,48,32,33,105,109,112,111,114,116,97,110,116,59,119,105,100,116,104,58,48,32,33,105,109,112,111,114,116,97,110,116,59,104,101,105,103,104,116,58,48,32,33,105,109,112,111,114,116,97,110,116,59,102,111,110,116,45,115,105,122,101,58,48,32,33,105,109,112,111,114,116,97,110,116,59,108,105,110,101,45,104,101,105,103,104,116,58,48,32,33,105,109,112,111,114,116,97,110,116,59,112,97,100,100,105,110,103,58,48,32,33,105,109,112,111,114,116,97,110,116,59,109,97,114,103,105,110,58,48,32,33,105,109,112,111,114,116,97,110,116,59,111,117,116,108,105,110,101,58,110,111,110,101,32,33,105,109,112,111,114,116,97,110,116,59,122,45,105,110,100,101,120,58,45,57,57,57,57,32,33,105,109,112,111,114,116,97,110,116,59,98,97,99,107,103,114,111,117,110,100,58,110,111,110,101,32,33,105,109,112,111,114,116,97,110,116,59,98,111,114,100,101,114,45,115,116,121,108,101,58,115,111,108,105,100,32,33,105,109,112,111,114,116,97,110,116,59,98,111,114,100,101,114,45,99,111,108,111,114,58,116,114,97,110,115,112,97,114,101,110,116,32,33,105,109,112,111,114,116,97,110,116,125,10,46,105,114,115,45,98,97,114,44,46,105,114,115,45,98,97,114,45,101,100,103,101,44,46,105,114,115,45,108,105,110,101,45,108,101,102,116,44,46,105,114,115,45,108,105,110,101,45,109,105,100,44,46,105,114,115,45,108,105,110,101,45,114,105,103,104,116,44,46,105,114,115,45,115,108,105,100,101,114,123,98,97,99,107,103,114,111,117,110,100,58,117,114,108,40,34,46,46,47,105,109,103,47,115,112,114,105,116,101,45,115,107,105,110,45,102,108,97,116,46,112,110,103,34,41,32,114,101,112,101,97,116,45,120,125,46,105,114,115,123,104,101,105,103,104,116,58,52,48,112,120,125,46,105,114,115,45,119,105,116,104,45,103,114,105,100,123,104,101,105,103,104,116,58,54,48,112,120,125,46,105,114,115,45,108,105,110,101,123,104,101,105,103,104,116,58,49,50,112,120,59,116,111,112,58,50,53,112,120,125,46,105,114,115,45,108,105,110,101,45,108,101,102,116,123,104,101,105,103,104,116,58,49,50,112,120,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,48,32,45,51,48,112,120,125,46,105,114,115,45,108,105,110,101,45,109,105,100,123,104,101,105,103,104,116,58,49,50,112,120,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,48,32,48,125,46,105,114,115,45,108,105,110,101,45,114,105,103,104,116,123,104,101,105,103,104,116,58,49,50,112,120,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,49,48,48,37,32,45,51,48,112,120,125,46,105,114,115,45,98,97,114,123,104,101,105,103,104,116,58,49,50,112,120,59,116,111,112,58,50,53,112,120,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,48,32,45,54,48,112,120,125,46,105,114,115,45,98,97,114,45,101,100,103,101,123,116,111,112,58,50,53,112,120,59,104,101,105,103,104,116,58,49,50,112,120,59,119,105,100,116,104,58,57,112,120,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,48,32,45,57,48,112,120,125,46,105,114,115,45,115,104,97,100,111,119,123,104,101,105,103,104,116,58,51,112,120,59,116,111,112,58,51,52,112,120,59,98,97,99,107,103,114,111,117,110,100,58,35,48,48,48,59,111,112,97,99,105,116,121,58,48,46,50,53,125,46,108,116,45,105,101,57,32,46,105,114,115,45,115,104,97,100,111,119,123,102,105,108,116,101,114,58,32,97,108,112,104,97,40,111,112,97,99,105,116,121,61,50,53,41,125,46,105,114,115,45,115,108,105,100,101,114,123,119,105,100,116,104,58,49,54,112,120,59,104,101,105,103,104,116,58,49,56,112,120,59,116,111,112,58,50,50,112,120,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,48,32,45,49,50,48,112,120,125,46,105,114,115,45,115,108,105,100,101,114,46,115,116,97,116,101,95,104,111,118,101,114,44,46,105,114,115,45,115,108,105,100,101,114,58,104,111,118,101,114,123,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,48,32,45,49,53,48,112,120,125,46,105,114,115,45,109,97,120,44,46,105,114,115,45,109,105,110,123,99,111,108,111,114,58,35,57,57,57,59,102,111,110,116,45,115,105,122,101,58,49,48,112,120,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,51,51,51,59,116,101,120,116,45,115,104,97,100,111,119,58,110,111,110,101,59,116,111,112,58,48,59,112,97,100,100,105,110,103,58,49,112,120,32,51,112,120,59,98,97,99,107,103,114,111,117,110,100,58,35,101,49,101,52,101,57,59,45,109,111,122,45,98,111,114,100,101,114,45,114,97,100,105,117,115,58,52,112,120,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,52,112,120,125,46,105,114,115,45,102,114,111,109,44,46,105,114,115,45,115,105,110,103,108,101,44,46,105,114,115,45,116,111,123,99,111,108,111,114,58,35,102,102,102,59,102,111,110,116,45,115,105,122,101,58,49,48,112,120,59,108,105,110,101,45,104,101,105,103,104,116,58,49,46,51,51,51,59,116,101,120,116,45,115,104,97,100,111,119,58,110,111,110,101,59,112,97,100,100,105,110,103,58,49,112,120,32,53,112,120,59,98,97,99,107,103,114,111,117,110,100,58,35,50,49,57,54,70,51,59,45,109,111,122,45,98,111,114,100,101,114,45,114,97,100,105,117,115,58,52,112,120,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,52,112,120,125,46,105,114,115,45,102,114,111,109,58,97,102,116,101,114,44,46,105,114,115,45,115,105,110,103,108,101,58,97,102,116,101,114,44,46,105,114,115,45,116,111,58,97,102,116,101,114,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,99,111,110,116,101,110,116,58,34,34,59,98,111,116,116,111,109,58,45,54,112,120,59,108,101,102,116,58,53,48,37,59,119,105,100,116,104,58,48,59,104,101,105,103,104,116,58,48,59,109,97,114,103,105,110,45,108,101,102,116,58,45,51,112,120,59,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,59,98,111,114,100,101,114,58,51,112,120,32,115,111,108,105,100,32,116,114,97,110,115,112,97,114,101,110,116,59,98,111,114,100,101,114,45,116,111,112,45,99,111,108,111,114,58,35,50,49,57,54,70,51,125,46,105,114,115,45,103,114,105,100,45,112,111,108,123,98,97,99,107,103,114,111,117,110,100,58,35,101,49,101,52,101,57,125,46,105,114,115,45,103,114,105,100,45,116,101,120,116,123,99,111,108,111,114,58,35,57,57,57,125,46,105,114,115,45,100,105,115,97,98,108,101,100,123,125,10,46,106,113,45,116,111,97,115,116,45,119,114,97,112,44,46,106,113,45,116,111,97,115,116,45,119,114,97,112,32,42,123,109,97,114,103,105,110,58,48,59,112,97,100,100,105,110,103,58,48,125,46,106,113,45,116,111,97,115,116,45,119,114,97,112,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,112,111,115,105,116,105,111,110,58,102,105,120,101,100,59,119,105,100,116,104,58,50,53,48,112,120,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,110,111,110,101,33,105,109,112,111,114,116,97,110,116,59,108,101,116,116,101,114,45,115,112,97,99,105,110,103,58,110,111,114,109,97,108,59,122,45,105,110,100,101,120,58,57,48,48,48,33,105,109,112,111,114,116,97,110,116,125,46,106,113,45,116,111,97,115,116,45,119,114,97,112,46,98,111,116,116,111,109,45,108,101,102,116,123,98,111,116,116,111,109,58,50,48,112,120,59,108,101,102,116,58,50,48,112,120,125,46,106,113,45,116,111,97,115,116,45,119,114,97,112,46,98,111,116,116,111,109,45,114,105,103,104,116,123,98,111,116,116,111,109,58,50,48,112,120,59,114,105,103,104,116,58,52,48,112,120,125,46,106,113,45,116,111,97,115,116,45,119,114,97,112,46,116,111,112,45,108,101,102,116,123,116,111,112,58,50,48,112,120,59,108,101,102,116,58,50,48,112,120,125,46,106,113,45,116,111,97,115,116,45,119,114,97,112,46,116,111,112,45,114,105,103,104,116,123,116,111,112,58,50,48,112,120,59,114,105,103,104,116,58,52,48,112,120,125,46,106,113,45,116,111,97,115,116,45,115,105,110,103,108,101,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,119,105,100,116,104,58,49,48,48,37,59,112,97,100,100,105,110,103,58,49,48,112,120,59,109,97,114,103,105,110,58,48,32,48,32,53,112,120,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,52,112,120,59,102,111,110,116,45,115,105,122,101,58,49,50,112,120,59,102,111,110,116,45,102,97,109,105,108,121,58,97,114,105,97,108,44,115,97,110,115,45,115,101,114,105,102,59,108,105,110,101,45,104,101,105,103,104,116,58,49,55,112,120,59,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,97,108,108,33,105,109,112,111,114,116,97,110,116,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,52,52,52,59,99,111,108,111,114,58,35,102,102,102,125,46,106,113,45,116,111,97,115,116,45,115,105,110,103,108,101,32,104,50,123,102,111,110,116,45,102,97,109,105,108,121,58,97,114,105,97,108,44,115,97,110,115,45,115,101,114,105,102,59,102,111,110,116,45,115,105,122,101,58,49,52,112,120,59,109,97,114,103,105,110,58,48,32,48,32,55,112,120,59,98,97,99,107,103,114,111,117,110,100,58,48,32,48,59,99,111,108,111,114,58,105,110,104,101,114,105,116,59,108,105,110,101,45,104,101,105,103,104,116,58,105,110,104,101,114,105,116,59,108,101,116,116,101,114,45,115,112,97,99,105,110,103,58,110,111,114,109,97,108,125,46,106,113,45,116,111,97,115,116,45,115,105,110,103,108,101,32,97,123,99,111,108,111,114,58,35,101,101,101,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,59,102,111,110,116,45,119,101,105,103,104,116,58,55,48,48,59,98,111,114,100,101,114,45,98,111,116,116,111,109,58,49,112,120,32,115,111,108,105,100,32,35,102,102,102,59,112,97,100,100,105,110,103,45,98,111,116,116,111,109,58,51,112,120,59,102,111,110,116,45,115,105,122,101,58,49,50,112,120,125,46,106,113,45,116,111,97,115,116,45,115,105,110,103,108,101,32,117,108,123,109,97,114,103,105,110,58,48,32,48,32,48,32,49,53,112,120,59,98,97,99,107,103,114,111,117,110,100,58,48,32,48,59,112,97,100,100,105,110,103,58,48,125,46,106,113,45,116,111,97,115,116,45,115,105,110,103,108,101,32,117,108,32,108,105,123,108,105,115,116,45,115,116,121,108,101,45,116,121,112,101,58,100,105,115,99,33,105,109,112,111,114,116,97,110,116,59,108,105,110,101,45,104,101,105,103,104,116,58,49,55,112,120,59,98,97,99,107,103,114,111,117,110,100,58,48,32,48,59,109,97,114,103,105,110,58,48,59,112,97,100,100,105,110,103,58,48,59,108,101,116,116,101,114,45,115,112,97,99,105,110,103,58,110,111,114,109,97,108,125,46,99,108,111,115,101,45,106,113,45,116,111,97,115,116,45,115,105,110,103,108,101,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,51,112,120,59,114,105,103,104,116,58,55,112,120,59,102,111,110,116,45,115,105,122,101,58,49,52,112,120,59,99,117,114,115,111,114,58,112,111,105,110,116,101,114,125,46,106,113,45,116,111,97,115,116,45,108,111,97,100,101,114,123,100,105,115,112,108,97,121,58,98,108,111,99,107,59,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,45,50,112,120,59,104,101,105,103,104,116,58,53,112,120,59,119,105,100,116,104,58,48,59,108,101,102,116,58,48,59,98,111,114,100,101,114,45,114,97,100,105,117,115,58,53,112,120,59,98,97,99,107,103,114,111,117,110,100,58,114,101,100,125,46,106,113,45,116,111,97,115,116,45,108,111,97,100,101,100,123,119,105,100,116,104,58,49,48,48,37,125,46,106,113,45,104,97,115,45,105,99,111,110,123,112,97,100,100,105,110,103,58,49,48,112,120,32,49,48,112,120,32,49,48,112,120,32,53,48,112,120,59,98,97,99,107,103,114,111,117,110,100,45,114,101,112,101,97,116,58,110,111,45,114,101,112,101,97,116,59,98,97,99,107,103,114,111,117,110,100,45,112,111,115,105,116,105,111,110,58,49,48,112,120,125,46,106,113,45,105,99,111,110,45,105,110,102,111,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,100,97,116,97,58,105,109,97,103,101,47,112,110,103,59,98,97,115,101,54,52,44,105,86,66,79,82,119,48,75,71,103,111,65,65,65,65,78,83,85,104,69,85,103,65,65,65,66,103,65,65,65,65,89,67,65,89,65,65,65,68,103,100,122,51,52,65,65,65,65,65,88,78,83,82,48,73,65,114,115,52,99,54,81,65,65,65,65,82,110,81,85,49,66,65,65,67,120,106,119,118,56,89,81,85,65,65,65,65,74,99,69,104,90,99,119,65,65,68,115,77,65,65,65,55,68,65,99,100,118,113,71,81,65,65,65,71,119,83,85,82,66,86,69,104,76,116,90,97,57,83,103,78,66,69,77,99,57,115,85,120,120,82,99,111,85,75,83,122,83,87,73,104,88,112,70,77,104,104,89,87,70,104,97,66,103,52,121,80,89,105,87,67,88,90,120,66,76,69,82,115,76,82,83,51,69,81,107,69,102,119,67,75,100,106,87,74,65,119,83,75,67,103,111,75,67,99,117,100,118,52,79,53,89,76,114,116,55,69,122,103,88,104,105,85,51,47,52,43,98,50,99,107,109,119,86,106,74,83,112,75,107,81,54,119,65,105,52,103,119,104,84,43,122,51,119,82,66,99,69,122,48,121,106,83,115,101,85,84,114,99,82,121,102,115,72,115,88,109,68,48,65,109,98,72,79,67,57,73,105,56,86,73,109,110,117,88,66,80,103,108,72,112,81,53,119,119,83,86,77,55,115,78,110,84,71,55,90,97,52,74,119,68,100,67,106,120,121,65,105,72,51,110,121,65,50,109,116,97,84,74,117,102,105,68,90,53,100,67,97,113,108,73,116,73,76,104,49,78,72,97,116,102,78,53,115,107,118,106,120,57,90,51,56,109,54,57,67,103,122,117,88,109,90,103,86,114,80,73,71,69,55,54,51,74,120,57,113,75,115,82,111,122,87,89,119,54,120,79,72,100,69,82,43,110,110,50,75,107,79,43,66,98,43,85,86,53,67,66,78,54,87,67,54,81,116,66,103,98,82,86,111,122,114,97,104,65,98,109,109,54,72,116,85,115,103,116,80,67,49,57,116,70,100,120,88,90,89,66,79,102,107,98,109,70,74,49,86,97,72,65,49,86,65,72,106,100,48,112,112,55,48,111,84,90,122,118,82,43,69,86,114,120,50,89,103,102,100,115,113,54,101,117,53,53,66,72,89,82,56,104,108,99,107,105,43,110,43,107,69,82,85,70,71,56,66,114,65,48,66,119,106,101,65,118,50,77,56,87,76,81,66,116,99,121,43,83,68,54,102,78,115,109,110,66,51,65,108,66,76,114,103,84,116,86,87,49,99,50,81,78,52,98,86,87,76,65,84,97,73,83,54,48,74,50,68,117,53,121,49,84,105,74,103,106,83,66,118,70,86,90,103,84,109,119,67,85,43,100,65,90,70,111,80,120,71,69,69,115,56,110,121,72,67,57,66,119,101,50,71,118,69,74,118,50,87,88,90,98,48,118,106,100,121,70,84,52,67,120,107,51,101,47,107,73,113,108,79,71,111,86,76,119,119,80,101,118,112,89,72,84,43,48,48,84,43,104,87,119,88,68,102,52,65,74,65,79,85,113,87,99,68,104,98,119,65,65,65,65,65,83,85,86,79,82,75,53,67,89,73,73,61,41,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,51,49,55,48,56,102,59,99,111,108,111,114,58,35,100,57,101,100,102,55,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,98,99,101,56,102,49,125,46,106,113,45,105,99,111,110,45,119,97,114,110,105,110,103,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,100,97,116,97,58,105,109,97,103,101,47,112,110,103,59,98,97,115,101,54,52,44,105,86,66,79,82,119,48,75,71,103,111,65,65,65,65,78,83,85,104,69,85,103,65,65,65,66,103,65,65,65,65,89,67,65,89,65,65,65,68,103,100,122,51,52,65,65,65,65,65,88,78,83,82,48,73,65,114,115,52,99,54,81,65,65,65,65,82,110,81,85,49,66,65,65,67,120,106,119,118,56,89,81,85,65,65,65,65,74,99,69,104,90,99,119,65,65,68,115,77,65,65,65,55,68,65,99,100,118,113,71,81,65,65,65,71,89,83,85,82,66,86,69,104,76,53,90,83,118,84,115,78,81,70,77,98,88,90,71,73,67,77,89,71,89,109,74,104,65,81,73,74,65,73,67,89,81,80,65,65,67,105,83,68,66,56,65,105,73,67,81,81,74,84,52,67,113,81,69,119,103,74,118,89,65,83,65,81,67,105,90,105,89,109,74,104,65,73,66,65,84,67,65,82,74,121,43,57,114,84,115,108,100,100,56,115,75,117,49,77,48,43,100,76,98,48,53,55,118,54,47,108,98,113,47,50,114,75,48,109,83,47,84,82,78,106,57,99,87,78,65,75,80,89,73,74,73,73,55,103,73,120,67,99,81,53,49,99,118,113,73,68,43,71,73,69,88,56,65,83,71,52,66,49,98,75,53,103,73,90,70,101,81,102,111,74,100,69,88,79,102,103,88,52,81,65,81,103,55,107,72,50,65,54,53,121,81,56,55,108,121,120,98,50,55,115,103,103,107,65,122,65,117,70,104,98,98,103,49,75,50,107,103,67,107,66,49,98,86,119,121,73,82,57,109,50,76,55,80,82,80,73,104,68,85,73,88,103,71,116,121,75,119,53,55,53,121,122,51,108,84,78,115,54,88,52,74,88,110,106,86,43,76,75,77,47,109,51,77,121,100,110,84,98,116,79,75,73,106,116,122,54,86,104,67,66,113,52,118,83,109,51,110,99,100,114,68,50,108,107,48,86,103,85,88,83,86,75,106,86,68,74,88,74,122,105,106,87,49,82,81,100,115,85,55,70,55,55,72,101,56,117,54,56,107,111,78,90,84,122,56,79,122,53,121,71,97,54,74,51,72,51,108,90,48,120,89,103,88,66,75,50,81,121,109,108,87,87,65,43,82,87,110,89,104,115,107,76,66,118,50,118,109,69,43,104,66,77,67,116,98,65,55,75,88,53,100,114,87,121,82,84,47,50,74,115,113,90,50,73,118,102,66,57,89,52,98,87,68,78,77,70,98,74,82,70,109,67,57,69,55,52,83,111,83,48,67,113,117,108,119,106,107,67,48,43,53,98,112,99,86,49,67,90,56,78,77,101,106,52,112,106,121,48,85,43,100,111,68,81,115,71,121,111,49,104,122,86,74,116,116,73,106,104,81,55,71,110,66,116,82,70,78,49,85,97,114,85,108,72,56,70,51,120,105,99,116,43,72,89,48,55,114,69,122,111,85,71,80,108,87,99,106,82,70,82,114,52,47,103,67,104,90,103,99,51,90,76,50,100,56,111,65,65,65,65,65,83,85,86,79,82,75,53,67,89,73,73,61,41,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,56,97,54,100,51,98,59,99,111,108,111,114,58,35,102,99,102,56,101,51,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,102,97,101,98,99,99,125,46,106,113,45,105,99,111,110,45,101,114,114,111,114,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,100,97,116,97,58,105,109,97,103,101,47,112,110,103,59,98,97,115,101,54,52,44,105,86,66,79,82,119,48,75,71,103,111,65,65,65,65,78,83,85,104,69,85,103,65,65,65,66,103,65,65,65,65,89,67,65,89,65,65,65,68,103,100,122,51,52,65,65,65,65,65,88,78,83,82,48,73,65,114,115,52,99,54,81,65,65,65,65,82,110,81,85,49,66,65,65,67,120,106,119,118,56,89,81,85,65,65,65,65,74,99,69,104,90,99,119,65,65,68,115,77,65,65,65,55,68,65,99,100,118,113,71,81,65,65,65,72,79,83,85,82,66,86,69,104,76,114,90,97,47,83,103,78,66,69,77,90,122,104,48,87,75,67,67,108,83,67,75,97,73,89,79,69,68,43,65,65,75,101,81,81,76,71,56,72,87,122,116,76,67,73,109,66,114,89,97,100,103,73,100,89,43,103,73,75,78,89,107,66,70,83,119,117,55,67,65,111,113,67,103,107,107,111,71,66,73,47,69,50,56,80,100,98,76,90,109,101,68,76,103,122,90,122,99,120,56,51,47,122,90,50,83,83,88,67,49,106,57,102,114,43,73,49,72,113,57,51,103,50,121,120,72,52,105,119,77,49,118,107,111,66,87,65,100,120,67,109,112,122,84,120,102,107,78,50,82,99,121,90,78,97,72,70,73,107,83,111,49,48,43,56,107,103,120,107,88,73,85,82,86,53,72,71,120,84,109,70,117,99,55,53,66,50,82,102,81,107,112,120,72,71,56,97,65,103,97,65,70,97,48,116,65,72,113,89,70,102,81,55,73,119,101,50,121,104,79,68,107,56,43,74,52,67,55,121,65,111,82,84,87,73,51,119,47,52,107,108,71,82,103,82,52,108,79,55,82,112,110,57,43,103,118,77,121,87,112,43,117,120,70,104,56,43,72,43,65,82,108,103,78,49,110,74,117,74,117,81,65,89,118,78,107,69,110,119,71,70,99,107,49,56,69,114,52,113,51,101,103,69,99,47,111,79,43,109,104,76,100,75,103,82,121,104,100,78,70,105,97,99,67,48,114,108,79,67,98,104,78,86,122,52,72,57,70,110,65,89,103,68,66,118,85,51,81,73,105,111,90,108,74,70,76,74,116,115,111,72,89,82,68,102,105,90,111,85,121,73,120,113,67,116,82,112,86,108,65,78,113,48,69,85,52,100,65,112,106,114,116,103,101,122,80,70,97,100,53,83,49,57,87,103,106,107,99,48,104,78,86,110,117,70,52,72,106,86,65,54,67,55,81,114,83,73,98,121,108,66,43,111,90,101,51,97,72,103,66,115,113,108,78,113,75,89,72,52,56,106,88,121,74,75,77,117,65,98,105,121,86,74,56,75,122,97,66,51,101,82,99,48,112,103,57,86,119,81,52,110,105,70,114,121,73,54,56,113,105,79,105,51,65,98,106,119,100,115,102,110,65,116,107,48,98,67,106,84,76,74,75,114,54,109,114,68,57,103,56,105,113,47,83,47,66,56,49,104,103,117,79,77,108,81,84,110,86,121,71,52,48,119,65,99,106,110,109,103,115,67,78,69,83,68,114,106,109,101,55,119,102,102,116,80,52,80,55,83,80,52,78,51,67,74,90,100,118,122,111,78,121,71,113,50,99,47,72,87,79,88,74,71,115,118,86,103,43,82,65,47,107,50,77,67,47,119,78,54,73,50,89,65,50,80,116,56,71,107,65,65,65,65,65,83,85,86,79,82,75,53,67,89,73,73,61,41,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,97,57,52,52,52,50,59,99,111,108,111,114,58,35,102,50,100,101,100,101,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,101,98,99,99,100,49,125,46,106,113,45,105,99,111,110,45,115,117,99,99,101,115,115,123,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,117,114,108,40,100,97,116,97,58,105,109,97,103,101,47,112,110,103,59,98,97,115,101,54,52,44,105,86,66,79,82,119,48,75,71,103,111,65,65,65,65,78,83,85,104,69,85,103,65,65,65,66,103,65,65,65,65,89,67,65,89,65,65,65,68,103,100,122,51,52,65,65,65,65,65,88,78,83,82,48,73,65,114,115,52,99,54,81,65,65,65,65,82,110,81,85,49,66,65,65,67,120,106,119,118,56,89,81,85,65,65,65,65,74,99,69,104,90,99,119,65,65,68,115,77,65,65,65,55,68,65,99,100,118,113,71,81,65,65,65,68,115,83,85,82,66,86,69,104,76,89,50,65,89,66,102,81,77,103,102,47,47,47,51,80,56,43,47,101,118,65,73,103,118,65,47,70,115,73,70,43,66,97,118,89,68,68,87,77,66,71,114,111,97,83,77,77,66,105,69,56,86,67,55,65,90,68,114,73,70,97,77,70,110,105,105,51,65,90,84,106,85,103,115,85,85,87,85,68,65,56,79,100,65,72,54,105,81,98,81,69,104,119,52,72,121,71,115,80,69,99,75,66,88,66,73,67,52,65,82,104,101,120,52,71,52,66,115,106,109,119,101,85,49,115,111,73,70,97,71,103,47,87,116,111,70,90,82,73,90,100,69,118,73,77,104,120,107,67,67,106,88,73,86,115,65,84,86,54,103,70,71,65,67,115,52,82,115,119,48,69,71,103,73,73,72,51,81,74,89,74,103,72,83,65,82,81,90,68,114,87,65,66,43,106,97,119,122,103,115,43,81,50,85,79,52,57,68,55,106,110,82,83,82,71,111,69,70,82,73,76,99,100,109,69,77,87,71,73,48,99,109,48,74,74,50,81,112,89,65,49,82,68,118,99,109,122,74,69,87,104,65,66,104,68,47,112,113,114,76,48,83,48,67,87,117,65,66,75,103,110,82,107,105,57,108,76,115,101,83,55,103,50,65,108,113,119,72,87,81,83,75,72,52,111,75,76,114,73,76,112,82,71,104,69,81,67,119,50,76,105,82,85,73,97,52,108,119,65,65,65,65,66,74,82,85,53,69,114,107,74,103,103,103,61,61,41,59,99,111,108,111,114,58,35,100,102,102,48,100,56,59,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,35,51,99,55,54,51,100,59,98,111,114,100,101,114,45,99,111,108,111,114,58,35,100,54,101,57,99,54,125,47,42,33,32,76,105,116,121,32,45,32,118,50,46,52,46,48,32,45,32,50,48,49,57,45,48,56,45,49,48,10,42,32,104,116,116,112,58,47,47,115,111,114,103,97,108,108,97,46,99,111,109,47,108,105,116,121,47,10,42,32,67,111,112,121,114,105,103,104,116,32,40,99,41,32,50,48,49,53,45,50,48,49,57,32,74,97,110,32,83,111,114,103,97,108,108,97,59,32,76,105,99,101,110,115,101,100,32,77,73,84,32,42,47,46,108,105,116,121,123,122,45,105,110,100,101,120,58,57,57,57,48,59,112,111,115,105,116,105,111,110,58,102,105,120,101,100,59,116,111,112,58,48,59,114,105,103,104,116,58,48,59,98,111,116,116,111,109,58,48,59,108,101,102,116,58,48,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,119,114,97,112,59,98,97,99,107,103,114,111,117,110,100,58,35,48,98,48,98,48,98,59,98,97,99,107,103,114,111,117,110,100,58,114,103,98,97,40,48,44,48,44,48,44,48,46,57,41,59,111,117,116,108,105,110,101,58,110,111,110,101,32,33,105,109,112,111,114,116,97,110,116,59,111,112,97,99,105,116,121,58,48,59,45,119,101,98,107,105,116,45,116,114,97,110,115,105,116,105,111,110,58,111,112,97,99,105,116,121,32,46,51,115,32,101,97,115,101,59,45,111,45,116,114,97,110,115,105,116,105,111,110,58,111,112,97,99,105,116,121,32,46,51,115,32,101,97,115,101,59,116,114,97,110,115,105,116,105,111,110,58,111,112,97,99,105,116,121,32,46,51,115,32,101,97,115,101,125,46,108,105,116,121,46,108,105,116,121,45,111,112,101,110,101,100,123,111,112,97,99,105,116,121,58,49,125,46,108,105,116,121,46,108,105,116,121,45,99,108,111,115,101,100,123,111,112,97,99,105,116,121,58,48,125,46,108,105,116,121,32,42,123,45,119,101,98,107,105,116,45,98,111,120,45,115,105,122,105,110,103,58,98,111,114,100,101,114,45,98,111,120,59,45,109,111,122,45,98,111,120,45,115,105,122,105,110,103,58,98,111,114,100,101,114,45,98,111,120,59,98,111,120,45,115,105,122,105,110,103,58,98,111,114,100,101,114,45,98,111,120,125,46,108,105,116,121,45,119,114,97,112,123,122,45,105,110,100,101,120,58,57,57,57,48,59,112,111,115,105,116,105,111,110,58,102,105,120,101,100,59,116,111,112,58,48,59,114,105,103,104,116,58,48,59,98,111,116,116,111,109,58,48,59,108,101,102,116,58,48,59,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,59,111,117,116,108,105,110,101,58,110,111,110,101,32,33,105,109,112,111,114,116,97,110,116,125,46,108,105,116,121,45,119,114,97,112,58,98,101,102,111,114,101,123,99,111,110,116,101,110,116,58,39,39,59,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,104,101,105,103,104,116,58,49,48,48,37,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,109,105,100,100,108,101,59,109,97,114,103,105,110,45,114,105,103,104,116,58,45,48,46,50,53,101,109,125,46,108,105,116,121,45,108,111,97,100,101,114,123,122,45,105,110,100,101,120,58,57,57,57,49,59,99,111,108,111,114,58,35,102,102,102,59,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,116,111,112,58,53,48,37,59,109,97,114,103,105,110,45,116,111,112,58,45,48,46,56,101,109,59,119,105,100,116,104,58,49,48,48,37,59,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,59,102,111,110,116,45,115,105,122,101,58,49,52,112,120,59,102,111,110,116,45,102,97,109,105,108,121,58,65,114,105,97,108,44,72,101,108,118,101,116,105,99,97,44,115,97,110,115,45,115,101,114,105,102,59,111,112,97,99,105,116,121,58,48,59,45,119,101,98,107,105,116,45,116,114,97,110,115,105,116,105,111,110,58,111,112,97,99,105,116,121,32,46,51,115,32,101,97,115,101,59,45,111,45,116,114,97,110,115,105,116,105,111,110,58,111,112,97,99,105,116,121,32,46,51,115,32,101,97,115,101,59,116,114,97,110,115,105,116,105,111,110,58,111,112,97,99,105,116,121,32,46,51,115,32,101,97,115,101,125,46,108,105,116,121,45,108,111,97,100,105,110,103,32,46,108,105,116,121,45,108,111,97,100,101,114,123,111,112,97,99,105,116,121,58,49,125,46,108,105,116,121,45,99,111,110,116,97,105,110,101,114,123,122,45,105,110,100,101,120,58,57,57,57,50,59,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,116,101,120,116,45,97,108,105,103,110,58,108,101,102,116,59,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,109,105,100,100,108,101,59,100,105,115,112,108,97,121,58,105,110,108,105,110,101,45,98,108,111,99,107,59,119,104,105,116,101,45,115,112,97,99,101,58,110,111,114,109,97,108,59,109,97,120,45,119,105,100,116,104,58,49,48,48,37,59,109,97,120,45,104,101,105,103,104,116,58,49,48,48,37,59,111,117,116,108,105,110,101,58,110,111,110,101,32,33,105,109,112,111,114,116,97,110,116,125,46,108,105,116,121,45,99,111,110,116,101,110,116,123,122,45,105,110,100,101,120,58,57,57,57,51,59,119,105,100,116,104,58,49,48,48,37,59,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,58,115,99,97,108,101,40,49,41,59,45,109,115,45,116,114,97,110,115,102,111,114,109,58,115,99,97,108,101,40,49,41,59,45,111,45,116,114,97,110,115,102,111,114,109,58,115,99,97,108,101,40,49,41,59,116,114,97,110,115,102,111,114,109,58,115,99,97,108,101,40,49,41,59,45,119,101,98,107,105,116,45,116,114,97,110,115,105,116,105,111,110,58,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,32,46,51,115,32,101,97,115,101,59,116,114,97,110,115,105,116,105,111,110,58,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,32,46,51,115,32,101,97,115,101,59,45,111,45,116,114,97,110,115,105,116,105,111,110,58,45,111,45,116,114,97,110,115,102,111,114,109,32,46,51,115,32,101,97,115,101,59,116,114,97,110,115,105,116,105,111,110,58,116,114,97,110,115,102,111,114,109,32,46,51,115,32,101,97,115,101,59,116,114,97,110,115,105,116,105,111,110,58,116,114,97,110,115,102,111,114,109,32,46,51,115,32,101,97,115,101,44,32,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,32,46,51,115,32,101,97,115,101,44,32,45,111,45,116,114,97,110,115,102,111,114,109,32,46,51,115,32,101,97,115,101,125,46,108,105,116,121,45,108,111,97,100,105,110,103,32,46,108,105,116,121,45,99,111,110,116,101,110,116,44,46,108,105,116,121,45,99,108,111,115,101,100,32,46,108,105,116,121,45,99,111,110,116,101,110,116,123,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,58,115,99,97,108,101,40,46,56,41,59,45,109,115,45,116,114,97,110,115,102,111,114,109,58,115,99,97,108,101,40,46,56,41,59,45,111,45,116,114,97,110,115,102,111,114,109,58,115,99,97,108,101,40,46,56,41,59,116,114,97,110,115,102,111,114,109,58,115,99,97,108,101,40,46,56,41,125,46,108,105,116,121,45,99,111,110,116,101,110,116,58,97,102,116,101,114,123,99,111,110,116,101,110,116,58,39,39,59,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,108,101,102,116,58,48,59,116,111,112,58,48,59,98,111,116,116,111,109,58,48,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,114,105,103,104,116,58,48,59,119,105,100,116,104,58,97,117,116,111,59,104,101,105,103,104,116,58,97,117,116,111,59,122,45,105,110,100,101,120,58,45,49,59,45,119,101,98,107,105,116,45,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,56,112,120,32,114,103,98,97,40,48,44,48,44,48,44,48,46,54,41,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,56,112,120,32,114,103,98,97,40,48,44,48,44,48,44,48,46,54,41,125,46,108,105,116,121,45,99,108,111,115,101,123,122,45,105,110,100,101,120,58,57,57,57,52,59,119,105,100,116,104,58,51,53,112,120,59,104,101,105,103,104,116,58,51,53,112,120,59,112,111,115,105,116,105,111,110,58,102,105,120,101,100,59,114,105,103,104,116,58,48,59,116,111,112,58,48,59,45,119,101,98,107,105,116,45,97,112,112,101,97,114,97,110,99,101,58,110,111,110,101,59,99,117,114,115,111,114,58,112,111,105,110,116,101,114,59,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,59,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,59,112,97,100,100,105,110,103,58,48,59,99,111,108,111,114,58,35,102,102,102,59,102,111,110,116,45,115,116,121,108,101,58,110,111,114,109,97,108,59,102,111,110,116,45,115,105,122,101,58,51,53,112,120,59,102,111,110,116,45,102,97,109,105,108,121,58,65,114,105,97,108,44,66,97,115,107,101,114,118,105,108,108,101,44,109,111,110,111,115,112,97,99,101,59,108,105,110,101,45,104,101,105,103,104,116,58,51,53,112,120,59,116,101,120,116,45,115,104,97,100,111,119,58,48,32,49,112,120,32,50,112,120,32,114,103,98,97,40,48,44,48,44,48,44,48,46,54,41,59,98,111,114,100,101,114,58,48,59,98,97,99,107,103,114,111,117,110,100,58,110,111,110,101,59,111,117,116,108,105,110,101,58,110,111,110,101,59,45,119,101,98,107,105,116,45,98,111,120,45,115,104,97,100,111,119,58,110,111,110,101,59,98,111,120,45,115,104,97,100,111,119,58,110,111,110,101,125,46,108,105,116,121,45,99,108,111,115,101,58,58,45,109,111,122,45,102,111,99,117,115,45,105,110,110,101,114,123,98,111,114,100,101,114,58,48,59,112,97,100,100,105,110,103,58,48,125,46,108,105,116,121,45,99,108,111,115,101,58,104,111,118,101,114,44,46,108,105,116,121,45,99,108,111,115,101,58,102,111,99,117,115,44,46,108,105,116,121,45,99,108,111,115,101,58,97,99,116,105,118,101,44,46,108,105,116,121,45,99,108,111,115,101,58,118,105,115,105,116,101,100,123,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,110,111,110,101,59,116,101,120,116,45,97,108,105,103,110,58,99,101,110,116,101,114,59,112,97,100,100,105,110,103,58,48,59,99,111,108,111,114,58,35,102,102,102,59,102,111,110,116,45,115,116,121,108,101,58,110,111,114,109,97,108,59,102,111,110,116,45,115,105,122,101,58,51,53,112,120,59,102,111,110,116,45,102,97,109,105,108,121,58,65,114,105,97,108,44,66,97,115,107,101,114,118,105,108,108,101,44,109,111,110,111,115,112,97,99,101,59,108,105,110,101,45,104,101,105,103,104,116,58,51,53,112,120,59,116,101,120,116,45,115,104,97,100,111,119,58,48,32,49,112,120,32,50,112,120,32,114,103,98,97,40,48,44,48,44,48,44,48,46,54,41,59,98,111,114,100,101,114,58,48,59,98,97,99,107,103,114,111,117,110,100,58,110,111,110,101,59,111,117,116,108,105,110,101,58,110,111,110,101,59,45,119,101,98,107,105,116,45,98,111,120,45,115,104,97,100,111,119,58,110,111,110,101,59,98,111,120,45,115,104,97,100,111,119,58,110,111,110,101,125,46,108,105,116,121,45,99,108,111,115,101,58,97,99,116,105,118,101,123,116,111,112,58,49,112,120,125,46,108,105,116,121,45,105,109,97,103,101,32,105,109,103,123,109,97,120,45,119,105,100,116,104,58,49,48,48,37,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,108,105,110,101,45,104,101,105,103,104,116,58,48,59,98,111,114,100,101,114,58,48,125,46,108,105,116,121,45,105,102,114,97,109,101,32,46,108,105,116,121,45,99,111,110,116,97,105,110,101,114,44,46,108,105,116,121,45,121,111,117,116,117,98,101,32,46,108,105,116,121,45,99,111,110,116,97,105,110,101,114,44,46,108,105,116,121,45,118,105,109,101,111,32,46,108,105,116,121,45,99,111,110,116,97,105,110,101,114,44,46,108,105,116,121,45,102,97,99,101,98,111,111,107,118,105,100,101,111,32,46,108,105,116,121,45,99,111,110,116,97,105,110,101,114,44,46,108,105,116,121,45,103,111,111,103,108,101,109,97,112,115,32,46,108,105,116,121,45,99,111,110,116,97,105,110,101,114,123,119,105,100,116,104,58,49,48,48,37,59,109,97,120,45,119,105,100,116,104,58,57,54,52,112,120,125,46,108,105,116,121,45,105,102,114,97,109,101,45,99,111,110,116,97,105,110,101,114,123,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,48,59,112,97,100,100,105,110,103,45,116,111,112,58,53,54,46,50,53,37,59,111,118,101,114,102,108,111,119,58,104,105,100,100,101,110,59,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,97,108,108,59,45,119,101,98,107,105,116,45,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,90,40,48,41,59,116,114,97,110,115,102,111,114,109,58,116,114,97,110,115,108,97,116,101,90,40,48,41,59,45,119,101,98,107,105,116,45,111,118,101,114,102,108,111,119,45,115,99,114,111,108,108,105,110,103,58,116,111,117,99,104,125,46,108,105,116,121,45,105,102,114,97,109,101,45,99,111,110,116,97,105,110,101,114,32,105,102,114,97,109,101,123,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,116,111,112,58,48,59,108,101,102,116,58,48,59,119,105,100,116,104,58,49,48,48,37,59,104,101,105,103,104,116,58,49,48,48,37,59,45,119,101,98,107,105,116,45,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,56,112,120,32,114,103,98,97,40,48,44,48,44,48,44,48,46,54,41,59,98,111,120,45,115,104,97,100,111,119,58,48,32,48,32,56,112,120,32,114,103,98,97,40,48,44,48,44,48,44,48,46,54,41,59,98,97,99,107,103,114,111,117,110,100,58,35,48,48,48,125,46,108,105,116,121,45,104,105,100,101,123,100,105,115,112,108,97,121,58,110,111,110,101,125,42,58,102,111,99,117,115,32,123,10,32,32,32,32,111,117,116,108,105,110,101,58,32,48,59,10,125,10,10,46,105,110,102,111,45,105,99,111,110,32,123,10,32,32,32,32,119,105,100,116,104,58,32,49,114,101,109,59,10,32,32,32,32,109,97,114,103,105,110,45,114,105,103,104,116,58,32,48,46,50,114,101,109,59,10,32,32,32,32,99,117,114,115,111,114,58,32,112,111,105,110,116,101,114,59,10,32,32,32,32,108,105,110,101,45,104,101,105,103,104,116,58,32,49,114,101,109,59,10,32,32,32,32,104,101,105,103,104,116,58,32,49,114,101,109,59,10,32,32,32,32,98,97,99,107,103,114,111,117,110,100,45,105,109,97,103,101,58,32,117,114,108,40,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,98,97,115,101,54,52,44,80,72,78,50,90,121,66,52,98,87,120,117,99,122,48,105,97,72,82,48,99,68,111,118,76,51,100,51,100,121,53,51,77,121,53,118,99,109,99,118,77,106,65,119,77,67,57,122,100,109,99,105,73,72,104,116,98,71,53,122,79,110,104,115,97,87,53,114,80,83,74,111,100,72,82,119,79,105,56,118,100,51,100,51,76,110,99,122,76,109,57,121,90,121,56,120,79,84,107,53,76,51,104,115,97,87,53,114,73,105,66,52,80,83,73,119,99,72,103,105,73,72,107,57,73,106,66,119,101,67,73,75,73,67,65,103,73,67,66,50,97,87,86,51,81,109,57,52,80,83,73,119,73,68,65,103,78,68,73,50,76,106,89,50,78,121,65,48,77,106,89,117,78,106,89,51,73,105,66,122,100,72,108,115,90,84,48,105,90,87,53,104,89,109,120,108,76,87,74,104,89,50,116,110,99,109,57,49,98,109,81,54,98,109,86,51,73,68,65,103,77,67,65,48,77,106,89,117,78,106,89,51,73,68,81,121,78,105,52,50,78,106,99,55,73,105,66,109,97,87,120,115,80,83,73,106,90,109,90,109,73,106,52,75,80,71,99,43,67,105,65,103,73,67,65,56,90,122,52,75,73,67,65,103,73,67,65,103,73,67,65,56,90,122,52,75,73,67,65,103,73,67,65,103,73,67,65,103,73,67,65,103,80,72,74,108,89,51,81,103,101,68,48,105,77,84,107,121,73,105,66,53,80,83,73,120,79,84,73,105,73,72,100,112,90,72,82,111,80,83,73,48,77,105,52,50,78,106,99,105,73,71,104,108,97,87,100,111,100,68,48,105,77,84,73,52,73,105,56,43,67,105,65,103,73,67,65,103,73,67,65,103,73,67,65,103,73,68,120,119,89,88,82,111,73,71,81,57,73,107,48,121,77,84,77,117,77,122,77,122,76,68,66,68,79,84,85,117,78,68,89,51,76,68,65,115,77,67,119,53,78,83,52,48,78,106,99,115,77,67,119,121,77,84,77,117,77,122,77,122,99,122,107,49,76,106,81,50,78,121,119,121,77,84,77,117,77,122,77,122,76,68,73,120,77,121,52,122,77,122,77,115,77,106,69,122,76,106,77,122,77,49,77,48,77,106,89,117,78,106,89,51,76,68,77,122,77,83,52,121,76,68,81,121,78,105,52,50,78,106,99,115,77,106,69,122,76,106,77,122,77,119,111,103,73,67,65,103,73,67,65,103,73,67,65,103,73,67,65,103,73,67,65,103,85,122,77,122,77,83,52,121,76,68,65,115,77,106,69,122,76,106,77,122,77,121,119,119,101,105,66,78,77,106,69,122,76,106,77,122,77,121,119,122,79,68,82,106,76,84,107,48,76,106,65,52,76,68,65,116,77,84,99,119,76,106,89,50,78,121,48,51,78,105,52,49,79,68,99,116,77,84,99,119,76,106,89,50,78,121,48,120,78,122,65,117,78,106,89,51,85,122,69,120,79,83,52,121,78,84,77,115,78,68,73,117,78,106,89,51,76,68,73,120,77,121,52,122,77,122,77,115,78,68,73,117,78,106,89,51,67,105,65,103,73,67,65,103,73,67,65,103,73,67,65,103,73,67,65,103,73,67,66,84,77,122,103,48,76,68,69,120,79,83,52,121,78,84,77,115,77,122,103,48,76,68,73,120,77,121,52,122,77,122,78,84,77,122,65,51,76,106,81,120,77,121,119,122,79,68,81,115,77,106,69,122,76,106,77,122,77,121,119,122,79,68,82,54,73,105,56,43,67,105,65,103,73,67,65,103,73,67,65,103,73,67,65,103,73,68,120,121,90,87,78,48,73,72,103,57,73,106,69,53,77,105,73,103,101,84,48,105,77,84,65,50,76,106,89,50,78,121,73,103,100,50,108,107,100,71,103,57,73,106,81,121,76,106,89,50,78,121,73,103,97,71,86,112,90,50,104,48,80,83,73,48,77,105,52,50,78,106,99,105,76,122,52,75,73,67,65,103,73,67,65,103,73,67,65,56,76,50,99,43,67,105,65,103,73,67,65,56,76,50,99,43,67,106,119,118,90,122,52,75,80,67,57,122,100,109,99,43,67,103,61,61,41,59,10,32,32,32,32,102,105,108,116,101,114,58,32,98,114,105,103,104,116,110,101,115,115,40,54,53,37,41,59,10,125,10,10,46,105,110,102,111,45,105,99,111,110,58,104,111,118,101,114,32,123,10,32,32,32,32,99,111,108,111,114,58,32,105,110,104,101,114,105,116,59,10,125,10,10,46,109,111,100,97,108,45,116,105,116,108,101,32,123,10,32,32,32,32,109,97,120,45,119,105,100,116,104,58,32,99,97,108,99,40,49,48,48,37,32,45,32,50,114,101,109,41,59,10,32,32,32,32,111,118,101,114,102,108,111,119,58,32,104,105,100,100,101,110,59,10,32,32,32,32,116,101,120,116,45,111,118,101,114,102,108,111,119,58,32,101,108,108,105,112,115,105,115,59,10,125,10,10,10,46,112,97,116,104,45,114,111,119,32,123,10,32,32,32,32,100,105,115,112,108,97,121,58,32,45,109,115,45,102,108,101,120,98,111,120,59,10,32,32,32,32,100,105,115,112,108,97,121,58,32,102,108,101,120,59,10,32,32,32,32,45,109,115,45,102,108,101,120,45,97,108,105,103,110,58,32,115,116,97,114,116,59,10,32,32,32,32,97,108,105,103,110,45,105,116,101,109,115,58,32,102,108,101,120,45,115,116,97,114,116,59,10,125,10,10,46,116,97,103,45,99,111,110,116,97,105,110,101,114,32,123,10,32,32,32,32,109,97,114,103,105,110,45,108,101,102,116,58,32,48,46,51,114,101,109,59,10,125,10,10,46,112,97,116,104,45,108,105,110,101,32,123,10,32,32,32,32,99,111,108,111,114,58,32,35,66,66,66,59,10,32,32,32,32,116,101,120,116,45,111,118,101,114,102,108,111,119,58,32,101,108,108,105,112,115,105,115,59,10,32,32,32,32,111,118,101,114,102,108,111,119,58,32,104,105,100,100,101,110,59,10,32,32,32,32,119,104,105,116,101,45,115,112,97,99,101,58,32,110,111,119,114,97,112,59,10,125,10,10,97,32,123,10,32,32,32,32,99,111,108,111,114,58,32,35,48,48,66,67,68,52,59,10,125,10,10,98,111,100,121,32,123,10,32,32,32,32,111,118,101,114,102,108,111,119,45,121,58,32,115,99,114,111,108,108,59,10,32,32,32,32,98,97,99,107,103,114,111,117,110,100,58,32,98,108,97,99,107,59,10,125,10,10,46,112,114,111,103,114,101,115,115,32,123,10,32,32,32,32,109,97,114,103,105,110,45,116,111,112,58,32,49,101,109,59,10,125,10,10,46,99,97,114,100,44,32,46,109,111,100,97,108,45,99,111,110,116,101,110,116,32,123,10,32,32,32,32,109,97,114,103,105,110,45,116,111,112,58,32,49,101,109,59,10,32,32,32,32,98,97,99,107,103,114,111,117,110,100,58,32,35,50,49,50,49,50,49,59,10,32,32,32,32,99,111,108,111,114,58,32,35,101,48,101,48,101,48,59,10,32,32,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,49,112,120,59,10,32,32,32,32,98,111,114,100,101,114,58,32,110,111,110,101,59,10,125,10,10,46,116,97,98,108,101,32,123,10,32,32,32,32,99,111,108,111,114,58,32,35,101,48,101,48,101,48,59,10,125,10,10,46,116,97,98,108,101,32,116,100,44,32,46,116,97,98,108,101,32,116,104,32,123,10,32,32,32,32,98,111,114,100,101,114,58,32,110,111,110,101,59,10,125,10,10,46,116,97,98,108,101,32,116,104,101,97,100,32,116,104,32,123,10,32,32,32,32,98,111,114,100,101,114,45,98,111,116,116,111,109,58,32,49,112,120,32,115,111,108,105,100,32,35,54,52,54,52,54,52,59,10,125,10,10,46,109,111,100,97,108,45,104,101,97,100,101,114,32,46,99,108,111,115,101,32,123,10,32,32,32,32,99,111,108,111,114,58,32,35,101,48,101,48,101,48,59,10,32,32,32,32,116,101,120,116,45,115,104,97,100,111,119,58,32,110,111,110,101,59,10,125,10,10,46,109,111,100,97,108,45,104,101,97,100,101,114,32,123,10,32,32,32,32,98,111,114,100,101,114,45,98,111,116,116,111,109,58,32,49,112,120,32,115,111,108,105,100,32,35,54,52,54,52,54,52,59,10,125,10,10,46,115,117,98,45,100,111,99,117,109,101,110,116,32,123,10,32,32,32,32,98,97,99,107,103,114,111,117,110,100,58,32,35,51,55,52,55,52,70,32,33,105,109,112,111,114,116,97,110,116,59,10,125,10,10,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,46,115,117,98,45,100,111,99,117,109,101,110,116,32,123,10,32,32,32,32,98,111,114,100,101,114,45,116,111,112,58,32,49,112,120,32,115,111,108,105,100,32,35,54,52,54,52,54,52,32,33,105,109,112,111,114,116,97,110,116,59,10,125,10,10,46,115,117,98,45,100,111,99,117,109,101,110,116,32,46,116,101,120,116,45,109,117,116,101,100,32,123,10,32,32,32,32,99,111,108,111,114,58,32,35,56,97,57,52,57,99,32,33,105,109,112,111,114,116,97,110,116,59,10,125,10,10,10,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,32,123,10,32,32,32,32,98,97,99,107,103,114,111,117,110,100,58,32,35,50,49,50,49,50,49,59,10,32,32,32,32,99,111,108,111,114,58,32,35,101,48,101,48,101,48,59,10,10,32,32,32,32,98,111,114,100,101,114,45,116,111,112,58,32,49,112,120,32,115,111,108,105,100,32,35,52,50,52,50,52,50,59,10,32,32,32,32,98,111,114,100,101,114,45,98,111,116,116,111,109,58,32,110,111,110,101,59,10,32,32,32,32,98,111,114,100,101,114,45,108,101,102,116,58,32,110,111,110,101,59,10,32,32,32,32,98,111,114,100,101,114,45,114,105,103,104,116,58,32,110,111,110,101,59,10,32,32,32,32,112,97,100,100,105,110,103,58,32,46,50,53,114,101,109,32,48,46,53,114,101,109,59,10,125,10,10,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,58,102,105,114,115,116,45,99,104,105,108,100,32,123,10,32,32,32,32,98,111,114,100,101,114,45,116,111,112,58,32,110,111,110,101,59,10,125,10,10,46,110,97,118,98,97,114,45,98,114,97,110,100,32,123,10,32,32,32,32,102,111,110,116,45,115,105,122,101,58,32,49,46,55,53,114,101,109,59,10,32,32,32,32,112,97,100,100,105,110,103,58,32,48,59,10,32,32,32,32,99,111,108,111,114,58,32,35,102,53,102,53,102,53,59,10,125,10,10,46,110,97,118,98,97,114,32,123,10,32,32,32,32,98,97,99,107,103,114,111,117,110,100,58,32,35,53,52,54,98,55,97,59,10,125,10,10,97,58,104,111,118,101,114,44,32,46,98,116,110,58,104,111,118,101,114,32,123,10,32,32,32,32,99,111,108,111,114,58,32,35,102,102,102,59,10,125,10,10,46,110,97,118,98,97,114,32,115,112,97,110,32,123,10,32,32,32,32,99,111,108,111,114,58,32,35,101,101,101,59,10,125,10,10,46,100,111,99,117,109,101,110,116,32,123,10,32,32,32,32,112,97,100,100,105,110,103,58,32,48,46,51,114,101,109,59,10,125,10,10,46,99,97,114,100,45,116,101,120,116,58,108,97,115,116,45,99,104,105,108,100,32,123,10,32,32,32,32,109,97,114,103,105,110,45,116,111,112,58,32,45,49,112,120,59,10,125,10,10,46,100,111,99,117,109,101,110,116,32,112,32,123,10,32,32,32,32,109,97,114,103,105,110,45,98,111,116,116,111,109,58,32,48,59,10,125,10,10,46,100,111,99,117,109,101,110,116,58,104,111,118,101,114,32,112,32,123,10,32,32,32,32,116,101,120,116,45,100,101,99,111,114,97,116,105,111,110,58,32,117,110,100,101,114,108,105,110,101,59,10,125,10,10,46,98,97,100,103,101,45,118,105,100,101,111,32,123,10,32,32,32,32,99,111,108,111,114,58,32,35,70,70,70,70,70,70,59,10,32,32,32,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,35,70,50,55,55,54,49,59,10,125,10,10,46,98,97,100,103,101,45,105,109,97,103,101,32,123,10,32,32,32,32,99,111,108,111,114,58,32,35,70,70,70,70,70,70,59,10,32,32,32,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,35,65,65,57,57,67,57,59,10,125,10,10,46,98,97,100,103,101,45,97,117,100,105,111,32,123,10,32,32,32,32,99,111,108,111,114,58,32,35,70,70,70,70,70,70,59,10,32,32,32,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,35,48,48,65,68,69,70,59,10,125,10,10,46,98,97,100,103,101,45,114,101,115,111,108,117,116,105,111,110,32,123,10,32,32,32,32,99,111,108,111,114,58,32,35,50,49,50,53,50,57,59,10,32,32,32,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,35,66,48,66,69,67,53,59,10,125,10,10,46,98,97,100,103,101,45,116,101,120,116,32,123,10,32,32,32,32,99,111,108,111,114,58,32,35,70,70,70,70,70,70,59,10,32,32,32,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,35,70,65,65,66,51,67,59,10,125,10,10,46,97,100,100,45,116,97,103,45,98,117,116,116,111,110,32,123,10,32,32,32,32,99,117,114,115,111,114,58,32,112,111,105,110,116,101,114,59,10,32,32,32,32,99,111,108,111,114,58,32,35,50,49,50,53,50,57,59,10,32,32,32,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,35,101,48,101,48,101,48,59,10,125,10,10,46,99,97,114,100,45,105,109,103,45,111,118,101,114,108,97,121,32,123,10,32,32,32,32,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,32,110,111,110,101,59,10,32,32,32,32,112,97,100,100,105,110,103,58,32,48,46,55,53,114,101,109,59,10,10,32,32,32,32,98,111,116,116,111,109,58,32,117,110,115,101,116,59,10,32,32,32,32,116,111,112,58,32,48,59,10,32,32,32,32,108,101,102,116,58,32,117,110,115,101,116,59,10,32,32,32,32,114,105,103,104,116,58,32,117,110,115,101,116,59,10,125,10,10,46,102,105,108,101,45,116,105,116,108,101,32,123,10,32,32,32,32,119,105,100,116,104,58,32,49,48,48,37,59,10,32,32,32,32,108,105,110,101,45,104,101,105,103,104,116,58,32,49,114,101,109,59,10,32,32,32,32,104,101,105,103,104,116,58,32,49,46,49,114,101,109,59,10,32,32,32,32,102,111,110,116,45,115,105,122,101,58,32,49,48,112,116,59,10,32,32,32,32,119,104,105,116,101,45,115,112,97,99,101,58,32,110,111,119,114,97,112,59,10,32,32,32,32,116,101,120,116,45,111,118,101,114,102,108,111,119,58,32,101,108,108,105,112,115,105,115,59,10,32,32,32,32,111,118,101,114,102,108,111,119,58,32,104,105,100,100,101,110,59,10,32,32,32,32,99,111,108,111,114,58,32,35,48,48,66,67,68,52,59,10,125,10,10,46,98,97,100,103,101,32,123,10,32,32,32,32,109,97,114,103,105,110,45,114,105,103,104,116,58,32,51,112,120,59,10,125,10,10,46,98,97,100,103,101,45,100,101,108,101,116,101,32,123,10,32,32,32,32,109,97,114,103,105,110,45,114,105,103,104,116,58,32,45,50,112,120,59,10,32,32,32,32,109,97,114,103,105,110,45,108,101,102,116,58,32,50,112,120,59,10,32,32,32,32,109,97,114,103,105,110,45,116,111,112,58,32,45,49,112,120,59,10,32,32,32,32,102,111,110,116,45,102,97,109,105,108,121,58,32,109,111,110,111,115,112,97,99,101,59,10,32,32,32,32,102,111,110,116,45,115,105,122,101,58,32,57,48,37,59,10,32,32,32,32,98,97,99,107,103,114,111,117,110,100,58,32,114,103,98,97,40,48,44,32,48,44,32,48,44,32,48,46,50,41,59,10,32,32,32,32,112,97,100,100,105,110,103,58,32,48,46,49,101,109,32,48,46,52,101,109,59,10,32,32,32,32,99,111,108,111,114,58,32,119,104,105,116,101,59,10,32,32,32,32,99,117,114,115,111,114,58,32,112,111,105,110,116,101,114,59,10,125,10,10,46,98,97,100,103,101,45,117,115,101,114,32,123,10,32,32,32,32,99,111,108,111,114,58,32,35,50,49,50,53,50,57,59,10,32,32,32,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,35,101,48,101,48,101,48,59,10,125,10,10,46,99,97,114,100,45,105,109,103,45,116,111,112,32,123,10,32,32,32,32,98,111,114,100,101,114,45,116,111,112,45,108,101,102,116,45,114,97,100,105,117,115,58,32,48,59,10,32,32,32,32,98,111,114,100,101,114,45,116,111,112,45,114,105,103,104,116,45,114,97,100,105,117,115,58,32,48,59,10,125,10,10,46,102,105,116,32,123,10,32,32,32,32,100,105,115,112,108,97,121,58,32,98,108,111,99,107,59,10,32,32,32,32,109,105,110,45,119,105,100,116,104,58,32,54,52,112,120,59,10,32,32,32,32,109,97,120,45,119,105,100,116,104,58,32,49,48,48,37,59,10,32,32,32,32,109,97,120,45,104,101,105,103,104,116,58,32,52,48,48,112,120,59,10,32,32,32,32,109,97,114,103,105,110,58,32,48,32,97,117,116,111,32,48,59,10,32,32,32,32,104,101,105,103,104,116,58,32,97,117,116,111,59,10,125,10,10,46,105,109,103,45,112,97,100,100,105,110,103,32,123,10,32,32,32,32,112,97,100,100,105,110,103,58,32,52,112,120,32,52,112,120,32,48,32,52,112,120,59,10,125,10,10,46,102,105,116,45,115,109,32,123,10,32,32,32,32,100,105,115,112,108,97,121,58,32,98,108,111,99,107,59,10,32,32,32,32,109,97,120,45,119,105,100,116,104,58,32,54,52,112,120,59,10,32,32,32,32,109,97,120,45,104,101,105,103,104,116,58,32,54,52,112,120,59,10,32,32,32,32,109,97,114,103,105,110,58,32,48,32,97,117,116,111,59,10,32,32,32,32,119,105,100,116,104,58,32,97,117,116,111,59,10,32,32,32,32,104,101,105,103,104,116,58,32,97,117,116,111,59,10,125,10,10,46,97,117,100,105,111,45,102,105,116,32,123,10,32,32,32,32,104,101,105,103,104,116,58,32,51,57,112,120,59,10,32,32,32,32,118,101,114,116,105,99,97,108,45,97,108,105,103,110,58,32,98,111,116,116,111,109,59,10,32,32,32,32,100,105,115,112,108,97,121,58,32,105,110,108,105,110,101,59,10,32,32,32,32,119,105,100,116,104,58,32,49,48,48,37,59,10,125,10,10,64,109,101,100,105,97,32,115,99,114,101,101,110,32,97,110,100,32,40,109,105,110,45,119,105,100,116,104,58,32,49,56,48,48,112,120,41,32,123,10,32,32,32,32,46,99,111,110,116,97,105,110,101,114,32,123,10,32,32,32,32,32,32,32,32,109,97,120,45,119,105,100,116,104,58,32,49,53,53,48,112,120,59,10,32,32,32,32,125,10,125,10,10,109,97,114,107,32,123,10,32,32,32,32,98,97,99,107,103,114,111,117,110,100,58,32,114,103,98,97,40,50,53,49,44,32,49,57,49,44,32,52,49,44,32,48,46,50,53,41,59,10,32,32,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,48,59,10,32,32,32,32,112,97,100,100,105,110,103,58,32,49,112,120,32,48,59,10,32,32,32,32,99,111,108,111,114,58,32,105,110,104,101,114,105,116,59,10,125,10,10,46,99,111,110,116,101,110,116,45,100,105,118,32,109,97,114,107,32,123,10,32,32,32,32,98,97,99,107,103,114,111,117,110,100,58,32,114,103,98,97,40,50,53,49,44,32,49,57,49,44,32,52,49,44,32,48,46,52,48,41,59,10,32,32,32,32,99,111,108,111,114,58,32,119,104,105,116,101,59,10,125,10,10,10,46,99,111,110,116,101,110,116,45,100,105,118,32,123,10,32,32,32,32,102,111,110,116,45,102,97,109,105,108,121,58,32,83,70,77,111,110,111,45,82,101,103,117,108,97,114,44,32,77,101,110,108,111,44,32,77,111,110,97,99,111,44,32,67,111,110,115,111,108,97,115,44,32,34,76,105,98,101,114,97,116,105,111,110,32,77,111,110,111,34,44,32,34,67,111,117,114,105,101,114,32,78,101,119,34,44,32,109,111,110,111,115,112,97,99,101,59,10,32,32,32,32,102,111,110,116,45,115,105,122,101,58,32,49,51,112,120,59,10,32,32,32,32,112,97,100,100,105,110,103,58,32,49,101,109,59,10,32,32,32,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,35,51,55,52,55,52,70,59,10,32,32,32,32,98,111,114,100,101,114,58,32,49,112,120,32,115,111,108,105,100,32,35,54,49,54,49,54,49,59,10,32,32,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,52,112,120,59,10,32,32,32,32,109,97,114,103,105,110,58,32,51,112,120,59,10,32,32,32,32,119,104,105,116,101,45,115,112,97,99,101,58,32,110,111,114,109,97,108,59,10,32,32,32,32,99,111,108,111,114,58,32,114,103,98,40,50,50,52,44,32,50,50,52,44,32,50,50,52,41,59,10,32,32,32,32,111,118,101,114,102,108,111,119,58,32,104,105,100,100,101,110,59,10,125,10,10,46,105,114,115,45,115,105,110,103,108,101,44,32,46,105,114,115,45,102,114,111,109,44,32,46,105,114,115,45,116,111,32,123,10,32,32,32,32,102,111,110,116,45,115,105,122,101,58,32,49,51,112,120,59,10,32,32,32,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,35,48,48,66,67,68,52,59,10,125,10,10,46,105,114,115,45,115,108,105,100,101,114,32,123,10,32,32,32,32,99,117,114,115,111,114,58,32,99,111,108,45,114,101,115,105,122,101,59,10,125,10,10,46,105,114,115,32,123,10,32,32,32,32,109,97,114,103,105,110,45,116,111,112,58,32,49,101,109,59,10,32,32,32,32,109,97,114,103,105,110,45,98,111,116,116,111,109,58,32,49,101,109,59,10,125,10,10,46,99,117,115,116,111,109,45,115,101,108,101,99,116,32,123,10,32,32,32,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,59,10,32,32,32,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,35,51,55,52,55,52,70,59,10,32,32,32,32,98,111,114,100,101,114,58,32,49,112,120,32,115,111,108,105,100,32,35,54,49,54,49,54,49,59,10,32,32,32,32,99,111,108,111,114,58,32,35,98,100,98,100,98,100,59,10,125,10,10,46,99,117,115,116,111,109,45,115,101,108,101,99,116,58,102,111,99,117,115,32,123,10,32,32,32,32,98,111,114,100,101,114,45,99,111,108,111,114,58,32,35,55,53,55,53,55,53,59,10,32,32,32,32,111,117,116,108,105,110,101,58,32,48,59,10,32,32,32,32,98,111,120,45,115,104,97,100,111,119,58,32,48,32,48,32,48,32,46,50,114,101,109,32,114,103,98,97,40,48,44,32,49,50,51,44,32,50,53,53,44,32,46,50,53,41,59,10,125,10,10,111,112,116,105,111,110,32,123,10,32,32,32,32,111,117,116,108,105,110,101,58,32,110,111,110,101,59,10,125,10,10,46,102,111,114,109,45,99,111,110,116,114,111,108,32,123,10,32,32,32,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,35,51,55,52,55,52,70,59,10,32,32,32,32,98,111,114,100,101,114,58,32,49,112,120,32,115,111,108,105,100,32,35,54,49,54,49,54,49,59,10,32,32,32,32,99,111,108,111,114,58,32,35,102,102,102,59,10,125,10,10,46,102,111,114,109,45,99,111,110,116,114,111,108,58,102,111,99,117,115,32,123,10,32,32,32,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,35,53,52,54,69,55,65,59,10,32,32,32,32,99,111,108,111,114,58,32,35,102,102,102,59,10,125,10,10,46,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,32,123,10,32,32,32,32,98,97,99,107,103,114,111,117,110,100,58,32,35,50,54,51,50,51,56,59,10,32,32,32,32,98,111,114,100,101,114,58,32,49,112,120,32,115,111,108,105,100,32,35,54,49,54,49,54,49,59,10,32,32,32,32,99,111,108,111,114,58,32,35,100,98,100,98,100,98,59,10,125,10,10,58,58,112,108,97,99,101,104,111,108,100,101,114,32,123,10,32,32,32,32,99,111,108,111,114,58,32,35,66,68,66,68,66,68,32,33,105,109,112,111,114,116,97,110,116,59,10,32,32,32,32,111,112,97,99,105,116,121,58,32,49,59,10,125,10,10,10,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,115,101,108,101,99,116,101,100,32,62,32,46,119,104,111,108,101,114,111,119,44,32,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,115,101,108,101,99,116,101,100,32,62,32,46,116,105,116,108,101,45,119,114,97,112,58,104,111,118,101,114,32,43,32,46,119,104,111,108,101,114,111,119,32,123,10,32,32,32,32,98,97,99,107,103,114,111,117,110,100,58,32,110,111,110,101,59,10,125,10,10,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,101,120,112,97,110,100,58,58,98,101,102,111,114,101,44,32,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,105,99,111,110,45,99,111,108,108,97,112,115,101,58,58,98,101,102,111,114,101,32,123,10,32,32,32,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,98,108,97,99,107,59,10,125,10,10,46,105,110,115,112,105,114,101,45,116,114,101,101,32,46,116,105,116,108,101,32,123,10,32,32,32,32,99,111,108,111,114,58,32,35,101,101,101,59,10,125,10,10,46,105,110,115,112,105,114,101,45,116,114,101,101,32,123,10,32,32,32,32,102,111,110,116,45,119,101,105,103,104,116,58,32,52,48,48,59,10,32,32,32,32,102,111,110,116,45,115,105,122,101,58,32,49,52,112,120,59,10,32,32,32,32,102,111,110,116,45,102,97,109,105,108,121,58,32,72,101,108,118,101,116,105,99,97,44,32,78,117,101,117,101,44,32,86,101,114,100,97,110,97,44,32,115,97,110,115,45,115,101,114,105,102,59,10,32,32,32,32,109,97,120,45,104,101,105,103,104,116,58,32,51,53,48,112,120,59,10,32,32,32,32,111,118,101,114,102,108,111,119,58,32,97,117,116,111,59,10,125,10,10,46,112,97,103,101,45,105,110,100,105,99,97,116,111,114,32,123,10,32,32,32,32,108,105,110,101,45,104,101,105,103,104,116,58,32,49,114,101,109,59,10,32,32,32,32,112,97,100,100,105,110,103,58,32,48,46,53,114,101,109,59,10,32,32,32,32,98,97,99,107,103,114,111,117,110,100,58,32,35,50,49,50,49,50,49,59,10,32,32,32,32,99,111,108,111,114,58,32,35,101,101,101,59,10,32,32,32,32,109,97,114,103,105,110,45,116,111,112,58,32,49,101,109,59,10,125,10,10,46,98,116,110,45,120,115,32,123,10,32,32,32,32,112,97,100,100,105,110,103,58,32,46,49,114,101,109,32,46,51,114,101,109,59,10,32,32,32,32,102,111,110,116,45,115,105,122,101,58,32,46,56,55,53,114,101,109,59,10,32,32,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,46,50,114,101,109,59,10,125,10,10,46,98,116,110,32,123,10,32,32,32,32,99,111,108,111,114,58,32,35,101,101,101,59,10,125,10,10,46,110,97,118,45,116,97,98,115,32,46,110,97,118,45,108,105,110,107,32,123,10,32,32,32,32,99,111,108,111,114,58,32,35,101,48,101,48,101,48,59,10,125,10,10,46,110,97,118,45,116,97,98,115,32,46,110,97,118,45,105,116,101,109,46,115,104,111,119,32,46,110,97,118,45,108,105,110,107,44,32,46,110,97,118,45,116,97,98,115,32,46,110,97,118,45,108,105,110,107,46,97,99,116,105,118,101,32,123,10,32,32,32,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,35,50,49,50,49,50,49,59,10,32,32,32,32,98,111,114,100,101,114,45,99,111,108,111,114,58,32,35,54,49,54,49,54,49,32,35,54,49,54,49,54,49,32,35,50,49,50,49,50,49,59,10,32,32,32,32,99,111,108,111,114,58,32,35,101,48,101,48,101,48,59,10,125,10,10,46,110,97,118,45,116,97,98,115,32,46,110,97,118,45,108,105,110,107,58,102,111,99,117,115,44,32,46,110,97,118,45,116,97,98,115,32,46,110,97,118,45,108,105,110,107,58,102,111,99,117,115,32,123,10,32,32,32,32,98,111,114,100,101,114,45,99,111,108,111,114,58,32,35,54,49,54,49,54,49,32,35,54,49,54,49,54,49,32,35,50,49,50,49,50,49,59,10,32,32,32,32,99,111,108,111,114,58,32,35,101,48,101,48,101,48,59,10,125,10,10,46,110,97,118,45,116,97,98,115,32,46,110,97,118,45,108,105,110,107,58,102,111,99,117,115,44,32,46,110,97,118,45,116,97,98,115,32,46,110,97,118,45,108,105,110,107,58,104,111,118,101,114,32,123,10,32,32,32,32,98,111,114,100,101,114,45,99,111,108,111,114,58,32,35,101,48,101,48,101,48,32,35,101,48,101,48,101,48,32,35,50,49,50,49,50,49,59,10,32,32,32,32,99,111,108,111,114,58,32,35,101,48,101,48,101,48,59,10,125,10,10,46,110,97,118,45,116,97,98,115,32,123,10,32,32,32,32,98,111,114,100,101,114,45,98,111,116,116,111,109,58,32,35,54,49,54,49,54,49,59,10,125,10,10,46,110,97,118,32,123,10,32,32,32,32,109,97,114,103,105,110,45,116,111,112,58,32,48,46,53,114,101,109,59,10,125,10,10,64,109,101,100,105,97,32,40,109,97,120,45,119,105,100,116,104,58,32,56,48,48,112,120,41,32,123,10,32,32,32,32,35,116,114,101,101,84,97,98,115,32,123,10,32,32,32,32,32,32,32,32,102,108,101,120,45,98,97,115,105,115,58,32,105,110,104,101,114,105,116,59,10,32,32,32,32,32,32,32,32,102,108,101,120,45,103,114,111,119,58,32,105,110,104,101,114,105,116,59,10,32,32,32,32,125,10,125,10,10,46,108,105,115,116,45,103,114,111,117,112,32,123,10,32,32,32,32,109,97,114,103,105,110,45,116,111,112,58,32,49,101,109,59,10,125,10,10,46,119,114,97,112,112,101,114,45,115,109,32,123,10,32,32,32,32,109,105,110,45,119,105,100,116,104,58,32,54,52,112,120,59,10,125,10,10,46,109,101,100,105,97,45,101,120,112,97,110,100,101,100,32,123,10,32,32,32,32,100,105,115,112,108,97,121,58,32,105,110,104,101,114,105,116,59,10,125,10,10,46,109,101,100,105,97,45,101,120,112,97,110,100,101,100,32,46,102,105,116,32,123,10,32,32,32,32,109,97,120,45,104,101,105,103,104,116,58,32,50,53,48,112,120,59,10,125,10,10,64,109,101,100,105,97,32,40,109,97,120,45,119,105,100,116,104,58,32,54,53,48,112,120,41,32,123,10,32,32,32,32,46,109,101,100,105,97,45,101,120,112,97,110,100,101,100,32,46,102,105,116,32,123,10,32,32,32,32,32,32,32,32,109,97,120,45,104,101,105,103,104,116,58,32,110,111,110,101,59,10,32,32,32,32,125,10,10,32,32,32,32,46,116,97,103,108,105,110,101,32,123,10,32,32,32,32,32,32,32,32,100,105,115,112,108,97,121,58,32,110,111,110,101,59,10,32,32,32,32,125,10,125,10,10,46,118,101,114,115,105,111,110,32,123,10,32,32,32,32,99,111,108,111,114,58,32,35,48,48,66,67,68,52,59,10,32,32,32,32,109,97,114,103,105,110,45,108,101,102,116,58,32,45,49,56,112,120,59,10,32,32,32,32,109,97,114,103,105,110,45,116,111,112,58,32,45,49,52,112,120,59,10,32,32,32,32,102,111,110,116,45,115,105,122,101,58,32,49,49,112,120,59,10,125,10,10,64,109,101,100,105,97,32,40,109,105,110,45,119,105,100,116,104,58,32,56,48,48,112,120,41,32,123,10,32,32,32,32,46,115,109,97,108,108,45,98,116,110,32,123,10,32,32,32,32,32,32,32,32,100,105,115,112,108,97,121,58,32,110,111,110,101,59,10,32,32,32,32,125,10,10,32,32,32,32,46,108,97,114,103,101,45,98,116,110,32,123,10,32,32,32,32,32,32,32,32,100,105,115,112,108,97,121,58,32,105,110,104,101,114,105,116,59,10,32,32,32,32,125,10,125,10,10,64,109,101,100,105,97,32,40,109,97,120,45,119,105,100,116,104,58,32,56,48,49,112,120,41,32,123,10,32,32,32,32,46,115,109,97,108,108,45,98,116,110,32,123,10,32,32,32,32,32,32,32,32,100,105,115,112,108,97,121,58,32,105,110,104,101,114,105,116,59,10,32,32,32,32,125,10,10,32,32,32,32,46,108,97,114,103,101,45,98,116,110,32,123,10,32,32,32,32,32,32,32,32,100,105,115,112,108,97,121,58,32,110,111,110,101,59,10,32,32,32,32,125,10,125,10,10,35,115,101,97,114,99,104,66,97,114,32,123,10,32,32,32,32,98,111,114,100,101,114,45,114,105,103,104,116,58,32,110,111,110,101,59,10,125,10,10,35,112,97,116,104,84,114,101,101,32,46,116,105,116,108,101,32,123,10,32,32,32,32,99,117,114,115,111,114,58,32,112,111,105,110,116,101,114,59,10,125,10,10,115,118,103,32,123,10,32,32,32,32,102,105,108,108,58,32,119,104,105,116,101,59,10,125,10,10,46,112,108,97,121,32,123,10,32,32,32,32,112,111,115,105,116,105,111,110,58,32,97,98,115,111,108,117,116,101,59,10,32,32,32,32,119,105,100,116,104,58,32,53,48,112,120,59,10,32,32,32,32,104,101,105,103,104,116,58,32,53,48,112,120,59,10,32,32,32,32,108,101,102,116,58,32,53,48,37,59,10,32,32,32,32,116,111,112,58,32,53,48,37,59,10,32,32,32,32,116,114,97,110,115,102,111,114,109,58,32,116,114,97,110,115,108,97,116,101,40,45,53,48,37,44,32,45,53,48,37,41,59,10,32,32,32,32,112,111,105,110,116,101,114,45,101,118,101,110,116,115,58,32,110,111,110,101,59,10,125,10,10,46,112,108,97,121,32,115,118,103,32,123,10,32,32,32,32,102,105,108,108,58,32,114,103,98,97,40,50,53,53,44,32,50,53,53,44,32,50,53,53,44,32,48,46,55,41,59,10,125,10,10,46,105,109,103,45,119,114,97,112,112,101,114,58,104,111,118,101,114,32,115,118,103,32,123,10,32,32,32,32,102,105,108,108,58,32,114,103,98,97,40,50,53,53,44,32,50,53,53,44,32,50,53,53,44,32,49,41,59,10,125,10,10,46,112,111,105,110,116,101,114,32,123,10,32,32,32,32,99,117,114,115,111,114,58,32,112,111,105,110,116,101,114,59,10,125,10,10,46,115,116,97,116,115,45,99,97,114,100,32,123,10,32,32,32,32,116,101,120,116,45,97,108,105,103,110,58,32,99,101,110,116,101,114,59,10,32,32,32,32,109,97,114,103,105,110,45,116,111,112,58,32,49,101,109,59,10,32,32,32,32,112,97,100,100,105,110,103,58,32,49,101,109,59,10,10,32,32,32,32,98,111,120,45,115,104,97,100,111,119,58,32,48,32,46,49,50,53,114,101,109,32,46,50,53,114,101,109,32,114,103,98,97,40,48,44,32,48,44,32,48,44,32,46,48,56,41,32,33,105,109,112,111,114,116,97,110,116,59,10,32,32,32,32,98,111,114,100,101,114,45,114,97,100,105,117,115,58,32,48,59,10,32,32,32,32,98,111,114,100,101,114,58,32,110,111,110,101,59,10,10,32,32,32,32,98,97,99,107,103,114,111,117,110,100,58,32,35,50,49,50,49,50,49,59,10,125,10,10,46,103,114,97,112,104,32,123,10,32,32,32,32,100,105,115,112,108,97,121,58,32,105,110,108,105,110,101,45,98,108,111,99,107,59,10,32,32,32,32,119,105,100,116,104,58,32,52,48,37,59,10,125,10,10,46,102,117,108,108,45,115,99,114,101,101,110,32,123,10,32,32,32,32,112,111,115,105,116,105,111,110,58,32,97,98,115,111,108,117,116,101,59,10,32,32,32,32,108,101,102,116,58,32,48,59,10,32,32,32,32,119,105,100,116,104,58,32,49,48,48,37,59,10,125,10,10,46,115,116,97,116,115,45,98,116,110,32,123,10,32,32,32,32,102,108,111,97,116,58,32,114,105,103,104,116,59,10,32,32,32,32,109,97,114,103,105,110,45,98,111,116,116,111,109,58,32,49,48,112,120,59,10,125,10,10,35,103,114,97,112,104,115,45,99,97,114,100,32,115,118,103,32,116,101,120,116,32,123,10,32,32,32,32,102,105,108,108,58,32,35,101,101,101,59,10,125,10,10,46,119,104,111,108,101,114,111,119,32,123,10,32,32,32,32,111,117,116,108,105,110,101,58,32,110,111,110,101,32,33,105,109,112,111,114,116,97,110,116,59,10,125,10,10,46,115,116,97,116,32,62,32,46,99,97,114,100,45,98,111,100,121,32,123,10,32,32,32,32,112,97,100,100,105,110,103,58,32,48,46,55,101,109,32,49,46,50,53,101,109,59,10,125,10}; -char bundle_js[759003] = {47,42,33,32,106,81,117,101,114,121,32,118,51,46,52,46,49,32,124,32,40,99,41,32,74,83,32,70,111,117,110,100,97,116,105,111,110,32,97,110,100,32,111,116,104,101,114,32,99,111,110,116,114,105,98,117,116,111,114,115,32,124,32,106,113,117,101,114,121,46,111,114,103,47,108,105,99,101,110,115,101,32,42,47,10,33,102,117,110,99,116,105,111,110,40,101,44,116,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,109,111,100,117,108,101,38,38,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,109,111,100,117,108,101,46,101,120,112,111,114,116,115,63,109,111,100,117,108,101,46,101,120,112,111,114,116,115,61,101,46,100,111,99,117,109,101,110,116,63,116,40,101,44,33,48,41,58,102,117,110,99,116,105,111,110,40,101,41,123,105,102,40,33,101,46,100,111,99,117,109,101,110,116,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,106,81,117,101,114,121,32,114,101,113,117,105,114,101,115,32,97,32,119,105,110,100,111,119,32,119,105,116,104,32,97,32,100,111,99,117,109,101,110,116,34,41,59,114,101,116,117,114,110,32,116,40,101,41,125,58,116,40,101,41,125,40,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,119,105,110,100,111,119,63,119,105,110,100,111,119,58,116,104,105,115,44,102,117,110,99,116,105,111,110,40,67,44,101,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,118,97,114,32,116,61,91,93,44,69,61,67,46,100,111,99,117,109,101,110,116,44,114,61,79,98,106,101,99,116,46,103,101,116,80,114,111,116,111,116,121,112,101,79,102,44,115,61,116,46,115,108,105,99,101,44,103,61,116,46,99,111,110,99,97,116,44,117,61,116,46,112,117,115,104,44,105,61,116,46,105,110,100,101,120,79,102,44,110,61,123,125,44,111,61,110,46,116,111,83,116,114,105,110,103,44,118,61,110,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,44,97,61,118,46,116,111,83,116,114,105,110,103,44,108,61,97,46,99,97,108,108,40,79,98,106,101,99,116,41,44,121,61,123,125,44,109,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,101,38,38,34,110,117,109,98,101,114,34,33,61,116,121,112,101,111,102,32,101,46,110,111,100,101,84,121,112,101,125,44,120,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,110,117,108,108,33,61,101,38,38,101,61,61,61,101,46,119,105,110,100,111,119,125,44,99,61,123,116,121,112,101,58,33,48,44,115,114,99,58,33,48,44,110,111,110,99,101,58,33,48,44,110,111,77,111,100,117,108,101,58,33,48,125,59,102,117,110,99,116,105,111,110,32,98,40,101,44,116,44,110,41,123,118,97,114,32,114,44,105,44,111,61,40,110,61,110,124,124,69,41,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,115,99,114,105,112,116,34,41,59,105,102,40,111,46,116,101,120,116,61,101,44,116,41,102,111,114,40,114,32,105,110,32,99,41,40,105,61,116,91,114,93,124,124,116,46,103,101,116,65,116,116,114,105,98,117,116,101,38,38,116,46,103,101,116,65,116,116,114,105,98,117,116,101,40,114,41,41,38,38,111,46,115,101,116,65,116,116,114,105,98,117,116,101,40,114,44,105,41,59,110,46,104,101,97,100,46,97,112,112,101,110,100,67,104,105,108,100,40,111,41,46,112,97,114,101,110,116,78,111,100,101,46,114,101,109,111,118,101,67,104,105,108,100,40,111,41,125,102,117,110,99,116,105,111,110,32,119,40,101,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,101,63,101,43,34,34,58,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,101,124,124,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,101,63,110,91,111,46,99,97,108,108,40,101,41,93,124,124,34,111,98,106,101,99,116,34,58,116,121,112,101,111,102,32,101,125,118,97,114,32,102,61,34,51,46,52,46,49,34,44,107,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,110,101,119,32,107,46,102,110,46,105,110,105,116,40,101,44,116,41,125,44,112,61,47,94,91,92,115,92,117,70,69,70,70,92,120,65,48,93,43,124,91,92,115,92,117,70,69,70,70,92,120,65,48,93,43,36,47,103,59,102,117,110,99,116,105,111,110,32,100,40,101,41,123,118,97,114,32,116,61,33,33,101,38,38,34,108,101,110,103,116,104,34,105,110,32,101,38,38,101,46,108,101,110,103,116,104,44,110,61,119,40,101,41,59,114,101,116,117,114,110,33,109,40,101,41,38,38,33,120,40,101,41,38,38,40,34,97,114,114,97,121,34,61,61,61,110,124,124,48,61,61,61,116,124,124,34,110,117,109,98,101,114,34,61,61,116,121,112,101,111,102,32,116,38,38,48,60,116,38,38,116,45,49,32,105,110,32,101,41,125,107,46,102,110,61,107,46,112,114,111,116,111,116,121,112,101,61,123,106,113,117,101,114,121,58,102,44,99,111,110,115,116,114,117,99,116,111,114,58,107,44,108,101,110,103,116,104,58,48,44,116,111,65,114,114,97,121,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,115,46,99,97,108,108,40,116,104,105,115,41,125,44,103,101,116,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,101,63,115,46,99,97,108,108,40,116,104,105,115,41,58,101,60,48,63,116,104,105,115,91,101,43,116,104,105,115,46,108,101,110,103,116,104,93,58,116,104,105,115,91,101,93,125,44,112,117,115,104,83,116,97,99,107,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,107,46,109,101,114,103,101,40,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,40,41,44,101,41,59,114,101,116,117,114,110,32,116,46,112,114,101,118,79,98,106,101,99,116,61,116,104,105,115,44,116,125,44,101,97,99,104,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,107,46,101,97,99,104,40,116,104,105,115,44,101,41,125,44,109,97,112,58,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,104,105,115,46,112,117,115,104,83,116,97,99,107,40,107,46,109,97,112,40,116,104,105,115,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,110,46,99,97,108,108,40,101,44,116,44,101,41,125,41,41,125,44,115,108,105,99,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,112,117,115,104,83,116,97,99,107,40,115,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,41,125,44,102,105,114,115,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,113,40,48,41,125,44,108,97,115,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,113,40,45,49,41,125,44,101,113,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,116,104,105,115,46,108,101,110,103,116,104,44,110,61,43,101,43,40,101,60,48,63,116,58,48,41,59,114,101,116,117,114,110,32,116,104,105,115,46,112,117,115,104,83,116,97,99,107,40,48,60,61,110,38,38,110,60,116,63,91,116,104,105,115,91,110,93,93,58,91,93,41,125,44,101,110,100,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,112,114,101,118,79,98,106,101,99,116,124,124,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,40,41,125,44,112,117,115,104,58,117,44,115,111,114,116,58,116,46,115,111,114,116,44,115,112,108,105,99,101,58,116,46,115,112,108,105,99,101,125,44,107,46,101,120,116,101,110,100,61,107,46,102,110,46,101,120,116,101,110,100,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,44,116,44,110,44,114,44,105,44,111,44,97,61,97,114,103,117,109,101,110,116,115,91,48,93,124,124,123,125,44,115,61,49,44,117,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,44,108,61,33,49,59,102,111,114,40,34,98,111,111,108,101,97,110,34,61,61,116,121,112,101,111,102,32,97,38,38,40,108,61,97,44,97,61,97,114,103,117,109,101,110,116,115,91,115,93,124,124,123,125,44,115,43,43,41,44,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,97,124,124,109,40,97,41,124,124,40,97,61,123,125,41,44,115,61,61,61,117,38,38,40,97,61,116,104,105,115,44,115,45,45,41,59,115,60,117,59,115,43,43,41,105,102,40,110,117,108,108,33,61,40,101,61,97,114,103,117,109,101,110,116,115,91,115,93,41,41,102,111,114,40,116,32,105,110,32,101,41,114,61,101,91,116,93,44,34,95,95,112,114,111,116,111,95,95,34,33,61,61,116,38,38,97,33,61,61,114,38,38,40,108,38,38,114,38,38,40,107,46,105,115,80,108,97,105,110,79,98,106,101,99,116,40,114,41,124,124,40,105,61,65,114,114,97,121,46,105,115,65,114,114,97,121,40,114,41,41,41,63,40,110,61,97,91,116,93,44,111,61,105,38,38,33,65,114,114,97,121,46,105,115,65,114,114,97,121,40,110,41,63,91,93,58,105,124,124,107,46,105,115,80,108,97,105,110,79,98,106,101,99,116,40,110,41,63,110,58,123,125,44,105,61,33,49,44,97,91,116,93,61,107,46,101,120,116,101,110,100,40,108,44,111,44,114,41,41,58,118,111,105,100,32,48,33,61,61,114,38,38,40,97,91,116,93,61,114,41,41,59,114,101,116,117,114,110,32,97,125,44,107,46,101,120,116,101,110,100,40,123,101,120,112,97,110,100,111,58,34,106,81,117,101,114,121,34,43,40,102,43,77,97,116,104,46,114,97,110,100,111,109,40,41,41,46,114,101,112,108,97,99,101,40,47,92,68,47,103,44,34,34,41,44,105,115,82,101,97,100,121,58,33,48,44,101,114,114,111,114,58,102,117,110,99,116,105,111,110,40,101,41,123,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,101,41,125,44,110,111,111,112,58,102,117,110,99,116,105,111,110,40,41,123,125,44,105,115,80,108,97,105,110,79,98,106,101,99,116,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,44,110,59,114,101,116,117,114,110,33,40,33,101,124,124,34,91,111,98,106,101,99,116,32,79,98,106,101,99,116,93,34,33,61,61,111,46,99,97,108,108,40,101,41,41,38,38,40,33,40,116,61,114,40,101,41,41,124,124,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,40,110,61,118,46,99,97,108,108,40,116,44,34,99,111,110,115,116,114,117,99,116,111,114,34,41,38,38,116,46,99,111,110,115,116,114,117,99,116,111,114,41,38,38,97,46,99,97,108,108,40,110,41,61,61,61,108,41,125,44,105,115,69,109,112,116,121,79,98,106,101,99,116,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,59,102,111,114,40,116,32,105,110,32,101,41,114,101,116,117,114,110,33,49,59,114,101,116,117,114,110,33,48,125,44,103,108,111,98,97,108,69,118,97,108,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,98,40,101,44,123,110,111,110,99,101,58,116,38,38,116,46,110,111,110,99,101,125,41,125,44,101,97,99,104,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,44,114,61,48,59,105,102,40,100,40,101,41,41,123,102,111,114,40,110,61,101,46,108,101,110,103,116,104,59,114,60,110,59,114,43,43,41,105,102,40,33,49,61,61,61,116,46,99,97,108,108,40,101,91,114,93,44,114,44,101,91,114,93,41,41,98,114,101,97,107,125,101,108,115,101,32,102,111,114,40,114,32,105,110,32,101,41,105,102,40,33,49,61,61,61,116,46,99,97,108,108,40,101,91,114,93,44,114,44,101,91,114,93,41,41,98,114,101,97,107,59,114,101,116,117,114,110,32,101,125,44,116,114,105,109,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,101,63,34,34,58,40,101,43,34,34,41,46,114,101,112,108,97,99,101,40,112,44,34,34,41,125,44,109,97,107,101,65,114,114,97,121,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,61,116,124,124,91,93,59,114,101,116,117,114,110,32,110,117,108,108,33,61,101,38,38,40,100,40,79,98,106,101,99,116,40,101,41,41,63,107,46,109,101,114,103,101,40,110,44,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,101,63,91,101,93,58,101,41,58,117,46,99,97,108,108,40,110,44,101,41,41,44,110,125,44,105,110,65,114,114,97,121,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,116,63,45,49,58,105,46,99,97,108,108,40,116,44,101,44,110,41,125,44,109,101,114,103,101,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,102,111,114,40,118,97,114,32,110,61,43,116,46,108,101,110,103,116,104,44,114,61,48,44,105,61,101,46,108,101,110,103,116,104,59,114,60,110,59,114,43,43,41,101,91,105,43,43,93,61,116,91,114,93,59,114,101,116,117,114,110,32,101,46,108,101,110,103,116,104,61,105,44,101,125,44,103,114,101,112,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,102,111,114,40,118,97,114,32,114,61,91,93,44,105,61,48,44,111,61,101,46,108,101,110,103,116,104,44,97,61,33,110,59,105,60,111,59,105,43,43,41,33,116,40,101,91,105,93,44,105,41,33,61,61,97,38,38,114,46,112,117,115,104,40,101,91,105,93,41,59,114,101,116,117,114,110,32,114,125,44,109,97,112,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,44,105,44,111,61,48,44,97,61,91,93,59,105,102,40,100,40,101,41,41,102,111,114,40,114,61,101,46,108,101,110,103,116,104,59,111,60,114,59,111,43,43,41,110,117,108,108,33,61,40,105,61,116,40,101,91,111,93,44,111,44,110,41,41,38,38,97,46,112,117,115,104,40,105,41,59,101,108,115,101,32,102,111,114,40,111,32,105,110,32,101,41,110,117,108,108,33,61,40,105,61,116,40,101,91,111,93,44,111,44,110,41,41,38,38,97,46,112,117,115,104,40,105,41,59,114,101,116,117,114,110,32,103,46,97,112,112,108,121,40,91,93,44,97,41,125,44,103,117,105,100,58,49,44,115,117,112,112,111,114,116,58,121,125,41,44,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,83,121,109,98,111,108,38,38,40,107,46,102,110,91,83,121,109,98,111,108,46,105,116,101,114,97,116,111,114,93,61,116,91,83,121,109,98,111,108,46,105,116,101,114,97,116,111,114,93,41,44,107,46,101,97,99,104,40,34,66,111,111,108,101,97,110,32,78,117,109,98,101,114,32,83,116,114,105,110,103,32,70,117,110,99,116,105,111,110,32,65,114,114,97,121,32,68,97,116,101,32,82,101,103,69,120,112,32,79,98,106,101,99,116,32,69,114,114,111,114,32,83,121,109,98,111,108,34,46,115,112,108,105,116,40,34,32,34,41,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,110,91,34,91,111,98,106,101,99,116,32,34,43,116,43,34,93,34,93,61,116,46,116,111,76,111,119,101,114,67,97,115,101,40,41,125,41,59,118,97,114,32,104,61,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,101,44,100,44,98,44,111,44,105,44,104,44,102,44,103,44,119,44,117,44,108,44,84,44,67,44,97,44,69,44,118,44,115,44,99,44,121,44,107,61,34,115,105,122,122,108,101,34,43,49,42,110,101,119,32,68,97,116,101,44,109,61,110,46,100,111,99,117,109,101,110,116,44,83,61,48,44,114,61,48,44,112,61,117,101,40,41,44,120,61,117,101,40,41,44,78,61,117,101,40,41,44,65,61,117,101,40,41,44,68,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,101,61,61,61,116,38,38,40,108,61,33,48,41,44,48,125,44,106,61,123,125,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,44,116,61,91,93,44,113,61,116,46,112,111,112,44,76,61,116,46,112,117,115,104,44,72,61,116,46,112,117,115,104,44,79,61,116,46,115,108,105,99,101,44,80,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,102,111,114,40,118,97,114,32,110,61,48,44,114,61,101,46,108,101,110,103,116,104,59,110,60,114,59,110,43,43,41,105,102,40,101,91,110,93,61,61,61,116,41,114,101,116,117,114,110,32,110,59,114,101,116,117,114,110,45,49,125,44,82,61,34,99,104,101,99,107,101,100,124,115,101,108,101,99,116,101,100,124,97,115,121,110,99,124,97,117,116,111,102,111,99,117,115,124,97,117,116,111,112,108,97,121,124,99,111,110,116,114,111,108,115,124,100,101,102,101,114,124,100,105,115,97,98,108,101,100,124,104,105,100,100,101,110,124,105,115,109,97,112,124,108,111,111,112,124,109,117,108,116,105,112,108,101,124,111,112,101,110,124,114,101,97,100,111,110,108,121,124,114,101,113,117,105,114,101,100,124,115,99,111,112,101,100,34,44,77,61,34,91,92,92,120,50,48,92,92,116,92,92,114,92,92,110,92,92,102,93,34,44,73,61,34,40,63,58,92,92,92,92,46,124,91,92,92,119,45,93,124,91,94,92,48,45,92,92,120,97,48,93,41,43,34,44,87,61,34,92,92,91,34,43,77,43,34,42,40,34,43,73,43,34,41,40,63,58,34,43,77,43,34,42,40,91,42,94,36,124,33,126,93,63,61,41,34,43,77,43,34,42,40,63,58,39,40,40,63,58,92,92,92,92,46,124,91,94,92,92,92,92,39,93,41,42,41,39,124,92,34,40,40,63,58,92,92,92,92,46,124,91,94,92,92,92,92,92,34,93,41,42,41,92,34,124,40,34,43,73,43,34,41,41,124,41,34,43,77,43,34,42,92,92,93,34,44,36,61,34,58,40,34,43,73,43,34,41,40,63,58,92,92,40,40,40,39,40,40,63,58,92,92,92,92,46,124,91,94,92,92,92,92,39,93,41,42,41,39,124,92,34,40,40,63,58,92,92,92,92,46,124,91,94,92,92,92,92,92,34,93,41,42,41,92,34,41,124,40,40,63,58,92,92,92,92,46,124,91,94,92,92,92,92,40,41,91,92,92,93,93,124,34,43,87,43,34,41,42,41,124,46,42,41,92,92,41,124,41,34,44,70,61,110,101,119,32,82,101,103,69,120,112,40,77,43,34,43,34,44,34,103,34,41,44,66,61,110,101,119,32,82,101,103,69,120,112,40,34,94,34,43,77,43,34,43,124,40,40,63,58,94,124,91,94,92,92,92,92,93,41,40,63,58,92,92,92,92,46,41,42,41,34,43,77,43,34,43,36,34,44,34,103,34,41,44,95,61,110,101,119,32,82,101,103,69,120,112,40,34,94,34,43,77,43,34,42,44,34,43,77,43,34,42,34,41,44,122,61,110,101,119,32,82,101,103,69,120,112,40,34,94,34,43,77,43,34,42,40,91,62,43,126,93,124,34,43,77,43,34,41,34,43,77,43,34,42,34,41,44,85,61,110,101,119,32,82,101,103,69,120,112,40,77,43,34,124,62,34,41,44,88,61,110,101,119,32,82,101,103,69,120,112,40,36,41,44,86,61,110,101,119,32,82,101,103,69,120,112,40,34,94,34,43,73,43,34,36,34,41,44,71,61,123,73,68,58,110,101,119,32,82,101,103,69,120,112,40,34,94,35,40,34,43,73,43,34,41,34,41,44,67,76,65,83,83,58,110,101,119,32,82,101,103,69,120,112,40,34,94,92,92,46,40,34,43,73,43,34,41,34,41,44,84,65,71,58,110,101,119,32,82,101,103,69,120,112,40,34,94,40,34,43,73,43,34,124,91,42,93,41,34,41,44,65,84,84,82,58,110,101,119,32,82,101,103,69,120,112,40,34,94,34,43,87,41,44,80,83,69,85,68,79,58,110,101,119,32,82,101,103,69,120,112,40,34,94,34,43,36,41,44,67,72,73,76,68,58,110,101,119,32,82,101,103,69,120,112,40,34,94,58,40,111,110,108,121,124,102,105,114,115,116,124,108,97,115,116,124,110,116,104,124,110,116,104,45,108,97,115,116,41,45,40,99,104,105,108,100,124,111,102,45,116,121,112,101,41,40,63,58,92,92,40,34,43,77,43,34,42,40,101,118,101,110,124,111,100,100,124,40,40,91,43,45,93,124,41,40,92,92,100,42,41,110,124,41,34,43,77,43,34,42,40,63,58,40,91,43,45,93,124,41,34,43,77,43,34,42,40,92,92,100,43,41,124,41,41,34,43,77,43,34,42,92,92,41,124,41,34,44,34,105,34,41,44,98,111,111,108,58,110,101,119,32,82,101,103,69,120,112,40,34,94,40,63,58,34,43,82,43,34,41,36,34,44,34,105,34,41,44,110,101,101,100,115,67,111,110,116,101,120,116,58,110,101,119,32,82,101,103,69,120,112,40,34,94,34,43,77,43,34,42,91,62,43,126,93,124,58,40,101,118,101,110,124,111,100,100,124,101,113,124,103,116,124,108,116,124,110,116,104,124,102,105,114,115,116,124,108,97,115,116,41,40,63,58,92,92,40,34,43,77,43,34,42,40,40,63,58,45,92,92,100,41,63,92,92,100,42,41,34,43,77,43,34,42,92,92,41,124,41,40,63,61,91,94,45,93,124,36,41,34,44,34,105,34,41,125,44,89,61,47,72,84,77,76,36,47,105,44,81,61,47,94,40,63,58,105,110,112,117,116,124,115,101,108,101,99,116,124,116,101,120,116,97,114,101,97,124,98,117,116,116,111,110,41,36,47,105,44,74,61,47,94,104,92,100,36,47,105,44,75,61,47,94,91,94,123,93,43,92,123,92,115,42,92,91,110,97,116,105,118,101,32,92,119,47,44,90,61,47,94,40,63,58,35,40,91,92,119,45,93,43,41,124,40,92,119,43,41,124,92,46,40,91,92,119,45,93,43,41,41,36,47,44,101,101,61,47,91,43,126,93,47,44,116,101,61,110,101,119,32,82,101,103,69,120,112,40,34,92,92,92,92,40,91,92,92,100,97,45,102,93,123,49,44,54,125,34,43,77,43,34,63,124,40,34,43,77,43,34,41,124,46,41,34,44,34,105,103,34,41,44,110,101,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,61,34,48,120,34,43,116,45,54,53,53,51,54,59,114,101,116,117,114,110,32,114,33,61,114,124,124,110,63,116,58,114,60,48,63,83,116,114,105,110,103,46,102,114,111,109,67,104,97,114,67,111,100,101,40,114,43,54,53,53,51,54,41,58,83,116,114,105,110,103,46,102,114,111,109,67,104,97,114,67,111,100,101,40,114,62,62,49,48,124,53,53,50,57,54,44,49,48,50,51,38,114,124,53,54,51,50,48,41,125,44,114,101,61,47,40,91,92,48,45,92,120,49,102,92,120,55,102,93,124,94,45,63,92,100,41,124,94,45,36,124,91,94,92,48,45,92,120,49,102,92,120,55,102,45,92,117,70,70,70,70,92,119,45,93,47,103,44,105,101,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,116,63,34,92,48,34,61,61,61,101,63,34,92,117,102,102,102,100,34,58,101,46,115,108,105,99,101,40,48,44,45,49,41,43,34,92,92,34,43,101,46,99,104,97,114,67,111,100,101,65,116,40,101,46,108,101,110,103,116,104,45,49,41,46,116,111,83,116,114,105,110,103,40,49,54,41,43,34,32,34,58,34,92,92,34,43,101,125,44,111,101,61,102,117,110,99,116,105,111,110,40,41,123,84,40,41,125,44,97,101,61,98,101,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,33,48,61,61,61,101,46,100,105,115,97,98,108,101,100,38,38,34,102,105,101,108,100,115,101,116,34,61,61,61,101,46,110,111,100,101,78,97,109,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,125,44,123,100,105,114,58,34,112,97,114,101,110,116,78,111,100,101,34,44,110,101,120,116,58,34,108,101,103,101,110,100,34,125,41,59,116,114,121,123,72,46,97,112,112,108,121,40,116,61,79,46,99,97,108,108,40,109,46,99,104,105,108,100,78,111,100,101,115,41,44,109,46,99,104,105,108,100,78,111,100,101,115,41,44,116,91,109,46,99,104,105,108,100,78,111,100,101,115,46,108,101,110,103,116,104,93,46,110,111,100,101,84,121,112,101,125,99,97,116,99,104,40,101,41,123,72,61,123,97,112,112,108,121,58,116,46,108,101,110,103,116,104,63,102,117,110,99,116,105,111,110,40,101,44,116,41,123,76,46,97,112,112,108,121,40,101,44,79,46,99,97,108,108,40,116,41,41,125,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,61,101,46,108,101,110,103,116,104,44,114,61,48,59,119,104,105,108,101,40,101,91,110,43,43,93,61,116,91,114,43,43,93,41,59,101,46,108,101,110,103,116,104,61,110,45,49,125,125,125,102,117,110,99,116,105,111,110,32,115,101,40,116,44,101,44,110,44,114,41,123,118,97,114,32,105,44,111,44,97,44,115,44,117,44,108,44,99,44,102,61,101,38,38,101,46,111,119,110,101,114,68,111,99,117,109,101,110,116,44,112,61,101,63,101,46,110,111,100,101,84,121,112,101,58,57,59,105,102,40,110,61,110,124,124,91,93,44,34,115,116,114,105,110,103,34,33,61,116,121,112,101,111,102,32,116,124,124,33,116,124,124,49,33,61,61,112,38,38,57,33,61,61,112,38,38,49,49,33,61,61,112,41,114,101,116,117,114,110,32,110,59,105,102,40,33,114,38,38,40,40,101,63,101,46,111,119,110,101,114,68,111,99,117,109,101,110,116,124,124,101,58,109,41,33,61,61,67,38,38,84,40,101,41,44,101,61,101,124,124,67,44,69,41,41,123,105,102,40,49,49,33,61,61,112,38,38,40,117,61,90,46,101,120,101,99,40,116,41,41,41,105,102,40,105,61,117,91,49,93,41,123,105,102,40,57,61,61,61,112,41,123,105,102,40,33,40,97,61,101,46,103,101,116,69,108,101,109,101,110,116,66,121,73,100,40,105,41,41,41,114,101,116,117,114,110,32,110,59,105,102,40,97,46,105,100,61,61,61,105,41,114,101,116,117,114,110,32,110,46,112,117,115,104,40,97,41,44,110,125,101,108,115,101,32,105,102,40,102,38,38,40,97,61,102,46,103,101,116,69,108,101,109,101,110,116,66,121,73,100,40,105,41,41,38,38,121,40,101,44,97,41,38,38,97,46,105,100,61,61,61,105,41,114,101,116,117,114,110,32,110,46,112,117,115,104,40,97,41,44,110,125,101,108,115,101,123,105,102,40,117,91,50,93,41,114,101,116,117,114,110,32,72,46,97,112,112,108,121,40,110,44,101,46,103,101,116,69,108,101,109,101,110,116,115,66,121,84,97,103,78,97,109,101,40,116,41,41,44,110,59,105,102,40,40,105,61,117,91,51,93,41,38,38,100,46,103,101,116,69,108,101,109,101,110,116,115,66,121,67,108,97,115,115,78,97,109,101,38,38,101,46,103,101,116,69,108,101,109,101,110,116,115,66,121,67,108,97,115,115,78,97,109,101,41,114,101,116,117,114,110,32,72,46,97,112,112,108,121,40,110,44,101,46,103,101,116,69,108,101,109,101,110,116,115,66,121,67,108,97,115,115,78,97,109,101,40,105,41,41,44,110,125,105,102,40,100,46,113,115,97,38,38,33,65,91,116,43,34,32,34,93,38,38,40,33,118,124,124,33,118,46,116,101,115,116,40,116,41,41,38,38,40,49,33,61,61,112,124,124,34,111,98,106,101,99,116,34,33,61,61,101,46,110,111,100,101,78,97,109,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,41,41,123,105,102,40,99,61,116,44,102,61,101,44,49,61,61,61,112,38,38,85,46,116,101,115,116,40,116,41,41,123,40,115,61,101,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,105,100,34,41,41,63,115,61,115,46,114,101,112,108,97,99,101,40,114,101,44,105,101,41,58,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,105,100,34,44,115,61,107,41,44,111,61,40,108,61,104,40,116,41,41,46,108,101,110,103,116,104,59,119,104,105,108,101,40,111,45,45,41,108,91,111,93,61,34,35,34,43,115,43,34,32,34,43,120,101,40,108,91,111,93,41,59,99,61,108,46,106,111,105,110,40,34,44,34,41,44,102,61,101,101,46,116,101,115,116,40,116,41,38,38,121,101,40,101,46,112,97,114,101,110,116,78,111,100,101,41,124,124,101,125,116,114,121,123,114,101,116,117,114,110,32,72,46,97,112,112,108,121,40,110,44,102,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,99,41,41,44,110,125,99,97,116,99,104,40,101,41,123,65,40,116,44,33,48,41,125,102,105,110,97,108,108,121,123,115,61,61,61,107,38,38,101,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,40,34,105,100,34,41,125,125,125,114,101,116,117,114,110,32,103,40,116,46,114,101,112,108,97,99,101,40,66,44,34,36,49,34,41,44,101,44,110,44,114,41,125,102,117,110,99,116,105,111,110,32,117,101,40,41,123,118,97,114,32,114,61,91,93,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,101,40,116,44,110,41,123,114,101,116,117,114,110,32,114,46,112,117,115,104,40,116,43,34,32,34,41,62,98,46,99,97,99,104,101,76,101,110,103,116,104,38,38,100,101,108,101,116,101,32,101,91,114,46,115,104,105,102,116,40,41,93,44,101,91,116,43,34,32,34,93,61,110,125,125,102,117,110,99,116,105,111,110,32,108,101,40,101,41,123,114,101,116,117,114,110,32,101,91,107,93,61,33,48,44,101,125,102,117,110,99,116,105,111,110,32,99,101,40,101,41,123,118,97,114,32,116,61,67,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,102,105,101,108,100,115,101,116,34,41,59,116,114,121,123,114,101,116,117,114,110,33,33,101,40,116,41,125,99,97,116,99,104,40,101,41,123,114,101,116,117,114,110,33,49,125,102,105,110,97,108,108,121,123,116,46,112,97,114,101,110,116,78,111,100,101,38,38,116,46,112,97,114,101,110,116,78,111,100,101,46,114,101,109,111,118,101,67,104,105,108,100,40,116,41,44,116,61,110,117,108,108,125,125,102,117,110,99,116,105,111,110,32,102,101,40,101,44,116,41,123,118,97,114,32,110,61,101,46,115,112,108,105,116,40,34,124,34,41,44,114,61,110,46,108,101,110,103,116,104,59,119,104,105,108,101,40,114,45,45,41,98,46,97,116,116,114,72,97,110,100,108,101,91,110,91,114,93,93,61,116,125,102,117,110,99,116,105,111,110,32,112,101,40,101,44,116,41,123,118,97,114,32,110,61,116,38,38,101,44,114,61,110,38,38,49,61,61,61,101,46,110,111,100,101,84,121,112,101,38,38,49,61,61,61,116,46,110,111,100,101,84,121,112,101,38,38,101,46,115,111,117,114,99,101,73,110,100,101,120,45,116,46,115,111,117,114,99,101,73,110,100,101,120,59,105,102,40,114,41,114,101,116,117,114,110,32,114,59,105,102,40,110,41,119,104,105,108,101,40,110,61,110,46,110,101,120,116,83,105,98,108,105,110,103,41,105,102,40,110,61,61,61,116,41,114,101,116,117,114,110,45,49,59,114,101,116,117,114,110,32,101,63,49,58,45,49,125,102,117,110,99,116,105,111,110,32,100,101,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,34,105,110,112,117,116,34,61,61,61,101,46,110,111,100,101,78,97,109,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,38,38,101,46,116,121,112,101,61,61,61,116,125,125,102,117,110,99,116,105,111,110,32,104,101,40,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,46,110,111,100,101,78,97,109,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,59,114,101,116,117,114,110,40,34,105,110,112,117,116,34,61,61,61,116,124,124,34,98,117,116,116,111,110,34,61,61,61,116,41,38,38,101,46,116,121,112,101,61,61,61,110,125,125,102,117,110,99,116,105,111,110,32,103,101,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,34,102,111,114,109,34,105,110,32,101,63,101,46,112,97,114,101,110,116,78,111,100,101,38,38,33,49,61,61,61,101,46,100,105,115,97,98,108,101,100,63,34,108,97,98,101,108,34,105,110,32,101,63,34,108,97,98,101,108,34,105,110,32,101,46,112,97,114,101,110,116,78,111,100,101,63,101,46,112,97,114,101,110,116,78,111,100,101,46,100,105,115,97,98,108,101,100,61,61,61,116,58,101,46,100,105,115,97,98,108,101,100,61,61,61,116,58,101,46,105,115,68,105,115,97,98,108,101,100,61,61,61,116,124,124,101,46,105,115,68,105,115,97,98,108,101,100,33,61,61,33,116,38,38,97,101,40,101,41,61,61,61,116,58,101,46,100,105,115,97,98,108,101,100,61,61,61,116,58,34,108,97,98,101,108,34,105,110,32,101,38,38,101,46,100,105,115,97,98,108,101,100,61,61,61,116,125,125,102,117,110,99,116,105,111,110,32,118,101,40,97,41,123,114,101,116,117,114,110,32,108,101,40,102,117,110,99,116,105,111,110,40,111,41,123,114,101,116,117,114,110,32,111,61,43,111,44,108,101,40,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,44,114,61,97,40,91,93,44,101,46,108,101,110,103,116,104,44,111,41,44,105,61,114,46,108,101,110,103,116,104,59,119,104,105,108,101,40,105,45,45,41,101,91,110,61,114,91,105,93,93,38,38,40,101,91,110,93,61,33,40,116,91,110,93,61,101,91,110,93,41,41,125,41,125,41,125,102,117,110,99,116,105,111,110,32,121,101,40,101,41,123,114,101,116,117,114,110,32,101,38,38,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,101,46,103,101,116,69,108,101,109,101,110,116,115,66,121,84,97,103,78,97,109,101,38,38,101,125,102,111,114,40,101,32,105,110,32,100,61,115,101,46,115,117,112,112,111,114,116,61,123,125,44,105,61,115,101,46,105,115,88,77,76,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,46,110,97,109,101,115,112,97,99,101,85,82,73,44,110,61,40,101,46,111,119,110,101,114,68,111,99,117,109,101,110,116,124,124,101,41,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,59,114,101,116,117,114,110,33,89,46,116,101,115,116,40,116,124,124,110,38,38,110,46,110,111,100,101,78,97,109,101,124,124,34,72,84,77,76,34,41,125,44,84,61,115,101,46,115,101,116,68,111,99,117,109,101,110,116,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,44,110,44,114,61,101,63,101,46,111,119,110,101,114,68,111,99,117,109,101,110,116,124,124,101,58,109,59,114,101,116,117,114,110,32,114,33,61,61,67,38,38,57,61,61,61,114,46,110,111,100,101,84,121,112,101,38,38,114,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,38,38,40,97,61,40,67,61,114,41,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,44,69,61,33,105,40,67,41,44,109,33,61,61,67,38,38,40,110,61,67,46,100,101,102,97,117,108,116,86,105,101,119,41,38,38,110,46,116,111,112,33,61,61,110,38,38,40,110,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,63,110,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,117,110,108,111,97,100,34,44,111,101,44,33,49,41,58,110,46,97,116,116,97,99,104,69,118,101,110,116,38,38,110,46,97,116,116,97,99,104,69,118,101,110,116,40,34,111,110,117,110,108,111,97,100,34,44,111,101,41,41,44,100,46,97,116,116,114,105,98,117,116,101,115,61,99,101,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,46,99,108,97,115,115,78,97,109,101,61,34,105,34,44,33,101,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,78,97,109,101,34,41,125,41,44,100,46,103,101,116,69,108,101,109,101,110,116,115,66,121,84,97,103,78,97,109,101,61,99,101,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,46,97,112,112,101,110,100,67,104,105,108,100,40,67,46,99,114,101,97,116,101,67,111,109,109,101,110,116,40,34,34,41,41,44,33,101,46,103,101,116,69,108,101,109,101,110,116,115,66,121,84,97,103,78,97,109,101,40,34,42,34,41,46,108,101,110,103,116,104,125,41,44,100,46,103,101,116,69,108,101,109,101,110,116,115,66,121,67,108,97,115,115,78,97,109,101,61,75,46,116,101,115,116,40,67,46,103,101,116,69,108,101,109,101,110,116,115,66,121,67,108,97,115,115,78,97,109,101,41,44,100,46,103,101,116,66,121,73,100,61,99,101,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,97,46,97,112,112,101,110,100,67,104,105,108,100,40,101,41,46,105,100,61,107,44,33,67,46,103,101,116,69,108,101,109,101,110,116,115,66,121,78,97,109,101,124,124,33,67,46,103,101,116,69,108,101,109,101,110,116,115,66,121,78,97,109,101,40,107,41,46,108,101,110,103,116,104,125,41,44,100,46,103,101,116,66,121,73,100,63,40,98,46,102,105,108,116,101,114,46,73,68,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,46,114,101,112,108,97,99,101,40,116,101,44,110,101,41,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,105,100,34,41,61,61,61,116,125,125,44,98,46,102,105,110,100,46,73,68,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,102,40,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,116,46,103,101,116,69,108,101,109,101,110,116,66,121,73,100,38,38,69,41,123,118,97,114,32,110,61,116,46,103,101,116,69,108,101,109,101,110,116,66,121,73,100,40,101,41,59,114,101,116,117,114,110,32,110,63,91,110,93,58,91,93,125,125,41,58,40,98,46,102,105,108,116,101,114,46,73,68,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,110,61,101,46,114,101,112,108,97,99,101,40,116,101,44,110,101,41,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,101,46,103,101,116,65,116,116,114,105,98,117,116,101,78,111,100,101,38,38,101,46,103,101,116,65,116,116,114,105,98,117,116,101,78,111,100,101,40,34,105,100,34,41,59,114,101,116,117,114,110,32,116,38,38,116,46,118,97,108,117,101,61,61,61,110,125,125,44,98,46,102,105,110,100,46,73,68,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,102,40,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,116,46,103,101,116,69,108,101,109,101,110,116,66,121,73,100,38,38,69,41,123,118,97,114,32,110,44,114,44,105,44,111,61,116,46,103,101,116,69,108,101,109,101,110,116,66,121,73,100,40,101,41,59,105,102,40,111,41,123,105,102,40,40,110,61,111,46,103,101,116,65,116,116,114,105,98,117,116,101,78,111,100,101,40,34,105,100,34,41,41,38,38,110,46,118,97,108,117,101,61,61,61,101,41,114,101,116,117,114,110,91,111,93,59,105,61,116,46,103,101,116,69,108,101,109,101,110,116,115,66,121,78,97,109,101,40,101,41,44,114,61,48,59,119,104,105,108,101,40,111,61,105,91,114,43,43,93,41,105,102,40,40,110,61,111,46,103,101,116,65,116,116,114,105,98,117,116,101,78,111,100,101,40,34,105,100,34,41,41,38,38,110,46,118,97,108,117,101,61,61,61,101,41,114,101,116,117,114,110,91,111,93,125,114,101,116,117,114,110,91,93,125,125,41,44,98,46,102,105,110,100,46,84,65,71,61,100,46,103,101,116,69,108,101,109,101,110,116,115,66,121,84,97,103,78,97,109,101,63,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,116,46,103,101,116,69,108,101,109,101,110,116,115,66,121,84,97,103,78,97,109,101,63,116,46,103,101,116,69,108,101,109,101,110,116,115,66,121,84,97,103,78,97,109,101,40,101,41,58,100,46,113,115,97,63,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,101,41,58,118,111,105,100,32,48,125,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,44,114,61,91,93,44,105,61,48,44,111,61,116,46,103,101,116,69,108,101,109,101,110,116,115,66,121,84,97,103,78,97,109,101,40,101,41,59,105,102,40,34,42,34,61,61,61,101,41,123,119,104,105,108,101,40,110,61,111,91,105,43,43,93,41,49,61,61,61,110,46,110,111,100,101,84,121,112,101,38,38,114,46,112,117,115,104,40,110,41,59,114,101,116,117,114,110,32,114,125,114,101,116,117,114,110,32,111,125,44,98,46,102,105,110,100,46,67,76,65,83,83,61,100,46,103,101,116,69,108,101,109,101,110,116,115,66,121,67,108,97,115,115,78,97,109,101,38,38,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,102,40,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,116,46,103,101,116,69,108,101,109,101,110,116,115,66,121,67,108,97,115,115,78,97,109,101,38,38,69,41,114,101,116,117,114,110,32,116,46,103,101,116,69,108,101,109,101,110,116,115,66,121,67,108,97,115,115,78,97,109,101,40,101,41,125,44,115,61,91,93,44,118,61,91,93,44,40,100,46,113,115,97,61,75,46,116,101,115,116,40,67,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,41,41,38,38,40,99,101,40,102,117,110,99,116,105,111,110,40,101,41,123,97,46,97,112,112,101,110,100,67,104,105,108,100,40,101,41,46,105,110,110,101,114,72,84,77,76,61,34,60,97,32,105,100,61,39,34,43,107,43,34,39,62,60,47,97,62,60,115,101,108,101,99,116,32,105,100,61,39,34,43,107,43,34,45,92,114,92,92,39,32,109,115,97,108,108,111,119,99,97,112,116,117,114,101,61,39,39,62,60,111,112,116,105,111,110,32,115,101,108,101,99,116,101,100,61,39,39,62,60,47,111,112,116,105,111,110,62,60,47,115,101,108,101,99,116,62,34,44,101,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,34,91,109,115,97,108,108,111,119,99,97,112,116,117,114,101,94,61,39,39,93,34,41,46,108,101,110,103,116,104,38,38,118,46,112,117,115,104,40,34,91,42,94,36,93,61,34,43,77,43,34,42,40,63,58,39,39,124,92,34,92,34,41,34,41,44,101,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,34,91,115,101,108,101,99,116,101,100,93,34,41,46,108,101,110,103,116,104,124,124,118,46,112,117,115,104,40,34,92,92,91,34,43,77,43,34,42,40,63,58,118,97,108,117,101,124,34,43,82,43,34,41,34,41,44,101,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,34,91,105,100,126,61,34,43,107,43,34,45,93,34,41,46,108,101,110,103,116,104,124,124,118,46,112,117,115,104,40,34,126,61,34,41,44,101,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,34,58,99,104,101,99,107,101,100,34,41,46,108,101,110,103,116,104,124,124,118,46,112,117,115,104,40,34,58,99,104,101,99,107,101,100,34,41,44,101,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,34,97,35,34,43,107,43,34,43,42,34,41,46,108,101,110,103,116,104,124,124,118,46,112,117,115,104,40,34,46,35,46,43,91,43,126,93,34,41,125,41,44,99,101,40,102,117,110,99,116,105,111,110,40,101,41,123,101,46,105,110,110,101,114,72,84,77,76,61,34,60,97,32,104,114,101,102,61,39,39,32,100,105,115,97,98,108,101,100,61,39,100,105,115,97,98,108,101,100,39,62,60,47,97,62,60,115,101,108,101,99,116,32,100,105,115,97,98,108,101,100,61,39,100,105,115,97,98,108,101,100,39,62,60,111,112,116,105,111,110,47,62,60,47,115,101,108,101,99,116,62,34,59,118,97,114,32,116,61,67,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,105,110,112,117,116,34,41,59,116,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,116,121,112,101,34,44,34,104,105,100,100,101,110,34,41,44,101,46,97,112,112,101,110,100,67,104,105,108,100,40,116,41,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,110,97,109,101,34,44,34,68,34,41,44,101,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,34,91,110,97,109,101,61,100,93,34,41,46,108,101,110,103,116,104,38,38,118,46,112,117,115,104,40,34,110,97,109,101,34,43,77,43,34,42,91,42,94,36,124,33,126,93,63,61,34,41,44,50,33,61,61,101,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,34,58,101,110,97,98,108,101,100,34,41,46,108,101,110,103,116,104,38,38,118,46,112,117,115,104,40,34,58,101,110,97,98,108,101,100,34,44,34,58,100,105,115,97,98,108,101,100,34,41,44,97,46,97,112,112,101,110,100,67,104,105,108,100,40,101,41,46,100,105,115,97,98,108,101,100,61,33,48,44,50,33,61,61,101,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,34,58,100,105,115,97,98,108,101,100,34,41,46,108,101,110,103,116,104,38,38,118,46,112,117,115,104,40,34,58,101,110,97,98,108,101,100,34,44,34,58,100,105,115,97,98,108,101,100,34,41,44,101,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,34,42,44,58,120,34,41,44,118,46,112,117,115,104,40,34,44,46,42,58,34,41,125,41,41,44,40,100,46,109,97,116,99,104,101,115,83,101,108,101,99,116,111,114,61,75,46,116,101,115,116,40,99,61,97,46,109,97,116,99,104,101,115,124,124,97,46,119,101,98,107,105,116,77,97,116,99,104,101,115,83,101,108,101,99,116,111,114,124,124,97,46,109,111,122,77,97,116,99,104,101,115,83,101,108,101,99,116,111,114,124,124,97,46,111,77,97,116,99,104,101,115,83,101,108,101,99,116,111,114,124,124,97,46,109,115,77,97,116,99,104,101,115,83,101,108,101,99,116,111,114,41,41,38,38,99,101,40,102,117,110,99,116,105,111,110,40,101,41,123,100,46,100,105,115,99,111,110,110,101,99,116,101,100,77,97,116,99,104,61,99,46,99,97,108,108,40,101,44,34,42,34,41,44,99,46,99,97,108,108,40,101,44,34,91,115,33,61,39,39,93,58,120,34,41,44,115,46,112,117,115,104,40,34,33,61,34,44,36,41,125,41,44,118,61,118,46,108,101,110,103,116,104,38,38,110,101,119,32,82,101,103,69,120,112,40,118,46,106,111,105,110,40,34,124,34,41,41,44,115,61,115,46,108,101,110,103,116,104,38,38,110,101,119,32,82,101,103,69,120,112,40,115,46,106,111,105,110,40,34,124,34,41,41,44,116,61,75,46,116,101,115,116,40,97,46,99,111,109,112,97,114,101,68,111,99,117,109,101,110,116,80,111,115,105,116,105,111,110,41,44,121,61,116,124,124,75,46,116,101,115,116,40,97,46,99,111,110,116,97,105,110,115,41,63,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,61,57,61,61,61,101,46,110,111,100,101,84,121,112,101,63,101,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,58,101,44,114,61,116,38,38,116,46,112,97,114,101,110,116,78,111,100,101,59,114,101,116,117,114,110,32,101,61,61,61,114,124,124,33,40,33,114,124,124,49,33,61,61,114,46,110,111,100,101,84,121,112,101,124,124,33,40,110,46,99,111,110,116,97,105,110,115,63,110,46,99,111,110,116,97,105,110,115,40,114,41,58,101,46,99,111,109,112,97,114,101,68,111,99,117,109,101,110,116,80,111,115,105,116,105,111,110,38,38,49,54,38,101,46,99,111,109,112,97,114,101,68,111,99,117,109,101,110,116,80,111,115,105,116,105,111,110,40,114,41,41,41,125,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,102,40,116,41,119,104,105,108,101,40,116,61,116,46,112,97,114,101,110,116,78,111,100,101,41,105,102,40,116,61,61,61,101,41,114,101,116,117,114,110,33,48,59,114,101,116,117,114,110,33,49,125,44,68,61,116,63,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,102,40,101,61,61,61,116,41,114,101,116,117,114,110,32,108,61,33,48,44,48,59,118,97,114,32,110,61,33,101,46,99,111,109,112,97,114,101,68,111,99,117,109,101,110,116,80,111,115,105,116,105,111,110,45,33,116,46,99,111,109,112,97,114,101,68,111,99,117,109,101,110,116,80,111,115,105,116,105,111,110,59,114,101,116,117,114,110,32,110,124,124,40,49,38,40,110,61,40,101,46,111,119,110,101,114,68,111,99,117,109,101,110,116,124,124,101,41,61,61,61,40,116,46,111,119,110,101,114,68,111,99,117,109,101,110,116,124,124,116,41,63,101,46,99,111,109,112,97,114,101,68,111,99,117,109,101,110,116,80,111,115,105,116,105,111,110,40,116,41,58,49,41,124,124,33,100,46,115,111,114,116,68,101,116,97,99,104,101,100,38,38,116,46,99,111,109,112,97,114,101,68,111,99,117,109,101,110,116,80,111,115,105,116,105,111,110,40,101,41,61,61,61,110,63,101,61,61,61,67,124,124,101,46,111,119,110,101,114,68,111,99,117,109,101,110,116,61,61,61,109,38,38,121,40,109,44,101,41,63,45,49,58,116,61,61,61,67,124,124,116,46,111,119,110,101,114,68,111,99,117,109,101,110,116,61,61,61,109,38,38,121,40,109,44,116,41,63,49,58,117,63,80,40,117,44,101,41,45,80,40,117,44,116,41,58,48,58,52,38,110,63,45,49,58,49,41,125,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,102,40,101,61,61,61,116,41,114,101,116,117,114,110,32,108,61,33,48,44,48,59,118,97,114,32,110,44,114,61,48,44,105,61,101,46,112,97,114,101,110,116,78,111,100,101,44,111,61,116,46,112,97,114,101,110,116,78,111,100,101,44,97,61,91,101,93,44,115,61,91,116,93,59,105,102,40,33,105,124,124,33,111,41,114,101,116,117,114,110,32,101,61,61,61,67,63,45,49,58,116,61,61,61,67,63,49,58,105,63,45,49,58,111,63,49,58,117,63,80,40,117,44,101,41,45,80,40,117,44,116,41,58,48,59,105,102,40,105,61,61,61,111,41,114,101,116,117,114,110,32,112,101,40,101,44,116,41,59,110,61,101,59,119,104,105,108,101,40,110,61,110,46,112,97,114,101,110,116,78,111,100,101,41,97,46,117,110,115,104,105,102,116,40,110,41,59,110,61,116,59,119,104,105,108,101,40,110,61,110,46,112,97,114,101,110,116,78,111,100,101,41,115,46,117,110,115,104,105,102,116,40,110,41,59,119,104,105,108,101,40,97,91,114,93,61,61,61,115,91,114,93,41,114,43,43,59,114,101,116,117,114,110,32,114,63,112,101,40,97,91,114,93,44,115,91,114,93,41,58,97,91,114,93,61,61,61,109,63,45,49,58,115,91,114,93,61,61,61,109,63,49,58,48,125,41,44,67,125,44,115,101,46,109,97,116,99,104,101,115,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,115,101,40,101,44,110,117,108,108,44,110,117,108,108,44,116,41,125,44,115,101,46,109,97,116,99,104,101,115,83,101,108,101,99,116,111,114,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,102,40,40,101,46,111,119,110,101,114,68,111,99,117,109,101,110,116,124,124,101,41,33,61,61,67,38,38,84,40,101,41,44,100,46,109,97,116,99,104,101,115,83,101,108,101,99,116,111,114,38,38,69,38,38,33,65,91,116,43,34,32,34,93,38,38,40,33,115,124,124,33,115,46,116,101,115,116,40,116,41,41,38,38,40,33,118,124,124,33,118,46,116,101,115,116,40,116,41,41,41,116,114,121,123,118,97,114,32,110,61,99,46,99,97,108,108,40,101,44,116,41,59,105,102,40,110,124,124,100,46,100,105,115,99,111,110,110,101,99,116,101,100,77,97,116,99,104,124,124,101,46,100,111,99,117,109,101,110,116,38,38,49,49,33,61,61,101,46,100,111,99,117,109,101,110,116,46,110,111,100,101,84,121,112,101,41,114,101,116,117,114,110,32,110,125,99,97,116,99,104,40,101,41,123,65,40,116,44,33,48,41,125,114,101,116,117,114,110,32,48,60,115,101,40,116,44,67,44,110,117,108,108,44,91,101,93,41,46,108,101,110,103,116,104,125,44,115,101,46,99,111,110,116,97,105,110,115,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,40,101,46,111,119,110,101,114,68,111,99,117,109,101,110,116,124,124,101,41,33,61,61,67,38,38,84,40,101,41,44,121,40,101,44,116,41,125,44,115,101,46,97,116,116,114,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,40,101,46,111,119,110,101,114,68,111,99,117,109,101,110,116,124,124,101,41,33,61,61,67,38,38,84,40,101,41,59,118,97,114,32,110,61,98,46,97,116,116,114,72,97,110,100,108,101,91,116,46,116,111,76,111,119,101,114,67,97,115,101,40,41,93,44,114,61,110,38,38,106,46,99,97,108,108,40,98,46,97,116,116,114,72,97,110,100,108,101,44,116,46,116,111,76,111,119,101,114,67,97,115,101,40,41,41,63,110,40,101,44,116,44,33,69,41,58,118,111,105,100,32,48,59,114,101,116,117,114,110,32,118,111,105,100,32,48,33,61,61,114,63,114,58,100,46,97,116,116,114,105,98,117,116,101,115,124,124,33,69,63,101,46,103,101,116,65,116,116,114,105,98,117,116,101,40,116,41,58,40,114,61,101,46,103,101,116,65,116,116,114,105,98,117,116,101,78,111,100,101,40,116,41,41,38,38,114,46,115,112,101,99,105,102,105,101,100,63,114,46,118,97,108,117,101,58,110,117,108,108,125,44,115,101,46,101,115,99,97,112,101,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,40,101,43,34,34,41,46,114,101,112,108,97,99,101,40,114,101,44,105,101,41,125,44,115,101,46,101,114,114,111,114,61,102,117,110,99,116,105,111,110,40,101,41,123,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,83,121,110,116,97,120,32,101,114,114,111,114,44,32,117,110,114,101,99,111,103,110,105,122,101,100,32,101,120,112,114,101,115,115,105,111,110,58,32,34,43,101,41,125,44,115,101,46,117,110,105,113,117,101,83,111,114,116,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,44,110,61,91,93,44,114,61,48,44,105,61,48,59,105,102,40,108,61,33,100,46,100,101,116,101,99,116,68,117,112,108,105,99,97,116,101,115,44,117,61,33,100,46,115,111,114,116,83,116,97,98,108,101,38,38,101,46,115,108,105,99,101,40,48,41,44,101,46,115,111,114,116,40,68,41,44,108,41,123,119,104,105,108,101,40,116,61,101,91,105,43,43,93,41,116,61,61,61,101,91,105,93,38,38,40,114,61,110,46,112,117,115,104,40,105,41,41,59,119,104,105,108,101,40,114,45,45,41,101,46,115,112,108,105,99,101,40,110,91,114,93,44,49,41,125,114,101,116,117,114,110,32,117,61,110,117,108,108,44,101,125,44,111,61,115,101,46,103,101,116,84,101,120,116,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,44,110,61,34,34,44,114,61,48,44,105,61,101,46,110,111,100,101,84,121,112,101,59,105,102,40,105,41,123,105,102,40,49,61,61,61,105,124,124,57,61,61,61,105,124,124,49,49,61,61,61,105,41,123,105,102,40,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,101,46,116,101,120,116,67,111,110,116,101,110,116,41,114,101,116,117,114,110,32,101,46,116,101,120,116,67,111,110,116,101,110,116,59,102,111,114,40,101,61,101,46,102,105,114,115,116,67,104,105,108,100,59,101,59,101,61,101,46,110,101,120,116,83,105,98,108,105,110,103,41,110,43,61,111,40,101,41,125,101,108,115,101,32,105,102,40,51,61,61,61,105,124,124,52,61,61,61,105,41,114,101,116,117,114,110,32,101,46,110,111,100,101,86,97,108,117,101,125,101,108,115,101,32,119,104,105,108,101,40,116,61,101,91,114,43,43,93,41,110,43,61,111,40,116,41,59,114,101,116,117,114,110,32,110,125,44,40,98,61,115,101,46,115,101,108,101,99,116,111,114,115,61,123,99,97,99,104,101,76,101,110,103,116,104,58,53,48,44,99,114,101,97,116,101,80,115,101,117,100,111,58,108,101,44,109,97,116,99,104,58,71,44,97,116,116,114,72,97,110,100,108,101,58,123,125,44,102,105,110,100,58,123,125,44,114,101,108,97,116,105,118,101,58,123,34,62,34,58,123,100,105,114,58,34,112,97,114,101,110,116,78,111,100,101,34,44,102,105,114,115,116,58,33,48,125,44,34,32,34,58,123,100,105,114,58,34,112,97,114,101,110,116,78,111,100,101,34,125,44,34,43,34,58,123,100,105,114,58,34,112,114,101,118,105,111,117,115,83,105,98,108,105,110,103,34,44,102,105,114,115,116,58,33,48,125,44,34,126,34,58,123,100,105,114,58,34,112,114,101,118,105,111,117,115,83,105,98,108,105,110,103,34,125,125,44,112,114,101,70,105,108,116,101,114,58,123,65,84,84,82,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,91,49,93,61,101,91,49,93,46,114,101,112,108,97,99,101,40,116,101,44,110,101,41,44,101,91,51,93,61,40,101,91,51,93,124,124,101,91,52,93,124,124,101,91,53,93,124,124,34,34,41,46,114,101,112,108,97,99,101,40,116,101,44,110,101,41,44,34,126,61,34,61,61,61,101,91,50,93,38,38,40,101,91,51,93,61,34,32,34,43,101,91,51,93,43,34,32,34,41,44,101,46,115,108,105,99,101,40,48,44,52,41,125,44,67,72,73,76,68,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,91,49,93,61,101,91,49,93,46,116,111,76,111,119,101,114,67,97,115,101,40,41,44,34,110,116,104,34,61,61,61,101,91,49,93,46,115,108,105,99,101,40,48,44,51,41,63,40,101,91,51,93,124,124,115,101,46,101,114,114,111,114,40,101,91,48,93,41,44,101,91,52,93,61,43,40,101,91,52,93,63,101,91,53,93,43,40,101,91,54,93,124,124,49,41,58,50,42,40,34,101,118,101,110,34,61,61,61,101,91,51,93,124,124,34,111,100,100,34,61,61,61,101,91,51,93,41,41,44,101,91,53,93,61,43,40,101,91,55,93,43,101,91,56,93,124,124,34,111,100,100,34,61,61,61,101,91,51,93,41,41,58,101,91,51,93,38,38,115,101,46,101,114,114,111,114,40,101,91,48,93,41,44,101,125,44,80,83,69,85,68,79,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,44,110,61,33,101,91,54,93,38,38,101,91,50,93,59,114,101,116,117,114,110,32,71,46,67,72,73,76,68,46,116,101,115,116,40,101,91,48,93,41,63,110,117,108,108,58,40,101,91,51,93,63,101,91,50,93,61,101,91,52,93,124,124,101,91,53,93,124,124,34,34,58,110,38,38,88,46,116,101,115,116,40,110,41,38,38,40,116,61,104,40,110,44,33,48,41,41,38,38,40,116,61,110,46,105,110,100,101,120,79,102,40,34,41,34,44,110,46,108,101,110,103,116,104,45,116,41,45,110,46,108,101,110,103,116,104,41,38,38,40,101,91,48,93,61,101,91,48,93,46,115,108,105,99,101,40,48,44,116,41,44,101,91,50,93,61,110,46,115,108,105,99,101,40,48,44,116,41,41,44,101,46,115,108,105,99,101,40,48,44,51,41,41,125,125,44,102,105,108,116,101,114,58,123,84,65,71,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,46,114,101,112,108,97,99,101,40,116,101,44,110,101,41,46,116,111,76,111,119,101,114,67,97,115,101,40,41,59,114,101,116,117,114,110,34,42,34,61,61,61,101,63,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,33,48,125,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,46,110,111,100,101,78,97,109,101,38,38,101,46,110,111,100,101,78,97,109,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,61,61,61,116,125,125,44,67,76,65,83,83,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,112,91,101,43,34,32,34,93,59,114,101,116,117,114,110,32,116,124,124,40,116,61,110,101,119,32,82,101,103,69,120,112,40,34,40,94,124,34,43,77,43,34,41,34,43,101,43,34,40,34,43,77,43,34,124,36,41,34,41,41,38,38,112,40,101,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,46,116,101,115,116,40,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,101,46,99,108,97,115,115,78,97,109,101,38,38,101,46,99,108,97,115,115,78,97,109,101,124,124,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,101,46,103,101,116,65,116,116,114,105,98,117,116,101,38,38,101,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,41,124,124,34,34,41,125,41,125,44,65,84,84,82,58,102,117,110,99,116,105,111,110,40,110,44,114,44,105,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,115,101,46,97,116,116,114,40,101,44,110,41,59,114,101,116,117,114,110,32,110,117,108,108,61,61,116,63,34,33,61,34,61,61,61,114,58,33,114,124,124,40,116,43,61,34,34,44,34,61,34,61,61,61,114,63,116,61,61,61,105,58,34,33,61,34,61,61,61,114,63,116,33,61,61,105,58,34,94,61,34,61,61,61,114,63,105,38,38,48,61,61,61,116,46,105,110,100,101,120,79,102,40,105,41,58,34,42,61,34,61,61,61,114,63,105,38,38,45,49,60,116,46,105,110,100,101,120,79,102,40,105,41,58,34,36,61,34,61,61,61,114,63,105,38,38,116,46,115,108,105,99,101,40,45,105,46,108,101,110,103,116,104,41,61,61,61,105,58,34,126,61,34,61,61,61,114,63,45,49,60,40,34,32,34,43,116,46,114,101,112,108,97,99,101,40,70,44,34,32,34,41,43,34,32,34,41,46,105,110,100,101,120,79,102,40,105,41,58,34,124,61,34,61,61,61,114,38,38,40,116,61,61,61,105,124,124,116,46,115,108,105,99,101,40,48,44,105,46,108,101,110,103,116,104,43,49,41,61,61,61,105,43,34,45,34,41,41,125,125,44,67,72,73,76,68,58,102,117,110,99,116,105,111,110,40,104,44,101,44,116,44,103,44,118,41,123,118,97,114,32,121,61,34,110,116,104,34,33,61,61,104,46,115,108,105,99,101,40,48,44,51,41,44,109,61,34,108,97,115,116,34,33,61,61,104,46,115,108,105,99,101,40,45,52,41,44,120,61,34,111,102,45,116,121,112,101,34,61,61,61,101,59,114,101,116,117,114,110,32,49,61,61,61,103,38,38,48,61,61,61,118,63,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,33,33,101,46,112,97,114,101,110,116,78,111,100,101,125,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,44,105,44,111,44,97,44,115,44,117,44,108,61,121,33,61,61,109,63,34,110,101,120,116,83,105,98,108,105,110,103,34,58,34,112,114,101,118,105,111,117,115,83,105,98,108,105,110,103,34,44,99,61,101,46,112,97,114,101,110,116,78,111,100,101,44,102,61,120,38,38,101,46,110,111,100,101,78,97,109,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,44,112,61,33,110,38,38,33,120,44,100,61,33,49,59,105,102,40,99,41,123,105,102,40,121,41,123,119,104,105,108,101,40,108,41,123,97,61,101,59,119,104,105,108,101,40,97,61,97,91,108,93,41,105,102,40,120,63,97,46,110,111,100,101,78,97,109,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,61,61,61,102,58,49,61,61,61,97,46,110,111,100,101,84,121,112,101,41,114,101,116,117,114,110,33,49,59,117,61,108,61,34,111,110,108,121,34,61,61,61,104,38,38,33,117,38,38,34,110,101,120,116,83,105,98,108,105,110,103,34,125,114,101,116,117,114,110,33,48,125,105,102,40,117,61,91,109,63,99,46,102,105,114,115,116,67,104,105,108,100,58,99,46,108,97,115,116,67,104,105,108,100,93,44,109,38,38,112,41,123,100,61,40,115,61,40,114,61,40,105,61,40,111,61,40,97,61,99,41,91,107,93,124,124,40,97,91,107,93,61,123,125,41,41,91,97,46,117,110,105,113,117,101,73,68,93,124,124,40,111,91,97,46,117,110,105,113,117,101,73,68,93,61,123,125,41,41,91,104,93,124,124,91,93,41,91,48,93,61,61,61,83,38,38,114,91,49,93,41,38,38,114,91,50,93,44,97,61,115,38,38,99,46,99,104,105,108,100,78,111,100,101,115,91,115,93,59,119,104,105,108,101,40,97,61,43,43,115,38,38,97,38,38,97,91,108,93,124,124,40,100,61,115,61,48,41,124,124,117,46,112,111,112,40,41,41,105,102,40,49,61,61,61,97,46,110,111,100,101,84,121,112,101,38,38,43,43,100,38,38,97,61,61,61,101,41,123,105,91,104,93,61,91,83,44,115,44,100,93,59,98,114,101,97,107,125,125,101,108,115,101,32,105,102,40,112,38,38,40,100,61,115,61,40,114,61,40,105,61,40,111,61,40,97,61,101,41,91,107,93,124,124,40,97,91,107,93,61,123,125,41,41,91,97,46,117,110,105,113,117,101,73,68,93,124,124,40,111,91,97,46,117,110,105,113,117,101,73,68,93,61,123,125,41,41,91,104,93,124,124,91,93,41,91,48,93,61,61,61,83,38,38,114,91,49,93,41,44,33,49,61,61,61,100,41,119,104,105,108,101,40,97,61,43,43,115,38,38,97,38,38,97,91,108,93,124,124,40,100,61,115,61,48,41,124,124,117,46,112,111,112,40,41,41,105,102,40,40,120,63,97,46,110,111,100,101,78,97,109,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,61,61,61,102,58,49,61,61,61,97,46,110,111,100,101,84,121,112,101,41,38,38,43,43,100,38,38,40,112,38,38,40,40,105,61,40,111,61,97,91,107,93,124,124,40,97,91,107,93,61,123,125,41,41,91,97,46,117,110,105,113,117,101,73,68,93,124,124,40,111,91,97,46,117,110,105,113,117,101,73,68,93,61,123,125,41,41,91,104,93,61,91,83,44,100,93,41,44,97,61,61,61,101,41,41,98,114,101,97,107,59,114,101,116,117,114,110,40,100,45,61,118,41,61,61,61,103,124,124,100,37,103,61,61,48,38,38,48,60,61,100,47,103,125,125,125,44,80,83,69,85,68,79,58,102,117,110,99,116,105,111,110,40,101,44,111,41,123,118,97,114,32,116,44,97,61,98,46,112,115,101,117,100,111,115,91,101,93,124,124,98,46,115,101,116,70,105,108,116,101,114,115,91,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,93,124,124,115,101,46,101,114,114,111,114,40,34,117,110,115,117,112,112,111,114,116,101,100,32,112,115,101,117,100,111,58,32,34,43,101,41,59,114,101,116,117,114,110,32,97,91,107,93,63,97,40,111,41,58,49,60,97,46,108,101,110,103,116,104,63,40,116,61,91,101,44,101,44,34,34,44,111,93,44,98,46,115,101,116,70,105,108,116,101,114,115,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,41,63,108,101,40,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,44,114,61,97,40,101,44,111,41,44,105,61,114,46,108,101,110,103,116,104,59,119,104,105,108,101,40,105,45,45,41,101,91,110,61,80,40,101,44,114,91,105,93,41,93,61,33,40,116,91,110,93,61,114,91,105,93,41,125,41,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,97,40,101,44,48,44,116,41,125,41,58,97,125,125,44,112,115,101,117,100,111,115,58,123,110,111,116,58,108,101,40,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,114,61,91,93,44,105,61,91,93,44,115,61,102,40,101,46,114,101,112,108,97,99,101,40,66,44,34,36,49,34,41,41,59,114,101,116,117,114,110,32,115,91,107,93,63,108,101,40,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,114,41,123,118,97,114,32,105,44,111,61,115,40,101,44,110,117,108,108,44,114,44,91,93,41,44,97,61,101,46,108,101,110,103,116,104,59,119,104,105,108,101,40,97,45,45,41,40,105,61,111,91,97,93,41,38,38,40,101,91,97,93,61,33,40,116,91,97,93,61,105,41,41,125,41,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,114,101,116,117,114,110,32,114,91,48,93,61,101,44,115,40,114,44,110,117,108,108,44,110,44,105,41,44,114,91,48,93,61,110,117,108,108,44,33,105,46,112,111,112,40,41,125,125,41,44,104,97,115,58,108,101,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,48,60,115,101,40,116,44,101,41,46,108,101,110,103,116,104,125,125,41,44,99,111,110,116,97,105,110,115,58,108,101,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,61,116,46,114,101,112,108,97,99,101,40,116,101,44,110,101,41,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,45,49,60,40,101,46,116,101,120,116,67,111,110,116,101,110,116,124,124,111,40,101,41,41,46,105,110,100,101,120,79,102,40,116,41,125,125,41,44,108,97,110,103,58,108,101,40,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,86,46,116,101,115,116,40,110,124,124,34,34,41,124,124,115,101,46,101,114,114,111,114,40,34,117,110,115,117,112,112,111,114,116,101,100,32,108,97,110,103,58,32,34,43,110,41,44,110,61,110,46,114,101,112,108,97,99,101,40,116,101,44,110,101,41,46,116,111,76,111,119,101,114,67,97,115,101,40,41,44,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,59,100,111,123,105,102,40,116,61,69,63,101,46,108,97,110,103,58,101,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,120,109,108,58,108,97,110,103,34,41,124,124,101,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,108,97,110,103,34,41,41,114,101,116,117,114,110,40,116,61,116,46,116,111,76,111,119,101,114,67,97,115,101,40,41,41,61,61,61,110,124,124,48,61,61,61,116,46,105,110,100,101,120,79,102,40,110,43,34,45,34,41,125,119,104,105,108,101,40,40,101,61,101,46,112,97,114,101,110,116,78,111,100,101,41,38,38,49,61,61,61,101,46,110,111,100,101,84,121,112,101,41,59,114,101,116,117,114,110,33,49,125,125,41,44,116,97,114,103,101,116,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,110,46,108,111,99,97,116,105,111,110,38,38,110,46,108,111,99,97,116,105,111,110,46,104,97,115,104,59,114,101,116,117,114,110,32,116,38,38,116,46,115,108,105,99,101,40,49,41,61,61,61,101,46,105,100,125,44,114,111,111,116,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,61,61,61,97,125,44,102,111,99,117,115,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,61,61,61,67,46,97,99,116,105,118,101,69,108,101,109,101,110,116,38,38,40,33,67,46,104,97,115,70,111,99,117,115,124,124,67,46,104,97,115,70,111,99,117,115,40,41,41,38,38,33,33,40,101,46,116,121,112,101,124,124,101,46,104,114,101,102,124,124,126,101,46,116,97,98,73,110,100,101,120,41,125,44,101,110,97,98,108,101,100,58,103,101,40,33,49,41,44,100,105,115,97,98,108,101,100,58,103,101,40,33,48,41,44,99,104,101,99,107,101,100,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,46,110,111,100,101,78,97,109,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,59,114,101,116,117,114,110,34,105,110,112,117,116,34,61,61,61,116,38,38,33,33,101,46,99,104,101,99,107,101,100,124,124,34,111,112,116,105,111,110,34,61,61,61,116,38,38,33,33,101,46,115,101,108,101,99,116,101,100,125,44,115,101,108,101,99,116,101,100,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,46,112,97,114,101,110,116,78,111,100,101,38,38,101,46,112,97,114,101,110,116,78,111,100,101,46,115,101,108,101,99,116,101,100,73,110,100,101,120,44,33,48,61,61,61,101,46,115,101,108,101,99,116,101,100,125,44,101,109,112,116,121,58,102,117,110,99,116,105,111,110,40,101,41,123,102,111,114,40,101,61,101,46,102,105,114,115,116,67,104,105,108,100,59,101,59,101,61,101,46,110,101,120,116,83,105,98,108,105,110,103,41,105,102,40,101,46,110,111,100,101,84,121,112,101,60,54,41,114,101,116,117,114,110,33,49,59,114,101,116,117,114,110,33,48,125,44,112,97,114,101,110,116,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,33,98,46,112,115,101,117,100,111,115,46,101,109,112,116,121,40,101,41,125,44,104,101,97,100,101,114,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,74,46,116,101,115,116,40,101,46,110,111,100,101,78,97,109,101,41,125,44,105,110,112,117,116,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,81,46,116,101,115,116,40,101,46,110,111,100,101,78,97,109,101,41,125,44,98,117,116,116,111,110,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,46,110,111,100,101,78,97,109,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,59,114,101,116,117,114,110,34,105,110,112,117,116,34,61,61,61,116,38,38,34,98,117,116,116,111,110,34,61,61,61,101,46,116,121,112,101,124,124,34,98,117,116,116,111,110,34,61,61,61,116,125,44,116,101,120,116,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,59,114,101,116,117,114,110,34,105,110,112,117,116,34,61,61,61,101,46,110,111,100,101,78,97,109,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,38,38,34,116,101,120,116,34,61,61,61,101,46,116,121,112,101,38,38,40,110,117,108,108,61,61,40,116,61,101,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,116,121,112,101,34,41,41,124,124,34,116,101,120,116,34,61,61,61,116,46,116,111,76,111,119,101,114,67,97,115,101,40,41,41,125,44,102,105,114,115,116,58,118,101,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,91,48,93,125,41,44,108,97,115,116,58,118,101,40,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,91,116,45,49,93,125,41,44,101,113,58,118,101,40,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,114,101,116,117,114,110,91,110,60,48,63,110,43,116,58,110,93,125,41,44,101,118,101,110,58,118,101,40,102,117,110,99,116,105,111,110,40,101,44,116,41,123,102,111,114,40,118,97,114,32,110,61,48,59,110,60,116,59,110,43,61,50,41,101,46,112,117,115,104,40,110,41,59,114,101,116,117,114,110,32,101,125,41,44,111,100,100,58,118,101,40,102,117,110,99,116,105,111,110,40,101,44,116,41,123,102,111,114,40,118,97,114,32,110,61,49,59,110,60,116,59,110,43,61,50,41,101,46,112,117,115,104,40,110,41,59,114,101,116,117,114,110,32,101,125,41,44,108,116,58,118,101,40,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,102,111,114,40,118,97,114,32,114,61,110,60,48,63,110,43,116,58,116,60,110,63,116,58,110,59,48,60,61,45,45,114,59,41,101,46,112,117,115,104,40,114,41,59,114,101,116,117,114,110,32,101,125,41,44,103,116,58,118,101,40,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,102,111,114,40,118,97,114,32,114,61,110,60,48,63,110,43,116,58,110,59,43,43,114,60,116,59,41,101,46,112,117,115,104,40,114,41,59,114,101,116,117,114,110,32,101,125,41,125,125,41,46,112,115,101,117,100,111,115,46,110,116,104,61,98,46,112,115,101,117,100,111,115,46,101,113,44,123,114,97,100,105,111,58,33,48,44,99,104,101,99,107,98,111,120,58,33,48,44,102,105,108,101,58,33,48,44,112,97,115,115,119,111,114,100,58,33,48,44,105,109,97,103,101,58,33,48,125,41,98,46,112,115,101,117,100,111,115,91,101,93,61,100,101,40,101,41,59,102,111,114,40,101,32,105,110,123,115,117,98,109,105,116,58,33,48,44,114,101,115,101,116,58,33,48,125,41,98,46,112,115,101,117,100,111,115,91,101,93,61,104,101,40,101,41,59,102,117,110,99,116,105,111,110,32,109,101,40,41,123,125,102,117,110,99,116,105,111,110,32,120,101,40,101,41,123,102,111,114,40,118,97,114,32,116,61,48,44,110,61,101,46,108,101,110,103,116,104,44,114,61,34,34,59,116,60,110,59,116,43,43,41,114,43,61,101,91,116,93,46,118,97,108,117,101,59,114,101,116,117,114,110,32,114,125,102,117,110,99,116,105,111,110,32,98,101,40,115,44,101,44,116,41,123,118,97,114,32,117,61,101,46,100,105,114,44,108,61,101,46,110,101,120,116,44,99,61,108,124,124,117,44,102,61,116,38,38,34,112,97,114,101,110,116,78,111,100,101,34,61,61,61,99,44,112,61,114,43,43,59,114,101,116,117,114,110,32,101,46,102,105,114,115,116,63,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,119,104,105,108,101,40,101,61,101,91,117,93,41,105,102,40,49,61,61,61,101,46,110,111,100,101,84,121,112,101,124,124,102,41,114,101,116,117,114,110,32,115,40,101,44,116,44,110,41,59,114,101,116,117,114,110,33,49,125,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,44,105,44,111,44,97,61,91,83,44,112,93,59,105,102,40,110,41,123,119,104,105,108,101,40,101,61,101,91,117,93,41,105,102,40,40,49,61,61,61,101,46,110,111,100,101,84,121,112,101,124,124,102,41,38,38,115,40,101,44,116,44,110,41,41,114,101,116,117,114,110,33,48,125,101,108,115,101,32,119,104,105,108,101,40,101,61,101,91,117,93,41,105,102,40,49,61,61,61,101,46,110,111,100,101,84,121,112,101,124,124,102,41,105,102,40,105,61,40,111,61,101,91,107,93,124,124,40,101,91,107,93,61,123,125,41,41,91,101,46,117,110,105,113,117,101,73,68,93,124,124,40,111,91,101,46,117,110,105,113,117,101,73,68,93,61,123,125,41,44,108,38,38,108,61,61,61,101,46,110,111,100,101,78,97,109,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,41,101,61,101,91,117,93,124,124,101,59,101,108,115,101,123,105,102,40,40,114,61,105,91,99,93,41,38,38,114,91,48,93,61,61,61,83,38,38,114,91,49,93,61,61,61,112,41,114,101,116,117,114,110,32,97,91,50,93,61,114,91,50,93,59,105,102,40,40,105,91,99,93,61,97,41,91,50,93,61,115,40,101,44,116,44,110,41,41,114,101,116,117,114,110,33,48,125,114,101,116,117,114,110,33,49,125,125,102,117,110,99,116,105,111,110,32,119,101,40,105,41,123,114,101,116,117,114,110,32,49,60,105,46,108,101,110,103,116,104,63,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,61,105,46,108,101,110,103,116,104,59,119,104,105,108,101,40,114,45,45,41,105,102,40,33,105,91,114,93,40,101,44,116,44,110,41,41,114,101,116,117,114,110,33,49,59,114,101,116,117,114,110,33,48,125,58,105,91,48,93,125,102,117,110,99,116,105,111,110,32,84,101,40,101,44,116,44,110,44,114,44,105,41,123,102,111,114,40,118,97,114,32,111,44,97,61,91,93,44,115,61,48,44,117,61,101,46,108,101,110,103,116,104,44,108,61,110,117,108,108,33,61,116,59,115,60,117,59,115,43,43,41,40,111,61,101,91,115,93,41,38,38,40,110,38,38,33,110,40,111,44,114,44,105,41,124,124,40,97,46,112,117,115,104,40,111,41,44,108,38,38,116,46,112,117,115,104,40,115,41,41,41,59,114,101,116,117,114,110,32,97,125,102,117,110,99,116,105,111,110,32,67,101,40,100,44,104,44,103,44,118,44,121,44,101,41,123,114,101,116,117,114,110,32,118,38,38,33,118,91,107,93,38,38,40,118,61,67,101,40,118,41,41,44,121,38,38,33,121,91,107,93,38,38,40,121,61,67,101,40,121,44,101,41,41,44,108,101,40,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,114,41,123,118,97,114,32,105,44,111,44,97,44,115,61,91,93,44,117,61,91,93,44,108,61,116,46,108,101,110,103,116,104,44,99,61,101,124,124,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,102,111,114,40,118,97,114,32,114,61,48,44,105,61,116,46,108,101,110,103,116,104,59,114,60,105,59,114,43,43,41,115,101,40,101,44,116,91,114,93,44,110,41,59,114,101,116,117,114,110,32,110,125,40,104,124,124,34,42,34,44,110,46,110,111,100,101,84,121,112,101,63,91,110,93,58,110,44,91,93,41,44,102,61,33,100,124,124,33,101,38,38,104,63,99,58,84,101,40,99,44,115,44,100,44,110,44,114,41,44,112,61,103,63,121,124,124,40,101,63,100,58,108,124,124,118,41,63,91,93,58,116,58,102,59,105,102,40,103,38,38,103,40,102,44,112,44,110,44,114,41,44,118,41,123,105,61,84,101,40,112,44,117,41,44,118,40,105,44,91,93,44,110,44,114,41,44,111,61,105,46,108,101,110,103,116,104,59,119,104,105,108,101,40,111,45,45,41,40,97,61,105,91,111,93,41,38,38,40,112,91,117,91,111,93,93,61,33,40,102,91,117,91,111,93,93,61,97,41,41,125,105,102,40,101,41,123,105,102,40,121,124,124,100,41,123,105,102,40,121,41,123,105,61,91,93,44,111,61,112,46,108,101,110,103,116,104,59,119,104,105,108,101,40,111,45,45,41,40,97,61,112,91,111,93,41,38,38,105,46,112,117,115,104,40,102,91,111,93,61,97,41,59,121,40,110,117,108,108,44,112,61,91,93,44,105,44,114,41,125,111,61,112,46,108,101,110,103,116,104,59,119,104,105,108,101,40,111,45,45,41,40,97,61,112,91,111,93,41,38,38,45,49,60,40,105,61,121,63,80,40,101,44,97,41,58,115,91,111,93,41,38,38,40,101,91,105,93,61,33,40,116,91,105,93,61,97,41,41,125,125,101,108,115,101,32,112,61,84,101,40,112,61,61,61,116,63,112,46,115,112,108,105,99,101,40,108,44,112,46,108,101,110,103,116,104,41,58,112,41,44,121,63,121,40,110,117,108,108,44,116,44,112,44,114,41,58,72,46,97,112,112,108,121,40,116,44,112,41,125,41,125,102,117,110,99,116,105,111,110,32,69,101,40,101,41,123,102,111,114,40,118,97,114,32,105,44,116,44,110,44,114,61,101,46,108,101,110,103,116,104,44,111,61,98,46,114,101,108,97,116,105,118,101,91,101,91,48,93,46,116,121,112,101,93,44,97,61,111,124,124,98,46,114,101,108,97,116,105,118,101,91,34,32,34,93,44,115,61,111,63,49,58,48,44,117,61,98,101,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,61,61,61,105,125,44,97,44,33,48,41,44,108,61,98,101,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,45,49,60,80,40,105,44,101,41,125,44,97,44,33,48,41,44,99,61,91,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,61,33,111,38,38,40,110,124,124,116,33,61,61,119,41,124,124,40,40,105,61,116,41,46,110,111,100,101,84,121,112,101,63,117,40,101,44,116,44,110,41,58,108,40,101,44,116,44,110,41,41,59,114,101,116,117,114,110,32,105,61,110,117,108,108,44,114,125,93,59,115,60,114,59,115,43,43,41,105,102,40,116,61,98,46,114,101,108,97,116,105,118,101,91,101,91,115,93,46,116,121,112,101,93,41,99,61,91,98,101,40,119,101,40,99,41,44,116,41,93,59,101,108,115,101,123,105,102,40,40,116,61,98,46,102,105,108,116,101,114,91,101,91,115,93,46,116,121,112,101,93,46,97,112,112,108,121,40,110,117,108,108,44,101,91,115,93,46,109,97,116,99,104,101,115,41,41,91,107,93,41,123,102,111,114,40,110,61,43,43,115,59,110,60,114,59,110,43,43,41,105,102,40,98,46,114,101,108,97,116,105,118,101,91,101,91,110,93,46,116,121,112,101,93,41,98,114,101,97,107,59,114,101,116,117,114,110,32,67,101,40,49,60,115,38,38,119,101,40,99,41,44,49,60,115,38,38,120,101,40,101,46,115,108,105,99,101,40,48,44,115,45,49,41,46,99,111,110,99,97,116,40,123,118,97,108,117,101,58,34,32,34,61,61,61,101,91,115,45,50,93,46,116,121,112,101,63,34,42,34,58,34,34,125,41,41,46,114,101,112,108,97,99,101,40,66,44,34,36,49,34,41,44,116,44,115,60,110,38,38,69,101,40,101,46,115,108,105,99,101,40,115,44,110,41,41,44,110,60,114,38,38,69,101,40,101,61,101,46,115,108,105,99,101,40,110,41,41,44,110,60,114,38,38,120,101,40,101,41,41,125,99,46,112,117,115,104,40,116,41,125,114,101,116,117,114,110,32,119,101,40,99,41,125,114,101,116,117,114,110,32,109,101,46,112,114,111,116,111,116,121,112,101,61,98,46,102,105,108,116,101,114,115,61,98,46,112,115,101,117,100,111,115,44,98,46,115,101,116,70,105,108,116,101,114,115,61,110,101,119,32,109,101,44,104,61,115,101,46,116,111,107,101,110,105,122,101,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,44,114,44,105,44,111,44,97,44,115,44,117,44,108,61,120,91,101,43,34,32,34,93,59,105,102,40,108,41,114,101,116,117,114,110,32,116,63,48,58,108,46,115,108,105,99,101,40,48,41,59,97,61,101,44,115,61,91,93,44,117,61,98,46,112,114,101,70,105,108,116,101,114,59,119,104,105,108,101,40,97,41,123,102,111,114,40,111,32,105,110,32,110,38,38,33,40,114,61,95,46,101,120,101,99,40,97,41,41,124,124,40,114,38,38,40,97,61,97,46,115,108,105,99,101,40,114,91,48,93,46,108,101,110,103,116,104,41,124,124,97,41,44,115,46,112,117,115,104,40,105,61,91,93,41,41,44,110,61,33,49,44,40,114,61,122,46,101,120,101,99,40,97,41,41,38,38,40,110,61,114,46,115,104,105,102,116,40,41,44,105,46,112,117,115,104,40,123,118,97,108,117,101,58,110,44,116,121,112,101,58,114,91,48,93,46,114,101,112,108,97,99,101,40,66,44,34,32,34,41,125,41,44,97,61,97,46,115,108,105,99,101,40,110,46,108,101,110,103,116,104,41,41,44,98,46,102,105,108,116,101,114,41,33,40,114,61,71,91,111,93,46,101,120,101,99,40,97,41,41,124,124,117,91,111,93,38,38,33,40,114,61,117,91,111,93,40,114,41,41,124,124,40,110,61,114,46,115,104,105,102,116,40,41,44,105,46,112,117,115,104,40,123,118,97,108,117,101,58,110,44,116,121,112,101,58,111,44,109,97,116,99,104,101,115,58,114,125,41,44,97,61,97,46,115,108,105,99,101,40,110,46,108,101,110,103,116,104,41,41,59,105,102,40,33,110,41,98,114,101,97,107,125,114,101,116,117,114,110,32,116,63,97,46,108,101,110,103,116,104,58,97,63,115,101,46,101,114,114,111,114,40,101,41,58,120,40,101,44,115,41,46,115,108,105,99,101,40,48,41,125,44,102,61,115,101,46,99,111,109,112,105,108,101,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,44,118,44,121,44,109,44,120,44,114,44,105,61,91,93,44,111,61,91,93,44,97,61,78,91,101,43,34,32,34,93,59,105,102,40,33,97,41,123,116,124,124,40,116,61,104,40,101,41,41,44,110,61,116,46,108,101,110,103,116,104,59,119,104,105,108,101,40,110,45,45,41,40,97,61,69,101,40,116,91,110,93,41,41,91,107,93,63,105,46,112,117,115,104,40,97,41,58,111,46,112,117,115,104,40,97,41,59,40,97,61,78,40,101,44,40,118,61,111,44,109,61,48,60,40,121,61,105,41,46,108,101,110,103,116,104,44,120,61,48,60,118,46,108,101,110,103,116,104,44,114,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,114,44,105,41,123,118,97,114,32,111,44,97,44,115,44,117,61,48,44,108,61,34,48,34,44,99,61,101,38,38,91,93,44,102,61,91,93,44,112,61,119,44,100,61,101,124,124,120,38,38,98,46,102,105,110,100,46,84,65,71,40,34,42,34,44,105,41,44,104,61,83,43,61,110,117,108,108,61,61,112,63,49,58,77,97,116,104,46,114,97,110,100,111,109,40,41,124,124,46,49,44,103,61,100,46,108,101,110,103,116,104,59,102,111,114,40,105,38,38,40,119,61,116,61,61,61,67,124,124,116,124,124,105,41,59,108,33,61,61,103,38,38,110,117,108,108,33,61,40,111,61,100,91,108,93,41,59,108,43,43,41,123,105,102,40,120,38,38,111,41,123,97,61,48,44,116,124,124,111,46,111,119,110,101,114,68,111,99,117,109,101,110,116,61,61,61,67,124,124,40,84,40,111,41,44,110,61,33,69,41,59,119,104,105,108,101,40,115,61,118,91,97,43,43,93,41,105,102,40,115,40,111,44,116,124,124,67,44,110,41,41,123,114,46,112,117,115,104,40,111,41,59,98,114,101,97,107,125,105,38,38,40,83,61,104,41,125,109,38,38,40,40,111,61,33,115,38,38,111,41,38,38,117,45,45,44,101,38,38,99,46,112,117,115,104,40,111,41,41,125,105,102,40,117,43,61,108,44,109,38,38,108,33,61,61,117,41,123,97,61,48,59,119,104,105,108,101,40,115,61,121,91,97,43,43,93,41,115,40,99,44,102,44,116,44,110,41,59,105,102,40,101,41,123,105,102,40,48,60,117,41,119,104,105,108,101,40,108,45,45,41,99,91,108,93,124,124,102,91,108,93,124,124,40,102,91,108,93,61,113,46,99,97,108,108,40,114,41,41,59,102,61,84,101,40,102,41,125,72,46,97,112,112,108,121,40,114,44,102,41,44,105,38,38,33,101,38,38,48,60,102,46,108,101,110,103,116,104,38,38,49,60,117,43,121,46,108,101,110,103,116,104,38,38,115,101,46,117,110,105,113,117,101,83,111,114,116,40,114,41,125,114,101,116,117,114,110,32,105,38,38,40,83,61,104,44,119,61,112,41,44,99,125,44,109,63,108,101,40,114,41,58,114,41,41,41,46,115,101,108,101,99,116,111,114,61,101,125,114,101,116,117,114,110,32,97,125,44,103,61,115,101,46,115,101,108,101,99,116,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,114,41,123,118,97,114,32,105,44,111,44,97,44,115,44,117,44,108,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,101,38,38,101,44,99,61,33,114,38,38,104,40,101,61,108,46,115,101,108,101,99,116,111,114,124,124,101,41,59,105,102,40,110,61,110,124,124,91,93,44,49,61,61,61,99,46,108,101,110,103,116,104,41,123,105,102,40,50,60,40,111,61,99,91,48,93,61,99,91,48,93,46,115,108,105,99,101,40,48,41,41,46,108,101,110,103,116,104,38,38,34,73,68,34,61,61,61,40,97,61,111,91,48,93,41,46,116,121,112,101,38,38,57,61,61,61,116,46,110,111,100,101,84,121,112,101,38,38,69,38,38,98,46,114,101,108,97,116,105,118,101,91,111,91,49,93,46,116,121,112,101,93,41,123,105,102,40,33,40,116,61,40,98,46,102,105,110,100,46,73,68,40,97,46,109,97,116,99,104,101,115,91,48,93,46,114,101,112,108,97,99,101,40,116,101,44,110,101,41,44,116,41,124,124,91,93,41,91,48,93,41,41,114,101,116,117,114,110,32,110,59,108,38,38,40,116,61,116,46,112,97,114,101,110,116,78,111,100,101,41,44,101,61,101,46,115,108,105,99,101,40,111,46,115,104,105,102,116,40,41,46,118,97,108,117,101,46,108,101,110,103,116,104,41,125,105,61,71,46,110,101,101,100,115,67,111,110,116,101,120,116,46,116,101,115,116,40,101,41,63,48,58,111,46,108,101,110,103,116,104,59,119,104,105,108,101,40,105,45,45,41,123,105,102,40,97,61,111,91,105,93,44,98,46,114,101,108,97,116,105,118,101,91,115,61,97,46,116,121,112,101,93,41,98,114,101,97,107,59,105,102,40,40,117,61,98,46,102,105,110,100,91,115,93,41,38,38,40,114,61,117,40,97,46,109,97,116,99,104,101,115,91,48,93,46,114,101,112,108,97,99,101,40,116,101,44,110,101,41,44,101,101,46,116,101,115,116,40,111,91,48,93,46,116,121,112,101,41,38,38,121,101,40,116,46,112,97,114,101,110,116,78,111,100,101,41,124,124,116,41,41,41,123,105,102,40,111,46,115,112,108,105,99,101,40,105,44,49,41,44,33,40,101,61,114,46,108,101,110,103,116,104,38,38,120,101,40,111,41,41,41,114,101,116,117,114,110,32,72,46,97,112,112,108,121,40,110,44,114,41,44,110,59,98,114,101,97,107,125,125,125,114,101,116,117,114,110,40,108,124,124,102,40,101,44,99,41,41,40,114,44,116,44,33,69,44,110,44,33,116,124,124,101,101,46,116,101,115,116,40,101,41,38,38,121,101,40,116,46,112,97,114,101,110,116,78,111,100,101,41,124,124,116,41,44,110,125,44,100,46,115,111,114,116,83,116,97,98,108,101,61,107,46,115,112,108,105,116,40,34,34,41,46,115,111,114,116,40,68,41,46,106,111,105,110,40,34,34,41,61,61,61,107,44,100,46,100,101,116,101,99,116,68,117,112,108,105,99,97,116,101,115,61,33,33,108,44,84,40,41,44,100,46,115,111,114,116,68,101,116,97,99,104,101,100,61,99,101,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,49,38,101,46,99,111,109,112,97,114,101,68,111,99,117,109,101,110,116,80,111,115,105,116,105,111,110,40,67,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,102,105,101,108,100,115,101,116,34,41,41,125,41,44,99,101,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,46,105,110,110,101,114,72,84,77,76,61,34,60,97,32,104,114,101,102,61,39,35,39,62,60,47,97,62,34,44,34,35,34,61,61,61,101,46,102,105,114,115,116,67,104,105,108,100,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,104,114,101,102,34,41,125,41,124,124,102,101,40,34,116,121,112,101,124,104,114,101,102,124,104,101,105,103,104,116,124,119,105,100,116,104,34,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,105,102,40,33,110,41,114,101,116,117,114,110,32,101,46,103,101,116,65,116,116,114,105,98,117,116,101,40,116,44,34,116,121,112,101,34,61,61,61,116,46,116,111,76,111,119,101,114,67,97,115,101,40,41,63,49,58,50,41,125,41,44,100,46,97,116,116,114,105,98,117,116,101,115,38,38,99,101,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,46,105,110,110,101,114,72,84,77,76,61,34,60,105,110,112,117,116,47,62,34,44,101,46,102,105,114,115,116,67,104,105,108,100,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,118,97,108,117,101,34,44,34,34,41,44,34,34,61,61,61,101,46,102,105,114,115,116,67,104,105,108,100,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,118,97,108,117,101,34,41,125,41,124,124,102,101,40,34,118,97,108,117,101,34,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,105,102,40,33,110,38,38,34,105,110,112,117,116,34,61,61,61,101,46,110,111,100,101,78,97,109,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,41,114,101,116,117,114,110,32,101,46,100,101,102,97,117,108,116,86,97,108,117,101,125,41,44,99,101,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,101,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,100,105,115,97,98,108,101,100,34,41,125,41,124,124,102,101,40,82,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,59,105,102,40,33,110,41,114,101,116,117,114,110,33,48,61,61,61,101,91,116,93,63,116,46,116,111,76,111,119,101,114,67,97,115,101,40,41,58,40,114,61,101,46,103,101,116,65,116,116,114,105,98,117,116,101,78,111,100,101,40,116,41,41,38,38,114,46,115,112,101,99,105,102,105,101,100,63,114,46,118,97,108,117,101,58,110,117,108,108,125,41,44,115,101,125,40,67,41,59,107,46,102,105,110,100,61,104,44,107,46,101,120,112,114,61,104,46,115,101,108,101,99,116,111,114,115,44,107,46,101,120,112,114,91,34,58,34,93,61,107,46,101,120,112,114,46,112,115,101,117,100,111,115,44,107,46,117,110,105,113,117,101,83,111,114,116,61,107,46,117,110,105,113,117,101,61,104,46,117,110,105,113,117,101,83,111,114,116,44,107,46,116,101,120,116,61,104,46,103,101,116,84,101,120,116,44,107,46,105,115,88,77,76,68,111,99,61,104,46,105,115,88,77,76,44,107,46,99,111,110,116,97,105,110,115,61,104,46,99,111,110,116,97,105,110,115,44,107,46,101,115,99,97,112,101,83,101,108,101,99,116,111,114,61,104,46,101,115,99,97,112,101,59,118,97,114,32,84,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,61,91,93,44,105,61,118,111,105,100,32,48,33,61,61,110,59,119,104,105,108,101,40,40,101,61,101,91,116,93,41,38,38,57,33,61,61,101,46,110,111,100,101,84,121,112,101,41,105,102,40,49,61,61,61,101,46,110,111,100,101,84,121,112,101,41,123,105,102,40,105,38,38,107,40,101,41,46,105,115,40,110,41,41,98,114,101,97,107,59,114,46,112,117,115,104,40,101,41,125,114,101,116,117,114,110,32,114,125,44,83,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,102,111,114,40,118,97,114,32,110,61,91,93,59,101,59,101,61,101,46,110,101,120,116,83,105,98,108,105,110,103,41,49,61,61,61,101,46,110,111,100,101,84,121,112,101,38,38,101,33,61,61,116,38,38,110,46,112,117,115,104,40,101,41,59,114,101,116,117,114,110,32,110,125,44,78,61,107,46,101,120,112,114,46,109,97,116,99,104,46,110,101,101,100,115,67,111,110,116,101,120,116,59,102,117,110,99,116,105,111,110,32,65,40,101,44,116,41,123,114,101,116,117,114,110,32,101,46,110,111,100,101,78,97,109,101,38,38,101,46,110,111,100,101,78,97,109,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,61,61,61,116,46,116,111,76,111,119,101,114,67,97,115,101,40,41,125,118,97,114,32,68,61,47,94,60,40,91,97,45,122,93,91,94,92,47,92,48,62,58,92,120,50,48,92,116,92,114,92,110,92,102,93,42,41,91,92,120,50,48,92,116,92,114,92,110,92,102,93,42,92,47,63,62,40,63,58,60,92,47,92,49,62,124,41,36,47,105,59,102,117,110,99,116,105,111,110,32,106,40,101,44,110,44,114,41,123,114,101,116,117,114,110,32,109,40,110,41,63,107,46,103,114,101,112,40,101,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,33,33,110,46,99,97,108,108,40,101,44,116,44,101,41,33,61,61,114,125,41,58,110,46,110,111,100,101,84,121,112,101,63,107,46,103,114,101,112,40,101,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,61,61,61,110,33,61,61,114,125,41,58,34,115,116,114,105,110,103,34,33,61,116,121,112,101,111,102,32,110,63,107,46,103,114,101,112,40,101,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,45,49,60,105,46,99,97,108,108,40,110,44,101,41,33,61,61,114,125,41,58,107,46,102,105,108,116,101,114,40,110,44,101,44,114,41,125,107,46,102,105,108,116,101,114,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,61,116,91,48,93,59,114,101,116,117,114,110,32,110,38,38,40,101,61,34,58,110,111,116,40,34,43,101,43,34,41,34,41,44,49,61,61,61,116,46,108,101,110,103,116,104,38,38,49,61,61,61,114,46,110,111,100,101,84,121,112,101,63,107,46,102,105,110,100,46,109,97,116,99,104,101,115,83,101,108,101,99,116,111,114,40,114,44,101,41,63,91,114,93,58,91,93,58,107,46,102,105,110,100,46,109,97,116,99,104,101,115,40,101,44,107,46,103,114,101,112,40,116,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,49,61,61,61,101,46,110,111,100,101,84,121,112,101,125,41,41,125,44,107,46,102,110,46,101,120,116,101,110,100,40,123,102,105,110,100,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,44,110,44,114,61,116,104,105,115,46,108,101,110,103,116,104,44,105,61,116,104,105,115,59,105,102,40,34,115,116,114,105,110,103,34,33,61,116,121,112,101,111,102,32,101,41,114,101,116,117,114,110,32,116,104,105,115,46,112,117,115,104,83,116,97,99,107,40,107,40,101,41,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,116,61,48,59,116,60,114,59,116,43,43,41,105,102,40,107,46,99,111,110,116,97,105,110,115,40,105,91,116,93,44,116,104,105,115,41,41,114,101,116,117,114,110,33,48,125,41,41,59,102,111,114,40,110,61,116,104,105,115,46,112,117,115,104,83,116,97,99,107,40,91,93,41,44,116,61,48,59,116,60,114,59,116,43,43,41,107,46,102,105,110,100,40,101,44,105,91,116,93,44,110,41,59,114,101,116,117,114,110,32,49,60,114,63,107,46,117,110,105,113,117,101,83,111,114,116,40,110,41,58,110,125,44,102,105,108,116,101,114,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,112,117,115,104,83,116,97,99,107,40,106,40,116,104,105,115,44,101,124,124,91,93,44,33,49,41,41,125,44,110,111,116,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,112,117,115,104,83,116,97,99,107,40,106,40,116,104,105,115,44,101,124,124,91,93,44,33,48,41,41,125,44,105,115,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,33,33,106,40,116,104,105,115,44,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,101,38,38,78,46,116,101,115,116,40,101,41,63,107,40,101,41,58,101,124,124,91,93,44,33,49,41,46,108,101,110,103,116,104,125,125,41,59,118,97,114,32,113,44,76,61,47,94,40,63,58,92,115,42,40,60,91,92,119,92,87,93,43,62,41,91,94,62,93,42,124,35,40,91,92,119,45,93,43,41,41,36,47,59,40,107,46,102,110,46,105,110,105,116,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,44,105,59,105,102,40,33,101,41,114,101,116,117,114,110,32,116,104,105,115,59,105,102,40,110,61,110,124,124,113,44,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,101,41,123,105,102,40,33,40,114,61,34,60,34,61,61,61,101,91,48,93,38,38,34,62,34,61,61,61,101,91,101,46,108,101,110,103,116,104,45,49,93,38,38,51,60,61,101,46,108,101,110,103,116,104,63,91,110,117,108,108,44,101,44,110,117,108,108,93,58,76,46,101,120,101,99,40,101,41,41,124,124,33,114,91,49,93,38,38,116,41,114,101,116,117,114,110,33,116,124,124,116,46,106,113,117,101,114,121,63,40,116,124,124,110,41,46,102,105,110,100,40,101,41,58,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,40,116,41,46,102,105,110,100,40,101,41,59,105,102,40,114,91,49,93,41,123,105,102,40,116,61,116,32,105,110,115,116,97,110,99,101,111,102,32,107,63,116,91,48,93,58,116,44,107,46,109,101,114,103,101,40,116,104,105,115,44,107,46,112,97,114,115,101,72,84,77,76,40,114,91,49,93,44,116,38,38,116,46,110,111,100,101,84,121,112,101,63,116,46,111,119,110,101,114,68,111,99,117,109,101,110,116,124,124,116,58,69,44,33,48,41,41,44,68,46,116,101,115,116,40,114,91,49,93,41,38,38,107,46,105,115,80,108,97,105,110,79,98,106,101,99,116,40,116,41,41,102,111,114,40,114,32,105,110,32,116,41,109,40,116,104,105,115,91,114,93,41,63,116,104,105,115,91,114,93,40,116,91,114,93,41,58,116,104,105,115,46,97,116,116,114,40,114,44,116,91,114,93,41,59,114,101,116,117,114,110,32,116,104,105,115,125,114,101,116,117,114,110,40,105,61,69,46,103,101,116,69,108,101,109,101,110,116,66,121,73,100,40,114,91,50,93,41,41,38,38,40,116,104,105,115,91,48,93,61,105,44,116,104,105,115,46,108,101,110,103,116,104,61,49,41,44,116,104,105,115,125,114,101,116,117,114,110,32,101,46,110,111,100,101,84,121,112,101,63,40,116,104,105,115,91,48,93,61,101,44,116,104,105,115,46,108,101,110,103,116,104,61,49,44,116,104,105,115,41,58,109,40,101,41,63,118,111,105,100,32,48,33,61,61,110,46,114,101,97,100,121,63,110,46,114,101,97,100,121,40,101,41,58,101,40,107,41,58,107,46,109,97,107,101,65,114,114,97,121,40,101,44,116,104,105,115,41,125,41,46,112,114,111,116,111,116,121,112,101,61,107,46,102,110,44,113,61,107,40,69,41,59,118,97,114,32,72,61,47,94,40,63,58,112,97,114,101,110,116,115,124,112,114,101,118,40,63,58,85,110,116,105,108,124,65,108,108,41,41,47,44,79,61,123,99,104,105,108,100,114,101,110,58,33,48,44,99,111,110,116,101,110,116,115,58,33,48,44,110,101,120,116,58,33,48,44,112,114,101,118,58,33,48,125,59,102,117,110,99,116,105,111,110,32,80,40,101,44,116,41,123,119,104,105,108,101,40,40,101,61,101,91,116,93,41,38,38,49,33,61,61,101,46,110,111,100,101,84,121,112,101,41,59,114,101,116,117,114,110,32,101,125,107,46,102,110,46,101,120,116,101,110,100,40,123,104,97,115,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,107,40,101,44,116,104,105,115,41,44,110,61,116,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,116,104,105,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,118,97,114,32,101,61,48,59,101,60,110,59,101,43,43,41,105,102,40,107,46,99,111,110,116,97,105,110,115,40,116,104,105,115,44,116,91,101,93,41,41,114,101,116,117,114,110,33,48,125,41,125,44,99,108,111,115,101,115,116,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,44,114,61,48,44,105,61,116,104,105,115,46,108,101,110,103,116,104,44,111,61,91,93,44,97,61,34,115,116,114,105,110,103,34,33,61,116,121,112,101,111,102,32,101,38,38,107,40,101,41,59,105,102,40,33,78,46,116,101,115,116,40,101,41,41,102,111,114,40,59,114,60,105,59,114,43,43,41,102,111,114,40,110,61,116,104,105,115,91,114,93,59,110,38,38,110,33,61,61,116,59,110,61,110,46,112,97,114,101,110,116,78,111,100,101,41,105,102,40,110,46,110,111,100,101,84,121,112,101,60,49,49,38,38,40,97,63,45,49,60,97,46,105,110,100,101,120,40,110,41,58,49,61,61,61,110,46,110,111,100,101,84,121,112,101,38,38,107,46,102,105,110,100,46,109,97,116,99,104,101,115,83,101,108,101,99,116,111,114,40,110,44,101,41,41,41,123,111,46,112,117,115,104,40,110,41,59,98,114,101,97,107,125,114,101,116,117,114,110,32,116,104,105,115,46,112,117,115,104,83,116,97,99,107,40,49,60,111,46,108,101,110,103,116,104,63,107,46,117,110,105,113,117,101,83,111,114,116,40,111,41,58,111,41,125,44,105,110,100,101,120,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,63,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,101,63,105,46,99,97,108,108,40,107,40,101,41,44,116,104,105,115,91,48,93,41,58,105,46,99,97,108,108,40,116,104,105,115,44,101,46,106,113,117,101,114,121,63,101,91,48,93,58,101,41,58,116,104,105,115,91,48,93,38,38,116,104,105,115,91,48,93,46,112,97,114,101,110,116,78,111,100,101,63,116,104,105,115,46,102,105,114,115,116,40,41,46,112,114,101,118,65,108,108,40,41,46,108,101,110,103,116,104,58,45,49,125,44,97,100,100,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,116,104,105,115,46,112,117,115,104,83,116,97,99,107,40,107,46,117,110,105,113,117,101,83,111,114,116,40,107,46,109,101,114,103,101,40,116,104,105,115,46,103,101,116,40,41,44,107,40,101,44,116,41,41,41,41,125,44,97,100,100,66,97,99,107,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,97,100,100,40,110,117,108,108,61,61,101,63,116,104,105,115,46,112,114,101,118,79,98,106,101,99,116,58,116,104,105,115,46,112,114,101,118,79,98,106,101,99,116,46,102,105,108,116,101,114,40,101,41,41,125,125,41,44,107,46,101,97,99,104,40,123,112,97,114,101,110,116,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,46,112,97,114,101,110,116,78,111,100,101,59,114,101,116,117,114,110,32,116,38,38,49,49,33,61,61,116,46,110,111,100,101,84,121,112,101,63,116,58,110,117,108,108,125,44,112,97,114,101,110,116,115,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,84,40,101,44,34,112,97,114,101,110,116,78,111,100,101,34,41,125,44,112,97,114,101,110,116,115,85,110,116,105,108,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,114,101,116,117,114,110,32,84,40,101,44,34,112,97,114,101,110,116,78,111,100,101,34,44,110,41,125,44,110,101,120,116,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,80,40,101,44,34,110,101,120,116,83,105,98,108,105,110,103,34,41,125,44,112,114,101,118,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,80,40,101,44,34,112,114,101,118,105,111,117,115,83,105,98,108,105,110,103,34,41,125,44,110,101,120,116,65,108,108,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,84,40,101,44,34,110,101,120,116,83,105,98,108,105,110,103,34,41,125,44,112,114,101,118,65,108,108,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,84,40,101,44,34,112,114,101,118,105,111,117,115,83,105,98,108,105,110,103,34,41,125,44,110,101,120,116,85,110,116,105,108,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,114,101,116,117,114,110,32,84,40,101,44,34,110,101,120,116,83,105,98,108,105,110,103,34,44,110,41,125,44,112,114,101,118,85,110,116,105,108,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,114,101,116,117,114,110,32,84,40,101,44,34,112,114,101,118,105,111,117,115,83,105,98,108,105,110,103,34,44,110,41,125,44,115,105,98,108,105,110,103,115,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,83,40,40,101,46,112,97,114,101,110,116,78,111,100,101,124,124,123,125,41,46,102,105,114,115,116,67,104,105,108,100,44,101,41,125,44,99,104,105,108,100,114,101,110,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,83,40,101,46,102,105,114,115,116,67,104,105,108,100,41,125,44,99,111,110,116,101,110,116,115,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,101,46,99,111,110,116,101,110,116,68,111,99,117,109,101,110,116,63,101,46,99,111,110,116,101,110,116,68,111,99,117,109,101,110,116,58,40,65,40,101,44,34,116,101,109,112,108,97,116,101,34,41,38,38,40,101,61,101,46,99,111,110,116,101,110,116,124,124,101,41,44,107,46,109,101,114,103,101,40,91,93,44,101,46,99,104,105,108,100,78,111,100,101,115,41,41,125,125,44,102,117,110,99,116,105,111,110,40,114,44,105,41,123,107,46,102,110,91,114,93,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,61,107,46,109,97,112,40,116,104,105,115,44,105,44,101,41,59,114,101,116,117,114,110,34,85,110,116,105,108,34,33,61,61,114,46,115,108,105,99,101,40,45,53,41,38,38,40,116,61,101,41,44,116,38,38,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,116,38,38,40,110,61,107,46,102,105,108,116,101,114,40,116,44,110,41,41,44,49,60,116,104,105,115,46,108,101,110,103,116,104,38,38,40,79,91,114,93,124,124,107,46,117,110,105,113,117,101,83,111,114,116,40,110,41,44,72,46,116,101,115,116,40,114,41,38,38,110,46,114,101,118,101,114,115,101,40,41,41,44,116,104,105,115,46,112,117,115,104,83,116,97,99,107,40,110,41,125,125,41,59,118,97,114,32,82,61,47,91,94,92,120,50,48,92,116,92,114,92,110,92,102,93,43,47,103,59,102,117,110,99,116,105,111,110,32,77,40,101,41,123,114,101,116,117,114,110,32,101,125,102,117,110,99,116,105,111,110,32,73,40,101,41,123,116,104,114,111,119,32,101,125,102,117,110,99,116,105,111,110,32,87,40,101,44,116,44,110,44,114,41,123,118,97,114,32,105,59,116,114,121,123,101,38,38,109,40,105,61,101,46,112,114,111,109,105,115,101,41,63,105,46,99,97,108,108,40,101,41,46,100,111,110,101,40,116,41,46,102,97,105,108,40,110,41,58,101,38,38,109,40,105,61,101,46,116,104,101,110,41,63,105,46,99,97,108,108,40,101,44,116,44,110,41,58,116,46,97,112,112,108,121,40,118,111,105,100,32,48,44,91,101,93,46,115,108,105,99,101,40,114,41,41,125,99,97,116,99,104,40,101,41,123,110,46,97,112,112,108,121,40,118,111,105,100,32,48,44,91,101,93,41,125,125,107,46,67,97,108,108,98,97,99,107,115,61,102,117,110,99,116,105,111,110,40,114,41,123,118,97,114,32,101,44,110,59,114,61,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,114,63,40,101,61,114,44,110,61,123,125,44,107,46,101,97,99,104,40,101,46,109,97,116,99,104,40,82,41,124,124,91,93,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,110,91,116,93,61,33,48,125,41,44,110,41,58,107,46,101,120,116,101,110,100,40,123,125,44,114,41,59,118,97,114,32,105,44,116,44,111,44,97,44,115,61,91,93,44,117,61,91,93,44,108,61,45,49,44,99,61,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,97,61,97,124,124,114,46,111,110,99,101,44,111,61,105,61,33,48,59,117,46,108,101,110,103,116,104,59,108,61,45,49,41,123,116,61,117,46,115,104,105,102,116,40,41,59,119,104,105,108,101,40,43,43,108,60,115,46,108,101,110,103,116,104,41,33,49,61,61,61,115,91,108,93,46,97,112,112,108,121,40,116,91,48,93,44,116,91,49,93,41,38,38,114,46,115,116,111,112,79,110,70,97,108,115,101,38,38,40,108,61,115,46,108,101,110,103,116,104,44,116,61,33,49,41,125,114,46,109,101,109,111,114,121,124,124,40,116,61,33,49,41,44,105,61,33,49,44,97,38,38,40,115,61,116,63,91,93,58,34,34,41,125,44,102,61,123,97,100,100,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,115,38,38,40,116,38,38,33,105,38,38,40,108,61,115,46,108,101,110,103,116,104,45,49,44,117,46,112,117,115,104,40,116,41,41,44,102,117,110,99,116,105,111,110,32,110,40,101,41,123,107,46,101,97,99,104,40,101,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,109,40,116,41,63,114,46,117,110,105,113,117,101,38,38,102,46,104,97,115,40,116,41,124,124,115,46,112,117,115,104,40,116,41,58,116,38,38,116,46,108,101,110,103,116,104,38,38,34,115,116,114,105,110,103,34,33,61,61,119,40,116,41,38,38,110,40,116,41,125,41,125,40,97,114,103,117,109,101,110,116,115,41,44,116,38,38,33,105,38,38,99,40,41,41,44,116,104,105,115,125,44,114,101,109,111,118,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,107,46,101,97,99,104,40,97,114,103,117,109,101,110,116,115,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,59,119,104,105,108,101,40,45,49,60,40,110,61,107,46,105,110,65,114,114,97,121,40,116,44,115,44,110,41,41,41,115,46,115,112,108,105,99,101,40,110,44,49,41,44,110,60,61,108,38,38,108,45,45,125,41,44,116,104,105,115,125,44,104,97,115,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,63,45,49,60,107,46,105,110,65,114,114,97,121,40,101,44,115,41,58,48,60,115,46,108,101,110,103,116,104,125,44,101,109,112,116,121,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,115,38,38,40,115,61,91,93,41,44,116,104,105,115,125,44,100,105,115,97,98,108,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,97,61,117,61,91,93,44,115,61,116,61,34,34,44,116,104,105,115,125,44,100,105,115,97,98,108,101,100,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,33,115,125,44,108,111,99,107,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,97,61,117,61,91,93,44,116,124,124,105,124,124,40,115,61,116,61,34,34,41,44,116,104,105,115,125,44,108,111,99,107,101,100,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,33,33,97,125,44,102,105,114,101,87,105,116,104,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,97,124,124,40,116,61,91,101,44,40,116,61,116,124,124,91,93,41,46,115,108,105,99,101,63,116,46,115,108,105,99,101,40,41,58,116,93,44,117,46,112,117,115,104,40,116,41,44,105,124,124,99,40,41,41,44,116,104,105,115,125,44,102,105,114,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,102,46,102,105,114,101,87,105,116,104,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,44,116,104,105,115,125,44,102,105,114,101,100,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,33,33,111,125,125,59,114,101,116,117,114,110,32,102,125,44,107,46,101,120,116,101,110,100,40,123,68,101,102,101,114,114,101,100,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,111,61,91,91,34,110,111,116,105,102,121,34,44,34,112,114,111,103,114,101,115,115,34,44,107,46,67,97,108,108,98,97,99,107,115,40,34,109,101,109,111,114,121,34,41,44,107,46,67,97,108,108,98,97,99,107,115,40,34,109,101,109,111,114,121,34,41,44,50,93,44,91,34,114,101,115,111,108,118,101,34,44,34,100,111,110,101,34,44,107,46,67,97,108,108,98,97,99,107,115,40,34,111,110,99,101,32,109,101,109,111,114,121,34,41,44,107,46,67,97,108,108,98,97,99,107,115,40,34,111,110,99,101,32,109,101,109,111,114,121,34,41,44,48,44,34,114,101,115,111,108,118,101,100,34,93,44,91,34,114,101,106,101,99,116,34,44,34,102,97,105,108,34,44,107,46,67,97,108,108,98,97,99,107,115,40,34,111,110,99,101,32,109,101,109,111,114,121,34,41,44,107,46,67,97,108,108,98,97,99,107,115,40,34,111,110,99,101,32,109,101,109,111,114,121,34,41,44,49,44,34,114,101,106,101,99,116,101,100,34,93,93,44,105,61,34,112,101,110,100,105,110,103,34,44,97,61,123,115,116,97,116,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,105,125,44,97,108,119,97,121,115,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,115,46,100,111,110,101,40,97,114,103,117,109,101,110,116,115,41,46,102,97,105,108,40,97,114,103,117,109,101,110,116,115,41,44,116,104,105,115,125,44,34,99,97,116,99,104,34,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,97,46,116,104,101,110,40,110,117,108,108,44,101,41,125,44,112,105,112,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,105,61,97,114,103,117,109,101,110,116,115,59,114,101,116,117,114,110,32,107,46,68,101,102,101,114,114,101,100,40,102,117,110,99,116,105,111,110,40,114,41,123,107,46,101,97,99,104,40,111,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,61,109,40,105,91,116,91,52,93,93,41,38,38,105,91,116,91,52,93,93,59,115,91,116,91,49,93,93,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,110,38,38,110,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,59,101,38,38,109,40,101,46,112,114,111,109,105,115,101,41,63,101,46,112,114,111,109,105,115,101,40,41,46,112,114,111,103,114,101,115,115,40,114,46,110,111,116,105,102,121,41,46,100,111,110,101,40,114,46,114,101,115,111,108,118,101,41,46,102,97,105,108,40,114,46,114,101,106,101,99,116,41,58,114,91,116,91,48,93,43,34,87,105,116,104,34,93,40,116,104,105,115,44,110,63,91,101,93,58,97,114,103,117,109,101,110,116,115,41,125,41,125,41,44,105,61,110,117,108,108,125,41,46,112,114,111,109,105,115,101,40,41,125,44,116,104,101,110,58,102,117,110,99,116,105,111,110,40,116,44,110,44,114,41,123,118,97,114,32,117,61,48,59,102,117,110,99,116,105,111,110,32,108,40,105,44,111,44,97,44,115,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,110,61,116,104,105,115,44,114,61,97,114,103,117,109,101,110,116,115,44,101,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,44,116,59,105,102,40,33,40,105,60,117,41,41,123,105,102,40,40,101,61,97,46,97,112,112,108,121,40,110,44,114,41,41,61,61,61,111,46,112,114,111,109,105,115,101,40,41,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,84,104,101,110,97,98,108,101,32,115,101,108,102,45,114,101,115,111,108,117,116,105,111,110,34,41,59,116,61,101,38,38,40,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,101,124,124,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,101,41,38,38,101,46,116,104,101,110,44,109,40,116,41,63,115,63,116,46,99,97,108,108,40,101,44,108,40,117,44,111,44,77,44,115,41,44,108,40,117,44,111,44,73,44,115,41,41,58,40,117,43,43,44,116,46,99,97,108,108,40,101,44,108,40,117,44,111,44,77,44,115,41,44,108,40,117,44,111,44,73,44,115,41,44,108,40,117,44,111,44,77,44,111,46,110,111,116,105,102,121,87,105,116,104,41,41,41,58,40,97,33,61,61,77,38,38,40,110,61,118,111,105,100,32,48,44,114,61,91,101,93,41,44,40,115,124,124,111,46,114,101,115,111,108,118,101,87,105,116,104,41,40,110,44,114,41,41,125,125,44,116,61,115,63,101,58,102,117,110,99,116,105,111,110,40,41,123,116,114,121,123,101,40,41,125,99,97,116,99,104,40,101,41,123,107,46,68,101,102,101,114,114,101,100,46,101,120,99,101,112,116,105,111,110,72,111,111,107,38,38,107,46,68,101,102,101,114,114,101,100,46,101,120,99,101,112,116,105,111,110,72,111,111,107,40,101,44,116,46,115,116,97,99,107,84,114,97,99,101,41,44,117,60,61,105,43,49,38,38,40,97,33,61,61,73,38,38,40,110,61,118,111,105,100,32,48,44,114,61,91,101,93,41,44,111,46,114,101,106,101,99,116,87,105,116,104,40,110,44,114,41,41,125,125,59,105,63,116,40,41,58,40,107,46,68,101,102,101,114,114,101,100,46,103,101,116,83,116,97,99,107,72,111,111,107,38,38,40,116,46,115,116,97,99,107,84,114,97,99,101,61,107,46,68,101,102,101,114,114,101,100,46,103,101,116,83,116,97,99,107,72,111,111,107,40,41,41,44,67,46,115,101,116,84,105,109,101,111,117,116,40,116,41,41,125,125,114,101,116,117,114,110,32,107,46,68,101,102,101,114,114,101,100,40,102,117,110,99,116,105,111,110,40,101,41,123,111,91,48,93,91,51,93,46,97,100,100,40,108,40,48,44,101,44,109,40,114,41,63,114,58,77,44,101,46,110,111,116,105,102,121,87,105,116,104,41,41,44,111,91,49,93,91,51,93,46,97,100,100,40,108,40,48,44,101,44,109,40,116,41,63,116,58,77,41,41,44,111,91,50,93,91,51,93,46,97,100,100,40,108,40,48,44,101,44,109,40,110,41,63,110,58,73,41,41,125,41,46,112,114,111,109,105,115,101,40,41,125,44,112,114,111,109,105,115,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,110,117,108,108,33,61,101,63,107,46,101,120,116,101,110,100,40,101,44,97,41,58,97,125,125,44,115,61,123,125,59,114,101,116,117,114,110,32,107,46,101,97,99,104,40,111,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,61,116,91,50,93,44,114,61,116,91,53,93,59,97,91,116,91,49,93,93,61,110,46,97,100,100,44,114,38,38,110,46,97,100,100,40,102,117,110,99,116,105,111,110,40,41,123,105,61,114,125,44,111,91,51,45,101,93,91,50,93,46,100,105,115,97,98,108,101,44,111,91,51,45,101,93,91,51,93,46,100,105,115,97,98,108,101,44,111,91,48,93,91,50,93,46,108,111,99,107,44,111,91,48,93,91,51,93,46,108,111,99,107,41,44,110,46,97,100,100,40,116,91,51,93,46,102,105,114,101,41,44,115,91,116,91,48,93,93,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,115,91,116,91,48,93,43,34,87,105,116,104,34,93,40,116,104,105,115,61,61,61,115,63,118,111,105,100,32,48,58,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,44,116,104,105,115,125,44,115,91,116,91,48,93,43,34,87,105,116,104,34,93,61,110,46,102,105,114,101,87,105,116,104,125,41,44,97,46,112,114,111,109,105,115,101,40,115,41,44,101,38,38,101,46,99,97,108,108,40,115,44,115,41,44,115,125,44,119,104,101,110,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,110,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,44,116,61,110,44,114,61,65,114,114,97,121,40,116,41,44,105,61,115,46,99,97,108,108,40,97,114,103,117,109,101,110,116,115,41,44,111,61,107,46,68,101,102,101,114,114,101,100,40,41,44,97,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,101,41,123,114,91,116,93,61,116,104,105,115,44,105,91,116,93,61,49,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,115,46,99,97,108,108,40,97,114,103,117,109,101,110,116,115,41,58,101,44,45,45,110,124,124,111,46,114,101,115,111,108,118,101,87,105,116,104,40,114,44,105,41,125,125,59,105,102,40,110,60,61,49,38,38,40,87,40,101,44,111,46,100,111,110,101,40,97,40,116,41,41,46,114,101,115,111,108,118,101,44,111,46,114,101,106,101,99,116,44,33,110,41,44,34,112,101,110,100,105,110,103,34,61,61,61,111,46,115,116,97,116,101,40,41,124,124,109,40,105,91,116,93,38,38,105,91,116,93,46,116,104,101,110,41,41,41,114,101,116,117,114,110,32,111,46,116,104,101,110,40,41,59,119,104,105,108,101,40,116,45,45,41,87,40,105,91,116,93,44,97,40,116,41,44,111,46,114,101,106,101,99,116,41,59,114,101,116,117,114,110,32,111,46,112,114,111,109,105,115,101,40,41,125,125,41,59,118,97,114,32,36,61,47,94,40,69,118,97,108,124,73,110,116,101,114,110,97,108,124,82,97,110,103,101,124,82,101,102,101,114,101,110,99,101,124,83,121,110,116,97,120,124,84,121,112,101,124,85,82,73,41,69,114,114,111,114,36,47,59,107,46,68,101,102,101,114,114,101,100,46,101,120,99,101,112,116,105,111,110,72,111,111,107,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,67,46,99,111,110,115,111,108,101,38,38,67,46,99,111,110,115,111,108,101,46,119,97,114,110,38,38,101,38,38,36,46,116,101,115,116,40,101,46,110,97,109,101,41,38,38,67,46,99,111,110,115,111,108,101,46,119,97,114,110,40,34,106,81,117,101,114,121,46,68,101,102,101,114,114,101,100,32,101,120,99,101,112,116,105,111,110,58,32,34,43,101,46,109,101,115,115,97,103,101,44,101,46,115,116,97,99,107,44,116,41,125,44,107,46,114,101,97,100,121,69,120,99,101,112,116,105,111,110,61,102,117,110,99,116,105,111,110,40,101,41,123,67,46,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,40,41,123,116,104,114,111,119,32,101,125,41,125,59,118,97,114,32,70,61,107,46,68,101,102,101,114,114,101,100,40,41,59,102,117,110,99,116,105,111,110,32,66,40,41,123,69,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,68,79,77,67,111,110,116,101,110,116,76,111,97,100,101,100,34,44,66,41,44,67,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,108,111,97,100,34,44,66,41,44,107,46,114,101,97,100,121,40,41,125,107,46,102,110,46,114,101,97,100,121,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,70,46,116,104,101,110,40,101,41,91,34,99,97,116,99,104,34,93,40,102,117,110,99,116,105,111,110,40,101,41,123,107,46,114,101,97,100,121,69,120,99,101,112,116,105,111,110,40,101,41,125,41,44,116,104,105,115,125,44,107,46,101,120,116,101,110,100,40,123,105,115,82,101,97,100,121,58,33,49,44,114,101,97,100,121,87,97,105,116,58,49,44,114,101,97,100,121,58,102,117,110,99,116,105,111,110,40,101,41,123,40,33,48,61,61,61,101,63,45,45,107,46,114,101,97,100,121,87,97,105,116,58,107,46,105,115,82,101,97,100,121,41,124,124,40,107,46,105,115,82,101,97,100,121,61,33,48,41,33,61,61,101,38,38,48,60,45,45,107,46,114,101,97,100,121,87,97,105,116,124,124,70,46,114,101,115,111,108,118,101,87,105,116,104,40,69,44,91,107,93,41,125,125,41,44,107,46,114,101,97,100,121,46,116,104,101,110,61,70,46,116,104,101,110,44,34,99,111,109,112,108,101,116,101,34,61,61,61,69,46,114,101,97,100,121,83,116,97,116,101,124,124,34,108,111,97,100,105,110,103,34,33,61,61,69,46,114,101,97,100,121,83,116,97,116,101,38,38,33,69,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,46,100,111,83,99,114,111,108,108,63,67,46,115,101,116,84,105,109,101,111,117,116,40,107,46,114,101,97,100,121,41,58,40,69,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,68,79,77,67,111,110,116,101,110,116,76,111,97,100,101,100,34,44,66,41,44,67,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,108,111,97,100,34,44,66,41,41,59,118,97,114,32,95,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,114,44,105,44,111,44,97,41,123,118,97,114,32,115,61,48,44,117,61,101,46,108,101,110,103,116,104,44,108,61,110,117,108,108,61,61,110,59,105,102,40,34,111,98,106,101,99,116,34,61,61,61,119,40,110,41,41,102,111,114,40,115,32,105,110,32,105,61,33,48,44,110,41,95,40,101,44,116,44,115,44,110,91,115,93,44,33,48,44,111,44,97,41,59,101,108,115,101,32,105,102,40,118,111,105,100,32,48,33,61,61,114,38,38,40,105,61,33,48,44,109,40,114,41,124,124,40,97,61,33,48,41,44,108,38,38,40,97,63,40,116,46,99,97,108,108,40,101,44,114,41,44,116,61,110,117,108,108,41,58,40,108,61,116,44,116,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,114,101,116,117,114,110,32,108,46,99,97,108,108,40,107,40,101,41,44,110,41,125,41,41,44,116,41,41,102,111,114,40,59,115,60,117,59,115,43,43,41,116,40,101,91,115,93,44,110,44,97,63,114,58,114,46,99,97,108,108,40,101,91,115,93,44,115,44,116,40,101,91,115,93,44,110,41,41,41,59,114,101,116,117,114,110,32,105,63,101,58,108,63,116,46,99,97,108,108,40,101,41,58,117,63,116,40,101,91,48,93,44,110,41,58,111,125,44,122,61,47,94,45,109,115,45,47,44,85,61,47,45,40,91,97,45,122,93,41,47,103,59,102,117,110,99,116,105,111,110,32,88,40,101,44,116,41,123,114,101,116,117,114,110,32,116,46,116,111,85,112,112,101,114,67,97,115,101,40,41,125,102,117,110,99,116,105,111,110,32,86,40,101,41,123,114,101,116,117,114,110,32,101,46,114,101,112,108,97,99,101,40,122,44,34,109,115,45,34,41,46,114,101,112,108,97,99,101,40,85,44,88,41,125,118,97,114,32,71,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,49,61,61,61,101,46,110,111,100,101,84,121,112,101,124,124,57,61,61,61,101,46,110,111,100,101,84,121,112,101,124,124,33,43,101,46,110,111,100,101,84,121,112,101,125,59,102,117,110,99,116,105,111,110,32,89,40,41,123,116,104,105,115,46,101,120,112,97,110,100,111,61,107,46,101,120,112,97,110,100,111,43,89,46,117,105,100,43,43,125,89,46,117,105,100,61,49,44,89,46,112,114,111,116,111,116,121,112,101,61,123,99,97,99,104,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,91,116,104,105,115,46,101,120,112,97,110,100,111,93,59,114,101,116,117,114,110,32,116,124,124,40,116,61,123,125,44,71,40,101,41,38,38,40,101,46,110,111,100,101,84,121,112,101,63,101,91,116,104,105,115,46,101,120,112,97,110,100,111,93,61,116,58,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,101,44,116,104,105,115,46,101,120,112,97,110,100,111,44,123,118,97,108,117,101,58,116,44,99,111,110,102,105,103,117,114,97,98,108,101,58,33,48,125,41,41,41,44,116,125,44,115,101,116,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,44,105,61,116,104,105,115,46,99,97,99,104,101,40,101,41,59,105,102,40,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,116,41,105,91,86,40,116,41,93,61,110,59,101,108,115,101,32,102,111,114,40,114,32,105,110,32,116,41,105,91,86,40,114,41,93,61,116,91,114,93,59,114,101,116,117,114,110,32,105,125,44,103,101,116,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,118,111,105,100,32,48,61,61,61,116,63,116,104,105,115,46,99,97,99,104,101,40,101,41,58,101,91,116,104,105,115,46,101,120,112,97,110,100,111,93,38,38,101,91,116,104,105,115,46,101,120,112,97,110,100,111,93,91,86,40,116,41,93,125,44,97,99,99,101,115,115,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,114,101,116,117,114,110,32,118,111,105,100,32,48,61,61,61,116,124,124,116,38,38,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,116,38,38,118,111,105,100,32,48,61,61,61,110,63,116,104,105,115,46,103,101,116,40,101,44,116,41,58,40,116,104,105,115,46,115,101,116,40,101,44,116,44,110,41,44,118,111,105,100,32,48,33,61,61,110,63,110,58,116,41,125,44,114,101,109,111,118,101,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,44,114,61,101,91,116,104,105,115,46,101,120,112,97,110,100,111,93,59,105,102,40,118,111,105,100,32,48,33,61,61,114,41,123,105,102,40,118,111,105,100,32,48,33,61,61,116,41,123,110,61,40,116,61,65,114,114,97,121,46,105,115,65,114,114,97,121,40,116,41,63,116,46,109,97,112,40,86,41,58,40,116,61,86,40,116,41,41,105,110,32,114,63,91,116,93,58,116,46,109,97,116,99,104,40,82,41,124,124,91,93,41,46,108,101,110,103,116,104,59,119,104,105,108,101,40,110,45,45,41,100,101,108,101,116,101,32,114,91,116,91,110,93,93,125,40,118,111,105,100,32,48,61,61,61,116,124,124,107,46,105,115,69,109,112,116,121,79,98,106,101,99,116,40,114,41,41,38,38,40,101,46,110,111,100,101,84,121,112,101,63,101,91,116,104,105,115,46,101,120,112,97,110,100,111,93,61,118,111,105,100,32,48,58,100,101,108,101,116,101,32,101,91,116,104,105,115,46,101,120,112,97,110,100,111,93,41,125,125,44,104,97,115,68,97,116,97,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,91,116,104,105,115,46,101,120,112,97,110,100,111,93,59,114,101,116,117,114,110,32,118,111,105,100,32,48,33,61,61,116,38,38,33,107,46,105,115,69,109,112,116,121,79,98,106,101,99,116,40,116,41,125,125,59,118,97,114,32,81,61,110,101,119,32,89,44,74,61,110,101,119,32,89,44,75,61,47,94,40,63,58,92,123,91,92,119,92,87,93,42,92,125,124,92,91,91,92,119,92,87,93,42,92,93,41,36,47,44,90,61,47,91,65,45,90,93,47,103,59,102,117,110,99,116,105,111,110,32,101,101,40,101,44,116,44,110,41,123,118,97,114,32,114,44,105,59,105,102,40,118,111,105,100,32,48,61,61,61,110,38,38,49,61,61,61,101,46,110,111,100,101,84,121,112,101,41,105,102,40,114,61,34,100,97,116,97,45,34,43,116,46,114,101,112,108,97,99,101,40,90,44,34,45,36,38,34,41,46,116,111,76,111,119,101,114,67,97,115,101,40,41,44,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,40,110,61,101,46,103,101,116,65,116,116,114,105,98,117,116,101,40,114,41,41,41,123,116,114,121,123,110,61,34,116,114,117,101,34,61,61,61,40,105,61,110,41,124,124,34,102,97,108,115,101,34,33,61,61,105,38,38,40,34,110,117,108,108,34,61,61,61,105,63,110,117,108,108,58,105,61,61,61,43,105,43,34,34,63,43,105,58,75,46,116,101,115,116,40,105,41,63,74,83,79,78,46,112,97,114,115,101,40,105,41,58,105,41,125,99,97,116,99,104,40,101,41,123,125,74,46,115,101,116,40,101,44,116,44,110,41,125,101,108,115,101,32,110,61,118,111,105,100,32,48,59,114,101,116,117,114,110,32,110,125,107,46,101,120,116,101,110,100,40,123,104,97,115,68,97,116,97,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,74,46,104,97,115,68,97,116,97,40,101,41,124,124,81,46,104,97,115,68,97,116,97,40,101,41,125,44,100,97,116,97,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,114,101,116,117,114,110,32,74,46,97,99,99,101,115,115,40,101,44,116,44,110,41,125,44,114,101,109,111,118,101,68,97,116,97,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,74,46,114,101,109,111,118,101,40,101,44,116,41,125,44,95,100,97,116,97,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,114,101,116,117,114,110,32,81,46,97,99,99,101,115,115,40,101,44,116,44,110,41,125,44,95,114,101,109,111,118,101,68,97,116,97,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,81,46,114,101,109,111,118,101,40,101,44,116,41,125,125,41,44,107,46,102,110,46,101,120,116,101,110,100,40,123,100,97,116,97,58,102,117,110,99,116,105,111,110,40,110,44,101,41,123,118,97,114,32,116,44,114,44,105,44,111,61,116,104,105,115,91,48,93,44,97,61,111,38,38,111,46,97,116,116,114,105,98,117,116,101,115,59,105,102,40,118,111,105,100,32,48,61,61,61,110,41,123,105,102,40,116,104,105,115,46,108,101,110,103,116,104,38,38,40,105,61,74,46,103,101,116,40,111,41,44,49,61,61,61,111,46,110,111,100,101,84,121,112,101,38,38,33,81,46,103,101,116,40,111,44,34,104,97,115,68,97,116,97,65,116,116,114,115,34,41,41,41,123,116,61,97,46,108,101,110,103,116,104,59,119,104,105,108,101,40,116,45,45,41,97,91,116,93,38,38,48,61,61,61,40,114,61,97,91,116,93,46,110,97,109,101,41,46,105,110,100,101,120,79,102,40,34,100,97,116,97,45,34,41,38,38,40,114,61,86,40,114,46,115,108,105,99,101,40,53,41,41,44,101,101,40,111,44,114,44,105,91,114,93,41,41,59,81,46,115,101,116,40,111,44,34,104,97,115,68,97,116,97,65,116,116,114,115,34,44,33,48,41,125,114,101,116,117,114,110,32,105,125,114,101,116,117,114,110,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,110,63,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,74,46,115,101,116,40,116,104,105,115,44,110,41,125,41,58,95,40,116,104,105,115,44,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,59,105,102,40,111,38,38,118,111,105,100,32,48,61,61,61,101,41,114,101,116,117,114,110,32,118,111,105,100,32,48,33,61,61,40,116,61,74,46,103,101,116,40,111,44,110,41,41,63,116,58,118,111,105,100,32,48,33,61,61,40,116,61,101,101,40,111,44,110,41,41,63,116,58,118,111,105,100,32,48,59,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,74,46,115,101,116,40,116,104,105,115,44,110,44,101,41,125,41,125,44,110,117,108,108,44,101,44,49,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,44,110,117,108,108,44,33,48,41,125,44,114,101,109,111,118,101,68,97,116,97,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,74,46,114,101,109,111,118,101,40,116,104,105,115,44,101,41,125,41,125,125,41,44,107,46,101,120,116,101,110,100,40,123,113,117,101,117,101,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,59,105,102,40,101,41,114,101,116,117,114,110,32,116,61,40,116,124,124,34,102,120,34,41,43,34,113,117,101,117,101,34,44,114,61,81,46,103,101,116,40,101,44,116,41,44,110,38,38,40,33,114,124,124,65,114,114,97,121,46,105,115,65,114,114,97,121,40,110,41,63,114,61,81,46,97,99,99,101,115,115,40,101,44,116,44,107,46,109,97,107,101,65,114,114,97,121,40,110,41,41,58,114,46,112,117,115,104,40,110,41,41,44,114,124,124,91,93,125,44,100,101,113,117,101,117,101,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,116,61,116,124,124,34,102,120,34,59,118,97,114,32,110,61,107,46,113,117,101,117,101,40,101,44,116,41,44,114,61,110,46,108,101,110,103,116,104,44,105,61,110,46,115,104,105,102,116,40,41,44,111,61,107,46,95,113,117,101,117,101,72,111,111,107,115,40,101,44,116,41,59,34,105,110,112,114,111,103,114,101,115,115,34,61,61,61,105,38,38,40,105,61,110,46,115,104,105,102,116,40,41,44,114,45,45,41,44,105,38,38,40,34,102,120,34,61,61,61,116,38,38,110,46,117,110,115,104,105,102,116,40,34,105,110,112,114,111,103,114,101,115,115,34,41,44,100,101,108,101,116,101,32,111,46,115,116,111,112,44,105,46,99,97,108,108,40,101,44,102,117,110,99,116,105,111,110,40,41,123,107,46,100,101,113,117,101,117,101,40,101,44,116,41,125,44,111,41,41,44,33,114,38,38,111,38,38,111,46,101,109,112,116,121,46,102,105,114,101,40,41,125,44,95,113,117,101,117,101,72,111,111,107,115,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,61,116,43,34,113,117,101,117,101,72,111,111,107,115,34,59,114,101,116,117,114,110,32,81,46,103,101,116,40,101,44,110,41,124,124,81,46,97,99,99,101,115,115,40,101,44,110,44,123,101,109,112,116,121,58,107,46,67,97,108,108,98,97,99,107,115,40,34,111,110,99,101,32,109,101,109,111,114,121,34,41,46,97,100,100,40,102,117,110,99,116,105,111,110,40,41,123,81,46,114,101,109,111,118,101,40,101,44,91,116,43,34,113,117,101,117,101,34,44,110,93,41,125,41,125,41,125,125,41,44,107,46,102,110,46,101,120,116,101,110,100,40,123,113,117,101,117,101,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,61,50,59,114,101,116,117,114,110,34,115,116,114,105,110,103,34,33,61,116,121,112,101,111,102,32,116,38,38,40,110,61,116,44,116,61,34,102,120,34,44,101,45,45,41,44,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,60,101,63,107,46,113,117,101,117,101,40,116,104,105,115,91,48,93,44,116,41,58,118,111,105,100,32,48,61,61,61,110,63,116,104,105,115,58,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,107,46,113,117,101,117,101,40,116,104,105,115,44,116,44,110,41,59,107,46,95,113,117,101,117,101,72,111,111,107,115,40,116,104,105,115,44,116,41,44,34,102,120,34,61,61,61,116,38,38,34,105,110,112,114,111,103,114,101,115,115,34,33,61,61,101,91,48,93,38,38,107,46,100,101,113,117,101,117,101,40,116,104,105,115,44,116,41,125,41,125,44,100,101,113,117,101,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,107,46,100,101,113,117,101,117,101,40,116,104,105,115,44,101,41,125,41,125,44,99,108,101,97,114,81,117,101,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,113,117,101,117,101,40,101,124,124,34,102,120,34,44,91,93,41,125,44,112,114,111,109,105,115,101,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,44,114,61,49,44,105,61,107,46,68,101,102,101,114,114,101,100,40,41,44,111,61,116,104,105,115,44,97,61,116,104,105,115,46,108,101,110,103,116,104,44,115,61,102,117,110,99,116,105,111,110,40,41,123,45,45,114,124,124,105,46,114,101,115,111,108,118,101,87,105,116,104,40,111,44,91,111,93,41,125,59,34,115,116,114,105,110,103,34,33,61,116,121,112,101,111,102,32,101,38,38,40,116,61,101,44,101,61,118,111,105,100,32,48,41,44,101,61,101,124,124,34,102,120,34,59,119,104,105,108,101,40,97,45,45,41,40,110,61,81,46,103,101,116,40,111,91,97,93,44,101,43,34,113,117,101,117,101,72,111,111,107,115,34,41,41,38,38,110,46,101,109,112,116,121,38,38,40,114,43,43,44,110,46,101,109,112,116,121,46,97,100,100,40,115,41,41,59,114,101,116,117,114,110,32,115,40,41,44,105,46,112,114,111,109,105,115,101,40,116,41,125,125,41,59,118,97,114,32,116,101,61,47,91,43,45,93,63,40,63,58,92,100,42,92,46,124,41,92,100,43,40,63,58,91,101,69,93,91,43,45,93,63,92,100,43,124,41,47,46,115,111,117,114,99,101,44,110,101,61,110,101,119,32,82,101,103,69,120,112,40,34,94,40,63,58,40,91,43,45,93,41,61,124,41,40,34,43,116,101,43,34,41,40,91,97,45,122,37,93,42,41,36,34,44,34,105,34,41,44,114,101,61,91,34,84,111,112,34,44,34,82,105,103,104,116,34,44,34,66,111,116,116,111,109,34,44,34,76,101,102,116,34,93,44,105,101,61,69,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,44,111,101,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,107,46,99,111,110,116,97,105,110,115,40,101,46,111,119,110,101,114,68,111,99,117,109,101,110,116,44,101,41,125,44,97,101,61,123,99,111,109,112,111,115,101,100,58,33,48,125,59,105,101,46,103,101,116,82,111,111,116,78,111,100,101,38,38,40,111,101,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,107,46,99,111,110,116,97,105,110,115,40,101,46,111,119,110,101,114,68,111,99,117,109,101,110,116,44,101,41,124,124,101,46,103,101,116,82,111,111,116,78,111,100,101,40,97,101,41,61,61,61,101,46,111,119,110,101,114,68,111,99,117,109,101,110,116,125,41,59,118,97,114,32,115,101,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,34,110,111,110,101,34,61,61,61,40,101,61,116,124,124,101,41,46,115,116,121,108,101,46,100,105,115,112,108,97,121,124,124,34,34,61,61,61,101,46,115,116,121,108,101,46,100,105,115,112,108,97,121,38,38,111,101,40,101,41,38,38,34,110,111,110,101,34,61,61,61,107,46,99,115,115,40,101,44,34,100,105,115,112,108,97,121,34,41,125,44,117,101,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,114,41,123,118,97,114,32,105,44,111,44,97,61,123,125,59,102,111,114,40,111,32,105,110,32,116,41,97,91,111,93,61,101,46,115,116,121,108,101,91,111,93,44,101,46,115,116,121,108,101,91,111,93,61,116,91,111,93,59,102,111,114,40,111,32,105,110,32,105,61,110,46,97,112,112,108,121,40,101,44,114,124,124,91,93,41,44,116,41,101,46,115,116,121,108,101,91,111,93,61,97,91,111,93,59,114,101,116,117,114,110,32,105,125,59,102,117,110,99,116,105,111,110,32,108,101,40,101,44,116,44,110,44,114,41,123,118,97,114,32,105,44,111,44,97,61,50,48,44,115,61,114,63,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,114,46,99,117,114,40,41,125,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,107,46,99,115,115,40,101,44,116,44,34,34,41,125,44,117,61,115,40,41,44,108,61,110,38,38,110,91,51,93,124,124,40,107,46,99,115,115,78,117,109,98,101,114,91,116,93,63,34,34,58,34,112,120,34,41,44,99,61,101,46,110,111,100,101,84,121,112,101,38,38,40,107,46,99,115,115,78,117,109,98,101,114,91,116,93,124,124,34,112,120,34,33,61,61,108,38,38,43,117,41,38,38,110,101,46,101,120,101,99,40,107,46,99,115,115,40,101,44,116,41,41,59,105,102,40,99,38,38,99,91,51,93,33,61,61,108,41,123,117,47,61,50,44,108,61,108,124,124,99,91,51,93,44,99,61,43,117,124,124,49,59,119,104,105,108,101,40,97,45,45,41,107,46,115,116,121,108,101,40,101,44,116,44,99,43,108,41,44,40,49,45,111,41,42,40,49,45,40,111,61,115,40,41,47,117,124,124,46,53,41,41,60,61,48,38,38,40,97,61,48,41,44,99,47,61,111,59,99,42,61,50,44,107,46,115,116,121,108,101,40,101,44,116,44,99,43,108,41,44,110,61,110,124,124,91,93,125,114,101,116,117,114,110,32,110,38,38,40,99,61,43,99,124,124,43,117,124,124,48,44,105,61,110,91,49,93,63,99,43,40,110,91,49,93,43,49,41,42,110,91,50,93,58,43,110,91,50,93,44,114,38,38,40,114,46,117,110,105,116,61,108,44,114,46,115,116,97,114,116,61,99,44,114,46,101,110,100,61,105,41,41,44,105,125,118,97,114,32,99,101,61,123,125,59,102,117,110,99,116,105,111,110,32,102,101,40,101,44,116,41,123,102,111,114,40,118,97,114,32,110,44,114,44,105,44,111,44,97,44,115,44,117,44,108,61,91,93,44,99,61,48,44,102,61,101,46,108,101,110,103,116,104,59,99,60,102,59,99,43,43,41,40,114,61,101,91,99,93,41,46,115,116,121,108,101,38,38,40,110,61,114,46,115,116,121,108,101,46,100,105,115,112,108,97,121,44,116,63,40,34,110,111,110,101,34,61,61,61,110,38,38,40,108,91,99,93,61,81,46,103,101,116,40,114,44,34,100,105,115,112,108,97,121,34,41,124,124,110,117,108,108,44,108,91,99,93,124,124,40,114,46,115,116,121,108,101,46,100,105,115,112,108,97,121,61,34,34,41,41,44,34,34,61,61,61,114,46,115,116,121,108,101,46,100,105,115,112,108,97,121,38,38,115,101,40,114,41,38,38,40,108,91,99,93,61,40,117,61,97,61,111,61,118,111,105,100,32,48,44,97,61,40,105,61,114,41,46,111,119,110,101,114,68,111,99,117,109,101,110,116,44,115,61,105,46,110,111,100,101,78,97,109,101,44,40,117,61,99,101,91,115,93,41,124,124,40,111,61,97,46,98,111,100,121,46,97,112,112,101,110,100,67,104,105,108,100,40,97,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,115,41,41,44,117,61,107,46,99,115,115,40,111,44,34,100,105,115,112,108,97,121,34,41,44,111,46,112,97,114,101,110,116,78,111,100,101,46,114,101,109,111,118,101,67,104,105,108,100,40,111,41,44,34,110,111,110,101,34,61,61,61,117,38,38,40,117,61,34,98,108,111,99,107,34,41,44,99,101,91,115,93,61,117,41,41,41,41,58,34,110,111,110,101,34,33,61,61,110,38,38,40,108,91,99,93,61,34,110,111,110,101,34,44,81,46,115,101,116,40,114,44,34,100,105,115,112,108,97,121,34,44,110,41,41,41,59,102,111,114,40,99,61,48,59,99,60,102,59,99,43,43,41,110,117,108,108,33,61,108,91,99,93,38,38,40,101,91,99,93,46,115,116,121,108,101,46,100,105,115,112,108,97,121,61,108,91,99,93,41,59,114,101,116,117,114,110,32,101,125,107,46,102,110,46,101,120,116,101,110,100,40,123,115,104,111,119,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,102,101,40,116,104,105,115,44,33,48,41,125,44,104,105,100,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,102,101,40,116,104,105,115,41,125,44,116,111,103,103,108,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,34,98,111,111,108,101,97,110,34,61,61,116,121,112,101,111,102,32,101,63,101,63,116,104,105,115,46,115,104,111,119,40,41,58,116,104,105,115,46,104,105,100,101,40,41,58,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,115,101,40,116,104,105,115,41,63,107,40,116,104,105,115,41,46,115,104,111,119,40,41,58,107,40,116,104,105,115,41,46,104,105,100,101,40,41,125,41,125,125,41,59,118,97,114,32,112,101,61,47,94,40,63,58,99,104,101,99,107,98,111,120,124,114,97,100,105,111,41,36,47,105,44,100,101,61,47,60,40,91,97,45,122,93,91,94,92,47,92,48,62,92,120,50,48,92,116,92,114,92,110,92,102,93,42,41,47,105,44,104,101,61,47,94,36,124,94,109,111,100,117,108,101,36,124,92,47,40,63,58,106,97,118,97,124,101,99,109,97,41,115,99,114,105,112,116,47,105,44,103,101,61,123,111,112,116,105,111,110,58,91,49,44,34,60,115,101,108,101,99,116,32,109,117,108,116,105,112,108,101,61,39,109,117,108,116,105,112,108,101,39,62,34,44,34,60,47,115,101,108,101,99,116,62,34,93,44,116,104,101,97,100,58,91,49,44,34,60,116,97,98,108,101,62,34,44,34,60,47,116,97,98,108,101,62,34,93,44,99,111,108,58,91,50,44,34,60,116,97,98,108,101,62,60,99,111,108,103,114,111,117,112,62,34,44,34,60,47,99,111,108,103,114,111,117,112,62,60,47,116,97,98,108,101,62,34,93,44,116,114,58,91,50,44,34,60,116,97,98,108,101,62,60,116,98,111,100,121,62,34,44,34,60,47,116,98,111,100,121,62,60,47,116,97,98,108,101,62,34,93,44,116,100,58,91,51,44,34,60,116,97,98,108,101,62,60,116,98,111,100,121,62,60,116,114,62,34,44,34,60,47,116,114,62,60,47,116,98,111,100,121,62,60,47,116,97,98,108,101,62,34,93,44,95,100,101,102,97,117,108,116,58,91,48,44,34,34,44,34,34,93,125,59,102,117,110,99,116,105,111,110,32,118,101,40,101,44,116,41,123,118,97,114,32,110,59,114,101,116,117,114,110,32,110,61,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,101,46,103,101,116,69,108,101,109,101,110,116,115,66,121,84,97,103,78,97,109,101,63,101,46,103,101,116,69,108,101,109,101,110,116,115,66,121,84,97,103,78,97,109,101,40,116,124,124,34,42,34,41,58,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,101,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,63,101,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,116,124,124,34,42,34,41,58,91,93,44,118,111,105,100,32,48,61,61,61,116,124,124,116,38,38,65,40,101,44,116,41,63,107,46,109,101,114,103,101,40,91,101,93,44,110,41,58,110,125,102,117,110,99,116,105,111,110,32,121,101,40,101,44,116,41,123,102,111,114,40,118,97,114,32,110,61,48,44,114,61,101,46,108,101,110,103,116,104,59,110,60,114,59,110,43,43,41,81,46,115,101,116,40,101,91,110,93,44,34,103,108,111,98,97,108,69,118,97,108,34,44,33,116,124,124,81,46,103,101,116,40,116,91,110,93,44,34,103,108,111,98,97,108,69,118,97,108,34,41,41,125,103,101,46,111,112,116,103,114,111,117,112,61,103,101,46,111,112,116,105,111,110,44,103,101,46,116,98,111,100,121,61,103,101,46,116,102,111,111,116,61,103,101,46,99,111,108,103,114,111,117,112,61,103,101,46,99,97,112,116,105,111,110,61,103,101,46,116,104,101,97,100,44,103,101,46,116,104,61,103,101,46,116,100,59,118,97,114,32,109,101,44,120,101,44,98,101,61,47,60,124,38,35,63,92,119,43,59,47,59,102,117,110,99,116,105,111,110,32,119,101,40,101,44,116,44,110,44,114,44,105,41,123,102,111,114,40,118,97,114,32,111,44,97,44,115,44,117,44,108,44,99,44,102,61,116,46,99,114,101,97,116,101,68,111,99,117,109,101,110,116,70,114,97,103,109,101,110,116,40,41,44,112,61,91,93,44,100,61,48,44,104,61,101,46,108,101,110,103,116,104,59,100,60,104,59,100,43,43,41,105,102,40,40,111,61,101,91,100,93,41,124,124,48,61,61,61,111,41,105,102,40,34,111,98,106,101,99,116,34,61,61,61,119,40,111,41,41,107,46,109,101,114,103,101,40,112,44,111,46,110,111,100,101,84,121,112,101,63,91,111,93,58,111,41,59,101,108,115,101,32,105,102,40,98,101,46,116,101,115,116,40,111,41,41,123,97,61,97,124,124,102,46,97,112,112,101,110,100,67,104,105,108,100,40,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,41,44,115,61,40,100,101,46,101,120,101,99,40,111,41,124,124,91,34,34,44,34,34,93,41,91,49,93,46,116,111,76,111,119,101,114,67,97,115,101,40,41,44,117,61,103,101,91,115,93,124,124,103,101,46,95,100,101,102,97,117,108,116,44,97,46,105,110,110,101,114,72,84,77,76,61,117,91,49,93,43,107,46,104,116,109,108,80,114,101,102,105,108,116,101,114,40,111,41,43,117,91,50,93,44,99,61,117,91,48,93,59,119,104,105,108,101,40,99,45,45,41,97,61,97,46,108,97,115,116,67,104,105,108,100,59,107,46,109,101,114,103,101,40,112,44,97,46,99,104,105,108,100,78,111,100,101,115,41,44,40,97,61,102,46,102,105,114,115,116,67,104,105,108,100,41,46,116,101,120,116,67,111,110,116,101,110,116,61,34,34,125,101,108,115,101,32,112,46,112,117,115,104,40,116,46,99,114,101,97,116,101,84,101,120,116,78,111,100,101,40,111,41,41,59,102,46,116,101,120,116,67,111,110,116,101,110,116,61,34,34,44,100,61,48,59,119,104,105,108,101,40,111,61,112,91,100,43,43,93,41,105,102,40,114,38,38,45,49,60,107,46,105,110,65,114,114,97,121,40,111,44,114,41,41,105,38,38,105,46,112,117,115,104,40,111,41,59,101,108,115,101,32,105,102,40,108,61,111,101,40,111,41,44,97,61,118,101,40,102,46,97,112,112,101,110,100,67,104,105,108,100,40,111,41,44,34,115,99,114,105,112,116,34,41,44,108,38,38,121,101,40,97,41,44,110,41,123,99,61,48,59,119,104,105,108,101,40,111,61,97,91,99,43,43,93,41,104,101,46,116,101,115,116,40,111,46,116,121,112,101,124,124,34,34,41,38,38,110,46,112,117,115,104,40,111,41,125,114,101,116,117,114,110,32,102,125,109,101,61,69,46,99,114,101,97,116,101,68,111,99,117,109,101,110,116,70,114,97,103,109,101,110,116,40,41,46,97,112,112,101,110,100,67,104,105,108,100,40,69,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,41,44,40,120,101,61,69,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,105,110,112,117,116,34,41,41,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,116,121,112,101,34,44,34,114,97,100,105,111,34,41,44,120,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,104,101,99,107,101,100,34,44,34,99,104,101,99,107,101,100,34,41,44,120,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,110,97,109,101,34,44,34,116,34,41,44,109,101,46,97,112,112,101,110,100,67,104,105,108,100,40,120,101,41,44,121,46,99,104,101,99,107,67,108,111,110,101,61,109,101,46,99,108,111,110,101,78,111,100,101,40,33,48,41,46,99,108,111,110,101,78,111,100,101,40,33,48,41,46,108,97,115,116,67,104,105,108,100,46,99,104,101,99,107,101,100,44,109,101,46,105,110,110,101,114,72,84,77,76,61,34,60,116,101,120,116,97,114,101,97,62,120,60,47,116,101,120,116,97,114,101,97,62,34,44,121,46,110,111,67,108,111,110,101,67,104,101,99,107,101,100,61,33,33,109,101,46,99,108,111,110,101,78,111,100,101,40,33,48,41,46,108,97,115,116,67,104,105,108,100,46,100,101,102,97,117,108,116,86,97,108,117,101,59,118,97,114,32,84,101,61,47,94,107,101,121,47,44,67,101,61,47,94,40,63,58,109,111,117,115,101,124,112,111,105,110,116,101,114,124,99,111,110,116,101,120,116,109,101,110,117,124,100,114,97,103,124,100,114,111,112,41,124,99,108,105,99,107,47,44,69,101,61,47,94,40,91,94,46,93,42,41,40,63,58,92,46,40,46,43,41,124,41,47,59,102,117,110,99,116,105,111,110,32,107,101,40,41,123,114,101,116,117,114,110,33,48,125,102,117,110,99,116,105,111,110,32,83,101,40,41,123,114,101,116,117,114,110,33,49,125,102,117,110,99,116,105,111,110,32,78,101,40,101,44,116,41,123,114,101,116,117,114,110,32,101,61,61,61,102,117,110,99,116,105,111,110,40,41,123,116,114,121,123,114,101,116,117,114,110,32,69,46,97,99,116,105,118,101,69,108,101,109,101,110,116,125,99,97,116,99,104,40,101,41,123,125,125,40,41,61,61,40,34,102,111,99,117,115,34,61,61,61,116,41,125,102,117,110,99,116,105,111,110,32,65,101,40,101,44,116,44,110,44,114,44,105,44,111,41,123,118,97,114,32,97,44,115,59,105,102,40,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,116,41,123,102,111,114,40,115,32,105,110,34,115,116,114,105,110,103,34,33,61,116,121,112,101,111,102,32,110,38,38,40,114,61,114,124,124,110,44,110,61,118,111,105,100,32,48,41,44,116,41,65,101,40,101,44,115,44,110,44,114,44,116,91,115,93,44,111,41,59,114,101,116,117,114,110,32,101,125,105,102,40,110,117,108,108,61,61,114,38,38,110,117,108,108,61,61,105,63,40,105,61,110,44,114,61,110,61,118,111,105,100,32,48,41,58,110,117,108,108,61,61,105,38,38,40,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,110,63,40,105,61,114,44,114,61,118,111,105,100,32,48,41,58,40,105,61,114,44,114,61,110,44,110,61,118,111,105,100,32,48,41,41,44,33,49,61,61,61,105,41,105,61,83,101,59,101,108,115,101,32,105,102,40,33,105,41,114,101,116,117,114,110,32,101,59,114,101,116,117,114,110,32,49,61,61,61,111,38,38,40,97,61,105,44,40,105,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,107,40,41,46,111,102,102,40,101,41,44,97,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,125,41,46,103,117,105,100,61,97,46,103,117,105,100,124,124,40,97,46,103,117,105,100,61,107,46,103,117,105,100,43,43,41,41,44,101,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,107,46,101,118,101,110,116,46,97,100,100,40,116,104,105,115,44,116,44,105,44,114,44,110,41,125,41,125,102,117,110,99,116,105,111,110,32,68,101,40,101,44,105,44,111,41,123,111,63,40,81,46,115,101,116,40,101,44,105,44,33,49,41,44,107,46,101,118,101,110,116,46,97,100,100,40,101,44,105,44,123,110,97,109,101,115,112,97,99,101,58,33,49,44,104,97,110,100,108,101,114,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,44,110,44,114,61,81,46,103,101,116,40,116,104,105,115,44,105,41,59,105,102,40,49,38,101,46,105,115,84,114,105,103,103,101,114,38,38,116,104,105,115,91,105,93,41,123,105,102,40,114,46,108,101,110,103,116,104,41,40,107,46,101,118,101,110,116,46,115,112,101,99,105,97,108,91,105,93,124,124,123,125,41,46,100,101,108,101,103,97,116,101,84,121,112,101,38,38,101,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,59,101,108,115,101,32,105,102,40,114,61,115,46,99,97,108,108,40,97,114,103,117,109,101,110,116,115,41,44,81,46,115,101,116,40,116,104,105,115,44,105,44,114,41,44,116,61,111,40,116,104,105,115,44,105,41,44,116,104,105,115,91,105,93,40,41,44,114,33,61,61,40,110,61,81,46,103,101,116,40,116,104,105,115,44,105,41,41,124,124,116,63,81,46,115,101,116,40,116,104,105,115,44,105,44,33,49,41,58,110,61,123,125,44,114,33,61,61,110,41,114,101,116,117,114,110,32,101,46,115,116,111,112,73,109,109,101,100,105,97,116,101,80,114,111,112,97,103,97,116,105,111,110,40,41,44,101,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,110,46,118,97,108,117,101,125,101,108,115,101,32,114,46,108,101,110,103,116,104,38,38,40,81,46,115,101,116,40,116,104,105,115,44,105,44,123,118,97,108,117,101,58,107,46,101,118,101,110,116,46,116,114,105,103,103,101,114,40,107,46,101,120,116,101,110,100,40,114,91,48,93,44,107,46,69,118,101,110,116,46,112,114,111,116,111,116,121,112,101,41,44,114,46,115,108,105,99,101,40,49,41,44,116,104,105,115,41,125,41,44,101,46,115,116,111,112,73,109,109,101,100,105,97,116,101,80,114,111,112,97,103,97,116,105,111,110,40,41,41,125,125,41,41,58,118,111,105,100,32,48,61,61,61,81,46,103,101,116,40,101,44,105,41,38,38,107,46,101,118,101,110,116,46,97,100,100,40,101,44,105,44,107,101,41,125,107,46,101,118,101,110,116,61,123,103,108,111,98,97,108,58,123,125,44,97,100,100,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,44,114,44,105,41,123,118,97,114,32,111,44,97,44,115,44,117,44,108,44,99,44,102,44,112,44,100,44,104,44,103,44,118,61,81,46,103,101,116,40,116,41,59,105,102,40,118,41,123,110,46,104,97,110,100,108,101,114,38,38,40,110,61,40,111,61,110,41,46,104,97,110,100,108,101,114,44,105,61,111,46,115,101,108,101,99,116,111,114,41,44,105,38,38,107,46,102,105,110,100,46,109,97,116,99,104,101,115,83,101,108,101,99,116,111,114,40,105,101,44,105,41,44,110,46,103,117,105,100,124,124,40,110,46,103,117,105,100,61,107,46,103,117,105,100,43,43,41,44,40,117,61,118,46,101,118,101,110,116,115,41,124,124,40,117,61,118,46,101,118,101,110,116,115,61,123,125,41,44,40,97,61,118,46,104,97,110,100,108,101,41,124,124,40,97,61,118,46,104,97,110,100,108,101,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,107,38,38,107,46,101,118,101,110,116,46,116,114,105,103,103,101,114,101,100,33,61,61,101,46,116,121,112,101,63,107,46,101,118,101,110,116,46,100,105,115,112,97,116,99,104,46,97,112,112,108,121,40,116,44,97,114,103,117,109,101,110,116,115,41,58,118,111,105,100,32,48,125,41,44,108,61,40,101,61,40,101,124,124,34,34,41,46,109,97,116,99,104,40,82,41,124,124,91,34,34,93,41,46,108,101,110,103,116,104,59,119,104,105,108,101,40,108,45,45,41,100,61,103,61,40,115,61,69,101,46,101,120,101,99,40,101,91,108,93,41,124,124,91,93,41,91,49,93,44,104,61,40,115,91,50,93,124,124,34,34,41,46,115,112,108,105,116,40,34,46,34,41,46,115,111,114,116,40,41,44,100,38,38,40,102,61,107,46,101,118,101,110,116,46,115,112,101,99,105,97,108,91,100,93,124,124,123,125,44,100,61,40,105,63,102,46,100,101,108,101,103,97,116,101,84,121,112,101,58,102,46,98,105,110,100,84,121,112,101,41,124,124,100,44,102,61,107,46,101,118,101,110,116,46,115,112,101,99,105,97,108,91,100,93,124,124,123,125,44,99,61,107,46,101,120,116,101,110,100,40,123,116,121,112,101,58,100,44,111,114,105,103,84,121,112,101,58,103,44,100,97,116,97,58,114,44,104,97,110,100,108,101,114,58,110,44,103,117,105,100,58,110,46,103,117,105,100,44,115,101,108,101,99,116,111,114,58,105,44,110,101,101,100,115,67,111,110,116,101,120,116,58,105,38,38,107,46,101,120,112,114,46,109,97,116,99,104,46,110,101,101,100,115,67,111,110,116,101,120,116,46,116,101,115,116,40,105,41,44,110,97,109,101,115,112,97,99,101,58,104,46,106,111,105,110,40,34,46,34,41,125,44,111,41,44,40,112,61,117,91,100,93,41,124,124,40,40,112,61,117,91,100,93,61,91,93,41,46,100,101,108,101,103,97,116,101,67,111,117,110,116,61,48,44,102,46,115,101,116,117,112,38,38,33,49,33,61,61,102,46,115,101,116,117,112,46,99,97,108,108,40,116,44,114,44,104,44,97,41,124,124,116,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,38,38,116,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,100,44,97,41,41,44,102,46,97,100,100,38,38,40,102,46,97,100,100,46,99,97,108,108,40,116,44,99,41,44,99,46,104,97,110,100,108,101,114,46,103,117,105,100,124,124,40,99,46,104,97,110,100,108,101,114,46,103,117,105,100,61,110,46,103,117,105,100,41,41,44,105,63,112,46,115,112,108,105,99,101,40,112,46,100,101,108,101,103,97,116,101,67,111,117,110,116,43,43,44,48,44,99,41,58,112,46,112,117,115,104,40,99,41,44,107,46,101,118,101,110,116,46,103,108,111,98,97,108,91,100,93,61,33,48,41,125,125,44,114,101,109,111,118,101,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,114,44,105,41,123,118,97,114,32,111,44,97,44,115,44,117,44,108,44,99,44,102,44,112,44,100,44,104,44,103,44,118,61,81,46,104,97,115,68,97,116,97,40,101,41,38,38,81,46,103,101,116,40,101,41,59,105,102,40,118,38,38,40,117,61,118,46,101,118,101,110,116,115,41,41,123,108,61,40,116,61,40,116,124,124,34,34,41,46,109,97,116,99,104,40,82,41,124,124,91,34,34,93,41,46,108,101,110,103,116,104,59,119,104,105,108,101,40,108,45,45,41,105,102,40,100,61,103,61,40,115,61,69,101,46,101,120,101,99,40,116,91,108,93,41,124,124,91,93,41,91,49,93,44,104,61,40,115,91,50,93,124,124,34,34,41,46,115,112,108,105,116,40,34,46,34,41,46,115,111,114,116,40,41,44,100,41,123,102,61,107,46,101,118,101,110,116,46,115,112,101,99,105,97,108,91,100,93,124,124,123,125,44,112,61,117,91,100,61,40,114,63,102,46,100,101,108,101,103,97,116,101,84,121,112,101,58,102,46,98,105,110,100,84,121,112,101,41,124,124,100,93,124,124,91,93,44,115,61,115,91,50,93,38,38,110,101,119,32,82,101,103,69,120,112,40,34,40,94,124,92,92,46,41,34,43,104,46,106,111,105,110,40,34,92,92,46,40,63,58,46,42,92,92,46,124,41,34,41,43,34,40,92,92,46,124,36,41,34,41,44,97,61,111,61,112,46,108,101,110,103,116,104,59,119,104,105,108,101,40,111,45,45,41,99,61,112,91,111,93,44,33,105,38,38,103,33,61,61,99,46,111,114,105,103,84,121,112,101,124,124,110,38,38,110,46,103,117,105,100,33,61,61,99,46,103,117,105,100,124,124,115,38,38,33,115,46,116,101,115,116,40,99,46,110,97,109,101,115,112,97,99,101,41,124,124,114,38,38,114,33,61,61,99,46,115,101,108,101,99,116,111,114,38,38,40,34,42,42,34,33,61,61,114,124,124,33,99,46,115,101,108,101,99,116,111,114,41,124,124,40,112,46,115,112,108,105,99,101,40,111,44,49,41,44,99,46,115,101,108,101,99,116,111,114,38,38,112,46,100,101,108,101,103,97,116,101,67,111,117,110,116,45,45,44,102,46,114,101,109,111,118,101,38,38,102,46,114,101,109,111,118,101,46,99,97,108,108,40,101,44,99,41,41,59,97,38,38,33,112,46,108,101,110,103,116,104,38,38,40,102,46,116,101,97,114,100,111,119,110,38,38,33,49,33,61,61,102,46,116,101,97,114,100,111,119,110,46,99,97,108,108,40,101,44,104,44,118,46,104,97,110,100,108,101,41,124,124,107,46,114,101,109,111,118,101,69,118,101,110,116,40,101,44,100,44,118,46,104,97,110,100,108,101,41,44,100,101,108,101,116,101,32,117,91,100,93,41,125,101,108,115,101,32,102,111,114,40,100,32,105,110,32,117,41,107,46,101,118,101,110,116,46,114,101,109,111,118,101,40,101,44,100,43,116,91,108,93,44,110,44,114,44,33,48,41,59,107,46,105,115,69,109,112,116,121,79,98,106,101,99,116,40,117,41,38,38,81,46,114,101,109,111,118,101,40,101,44,34,104,97,110,100,108,101,32,101,118,101,110,116,115,34,41,125,125,44,100,105,115,112,97,116,99,104,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,44,110,44,114,44,105,44,111,44,97,44,115,61,107,46,101,118,101,110,116,46,102,105,120,40,101,41,44,117,61,110,101,119,32,65,114,114,97,121,40,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,44,108,61,40,81,46,103,101,116,40,116,104,105,115,44,34,101,118,101,110,116,115,34,41,124,124,123,125,41,91,115,46,116,121,112,101,93,124,124,91,93,44,99,61,107,46,101,118,101,110,116,46,115,112,101,99,105,97,108,91,115,46,116,121,112,101,93,124,124,123,125,59,102,111,114,40,117,91,48,93,61,115,44,116,61,49,59,116,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,116,43,43,41,117,91,116,93,61,97,114,103,117,109,101,110,116,115,91,116,93,59,105,102,40,115,46,100,101,108,101,103,97,116,101,84,97,114,103,101,116,61,116,104,105,115,44,33,99,46,112,114,101,68,105,115,112,97,116,99,104,124,124,33,49,33,61,61,99,46,112,114,101,68,105,115,112,97,116,99,104,46,99,97,108,108,40,116,104,105,115,44,115,41,41,123,97,61,107,46,101,118,101,110,116,46,104,97,110,100,108,101,114,115,46,99,97,108,108,40,116,104,105,115,44,115,44,108,41,44,116,61,48,59,119,104,105,108,101,40,40,105,61,97,91,116,43,43,93,41,38,38,33,115,46,105,115,80,114,111,112,97,103,97,116,105,111,110,83,116,111,112,112,101,100,40,41,41,123,115,46,99,117,114,114,101,110,116,84,97,114,103,101,116,61,105,46,101,108,101,109,44,110,61,48,59,119,104,105,108,101,40,40,111,61,105,46,104,97,110,100,108,101,114,115,91,110,43,43,93,41,38,38,33,115,46,105,115,73,109,109,101,100,105,97,116,101,80,114,111,112,97,103,97,116,105,111,110,83,116,111,112,112,101,100,40,41,41,115,46,114,110,97,109,101,115,112,97,99,101,38,38,33,49,33,61,61,111,46,110,97,109,101,115,112,97,99,101,38,38,33,115,46,114,110,97,109,101,115,112,97,99,101,46,116,101,115,116,40,111,46,110,97,109,101,115,112,97,99,101,41,124,124,40,115,46,104,97,110,100,108,101,79,98,106,61,111,44,115,46,100,97,116,97,61,111,46,100,97,116,97,44,118,111,105,100,32,48,33,61,61,40,114,61,40,40,107,46,101,118,101,110,116,46,115,112,101,99,105,97,108,91,111,46,111,114,105,103,84,121,112,101,93,124,124,123,125,41,46,104,97,110,100,108,101,124,124,111,46,104,97,110,100,108,101,114,41,46,97,112,112,108,121,40,105,46,101,108,101,109,44,117,41,41,38,38,33,49,61,61,61,40,115,46,114,101,115,117,108,116,61,114,41,38,38,40,115,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,115,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,41,41,125,114,101,116,117,114,110,32,99,46,112,111,115,116,68,105,115,112,97,116,99,104,38,38,99,46,112,111,115,116,68,105,115,112,97,116,99,104,46,99,97,108,108,40,116,104,105,115,44,115,41,44,115,46,114,101,115,117,108,116,125,125,44,104,97,110,100,108,101,114,115,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,44,114,44,105,44,111,44,97,44,115,61,91,93,44,117,61,116,46,100,101,108,101,103,97,116,101,67,111,117,110,116,44,108,61,101,46,116,97,114,103,101,116,59,105,102,40,117,38,38,108,46,110,111,100,101,84,121,112,101,38,38,33,40,34,99,108,105,99,107,34,61,61,61,101,46,116,121,112,101,38,38,49,60,61,101,46,98,117,116,116,111,110,41,41,102,111,114,40,59,108,33,61,61,116,104,105,115,59,108,61,108,46,112,97,114,101,110,116,78,111,100,101,124,124,116,104,105,115,41,105,102,40,49,61,61,61,108,46,110,111,100,101,84,121,112,101,38,38,40,34,99,108,105,99,107,34,33,61,61,101,46,116,121,112,101,124,124,33,48,33,61,61,108,46,100,105,115,97,98,108,101,100,41,41,123,102,111,114,40,111,61,91,93,44,97,61,123,125,44,110,61,48,59,110,60,117,59,110,43,43,41,118,111,105,100,32,48,61,61,61,97,91,105,61,40,114,61,116,91,110,93,41,46,115,101,108,101,99,116,111,114,43,34,32,34,93,38,38,40,97,91,105,93,61,114,46,110,101,101,100,115,67,111,110,116,101,120,116,63,45,49,60,107,40,105,44,116,104,105,115,41,46,105,110,100,101,120,40,108,41,58,107,46,102,105,110,100,40,105,44,116,104,105,115,44,110,117,108,108,44,91,108,93,41,46,108,101,110,103,116,104,41,44,97,91,105,93,38,38,111,46,112,117,115,104,40,114,41,59,111,46,108,101,110,103,116,104,38,38,115,46,112,117,115,104,40,123,101,108,101,109,58,108,44,104,97,110,100,108,101,114,115,58,111,125,41,125,114,101,116,117,114,110,32,108,61,116,104,105,115,44,117,60,116,46,108,101,110,103,116,104,38,38,115,46,112,117,115,104,40,123,101,108,101,109,58,108,44,104,97,110,100,108,101,114,115,58,116,46,115,108,105,99,101,40,117,41,125,41,44,115,125,44,97,100,100,80,114,111,112,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,107,46,69,118,101,110,116,46,112,114,111,116,111,116,121,112,101,44,116,44,123,101,110,117,109,101,114,97,98,108,101,58,33,48,44,99,111,110,102,105,103,117,114,97,98,108,101,58,33,48,44,103,101,116,58,109,40,101,41,63,102,117,110,99,116,105,111,110,40,41,123,105,102,40,116,104,105,115,46,111,114,105,103,105,110,97,108,69,118,101,110,116,41,114,101,116,117,114,110,32,101,40,116,104,105,115,46,111,114,105,103,105,110,97,108,69,118,101,110,116,41,125,58,102,117,110,99,116,105,111,110,40,41,123,105,102,40,116,104,105,115,46,111,114,105,103,105,110,97,108,69,118,101,110,116,41,114,101,116,117,114,110,32,116,104,105,115,46,111,114,105,103,105,110,97,108,69,118,101,110,116,91,116,93,125,44,115,101,116,58,102,117,110,99,116,105,111,110,40,101,41,123,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,104,105,115,44,116,44,123,101,110,117,109,101,114,97,98,108,101,58,33,48,44,99,111,110,102,105,103,117,114,97,98,108,101,58,33,48,44,119,114,105,116,97,98,108,101,58,33,48,44,118,97,108,117,101,58,101,125,41,125,125,41,125,44,102,105,120,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,91,107,46,101,120,112,97,110,100,111,93,63,101,58,110,101,119,32,107,46,69,118,101,110,116,40,101,41,125,44,115,112,101,99,105,97,108,58,123,108,111,97,100,58,123,110,111,66,117,98,98,108,101,58,33,48,125,44,99,108,105,99,107,58,123,115,101,116,117,112,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,116,104,105,115,124,124,101,59,114,101,116,117,114,110,32,112,101,46,116,101,115,116,40,116,46,116,121,112,101,41,38,38,116,46,99,108,105,99,107,38,38,65,40,116,44,34,105,110,112,117,116,34,41,38,38,68,101,40,116,44,34,99,108,105,99,107,34,44,107,101,41,44,33,49,125,44,116,114,105,103,103,101,114,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,116,104,105,115,124,124,101,59,114,101,116,117,114,110,32,112,101,46,116,101,115,116,40,116,46,116,121,112,101,41,38,38,116,46,99,108,105,99,107,38,38,65,40,116,44,34,105,110,112,117,116,34,41,38,38,68,101,40,116,44,34,99,108,105,99,107,34,41,44,33,48,125,44,95,100,101,102,97,117,108,116,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,46,116,97,114,103,101,116,59,114,101,116,117,114,110,32,112,101,46,116,101,115,116,40,116,46,116,121,112,101,41,38,38,116,46,99,108,105,99,107,38,38,65,40,116,44,34,105,110,112,117,116,34,41,38,38,81,46,103,101,116,40,116,44,34,99,108,105,99,107,34,41,124,124,65,40,116,44,34,97,34,41,125,125,44,98,101,102,111,114,101,117,110,108,111,97,100,58,123,112,111,115,116,68,105,115,112,97,116,99,104,58,102,117,110,99,116,105,111,110,40,101,41,123,118,111,105,100,32,48,33,61,61,101,46,114,101,115,117,108,116,38,38,101,46,111,114,105,103,105,110,97,108,69,118,101,110,116,38,38,40,101,46,111,114,105,103,105,110,97,108,69,118,101,110,116,46,114,101,116,117,114,110,86,97,108,117,101,61,101,46,114,101,115,117,108,116,41,125,125,125,125,44,107,46,114,101,109,111,118,101,69,118,101,110,116,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,101,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,38,38,101,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,40,116,44,110,41,125,44,107,46,69,118,101,110,116,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,102,40,33,40,116,104,105,115,32,105,110,115,116,97,110,99,101,111,102,32,107,46,69,118,101,110,116,41,41,114,101,116,117,114,110,32,110,101,119,32,107,46,69,118,101,110,116,40,101,44,116,41,59,101,38,38,101,46,116,121,112,101,63,40,116,104,105,115,46,111,114,105,103,105,110,97,108,69,118,101,110,116,61,101,44,116,104,105,115,46,116,121,112,101,61,101,46,116,121,112,101,44,116,104,105,115,46,105,115,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,61,101,46,100,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,124,124,118,111,105,100,32,48,61,61,61,101,46,100,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,38,38,33,49,61,61,61,101,46,114,101,116,117,114,110,86,97,108,117,101,63,107,101,58,83,101,44,116,104,105,115,46,116,97,114,103,101,116,61,101,46,116,97,114,103,101,116,38,38,51,61,61,61,101,46,116,97,114,103,101,116,46,110,111,100,101,84,121,112,101,63,101,46,116,97,114,103,101,116,46,112,97,114,101,110,116,78,111,100,101,58,101,46,116,97,114,103,101,116,44,116,104,105,115,46,99,117,114,114,101,110,116,84,97,114,103,101,116,61,101,46,99,117,114,114,101,110,116,84,97,114,103,101,116,44,116,104,105,115,46,114,101,108,97,116,101,100,84,97,114,103,101,116,61,101,46,114,101,108,97,116,101,100,84,97,114,103,101,116,41,58,116,104,105,115,46,116,121,112,101,61,101,44,116,38,38,107,46,101,120,116,101,110,100,40,116,104,105,115,44,116,41,44,116,104,105,115,46,116,105,109,101,83,116,97,109,112,61,101,38,38,101,46,116,105,109,101,83,116,97,109,112,124,124,68,97,116,101,46,110,111,119,40,41,44,116,104,105,115,91,107,46,101,120,112,97,110,100,111,93,61,33,48,125,44,107,46,69,118,101,110,116,46,112,114,111,116,111,116,121,112,101,61,123,99,111,110,115,116,114,117,99,116,111,114,58,107,46,69,118,101,110,116,44,105,115,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,58,83,101,44,105,115,80,114,111,112,97,103,97,116,105,111,110,83,116,111,112,112,101,100,58,83,101,44,105,115,73,109,109,101,100,105,97,116,101,80,114,111,112,97,103,97,116,105,111,110,83,116,111,112,112,101,100,58,83,101,44,105,115,83,105,109,117,108,97,116,101,100,58,33,49,44,112,114,101,118,101,110,116,68,101,102,97,117,108,116,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,111,114,105,103,105,110,97,108,69,118,101,110,116,59,116,104,105,115,46,105,115,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,61,107,101,44,101,38,38,33,116,104,105,115,46,105,115,83,105,109,117,108,97,116,101,100,38,38,101,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,125,44,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,111,114,105,103,105,110,97,108,69,118,101,110,116,59,116,104,105,115,46,105,115,80,114,111,112,97,103,97,116,105,111,110,83,116,111,112,112,101,100,61,107,101,44,101,38,38,33,116,104,105,115,46,105,115,83,105,109,117,108,97,116,101,100,38,38,101,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,125,44,115,116,111,112,73,109,109,101,100,105,97,116,101,80,114,111,112,97,103,97,116,105,111,110,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,111,114,105,103,105,110,97,108,69,118,101,110,116,59,116,104,105,115,46,105,115,73,109,109,101,100,105,97,116,101,80,114,111,112,97,103,97,116,105,111,110,83,116,111,112,112,101,100,61,107,101,44,101,38,38,33,116,104,105,115,46,105,115,83,105,109,117,108,97,116,101,100,38,38,101,46,115,116,111,112,73,109,109,101,100,105,97,116,101,80,114,111,112,97,103,97,116,105,111,110,40,41,44,116,104,105,115,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,125,125,44,107,46,101,97,99,104,40,123,97,108,116,75,101,121,58,33,48,44,98,117,98,98,108,101,115,58,33,48,44,99,97,110,99,101,108,97,98,108,101,58,33,48,44,99,104,97,110,103,101,100,84,111,117,99,104,101,115,58,33,48,44,99,116,114,108,75,101,121,58,33,48,44,100,101,116,97,105,108,58,33,48,44,101,118,101,110,116,80,104,97,115,101,58,33,48,44,109,101,116,97,75,101,121,58,33,48,44,112,97,103,101,88,58,33,48,44,112,97,103,101,89,58,33,48,44,115,104,105,102,116,75,101,121,58,33,48,44,118,105,101,119,58,33,48,44,34,99,104,97,114,34,58,33,48,44,99,111,100,101,58,33,48,44,99,104,97,114,67,111,100,101,58,33,48,44,107,101,121,58,33,48,44,107,101,121,67,111,100,101,58,33,48,44,98,117,116,116,111,110,58,33,48,44,98,117,116,116,111,110,115,58,33,48,44,99,108,105,101,110,116,88,58,33,48,44,99,108,105,101,110,116,89,58,33,48,44,111,102,102,115,101,116,88,58,33,48,44,111,102,102,115,101,116,89,58,33,48,44,112,111,105,110,116,101,114,73,100,58,33,48,44,112,111,105,110,116,101,114,84,121,112,101,58,33,48,44,115,99,114,101,101,110,88,58,33,48,44,115,99,114,101,101,110,89,58,33,48,44,116,97,114,103,101,116,84,111,117,99,104,101,115,58,33,48,44,116,111,69,108,101,109,101,110,116,58,33,48,44,116,111,117,99,104,101,115,58,33,48,44,119,104,105,99,104,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,46,98,117,116,116,111,110,59,114,101,116,117,114,110,32,110,117,108,108,61,61,101,46,119,104,105,99,104,38,38,84,101,46,116,101,115,116,40,101,46,116,121,112,101,41,63,110,117,108,108,33,61,101,46,99,104,97,114,67,111,100,101,63,101,46,99,104,97,114,67,111,100,101,58,101,46,107,101,121,67,111,100,101,58,33,101,46,119,104,105,99,104,38,38,118,111,105,100,32,48,33,61,61,116,38,38,67,101,46,116,101,115,116,40,101,46,116,121,112,101,41,63,49,38,116,63,49,58,50,38,116,63,51,58,52,38,116,63,50,58,48,58,101,46,119,104,105,99,104,125,125,44,107,46,101,118,101,110,116,46,97,100,100,80,114,111,112,41,44,107,46,101,97,99,104,40,123,102,111,99,117,115,58,34,102,111,99,117,115,105,110,34,44,98,108,117,114,58,34,102,111,99,117,115,111,117,116,34,125,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,107,46,101,118,101,110,116,46,115,112,101,99,105,97,108,91,101,93,61,123,115,101,116,117,112,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,68,101,40,116,104,105,115,44,101,44,78,101,41,44,33,49,125,44,116,114,105,103,103,101,114,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,68,101,40,116,104,105,115,44,101,41,44,33,48,125,44,100,101,108,101,103,97,116,101,84,121,112,101,58,116,125,125,41,44,107,46,101,97,99,104,40,123,109,111,117,115,101,101,110,116,101,114,58,34,109,111,117,115,101,111,118,101,114,34,44,109,111,117,115,101,108,101,97,118,101,58,34,109,111,117,115,101,111,117,116,34,44,112,111,105,110,116,101,114,101,110,116,101,114,58,34,112,111,105,110,116,101,114,111,118,101,114,34,44,112,111,105,110,116,101,114,108,101,97,118,101,58,34,112,111,105,110,116,101,114,111,117,116,34,125,44,102,117,110,99,116,105,111,110,40,101,44,105,41,123,107,46,101,118,101,110,116,46,115,112,101,99,105,97,108,91,101,93,61,123,100,101,108,101,103,97,116,101,84,121,112,101,58,105,44,98,105,110,100,84,121,112,101,58,105,44,104,97,110,100,108,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,44,110,61,101,46,114,101,108,97,116,101,100,84,97,114,103,101,116,44,114,61,101,46,104,97,110,100,108,101,79,98,106,59,114,101,116,117,114,110,32,110,38,38,40,110,61,61,61,116,104,105,115,124,124,107,46,99,111,110,116,97,105,110,115,40,116,104,105,115,44,110,41,41,124,124,40,101,46,116,121,112,101,61,114,46,111,114,105,103,84,121,112,101,44,116,61,114,46,104,97,110,100,108,101,114,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,44,101,46,116,121,112,101,61,105,41,44,116,125,125,125,41,44,107,46,102,110,46,101,120,116,101,110,100,40,123,111,110,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,114,41,123,114,101,116,117,114,110,32,65,101,40,116,104,105,115,44,101,44,116,44,110,44,114,41,125,44,111,110,101,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,114,41,123,114,101,116,117,114,110,32,65,101,40,116,104,105,115,44,101,44,116,44,110,44,114,44,49,41,125,44,111,102,102,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,44,105,59,105,102,40,101,38,38,101,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,38,38,101,46,104,97,110,100,108,101,79,98,106,41,114,101,116,117,114,110,32,114,61,101,46,104,97,110,100,108,101,79,98,106,44,107,40,101,46,100,101,108,101,103,97,116,101,84,97,114,103,101,116,41,46,111,102,102,40,114,46,110,97,109,101,115,112,97,99,101,63,114,46,111,114,105,103,84,121,112,101,43,34,46,34,43,114,46,110,97,109,101,115,112,97,99,101,58,114,46,111,114,105,103,84,121,112,101,44,114,46,115,101,108,101,99,116,111,114,44,114,46,104,97,110,100,108,101,114,41,44,116,104,105,115,59,105,102,40,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,101,41,123,102,111,114,40,105,32,105,110,32,101,41,116,104,105,115,46,111,102,102,40,105,44,116,44,101,91,105,93,41,59,114,101,116,117,114,110,32,116,104,105,115,125,114,101,116,117,114,110,33,49,33,61,61,116,38,38,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,116,124,124,40,110,61,116,44,116,61,118,111,105,100,32,48,41,44,33,49,61,61,61,110,38,38,40,110,61,83,101,41,44,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,107,46,101,118,101,110,116,46,114,101,109,111,118,101,40,116,104,105,115,44,101,44,110,44,116,41,125,41,125,125,41,59,118,97,114,32,106,101,61,47,60,40,63,33,97,114,101,97,124,98,114,124,99,111,108,124,101,109,98,101,100,124,104,114,124,105,109,103,124,105,110,112,117,116,124,108,105,110,107,124,109,101,116,97,124,112,97,114,97,109,41,40,40,91,97,45,122,93,91,94,92,47,92,48,62,92,120,50,48,92,116,92,114,92,110,92,102,93,42,41,91,94,62,93,42,41,92,47,62,47,103,105,44,113,101,61,47,60,115,99,114,105,112,116,124,60,115,116,121,108,101,124,60,108,105,110,107,47,105,44,76,101,61,47,99,104,101,99,107,101,100,92,115,42,40,63,58,91,94,61,93,124,61,92,115,42,46,99,104,101,99,107,101,100,46,41,47,105,44,72,101,61,47,94,92,115,42,60,33,40,63,58,92,91,67,68,65,84,65,92,91,124,45,45,41,124,40,63,58,92,93,92,93,124,45,45,41,62,92,115,42,36,47,103,59,102,117,110,99,116,105,111,110,32,79,101,40,101,44,116,41,123,114,101,116,117,114,110,32,65,40,101,44,34,116,97,98,108,101,34,41,38,38,65,40,49,49,33,61,61,116,46,110,111,100,101,84,121,112,101,63,116,58,116,46,102,105,114,115,116,67,104,105,108,100,44,34,116,114,34,41,38,38,107,40,101,41,46,99,104,105,108,100,114,101,110,40,34,116,98,111,100,121,34,41,91,48,93,124,124,101,125,102,117,110,99,116,105,111,110,32,80,101,40,101,41,123,114,101,116,117,114,110,32,101,46,116,121,112,101,61,40,110,117,108,108,33,61,61,101,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,116,121,112,101,34,41,41,43,34,47,34,43,101,46,116,121,112,101,44,101,125,102,117,110,99,116,105,111,110,32,82,101,40,101,41,123,114,101,116,117,114,110,34,116,114,117,101,47,34,61,61,61,40,101,46,116,121,112,101,124,124,34,34,41,46,115,108,105,99,101,40,48,44,53,41,63,101,46,116,121,112,101,61,101,46,116,121,112,101,46,115,108,105,99,101,40,53,41,58,101,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,40,34,116,121,112,101,34,41,44,101,125,102,117,110,99,116,105,111,110,32,77,101,40,101,44,116,41,123,118,97,114,32,110,44,114,44,105,44,111,44,97,44,115,44,117,44,108,59,105,102,40,49,61,61,61,116,46,110,111,100,101,84,121,112,101,41,123,105,102,40,81,46,104,97,115,68,97,116,97,40,101,41,38,38,40,111,61,81,46,97,99,99,101,115,115,40,101,41,44,97,61,81,46,115,101,116,40,116,44,111,41,44,108,61,111,46,101,118,101,110,116,115,41,41,102,111,114,40,105,32,105,110,32,100,101,108,101,116,101,32,97,46,104,97,110,100,108,101,44,97,46,101,118,101,110,116,115,61,123,125,44,108,41,102,111,114,40,110,61,48,44,114,61,108,91,105,93,46,108,101,110,103,116,104,59,110,60,114,59,110,43,43,41,107,46,101,118,101,110,116,46,97,100,100,40,116,44,105,44,108,91,105,93,91,110,93,41,59,74,46,104,97,115,68,97,116,97,40,101,41,38,38,40,115,61,74,46,97,99,99,101,115,115,40,101,41,44,117,61,107,46,101,120,116,101,110,100,40,123,125,44,115,41,44,74,46,115,101,116,40,116,44,117,41,41,125,125,102,117,110,99,116,105,111,110,32,73,101,40,110,44,114,44,105,44,111,41,123,114,61,103,46,97,112,112,108,121,40,91,93,44,114,41,59,118,97,114,32,101,44,116,44,97,44,115,44,117,44,108,44,99,61,48,44,102,61,110,46,108,101,110,103,116,104,44,112,61,102,45,49,44,100,61,114,91,48,93,44,104,61,109,40,100,41,59,105,102,40,104,124,124,49,60,102,38,38,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,100,38,38,33,121,46,99,104,101,99,107,67,108,111,110,101,38,38,76,101,46,116,101,115,116,40,100,41,41,114,101,116,117,114,110,32,110,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,110,46,101,113,40,101,41,59,104,38,38,40,114,91,48,93,61,100,46,99,97,108,108,40,116,104,105,115,44,101,44,116,46,104,116,109,108,40,41,41,41,44,73,101,40,116,44,114,44,105,44,111,41,125,41,59,105,102,40,102,38,38,40,116,61,40,101,61,119,101,40,114,44,110,91,48,93,46,111,119,110,101,114,68,111,99,117,109,101,110,116,44,33,49,44,110,44,111,41,41,46,102,105,114,115,116,67,104,105,108,100,44,49,61,61,61,101,46,99,104,105,108,100,78,111,100,101,115,46,108,101,110,103,116,104,38,38,40,101,61,116,41,44,116,124,124,111,41,41,123,102,111,114,40,115,61,40,97,61,107,46,109,97,112,40,118,101,40,101,44,34,115,99,114,105,112,116,34,41,44,80,101,41,41,46,108,101,110,103,116,104,59,99,60,102,59,99,43,43,41,117,61,101,44,99,33,61,61,112,38,38,40,117,61,107,46,99,108,111,110,101,40,117,44,33,48,44,33,48,41,44,115,38,38,107,46,109,101,114,103,101,40,97,44,118,101,40,117,44,34,115,99,114,105,112,116,34,41,41,41,44,105,46,99,97,108,108,40,110,91,99,93,44,117,44,99,41,59,105,102,40,115,41,102,111,114,40,108,61,97,91,97,46,108,101,110,103,116,104,45,49,93,46,111,119,110,101,114,68,111,99,117,109,101,110,116,44,107,46,109,97,112,40,97,44,82,101,41,44,99,61,48,59,99,60,115,59,99,43,43,41,117,61,97,91,99,93,44,104,101,46,116,101,115,116,40,117,46,116,121,112,101,124,124,34,34,41,38,38,33,81,46,97,99,99,101,115,115,40,117,44,34,103,108,111,98,97,108,69,118,97,108,34,41,38,38,107,46,99,111,110,116,97,105,110,115,40,108,44,117,41,38,38,40,117,46,115,114,99,38,38,34,109,111,100,117,108,101,34,33,61,61,40,117,46,116,121,112,101,124,124,34,34,41,46,116,111,76,111,119,101,114,67,97,115,101,40,41,63,107,46,95,101,118,97,108,85,114,108,38,38,33,117,46,110,111,77,111,100,117,108,101,38,38,107,46,95,101,118,97,108,85,114,108,40,117,46,115,114,99,44,123,110,111,110,99,101,58,117,46,110,111,110,99,101,124,124,117,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,110,111,110,99,101,34,41,125,41,58,98,40,117,46,116,101,120,116,67,111,110,116,101,110,116,46,114,101,112,108,97,99,101,40,72,101,44,34,34,41,44,117,44,108,41,41,125,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,87,101,40,101,44,116,44,110,41,123,102,111,114,40,118,97,114,32,114,44,105,61,116,63,107,46,102,105,108,116,101,114,40,116,44,101,41,58,101,44,111,61,48,59,110,117,108,108,33,61,40,114,61,105,91,111,93,41,59,111,43,43,41,110,124,124,49,33,61,61,114,46,110,111,100,101,84,121,112,101,124,124,107,46,99,108,101,97,110,68,97,116,97,40,118,101,40,114,41,41,44,114,46,112,97,114,101,110,116,78,111,100,101,38,38,40,110,38,38,111,101,40,114,41,38,38,121,101,40,118,101,40,114,44,34,115,99,114,105,112,116,34,41,41,44,114,46,112,97,114,101,110,116,78,111,100,101,46,114,101,109,111,118,101,67,104,105,108,100,40,114,41,41,59,114,101,116,117,114,110,32,101,125,107,46,101,120,116,101,110,100,40,123,104,116,109,108,80,114,101,102,105,108,116,101,114,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,46,114,101,112,108,97,99,101,40,106,101,44,34,60,36,49,62,60,47,36,50,62,34,41,125,44,99,108,111,110,101,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,44,105,44,111,44,97,44,115,44,117,44,108,44,99,61,101,46,99,108,111,110,101,78,111,100,101,40,33,48,41,44,102,61,111,101,40,101,41,59,105,102,40,33,40,121,46,110,111,67,108,111,110,101,67,104,101,99,107,101,100,124,124,49,33,61,61,101,46,110,111,100,101,84,121,112,101,38,38,49,49,33,61,61,101,46,110,111,100,101,84,121,112,101,124,124,107,46,105,115,88,77,76,68,111,99,40,101,41,41,41,102,111,114,40,97,61,118,101,40,99,41,44,114,61,48,44,105,61,40,111,61,118,101,40,101,41,41,46,108,101,110,103,116,104,59,114,60,105,59,114,43,43,41,115,61,111,91,114,93,44,117,61,97,91,114,93,44,118,111,105,100,32,48,44,34,105,110,112,117,116,34,61,61,61,40,108,61,117,46,110,111,100,101,78,97,109,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,41,38,38,112,101,46,116,101,115,116,40,115,46,116,121,112,101,41,63,117,46,99,104,101,99,107,101,100,61,115,46,99,104,101,99,107,101,100,58,34,105,110,112,117,116,34,33,61,61,108,38,38,34,116,101,120,116,97,114,101,97,34,33,61,61,108,124,124,40,117,46,100,101,102,97,117,108,116,86,97,108,117,101,61,115,46,100,101,102,97,117,108,116,86,97,108,117,101,41,59,105,102,40,116,41,105,102,40,110,41,102,111,114,40,111,61,111,124,124,118,101,40,101,41,44,97,61,97,124,124,118,101,40,99,41,44,114,61,48,44,105,61,111,46,108,101,110,103,116,104,59,114,60,105,59,114,43,43,41,77,101,40,111,91,114,93,44,97,91,114,93,41,59,101,108,115,101,32,77,101,40,101,44,99,41,59,114,101,116,117,114,110,32,48,60,40,97,61,118,101,40,99,44,34,115,99,114,105,112,116,34,41,41,46,108,101,110,103,116,104,38,38,121,101,40,97,44,33,102,38,38,118,101,40,101,44,34,115,99,114,105,112,116,34,41,41,44,99,125,44,99,108,101,97,110,68,97,116,97,58,102,117,110,99,116,105,111,110,40,101,41,123,102,111,114,40,118,97,114,32,116,44,110,44,114,44,105,61,107,46,101,118,101,110,116,46,115,112,101,99,105,97,108,44,111,61,48,59,118,111,105,100,32,48,33,61,61,40,110,61,101,91,111,93,41,59,111,43,43,41,105,102,40,71,40,110,41,41,123,105,102,40,116,61,110,91,81,46,101,120,112,97,110,100,111,93,41,123,105,102,40,116,46,101,118,101,110,116,115,41,102,111,114,40,114,32,105,110,32,116,46,101,118,101,110,116,115,41,105,91,114,93,63,107,46,101,118,101,110,116,46,114,101,109,111,118,101,40,110,44,114,41,58,107,46,114,101,109,111,118,101,69,118,101,110,116,40,110,44,114,44,116,46,104,97,110,100,108,101,41,59,110,91,81,46,101,120,112,97,110,100,111,93,61,118,111,105,100,32,48,125,110,91,74,46,101,120,112,97,110,100,111,93,38,38,40,110,91,74,46,101,120,112,97,110,100,111,93,61,118,111,105,100,32,48,41,125,125,125,41,44,107,46,102,110,46,101,120,116,101,110,100,40,123,100,101,116,97,99,104,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,87,101,40,116,104,105,115,44,101,44,33,48,41,125,44,114,101,109,111,118,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,87,101,40,116,104,105,115,44,101,41,125,44,116,101,120,116,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,95,40,116,104,105,115,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,118,111,105,100,32,48,61,61,61,101,63,107,46,116,101,120,116,40,116,104,105,115,41,58,116,104,105,115,46,101,109,112,116,121,40,41,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,49,33,61,61,116,104,105,115,46,110,111,100,101,84,121,112,101,38,38,49,49,33,61,61,116,104,105,115,46,110,111,100,101,84,121,112,101,38,38,57,33,61,61,116,104,105,115,46,110,111,100,101,84,121,112,101,124,124,40,116,104,105,115,46,116,101,120,116,67,111,110,116,101,110,116,61,101,41,125,41,125,44,110,117,108,108,44,101,44,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,125,44,97,112,112,101,110,100,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,73,101,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,44,102,117,110,99,116,105,111,110,40,101,41,123,49,33,61,61,116,104,105,115,46,110,111,100,101,84,121,112,101,38,38,49,49,33,61,61,116,104,105,115,46,110,111,100,101,84,121,112,101,38,38,57,33,61,61,116,104,105,115,46,110,111,100,101,84,121,112,101,124,124,79,101,40,116,104,105,115,44,101,41,46,97,112,112,101,110,100,67,104,105,108,100,40,101,41,125,41,125,44,112,114,101,112,101,110,100,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,73,101,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,44,102,117,110,99,116,105,111,110,40,101,41,123,105,102,40,49,61,61,61,116,104,105,115,46,110,111,100,101,84,121,112,101,124,124,49,49,61,61,61,116,104,105,115,46,110,111,100,101,84,121,112,101,124,124,57,61,61,61,116,104,105,115,46,110,111,100,101,84,121,112,101,41,123,118,97,114,32,116,61,79,101,40,116,104,105,115,44,101,41,59,116,46,105,110,115,101,114,116,66,101,102,111,114,101,40,101,44,116,46,102,105,114,115,116,67,104,105,108,100,41,125,125,41,125,44,98,101,102,111,114,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,73,101,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,44,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,112,97,114,101,110,116,78,111,100,101,38,38,116,104,105,115,46,112,97,114,101,110,116,78,111,100,101,46,105,110,115,101,114,116,66,101,102,111,114,101,40,101,44,116,104,105,115,41,125,41,125,44,97,102,116,101,114,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,73,101,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,44,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,112,97,114,101,110,116,78,111,100,101,38,38,116,104,105,115,46,112,97,114,101,110,116,78,111,100,101,46,105,110,115,101,114,116,66,101,102,111,114,101,40,101,44,116,104,105,115,46,110,101,120,116,83,105,98,108,105,110,103,41,125,41,125,44,101,109,112,116,121,58,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,118,97,114,32,101,44,116,61,48,59,110,117,108,108,33,61,40,101,61,116,104,105,115,91,116,93,41,59,116,43,43,41,49,61,61,61,101,46,110,111,100,101,84,121,112,101,38,38,40,107,46,99,108,101,97,110,68,97,116,97,40,118,101,40,101,44,33,49,41,41,44,101,46,116,101,120,116,67,111,110,116,101,110,116,61,34,34,41,59,114,101,116,117,114,110,32,116,104,105,115,125,44,99,108,111,110,101,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,101,61,110,117,108,108,33,61,101,38,38,101,44,116,61,110,117,108,108,61,61,116,63,101,58,116,44,116,104,105,115,46,109,97,112,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,107,46,99,108,111,110,101,40,116,104,105,115,44,101,44,116,41,125,41,125,44,104,116,109,108,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,95,40,116,104,105,115,44,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,116,104,105,115,91,48,93,124,124,123,125,44,110,61,48,44,114,61,116,104,105,115,46,108,101,110,103,116,104,59,105,102,40,118,111,105,100,32,48,61,61,61,101,38,38,49,61,61,61,116,46,110,111,100,101,84,121,112,101,41,114,101,116,117,114,110,32,116,46,105,110,110,101,114,72,84,77,76,59,105,102,40,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,101,38,38,33,113,101,46,116,101,115,116,40,101,41,38,38,33,103,101,91,40,100,101,46,101,120,101,99,40,101,41,124,124,91,34,34,44,34,34,93,41,91,49,93,46,116,111,76,111,119,101,114,67,97,115,101,40,41,93,41,123,101,61,107,46,104,116,109,108,80,114,101,102,105,108,116,101,114,40,101,41,59,116,114,121,123,102,111,114,40,59,110,60,114,59,110,43,43,41,49,61,61,61,40,116,61,116,104,105,115,91,110,93,124,124,123,125,41,46,110,111,100,101,84,121,112,101,38,38,40,107,46,99,108,101,97,110,68,97,116,97,40,118,101,40,116,44,33,49,41,41,44,116,46,105,110,110,101,114,72,84,77,76,61,101,41,59,116,61,48,125,99,97,116,99,104,40,101,41,123,125,125,116,38,38,116,104,105,115,46,101,109,112,116,121,40,41,46,97,112,112,101,110,100,40,101,41,125,44,110,117,108,108,44,101,44,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,125,44,114,101,112,108,97,99,101,87,105,116,104,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,110,61,91,93,59,114,101,116,117,114,110,32,73,101,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,44,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,116,104,105,115,46,112,97,114,101,110,116,78,111,100,101,59,107,46,105,110,65,114,114,97,121,40,116,104,105,115,44,110,41,60,48,38,38,40,107,46,99,108,101,97,110,68,97,116,97,40,118,101,40,116,104,105,115,41,41,44,116,38,38,116,46,114,101,112,108,97,99,101,67,104,105,108,100,40,101,44,116,104,105,115,41,41,125,44,110,41,125,125,41,44,107,46,101,97,99,104,40,123,97,112,112,101,110,100,84,111,58,34,97,112,112,101,110,100,34,44,112,114,101,112,101,110,100,84,111,58,34,112,114,101,112,101,110,100,34,44,105,110,115,101,114,116,66,101,102,111,114,101,58,34,98,101,102,111,114,101,34,44,105,110,115,101,114,116,65,102,116,101,114,58,34,97,102,116,101,114,34,44,114,101,112,108,97,99,101,65,108,108,58,34,114,101,112,108,97,99,101,87,105,116,104,34,125,44,102,117,110,99,116,105,111,110,40,101,44,97,41,123,107,46,102,110,91,101,93,61,102,117,110,99,116,105,111,110,40,101,41,123,102,111,114,40,118,97,114,32,116,44,110,61,91,93,44,114,61,107,40,101,41,44,105,61,114,46,108,101,110,103,116,104,45,49,44,111,61,48,59,111,60,61,105,59,111,43,43,41,116,61,111,61,61,61,105,63,116,104,105,115,58,116,104,105,115,46,99,108,111,110,101,40,33,48,41,44,107,40,114,91,111,93,41,91,97,93,40,116,41,44,117,46,97,112,112,108,121,40,110,44,116,46,103,101,116,40,41,41,59,114,101,116,117,114,110,32,116,104,105,115,46,112,117,115,104,83,116,97,99,107,40,110,41,125,125,41,59,118,97,114,32,36,101,61,110,101,119,32,82,101,103,69,120,112,40,34,94,40,34,43,116,101,43,34,41,40,63,33,112,120,41,91,97,45,122,37,93,43,36,34,44,34,105,34,41,44,70,101,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,46,111,119,110,101,114,68,111,99,117,109,101,110,116,46,100,101,102,97,117,108,116,86,105,101,119,59,114,101,116,117,114,110,32,116,38,38,116,46,111,112,101,110,101,114,124,124,40,116,61,67,41,44,116,46,103,101,116,67,111,109,112,117,116,101,100,83,116,121,108,101,40,101,41,125,44,66,101,61,110,101,119,32,82,101,103,69,120,112,40,114,101,46,106,111,105,110,40,34,124,34,41,44,34,105,34,41,59,102,117,110,99,116,105,111,110,32,95,101,40,101,44,116,44,110,41,123,118,97,114,32,114,44,105,44,111,44,97,44,115,61,101,46,115,116,121,108,101,59,114,101,116,117,114,110,40,110,61,110,124,124,70,101,40,101,41,41,38,38,40,34,34,33,61,61,40,97,61,110,46,103,101,116,80,114,111,112,101,114,116,121,86,97,108,117,101,40,116,41,124,124,110,91,116,93,41,124,124,111,101,40,101,41,124,124,40,97,61,107,46,115,116,121,108,101,40,101,44,116,41,41,44,33,121,46,112,105,120,101,108,66,111,120,83,116,121,108,101,115,40,41,38,38,36,101,46,116,101,115,116,40,97,41,38,38,66,101,46,116,101,115,116,40,116,41,38,38,40,114,61,115,46,119,105,100,116,104,44,105,61,115,46,109,105,110,87,105,100,116,104,44,111,61,115,46,109,97,120,87,105,100,116,104,44,115,46,109,105,110,87,105,100,116,104,61,115,46,109,97,120,87,105,100,116,104,61,115,46,119,105,100,116,104,61,97,44,97,61,110,46,119,105,100,116,104,44,115,46,119,105,100,116,104,61,114,44,115,46,109,105,110,87,105,100,116,104,61,105,44,115,46,109,97,120,87,105,100,116,104,61,111,41,41,44,118,111,105,100,32,48,33,61,61,97,63,97,43,34,34,58,97,125,102,117,110,99,116,105,111,110,32,122,101,40,101,44,116,41,123,114,101,116,117,114,110,123,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,105,102,40,33,101,40,41,41,114,101,116,117,114,110,40,116,104,105,115,46,103,101,116,61,116,41,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,59,100,101,108,101,116,101,32,116,104,105,115,46,103,101,116,125,125,125,33,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,101,40,41,123,105,102,40,117,41,123,115,46,115,116,121,108,101,46,99,115,115,84,101,120,116,61,34,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,108,101,102,116,58,45,49,49,49,49,49,112,120,59,119,105,100,116,104,58,54,48,112,120,59,109,97,114,103,105,110,45,116,111,112,58,49,112,120,59,112,97,100,100,105,110,103,58,48,59,98,111,114,100,101,114,58,48,34,44,117,46,115,116,121,108,101,46,99,115,115,84,101,120,116,61,34,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,98,111,120,45,115,105,122,105,110,103,58,98,111,114,100,101,114,45,98,111,120,59,111,118,101,114,102,108,111,119,58,115,99,114,111,108,108,59,109,97,114,103,105,110,58,97,117,116,111,59,98,111,114,100,101,114,58,49,112,120,59,112,97,100,100,105,110,103,58,49,112,120,59,119,105,100,116,104,58,54,48,37,59,116,111,112,58,49,37,34,44,105,101,46,97,112,112,101,110,100,67,104,105,108,100,40,115,41,46,97,112,112,101,110,100,67,104,105,108,100,40,117,41,59,118,97,114,32,101,61,67,46,103,101,116,67,111,109,112,117,116,101,100,83,116,121,108,101,40,117,41,59,110,61,34,49,37,34,33,61,61,101,46,116,111,112,44,97,61,49,50,61,61,61,116,40,101,46,109,97,114,103,105,110,76,101,102,116,41,44,117,46,115,116,121,108,101,46,114,105,103,104,116,61,34,54,48,37,34,44,111,61,51,54,61,61,61,116,40,101,46,114,105,103,104,116,41,44,114,61,51,54,61,61,61,116,40,101,46,119,105,100,116,104,41,44,117,46,115,116,121,108,101,46,112,111,115,105,116,105,111,110,61,34,97,98,115,111,108,117,116,101,34,44,105,61,49,50,61,61,61,116,40,117,46,111,102,102,115,101,116,87,105,100,116,104,47,51,41,44,105,101,46,114,101,109,111,118,101,67,104,105,108,100,40,115,41,44,117,61,110,117,108,108,125,125,102,117,110,99,116,105,111,110,32,116,40,101,41,123,114,101,116,117,114,110,32,77,97,116,104,46,114,111,117,110,100,40,112,97,114,115,101,70,108,111,97,116,40,101,41,41,125,118,97,114,32,110,44,114,44,105,44,111,44,97,44,115,61,69,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,44,117,61,69,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,117,46,115,116,121,108,101,38,38,40,117,46,115,116,121,108,101,46,98,97,99,107,103,114,111,117,110,100,67,108,105,112,61,34,99,111,110,116,101,110,116,45,98,111,120,34,44,117,46,99,108,111,110,101,78,111,100,101,40,33,48,41,46,115,116,121,108,101,46,98,97,99,107,103,114,111,117,110,100,67,108,105,112,61,34,34,44,121,46,99,108,101,97,114,67,108,111,110,101,83,116,121,108,101,61,34,99,111,110,116,101,110,116,45,98,111,120,34,61,61,61,117,46,115,116,121,108,101,46,98,97,99,107,103,114,111,117,110,100,67,108,105,112,44,107,46,101,120,116,101,110,100,40,121,44,123,98,111,120,83,105,122,105,110,103,82,101,108,105,97,98,108,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,101,40,41,44,114,125,44,112,105,120,101,108,66,111,120,83,116,121,108,101,115,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,101,40,41,44,111,125,44,112,105,120,101,108,80,111,115,105,116,105,111,110,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,101,40,41,44,110,125,44,114,101,108,105,97,98,108,101,77,97,114,103,105,110,76,101,102,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,101,40,41,44,97,125,44,115,99,114,111,108,108,98,111,120,83,105,122,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,101,40,41,44,105,125,125,41,41,125,40,41,59,118,97,114,32,85,101,61,91,34,87,101,98,107,105,116,34,44,34,77,111,122,34,44,34,109,115,34,93,44,88,101,61,69,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,46,115,116,121,108,101,44,86,101,61,123,125,59,102,117,110,99,116,105,111,110,32,71,101,40,101,41,123,118,97,114,32,116,61,107,46,99,115,115,80,114,111,112,115,91,101,93,124,124,86,101,91,101,93,59,114,101,116,117,114,110,32,116,124,124,40,101,32,105,110,32,88,101,63,101,58,86,101,91,101,93,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,91,48,93,46,116,111,85,112,112,101,114,67,97,115,101,40,41,43,101,46,115,108,105,99,101,40,49,41,44,110,61,85,101,46,108,101,110,103,116,104,59,119,104,105,108,101,40,110,45,45,41,105,102,40,40,101,61,85,101,91,110,93,43,116,41,105,110,32,88,101,41,114,101,116,117,114,110,32,101,125,40,101,41,124,124,101,41,125,118,97,114,32,89,101,61,47,94,40,110,111,110,101,124,116,97,98,108,101,40,63,33,45,99,91,101,97,93,41,46,43,41,47,44,81,101,61,47,94,45,45,47,44,74,101,61,123,112,111,115,105,116,105,111,110,58,34,97,98,115,111,108,117,116,101,34,44,118,105,115,105,98,105,108,105,116,121,58,34,104,105,100,100,101,110,34,44,100,105,115,112,108,97,121,58,34,98,108,111,99,107,34,125,44,75,101,61,123,108,101,116,116,101,114,83,112,97,99,105,110,103,58,34,48,34,44,102,111,110,116,87,101,105,103,104,116,58,34,52,48,48,34,125,59,102,117,110,99,116,105,111,110,32,90,101,40,101,44,116,44,110,41,123,118,97,114,32,114,61,110,101,46,101,120,101,99,40,116,41,59,114,101,116,117,114,110,32,114,63,77,97,116,104,46,109,97,120,40,48,44,114,91,50,93,45,40,110,124,124,48,41,41,43,40,114,91,51,93,124,124,34,112,120,34,41,58,116,125,102,117,110,99,116,105,111,110,32,101,116,40,101,44,116,44,110,44,114,44,105,44,111,41,123,118,97,114,32,97,61,34,119,105,100,116,104,34,61,61,61,116,63,49,58,48,44,115,61,48,44,117,61,48,59,105,102,40,110,61,61,61,40,114,63,34,98,111,114,100,101,114,34,58,34,99,111,110,116,101,110,116,34,41,41,114,101,116,117,114,110,32,48,59,102,111,114,40,59,97,60,52,59,97,43,61,50,41,34,109,97,114,103,105,110,34,61,61,61,110,38,38,40,117,43,61,107,46,99,115,115,40,101,44,110,43,114,101,91,97,93,44,33,48,44,105,41,41,44,114,63,40,34,99,111,110,116,101,110,116,34,61,61,61,110,38,38,40,117,45,61,107,46,99,115,115,40,101,44,34,112,97,100,100,105,110,103,34,43,114,101,91,97,93,44,33,48,44,105,41,41,44,34,109,97,114,103,105,110,34,33,61,61,110,38,38,40,117,45,61,107,46,99,115,115,40,101,44,34,98,111,114,100,101,114,34,43,114,101,91,97,93,43,34,87,105,100,116,104,34,44,33,48,44,105,41,41,41,58,40,117,43,61,107,46,99,115,115,40,101,44,34,112,97,100,100,105,110,103,34,43,114,101,91,97,93,44,33,48,44,105,41,44,34,112,97,100,100,105,110,103,34,33,61,61,110,63,117,43,61,107,46,99,115,115,40,101,44,34,98,111,114,100,101,114,34,43,114,101,91,97,93,43,34,87,105,100,116,104,34,44,33,48,44,105,41,58,115,43,61,107,46,99,115,115,40,101,44,34,98,111,114,100,101,114,34,43,114,101,91,97,93,43,34,87,105,100,116,104,34,44,33,48,44,105,41,41,59,114,101,116,117,114,110,33,114,38,38,48,60,61,111,38,38,40,117,43,61,77,97,116,104,46,109,97,120,40,48,44,77,97,116,104,46,99,101,105,108,40,101,91,34,111,102,102,115,101,116,34,43,116,91,48,93,46,116,111,85,112,112,101,114,67,97,115,101,40,41,43,116,46,115,108,105,99,101,40,49,41,93,45,111,45,117,45,115,45,46,53,41,41,124,124,48,41,44,117,125,102,117,110,99,116,105,111,110,32,116,116,40,101,44,116,44,110,41,123,118,97,114,32,114,61,70,101,40,101,41,44,105,61,40,33,121,46,98,111,120,83,105,122,105,110,103,82,101,108,105,97,98,108,101,40,41,124,124,110,41,38,38,34,98,111,114,100,101,114,45,98,111,120,34,61,61,61,107,46,99,115,115,40,101,44,34,98,111,120,83,105,122,105,110,103,34,44,33,49,44,114,41,44,111,61,105,44,97,61,95,101,40,101,44,116,44,114,41,44,115,61,34,111,102,102,115,101,116,34,43,116,91,48,93,46,116,111,85,112,112,101,114,67,97,115,101,40,41,43,116,46,115,108,105,99,101,40,49,41,59,105,102,40,36,101,46,116,101,115,116,40,97,41,41,123,105,102,40,33,110,41,114,101,116,117,114,110,32,97,59,97,61,34,97,117,116,111,34,125,114,101,116,117,114,110,40,33,121,46,98,111,120,83,105,122,105,110,103,82,101,108,105,97,98,108,101,40,41,38,38,105,124,124,34,97,117,116,111,34,61,61,61,97,124,124,33,112,97,114,115,101,70,108,111,97,116,40,97,41,38,38,34,105,110,108,105,110,101,34,61,61,61,107,46,99,115,115,40,101,44,34,100,105,115,112,108,97,121,34,44,33,49,44,114,41,41,38,38,101,46,103,101,116,67,108,105,101,110,116,82,101,99,116,115,40,41,46,108,101,110,103,116,104,38,38,40,105,61,34,98,111,114,100,101,114,45,98,111,120,34,61,61,61,107,46,99,115,115,40,101,44,34,98,111,120,83,105,122,105,110,103,34,44,33,49,44,114,41,44,40,111,61,115,32,105,110,32,101,41,38,38,40,97,61,101,91,115,93,41,41,44,40,97,61,112,97,114,115,101,70,108,111,97,116,40,97,41,124,124,48,41,43,101,116,40,101,44,116,44,110,124,124,40,105,63,34,98,111,114,100,101,114,34,58,34,99,111,110,116,101,110,116,34,41,44,111,44,114,44,97,41,43,34,112,120,34,125,102,117,110,99,116,105,111,110,32,110,116,40,101,44,116,44,110,44,114,44,105,41,123,114,101,116,117,114,110,32,110,101,119,32,110,116,46,112,114,111,116,111,116,121,112,101,46,105,110,105,116,40,101,44,116,44,110,44,114,44,105,41,125,107,46,101,120,116,101,110,100,40,123,99,115,115,72,111,111,107,115,58,123,111,112,97,99,105,116,121,58,123,103,101,116,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,102,40,116,41,123,118,97,114,32,110,61,95,101,40,101,44,34,111,112,97,99,105,116,121,34,41,59,114,101,116,117,114,110,34,34,61,61,61,110,63,34,49,34,58,110,125,125,125,125,44,99,115,115,78,117,109,98,101,114,58,123,97,110,105,109,97,116,105,111,110,73,116,101,114,97,116,105,111,110,67,111,117,110,116,58,33,48,44,99,111,108,117,109,110,67,111,117,110,116,58,33,48,44,102,105,108,108,79,112,97,99,105,116,121,58,33,48,44,102,108,101,120,71,114,111,119,58,33,48,44,102,108,101,120,83,104,114,105,110,107,58,33,48,44,102,111,110,116,87,101,105,103,104,116,58,33,48,44,103,114,105,100,65,114,101,97,58,33,48,44,103,114,105,100,67,111,108,117,109,110,58,33,48,44,103,114,105,100,67,111,108,117,109,110,69,110,100,58,33,48,44,103,114,105,100,67,111,108,117,109,110,83,116,97,114,116,58,33,48,44,103,114,105,100,82,111,119,58,33,48,44,103,114,105,100,82,111,119,69,110,100,58,33,48,44,103,114,105,100,82,111,119,83,116,97,114,116,58,33,48,44,108,105,110,101,72,101,105,103,104,116,58,33,48,44,111,112,97,99,105,116,121,58,33,48,44,111,114,100,101,114,58,33,48,44,111,114,112,104,97,110,115,58,33,48,44,119,105,100,111,119,115,58,33,48,44,122,73,110,100,101,120,58,33,48,44,122,111,111,109,58,33,48,125,44,99,115,115,80,114,111,112,115,58,123,125,44,115,116,121,108,101,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,114,41,123,105,102,40,101,38,38,51,33,61,61,101,46,110,111,100,101,84,121,112,101,38,38,56,33,61,61,101,46,110,111,100,101,84,121,112,101,38,38,101,46,115,116,121,108,101,41,123,118,97,114,32,105,44,111,44,97,44,115,61,86,40,116,41,44,117,61,81,101,46,116,101,115,116,40,116,41,44,108,61,101,46,115,116,121,108,101,59,105,102,40,117,124,124,40,116,61,71,101,40,115,41,41,44,97,61,107,46,99,115,115,72,111,111,107,115,91,116,93,124,124,107,46,99,115,115,72,111,111,107,115,91,115,93,44,118,111,105,100,32,48,61,61,61,110,41,114,101,116,117,114,110,32,97,38,38,34,103,101,116,34,105,110,32,97,38,38,118,111,105,100,32,48,33,61,61,40,105,61,97,46,103,101,116,40,101,44,33,49,44,114,41,41,63,105,58,108,91,116,93,59,34,115,116,114,105,110,103,34,61,61,61,40,111,61,116,121,112,101,111,102,32,110,41,38,38,40,105,61,110,101,46,101,120,101,99,40,110,41,41,38,38,105,91,49,93,38,38,40,110,61,108,101,40,101,44,116,44,105,41,44,111,61,34,110,117,109,98,101,114,34,41,44,110,117,108,108,33,61,110,38,38,110,61,61,110,38,38,40,34,110,117,109,98,101,114,34,33,61,61,111,124,124,117,124,124,40,110,43,61,105,38,38,105,91,51,93,124,124,40,107,46,99,115,115,78,117,109,98,101,114,91,115,93,63,34,34,58,34,112,120,34,41,41,44,121,46,99,108,101,97,114,67,108,111,110,101,83,116,121,108,101,124,124,34,34,33,61,61,110,124,124,48,33,61,61,116,46,105,110,100,101,120,79,102,40,34,98,97,99,107,103,114,111,117,110,100,34,41,124,124,40,108,91,116,93,61,34,105,110,104,101,114,105,116,34,41,44,97,38,38,34,115,101,116,34,105,110,32,97,38,38,118,111,105,100,32,48,61,61,61,40,110,61,97,46,115,101,116,40,101,44,110,44,114,41,41,124,124,40,117,63,108,46,115,101,116,80,114,111,112,101,114,116,121,40,116,44,110,41,58,108,91,116,93,61,110,41,41,125,125,44,99,115,115,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,114,41,123,118,97,114,32,105,44,111,44,97,44,115,61,86,40,116,41,59,114,101,116,117,114,110,32,81,101,46,116,101,115,116,40,116,41,124,124,40,116,61,71,101,40,115,41,41,44,40,97,61,107,46,99,115,115,72,111,111,107,115,91,116,93,124,124,107,46,99,115,115,72,111,111,107,115,91,115,93,41,38,38,34,103,101,116,34,105,110,32,97,38,38,40,105,61,97,46,103,101,116,40,101,44,33,48,44,110,41,41,44,118,111,105,100,32,48,61,61,61,105,38,38,40,105,61,95,101,40,101,44,116,44,114,41,41,44,34,110,111,114,109,97,108,34,61,61,61,105,38,38,116,32,105,110,32,75,101,38,38,40,105,61,75,101,91,116,93,41,44,34,34,61,61,61,110,124,124,110,63,40,111,61,112,97,114,115,101,70,108,111,97,116,40,105,41,44,33,48,61,61,61,110,124,124,105,115,70,105,110,105,116,101,40,111,41,63,111,124,124,48,58,105,41,58,105,125,125,41,44,107,46,101,97,99,104,40,91,34,104,101,105,103,104,116,34,44,34,119,105,100,116,104,34,93,44,102,117,110,99,116,105,111,110,40,101,44,117,41,123,107,46,99,115,115,72,111,111,107,115,91,117,93,61,123,103,101,116,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,105,102,40,116,41,114,101,116,117,114,110,33,89,101,46,116,101,115,116,40,107,46,99,115,115,40,101,44,34,100,105,115,112,108,97,121,34,41,41,124,124,101,46,103,101,116,67,108,105,101,110,116,82,101,99,116,115,40,41,46,108,101,110,103,116,104,38,38,101,46,103,101,116,66,111,117,110,100,105,110,103,67,108,105,101,110,116,82,101,99,116,40,41,46,119,105,100,116,104,63,116,116,40,101,44,117,44,110,41,58,117,101,40,101,44,74,101,44,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,116,40,101,44,117,44,110,41,125,41,125,44,115,101,116,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,44,105,61,70,101,40,101,41,44,111,61,33,121,46,115,99,114,111,108,108,98,111,120,83,105,122,101,40,41,38,38,34,97,98,115,111,108,117,116,101,34,61,61,61,105,46,112,111,115,105,116,105,111,110,44,97,61,40,111,124,124,110,41,38,38,34,98,111,114,100,101,114,45,98,111,120,34,61,61,61,107,46,99,115,115,40,101,44,34,98,111,120,83,105,122,105,110,103,34,44,33,49,44,105,41,44,115,61,110,63,101,116,40,101,44,117,44,110,44,97,44,105,41,58,48,59,114,101,116,117,114,110,32,97,38,38,111,38,38,40,115,45,61,77,97,116,104,46,99,101,105,108,40,101,91,34,111,102,102,115,101,116,34,43,117,91,48,93,46,116,111,85,112,112,101,114,67,97,115,101,40,41,43,117,46,115,108,105,99,101,40,49,41,93,45,112,97,114,115,101,70,108,111,97,116,40,105,91,117,93,41,45,101,116,40,101,44,117,44,34,98,111,114,100,101,114,34,44,33,49,44,105,41,45,46,53,41,41,44,115,38,38,40,114,61,110,101,46,101,120,101,99,40,116,41,41,38,38,34,112,120,34,33,61,61,40,114,91,51,93,124,124,34,112,120,34,41,38,38,40,101,46,115,116,121,108,101,91,117,93,61,116,44,116,61,107,46,99,115,115,40,101,44,117,41,41,44,90,101,40,48,44,116,44,115,41,125,125,125,41,44,107,46,99,115,115,72,111,111,107,115,46,109,97,114,103,105,110,76,101,102,116,61,122,101,40,121,46,114,101,108,105,97,98,108,101,77,97,114,103,105,110,76,101,102,116,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,102,40,116,41,114,101,116,117,114,110,40,112,97,114,115,101,70,108,111,97,116,40,95,101,40,101,44,34,109,97,114,103,105,110,76,101,102,116,34,41,41,124,124,101,46,103,101,116,66,111,117,110,100,105,110,103,67,108,105,101,110,116,82,101,99,116,40,41,46,108,101,102,116,45,117,101,40,101,44,123,109,97,114,103,105,110,76,101,102,116,58,48,125,44,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,101,46,103,101,116,66,111,117,110,100,105,110,103,67,108,105,101,110,116,82,101,99,116,40,41,46,108,101,102,116,125,41,41,43,34,112,120,34,125,41,44,107,46,101,97,99,104,40,123,109,97,114,103,105,110,58,34,34,44,112,97,100,100,105,110,103,58,34,34,44,98,111,114,100,101,114,58,34,87,105,100,116,104,34,125,44,102,117,110,99,116,105,111,110,40,105,44,111,41,123,107,46,99,115,115,72,111,111,107,115,91,105,43,111,93,61,123,101,120,112,97,110,100,58,102,117,110,99,116,105,111,110,40,101,41,123,102,111,114,40,118,97,114,32,116,61,48,44,110,61,123,125,44,114,61,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,101,63,101,46,115,112,108,105,116,40,34,32,34,41,58,91,101,93,59,116,60,52,59,116,43,43,41,110,91,105,43,114,101,91,116,93,43,111,93,61,114,91,116,93,124,124,114,91,116,45,50,93,124,124,114,91,48,93,59,114,101,116,117,114,110,32,110,125,125,44,34,109,97,114,103,105,110,34,33,61,61,105,38,38,40,107,46,99,115,115,72,111,111,107,115,91,105,43,111,93,46,115,101,116,61,90,101,41,125,41,44,107,46,102,110,46,101,120,116,101,110,100,40,123,99,115,115,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,95,40,116,104,105,115,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,44,105,44,111,61,123,125,44,97,61,48,59,105,102,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,116,41,41,123,102,111,114,40,114,61,70,101,40,101,41,44,105,61,116,46,108,101,110,103,116,104,59,97,60,105,59,97,43,43,41,111,91,116,91,97,93,93,61,107,46,99,115,115,40,101,44,116,91,97,93,44,33,49,44,114,41,59,114,101,116,117,114,110,32,111,125,114,101,116,117,114,110,32,118,111,105,100,32,48,33,61,61,110,63,107,46,115,116,121,108,101,40,101,44,116,44,110,41,58,107,46,99,115,115,40,101,44,116,41,125,44,101,44,116,44,49,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,125,125,41,44,40,40,107,46,84,119,101,101,110,61,110,116,41,46,112,114,111,116,111,116,121,112,101,61,123,99,111,110,115,116,114,117,99,116,111,114,58,110,116,44,105,110,105,116,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,114,44,105,44,111,41,123,116,104,105,115,46,101,108,101,109,61,101,44,116,104,105,115,46,112,114,111,112,61,110,44,116,104,105,115,46,101,97,115,105,110,103,61,105,124,124,107,46,101,97,115,105,110,103,46,95,100,101,102,97,117,108,116,44,116,104,105,115,46,111,112,116,105,111,110,115,61,116,44,116,104,105,115,46,115,116,97,114,116,61,116,104,105,115,46,110,111,119,61,116,104,105,115,46,99,117,114,40,41,44,116,104,105,115,46,101,110,100,61,114,44,116,104,105,115,46,117,110,105,116,61,111,124,124,40,107,46,99,115,115,78,117,109,98,101,114,91,110,93,63,34,34,58,34,112,120,34,41,125,44,99,117,114,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,110,116,46,112,114,111,112,72,111,111,107,115,91,116,104,105,115,46,112,114,111,112,93,59,114,101,116,117,114,110,32,101,38,38,101,46,103,101,116,63,101,46,103,101,116,40,116,104,105,115,41,58,110,116,46,112,114,111,112,72,111,111,107,115,46,95,100,101,102,97,117,108,116,46,103,101,116,40,116,104,105,115,41,125,44,114,117,110,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,44,110,61,110,116,46,112,114,111,112,72,111,111,107,115,91,116,104,105,115,46,112,114,111,112,93,59,114,101,116,117,114,110,32,116,104,105,115,46,111,112,116,105,111,110,115,46,100,117,114,97,116,105,111,110,63,116,104,105,115,46,112,111,115,61,116,61,107,46,101,97,115,105,110,103,91,116,104,105,115,46,101,97,115,105,110,103,93,40,101,44,116,104,105,115,46,111,112,116,105,111,110,115,46,100,117,114,97,116,105,111,110,42,101,44,48,44,49,44,116,104,105,115,46,111,112,116,105,111,110,115,46,100,117,114,97,116,105,111,110,41,58,116,104,105,115,46,112,111,115,61,116,61,101,44,116,104,105,115,46,110,111,119,61,40,116,104,105,115,46,101,110,100,45,116,104,105,115,46,115,116,97,114,116,41,42,116,43,116,104,105,115,46,115,116,97,114,116,44,116,104,105,115,46,111,112,116,105,111,110,115,46,115,116,101,112,38,38,116,104,105,115,46,111,112,116,105,111,110,115,46,115,116,101,112,46,99,97,108,108,40,116,104,105,115,46,101,108,101,109,44,116,104,105,115,46,110,111,119,44,116,104,105,115,41,44,110,38,38,110,46,115,101,116,63,110,46,115,101,116,40,116,104,105,115,41,58,110,116,46,112,114,111,112,72,111,111,107,115,46,95,100,101,102,97,117,108,116,46,115,101,116,40,116,104,105,115,41,44,116,104,105,115,125,125,41,46,105,110,105,116,46,112,114,111,116,111,116,121,112,101,61,110,116,46,112,114,111,116,111,116,121,112,101,44,40,110,116,46,112,114,111,112,72,111,111,107,115,61,123,95,100,101,102,97,117,108,116,58,123,103,101,116,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,59,114,101,116,117,114,110,32,49,33,61,61,101,46,101,108,101,109,46,110,111,100,101,84,121,112,101,124,124,110,117,108,108,33,61,101,46,101,108,101,109,91,101,46,112,114,111,112,93,38,38,110,117,108,108,61,61,101,46,101,108,101,109,46,115,116,121,108,101,91,101,46,112,114,111,112,93,63,101,46,101,108,101,109,91,101,46,112,114,111,112,93,58,40,116,61,107,46,99,115,115,40,101,46,101,108,101,109,44,101,46,112,114,111,112,44,34,34,41,41,38,38,34,97,117,116,111,34,33,61,61,116,63,116,58,48,125,44,115,101,116,58,102,117,110,99,116,105,111,110,40,101,41,123,107,46,102,120,46,115,116,101,112,91,101,46,112,114,111,112,93,63,107,46,102,120,46,115,116,101,112,91,101,46,112,114,111,112,93,40,101,41,58,49,33,61,61,101,46,101,108,101,109,46,110,111,100,101,84,121,112,101,124,124,33,107,46,99,115,115,72,111,111,107,115,91,101,46,112,114,111,112,93,38,38,110,117,108,108,61,61,101,46,101,108,101,109,46,115,116,121,108,101,91,71,101,40,101,46,112,114,111,112,41,93,63,101,46,101,108,101,109,91,101,46,112,114,111,112,93,61,101,46,110,111,119,58,107,46,115,116,121,108,101,40,101,46,101,108,101,109,44,101,46,112,114,111,112,44,101,46,110,111,119,43,101,46,117,110,105,116,41,125,125,125,41,46,115,99,114,111,108,108,84,111,112,61,110,116,46,112,114,111,112,72,111,111,107,115,46,115,99,114,111,108,108,76,101,102,116,61,123,115,101,116,58,102,117,110,99,116,105,111,110,40,101,41,123,101,46,101,108,101,109,46,110,111,100,101,84,121,112,101,38,38,101,46,101,108,101,109,46,112,97,114,101,110,116,78,111,100,101,38,38,40,101,46,101,108,101,109,91,101,46,112,114,111,112,93,61,101,46,110,111,119,41,125,125,44,107,46,101,97,115,105,110,103,61,123,108,105,110,101,97,114,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,125,44,115,119,105,110,103,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,46,53,45,77,97,116,104,46,99,111,115,40,101,42,77,97,116,104,46,80,73,41,47,50,125,44,95,100,101,102,97,117,108,116,58,34,115,119,105,110,103,34,125,44,107,46,102,120,61,110,116,46,112,114,111,116,111,116,121,112,101,46,105,110,105,116,44,107,46,102,120,46,115,116,101,112,61,123,125,59,118,97,114,32,114,116,44,105,116,44,111,116,44,97,116,44,115,116,61,47,94,40,63,58,116,111,103,103,108,101,124,115,104,111,119,124,104,105,100,101,41,36,47,44,117,116,61,47,113,117,101,117,101,72,111,111,107,115,36,47,59,102,117,110,99,116,105,111,110,32,108,116,40,41,123,105,116,38,38,40,33,49,61,61,61,69,46,104,105,100,100,101,110,38,38,67,46,114,101,113,117,101,115,116,65,110,105,109,97,116,105,111,110,70,114,97,109,101,63,67,46,114,101,113,117,101,115,116,65,110,105,109,97,116,105,111,110,70,114,97,109,101,40,108,116,41,58,67,46,115,101,116,84,105,109,101,111,117,116,40,108,116,44,107,46,102,120,46,105,110,116,101,114,118,97,108,41,44,107,46,102,120,46,116,105,99,107,40,41,41,125,102,117,110,99,116,105,111,110,32,99,116,40,41,123,114,101,116,117,114,110,32,67,46,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,40,41,123,114,116,61,118,111,105,100,32,48,125,41,44,114,116,61,68,97,116,101,46,110,111,119,40,41,125,102,117,110,99,116,105,111,110,32,102,116,40,101,44,116,41,123,118,97,114,32,110,44,114,61,48,44,105,61,123,104,101,105,103,104,116,58,101,125,59,102,111,114,40,116,61,116,63,49,58,48,59,114,60,52,59,114,43,61,50,45,116,41,105,91,34,109,97,114,103,105,110,34,43,40,110,61,114,101,91,114,93,41,93,61,105,91,34,112,97,100,100,105,110,103,34,43,110,93,61,101,59,114,101,116,117,114,110,32,116,38,38,40,105,46,111,112,97,99,105,116,121,61,105,46,119,105,100,116,104,61,101,41,44,105,125,102,117,110,99,116,105,111,110,32,112,116,40,101,44,116,44,110,41,123,102,111,114,40,118,97,114,32,114,44,105,61,40,100,116,46,116,119,101,101,110,101,114,115,91,116,93,124,124,91,93,41,46,99,111,110,99,97,116,40,100,116,46,116,119,101,101,110,101,114,115,91,34,42,34,93,41,44,111,61,48,44,97,61,105,46,108,101,110,103,116,104,59,111,60,97,59,111,43,43,41,105,102,40,114,61,105,91,111,93,46,99,97,108,108,40,110,44,116,44,101,41,41,114,101,116,117,114,110,32,114,125,102,117,110,99,116,105,111,110,32,100,116,40,111,44,101,44,116,41,123,118,97,114,32,110,44,97,44,114,61,48,44,105,61,100,116,46,112,114,101,102,105,108,116,101,114,115,46,108,101,110,103,116,104,44,115,61,107,46,68,101,102,101,114,114,101,100,40,41,46,97,108,119,97,121,115,40,102,117,110,99,116,105,111,110,40,41,123,100,101,108,101,116,101,32,117,46,101,108,101,109,125,41,44,117,61,102,117,110,99,116,105,111,110,40,41,123,105,102,40,97,41,114,101,116,117,114,110,33,49,59,102,111,114,40,118,97,114,32,101,61,114,116,124,124,99,116,40,41,44,116,61,77,97,116,104,46,109,97,120,40,48,44,108,46,115,116,97,114,116,84,105,109,101,43,108,46,100,117,114,97,116,105,111,110,45,101,41,44,110,61,49,45,40,116,47,108,46,100,117,114,97,116,105,111,110,124,124,48,41,44,114,61,48,44,105,61,108,46,116,119,101,101,110,115,46,108,101,110,103,116,104,59,114,60,105,59,114,43,43,41,108,46,116,119,101,101,110,115,91,114,93,46,114,117,110,40,110,41,59,114,101,116,117,114,110,32,115,46,110,111,116,105,102,121,87,105,116,104,40,111,44,91,108,44,110,44,116,93,41,44,110,60,49,38,38,105,63,116,58,40,105,124,124,115,46,110,111,116,105,102,121,87,105,116,104,40,111,44,91,108,44,49,44,48,93,41,44,115,46,114,101,115,111,108,118,101,87,105,116,104,40,111,44,91,108,93,41,44,33,49,41,125,44,108,61,115,46,112,114,111,109,105,115,101,40,123,101,108,101,109,58,111,44,112,114,111,112,115,58,107,46,101,120,116,101,110,100,40,123,125,44,101,41,44,111,112,116,115,58,107,46,101,120,116,101,110,100,40,33,48,44,123,115,112,101,99,105,97,108,69,97,115,105,110,103,58,123,125,44,101,97,115,105,110,103,58,107,46,101,97,115,105,110,103,46,95,100,101,102,97,117,108,116,125,44,116,41,44,111,114,105,103,105,110,97,108,80,114,111,112,101,114,116,105,101,115,58,101,44,111,114,105,103,105,110,97,108,79,112,116,105,111,110,115,58,116,44,115,116,97,114,116,84,105,109,101,58,114,116,124,124,99,116,40,41,44,100,117,114,97,116,105,111,110,58,116,46,100,117,114,97,116,105,111,110,44,116,119,101,101,110,115,58,91,93,44,99,114,101,97,116,101,84,119,101,101,110,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,61,107,46,84,119,101,101,110,40,111,44,108,46,111,112,116,115,44,101,44,116,44,108,46,111,112,116,115,46,115,112,101,99,105,97,108,69,97,115,105,110,103,91,101,93,124,124,108,46,111,112,116,115,46,101,97,115,105,110,103,41,59,114,101,116,117,114,110,32,108,46,116,119,101,101,110,115,46,112,117,115,104,40,110,41,44,110,125,44,115,116,111,112,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,48,44,110,61,101,63,108,46,116,119,101,101,110,115,46,108,101,110,103,116,104,58,48,59,105,102,40,97,41,114,101,116,117,114,110,32,116,104,105,115,59,102,111,114,40,97,61,33,48,59,116,60,110,59,116,43,43,41,108,46,116,119,101,101,110,115,91,116,93,46,114,117,110,40,49,41,59,114,101,116,117,114,110,32,101,63,40,115,46,110,111,116,105,102,121,87,105,116,104,40,111,44,91,108,44,49,44,48,93,41,44,115,46,114,101,115,111,108,118,101,87,105,116,104,40,111,44,91,108,44,101,93,41,41,58,115,46,114,101,106,101,99,116,87,105,116,104,40,111,44,91,108,44,101,93,41,44,116,104,105,115,125,125,41,44,99,61,108,46,112,114,111,112,115,59,102,111,114,40,33,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,44,114,44,105,44,111,44,97,59,102,111,114,40,110,32,105,110,32,101,41,105,102,40,105,61,116,91,114,61,86,40,110,41,93,44,111,61,101,91,110,93,44,65,114,114,97,121,46,105,115,65,114,114,97,121,40,111,41,38,38,40,105,61,111,91,49,93,44,111,61,101,91,110,93,61,111,91,48,93,41,44,110,33,61,61,114,38,38,40,101,91,114,93,61,111,44,100,101,108,101,116,101,32,101,91,110,93,41,44,40,97,61,107,46,99,115,115,72,111,111,107,115,91,114,93,41,38,38,34,101,120,112,97,110,100,34,105,110,32,97,41,102,111,114,40,110,32,105,110,32,111,61,97,46,101,120,112,97,110,100,40,111,41,44,100,101,108,101,116,101,32,101,91,114,93,44,111,41,110,32,105,110,32,101,124,124,40,101,91,110,93,61,111,91,110,93,44,116,91,110,93,61,105,41,59,101,108,115,101,32,116,91,114,93,61,105,125,40,99,44,108,46,111,112,116,115,46,115,112,101,99,105,97,108,69,97,115,105,110,103,41,59,114,60,105,59,114,43,43,41,105,102,40,110,61,100,116,46,112,114,101,102,105,108,116,101,114,115,91,114,93,46,99,97,108,108,40,108,44,111,44,99,44,108,46,111,112,116,115,41,41,114,101,116,117,114,110,32,109,40,110,46,115,116,111,112,41,38,38,40,107,46,95,113,117,101,117,101,72,111,111,107,115,40,108,46,101,108,101,109,44,108,46,111,112,116,115,46,113,117,101,117,101,41,46,115,116,111,112,61,110,46,115,116,111,112,46,98,105,110,100,40,110,41,41,44,110,59,114,101,116,117,114,110,32,107,46,109,97,112,40,99,44,112,116,44,108,41,44,109,40,108,46,111,112,116,115,46,115,116,97,114,116,41,38,38,108,46,111,112,116,115,46,115,116,97,114,116,46,99,97,108,108,40,111,44,108,41,44,108,46,112,114,111,103,114,101,115,115,40,108,46,111,112,116,115,46,112,114,111,103,114,101,115,115,41,46,100,111,110,101,40,108,46,111,112,116,115,46,100,111,110,101,44,108,46,111,112,116,115,46,99,111,109,112,108,101,116,101,41,46,102,97,105,108,40,108,46,111,112,116,115,46,102,97,105,108,41,46,97,108,119,97,121,115,40,108,46,111,112,116,115,46,97,108,119,97,121,115,41,44,107,46,102,120,46,116,105,109,101,114,40,107,46,101,120,116,101,110,100,40,117,44,123,101,108,101,109,58,111,44,97,110,105,109,58,108,44,113,117,101,117,101,58,108,46,111,112,116,115,46,113,117,101,117,101,125,41,41,44,108,125,107,46,65,110,105,109,97,116,105,111,110,61,107,46,101,120,116,101,110,100,40,100,116,44,123,116,119,101,101,110,101,114,115,58,123,34,42,34,58,91,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,61,116,104,105,115,46,99,114,101,97,116,101,84,119,101,101,110,40,101,44,116,41,59,114,101,116,117,114,110,32,108,101,40,110,46,101,108,101,109,44,101,44,110,101,46,101,120,101,99,40,116,41,44,110,41,44,110,125,93,125,44,116,119,101,101,110,101,114,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,109,40,101,41,63,40,116,61,101,44,101,61,91,34,42,34,93,41,58,101,61,101,46,109,97,116,99,104,40,82,41,59,102,111,114,40,118,97,114,32,110,44,114,61,48,44,105,61,101,46,108,101,110,103,116,104,59,114,60,105,59,114,43,43,41,110,61,101,91,114,93,44,100,116,46,116,119,101,101,110,101,114,115,91,110,93,61,100,116,46,116,119,101,101,110,101,114,115,91,110,93,124,124,91,93,44,100,116,46,116,119,101,101,110,101,114,115,91,110,93,46,117,110,115,104,105,102,116,40,116,41,125,44,112,114,101,102,105,108,116,101,114,115,58,91,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,44,105,44,111,44,97,44,115,44,117,44,108,44,99,44,102,61,34,119,105,100,116,104,34,105,110,32,116,124,124,34,104,101,105,103,104,116,34,105,110,32,116,44,112,61,116,104,105,115,44,100,61,123,125,44,104,61,101,46,115,116,121,108,101,44,103,61,101,46,110,111,100,101,84,121,112,101,38,38,115,101,40,101,41,44,118,61,81,46,103,101,116,40,101,44,34,102,120,115,104,111,119,34,41,59,102,111,114,40,114,32,105,110,32,110,46,113,117,101,117,101,124,124,40,110,117,108,108,61,61,40,97,61,107,46,95,113,117,101,117,101,72,111,111,107,115,40,101,44,34,102,120,34,41,41,46,117,110,113,117,101,117,101,100,38,38,40,97,46,117,110,113,117,101,117,101,100,61,48,44,115,61,97,46,101,109,112,116,121,46,102,105,114,101,44,97,46,101,109,112,116,121,46,102,105,114,101,61,102,117,110,99,116,105,111,110,40,41,123,97,46,117,110,113,117,101,117,101,100,124,124,115,40,41,125,41,44,97,46,117,110,113,117,101,117,101,100,43,43,44,112,46,97,108,119,97,121,115,40,102,117,110,99,116,105,111,110,40,41,123,112,46,97,108,119,97,121,115,40,102,117,110,99,116,105,111,110,40,41,123,97,46,117,110,113,117,101,117,101,100,45,45,44,107,46,113,117,101,117,101,40,101,44,34,102,120,34,41,46,108,101,110,103,116,104,124,124,97,46,101,109,112,116,121,46,102,105,114,101,40,41,125,41,125,41,41,44,116,41,105,102,40,105,61,116,91,114,93,44,115,116,46,116,101,115,116,40,105,41,41,123,105,102,40,100,101,108,101,116,101,32,116,91,114,93,44,111,61,111,124,124,34,116,111,103,103,108,101,34,61,61,61,105,44,105,61,61,61,40,103,63,34,104,105,100,101,34,58,34,115,104,111,119,34,41,41,123,105,102,40,34,115,104,111,119,34,33,61,61,105,124,124,33,118,124,124,118,111,105,100,32,48,61,61,61,118,91,114,93,41,99,111,110,116,105,110,117,101,59,103,61,33,48,125,100,91,114,93,61,118,38,38,118,91,114,93,124,124,107,46,115,116,121,108,101,40,101,44,114,41,125,105,102,40,40,117,61,33,107,46,105,115,69,109,112,116,121,79,98,106,101,99,116,40,116,41,41,124,124,33,107,46,105,115,69,109,112,116,121,79,98,106,101,99,116,40,100,41,41,102,111,114,40,114,32,105,110,32,102,38,38,49,61,61,61,101,46,110,111,100,101,84,121,112,101,38,38,40,110,46,111,118,101,114,102,108,111,119,61,91,104,46,111,118,101,114,102,108,111,119,44,104,46,111,118,101,114,102,108,111,119,88,44,104,46,111,118,101,114,102,108,111,119,89,93,44,110,117,108,108,61,61,40,108,61,118,38,38,118,46,100,105,115,112,108,97,121,41,38,38,40,108,61,81,46,103,101,116,40,101,44,34,100,105,115,112,108,97,121,34,41,41,44,34,110,111,110,101,34,61,61,61,40,99,61,107,46,99,115,115,40,101,44,34,100,105,115,112,108,97,121,34,41,41,38,38,40,108,63,99,61,108,58,40,102,101,40,91,101,93,44,33,48,41,44,108,61,101,46,115,116,121,108,101,46,100,105,115,112,108,97,121,124,124,108,44,99,61,107,46,99,115,115,40,101,44,34,100,105,115,112,108,97,121,34,41,44,102,101,40,91,101,93,41,41,41,44,40,34,105,110,108,105,110,101,34,61,61,61,99,124,124,34,105,110,108,105,110,101,45,98,108,111,99,107,34,61,61,61,99,38,38,110,117,108,108,33,61,108,41,38,38,34,110,111,110,101,34,61,61,61,107,46,99,115,115,40,101,44,34,102,108,111,97,116,34,41,38,38,40,117,124,124,40,112,46,100,111,110,101,40,102,117,110,99,116,105,111,110,40,41,123,104,46,100,105,115,112,108,97,121,61,108,125,41,44,110,117,108,108,61,61,108,38,38,40,99,61,104,46,100,105,115,112,108,97,121,44,108,61,34,110,111,110,101,34,61,61,61,99,63,34,34,58,99,41,41,44,104,46,100,105,115,112,108,97,121,61,34,105,110,108,105,110,101,45,98,108,111,99,107,34,41,41,44,110,46,111,118,101,114,102,108,111,119,38,38,40,104,46,111,118,101,114,102,108,111,119,61,34,104,105,100,100,101,110,34,44,112,46,97,108,119,97,121,115,40,102,117,110,99,116,105,111,110,40,41,123,104,46,111,118,101,114,102,108,111,119,61,110,46,111,118,101,114,102,108,111,119,91,48,93,44,104,46,111,118,101,114,102,108,111,119,88,61,110,46,111,118,101,114,102,108,111,119,91,49,93,44,104,46,111,118,101,114,102,108,111,119,89,61,110,46,111,118,101,114,102,108,111,119,91,50,93,125,41,41,44,117,61,33,49,44,100,41,117,124,124,40,118,63,34,104,105,100,100,101,110,34,105,110,32,118,38,38,40,103,61,118,46,104,105,100,100,101,110,41,58,118,61,81,46,97,99,99,101,115,115,40,101,44,34,102,120,115,104,111,119,34,44,123,100,105,115,112,108,97,121,58,108,125,41,44,111,38,38,40,118,46,104,105,100,100,101,110,61,33,103,41,44,103,38,38,102,101,40,91,101,93,44,33,48,41,44,112,46,100,111,110,101,40,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,114,32,105,110,32,103,124,124,102,101,40,91,101,93,41,44,81,46,114,101,109,111,118,101,40,101,44,34,102,120,115,104,111,119,34,41,44,100,41,107,46,115,116,121,108,101,40,101,44,114,44,100,91,114,93,41,125,41,41,44,117,61,112,116,40,103,63,118,91,114,93,58,48,44,114,44,112,41,44,114,32,105,110,32,118,124,124,40,118,91,114,93,61,117,46,115,116,97,114,116,44,103,38,38,40,117,46,101,110,100,61,117,46,115,116,97,114,116,44,117,46,115,116,97,114,116,61,48,41,41,125,93,44,112,114,101,102,105,108,116,101,114,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,116,63,100,116,46,112,114,101,102,105,108,116,101,114,115,46,117,110,115,104,105,102,116,40,101,41,58,100,116,46,112,114,101,102,105,108,116,101,114,115,46,112,117,115,104,40,101,41,125,125,41,44,107,46,115,112,101,101,100,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,61,101,38,38,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,101,63,107,46,101,120,116,101,110,100,40,123,125,44,101,41,58,123,99,111,109,112,108,101,116,101,58,110,124,124,33,110,38,38,116,124,124,109,40,101,41,38,38,101,44,100,117,114,97,116,105,111,110,58,101,44,101,97,115,105,110,103,58,110,38,38,116,124,124,116,38,38,33,109,40,116,41,38,38,116,125,59,114,101,116,117,114,110,32,107,46,102,120,46,111,102,102,63,114,46,100,117,114,97,116,105,111,110,61,48,58,34,110,117,109,98,101,114,34,33,61,116,121,112,101,111,102,32,114,46,100,117,114,97,116,105,111,110,38,38,40,114,46,100,117,114,97,116,105,111,110,32,105,110,32,107,46,102,120,46,115,112,101,101,100,115,63,114,46,100,117,114,97,116,105,111,110,61,107,46,102,120,46,115,112,101,101,100,115,91,114,46,100,117,114,97,116,105,111,110,93,58,114,46,100,117,114,97,116,105,111,110,61,107,46,102,120,46,115,112,101,101,100,115,46,95,100,101,102,97,117,108,116,41,44,110,117,108,108,33,61,114,46,113,117,101,117,101,38,38,33,48,33,61,61,114,46,113,117,101,117,101,124,124,40,114,46,113,117,101,117,101,61,34,102,120,34,41,44,114,46,111,108,100,61,114,46,99,111,109,112,108,101,116,101,44,114,46,99,111,109,112,108,101,116,101,61,102,117,110,99,116,105,111,110,40,41,123,109,40,114,46,111,108,100,41,38,38,114,46,111,108,100,46,99,97,108,108,40,116,104,105,115,41,44,114,46,113,117,101,117,101,38,38,107,46,100,101,113,117,101,117,101,40,116,104,105,115,44,114,46,113,117,101,117,101,41,125,44,114,125,44,107,46,102,110,46,101,120,116,101,110,100,40,123,102,97,100,101,84,111,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,114,41,123,114,101,116,117,114,110,32,116,104,105,115,46,102,105,108,116,101,114,40,115,101,41,46,99,115,115,40,34,111,112,97,99,105,116,121,34,44,48,41,46,115,104,111,119,40,41,46,101,110,100,40,41,46,97,110,105,109,97,116,101,40,123,111,112,97,99,105,116,121,58,116,125,44,101,44,110,44,114,41,125,44,97,110,105,109,97,116,101,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,44,114,41,123,118,97,114,32,105,61,107,46,105,115,69,109,112,116,121,79,98,106,101,99,116,40,116,41,44,111,61,107,46,115,112,101,101,100,40,101,44,110,44,114,41,44,97,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,100,116,40,116,104,105,115,44,107,46,101,120,116,101,110,100,40,123,125,44,116,41,44,111,41,59,40,105,124,124,81,46,103,101,116,40,116,104,105,115,44,34,102,105,110,105,115,104,34,41,41,38,38,101,46,115,116,111,112,40,33,48,41,125,59,114,101,116,117,114,110,32,97,46,102,105,110,105,115,104,61,97,44,105,124,124,33,49,61,61,61,111,46,113,117,101,117,101,63,116,104,105,115,46,101,97,99,104,40,97,41,58,116,104,105,115,46,113,117,101,117,101,40,111,46,113,117,101,117,101,44,97,41,125,44,115,116,111,112,58,102,117,110,99,116,105,111,110,40,105,44,101,44,111,41,123,118,97,114,32,97,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,46,115,116,111,112,59,100,101,108,101,116,101,32,101,46,115,116,111,112,44,116,40,111,41,125,59,114,101,116,117,114,110,34,115,116,114,105,110,103,34,33,61,116,121,112,101,111,102,32,105,38,38,40,111,61,101,44,101,61,105,44,105,61,118,111,105,100,32,48,41,44,101,38,38,33,49,33,61,61,105,38,38,116,104,105,115,46,113,117,101,117,101,40,105,124,124,34,102,120,34,44,91,93,41,44,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,33,48,44,116,61,110,117,108,108,33,61,105,38,38,105,43,34,113,117,101,117,101,72,111,111,107,115,34,44,110,61,107,46,116,105,109,101,114,115,44,114,61,81,46,103,101,116,40,116,104,105,115,41,59,105,102,40,116,41,114,91,116,93,38,38,114,91,116,93,46,115,116,111,112,38,38,97,40,114,91,116,93,41,59,101,108,115,101,32,102,111,114,40,116,32,105,110,32,114,41,114,91,116,93,38,38,114,91,116,93,46,115,116,111,112,38,38,117,116,46,116,101,115,116,40,116,41,38,38,97,40,114,91,116,93,41,59,102,111,114,40,116,61,110,46,108,101,110,103,116,104,59,116,45,45,59,41,110,91,116,93,46,101,108,101,109,33,61,61,116,104,105,115,124,124,110,117,108,108,33,61,105,38,38,110,91,116,93,46,113,117,101,117,101,33,61,61,105,124,124,40,110,91,116,93,46,97,110,105,109,46,115,116,111,112,40,111,41,44,101,61,33,49,44,110,46,115,112,108,105,99,101,40,116,44,49,41,41,59,33,101,38,38,111,124,124,107,46,100,101,113,117,101,117,101,40,116,104,105,115,44,105,41,125,41,125,44,102,105,110,105,115,104,58,102,117,110,99,116,105,111,110,40,97,41,123,114,101,116,117,114,110,33,49,33,61,61,97,38,38,40,97,61,97,124,124,34,102,120,34,41,44,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,44,116,61,81,46,103,101,116,40,116,104,105,115,41,44,110,61,116,91,97,43,34,113,117,101,117,101,34,93,44,114,61,116,91,97,43,34,113,117,101,117,101,72,111,111,107,115,34,93,44,105,61,107,46,116,105,109,101,114,115,44,111,61,110,63,110,46,108,101,110,103,116,104,58,48,59,102,111,114,40,116,46,102,105,110,105,115,104,61,33,48,44,107,46,113,117,101,117,101,40,116,104,105,115,44,97,44,91,93,41,44,114,38,38,114,46,115,116,111,112,38,38,114,46,115,116,111,112,46,99,97,108,108,40,116,104,105,115,44,33,48,41,44,101,61,105,46,108,101,110,103,116,104,59,101,45,45,59,41,105,91,101,93,46,101,108,101,109,61,61,61,116,104,105,115,38,38,105,91,101,93,46,113,117,101,117,101,61,61,61,97,38,38,40,105,91,101,93,46,97,110,105,109,46,115,116,111,112,40,33,48,41,44,105,46,115,112,108,105,99,101,40,101,44,49,41,41,59,102,111,114,40,101,61,48,59,101,60,111,59,101,43,43,41,110,91,101,93,38,38,110,91,101,93,46,102,105,110,105,115,104,38,38,110,91,101,93,46,102,105,110,105,115,104,46,99,97,108,108,40,116,104,105,115,41,59,100,101,108,101,116,101,32,116,46,102,105,110,105,115,104,125,41,125,125,41,44,107,46,101,97,99,104,40,91,34,116,111,103,103,108,101,34,44,34,115,104,111,119,34,44,34,104,105,100,101,34,93,44,102,117,110,99,116,105,111,110,40,101,44,114,41,123,118,97,114,32,105,61,107,46,102,110,91,114,93,59,107,46,102,110,91,114,93,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,101,124,124,34,98,111,111,108,101,97,110,34,61,61,116,121,112,101,111,102,32,101,63,105,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,58,116,104,105,115,46,97,110,105,109,97,116,101,40,102,116,40,114,44,33,48,41,44,101,44,116,44,110,41,125,125,41,44,107,46,101,97,99,104,40,123,115,108,105,100,101,68,111,119,110,58,102,116,40,34,115,104,111,119,34,41,44,115,108,105,100,101,85,112,58,102,116,40,34,104,105,100,101,34,41,44,115,108,105,100,101,84,111,103,103,108,101,58,102,116,40,34,116,111,103,103,108,101,34,41,44,102,97,100,101,73,110,58,123,111,112,97,99,105,116,121,58,34,115,104,111,119,34,125,44,102,97,100,101,79,117,116,58,123,111,112,97,99,105,116,121,58,34,104,105,100,101,34,125,44,102,97,100,101,84,111,103,103,108,101,58,123,111,112,97,99,105,116,121,58,34,116,111,103,103,108,101,34,125,125,44,102,117,110,99,116,105,111,110,40,101,44,114,41,123,107,46,102,110,91,101,93,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,114,101,116,117,114,110,32,116,104,105,115,46,97,110,105,109,97,116,101,40,114,44,101,44,116,44,110,41,125,125,41,44,107,46,116,105,109,101,114,115,61,91,93,44,107,46,102,120,46,116,105,99,107,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,44,116,61,48,44,110,61,107,46,116,105,109,101,114,115,59,102,111,114,40,114,116,61,68,97,116,101,46,110,111,119,40,41,59,116,60,110,46,108,101,110,103,116,104,59,116,43,43,41,40,101,61,110,91,116,93,41,40,41,124,124,110,91,116,93,33,61,61,101,124,124,110,46,115,112,108,105,99,101,40,116,45,45,44,49,41,59,110,46,108,101,110,103,116,104,124,124,107,46,102,120,46,115,116,111,112,40,41,44,114,116,61,118,111,105,100,32,48,125,44,107,46,102,120,46,116,105,109,101,114,61,102,117,110,99,116,105,111,110,40,101,41,123,107,46,116,105,109,101,114,115,46,112,117,115,104,40,101,41,44,107,46,102,120,46,115,116,97,114,116,40,41,125,44,107,46,102,120,46,105,110,116,101,114,118,97,108,61,49,51,44,107,46,102,120,46,115,116,97,114,116,61,102,117,110,99,116,105,111,110,40,41,123,105,116,124,124,40,105,116,61,33,48,44,108,116,40,41,41,125,44,107,46,102,120,46,115,116,111,112,61,102,117,110,99,116,105,111,110,40,41,123,105,116,61,110,117,108,108,125,44,107,46,102,120,46,115,112,101,101,100,115,61,123,115,108,111,119,58,54,48,48,44,102,97,115,116,58,50,48,48,44,95,100,101,102,97,117,108,116,58,52,48,48,125,44,107,46,102,110,46,100,101,108,97,121,61,102,117,110,99,116,105,111,110,40,114,44,101,41,123,114,101,116,117,114,110,32,114,61,107,46,102,120,38,38,107,46,102,120,46,115,112,101,101,100,115,91,114,93,124,124,114,44,101,61,101,124,124,34,102,120,34,44,116,104,105,115,46,113,117,101,117,101,40,101,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,61,67,46,115,101,116,84,105,109,101,111,117,116,40,101,44,114,41,59,116,46,115,116,111,112,61,102,117,110,99,116,105,111,110,40,41,123,67,46,99,108,101,97,114,84,105,109,101,111,117,116,40,110,41,125,125,41,125,44,111,116,61,69,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,105,110,112,117,116,34,41,44,97,116,61,69,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,115,101,108,101,99,116,34,41,46,97,112,112,101,110,100,67,104,105,108,100,40,69,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,111,112,116,105,111,110,34,41,41,44,111,116,46,116,121,112,101,61,34,99,104,101,99,107,98,111,120,34,44,121,46,99,104,101,99,107,79,110,61,34,34,33,61,61,111,116,46,118,97,108,117,101,44,121,46,111,112,116,83,101,108,101,99,116,101,100,61,97,116,46,115,101,108,101,99,116,101,100,44,40,111,116,61,69,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,105,110,112,117,116,34,41,41,46,118,97,108,117,101,61,34,116,34,44,111,116,46,116,121,112,101,61,34,114,97,100,105,111,34,44,121,46,114,97,100,105,111,86,97,108,117,101,61,34,116,34,61,61,61,111,116,46,118,97,108,117,101,59,118,97,114,32,104,116,44,103,116,61,107,46,101,120,112,114,46,97,116,116,114,72,97,110,100,108,101,59,107,46,102,110,46,101,120,116,101,110,100,40,123,97,116,116,114,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,95,40,116,104,105,115,44,107,46,97,116,116,114,44,101,44,116,44,49,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,125,44,114,101,109,111,118,101,65,116,116,114,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,107,46,114,101,109,111,118,101,65,116,116,114,40,116,104,105,115,44,101,41,125,41,125,125,41,44,107,46,101,120,116,101,110,100,40,123,97,116,116,114,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,44,105,44,111,61,101,46,110,111,100,101,84,121,112,101,59,105,102,40,51,33,61,61,111,38,38,56,33,61,61,111,38,38,50,33,61,61,111,41,114,101,116,117,114,110,34,117,110,100,101,102,105,110,101,100,34,61,61,116,121,112,101,111,102,32,101,46,103,101,116,65,116,116,114,105,98,117,116,101,63,107,46,112,114,111,112,40,101,44,116,44,110,41,58,40,49,61,61,61,111,38,38,107,46,105,115,88,77,76,68,111,99,40,101,41,124,124,40,105,61,107,46,97,116,116,114,72,111,111,107,115,91,116,46,116,111,76,111,119,101,114,67,97,115,101,40,41,93,124,124,40,107,46,101,120,112,114,46,109,97,116,99,104,46,98,111,111,108,46,116,101,115,116,40,116,41,63,104,116,58,118,111,105,100,32,48,41,41,44,118,111,105,100,32,48,33,61,61,110,63,110,117,108,108,61,61,61,110,63,118,111,105,100,32,107,46,114,101,109,111,118,101,65,116,116,114,40,101,44,116,41,58,105,38,38,34,115,101,116,34,105,110,32,105,38,38,118,111,105,100,32,48,33,61,61,40,114,61,105,46,115,101,116,40,101,44,110,44,116,41,41,63,114,58,40,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,116,44,110,43,34,34,41,44,110,41,58,105,38,38,34,103,101,116,34,105,110,32,105,38,38,110,117,108,108,33,61,61,40,114,61,105,46,103,101,116,40,101,44,116,41,41,63,114,58,110,117,108,108,61,61,40,114,61,107,46,102,105,110,100,46,97,116,116,114,40,101,44,116,41,41,63,118,111,105,100,32,48,58,114,41,125,44,97,116,116,114,72,111,111,107,115,58,123,116,121,112,101,58,123,115,101,116,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,102,40,33,121,46,114,97,100,105,111,86,97,108,117,101,38,38,34,114,97,100,105,111,34,61,61,61,116,38,38,65,40,101,44,34,105,110,112,117,116,34,41,41,123,118,97,114,32,110,61,101,46,118,97,108,117,101,59,114,101,116,117,114,110,32,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,116,121,112,101,34,44,116,41,44,110,38,38,40,101,46,118,97,108,117,101,61,110,41,44,116,125,125,125,125,44,114,101,109,111,118,101,65,116,116,114,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,44,114,61,48,44,105,61,116,38,38,116,46,109,97,116,99,104,40,82,41,59,105,102,40,105,38,38,49,61,61,61,101,46,110,111,100,101,84,121,112,101,41,119,104,105,108,101,40,110,61,105,91,114,43,43,93,41,101,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,40,110,41,125,125,41,44,104,116,61,123,115,101,116,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,114,101,116,117,114,110,33,49,61,61,61,116,63,107,46,114,101,109,111,118,101,65,116,116,114,40,101,44,110,41,58,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,110,44,110,41,44,110,125,125,44,107,46,101,97,99,104,40,107,46,101,120,112,114,46,109,97,116,99,104,46,98,111,111,108,46,115,111,117,114,99,101,46,109,97,116,99,104,40,47,92,119,43,47,103,41,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,97,61,103,116,91,116,93,124,124,107,46,102,105,110,100,46,97,116,116,114,59,103,116,91,116,93,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,44,105,44,111,61,116,46,116,111,76,111,119,101,114,67,97,115,101,40,41,59,114,101,116,117,114,110,32,110,124,124,40,105,61,103,116,91,111,93,44,103,116,91,111,93,61,114,44,114,61,110,117,108,108,33,61,97,40,101,44,116,44,110,41,63,111,58,110,117,108,108,44,103,116,91,111,93,61,105,41,44,114,125,125,41,59,118,97,114,32,118,116,61,47,94,40,63,58,105,110,112,117,116,124,115,101,108,101,99,116,124,116,101,120,116,97,114,101,97,124,98,117,116,116,111,110,41,36,47,105,44,121,116,61,47,94,40,63,58,97,124,97,114,101,97,41,36,47,105,59,102,117,110,99,116,105,111,110,32,109,116,40,101,41,123,114,101,116,117,114,110,40,101,46,109,97,116,99,104,40,82,41,124,124,91,93,41,46,106,111,105,110,40,34,32,34,41,125,102,117,110,99,116,105,111,110,32,120,116,40,101,41,123,114,101,116,117,114,110,32,101,46,103,101,116,65,116,116,114,105,98,117,116,101,38,38,101,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,41,124,124,34,34,125,102,117,110,99,116,105,111,110,32,98,116,40,101,41,123,114,101,116,117,114,110,32,65,114,114,97,121,46,105,115,65,114,114,97,121,40,101,41,63,101,58,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,101,38,38,101,46,109,97,116,99,104,40,82,41,124,124,91,93,125,107,46,102,110,46,101,120,116,101,110,100,40,123,112,114,111,112,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,95,40,116,104,105,115,44,107,46,112,114,111,112,44,101,44,116,44,49,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,125,44,114,101,109,111,118,101,80,114,111,112,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,100,101,108,101,116,101,32,116,104,105,115,91,107,46,112,114,111,112,70,105,120,91,101,93,124,124,101,93,125,41,125,125,41,44,107,46,101,120,116,101,110,100,40,123,112,114,111,112,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,44,105,44,111,61,101,46,110,111,100,101,84,121,112,101,59,105,102,40,51,33,61,61,111,38,38,56,33,61,61,111,38,38,50,33,61,61,111,41,114,101,116,117,114,110,32,49,61,61,61,111,38,38,107,46,105,115,88,77,76,68,111,99,40,101,41,124,124,40,116,61,107,46,112,114,111,112,70,105,120,91,116,93,124,124,116,44,105,61,107,46,112,114,111,112,72,111,111,107,115,91,116,93,41,44,118,111,105,100,32,48,33,61,61,110,63,105,38,38,34,115,101,116,34,105,110,32,105,38,38,118,111,105,100,32,48,33,61,61,40,114,61,105,46,115,101,116,40,101,44,110,44,116,41,41,63,114,58,101,91,116,93,61,110,58,105,38,38,34,103,101,116,34,105,110,32,105,38,38,110,117,108,108,33,61,61,40,114,61,105,46,103,101,116,40,101,44,116,41,41,63,114,58,101,91,116,93,125,44,112,114,111,112,72,111,111,107,115,58,123,116,97,98,73,110,100,101,120,58,123,103,101,116,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,107,46,102,105,110,100,46,97,116,116,114,40,101,44,34,116,97,98,105,110,100,101,120,34,41,59,114,101,116,117,114,110,32,116,63,112,97,114,115,101,73,110,116,40,116,44,49,48,41,58,118,116,46,116,101,115,116,40,101,46,110,111,100,101,78,97,109,101,41,124,124,121,116,46,116,101,115,116,40,101,46,110,111,100,101,78,97,109,101,41,38,38,101,46,104,114,101,102,63,48,58,45,49,125,125,125,44,112,114,111,112,70,105,120,58,123,34,102,111,114,34,58,34,104,116,109,108,70,111,114,34,44,34,99,108,97,115,115,34,58,34,99,108,97,115,115,78,97,109,101,34,125,125,41,44,121,46,111,112,116,83,101,108,101,99,116,101,100,124,124,40,107,46,112,114,111,112,72,111,111,107,115,46,115,101,108,101,99,116,101,100,61,123,103,101,116,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,46,112,97,114,101,110,116,78,111,100,101,59,114,101,116,117,114,110,32,116,38,38,116,46,112,97,114,101,110,116,78,111,100,101,38,38,116,46,112,97,114,101,110,116,78,111,100,101,46,115,101,108,101,99,116,101,100,73,110,100,101,120,44,110,117,108,108,125,44,115,101,116,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,46,112,97,114,101,110,116,78,111,100,101,59,116,38,38,40,116,46,115,101,108,101,99,116,101,100,73,110,100,101,120,44,116,46,112,97,114,101,110,116,78,111,100,101,38,38,116,46,112,97,114,101,110,116,78,111,100,101,46,115,101,108,101,99,116,101,100,73,110,100,101,120,41,125,125,41,44,107,46,101,97,99,104,40,91,34,116,97,98,73,110,100,101,120,34,44,34,114,101,97,100,79,110,108,121,34,44,34,109,97,120,76,101,110,103,116,104,34,44,34,99,101,108,108,83,112,97,99,105,110,103,34,44,34,99,101,108,108,80,97,100,100,105,110,103,34,44,34,114,111,119,83,112,97,110,34,44,34,99,111,108,83,112,97,110,34,44,34,117,115,101,77,97,112,34,44,34,102,114,97,109,101,66,111,114,100,101,114,34,44,34,99,111,110,116,101,110,116,69,100,105,116,97,98,108,101,34,93,44,102,117,110,99,116,105,111,110,40,41,123,107,46,112,114,111,112,70,105,120,91,116,104,105,115,46,116,111,76,111,119,101,114,67,97,115,101,40,41,93,61,116,104,105,115,125,41,44,107,46,102,110,46,101,120,116,101,110,100,40,123,97,100,100,67,108,97,115,115,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,44,110,44,114,44,105,44,111,44,97,44,115,44,117,61,48,59,105,102,40,109,40,116,41,41,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,101,41,123,107,40,116,104,105,115,41,46,97,100,100,67,108,97,115,115,40,116,46,99,97,108,108,40,116,104,105,115,44,101,44,120,116,40,116,104,105,115,41,41,41,125,41,59,105,102,40,40,101,61,98,116,40,116,41,41,46,108,101,110,103,116,104,41,119,104,105,108,101,40,110,61,116,104,105,115,91,117,43,43,93,41,105,102,40,105,61,120,116,40,110,41,44,114,61,49,61,61,61,110,46,110,111,100,101,84,121,112,101,38,38,34,32,34,43,109,116,40,105,41,43,34,32,34,41,123,97,61,48,59,119,104,105,108,101,40,111,61,101,91,97,43,43,93,41,114,46,105,110,100,101,120,79,102,40,34,32,34,43,111,43,34,32,34,41,60,48,38,38,40,114,43,61,111,43,34,32,34,41,59,105,33,61,61,40,115,61,109,116,40,114,41,41,38,38,110,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,115,41,125,114,101,116,117,114,110,32,116,104,105,115,125,44,114,101,109,111,118,101,67,108,97,115,115,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,44,110,44,114,44,105,44,111,44,97,44,115,44,117,61,48,59,105,102,40,109,40,116,41,41,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,101,41,123,107,40,116,104,105,115,41,46,114,101,109,111,118,101,67,108,97,115,115,40,116,46,99,97,108,108,40,116,104,105,115,44,101,44,120,116,40,116,104,105,115,41,41,41,125,41,59,105,102,40,33,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,114,101,116,117,114,110,32,116,104,105,115,46,97,116,116,114,40,34,99,108,97,115,115,34,44,34,34,41,59,105,102,40,40,101,61,98,116,40,116,41,41,46,108,101,110,103,116,104,41,119,104,105,108,101,40,110,61,116,104,105,115,91,117,43,43,93,41,105,102,40,105,61,120,116,40,110,41,44,114,61,49,61,61,61,110,46,110,111,100,101,84,121,112,101,38,38,34,32,34,43,109,116,40,105,41,43,34,32,34,41,123,97,61,48,59,119,104,105,108,101,40,111,61,101,91,97,43,43,93,41,119,104,105,108,101,40,45,49,60,114,46,105,110,100,101,120,79,102,40,34,32,34,43,111,43,34,32,34,41,41,114,61,114,46,114,101,112,108,97,99,101,40,34,32,34,43,111,43,34,32,34,44,34,32,34,41,59,105,33,61,61,40,115,61,109,116,40,114,41,41,38,38,110,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,115,41,125,114,101,116,117,114,110,32,116,104,105,115,125,44,116,111,103,103,108,101,67,108,97,115,115,58,102,117,110,99,116,105,111,110,40,105,44,116,41,123,118,97,114,32,111,61,116,121,112,101,111,102,32,105,44,97,61,34,115,116,114,105,110,103,34,61,61,61,111,124,124,65,114,114,97,121,46,105,115,65,114,114,97,121,40,105,41,59,114,101,116,117,114,110,34,98,111,111,108,101,97,110,34,61,61,116,121,112,101,111,102,32,116,38,38,97,63,116,63,116,104,105,115,46,97,100,100,67,108,97,115,115,40,105,41,58,116,104,105,115,46,114,101,109,111,118,101,67,108,97,115,115,40,105,41,58,109,40,105,41,63,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,101,41,123,107,40,116,104,105,115,41,46,116,111,103,103,108,101,67,108,97,115,115,40,105,46,99,97,108,108,40,116,104,105,115,44,101,44,120,116,40,116,104,105,115,41,44,116,41,44,116,41,125,41,58,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,44,116,44,110,44,114,59,105,102,40,97,41,123,116,61,48,44,110,61,107,40,116,104,105,115,41,44,114,61,98,116,40,105,41,59,119,104,105,108,101,40,101,61,114,91,116,43,43,93,41,110,46,104,97,115,67,108,97,115,115,40,101,41,63,110,46,114,101,109,111,118,101,67,108,97,115,115,40,101,41,58,110,46,97,100,100,67,108,97,115,115,40,101,41,125,101,108,115,101,32,118,111,105,100,32,48,33,61,61,105,38,38,34,98,111,111,108,101,97,110,34,33,61,61,111,124,124,40,40,101,61,120,116,40,116,104,105,115,41,41,38,38,81,46,115,101,116,40,116,104,105,115,44,34,95,95,99,108,97,115,115,78,97,109,101,95,95,34,44,101,41,44,116,104,105,115,46,115,101,116,65,116,116,114,105,98,117,116,101,38,38,116,104,105,115,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,101,124,124,33,49,61,61,61,105,63,34,34,58,81,46,103,101,116,40,116,104,105,115,44,34,95,95,99,108,97,115,115,78,97,109,101,95,95,34,41,124,124,34,34,41,41,125,41,125,44,104,97,115,67,108,97,115,115,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,44,110,44,114,61,48,59,116,61,34,32,34,43,101,43,34,32,34,59,119,104,105,108,101,40,110,61,116,104,105,115,91,114,43,43,93,41,105,102,40,49,61,61,61,110,46,110,111,100,101,84,121,112,101,38,38,45,49,60,40,34,32,34,43,109,116,40,120,116,40,110,41,41,43,34,32,34,41,46,105,110,100,101,120,79,102,40,116,41,41,114,101,116,117,114,110,33,48,59,114,101,116,117,114,110,33,49,125,125,41,59,118,97,114,32,119,116,61,47,92,114,47,103,59,107,46,102,110,46,101,120,116,101,110,100,40,123,118,97,108,58,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,114,44,101,44,105,44,116,61,116,104,105,115,91,48,93,59,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,105,61,109,40,110,41,44,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,59,49,61,61,61,116,104,105,115,46,110,111,100,101,84,121,112,101,38,38,40,110,117,108,108,61,61,40,116,61,105,63,110,46,99,97,108,108,40,116,104,105,115,44,101,44,107,40,116,104,105,115,41,46,118,97,108,40,41,41,58,110,41,63,116,61,34,34,58,34,110,117,109,98,101,114,34,61,61,116,121,112,101,111,102,32,116,63,116,43,61,34,34,58,65,114,114,97,121,46,105,115,65,114,114,97,121,40,116,41,38,38,40,116,61,107,46,109,97,112,40,116,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,101,63,34,34,58,101,43,34,34,125,41,41,44,40,114,61,107,46,118,97,108,72,111,111,107,115,91,116,104,105,115,46,116,121,112,101,93,124,124,107,46,118,97,108,72,111,111,107,115,91,116,104,105,115,46,110,111,100,101,78,97,109,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,93,41,38,38,34,115,101,116,34,105,110,32,114,38,38,118,111,105,100,32,48,33,61,61,114,46,115,101,116,40,116,104,105,115,44,116,44,34,118,97,108,117,101,34,41,124,124,40,116,104,105,115,46,118,97,108,117,101,61,116,41,41,125,41,41,58,116,63,40,114,61,107,46,118,97,108,72,111,111,107,115,91,116,46,116,121,112,101,93,124,124,107,46,118,97,108,72,111,111,107,115,91,116,46,110,111,100,101,78,97,109,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,93,41,38,38,34,103,101,116,34,105,110,32,114,38,38,118,111,105,100,32,48,33,61,61,40,101,61,114,46,103,101,116,40,116,44,34,118,97,108,117,101,34,41,41,63,101,58,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,40,101,61,116,46,118,97,108,117,101,41,63,101,46,114,101,112,108,97,99,101,40,119,116,44,34,34,41,58,110,117,108,108,61,61,101,63,34,34,58,101,58,118,111,105,100,32,48,125,125,41,44,107,46,101,120,116,101,110,100,40,123,118,97,108,72,111,111,107,115,58,123,111,112,116,105,111,110,58,123,103,101,116,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,107,46,102,105,110,100,46,97,116,116,114,40,101,44,34,118,97,108,117,101,34,41,59,114,101,116,117,114,110,32,110,117,108,108,33,61,116,63,116,58,109,116,40,107,46,116,101,120,116,40,101,41,41,125,125,44,115,101,108,101,99,116,58,123,103,101,116,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,44,110,44,114,44,105,61,101,46,111,112,116,105,111,110,115,44,111,61,101,46,115,101,108,101,99,116,101,100,73,110,100,101,120,44,97,61,34,115,101,108,101,99,116,45,111,110,101,34,61,61,61,101,46,116,121,112,101,44,115,61,97,63,110,117,108,108,58,91,93,44,117,61,97,63,111,43,49,58,105,46,108,101,110,103,116,104,59,102,111,114,40,114,61,111,60,48,63,117,58,97,63,111,58,48,59,114,60,117,59,114,43,43,41,105,102,40,40,40,110,61,105,91,114,93,41,46,115,101,108,101,99,116,101,100,124,124,114,61,61,61,111,41,38,38,33,110,46,100,105,115,97,98,108,101,100,38,38,40,33,110,46,112,97,114,101,110,116,78,111,100,101,46,100,105,115,97,98,108,101,100,124,124,33,65,40,110,46,112,97,114,101,110,116,78,111,100,101,44,34,111,112,116,103,114,111,117,112,34,41,41,41,123,105,102,40,116,61,107,40,110,41,46,118,97,108,40,41,44,97,41,114,101,116,117,114,110,32,116,59,115,46,112,117,115,104,40,116,41,125,114,101,116,117,114,110,32,115,125,44,115,101,116,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,44,114,44,105,61,101,46,111,112,116,105,111,110,115,44,111,61,107,46,109,97,107,101,65,114,114,97,121,40,116,41,44,97,61,105,46,108,101,110,103,116,104,59,119,104,105,108,101,40,97,45,45,41,40,40,114,61,105,91,97,93,41,46,115,101,108,101,99,116,101,100,61,45,49,60,107,46,105,110,65,114,114,97,121,40,107,46,118,97,108,72,111,111,107,115,46,111,112,116,105,111,110,46,103,101,116,40,114,41,44,111,41,41,38,38,40,110,61,33,48,41,59,114,101,116,117,114,110,32,110,124,124,40,101,46,115,101,108,101,99,116,101,100,73,110,100,101,120,61,45,49,41,44,111,125,125,125,125,41,44,107,46,101,97,99,104,40,91,34,114,97,100,105,111,34,44,34,99,104,101,99,107,98,111,120,34,93,44,102,117,110,99,116,105,111,110,40,41,123,107,46,118,97,108,72,111,111,107,115,91,116,104,105,115,93,61,123,115,101,116,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,102,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,116,41,41,114,101,116,117,114,110,32,101,46,99,104,101,99,107,101,100,61,45,49,60,107,46,105,110,65,114,114,97,121,40,107,40,101,41,46,118,97,108,40,41,44,116,41,125,125,44,121,46,99,104,101,99,107,79,110,124,124,40,107,46,118,97,108,72,111,111,107,115,91,116,104,105,115,93,46,103,101,116,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,61,101,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,118,97,108,117,101,34,41,63,34,111,110,34,58,101,46,118,97,108,117,101,125,41,125,41,44,121,46,102,111,99,117,115,105,110,61,34,111,110,102,111,99,117,115,105,110,34,105,110,32,67,59,118,97,114,32,84,116,61,47,94,40,63,58,102,111,99,117,115,105,110,102,111,99,117,115,124,102,111,99,117,115,111,117,116,98,108,117,114,41,36,47,44,67,116,61,102,117,110,99,116,105,111,110,40,101,41,123,101,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,125,59,107,46,101,120,116,101,110,100,40,107,46,101,118,101,110,116,44,123,116,114,105,103,103,101,114,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,114,41,123,118,97,114,32,105,44,111,44,97,44,115,44,117,44,108,44,99,44,102,44,112,61,91,110,124,124,69,93,44,100,61,118,46,99,97,108,108,40,101,44,34,116,121,112,101,34,41,63,101,46,116,121,112,101,58,101,44,104,61,118,46,99,97,108,108,40,101,44,34,110,97,109,101,115,112,97,99,101,34,41,63,101,46,110,97,109,101,115,112,97,99,101,46,115,112,108,105,116,40,34,46,34,41,58,91,93,59,105,102,40,111,61,102,61,97,61,110,61,110,124,124,69,44,51,33,61,61,110,46,110,111,100,101,84,121,112,101,38,38,56,33,61,61,110,46,110,111,100,101,84,121,112,101,38,38,33,84,116,46,116,101,115,116,40,100,43,107,46,101,118,101,110,116,46,116,114,105,103,103,101,114,101,100,41,38,38,40,45,49,60,100,46,105,110,100,101,120,79,102,40,34,46,34,41,38,38,40,100,61,40,104,61,100,46,115,112,108,105,116,40,34,46,34,41,41,46,115,104,105,102,116,40,41,44,104,46,115,111,114,116,40,41,41,44,117,61,100,46,105,110,100,101,120,79,102,40,34,58,34,41,60,48,38,38,34,111,110,34,43,100,44,40,101,61,101,91,107,46,101,120,112,97,110,100,111,93,63,101,58,110,101,119,32,107,46,69,118,101,110,116,40,100,44,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,101,38,38,101,41,41,46,105,115,84,114,105,103,103,101,114,61,114,63,50,58,51,44,101,46,110,97,109,101,115,112,97,99,101,61,104,46,106,111,105,110,40,34,46,34,41,44,101,46,114,110,97,109,101,115,112,97,99,101,61,101,46,110,97,109,101,115,112,97,99,101,63,110,101,119,32,82,101,103,69,120,112,40,34,40,94,124,92,92,46,41,34,43,104,46,106,111,105,110,40,34,92,92,46,40,63,58,46,42,92,92,46,124,41,34,41,43,34,40,92,92,46,124,36,41,34,41,58,110,117,108,108,44,101,46,114,101,115,117,108,116,61,118,111,105,100,32,48,44,101,46,116,97,114,103,101,116,124,124,40,101,46,116,97,114,103,101,116,61,110,41,44,116,61,110,117,108,108,61,61,116,63,91,101,93,58,107,46,109,97,107,101,65,114,114,97,121,40,116,44,91,101,93,41,44,99,61,107,46,101,118,101,110,116,46,115,112,101,99,105,97,108,91,100,93,124,124,123,125,44,114,124,124,33,99,46,116,114,105,103,103,101,114,124,124,33,49,33,61,61,99,46,116,114,105,103,103,101,114,46,97,112,112,108,121,40,110,44,116,41,41,41,123,105,102,40,33,114,38,38,33,99,46,110,111,66,117,98,98,108,101,38,38,33,120,40,110,41,41,123,102,111,114,40,115,61,99,46,100,101,108,101,103,97,116,101,84,121,112,101,124,124,100,44,84,116,46,116,101,115,116,40,115,43,100,41,124,124,40,111,61,111,46,112,97,114,101,110,116,78,111,100,101,41,59,111,59,111,61,111,46,112,97,114,101,110,116,78,111,100,101,41,112,46,112,117,115,104,40,111,41,44,97,61,111,59,97,61,61,61,40,110,46,111,119,110,101,114,68,111,99,117,109,101,110,116,124,124,69,41,38,38,112,46,112,117,115,104,40,97,46,100,101,102,97,117,108,116,86,105,101,119,124,124,97,46,112,97,114,101,110,116,87,105,110,100,111,119,124,124,67,41,125,105,61,48,59,119,104,105,108,101,40,40,111,61,112,91,105,43,43,93,41,38,38,33,101,46,105,115,80,114,111,112,97,103,97,116,105,111,110,83,116,111,112,112,101,100,40,41,41,102,61,111,44,101,46,116,121,112,101,61,49,60,105,63,115,58,99,46,98,105,110,100,84,121,112,101,124,124,100,44,40,108,61,40,81,46,103,101,116,40,111,44,34,101,118,101,110,116,115,34,41,124,124,123,125,41,91,101,46,116,121,112,101,93,38,38,81,46,103,101,116,40,111,44,34,104,97,110,100,108,101,34,41,41,38,38,108,46,97,112,112,108,121,40,111,44,116,41,44,40,108,61,117,38,38,111,91,117,93,41,38,38,108,46,97,112,112,108,121,38,38,71,40,111,41,38,38,40,101,46,114,101,115,117,108,116,61,108,46,97,112,112,108,121,40,111,44,116,41,44,33,49,61,61,61,101,46,114,101,115,117,108,116,38,38,101,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,41,59,114,101,116,117,114,110,32,101,46,116,121,112,101,61,100,44,114,124,124,101,46,105,115,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,40,41,124,124,99,46,95,100,101,102,97,117,108,116,38,38,33,49,33,61,61,99,46,95,100,101,102,97,117,108,116,46,97,112,112,108,121,40,112,46,112,111,112,40,41,44,116,41,124,124,33,71,40,110,41,124,124,117,38,38,109,40,110,91,100,93,41,38,38,33,120,40,110,41,38,38,40,40,97,61,110,91,117,93,41,38,38,40,110,91,117,93,61,110,117,108,108,41,44,107,46,101,118,101,110,116,46,116,114,105,103,103,101,114,101,100,61,100,44,101,46,105,115,80,114,111,112,97,103,97,116,105,111,110,83,116,111,112,112,101,100,40,41,38,38,102,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,100,44,67,116,41,44,110,91,100,93,40,41,44,101,46,105,115,80,114,111,112,97,103,97,116,105,111,110,83,116,111,112,112,101,100,40,41,38,38,102,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,40,100,44,67,116,41,44,107,46,101,118,101,110,116,46,116,114,105,103,103,101,114,101,100,61,118,111,105,100,32,48,44,97,38,38,40,110,91,117,93,61,97,41,41,44,101,46,114,101,115,117,108,116,125,125,44,115,105,109,117,108,97,116,101,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,61,107,46,101,120,116,101,110,100,40,110,101,119,32,107,46,69,118,101,110,116,44,110,44,123,116,121,112,101,58,101,44,105,115,83,105,109,117,108,97,116,101,100,58,33,48,125,41,59,107,46,101,118,101,110,116,46,116,114,105,103,103,101,114,40,114,44,110,117,108,108,44,116,41,125,125,41,44,107,46,102,110,46,101,120,116,101,110,100,40,123,116,114,105,103,103,101,114,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,107,46,101,118,101,110,116,46,116,114,105,103,103,101,114,40,101,44,116,44,116,104,105,115,41,125,41,125,44,116,114,105,103,103,101,114,72,97,110,100,108,101,114,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,61,116,104,105,115,91,48,93,59,105,102,40,110,41,114,101,116,117,114,110,32,107,46,101,118,101,110,116,46,116,114,105,103,103,101,114,40,101,44,116,44,110,44,33,48,41,125,125,41,44,121,46,102,111,99,117,115,105,110,124,124,107,46,101,97,99,104,40,123,102,111,99,117,115,58,34,102,111,99,117,115,105,110,34,44,98,108,117,114,58,34,102,111,99,117,115,111,117,116,34,125,44,102,117,110,99,116,105,111,110,40,110,44,114,41,123,118,97,114,32,105,61,102,117,110,99,116,105,111,110,40,101,41,123,107,46,101,118,101,110,116,46,115,105,109,117,108,97,116,101,40,114,44,101,46,116,97,114,103,101,116,44,107,46,101,118,101,110,116,46,102,105,120,40,101,41,41,125,59,107,46,101,118,101,110,116,46,115,112,101,99,105,97,108,91,114,93,61,123,115,101,116,117,112,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,111,119,110,101,114,68,111,99,117,109,101,110,116,124,124,116,104,105,115,44,116,61,81,46,97,99,99,101,115,115,40,101,44,114,41,59,116,124,124,101,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,110,44,105,44,33,48,41,44,81,46,97,99,99,101,115,115,40,101,44,114,44,40,116,124,124,48,41,43,49,41,125,44,116,101,97,114,100,111,119,110,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,111,119,110,101,114,68,111,99,117,109,101,110,116,124,124,116,104,105,115,44,116,61,81,46,97,99,99,101,115,115,40,101,44,114,41,45,49,59,116,63,81,46,97,99,99,101,115,115,40,101,44,114,44,116,41,58,40,101,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,40,110,44,105,44,33,48,41,44,81,46,114,101,109,111,118,101,40,101,44,114,41,41,125,125,125,41,59,118,97,114,32,69,116,61,67,46,108,111,99,97,116,105,111,110,44,107,116,61,68,97,116,101,46,110,111,119,40,41,44,83,116,61,47,92,63,47,59,107,46,112,97,114,115,101,88,77,76,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,59,105,102,40,33,101,124,124,34,115,116,114,105,110,103,34,33,61,116,121,112,101,111,102,32,101,41,114,101,116,117,114,110,32,110,117,108,108,59,116,114,121,123,116,61,40,110,101,119,32,67,46,68,79,77,80,97,114,115,101,114,41,46,112,97,114,115,101,70,114,111,109,83,116,114,105,110,103,40,101,44,34,116,101,120,116,47,120,109,108,34,41,125,99,97,116,99,104,40,101,41,123,116,61,118,111,105,100,32,48,125,114,101,116,117,114,110,32,116,38,38,33,116,46,103,101,116,69,108,101,109,101,110,116,115,66,121,84,97,103,78,97,109,101,40,34,112,97,114,115,101,114,101,114,114,111,114,34,41,46,108,101,110,103,116,104,124,124,107,46,101,114,114,111,114,40,34,73,110,118,97,108,105,100,32,88,77,76,58,32,34,43,101,41,44,116,125,59,118,97,114,32,78,116,61,47,92,91,92,93,36,47,44,65,116,61,47,92,114,63,92,110,47,103,44,68,116,61,47,94,40,63,58,115,117,98,109,105,116,124,98,117,116,116,111,110,124,105,109,97,103,101,124,114,101,115,101,116,124,102,105,108,101,41,36,47,105,44,106,116,61,47,94,40,63,58,105,110,112,117,116,124,115,101,108,101,99,116,124,116,101,120,116,97,114,101,97,124,107,101,121,103,101,110,41,47,105,59,102,117,110,99,116,105,111,110,32,113,116,40,110,44,101,44,114,44,105,41,123,118,97,114,32,116,59,105,102,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,101,41,41,107,46,101,97,99,104,40,101,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,124,124,78,116,46,116,101,115,116,40,110,41,63,105,40,110,44,116,41,58,113,116,40,110,43,34,91,34,43,40,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,116,38,38,110,117,108,108,33,61,116,63,101,58,34,34,41,43,34,93,34,44,116,44,114,44,105,41,125,41,59,101,108,115,101,32,105,102,40,114,124,124,34,111,98,106,101,99,116,34,33,61,61,119,40,101,41,41,105,40,110,44,101,41,59,101,108,115,101,32,102,111,114,40,116,32,105,110,32,101,41,113,116,40,110,43,34,91,34,43,116,43,34,93,34,44,101,91,116,93,44,114,44,105,41,125,107,46,112,97,114,97,109,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,44,114,61,91,93,44,105,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,61,109,40,116,41,63,116,40,41,58,116,59,114,91,114,46,108,101,110,103,116,104,93,61,101,110,99,111,100,101,85,82,73,67,111,109,112,111,110,101,110,116,40,101,41,43,34,61,34,43,101,110,99,111,100,101,85,82,73,67,111,109,112,111,110,101,110,116,40,110,117,108,108,61,61,110,63,34,34,58,110,41,125,59,105,102,40,110,117,108,108,61,61,101,41,114,101,116,117,114,110,34,34,59,105,102,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,101,41,124,124,101,46,106,113,117,101,114,121,38,38,33,107,46,105,115,80,108,97,105,110,79,98,106,101,99,116,40,101,41,41,107,46,101,97,99,104,40,101,44,102,117,110,99,116,105,111,110,40,41,123,105,40,116,104,105,115,46,110,97,109,101,44,116,104,105,115,46,118,97,108,117,101,41,125,41,59,101,108,115,101,32,102,111,114,40,110,32,105,110,32,101,41,113,116,40,110,44,101,91,110,93,44,116,44,105,41,59,114,101,116,117,114,110,32,114,46,106,111,105,110,40,34,38,34,41,125,44,107,46,102,110,46,101,120,116,101,110,100,40,123,115,101,114,105,97,108,105,122,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,107,46,112,97,114,97,109,40,116,104,105,115,46,115,101,114,105,97,108,105,122,101,65,114,114,97,121,40,41,41,125,44,115,101,114,105,97,108,105,122,101,65,114,114,97,121,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,109,97,112,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,107,46,112,114,111,112,40,116,104,105,115,44,34,101,108,101,109,101,110,116,115,34,41,59,114,101,116,117,114,110,32,101,63,107,46,109,97,107,101,65,114,114,97,121,40,101,41,58,116,104,105,115,125,41,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,116,121,112,101,59,114,101,116,117,114,110,32,116,104,105,115,46,110,97,109,101,38,38,33,107,40,116,104,105,115,41,46,105,115,40,34,58,100,105,115,97,98,108,101,100,34,41,38,38,106,116,46,116,101,115,116,40,116,104,105,115,46,110,111,100,101,78,97,109,101,41,38,38,33,68,116,46,116,101,115,116,40,101,41,38,38,40,116,104,105,115,46,99,104,101,99,107,101,100,124,124,33,112,101,46,116,101,115,116,40,101,41,41,125,41,46,109,97,112,40,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,61,107,40,116,104,105,115,41,46,118,97,108,40,41,59,114,101,116,117,114,110,32,110,117,108,108,61,61,110,63,110,117,108,108,58,65,114,114,97,121,46,105,115,65,114,114,97,121,40,110,41,63,107,46,109,97,112,40,110,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,123,110,97,109,101,58,116,46,110,97,109,101,44,118,97,108,117,101,58,101,46,114,101,112,108,97,99,101,40,65,116,44,34,92,114,92,110,34,41,125,125,41,58,123,110,97,109,101,58,116,46,110,97,109,101,44,118,97,108,117,101,58,110,46,114,101,112,108,97,99,101,40,65,116,44,34,92,114,92,110,34,41,125,125,41,46,103,101,116,40,41,125,125,41,59,118,97,114,32,76,116,61,47,37,50,48,47,103,44,72,116,61,47,35,46,42,36,47,44,79,116,61,47,40,91,63,38,93,41,95,61,91,94,38,93,42,47,44,80,116,61,47,94,40,46,42,63,41,58,91,32,92,116,93,42,40,91,94,92,114,92,110,93,42,41,36,47,103,109,44,82,116,61,47,94,40,63,58,71,69,84,124,72,69,65,68,41,36,47,44,77,116,61,47,94,92,47,92,47,47,44,73,116,61,123,125,44,87,116,61,123,125,44,36,116,61,34,42,47,34,46,99,111,110,99,97,116,40,34,42,34,41,44,70,116,61,69,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,97,34,41,59,102,117,110,99,116,105,111,110,32,66,116,40,111,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,101,44,116,41,123,34,115,116,114,105,110,103,34,33,61,116,121,112,101,111,102,32,101,38,38,40,116,61,101,44,101,61,34,42,34,41,59,118,97,114,32,110,44,114,61,48,44,105,61,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,46,109,97,116,99,104,40,82,41,124,124,91,93,59,105,102,40,109,40,116,41,41,119,104,105,108,101,40,110,61,105,91,114,43,43,93,41,34,43,34,61,61,61,110,91,48,93,63,40,110,61,110,46,115,108,105,99,101,40,49,41,124,124,34,42,34,44,40,111,91,110,93,61,111,91,110,93,124,124,91,93,41,46,117,110,115,104,105,102,116,40,116,41,41,58,40,111,91,110,93,61,111,91,110,93,124,124,91,93,41,46,112,117,115,104,40,116,41,125,125,102,117,110,99,116,105,111,110,32,95,116,40,116,44,105,44,111,44,97,41,123,118,97,114,32,115,61,123,125,44,117,61,116,61,61,61,87,116,59,102,117,110,99,116,105,111,110,32,108,40,101,41,123,118,97,114,32,114,59,114,101,116,117,114,110,32,115,91,101,93,61,33,48,44,107,46,101,97,99,104,40,116,91,101,93,124,124,91,93,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,61,116,40,105,44,111,44,97,41,59,114,101,116,117,114,110,34,115,116,114,105,110,103,34,33,61,116,121,112,101,111,102,32,110,124,124,117,124,124,115,91,110,93,63,117,63,33,40,114,61,110,41,58,118,111,105,100,32,48,58,40,105,46,100,97,116,97,84,121,112,101,115,46,117,110,115,104,105,102,116,40,110,41,44,108,40,110,41,44,33,49,41,125,41,44,114,125,114,101,116,117,114,110,32,108,40,105,46,100,97,116,97,84,121,112,101,115,91,48,93,41,124,124,33,115,91,34,42,34,93,38,38,108,40,34,42,34,41,125,102,117,110,99,116,105,111,110,32,122,116,40,101,44,116,41,123,118,97,114,32,110,44,114,44,105,61,107,46,97,106,97,120,83,101,116,116,105,110,103,115,46,102,108,97,116,79,112,116,105,111,110,115,124,124,123,125,59,102,111,114,40,110,32,105,110,32,116,41,118,111,105,100,32,48,33,61,61,116,91,110,93,38,38,40,40,105,91,110,93,63,101,58,114,124,124,40,114,61,123,125,41,41,91,110,93,61,116,91,110,93,41,59,114,101,116,117,114,110,32,114,38,38,107,46,101,120,116,101,110,100,40,33,48,44,101,44,114,41,44,101,125,70,116,46,104,114,101,102,61,69,116,46,104,114,101,102,44,107,46,101,120,116,101,110,100,40,123,97,99,116,105,118,101,58,48,44,108,97,115,116,77,111,100,105,102,105,101,100,58,123,125,44,101,116,97,103,58,123,125,44,97,106,97,120,83,101,116,116,105,110,103,115,58,123,117,114,108,58,69,116,46,104,114,101,102,44,116,121,112,101,58,34,71,69,84,34,44,105,115,76,111,99,97,108,58,47,94,40,63,58,97,98,111,117,116,124,97,112,112,124,97,112,112,45,115,116,111,114,97,103,101,124,46,43,45,101,120,116,101,110,115,105,111,110,124,102,105,108,101,124,114,101,115,124,119,105,100,103,101,116,41,58,36,47,46,116,101,115,116,40,69,116,46,112,114,111,116,111,99,111,108,41,44,103,108,111,98,97,108,58,33,48,44,112,114,111,99,101,115,115,68,97,116,97,58,33,48,44,97,115,121,110,99,58,33,48,44,99,111,110,116,101,110,116,84,121,112,101,58,34,97,112,112,108,105,99,97,116,105,111,110,47,120,45,119,119,119,45,102,111,114,109,45,117,114,108,101,110,99,111,100,101,100,59,32,99,104,97,114,115,101,116,61,85,84,70,45,56,34,44,97,99,99,101,112,116,115,58,123,34,42,34,58,36,116,44,116,101,120,116,58,34,116,101,120,116,47,112,108,97,105,110,34,44,104,116,109,108,58,34,116,101,120,116,47,104,116,109,108,34,44,120,109,108,58,34,97,112,112,108,105,99,97,116,105,111,110,47,120,109,108,44,32,116,101,120,116,47,120,109,108,34,44,106,115,111,110,58,34,97,112,112,108,105,99,97,116,105,111,110,47,106,115,111,110,44,32,116,101,120,116,47,106,97,118,97,115,99,114,105,112,116,34,125,44,99,111,110,116,101,110,116,115,58,123,120,109,108,58,47,92,98,120,109,108,92,98,47,44,104,116,109,108,58,47,92,98,104,116,109,108,47,44,106,115,111,110,58,47,92,98,106,115,111,110,92,98,47,125,44,114,101,115,112,111,110,115,101,70,105,101,108,100,115,58,123,120,109,108,58,34,114,101,115,112,111,110,115,101,88,77,76,34,44,116,101,120,116,58,34,114,101,115,112,111,110,115,101,84,101,120,116,34,44,106,115,111,110,58,34,114,101,115,112,111,110,115,101,74,83,79,78,34,125,44,99,111,110,118,101,114,116,101,114,115,58,123,34,42,32,116,101,120,116,34,58,83,116,114,105,110,103,44,34,116,101,120,116,32,104,116,109,108,34,58,33,48,44,34,116,101,120,116,32,106,115,111,110,34,58,74,83,79,78,46,112,97,114,115,101,44,34,116,101,120,116,32,120,109,108,34,58,107,46,112,97,114,115,101,88,77,76,125,44,102,108,97,116,79,112,116,105,111,110,115,58,123,117,114,108,58,33,48,44,99,111,110,116,101,120,116,58,33,48,125,125,44,97,106,97,120,83,101,116,117,112,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,116,63,122,116,40,122,116,40,101,44,107,46,97,106,97,120,83,101,116,116,105,110,103,115,41,44,116,41,58,122,116,40,107,46,97,106,97,120,83,101,116,116,105,110,103,115,44,101,41,125,44,97,106,97,120,80,114,101,102,105,108,116,101,114,58,66,116,40,73,116,41,44,97,106,97,120,84,114,97,110,115,112,111,114,116,58,66,116,40,87,116,41,44,97,106,97,120,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,101,38,38,40,116,61,101,44,101,61,118,111,105,100,32,48,41,44,116,61,116,124,124,123,125,59,118,97,114,32,99,44,102,44,112,44,110,44,100,44,114,44,104,44,103,44,105,44,111,44,118,61,107,46,97,106,97,120,83,101,116,117,112,40,123,125,44,116,41,44,121,61,118,46,99,111,110,116,101,120,116,124,124,118,44,109,61,118,46,99,111,110,116,101,120,116,38,38,40,121,46,110,111,100,101,84,121,112,101,124,124,121,46,106,113,117,101,114,121,41,63,107,40,121,41,58,107,46,101,118,101,110,116,44,120,61,107,46,68,101,102,101,114,114,101,100,40,41,44,98,61,107,46,67,97,108,108,98,97,99,107,115,40,34,111,110,99,101,32,109,101,109,111,114,121,34,41,44,119,61,118,46,115,116,97,116,117,115,67,111,100,101,124,124,123,125,44,97,61,123,125,44,115,61,123,125,44,117,61,34,99,97,110,99,101,108,101,100,34,44,84,61,123,114,101,97,100,121,83,116,97,116,101,58,48,44,103,101,116,82,101,115,112,111,110,115,101,72,101,97,100,101,114,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,59,105,102,40,104,41,123,105,102,40,33,110,41,123,110,61,123,125,59,119,104,105,108,101,40,116,61,80,116,46,101,120,101,99,40,112,41,41,110,91,116,91,49,93,46,116,111,76,111,119,101,114,67,97,115,101,40,41,43,34,32,34,93,61,40,110,91,116,91,49,93,46,116,111,76,111,119,101,114,67,97,115,101,40,41,43,34,32,34,93,124,124,91,93,41,46,99,111,110,99,97,116,40,116,91,50,93,41,125,116,61,110,91,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,43,34,32,34,93,125,114,101,116,117,114,110,32,110,117,108,108,61,61,116,63,110,117,108,108,58,116,46,106,111,105,110,40,34,44,32,34,41,125,44,103,101,116,65,108,108,82,101,115,112,111,110,115,101,72,101,97,100,101,114,115,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,104,63,112,58,110,117,108,108,125,44,115,101,116,82,101,113,117,101,115,116,72,101,97,100,101,114,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,104,38,38,40,101,61,115,91,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,93,61,115,91,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,93,124,124,101,44,97,91,101,93,61,116,41,44,116,104,105,115,125,44,111,118,101,114,114,105,100,101,77,105,109,101,84,121,112,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,104,38,38,40,118,46,109,105,109,101,84,121,112,101,61,101,41,44,116,104,105,115,125,44,115,116,97,116,117,115,67,111,100,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,59,105,102,40,101,41,105,102,40,104,41,84,46,97,108,119,97,121,115,40,101,91,84,46,115,116,97,116,117,115,93,41,59,101,108,115,101,32,102,111,114,40,116,32,105,110,32,101,41,119,91,116,93,61,91,119,91,116,93,44,101,91,116,93,93,59,114,101,116,117,114,110,32,116,104,105,115,125,44,97,98,111,114,116,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,124,124,117,59,114,101,116,117,114,110,32,99,38,38,99,46,97,98,111,114,116,40,116,41,44,108,40,48,44,116,41,44,116,104,105,115,125,125,59,105,102,40,120,46,112,114,111,109,105,115,101,40,84,41,44,118,46,117,114,108,61,40,40,101,124,124,118,46,117,114,108,124,124,69,116,46,104,114,101,102,41,43,34,34,41,46,114,101,112,108,97,99,101,40,77,116,44,69,116,46,112,114,111,116,111,99,111,108,43,34,47,47,34,41,44,118,46,116,121,112,101,61,116,46,109,101,116,104,111,100,124,124,116,46,116,121,112,101,124,124,118,46,109,101,116,104,111,100,124,124,118,46,116,121,112,101,44,118,46,100,97,116,97,84,121,112,101,115,61,40,118,46,100,97,116,97,84,121,112,101,124,124,34,42,34,41,46,116,111,76,111,119,101,114,67,97,115,101,40,41,46,109,97,116,99,104,40,82,41,124,124,91,34,34,93,44,110,117,108,108,61,61,118,46,99,114,111,115,115,68,111,109,97,105,110,41,123,114,61,69,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,97,34,41,59,116,114,121,123,114,46,104,114,101,102,61,118,46,117,114,108,44,114,46,104,114,101,102,61,114,46,104,114,101,102,44,118,46,99,114,111,115,115,68,111,109,97,105,110,61,70,116,46,112,114,111,116,111,99,111,108,43,34,47,47,34,43,70,116,46,104,111,115,116,33,61,114,46,112,114,111,116,111,99,111,108,43,34,47,47,34,43,114,46,104,111,115,116,125,99,97,116,99,104,40,101,41,123,118,46,99,114,111,115,115,68,111,109,97,105,110,61,33,48,125,125,105,102,40,118,46,100,97,116,97,38,38,118,46,112,114,111,99,101,115,115,68,97,116,97,38,38,34,115,116,114,105,110,103,34,33,61,116,121,112,101,111,102,32,118,46,100,97,116,97,38,38,40,118,46,100,97,116,97,61,107,46,112,97,114,97,109,40,118,46,100,97,116,97,44,118,46,116,114,97,100,105,116,105,111,110,97,108,41,41,44,95,116,40,73,116,44,118,44,116,44,84,41,44,104,41,114,101,116,117,114,110,32,84,59,102,111,114,40,105,32,105,110,40,103,61,107,46,101,118,101,110,116,38,38,118,46,103,108,111,98,97,108,41,38,38,48,61,61,107,46,97,99,116,105,118,101,43,43,38,38,107,46,101,118,101,110,116,46,116,114,105,103,103,101,114,40,34,97,106,97,120,83,116,97,114,116,34,41,44,118,46,116,121,112,101,61,118,46,116,121,112,101,46,116,111,85,112,112,101,114,67,97,115,101,40,41,44,118,46,104,97,115,67,111,110,116,101,110,116,61,33,82,116,46,116,101,115,116,40,118,46,116,121,112,101,41,44,102,61,118,46,117,114,108,46,114,101,112,108,97,99,101,40,72,116,44,34,34,41,44,118,46,104,97,115,67,111,110,116,101,110,116,63,118,46,100,97,116,97,38,38,118,46,112,114,111,99,101,115,115,68,97,116,97,38,38,48,61,61,61,40,118,46,99,111,110,116,101,110,116,84,121,112,101,124,124,34,34,41,46,105,110,100,101,120,79,102,40,34,97,112,112,108,105,99,97,116,105,111,110,47,120,45,119,119,119,45,102,111,114,109,45,117,114,108,101,110,99,111,100,101,100,34,41,38,38,40,118,46,100,97,116,97,61,118,46,100,97,116,97,46,114,101,112,108,97,99,101,40,76,116,44,34,43,34,41,41,58,40,111,61,118,46,117,114,108,46,115,108,105,99,101,40,102,46,108,101,110,103,116,104,41,44,118,46,100,97,116,97,38,38,40,118,46,112,114,111,99,101,115,115,68,97,116,97,124,124,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,118,46,100,97,116,97,41,38,38,40,102,43,61,40,83,116,46,116,101,115,116,40,102,41,63,34,38,34,58,34,63,34,41,43,118,46,100,97,116,97,44,100,101,108,101,116,101,32,118,46,100,97,116,97,41,44,33,49,61,61,61,118,46,99,97,99,104,101,38,38,40,102,61,102,46,114,101,112,108,97,99,101,40,79,116,44,34,36,49,34,41,44,111,61,40,83,116,46,116,101,115,116,40,102,41,63,34,38,34,58,34,63,34,41,43,34,95,61,34,43,107,116,43,43,43,111,41,44,118,46,117,114,108,61,102,43,111,41,44,118,46,105,102,77,111,100,105,102,105,101,100,38,38,40,107,46,108,97,115,116,77,111,100,105,102,105,101,100,91,102,93,38,38,84,46,115,101,116,82,101,113,117,101,115,116,72,101,97,100,101,114,40,34,73,102,45,77,111,100,105,102,105,101,100,45,83,105,110,99,101,34,44,107,46,108,97,115,116,77,111,100,105,102,105,101,100,91,102,93,41,44,107,46,101,116,97,103,91,102,93,38,38,84,46,115,101,116,82,101,113,117,101,115,116,72,101,97,100,101,114,40,34,73,102,45,78,111,110,101,45,77,97,116,99,104,34,44,107,46,101,116,97,103,91,102,93,41,41,44,40,118,46,100,97,116,97,38,38,118,46,104,97,115,67,111,110,116,101,110,116,38,38,33,49,33,61,61,118,46,99,111,110,116,101,110,116,84,121,112,101,124,124,116,46,99,111,110,116,101,110,116,84,121,112,101,41,38,38,84,46,115,101,116,82,101,113,117,101,115,116,72,101,97,100,101,114,40,34,67,111,110,116,101,110,116,45,84,121,112,101,34,44,118,46,99,111,110,116,101,110,116,84,121,112,101,41,44,84,46,115,101,116,82,101,113,117,101,115,116,72,101,97,100,101,114,40,34,65,99,99,101,112,116,34,44,118,46,100,97,116,97,84,121,112,101,115,91,48,93,38,38,118,46,97,99,99,101,112,116,115,91,118,46,100,97,116,97,84,121,112,101,115,91,48,93,93,63,118,46,97,99,99,101,112,116,115,91,118,46,100,97,116,97,84,121,112,101,115,91,48,93,93,43,40,34,42,34,33,61,61,118,46,100,97,116,97,84,121,112,101,115,91,48,93,63,34,44,32,34,43,36,116,43,34,59,32,113,61,48,46,48,49,34,58,34,34,41,58,118,46,97,99,99,101,112,116,115,91,34,42,34,93,41,44,118,46,104,101,97,100,101,114,115,41,84,46,115,101,116,82,101,113,117,101,115,116,72,101,97,100,101,114,40,105,44,118,46,104,101,97,100,101,114,115,91,105,93,41,59,105,102,40,118,46,98,101,102,111,114,101,83,101,110,100,38,38,40,33,49,61,61,61,118,46,98,101,102,111,114,101,83,101,110,100,46,99,97,108,108,40,121,44,84,44,118,41,124,124,104,41,41,114,101,116,117,114,110,32,84,46,97,98,111,114,116,40,41,59,105,102,40,117,61,34,97,98,111,114,116,34,44,98,46,97,100,100,40,118,46,99,111,109,112,108,101,116,101,41,44,84,46,100,111,110,101,40,118,46,115,117,99,99,101,115,115,41,44,84,46,102,97,105,108,40,118,46,101,114,114,111,114,41,44,99,61,95,116,40,87,116,44,118,44,116,44,84,41,41,123,105,102,40,84,46,114,101,97,100,121,83,116,97,116,101,61,49,44,103,38,38,109,46,116,114,105,103,103,101,114,40,34,97,106,97,120,83,101,110,100,34,44,91,84,44,118,93,41,44,104,41,114,101,116,117,114,110,32,84,59,118,46,97,115,121,110,99,38,38,48,60,118,46,116,105,109,101,111,117,116,38,38,40,100,61,67,46,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,40,41,123,84,46,97,98,111,114,116,40,34,116,105,109,101,111,117,116,34,41,125,44,118,46,116,105,109,101,111,117,116,41,41,59,116,114,121,123,104,61,33,49,44,99,46,115,101,110,100,40,97,44,108,41,125,99,97,116,99,104,40,101,41,123,105,102,40,104,41,116,104,114,111,119,32,101,59,108,40,45,49,44,101,41,125,125,101,108,115,101,32,108,40,45,49,44,34,78,111,32,84,114,97,110,115,112,111,114,116,34,41,59,102,117,110,99,116,105,111,110,32,108,40,101,44,116,44,110,44,114,41,123,118,97,114,32,105,44,111,44,97,44,115,44,117,44,108,61,116,59,104,124,124,40,104,61,33,48,44,100,38,38,67,46,99,108,101,97,114,84,105,109,101,111,117,116,40,100,41,44,99,61,118,111,105,100,32,48,44,112,61,114,124,124,34,34,44,84,46,114,101,97,100,121,83,116,97,116,101,61,48,60,101,63,52,58,48,44,105,61,50,48,48,60,61,101,38,38,101,60,51,48,48,124,124,51,48,52,61,61,61,101,44,110,38,38,40,115,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,44,105,44,111,44,97,44,115,61,101,46,99,111,110,116,101,110,116,115,44,117,61,101,46,100,97,116,97,84,121,112,101,115,59,119,104,105,108,101,40,34,42,34,61,61,61,117,91,48,93,41,117,46,115,104,105,102,116,40,41,44,118,111,105,100,32,48,61,61,61,114,38,38,40,114,61,101,46,109,105,109,101,84,121,112,101,124,124,116,46,103,101,116,82,101,115,112,111,110,115,101,72,101,97,100,101,114,40,34,67,111,110,116,101,110,116,45,84,121,112,101,34,41,41,59,105,102,40,114,41,102,111,114,40,105,32,105,110,32,115,41,105,102,40,115,91,105,93,38,38,115,91,105,93,46,116,101,115,116,40,114,41,41,123,117,46,117,110,115,104,105,102,116,40,105,41,59,98,114,101,97,107,125,105,102,40,117,91,48,93,105,110,32,110,41,111,61,117,91,48,93,59,101,108,115,101,123,102,111,114,40,105,32,105,110,32,110,41,123,105,102,40,33,117,91,48,93,124,124,101,46,99,111,110,118,101,114,116,101,114,115,91,105,43,34,32,34,43,117,91,48,93,93,41,123,111,61,105,59,98,114,101,97,107,125,97,124,124,40,97,61,105,41,125,111,61,111,124,124,97,125,105,102,40,111,41,114,101,116,117,114,110,32,111,33,61,61,117,91,48,93,38,38,117,46,117,110,115,104,105,102,116,40,111,41,44,110,91,111,93,125,40,118,44,84,44,110,41,41,44,115,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,114,41,123,118,97,114,32,105,44,111,44,97,44,115,44,117,44,108,61,123,125,44,99,61,101,46,100,97,116,97,84,121,112,101,115,46,115,108,105,99,101,40,41,59,105,102,40,99,91,49,93,41,102,111,114,40,97,32,105,110,32,101,46,99,111,110,118,101,114,116,101,114,115,41,108,91,97,46,116,111,76,111,119,101,114,67,97,115,101,40,41,93,61,101,46,99,111,110,118,101,114,116,101,114,115,91,97,93,59,111,61,99,46,115,104,105,102,116,40,41,59,119,104,105,108,101,40,111,41,105,102,40,101,46,114,101,115,112,111,110,115,101,70,105,101,108,100,115,91,111,93,38,38,40,110,91,101,46,114,101,115,112,111,110,115,101,70,105,101,108,100,115,91,111,93,93,61,116,41,44,33,117,38,38,114,38,38,101,46,100,97,116,97,70,105,108,116,101,114,38,38,40,116,61,101,46,100,97,116,97,70,105,108,116,101,114,40,116,44,101,46,100,97,116,97,84,121,112,101,41,41,44,117,61,111,44,111,61,99,46,115,104,105,102,116,40,41,41,105,102,40,34,42,34,61,61,61,111,41,111,61,117,59,101,108,115,101,32,105,102,40,34,42,34,33,61,61,117,38,38,117,33,61,61,111,41,123,105,102,40,33,40,97,61,108,91,117,43,34,32,34,43,111,93,124,124,108,91,34,42,32,34,43,111,93,41,41,102,111,114,40,105,32,105,110,32,108,41,105,102,40,40,115,61,105,46,115,112,108,105,116,40,34,32,34,41,41,91,49,93,61,61,61,111,38,38,40,97,61,108,91,117,43,34,32,34,43,115,91,48,93,93,124,124,108,91,34,42,32,34,43,115,91,48,93,93,41,41,123,33,48,61,61,61,97,63,97,61,108,91,105,93,58,33,48,33,61,61,108,91,105,93,38,38,40,111,61,115,91,48,93,44,99,46,117,110,115,104,105,102,116,40,115,91,49,93,41,41,59,98,114,101,97,107,125,105,102,40,33,48,33,61,61,97,41,105,102,40,97,38,38,101,91,34,116,104,114,111,119,115,34,93,41,116,61,97,40,116,41,59,101,108,115,101,32,116,114,121,123,116,61,97,40,116,41,125,99,97,116,99,104,40,101,41,123,114,101,116,117,114,110,123,115,116,97,116,101,58,34,112,97,114,115,101,114,101,114,114,111,114,34,44,101,114,114,111,114,58,97,63,101,58,34,78,111,32,99,111,110,118,101,114,115,105,111,110,32,102,114,111,109,32,34,43,117,43,34,32,116,111,32,34,43,111,125,125,125,114,101,116,117,114,110,123,115,116,97,116,101,58,34,115,117,99,99,101,115,115,34,44,100,97,116,97,58,116,125,125,40,118,44,115,44,84,44,105,41,44,105,63,40,118,46,105,102,77,111,100,105,102,105,101,100,38,38,40,40,117,61,84,46,103,101,116,82,101,115,112,111,110,115,101,72,101,97,100,101,114,40,34,76,97,115,116,45,77,111,100,105,102,105,101,100,34,41,41,38,38,40,107,46,108,97,115,116,77,111,100,105,102,105,101,100,91,102,93,61,117,41,44,40,117,61,84,46,103,101,116,82,101,115,112,111,110,115,101,72,101,97,100,101,114,40,34,101,116,97,103,34,41,41,38,38,40,107,46,101,116,97,103,91,102,93,61,117,41,41,44,50,48,52,61,61,61,101,124,124,34,72,69,65,68,34,61,61,61,118,46,116,121,112,101,63,108,61,34,110,111,99,111,110,116,101,110,116,34,58,51,48,52,61,61,61,101,63,108,61,34,110,111,116,109,111,100,105,102,105,101,100,34,58,40,108,61,115,46,115,116,97,116,101,44,111,61,115,46,100,97,116,97,44,105,61,33,40,97,61,115,46,101,114,114,111,114,41,41,41,58,40,97,61,108,44,33,101,38,38,108,124,124,40,108,61,34,101,114,114,111,114,34,44,101,60,48,38,38,40,101,61,48,41,41,41,44,84,46,115,116,97,116,117,115,61,101,44,84,46,115,116,97,116,117,115,84,101,120,116,61,40,116,124,124,108,41,43,34,34,44,105,63,120,46,114,101,115,111,108,118,101,87,105,116,104,40,121,44,91,111,44,108,44,84,93,41,58,120,46,114,101,106,101,99,116,87,105,116,104,40,121,44,91,84,44,108,44,97,93,41,44,84,46,115,116,97,116,117,115,67,111,100,101,40,119,41,44,119,61,118,111,105,100,32,48,44,103,38,38,109,46,116,114,105,103,103,101,114,40,105,63,34,97,106,97,120,83,117,99,99,101,115,115,34,58,34,97,106,97,120,69,114,114,111,114,34,44,91,84,44,118,44,105,63,111,58,97,93,41,44,98,46,102,105,114,101,87,105,116,104,40,121,44,91,84,44,108,93,41,44,103,38,38,40,109,46,116,114,105,103,103,101,114,40,34,97,106,97,120,67,111,109,112,108,101,116,101,34,44,91,84,44,118,93,41,44,45,45,107,46,97,99,116,105,118,101,124,124,107,46,101,118,101,110,116,46,116,114,105,103,103,101,114,40,34,97,106,97,120,83,116,111,112,34,41,41,41,125,114,101,116,117,114,110,32,84,125,44,103,101,116,74,83,79,78,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,114,101,116,117,114,110,32,107,46,103,101,116,40,101,44,116,44,110,44,34,106,115,111,110,34,41,125,44,103,101,116,83,99,114,105,112,116,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,107,46,103,101,116,40,101,44,118,111,105,100,32,48,44,116,44,34,115,99,114,105,112,116,34,41,125,125,41,44,107,46,101,97,99,104,40,91,34,103,101,116,34,44,34,112,111,115,116,34,93,44,102,117,110,99,116,105,111,110,40,101,44,105,41,123,107,91,105,93,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,114,41,123,114,101,116,117,114,110,32,109,40,116,41,38,38,40,114,61,114,124,124,110,44,110,61,116,44,116,61,118,111,105,100,32,48,41,44,107,46,97,106,97,120,40,107,46,101,120,116,101,110,100,40,123,117,114,108,58,101,44,116,121,112,101,58,105,44,100,97,116,97,84,121,112,101,58,114,44,100,97,116,97,58,116,44,115,117,99,99,101,115,115,58,110,125,44,107,46,105,115,80,108,97,105,110,79,98,106,101,99,116,40,101,41,38,38,101,41,41,125,125,41,44,107,46,95,101,118,97,108,85,114,108,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,107,46,97,106,97,120,40,123,117,114,108,58,101,44,116,121,112,101,58,34,71,69,84,34,44,100,97,116,97,84,121,112,101,58,34,115,99,114,105,112,116,34,44,99,97,99,104,101,58,33,48,44,97,115,121,110,99,58,33,49,44,103,108,111,98,97,108,58,33,49,44,99,111,110,118,101,114,116,101,114,115,58,123,34,116,101,120,116,32,115,99,114,105,112,116,34,58,102,117,110,99,116,105,111,110,40,41,123,125,125,44,100,97,116,97,70,105,108,116,101,114,58,102,117,110,99,116,105,111,110,40,101,41,123,107,46,103,108,111,98,97,108,69,118,97,108,40,101,44,116,41,125,125,41,125,44,107,46,102,110,46,101,120,116,101,110,100,40,123,119,114,97,112,65,108,108,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,59,114,101,116,117,114,110,32,116,104,105,115,91,48,93,38,38,40,109,40,101,41,38,38,40,101,61,101,46,99,97,108,108,40,116,104,105,115,91,48,93,41,41,44,116,61,107,40,101,44,116,104,105,115,91,48,93,46,111,119,110,101,114,68,111,99,117,109,101,110,116,41,46,101,113,40,48,41,46,99,108,111,110,101,40,33,48,41,44,116,104,105,115,91,48,93,46,112,97,114,101,110,116,78,111,100,101,38,38,116,46,105,110,115,101,114,116,66,101,102,111,114,101,40,116,104,105,115,91,48,93,41,44,116,46,109,97,112,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,59,119,104,105,108,101,40,101,46,102,105,114,115,116,69,108,101,109,101,110,116,67,104,105,108,100,41,101,61,101,46,102,105,114,115,116,69,108,101,109,101,110,116,67,104,105,108,100,59,114,101,116,117,114,110,32,101,125,41,46,97,112,112,101,110,100,40,116,104,105,115,41,41,44,116,104,105,115,125,44,119,114,97,112,73,110,110,101,114,58,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,109,40,110,41,63,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,101,41,123,107,40,116,104,105,115,41,46,119,114,97,112,73,110,110,101,114,40,110,46,99,97,108,108,40,116,104,105,115,44,101,41,41,125,41,58,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,107,40,116,104,105,115,41,44,116,61,101,46,99,111,110,116,101,110,116,115,40,41,59,116,46,108,101,110,103,116,104,63,116,46,119,114,97,112,65,108,108,40,110,41,58,101,46,97,112,112,101,110,100,40,110,41,125,41,125,44,119,114,97,112,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,109,40,116,41,59,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,101,41,123,107,40,116,104,105,115,41,46,119,114,97,112,65,108,108,40,110,63,116,46,99,97,108,108,40,116,104,105,115,44,101,41,58,116,41,125,41,125,44,117,110,119,114,97,112,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,112,97,114,101,110,116,40,101,41,46,110,111,116,40,34,98,111,100,121,34,41,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,107,40,116,104,105,115,41,46,114,101,112,108,97,99,101,87,105,116,104,40,116,104,105,115,46,99,104,105,108,100,78,111,100,101,115,41,125,41,44,116,104,105,115,125,125,41,44,107,46,101,120,112,114,46,112,115,101,117,100,111,115,46,104,105,100,100,101,110,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,33,107,46,101,120,112,114,46,112,115,101,117,100,111,115,46,118,105,115,105,98,108,101,40,101,41,125,44,107,46,101,120,112,114,46,112,115,101,117,100,111,115,46,118,105,115,105,98,108,101,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,33,33,40,101,46,111,102,102,115,101,116,87,105,100,116,104,124,124,101,46,111,102,102,115,101,116,72,101,105,103,104,116,124,124,101,46,103,101,116,67,108,105,101,110,116,82,101,99,116,115,40,41,46,108,101,110,103,116,104,41,125,44,107,46,97,106,97,120,83,101,116,116,105,110,103,115,46,120,104,114,61,102,117,110,99,116,105,111,110,40,41,123,116,114,121,123,114,101,116,117,114,110,32,110,101,119,32,67,46,88,77,76,72,116,116,112,82,101,113,117,101,115,116,125,99,97,116,99,104,40,101,41,123,125,125,59,118,97,114,32,85,116,61,123,48,58,50,48,48,44,49,50,50,51,58,50,48,52,125,44,88,116,61,107,46,97,106,97,120,83,101,116,116,105,110,103,115,46,120,104,114,40,41,59,121,46,99,111,114,115,61,33,33,88,116,38,38,34,119,105,116,104,67,114,101,100,101,110,116,105,97,108,115,34,105,110,32,88,116,44,121,46,97,106,97,120,61,88,116,61,33,33,88,116,44,107,46,97,106,97,120,84,114,97,110,115,112,111,114,116,40,102,117,110,99,116,105,111,110,40,105,41,123,118,97,114,32,111,44,97,59,105,102,40,121,46,99,111,114,115,124,124,88,116,38,38,33,105,46,99,114,111,115,115,68,111,109,97,105,110,41,114,101,116,117,114,110,123,115,101,110,100,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,44,114,61,105,46,120,104,114,40,41,59,105,102,40,114,46,111,112,101,110,40,105,46,116,121,112,101,44,105,46,117,114,108,44,105,46,97,115,121,110,99,44,105,46,117,115,101,114,110,97,109,101,44,105,46,112,97,115,115,119,111,114,100,41,44,105,46,120,104,114,70,105,101,108,100,115,41,102,111,114,40,110,32,105,110,32,105,46,120,104,114,70,105,101,108,100,115,41,114,91,110,93,61,105,46,120,104,114,70,105,101,108,100,115,91,110,93,59,102,111,114,40,110,32,105,110,32,105,46,109,105,109,101,84,121,112,101,38,38,114,46,111,118,101,114,114,105,100,101,77,105,109,101,84,121,112,101,38,38,114,46,111,118,101,114,114,105,100,101,77,105,109,101,84,121,112,101,40,105,46,109,105,109,101,84,121,112,101,41,44,105,46,99,114,111,115,115,68,111,109,97,105,110,124,124,101,91,34,88,45,82,101,113,117,101,115,116,101,100,45,87,105,116,104,34,93,124,124,40,101,91,34,88,45,82,101,113,117,101,115,116,101,100,45,87,105,116,104,34,93,61,34,88,77,76,72,116,116,112,82,101,113,117,101,115,116,34,41,44,101,41,114,46,115,101,116,82,101,113,117,101,115,116,72,101,97,100,101,114,40,110,44,101,91,110,93,41,59,111,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,111,38,38,40,111,61,97,61,114,46,111,110,108,111,97,100,61,114,46,111,110,101,114,114,111,114,61,114,46,111,110,97,98,111,114,116,61,114,46,111,110,116,105,109,101,111,117,116,61,114,46,111,110,114,101,97,100,121,115,116,97,116,101,99,104,97,110,103,101,61,110,117,108,108,44,34,97,98,111,114,116,34,61,61,61,101,63,114,46,97,98,111,114,116,40,41,58,34,101,114,114,111,114,34,61,61,61,101,63,34,110,117,109,98,101,114,34,33,61,116,121,112,101,111,102,32,114,46,115,116,97,116,117,115,63,116,40,48,44,34,101,114,114,111,114,34,41,58,116,40,114,46,115,116,97,116,117,115,44,114,46,115,116,97,116,117,115,84,101,120,116,41,58,116,40,85,116,91,114,46,115,116,97,116,117,115,93,124,124,114,46,115,116,97,116,117,115,44,114,46,115,116,97,116,117,115,84,101,120,116,44,34,116,101,120,116,34,33,61,61,40,114,46,114,101,115,112,111,110,115,101,84,121,112,101,124,124,34,116,101,120,116,34,41,124,124,34,115,116,114,105,110,103,34,33,61,116,121,112,101,111,102,32,114,46,114,101,115,112,111,110,115,101,84,101,120,116,63,123,98,105,110,97,114,121,58,114,46,114,101,115,112,111,110,115,101,125,58,123,116,101,120,116,58,114,46,114,101,115,112,111,110,115,101,84,101,120,116,125,44,114,46,103,101,116,65,108,108,82,101,115,112,111,110,115,101,72,101,97,100,101,114,115,40,41,41,41,125,125,44,114,46,111,110,108,111,97,100,61,111,40,41,44,97,61,114,46,111,110,101,114,114,111,114,61,114,46,111,110,116,105,109,101,111,117,116,61,111,40,34,101,114,114,111,114,34,41,44,118,111,105,100,32,48,33,61,61,114,46,111,110,97,98,111,114,116,63,114,46,111,110,97,98,111,114,116,61,97,58,114,46,111,110,114,101,97,100,121,115,116,97,116,101,99,104,97,110,103,101,61,102,117,110,99,116,105,111,110,40,41,123,52,61,61,61,114,46,114,101,97,100,121,83,116,97,116,101,38,38,67,46,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,40,41,123,111,38,38,97,40,41,125,41,125,44,111,61,111,40,34,97,98,111,114,116,34,41,59,116,114,121,123,114,46,115,101,110,100,40,105,46,104,97,115,67,111,110,116,101,110,116,38,38,105,46,100,97,116,97,124,124,110,117,108,108,41,125,99,97,116,99,104,40,101,41,123,105,102,40,111,41,116,104,114,111,119,32,101,125,125,44,97,98,111,114,116,58,102,117,110,99,116,105,111,110,40,41,123,111,38,38,111,40,41,125,125,125,41,44,107,46,97,106,97,120,80,114,101,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,40,101,41,123,101,46,99,114,111,115,115,68,111,109,97,105,110,38,38,40,101,46,99,111,110,116,101,110,116,115,46,115,99,114,105,112,116,61,33,49,41,125,41,44,107,46,97,106,97,120,83,101,116,117,112,40,123,97,99,99,101,112,116,115,58,123,115,99,114,105,112,116,58,34,116,101,120,116,47,106,97,118,97,115,99,114,105,112,116,44,32,97,112,112,108,105,99,97,116,105,111,110,47,106,97,118,97,115,99,114,105,112,116,44,32,97,112,112,108,105,99,97,116,105,111,110,47,101,99,109,97,115,99,114,105,112,116,44,32,97,112,112,108,105,99,97,116,105,111,110,47,120,45,101,99,109,97,115,99,114,105,112,116,34,125,44,99,111,110,116,101,110,116,115,58,123,115,99,114,105,112,116,58,47,92,98,40,63,58,106,97,118,97,124,101,99,109,97,41,115,99,114,105,112,116,92,98,47,125,44,99,111,110,118,101,114,116,101,114,115,58,123,34,116,101,120,116,32,115,99,114,105,112,116,34,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,107,46,103,108,111,98,97,108,69,118,97,108,40,101,41,44,101,125,125,125,41,44,107,46,97,106,97,120,80,114,101,102,105,108,116,101,114,40,34,115,99,114,105,112,116,34,44,102,117,110,99,116,105,111,110,40,101,41,123,118,111,105,100,32,48,61,61,61,101,46,99,97,99,104,101,38,38,40,101,46,99,97,99,104,101,61,33,49,41,44,101,46,99,114,111,115,115,68,111,109,97,105,110,38,38,40,101,46,116,121,112,101,61,34,71,69,84,34,41,125,41,44,107,46,97,106,97,120,84,114,97,110,115,112,111,114,116,40,34,115,99,114,105,112,116,34,44,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,114,44,105,59,105,102,40,110,46,99,114,111,115,115,68,111,109,97,105,110,124,124,110,46,115,99,114,105,112,116,65,116,116,114,115,41,114,101,116,117,114,110,123,115,101,110,100,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,61,107,40,34,60,115,99,114,105,112,116,62,34,41,46,97,116,116,114,40,110,46,115,99,114,105,112,116,65,116,116,114,115,124,124,123,125,41,46,112,114,111,112,40,123,99,104,97,114,115,101,116,58,110,46,115,99,114,105,112,116,67,104,97,114,115,101,116,44,115,114,99,58,110,46,117,114,108,125,41,46,111,110,40,34,108,111,97,100,32,101,114,114,111,114,34,44,105,61,102,117,110,99,116,105,111,110,40,101,41,123,114,46,114,101,109,111,118,101,40,41,44,105,61,110,117,108,108,44,101,38,38,116,40,34,101,114,114,111,114,34,61,61,61,101,46,116,121,112,101,63,52,48,52,58,50,48,48,44,101,46,116,121,112,101,41,125,41,44,69,46,104,101,97,100,46,97,112,112,101,110,100,67,104,105,108,100,40,114,91,48,93,41,125,44,97,98,111,114,116,58,102,117,110,99,116,105,111,110,40,41,123,105,38,38,105,40,41,125,125,125,41,59,118,97,114,32,86,116,44,71,116,61,91,93,44,89,116,61,47,40,61,41,92,63,40,63,61,38,124,36,41,124,92,63,92,63,47,59,107,46,97,106,97,120,83,101,116,117,112,40,123,106,115,111,110,112,58,34,99,97,108,108,98,97,99,107,34,44,106,115,111,110,112,67,97,108,108,98,97,99,107,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,71,116,46,112,111,112,40,41,124,124,107,46,101,120,112,97,110,100,111,43,34,95,34,43,107,116,43,43,59,114,101,116,117,114,110,32,116,104,105,115,91,101,93,61,33,48,44,101,125,125,41,44,107,46,97,106,97,120,80,114,101,102,105,108,116,101,114,40,34,106,115,111,110,32,106,115,111,110,112,34,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,44,105,44,111,44,97,61,33,49,33,61,61,101,46,106,115,111,110,112,38,38,40,89,116,46,116,101,115,116,40,101,46,117,114,108,41,63,34,117,114,108,34,58,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,101,46,100,97,116,97,38,38,48,61,61,61,40,101,46,99,111,110,116,101,110,116,84,121,112,101,124,124,34,34,41,46,105,110,100,101,120,79,102,40,34,97,112,112,108,105,99,97,116,105,111,110,47,120,45,119,119,119,45,102,111,114,109,45,117,114,108,101,110,99,111,100,101,100,34,41,38,38,89,116,46,116,101,115,116,40,101,46,100,97,116,97,41,38,38,34,100,97,116,97,34,41,59,105,102,40,97,124,124,34,106,115,111,110,112,34,61,61,61,101,46,100,97,116,97,84,121,112,101,115,91,48,93,41,114,101,116,117,114,110,32,114,61,101,46,106,115,111,110,112,67,97,108,108,98,97,99,107,61,109,40,101,46,106,115,111,110,112,67,97,108,108,98,97,99,107,41,63,101,46,106,115,111,110,112,67,97,108,108,98,97,99,107,40,41,58,101,46,106,115,111,110,112,67,97,108,108,98,97,99,107,44,97,63,101,91,97,93,61,101,91,97,93,46,114,101,112,108,97,99,101,40,89,116,44,34,36,49,34,43,114,41,58,33,49,33,61,61,101,46,106,115,111,110,112,38,38,40,101,46,117,114,108,43,61,40,83,116,46,116,101,115,116,40,101,46,117,114,108,41,63,34,38,34,58,34,63,34,41,43,101,46,106,115,111,110,112,43,34,61,34,43,114,41,44,101,46,99,111,110,118,101,114,116,101,114,115,91,34,115,99,114,105,112,116,32,106,115,111,110,34,93,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,111,124,124,107,46,101,114,114,111,114,40,114,43,34,32,119,97,115,32,110,111,116,32,99,97,108,108,101,100,34,41,44,111,91,48,93,125,44,101,46,100,97,116,97,84,121,112,101,115,91,48,93,61,34,106,115,111,110,34,44,105,61,67,91,114,93,44,67,91,114,93,61,102,117,110,99,116,105,111,110,40,41,123,111,61,97,114,103,117,109,101,110,116,115,125,44,110,46,97,108,119,97,121,115,40,102,117,110,99,116,105,111,110,40,41,123,118,111,105,100,32,48,61,61,61,105,63,107,40,67,41,46,114,101,109,111,118,101,80,114,111,112,40,114,41,58,67,91,114,93,61,105,44,101,91,114,93,38,38,40,101,46,106,115,111,110,112,67,97,108,108,98,97,99,107,61,116,46,106,115,111,110,112,67,97,108,108,98,97,99,107,44,71,116,46,112,117,115,104,40,114,41,41,44,111,38,38,109,40,105,41,38,38,105,40,111,91,48,93,41,44,111,61,105,61,118,111,105,100,32,48,125,41,44,34,115,99,114,105,112,116,34,125,41,44,121,46,99,114,101,97,116,101,72,84,77,76,68,111,99,117,109,101,110,116,61,40,40,86,116,61,69,46,105,109,112,108,101,109,101,110,116,97,116,105,111,110,46,99,114,101,97,116,101,72,84,77,76,68,111,99,117,109,101,110,116,40,34,34,41,46,98,111,100,121,41,46,105,110,110,101,114,72,84,77,76,61,34,60,102,111,114,109,62,60,47,102,111,114,109,62,60,102,111,114,109,62,60,47,102,111,114,109,62,34,44,50,61,61,61,86,116,46,99,104,105,108,100,78,111,100,101,115,46,108,101,110,103,116,104,41,44,107,46,112,97,114,115,101,72,84,77,76,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,114,101,116,117,114,110,34,115,116,114,105,110,103,34,33,61,116,121,112,101,111,102,32,101,63,91,93,58,40,34,98,111,111,108,101,97,110,34,61,61,116,121,112,101,111,102,32,116,38,38,40,110,61,116,44,116,61,33,49,41,44,116,124,124,40,121,46,99,114,101,97,116,101,72,84,77,76,68,111,99,117,109,101,110,116,63,40,40,114,61,40,116,61,69,46,105,109,112,108,101,109,101,110,116,97,116,105,111,110,46,99,114,101,97,116,101,72,84,77,76,68,111,99,117,109,101,110,116,40,34,34,41,41,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,98,97,115,101,34,41,41,46,104,114,101,102,61,69,46,108,111,99,97,116,105,111,110,46,104,114,101,102,44,116,46,104,101,97,100,46,97,112,112,101,110,100,67,104,105,108,100,40,114,41,41,58,116,61,69,41,44,111,61,33,110,38,38,91,93,44,40,105,61,68,46,101,120,101,99,40,101,41,41,63,91,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,105,91,49,93,41,93,58,40,105,61,119,101,40,91,101,93,44,116,44,111,41,44,111,38,38,111,46,108,101,110,103,116,104,38,38,107,40,111,41,46,114,101,109,111,118,101,40,41,44,107,46,109,101,114,103,101,40,91,93,44,105,46,99,104,105,108,100,78,111,100,101,115,41,41,41,59,118,97,114,32,114,44,105,44,111,125,44,107,46,102,110,46,108,111,97,100,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,44,105,44,111,44,97,61,116,104,105,115,44,115,61,101,46,105,110,100,101,120,79,102,40,34,32,34,41,59,114,101,116,117,114,110,45,49,60,115,38,38,40,114,61,109,116,40,101,46,115,108,105,99,101,40,115,41,41,44,101,61,101,46,115,108,105,99,101,40,48,44,115,41,41,44,109,40,116,41,63,40,110,61,116,44,116,61,118,111,105,100,32,48,41,58,116,38,38,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,116,38,38,40,105,61,34,80,79,83,84,34,41,44,48,60,97,46,108,101,110,103,116,104,38,38,107,46,97,106,97,120,40,123,117,114,108,58,101,44,116,121,112,101,58,105,124,124,34,71,69,84,34,44,100,97,116,97,84,121,112,101,58,34,104,116,109,108,34,44,100,97,116,97,58,116,125,41,46,100,111,110,101,40,102,117,110,99,116,105,111,110,40,101,41,123,111,61,97,114,103,117,109,101,110,116,115,44,97,46,104,116,109,108,40,114,63,107,40,34,60,100,105,118,62,34,41,46,97,112,112,101,110,100,40,107,46,112,97,114,115,101,72,84,77,76,40,101,41,41,46,102,105,110,100,40,114,41,58,101,41,125,41,46,97,108,119,97,121,115,40,110,38,38,102,117,110,99,116,105,111,110,40,101,44,116,41,123,97,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,110,46,97,112,112,108,121,40,116,104,105,115,44,111,124,124,91,101,46,114,101,115,112,111,110,115,101,84,101,120,116,44,116,44,101,93,41,125,41,125,41,44,116,104,105,115,125,44,107,46,101,97,99,104,40,91,34,97,106,97,120,83,116,97,114,116,34,44,34,97,106,97,120,83,116,111,112,34,44,34,97,106,97,120,67,111,109,112,108,101,116,101,34,44,34,97,106,97,120,69,114,114,111,114,34,44,34,97,106,97,120,83,117,99,99,101,115,115,34,44,34,97,106,97,120,83,101,110,100,34,93,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,107,46,102,110,91,116,93,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,111,110,40,116,44,101,41,125,125,41,44,107,46,101,120,112,114,46,112,115,101,117,100,111,115,46,97,110,105,109,97,116,101,100,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,107,46,103,114,101,112,40,107,46,116,105,109,101,114,115,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,61,61,61,101,46,101,108,101,109,125,41,46,108,101,110,103,116,104,125,44,107,46,111,102,102,115,101,116,61,123,115,101,116,79,102,102,115,101,116,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,44,105,44,111,44,97,44,115,44,117,44,108,61,107,46,99,115,115,40,101,44,34,112,111,115,105,116,105,111,110,34,41,44,99,61,107,40,101,41,44,102,61,123,125,59,34,115,116,97,116,105,99,34,61,61,61,108,38,38,40,101,46,115,116,121,108,101,46,112,111,115,105,116,105,111,110,61,34,114,101,108,97,116,105,118,101,34,41,44,115,61,99,46,111,102,102,115,101,116,40,41,44,111,61,107,46,99,115,115,40,101,44,34,116,111,112,34,41,44,117,61,107,46,99,115,115,40,101,44,34,108,101,102,116,34,41,44,40,34,97,98,115,111,108,117,116,101,34,61,61,61,108,124,124,34,102,105,120,101,100,34,61,61,61,108,41,38,38,45,49,60,40,111,43,117,41,46,105,110,100,101,120,79,102,40,34,97,117,116,111,34,41,63,40,97,61,40,114,61,99,46,112,111,115,105,116,105,111,110,40,41,41,46,116,111,112,44,105,61,114,46,108,101,102,116,41,58,40,97,61,112,97,114,115,101,70,108,111,97,116,40,111,41,124,124,48,44,105,61,112,97,114,115,101,70,108,111,97,116,40,117,41,124,124,48,41,44,109,40,116,41,38,38,40,116,61,116,46,99,97,108,108,40,101,44,110,44,107,46,101,120,116,101,110,100,40,123,125,44,115,41,41,41,44,110,117,108,108,33,61,116,46,116,111,112,38,38,40,102,46,116,111,112,61,116,46,116,111,112,45,115,46,116,111,112,43,97,41,44,110,117,108,108,33,61,116,46,108,101,102,116,38,38,40,102,46,108,101,102,116,61,116,46,108,101,102,116,45,115,46,108,101,102,116,43,105,41,44,34,117,115,105,110,103,34,105,110,32,116,63,116,46,117,115,105,110,103,46,99,97,108,108,40,101,44,102,41,58,99,46,99,115,115,40,102,41,125,125,44,107,46,102,110,46,101,120,116,101,110,100,40,123,111,102,102,115,101,116,58,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,114,101,116,117,114,110,32,118,111,105,100,32,48,61,61,61,116,63,116,104,105,115,58,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,101,41,123,107,46,111,102,102,115,101,116,46,115,101,116,79,102,102,115,101,116,40,116,104,105,115,44,116,44,101,41,125,41,59,118,97,114,32,101,44,110,44,114,61,116,104,105,115,91,48,93,59,114,101,116,117,114,110,32,114,63,114,46,103,101,116,67,108,105,101,110,116,82,101,99,116,115,40,41,46,108,101,110,103,116,104,63,40,101,61,114,46,103,101,116,66,111,117,110,100,105,110,103,67,108,105,101,110,116,82,101,99,116,40,41,44,110,61,114,46,111,119,110,101,114,68,111,99,117,109,101,110,116,46,100,101,102,97,117,108,116,86,105,101,119,44,123,116,111,112,58,101,46,116,111,112,43,110,46,112,97,103,101,89,79,102,102,115,101,116,44,108,101,102,116,58,101,46,108,101,102,116,43,110,46,112,97,103,101,88,79,102,102,115,101,116,125,41,58,123,116,111,112,58,48,44,108,101,102,116,58,48,125,58,118,111,105,100,32,48,125,44,112,111,115,105,116,105,111,110,58,102,117,110,99,116,105,111,110,40,41,123,105,102,40,116,104,105,115,91,48,93,41,123,118,97,114,32,101,44,116,44,110,44,114,61,116,104,105,115,91,48,93,44,105,61,123,116,111,112,58,48,44,108,101,102,116,58,48,125,59,105,102,40,34,102,105,120,101,100,34,61,61,61,107,46,99,115,115,40,114,44,34,112,111,115,105,116,105,111,110,34,41,41,116,61,114,46,103,101,116,66,111,117,110,100,105,110,103,67,108,105,101,110,116,82,101,99,116,40,41,59,101,108,115,101,123,116,61,116,104,105,115,46,111,102,102,115,101,116,40,41,44,110,61,114,46,111,119,110,101,114,68,111,99,117,109,101,110,116,44,101,61,114,46,111,102,102,115,101,116,80,97,114,101,110,116,124,124,110,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,59,119,104,105,108,101,40,101,38,38,40,101,61,61,61,110,46,98,111,100,121,124,124,101,61,61,61,110,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,41,38,38,34,115,116,97,116,105,99,34,61,61,61,107,46,99,115,115,40,101,44,34,112,111,115,105,116,105,111,110,34,41,41,101,61,101,46,112,97,114,101,110,116,78,111,100,101,59,101,38,38,101,33,61,61,114,38,38,49,61,61,61,101,46,110,111,100,101,84,121,112,101,38,38,40,40,105,61,107,40,101,41,46,111,102,102,115,101,116,40,41,41,46,116,111,112,43,61,107,46,99,115,115,40,101,44,34,98,111,114,100,101,114,84,111,112,87,105,100,116,104,34,44,33,48,41,44,105,46,108,101,102,116,43,61,107,46,99,115,115,40,101,44,34,98,111,114,100,101,114,76,101,102,116,87,105,100,116,104,34,44,33,48,41,41,125,114,101,116,117,114,110,123,116,111,112,58,116,46,116,111,112,45,105,46,116,111,112,45,107,46,99,115,115,40,114,44,34,109,97,114,103,105,110,84,111,112,34,44,33,48,41,44,108,101,102,116,58,116,46,108,101,102,116,45,105,46,108,101,102,116,45,107,46,99,115,115,40,114,44,34,109,97,114,103,105,110,76,101,102,116,34,44,33,48,41,125,125,125,44,111,102,102,115,101,116,80,97,114,101,110,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,109,97,112,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,111,102,102,115,101,116,80,97,114,101,110,116,59,119,104,105,108,101,40,101,38,38,34,115,116,97,116,105,99,34,61,61,61,107,46,99,115,115,40,101,44,34,112,111,115,105,116,105,111,110,34,41,41,101,61,101,46,111,102,102,115,101,116,80,97,114,101,110,116,59,114,101,116,117,114,110,32,101,124,124,105,101,125,41,125,125,41,44,107,46,101,97,99,104,40,123,115,99,114,111,108,108,76,101,102,116,58,34,112,97,103,101,88,79,102,102,115,101,116,34,44,115,99,114,111,108,108,84,111,112,58,34,112,97,103,101,89,79,102,102,115,101,116,34,125,44,102,117,110,99,116,105,111,110,40,116,44,105,41,123,118,97,114,32,111,61,34,112,97,103,101,89,79,102,102,115,101,116,34,61,61,61,105,59,107,46,102,110,91,116,93,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,95,40,116,104,105,115,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,59,105,102,40,120,40,101,41,63,114,61,101,58,57,61,61,61,101,46,110,111,100,101,84,121,112,101,38,38,40,114,61,101,46,100,101,102,97,117,108,116,86,105,101,119,41,44,118,111,105,100,32,48,61,61,61,110,41,114,101,116,117,114,110,32,114,63,114,91,105,93,58,101,91,116,93,59,114,63,114,46,115,99,114,111,108,108,84,111,40,111,63,114,46,112,97,103,101,88,79,102,102,115,101,116,58,110,44,111,63,110,58,114,46,112,97,103,101,89,79,102,102,115,101,116,41,58,101,91,116,93,61,110,125,44,116,44,101,44,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,125,125,41,44,107,46,101,97,99,104,40,91,34,116,111,112,34,44,34,108,101,102,116,34,93,44,102,117,110,99,116,105,111,110,40,101,44,110,41,123,107,46,99,115,115,72,111,111,107,115,91,110,93,61,122,101,40,121,46,112,105,120,101,108,80,111,115,105,116,105,111,110,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,102,40,116,41,114,101,116,117,114,110,32,116,61,95,101,40,101,44,110,41,44,36,101,46,116,101,115,116,40,116,41,63,107,40,101,41,46,112,111,115,105,116,105,111,110,40,41,91,110,93,43,34,112,120,34,58,116,125,41,125,41,44,107,46,101,97,99,104,40,123,72,101,105,103,104,116,58,34,104,101,105,103,104,116,34,44,87,105,100,116,104,58,34,119,105,100,116,104,34,125,44,102,117,110,99,116,105,111,110,40,97,44,115,41,123,107,46,101,97,99,104,40,123,112,97,100,100,105,110,103,58,34,105,110,110,101,114,34,43,97,44,99,111,110,116,101,110,116,58,115,44,34,34,58,34,111,117,116,101,114,34,43,97,125,44,102,117,110,99,116,105,111,110,40,114,44,111,41,123,107,46,102,110,91,111,93,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,38,38,40,114,124,124,34,98,111,111,108,101,97,110,34,33,61,116,121,112,101,111,102,32,101,41,44,105,61,114,124,124,40,33,48,61,61,61,101,124,124,33,48,61,61,61,116,63,34,109,97,114,103,105,110,34,58,34,98,111,114,100,101,114,34,41,59,114,101,116,117,114,110,32,95,40,116,104,105,115,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,59,114,101,116,117,114,110,32,120,40,101,41,63,48,61,61,61,111,46,105,110,100,101,120,79,102,40,34,111,117,116,101,114,34,41,63,101,91,34,105,110,110,101,114,34,43,97,93,58,101,46,100,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,91,34,99,108,105,101,110,116,34,43,97,93,58,57,61,61,61,101,46,110,111,100,101,84,121,112,101,63,40,114,61,101,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,44,77,97,116,104,46,109,97,120,40,101,46,98,111,100,121,91,34,115,99,114,111,108,108,34,43,97,93,44,114,91,34,115,99,114,111,108,108,34,43,97,93,44,101,46,98,111,100,121,91,34,111,102,102,115,101,116,34,43,97,93,44,114,91,34,111,102,102,115,101,116,34,43,97,93,44,114,91,34,99,108,105,101,110,116,34,43,97,93,41,41,58,118,111,105,100,32,48,61,61,61,110,63,107,46,99,115,115,40,101,44,116,44,105,41,58,107,46,115,116,121,108,101,40,101,44,116,44,110,44,105,41,125,44,115,44,110,63,101,58,118,111,105,100,32,48,44,110,41,125,125,41,125,41,44,107,46,101,97,99,104,40,34,98,108,117,114,32,102,111,99,117,115,32,102,111,99,117,115,105,110,32,102,111,99,117,115,111,117,116,32,114,101,115,105,122,101,32,115,99,114,111,108,108,32,99,108,105,99,107,32,100,98,108,99,108,105,99,107,32,109,111,117,115,101,100,111,119,110,32,109,111,117,115,101,117,112,32,109,111,117,115,101,109,111,118,101,32,109,111,117,115,101,111,118,101,114,32,109,111,117,115,101,111,117,116,32,109,111,117,115,101,101,110,116,101,114,32,109,111,117,115,101,108,101,97,118,101,32,99,104,97,110,103,101,32,115,101,108,101,99,116,32,115,117,98,109,105,116,32,107,101,121,100,111,119,110,32,107,101,121,112,114,101,115,115,32,107,101,121,117,112,32,99,111,110,116,101,120,116,109,101,110,117,34,46,115,112,108,105,116,40,34,32,34,41,44,102,117,110,99,116,105,111,110,40,101,44,110,41,123,107,46,102,110,91,110,93,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,48,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,116,104,105,115,46,111,110,40,110,44,110,117,108,108,44,101,44,116,41,58,116,104,105,115,46,116,114,105,103,103,101,114,40,110,41,125,125,41,44,107,46,102,110,46,101,120,116,101,110,100,40,123,104,111,118,101,114,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,116,104,105,115,46,109,111,117,115,101,101,110,116,101,114,40,101,41,46,109,111,117,115,101,108,101,97,118,101,40,116,124,124,101,41,125,125,41,44,107,46,102,110,46,101,120,116,101,110,100,40,123,98,105,110,100,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,114,101,116,117,114,110,32,116,104,105,115,46,111,110,40,101,44,110,117,108,108,44,116,44,110,41,125,44,117,110,98,105,110,100,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,116,104,105,115,46,111,102,102,40,101,44,110,117,108,108,44,116,41,125,44,100,101,108,101,103,97,116,101,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,114,41,123,114,101,116,117,114,110,32,116,104,105,115,46,111,110,40,116,44,101,44,110,44,114,41,125,44,117,110,100,101,108,101,103,97,116,101,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,114,101,116,117,114,110,32,49,61,61,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,116,104,105,115,46,111,102,102,40,101,44,34,42,42,34,41,58,116,104,105,115,46,111,102,102,40,116,44,101,124,124,34,42,42,34,44,110,41,125,125,41,44,107,46,112,114,111,120,121,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,44,114,44,105,59,105,102,40,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,116,38,38,40,110,61,101,91,116,93,44,116,61,101,44,101,61,110,41,44,109,40,101,41,41,114,101,116,117,114,110,32,114,61,115,46,99,97,108,108,40,97,114,103,117,109,101,110,116,115,44,50,41,44,40,105,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,101,46,97,112,112,108,121,40,116,124,124,116,104,105,115,44,114,46,99,111,110,99,97,116,40,115,46,99,97,108,108,40,97,114,103,117,109,101,110,116,115,41,41,41,125,41,46,103,117,105,100,61,101,46,103,117,105,100,61,101,46,103,117,105,100,124,124,107,46,103,117,105,100,43,43,44,105,125,44,107,46,104,111,108,100,82,101,97,100,121,61,102,117,110,99,116,105,111,110,40,101,41,123,101,63,107,46,114,101,97,100,121,87,97,105,116,43,43,58,107,46,114,101,97,100,121,40,33,48,41,125,44,107,46,105,115,65,114,114,97,121,61,65,114,114,97,121,46,105,115,65,114,114,97,121,44,107,46,112,97,114,115,101,74,83,79,78,61,74,83,79,78,46,112,97,114,115,101,44,107,46,110,111,100,101,78,97,109,101,61,65,44,107,46,105,115,70,117,110,99,116,105,111,110,61,109,44,107,46,105,115,87,105,110,100,111,119,61,120,44,107,46,99,97,109,101,108,67,97,115,101,61,86,44,107,46,116,121,112,101,61,119,44,107,46,110,111,119,61,68,97,116,101,46,110,111,119,44,107,46,105,115,78,117,109,101,114,105,99,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,107,46,116,121,112,101,40,101,41,59,114,101,116,117,114,110,40,34,110,117,109,98,101,114,34,61,61,61,116,124,124,34,115,116,114,105,110,103,34,61,61,61,116,41,38,38,33,105,115,78,97,78,40,101,45,112,97,114,115,101,70,108,111,97,116,40,101,41,41,125,44,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,100,101,102,105,110,101,38,38,100,101,102,105,110,101,46,97,109,100,38,38,100,101,102,105,110,101,40,34,106,113,117,101,114,121,34,44,91,93,44,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,107,125,41,59,118,97,114,32,81,116,61,67,46,106,81,117,101,114,121,44,74,116,61,67,46,36,59,114,101,116,117,114,110,32,107,46,110,111,67,111,110,102,108,105,99,116,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,67,46,36,61,61,61,107,38,38,40,67,46,36,61,74,116,41,44,101,38,38,67,46,106,81,117,101,114,121,61,61,61,107,38,38,40,67,46,106,81,117,101,114,121,61,81,116,41,44,107,125,44,101,124,124,40,67,46,106,81,117,101,114,121,61,67,46,36,61,107,41,44,107,125,41,59,10,47,42,33,10,32,32,42,32,66,111,111,116,115,116,114,97,112,32,118,52,46,51,46,49,32,40,104,116,116,112,115,58,47,47,103,101,116,98,111,111,116,115,116,114,97,112,46,99,111,109,47,41,10,32,32,42,32,67,111,112,121,114,105,103,104,116,32,50,48,49,49,45,50,48,49,57,32,84,104,101,32,66,111,111,116,115,116,114,97,112,32,65,117,116,104,111,114,115,32,40,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,116,119,98,115,47,98,111,111,116,115,116,114,97,112,47,103,114,97,112,104,115,47,99,111,110,116,114,105,98,117,116,111,114,115,41,10,32,32,42,32,76,105,99,101,110,115,101,100,32,117,110,100,101,114,32,77,73,84,32,40,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,116,119,98,115,47,98,111,111,116,115,116,114,97,112,47,98,108,111,98,47,109,97,115,116,101,114,47,76,73,67,69,78,83,69,41,10,32,32,42,47,10,33,102,117,110,99,116,105,111,110,40,116,44,101,41,123,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,101,120,112,111,114,116,115,38,38,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,109,111,100,117,108,101,63,101,40,101,120,112,111,114,116,115,44,114,101,113,117,105,114,101,40,34,106,113,117,101,114,121,34,41,41,58,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,100,101,102,105,110,101,38,38,100,101,102,105,110,101,46,97,109,100,63,100,101,102,105,110,101,40,91,34,101,120,112,111,114,116,115,34,44,34,106,113,117,101,114,121,34,93,44,101,41,58,101,40,40,116,61,116,124,124,115,101,108,102,41,46,98,111,111,116,115,116,114,97,112,61,123,125,44,116,46,106,81,117,101,114,121,41,125,40,116,104,105,115,44,102,117,110,99,116,105,111,110,40,116,44,112,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,102,117,110,99,116,105,111,110,32,105,40,116,44,101,41,123,102,111,114,40,118,97,114,32,110,61,48,59,110,60,101,46,108,101,110,103,116,104,59,110,43,43,41,123,118,97,114,32,105,61,101,91,110,93,59,105,46,101,110,117,109,101,114,97,98,108,101,61,105,46,101,110,117,109,101,114,97,98,108,101,124,124,33,49,44,105,46,99,111,110,102,105,103,117,114,97,98,108,101,61,33,48,44,34,118,97,108,117,101,34,105,110,32,105,38,38,40,105,46,119,114,105,116,97,98,108,101,61,33,48,41,44,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,44,105,46,107,101,121,44,105,41,125,125,102,117,110,99,116,105,111,110,32,115,40,116,44,101,44,110,41,123,114,101,116,117,114,110,32,101,38,38,105,40,116,46,112,114,111,116,111,116,121,112,101,44,101,41,44,110,38,38,105,40,116,44,110,41,44,116,125,102,117,110,99,116,105,111,110,32,108,40,111,41,123,102,111,114,40,118,97,114,32,116,61,49,59,116,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,116,43,43,41,123,118,97,114,32,114,61,110,117,108,108,33,61,97,114,103,117,109,101,110,116,115,91,116,93,63,97,114,103,117,109,101,110,116,115,91,116,93,58,123,125,44,101,61,79,98,106,101,99,116,46,107,101,121,115,40,114,41,59,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,79,98,106,101,99,116,46,103,101,116,79,119,110,80,114,111,112,101,114,116,121,83,121,109,98,111,108,115,38,38,40,101,61,101,46,99,111,110,99,97,116,40,79,98,106,101,99,116,46,103,101,116,79,119,110,80,114,111,112,101,114,116,121,83,121,109,98,111,108,115,40,114,41,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,79,98,106,101,99,116,46,103,101,116,79,119,110,80,114,111,112,101,114,116,121,68,101,115,99,114,105,112,116,111,114,40,114,44,116,41,46,101,110,117,109,101,114,97,98,108,101,125,41,41,41,44,101,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,44,110,44,105,59,101,61,111,44,105,61,114,91,110,61,116,93,44,110,32,105,110,32,101,63,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,101,44,110,44,123,118,97,108,117,101,58,105,44,101,110,117,109,101,114,97,98,108,101,58,33,48,44,99,111,110,102,105,103,117,114,97,98,108,101,58,33,48,44,119,114,105,116,97,98,108,101,58,33,48,125,41,58,101,91,110,93,61,105,125,41,125,114,101,116,117,114,110,32,111,125,112,61,112,38,38,112,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,34,100,101,102,97,117,108,116,34,41,63,112,46,100,101,102,97,117,108,116,58,112,59,118,97,114,32,101,61,34,116,114,97,110,115,105,116,105,111,110,101,110,100,34,59,102,117,110,99,116,105,111,110,32,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,44,110,61,33,49,59,114,101,116,117,114,110,32,112,40,116,104,105,115,41,46,111,110,101,40,109,46,84,82,65,78,83,73,84,73,79,78,95,69,78,68,44,102,117,110,99,116,105,111,110,40,41,123,110,61,33,48,125,41,44,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,40,41,123,110,124,124,109,46,116,114,105,103,103,101,114,84,114,97,110,115,105,116,105,111,110,69,110,100,40,101,41,125,44,116,41,44,116,104,105,115,125,118,97,114,32,109,61,123,84,82,65,78,83,73,84,73,79,78,95,69,78,68,58,34,98,115,84,114,97,110,115,105,116,105,111,110,69,110,100,34,44,103,101,116,85,73,68,58,102,117,110,99,116,105,111,110,40,116,41,123,102,111,114,40,59,116,43,61,126,126,40,49,101,54,42,77,97,116,104,46,114,97,110,100,111,109,40,41,41,44,100,111,99,117,109,101,110,116,46,103,101,116,69,108,101,109,101,110,116,66,121,73,100,40,116,41,59,41,59,114,101,116,117,114,110,32,116,125,44,103,101,116,83,101,108,101,99,116,111,114,70,114,111,109,69,108,101,109,101,110,116,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,100,97,116,97,45,116,97,114,103,101,116,34,41,59,105,102,40,33,101,124,124,34,35,34,61,61,61,101,41,123,118,97,114,32,110,61,116,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,104,114,101,102,34,41,59,101,61,110,38,38,34,35,34,33,61,61,110,63,110,46,116,114,105,109,40,41,58,34,34,125,116,114,121,123,114,101,116,117,114,110,32,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,101,41,63,101,58,110,117,108,108,125,99,97,116,99,104,40,116,41,123,114,101,116,117,114,110,32,110,117,108,108,125,125,44,103,101,116,84,114,97,110,115,105,116,105,111,110,68,117,114,97,116,105,111,110,70,114,111,109,69,108,101,109,101,110,116,58,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,33,116,41,114,101,116,117,114,110,32,48,59,118,97,114,32,101,61,112,40,116,41,46,99,115,115,40,34,116,114,97,110,115,105,116,105,111,110,45,100,117,114,97,116,105,111,110,34,41,44,110,61,112,40,116,41,46,99,115,115,40,34,116,114,97,110,115,105,116,105,111,110,45,100,101,108,97,121,34,41,44,105,61,112,97,114,115,101,70,108,111,97,116,40,101,41,44,111,61,112,97,114,115,101,70,108,111,97,116,40,110,41,59,114,101,116,117,114,110,32,105,124,124,111,63,40,101,61,101,46,115,112,108,105,116,40,34,44,34,41,91,48,93,44,110,61,110,46,115,112,108,105,116,40,34,44,34,41,91,48,93,44,49,101,51,42,40,112,97,114,115,101,70,108,111,97,116,40,101,41,43,112,97,114,115,101,70,108,111,97,116,40,110,41,41,41,58,48,125,44,114,101,102,108,111,119,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,111,102,102,115,101,116,72,101,105,103,104,116,125,44,116,114,105,103,103,101,114,84,114,97,110,115,105,116,105,111,110,69,110,100,58,102,117,110,99,116,105,111,110,40,116,41,123,112,40,116,41,46,116,114,105,103,103,101,114,40,101,41,125,44,115,117,112,112,111,114,116,115,84,114,97,110,115,105,116,105,111,110,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,66,111,111,108,101,97,110,40,101,41,125,44,105,115,69,108,101,109,101,110,116,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,40,116,91,48,93,124,124,116,41,46,110,111,100,101,84,121,112,101,125,44,116,121,112,101,67,104,101,99,107,67,111,110,102,105,103,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,102,111,114,40,118,97,114,32,105,32,105,110,32,110,41,105,102,40,79,98,106,101,99,116,46,112,114,111,116,111,116,121,112,101,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,46,99,97,108,108,40,110,44,105,41,41,123,118,97,114,32,111,61,110,91,105,93,44,114,61,101,91,105,93,44,115,61,114,38,38,109,46,105,115,69,108,101,109,101,110,116,40,114,41,63,34,101,108,101,109,101,110,116,34,58,40,97,61,114,44,123,125,46,116,111,83,116,114,105,110,103,46,99,97,108,108,40,97,41,46,109,97,116,99,104,40,47,92,115,40,91,97,45,122,93,43,41,47,105,41,91,49,93,46,116,111,76,111,119,101,114,67,97,115,101,40,41,41,59,105,102,40,33,110,101,119,32,82,101,103,69,120,112,40,111,41,46,116,101,115,116,40,115,41,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,116,46,116,111,85,112,112,101,114,67,97,115,101,40,41,43,39,58,32,79,112,116,105,111,110,32,34,39,43,105,43,39,34,32,112,114,111,118,105,100,101,100,32,116,121,112,101,32,34,39,43,115,43,39,34,32,98,117,116,32,101,120,112,101,99,116,101,100,32,116,121,112,101,32,34,39,43,111,43,39,34,46,39,41,125,118,97,114,32,97,125,44,102,105,110,100,83,104,97,100,111,119,82,111,111,116,58,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,33,100,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,46,97,116,116,97,99,104,83,104,97,100,111,119,41,114,101,116,117,114,110,32,110,117,108,108,59,105,102,40,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,116,46,103,101,116,82,111,111,116,78,111,100,101,41,114,101,116,117,114,110,32,116,32,105,110,115,116,97,110,99,101,111,102,32,83,104,97,100,111,119,82,111,111,116,63,116,58,116,46,112,97,114,101,110,116,78,111,100,101,63,109,46,102,105,110,100,83,104,97,100,111,119,82,111,111,116,40,116,46,112,97,114,101,110,116,78,111,100,101,41,58,110,117,108,108,59,118,97,114,32,101,61,116,46,103,101,116,82,111,111,116,78,111,100,101,40,41,59,114,101,116,117,114,110,32,101,32,105,110,115,116,97,110,99,101,111,102,32,83,104,97,100,111,119,82,111,111,116,63,101,58,110,117,108,108,125,125,59,112,46,102,110,46,101,109,117,108,97,116,101,84,114,97,110,115,105,116,105,111,110,69,110,100,61,110,44,112,46,101,118,101,110,116,46,115,112,101,99,105,97,108,91,109,46,84,82,65,78,83,73,84,73,79,78,95,69,78,68,93,61,123,98,105,110,100,84,121,112,101,58,101,44,100,101,108,101,103,97,116,101,84,121,112,101,58,101,44,104,97,110,100,108,101,58,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,112,40,116,46,116,97,114,103,101,116,41,46,105,115,40,116,104,105,115,41,41,114,101,116,117,114,110,32,116,46,104,97,110,100,108,101,79,98,106,46,104,97,110,100,108,101,114,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,125,125,59,118,97,114,32,111,61,34,97,108,101,114,116,34,44,114,61,34,98,115,46,97,108,101,114,116,34,44,97,61,34,46,34,43,114,44,99,61,112,46,102,110,91,111,93,44,104,61,123,67,76,79,83,69,58,34,99,108,111,115,101,34,43,97,44,67,76,79,83,69,68,58,34,99,108,111,115,101,100,34,43,97,44,67,76,73,67,75,95,68,65,84,65,95,65,80,73,58,34,99,108,105,99,107,34,43,97,43,34,46,100,97,116,97,45,97,112,105,34,125,44,117,61,34,97,108,101,114,116,34,44,102,61,34,102,97,100,101,34,44,100,61,34,115,104,111,119,34,44,103,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,105,40,116,41,123,116,104,105,115,46,95,101,108,101,109,101,110,116,61,116,125,118,97,114,32,116,61,105,46,112,114,111,116,111,116,121,112,101,59,114,101,116,117,114,110,32,116,46,99,108,111,115,101,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,46,95,101,108,101,109,101,110,116,59,116,38,38,40,101,61,116,104,105,115,46,95,103,101,116,82,111,111,116,69,108,101,109,101,110,116,40,116,41,41,44,116,104,105,115,46,95,116,114,105,103,103,101,114,67,108,111,115,101,69,118,101,110,116,40,101,41,46,105,115,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,40,41,124,124,116,104,105,115,46,95,114,101,109,111,118,101,69,108,101,109,101,110,116,40,101,41,125,44,116,46,100,105,115,112,111,115,101,61,102,117,110,99,116,105,111,110,40,41,123,112,46,114,101,109,111,118,101,68,97,116,97,40,116,104,105,115,46,95,101,108,101,109,101,110,116,44,114,41,44,116,104,105,115,46,95,101,108,101,109,101,110,116,61,110,117,108,108,125,44,116,46,95,103,101,116,82,111,111,116,69,108,101,109,101,110,116,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,109,46,103,101,116,83,101,108,101,99,116,111,114,70,114,111,109,69,108,101,109,101,110,116,40,116,41,44,110,61,33,49,59,114,101,116,117,114,110,32,101,38,38,40,110,61,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,101,41,41,44,110,124,124,40,110,61,112,40,116,41,46,99,108,111,115,101,115,116,40,34,46,34,43,117,41,91,48,93,41,44,110,125,44,116,46,95,116,114,105,103,103,101,114,67,108,111,115,101,69,118,101,110,116,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,112,46,69,118,101,110,116,40,104,46,67,76,79,83,69,41,59,114,101,116,117,114,110,32,112,40,116,41,46,116,114,105,103,103,101,114,40,101,41,44,101,125,44,116,46,95,114,101,109,111,118,101,69,108,101,109,101,110,116,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,110,61,116,104,105,115,59,105,102,40,112,40,101,41,46,114,101,109,111,118,101,67,108,97,115,115,40,100,41,44,112,40,101,41,46,104,97,115,67,108,97,115,115,40,102,41,41,123,118,97,114,32,116,61,109,46,103,101,116,84,114,97,110,115,105,116,105,111,110,68,117,114,97,116,105,111,110,70,114,111,109,69,108,101,109,101,110,116,40,101,41,59,112,40,101,41,46,111,110,101,40,109,46,84,82,65,78,83,73,84,73,79,78,95,69,78,68,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,46,95,100,101,115,116,114,111,121,69,108,101,109,101,110,116,40,101,44,116,41,125,41,46,101,109,117,108,97,116,101,84,114,97,110,115,105,116,105,111,110,69,110,100,40,116,41,125,101,108,115,101,32,116,104,105,115,46,95,100,101,115,116,114,111,121,69,108,101,109,101,110,116,40,101,41,125,44,116,46,95,100,101,115,116,114,111,121,69,108,101,109,101,110,116,61,102,117,110,99,116,105,111,110,40,116,41,123,112,40,116,41,46,100,101,116,97,99,104,40,41,46,116,114,105,103,103,101,114,40,104,46,67,76,79,83,69,68,41,46,114,101,109,111,118,101,40,41,125,44,105,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,112,40,116,104,105,115,41,44,101,61,116,46,100,97,116,97,40,114,41,59,101,124,124,40,101,61,110,101,119,32,105,40,116,104,105,115,41,44,116,46,100,97,116,97,40,114,44,101,41,41,44,34,99,108,111,115,101,34,61,61,61,110,38,38,101,91,110,93,40,116,104,105,115,41,125,41,125,44,105,46,95,104,97,110,100,108,101,68,105,115,109,105,115,115,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,41,123,116,38,38,116,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,101,46,99,108,111,115,101,40,116,104,105,115,41,125,125,44,115,40,105,44,110,117,108,108,44,91,123,107,101,121,58,34,86,69,82,83,73,79,78,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,34,52,46,51,46,49,34,125,125,93,41,44,105,125,40,41,59,112,40,100,111,99,117,109,101,110,116,41,46,111,110,40,104,46,67,76,73,67,75,95,68,65,84,65,95,65,80,73,44,39,91,100,97,116,97,45,100,105,115,109,105,115,115,61,34,97,108,101,114,116,34,93,39,44,103,46,95,104,97,110,100,108,101,68,105,115,109,105,115,115,40,110,101,119,32,103,41,41,44,112,46,102,110,91,111,93,61,103,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,44,112,46,102,110,91,111,93,46,67,111,110,115,116,114,117,99,116,111,114,61,103,44,112,46,102,110,91,111,93,46,110,111,67,111,110,102,108,105,99,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,112,46,102,110,91,111,93,61,99,44,103,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,125,59,118,97,114,32,95,61,34,98,117,116,116,111,110,34,44,118,61,34,98,115,46,98,117,116,116,111,110,34,44,121,61,34,46,34,43,118,44,69,61,34,46,100,97,116,97,45,97,112,105,34,44,98,61,112,46,102,110,91,95,93,44,119,61,34,97,99,116,105,118,101,34,44,67,61,34,98,116,110,34,44,84,61,34,102,111,99,117,115,34,44,83,61,39,91,100,97,116,97,45,116,111,103,103,108,101,94,61,34,98,117,116,116,111,110,34,93,39,44,68,61,39,91,100,97,116,97,45,116,111,103,103,108,101,61,34,98,117,116,116,111,110,115,34,93,39,44,73,61,39,105,110,112,117,116,58,110,111,116,40,91,116,121,112,101,61,34,104,105,100,100,101,110,34,93,41,39,44,65,61,34,46,97,99,116,105,118,101,34,44,79,61,34,46,98,116,110,34,44,78,61,123,67,76,73,67,75,95,68,65,84,65,95,65,80,73,58,34,99,108,105,99,107,34,43,121,43,69,44,70,79,67,85,83,95,66,76,85,82,95,68,65,84,65,95,65,80,73,58,34,102,111,99,117,115,34,43,121,43,69,43,34,32,98,108,117,114,34,43,121,43,69,125,44,107,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,110,40,116,41,123,116,104,105,115,46,95,101,108,101,109,101,110,116,61,116,125,118,97,114,32,116,61,110,46,112,114,111,116,111,116,121,112,101,59,114,101,116,117,114,110,32,116,46,116,111,103,103,108,101,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,33,48,44,101,61,33,48,44,110,61,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,99,108,111,115,101,115,116,40,68,41,91,48,93,59,105,102,40,110,41,123,118,97,114,32,105,61,116,104,105,115,46,95,101,108,101,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,73,41,59,105,102,40,105,41,123,105,102,40,34,114,97,100,105,111,34,61,61,61,105,46,116,121,112,101,41,105,102,40,105,46,99,104,101,99,107,101,100,38,38,116,104,105,115,46,95,101,108,101,109,101,110,116,46,99,108,97,115,115,76,105,115,116,46,99,111,110,116,97,105,110,115,40,119,41,41,116,61,33,49,59,101,108,115,101,123,118,97,114,32,111,61,110,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,65,41,59,111,38,38,112,40,111,41,46,114,101,109,111,118,101,67,108,97,115,115,40,119,41,125,105,102,40,116,41,123,105,102,40,105,46,104,97,115,65,116,116,114,105,98,117,116,101,40,34,100,105,115,97,98,108,101,100,34,41,124,124,110,46,104,97,115,65,116,116,114,105,98,117,116,101,40,34,100,105,115,97,98,108,101,100,34,41,124,124,105,46,99,108,97,115,115,76,105,115,116,46,99,111,110,116,97,105,110,115,40,34,100,105,115,97,98,108,101,100,34,41,124,124,110,46,99,108,97,115,115,76,105,115,116,46,99,111,110,116,97,105,110,115,40,34,100,105,115,97,98,108,101,100,34,41,41,114,101,116,117,114,110,59,105,46,99,104,101,99,107,101,100,61,33,116,104,105,115,46,95,101,108,101,109,101,110,116,46,99,108,97,115,115,76,105,115,116,46,99,111,110,116,97,105,110,115,40,119,41,44,112,40,105,41,46,116,114,105,103,103,101,114,40,34,99,104,97,110,103,101,34,41,125,105,46,102,111,99,117,115,40,41,44,101,61,33,49,125,125,101,38,38,116,104,105,115,46,95,101,108,101,109,101,110,116,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,97,114,105,97,45,112,114,101,115,115,101,100,34,44,33,116,104,105,115,46,95,101,108,101,109,101,110,116,46,99,108,97,115,115,76,105,115,116,46,99,111,110,116,97,105,110,115,40,119,41,41,44,116,38,38,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,116,111,103,103,108,101,67,108,97,115,115,40,119,41,125,44,116,46,100,105,115,112,111,115,101,61,102,117,110,99,116,105,111,110,40,41,123,112,46,114,101,109,111,118,101,68,97,116,97,40,116,104,105,115,46,95,101,108,101,109,101,110,116,44,118,41,44,116,104,105,115,46,95,101,108,101,109,101,110,116,61,110,117,108,108,125,44,110,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,112,40,116,104,105,115,41,46,100,97,116,97,40,118,41,59,116,124,124,40,116,61,110,101,119,32,110,40,116,104,105,115,41,44,112,40,116,104,105,115,41,46,100,97,116,97,40,118,44,116,41,41,44,34,116,111,103,103,108,101,34,61,61,61,101,38,38,116,91,101,93,40,41,125,41,125,44,115,40,110,44,110,117,108,108,44,91,123,107,101,121,58,34,86,69,82,83,73,79,78,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,34,52,46,51,46,49,34,125,125,93,41,44,110,125,40,41,59,112,40,100,111,99,117,109,101,110,116,41,46,111,110,40,78,46,67,76,73,67,75,95,68,65,84,65,95,65,80,73,44,83,44,102,117,110,99,116,105,111,110,40,116,41,123,116,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,59,118,97,114,32,101,61,116,46,116,97,114,103,101,116,59,112,40,101,41,46,104,97,115,67,108,97,115,115,40,67,41,124,124,40,101,61,112,40,101,41,46,99,108,111,115,101,115,116,40,79,41,41,44,107,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,46,99,97,108,108,40,112,40,101,41,44,34,116,111,103,103,108,101,34,41,125,41,46,111,110,40,78,46,70,79,67,85,83,95,66,76,85,82,95,68,65,84,65,95,65,80,73,44,83,44,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,112,40,116,46,116,97,114,103,101,116,41,46,99,108,111,115,101,115,116,40,79,41,91,48,93,59,112,40,101,41,46,116,111,103,103,108,101,67,108,97,115,115,40,84,44,47,94,102,111,99,117,115,40,105,110,41,63,36,47,46,116,101,115,116,40,116,46,116,121,112,101,41,41,125,41,44,112,46,102,110,91,95,93,61,107,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,44,112,46,102,110,91,95,93,46,67,111,110,115,116,114,117,99,116,111,114,61,107,44,112,46,102,110,91,95,93,46,110,111,67,111,110,102,108,105,99,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,112,46,102,110,91,95,93,61,98,44,107,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,125,59,118,97,114,32,76,61,34,99,97,114,111,117,115,101,108,34,44,120,61,34,98,115,46,99,97,114,111,117,115,101,108,34,44,80,61,34,46,34,43,120,44,72,61,34,46,100,97,116,97,45,97,112,105,34,44,106,61,112,46,102,110,91,76,93,44,82,61,123,105,110,116,101,114,118,97,108,58,53,101,51,44,107,101,121,98,111,97,114,100,58,33,48,44,115,108,105,100,101,58,33,49,44,112,97,117,115,101,58,34,104,111,118,101,114,34,44,119,114,97,112,58,33,48,44,116,111,117,99,104,58,33,48,125,44,70,61,123,105,110,116,101,114,118,97,108,58,34,40,110,117,109,98,101,114,124,98,111,111,108,101,97,110,41,34,44,107,101,121,98,111,97,114,100,58,34,98,111,111,108,101,97,110,34,44,115,108,105,100,101,58,34,40,98,111,111,108,101,97,110,124,115,116,114,105,110,103,41,34,44,112,97,117,115,101,58,34,40,115,116,114,105,110,103,124,98,111,111,108,101,97,110,41,34,44,119,114,97,112,58,34,98,111,111,108,101,97,110,34,44,116,111,117,99,104,58,34,98,111,111,108,101,97,110,34,125,44,77,61,34,110,101,120,116,34,44,87,61,34,112,114,101,118,34,44,85,61,34,108,101,102,116,34,44,66,61,34,114,105,103,104,116,34,44,113,61,123,83,76,73,68,69,58,34,115,108,105,100,101,34,43,80,44,83,76,73,68,58,34,115,108,105,100,34,43,80,44,75,69,89,68,79,87,78,58,34,107,101,121,100,111,119,110,34,43,80,44,77,79,85,83,69,69,78,84,69,82,58,34,109,111,117,115,101,101,110,116,101,114,34,43,80,44,77,79,85,83,69,76,69,65,86,69,58,34,109,111,117,115,101,108,101,97,118,101,34,43,80,44,84,79,85,67,72,83,84,65,82,84,58,34,116,111,117,99,104,115,116,97,114,116,34,43,80,44,84,79,85,67,72,77,79,86,69,58,34,116,111,117,99,104,109,111,118,101,34,43,80,44,84,79,85,67,72,69,78,68,58,34,116,111,117,99,104,101,110,100,34,43,80,44,80,79,73,78,84,69,82,68,79,87,78,58,34,112,111,105,110,116,101,114,100,111,119,110,34,43,80,44,80,79,73,78,84,69,82,85,80,58,34,112,111,105,110,116,101,114,117,112,34,43,80,44,68,82,65,71,95,83,84,65,82,84,58,34,100,114,97,103,115,116,97,114,116,34,43,80,44,76,79,65,68,95,68,65,84,65,95,65,80,73,58,34,108,111,97,100,34,43,80,43,72,44,67,76,73,67,75,95,68,65,84,65,95,65,80,73,58,34,99,108,105,99,107,34,43,80,43,72,125,44,75,61,34,99,97,114,111,117,115,101,108,34,44,81,61,34,97,99,116,105,118,101,34,44,86,61,34,115,108,105,100,101,34,44,89,61,34,99,97,114,111,117,115,101,108,45,105,116,101,109,45,114,105,103,104,116,34,44,122,61,34,99,97,114,111,117,115,101,108,45,105,116,101,109,45,108,101,102,116,34,44,88,61,34,99,97,114,111,117,115,101,108,45,105,116,101,109,45,110,101,120,116,34,44,71,61,34,99,97,114,111,117,115,101,108,45,105,116,101,109,45,112,114,101,118,34,44,36,61,34,112,111,105,110,116,101,114,45,101,118,101,110,116,34,44,74,61,34,46,97,99,116,105,118,101,34,44,90,61,34,46,97,99,116,105,118,101,46,99,97,114,111,117,115,101,108,45,105,116,101,109,34,44,116,116,61,34,46,99,97,114,111,117,115,101,108,45,105,116,101,109,34,44,101,116,61,34,46,99,97,114,111,117,115,101,108,45,105,116,101,109,32,105,109,103,34,44,110,116,61,34,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,110,101,120,116,44,32,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,112,114,101,118,34,44,105,116,61,34,46,99,97,114,111,117,115,101,108,45,105,110,100,105,99,97,116,111,114,115,34,44,111,116,61,34,91,100,97,116,97,45,115,108,105,100,101,93,44,32,91,100,97,116,97,45,115,108,105,100,101,45,116,111,93,34,44,114,116,61,39,91,100,97,116,97,45,114,105,100,101,61,34,99,97,114,111,117,115,101,108,34,93,39,44,115,116,61,123,84,79,85,67,72,58,34,116,111,117,99,104,34,44,80,69,78,58,34,112,101,110,34,125,44,97,116,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,114,40,116,44,101,41,123,116,104,105,115,46,95,105,116,101,109,115,61,110,117,108,108,44,116,104,105,115,46,95,105,110,116,101,114,118,97,108,61,110,117,108,108,44,116,104,105,115,46,95,97,99,116,105,118,101,69,108,101,109,101,110,116,61,110,117,108,108,44,116,104,105,115,46,95,105,115,80,97,117,115,101,100,61,33,49,44,116,104,105,115,46,95,105,115,83,108,105,100,105,110,103,61,33,49,44,116,104,105,115,46,116,111,117,99,104,84,105,109,101,111,117,116,61,110,117,108,108,44,116,104,105,115,46,116,111,117,99,104,83,116,97,114,116,88,61,48,44,116,104,105,115,46,116,111,117,99,104,68,101,108,116,97,88,61,48,44,116,104,105,115,46,95,99,111,110,102,105,103,61,116,104,105,115,46,95,103,101,116,67,111,110,102,105,103,40,101,41,44,116,104,105,115,46,95,101,108,101,109,101,110,116,61,116,44,116,104,105,115,46,95,105,110,100,105,99,97,116,111,114,115,69,108,101,109,101,110,116,61,116,104,105,115,46,95,101,108,101,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,105,116,41,44,116,104,105,115,46,95,116,111,117,99,104,83,117,112,112,111,114,116,101,100,61,34,111,110,116,111,117,99,104,115,116,97,114,116,34,105,110,32,100,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,124,124,48,60,110,97,118,105,103,97,116,111,114,46,109,97,120,84,111,117,99,104,80,111,105,110,116,115,44,116,104,105,115,46,95,112,111,105,110,116,101,114,69,118,101,110,116,61,66,111,111,108,101,97,110,40,119,105,110,100,111,119,46,80,111,105,110,116,101,114,69,118,101,110,116,124,124,119,105,110,100,111,119,46,77,83,80,111,105,110,116,101,114,69,118,101,110,116,41,44,116,104,105,115,46,95,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,115,40,41,125,118,97,114,32,116,61,114,46,112,114,111,116,111,116,121,112,101,59,114,101,116,117,114,110,32,116,46,110,101,120,116,61,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,105,115,83,108,105,100,105,110,103,124,124,116,104,105,115,46,95,115,108,105,100,101,40,77,41,125,44,116,46,110,101,120,116,87,104,101,110,86,105,115,105,98,108,101,61,102,117,110,99,116,105,111,110,40,41,123,33,100,111,99,117,109,101,110,116,46,104,105,100,100,101,110,38,38,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,105,115,40,34,58,118,105,115,105,98,108,101,34,41,38,38,34,104,105,100,100,101,110,34,33,61,61,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,99,115,115,40,34,118,105,115,105,98,105,108,105,116,121,34,41,38,38,116,104,105,115,46,110,101,120,116,40,41,125,44,116,46,112,114,101,118,61,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,105,115,83,108,105,100,105,110,103,124,124,116,104,105,115,46,95,115,108,105,100,101,40,87,41,125,44,116,46,112,97,117,115,101,61,102,117,110,99,116,105,111,110,40,116,41,123,116,124,124,40,116,104,105,115,46,95,105,115,80,97,117,115,101,100,61,33,48,41,44,116,104,105,115,46,95,101,108,101,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,110,116,41,38,38,40,109,46,116,114,105,103,103,101,114,84,114,97,110,115,105,116,105,111,110,69,110,100,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,44,116,104,105,115,46,99,121,99,108,101,40,33,48,41,41,44,99,108,101,97,114,73,110,116,101,114,118,97,108,40,116,104,105,115,46,95,105,110,116,101,114,118,97,108,41,44,116,104,105,115,46,95,105,110,116,101,114,118,97,108,61,110,117,108,108,125,44,116,46,99,121,99,108,101,61,102,117,110,99,116,105,111,110,40,116,41,123,116,124,124,40,116,104,105,115,46,95,105,115,80,97,117,115,101,100,61,33,49,41,44,116,104,105,115,46,95,105,110,116,101,114,118,97,108,38,38,40,99,108,101,97,114,73,110,116,101,114,118,97,108,40,116,104,105,115,46,95,105,110,116,101,114,118,97,108,41,44,116,104,105,115,46,95,105,110,116,101,114,118,97,108,61,110,117,108,108,41,44,116,104,105,115,46,95,99,111,110,102,105,103,46,105,110,116,101,114,118,97,108,38,38,33,116,104,105,115,46,95,105,115,80,97,117,115,101,100,38,38,40,116,104,105,115,46,95,105,110,116,101,114,118,97,108,61,115,101,116,73,110,116,101,114,118,97,108,40,40,100,111,99,117,109,101,110,116,46,118,105,115,105,98,105,108,105,116,121,83,116,97,116,101,63,116,104,105,115,46,110,101,120,116,87,104,101,110,86,105,115,105,98,108,101,58,116,104,105,115,46,110,101,120,116,41,46,98,105,110,100,40,116,104,105,115,41,44,116,104,105,115,46,95,99,111,110,102,105,103,46,105,110,116,101,114,118,97,108,41,41,125,44,116,46,116,111,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,59,116,104,105,115,46,95,97,99,116,105,118,101,69,108,101,109,101,110,116,61,116,104,105,115,46,95,101,108,101,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,90,41,59,118,97,114,32,110,61,116,104,105,115,46,95,103,101,116,73,116,101,109,73,110,100,101,120,40,116,104,105,115,46,95,97,99,116,105,118,101,69,108,101,109,101,110,116,41,59,105,102,40,33,40,116,62,116,104,105,115,46,95,105,116,101,109,115,46,108,101,110,103,116,104,45,49,124,124,116,60,48,41,41,105,102,40,116,104,105,115,46,95,105,115,83,108,105,100,105,110,103,41,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,111,110,101,40,113,46,83,76,73,68,44,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,101,46,116,111,40,116,41,125,41,59,101,108,115,101,123,105,102,40,110,61,61,61,116,41,114,101,116,117,114,110,32,116,104,105,115,46,112,97,117,115,101,40,41,44,118,111,105,100,32,116,104,105,115,46,99,121,99,108,101,40,41,59,118,97,114,32,105,61,110,60,116,63,77,58,87,59,116,104,105,115,46,95,115,108,105,100,101,40,105,44,116,104,105,115,46,95,105,116,101,109,115,91,116,93,41,125,125,44,116,46,100,105,115,112,111,115,101,61,102,117,110,99,116,105,111,110,40,41,123,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,111,102,102,40,80,41,44,112,46,114,101,109,111,118,101,68,97,116,97,40,116,104,105,115,46,95,101,108,101,109,101,110,116,44,120,41,44,116,104,105,115,46,95,105,116,101,109,115,61,110,117,108,108,44,116,104,105,115,46,95,99,111,110,102,105,103,61,110,117,108,108,44,116,104,105,115,46,95,101,108,101,109,101,110,116,61,110,117,108,108,44,116,104,105,115,46,95,105,110,116,101,114,118,97,108,61,110,117,108,108,44,116,104,105,115,46,95,105,115,80,97,117,115,101,100,61,110,117,108,108,44,116,104,105,115,46,95,105,115,83,108,105,100,105,110,103,61,110,117,108,108,44,116,104,105,115,46,95,97,99,116,105,118,101,69,108,101,109,101,110,116,61,110,117,108,108,44,116,104,105,115,46,95,105,110,100,105,99,97,116,111,114,115,69,108,101,109,101,110,116,61,110,117,108,108,125,44,116,46,95,103,101,116,67,111,110,102,105,103,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,61,108,40,123,125,44,82,44,116,41,44,109,46,116,121,112,101,67,104,101,99,107,67,111,110,102,105,103,40,76,44,116,44,70,41,44,116,125,44,116,46,95,104,97,110,100,108,101,83,119,105,112,101,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,77,97,116,104,46,97,98,115,40,116,104,105,115,46,116,111,117,99,104,68,101,108,116,97,88,41,59,105,102,40,33,40,116,60,61,52,48,41,41,123,118,97,114,32,101,61,116,47,116,104,105,115,46,116,111,117,99,104,68,101,108,116,97,88,59,48,60,101,38,38,116,104,105,115,46,112,114,101,118,40,41,44,101,60,48,38,38,116,104,105,115,46,110,101,120,116,40,41,125,125,44,116,46,95,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,115,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,59,116,104,105,115,46,95,99,111,110,102,105,103,46,107,101,121,98,111,97,114,100,38,38,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,111,110,40,113,46,75,69,89,68,79,87,78,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,46,95,107,101,121,100,111,119,110,40,116,41,125,41,44,34,104,111,118,101,114,34,61,61,61,116,104,105,115,46,95,99,111,110,102,105,103,46,112,97,117,115,101,38,38,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,111,110,40,113,46,77,79,85,83,69,69,78,84,69,82,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,46,112,97,117,115,101,40,116,41,125,41,46,111,110,40,113,46,77,79,85,83,69,76,69,65,86,69,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,46,99,121,99,108,101,40,116,41,125,41,44,116,104,105,115,46,95,99,111,110,102,105,103,46,116,111,117,99,104,38,38,116,104,105,115,46,95,97,100,100,84,111,117,99,104,69,118,101,110,116,76,105,115,116,101,110,101,114,115,40,41,125,44,116,46,95,97,100,100,84,111,117,99,104,69,118,101,110,116,76,105,115,116,101,110,101,114,115,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,110,61,116,104,105,115,59,105,102,40,116,104,105,115,46,95,116,111,117,99,104,83,117,112,112,111,114,116,101,100,41,123,118,97,114,32,101,61,102,117,110,99,116,105,111,110,40,116,41,123,110,46,95,112,111,105,110,116,101,114,69,118,101,110,116,38,38,115,116,91,116,46,111,114,105,103,105,110,97,108,69,118,101,110,116,46,112,111,105,110,116,101,114,84,121,112,101,46,116,111,85,112,112,101,114,67,97,115,101,40,41,93,63,110,46,116,111,117,99,104,83,116,97,114,116,88,61,116,46,111,114,105,103,105,110,97,108,69,118,101,110,116,46,99,108,105,101,110,116,88,58,110,46,95,112,111,105,110,116,101,114,69,118,101,110,116,124,124,40,110,46,116,111,117,99,104,83,116,97,114,116,88,61,116,46,111,114,105,103,105,110,97,108,69,118,101,110,116,46,116,111,117,99,104,101,115,91,48,93,46,99,108,105,101,110,116,88,41,125,44,105,61,102,117,110,99,116,105,111,110,40,116,41,123,110,46,95,112,111,105,110,116,101,114,69,118,101,110,116,38,38,115,116,91,116,46,111,114,105,103,105,110,97,108,69,118,101,110,116,46,112,111,105,110,116,101,114,84,121,112,101,46,116,111,85,112,112,101,114,67,97,115,101,40,41,93,38,38,40,110,46,116,111,117,99,104,68,101,108,116,97,88,61,116,46,111,114,105,103,105,110,97,108,69,118,101,110,116,46,99,108,105,101,110,116,88,45,110,46,116,111,117,99,104,83,116,97,114,116,88,41,44,110,46,95,104,97,110,100,108,101,83,119,105,112,101,40,41,44,34,104,111,118,101,114,34,61,61,61,110,46,95,99,111,110,102,105,103,46,112,97,117,115,101,38,38,40,110,46,112,97,117,115,101,40,41,44,110,46,116,111,117,99,104,84,105,109,101,111,117,116,38,38,99,108,101,97,114,84,105,109,101,111,117,116,40,110,46,116,111,117,99,104,84,105,109,101,111,117,116,41,44,110,46,116,111,117,99,104,84,105,109,101,111,117,116,61,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,46,99,121,99,108,101,40,116,41,125,44,53,48,48,43,110,46,95,99,111,110,102,105,103,46,105,110,116,101,114,118,97,108,41,41,125,59,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,101,116,41,41,46,111,110,40,113,46,68,82,65,71,95,83,84,65,82,84,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,125,41,44,116,104,105,115,46,95,112,111,105,110,116,101,114,69,118,101,110,116,63,40,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,111,110,40,113,46,80,79,73,78,84,69,82,68,79,87,78,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,40,116,41,125,41,44,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,111,110,40,113,46,80,79,73,78,84,69,82,85,80,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,105,40,116,41,125,41,44,116,104,105,115,46,95,101,108,101,109,101,110,116,46,99,108,97,115,115,76,105,115,116,46,97,100,100,40,36,41,41,58,40,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,111,110,40,113,46,84,79,85,67,72,83,84,65,82,84,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,40,116,41,125,41,44,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,111,110,40,113,46,84,79,85,67,72,77,79,86,69,44,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,59,40,101,61,116,41,46,111,114,105,103,105,110,97,108,69,118,101,110,116,46,116,111,117,99,104,101,115,38,38,49,60,101,46,111,114,105,103,105,110,97,108,69,118,101,110,116,46,116,111,117,99,104,101,115,46,108,101,110,103,116,104,63,110,46,116,111,117,99,104,68,101,108,116,97,88,61,48,58,110,46,116,111,117,99,104,68,101,108,116,97,88,61,101,46,111,114,105,103,105,110,97,108,69,118,101,110,116,46,116,111,117,99,104,101,115,91,48,93,46,99,108,105,101,110,116,88,45,110,46,116,111,117,99,104,83,116,97,114,116,88,125,41,44,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,111,110,40,113,46,84,79,85,67,72,69,78,68,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,105,40,116,41,125,41,41,125,125,44,116,46,95,107,101,121,100,111,119,110,61,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,33,47,105,110,112,117,116,124,116,101,120,116,97,114,101,97,47,105,46,116,101,115,116,40,116,46,116,97,114,103,101,116,46,116,97,103,78,97,109,101,41,41,115,119,105,116,99,104,40,116,46,119,104,105,99,104,41,123,99,97,115,101,32,51,55,58,116,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,116,104,105,115,46,112,114,101,118,40,41,59,98,114,101,97,107,59,99,97,115,101,32,51,57,58,116,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,116,104,105,115,46,110,101,120,116,40,41,125,125,44,116,46,95,103,101,116,73,116,101,109,73,110,100,101,120,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,105,116,101,109,115,61,116,38,38,116,46,112,97,114,101,110,116,78,111,100,101,63,91,93,46,115,108,105,99,101,46,99,97,108,108,40,116,46,112,97,114,101,110,116,78,111,100,101,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,116,116,41,41,58,91,93,44,116,104,105,115,46,95,105,116,101,109,115,46,105,110,100,101,120,79,102,40,116,41,125,44,116,46,95,103,101,116,73,116,101,109,66,121,68,105,114,101,99,116,105,111,110,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,116,61,61,61,77,44,105,61,116,61,61,61,87,44,111,61,116,104,105,115,46,95,103,101,116,73,116,101,109,73,110,100,101,120,40,101,41,44,114,61,116,104,105,115,46,95,105,116,101,109,115,46,108,101,110,103,116,104,45,49,59,105,102,40,40,105,38,38,48,61,61,61,111,124,124,110,38,38,111,61,61,61,114,41,38,38,33,116,104,105,115,46,95,99,111,110,102,105,103,46,119,114,97,112,41,114,101,116,117,114,110,32,101,59,118,97,114,32,115,61,40,111,43,40,116,61,61,61,87,63,45,49,58,49,41,41,37,116,104,105,115,46,95,105,116,101,109,115,46,108,101,110,103,116,104,59,114,101,116,117,114,110,45,49,61,61,61,115,63,116,104,105,115,46,95,105,116,101,109,115,91,116,104,105,115,46,95,105,116,101,109,115,46,108,101,110,103,116,104,45,49,93,58,116,104,105,115,46,95,105,116,101,109,115,91,115,93,125,44,116,46,95,116,114,105,103,103,101,114,83,108,105,100,101,69,118,101,110,116,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,116,104,105,115,46,95,103,101,116,73,116,101,109,73,110,100,101,120,40,116,41,44,105,61,116,104,105,115,46,95,103,101,116,73,116,101,109,73,110,100,101,120,40,116,104,105,115,46,95,101,108,101,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,90,41,41,44,111,61,112,46,69,118,101,110,116,40,113,46,83,76,73,68,69,44,123,114,101,108,97,116,101,100,84,97,114,103,101,116,58,116,44,100,105,114,101,99,116,105,111,110,58,101,44,102,114,111,109,58,105,44,116,111,58,110,125,41,59,114,101,116,117,114,110,32,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,116,114,105,103,103,101,114,40,111,41,44,111,125,44,116,46,95,115,101,116,65,99,116,105,118,101,73,110,100,105,99,97,116,111,114,69,108,101,109,101,110,116,61,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,116,104,105,115,46,95,105,110,100,105,99,97,116,111,114,115,69,108,101,109,101,110,116,41,123,118,97,114,32,101,61,91,93,46,115,108,105,99,101,46,99,97,108,108,40,116,104,105,115,46,95,105,110,100,105,99,97,116,111,114,115,69,108,101,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,74,41,41,59,112,40,101,41,46,114,101,109,111,118,101,67,108,97,115,115,40,81,41,59,118,97,114,32,110,61,116,104,105,115,46,95,105,110,100,105,99,97,116,111,114,115,69,108,101,109,101,110,116,46,99,104,105,108,100,114,101,110,91,116,104,105,115,46,95,103,101,116,73,116,101,109,73,110,100,101,120,40,116,41,93,59,110,38,38,112,40,110,41,46,97,100,100,67,108,97,115,115,40,81,41,125,125,44,116,46,95,115,108,105,100,101,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,44,105,44,111,44,114,61,116,104,105,115,44,115,61,116,104,105,115,46,95,101,108,101,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,90,41,44,97,61,116,104,105,115,46,95,103,101,116,73,116,101,109,73,110,100,101,120,40,115,41,44,108,61,101,124,124,115,38,38,116,104,105,115,46,95,103,101,116,73,116,101,109,66,121,68,105,114,101,99,116,105,111,110,40,116,44,115,41,44,99,61,116,104,105,115,46,95,103,101,116,73,116,101,109,73,110,100,101,120,40,108,41,44,104,61,66,111,111,108,101,97,110,40,116,104,105,115,46,95,105,110,116,101,114,118,97,108,41,59,105,102,40,111,61,116,61,61,61,77,63,40,110,61,122,44,105,61,88,44,85,41,58,40,110,61,89,44,105,61,71,44,66,41,44,108,38,38,112,40,108,41,46,104,97,115,67,108,97,115,115,40,81,41,41,116,104,105,115,46,95,105,115,83,108,105,100,105,110,103,61,33,49,59,101,108,115,101,32,105,102,40,33,116,104,105,115,46,95,116,114,105,103,103,101,114,83,108,105,100,101,69,118,101,110,116,40,108,44,111,41,46,105,115,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,40,41,38,38,115,38,38,108,41,123,116,104,105,115,46,95,105,115,83,108,105,100,105,110,103,61,33,48,44,104,38,38,116,104,105,115,46,112,97,117,115,101,40,41,44,116,104,105,115,46,95,115,101,116,65,99,116,105,118,101,73,110,100,105,99,97,116,111,114,69,108,101,109,101,110,116,40,108,41,59,118,97,114,32,117,61,112,46,69,118,101,110,116,40,113,46,83,76,73,68,44,123,114,101,108,97,116,101,100,84,97,114,103,101,116,58,108,44,100,105,114,101,99,116,105,111,110,58,111,44,102,114,111,109,58,97,44,116,111,58,99,125,41,59,105,102,40,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,104,97,115,67,108,97,115,115,40,86,41,41,123,112,40,108,41,46,97,100,100,67,108,97,115,115,40,105,41,44,109,46,114,101,102,108,111,119,40,108,41,44,112,40,115,41,46,97,100,100,67,108,97,115,115,40,110,41,44,112,40,108,41,46,97,100,100,67,108,97,115,115,40,110,41,59,118,97,114,32,102,61,112,97,114,115,101,73,110,116,40,108,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,100,97,116,97,45,105,110,116,101,114,118,97,108,34,41,44,49,48,41,59,116,104,105,115,46,95,99,111,110,102,105,103,46,105,110,116,101,114,118,97,108,61,102,63,40,116,104,105,115,46,95,99,111,110,102,105,103,46,100,101,102,97,117,108,116,73,110,116,101,114,118,97,108,61,116,104,105,115,46,95,99,111,110,102,105,103,46,100,101,102,97,117,108,116,73,110,116,101,114,118,97,108,124,124,116,104,105,115,46,95,99,111,110,102,105,103,46,105,110,116,101,114,118,97,108,44,102,41,58,116,104,105,115,46,95,99,111,110,102,105,103,46,100,101,102,97,117,108,116,73,110,116,101,114,118,97,108,124,124,116,104,105,115,46,95,99,111,110,102,105,103,46,105,110,116,101,114,118,97,108,59,118,97,114,32,100,61,109,46,103,101,116,84,114,97,110,115,105,116,105,111,110,68,117,114,97,116,105,111,110,70,114,111,109,69,108,101,109,101,110,116,40,115,41,59,112,40,115,41,46,111,110,101,40,109,46,84,82,65,78,83,73,84,73,79,78,95,69,78,68,44,102,117,110,99,116,105,111,110,40,41,123,112,40,108,41,46,114,101,109,111,118,101,67,108,97,115,115,40,110,43,34,32,34,43,105,41,46,97,100,100,67,108,97,115,115,40,81,41,44,112,40,115,41,46,114,101,109,111,118,101,67,108,97,115,115,40,81,43,34,32,34,43,105,43,34,32,34,43,110,41,44,114,46,95,105,115,83,108,105,100,105,110,103,61,33,49,44,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,112,40,114,46,95,101,108,101,109,101,110,116,41,46,116,114,105,103,103,101,114,40,117,41,125,44,48,41,125,41,46,101,109,117,108,97,116,101,84,114,97,110,115,105,116,105,111,110,69,110,100,40,100,41,125,101,108,115,101,32,112,40,115,41,46,114,101,109,111,118,101,67,108,97,115,115,40,81,41,44,112,40,108,41,46,97,100,100,67,108,97,115,115,40,81,41,44,116,104,105,115,46,95,105,115,83,108,105,100,105,110,103,61,33,49,44,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,116,114,105,103,103,101,114,40,117,41,59,104,38,38,116,104,105,115,46,99,121,99,108,101,40,41,125,125,44,114,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,61,102,117,110,99,116,105,111,110,40,105,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,112,40,116,104,105,115,41,46,100,97,116,97,40,120,41,44,101,61,108,40,123,125,44,82,44,112,40,116,104,105,115,41,46,100,97,116,97,40,41,41,59,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,105,38,38,40,101,61,108,40,123,125,44,101,44,105,41,41,59,118,97,114,32,110,61,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,105,63,105,58,101,46,115,108,105,100,101,59,105,102,40,116,124,124,40,116,61,110,101,119,32,114,40,116,104,105,115,44,101,41,44,112,40,116,104,105,115,41,46,100,97,116,97,40,120,44,116,41,41,44,34,110,117,109,98,101,114,34,61,61,116,121,112,101,111,102,32,105,41,116,46,116,111,40,105,41,59,101,108,115,101,32,105,102,40,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,110,41,123,105,102,40,34,117,110,100,101,102,105,110,101,100,34,61,61,116,121,112,101,111,102,32,116,91,110,93,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,39,78,111,32,109,101,116,104,111,100,32,110,97,109,101,100,32,34,39,43,110,43,39,34,39,41,59,116,91,110,93,40,41,125,101,108,115,101,32,101,46,105,110,116,101,114,118,97,108,38,38,101,46,114,105,100,101,38,38,40,116,46,112,97,117,115,101,40,41,44,116,46,99,121,99,108,101,40,41,41,125,41,125,44,114,46,95,100,97,116,97,65,112,105,67,108,105,99,107,72,97,110,100,108,101,114,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,109,46,103,101,116,83,101,108,101,99,116,111,114,70,114,111,109,69,108,101,109,101,110,116,40,116,104,105,115,41,59,105,102,40,101,41,123,118,97,114,32,110,61,112,40,101,41,91,48,93,59,105,102,40,110,38,38,112,40,110,41,46,104,97,115,67,108,97,115,115,40,75,41,41,123,118,97,114,32,105,61,108,40,123,125,44,112,40,110,41,46,100,97,116,97,40,41,44,112,40,116,104,105,115,41,46,100,97,116,97,40,41,41,44,111,61,116,104,105,115,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,100,97,116,97,45,115,108,105,100,101,45,116,111,34,41,59,111,38,38,40,105,46,105,110,116,101,114,118,97,108,61,33,49,41,44,114,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,46,99,97,108,108,40,112,40,110,41,44,105,41,44,111,38,38,112,40,110,41,46,100,97,116,97,40,120,41,46,116,111,40,111,41,44,116,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,125,125,125,44,115,40,114,44,110,117,108,108,44,91,123,107,101,121,58,34,86,69,82,83,73,79,78,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,34,52,46,51,46,49,34,125,125,44,123,107,101,121,58,34,68,101,102,97,117,108,116,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,82,125,125,93,41,44,114,125,40,41,59,112,40,100,111,99,117,109,101,110,116,41,46,111,110,40,113,46,67,76,73,67,75,95,68,65,84,65,95,65,80,73,44,111,116,44,97,116,46,95,100,97,116,97,65,112,105,67,108,105,99,107,72,97,110,100,108,101,114,41,44,112,40,119,105,110,100,111,119,41,46,111,110,40,113,46,76,79,65,68,95,68,65,84,65,95,65,80,73,44,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,118,97,114,32,116,61,91,93,46,115,108,105,99,101,46,99,97,108,108,40,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,114,116,41,41,44,101,61,48,44,110,61,116,46,108,101,110,103,116,104,59,101,60,110,59,101,43,43,41,123,118,97,114,32,105,61,112,40,116,91,101,93,41,59,97,116,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,46,99,97,108,108,40,105,44,105,46,100,97,116,97,40,41,41,125,125,41,44,112,46,102,110,91,76,93,61,97,116,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,44,112,46,102,110,91,76,93,46,67,111,110,115,116,114,117,99,116,111,114,61,97,116,44,112,46,102,110,91,76,93,46,110,111,67,111,110,102,108,105,99,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,112,46,102,110,91,76,93,61,106,44,97,116,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,125,59,118,97,114,32,108,116,61,34,99,111,108,108,97,112,115,101,34,44,99,116,61,34,98,115,46,99,111,108,108,97,112,115,101,34,44,104,116,61,34,46,34,43,99,116,44,117,116,61,112,46,102,110,91,108,116,93,44,102,116,61,123,116,111,103,103,108,101,58,33,48,44,112,97,114,101,110,116,58,34,34,125,44,100,116,61,123,116,111,103,103,108,101,58,34,98,111,111,108,101,97,110,34,44,112,97,114,101,110,116,58,34,40,115,116,114,105,110,103,124,101,108,101,109,101,110,116,41,34,125,44,112,116,61,123,83,72,79,87,58,34,115,104,111,119,34,43,104,116,44,83,72,79,87,78,58,34,115,104,111,119,110,34,43,104,116,44,72,73,68,69,58,34,104,105,100,101,34,43,104,116,44,72,73,68,68,69,78,58,34,104,105,100,100,101,110,34,43,104,116,44,67,76,73,67,75,95,68,65,84,65,95,65,80,73,58,34,99,108,105,99,107,34,43,104,116,43,34,46,100,97,116,97,45,97,112,105,34,125,44,109,116,61,34,115,104,111,119,34,44,103,116,61,34,99,111,108,108,97,112,115,101,34,44,95,116,61,34,99,111,108,108,97,112,115,105,110,103,34,44,118,116,61,34,99,111,108,108,97,112,115,101,100,34,44,121,116,61,34,119,105,100,116,104,34,44,69,116,61,34,104,101,105,103,104,116,34,44,98,116,61,34,46,115,104,111,119,44,32,46,99,111,108,108,97,112,115,105,110,103,34,44,119,116,61,39,91,100,97,116,97,45,116,111,103,103,108,101,61,34,99,111,108,108,97,112,115,101,34,93,39,44,67,116,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,97,40,101,44,116,41,123,116,104,105,115,46,95,105,115,84,114,97,110,115,105,116,105,111,110,105,110,103,61,33,49,44,116,104,105,115,46,95,101,108,101,109,101,110,116,61,101,44,116,104,105,115,46,95,99,111,110,102,105,103,61,116,104,105,115,46,95,103,101,116,67,111,110,102,105,103,40,116,41,44,116,104,105,115,46,95,116,114,105,103,103,101,114,65,114,114,97,121,61,91,93,46,115,108,105,99,101,46,99,97,108,108,40,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,39,91,100,97,116,97,45,116,111,103,103,108,101,61,34,99,111,108,108,97,112,115,101,34,93,91,104,114,101,102,61,34,35,39,43,101,46,105,100,43,39,34,93,44,91,100,97,116,97,45,116,111,103,103,108,101,61,34,99,111,108,108,97,112,115,101,34,93,91,100,97,116,97,45,116,97,114,103,101,116,61,34,35,39,43,101,46,105,100,43,39,34,93,39,41,41,59,102,111,114,40,118,97,114,32,110,61,91,93,46,115,108,105,99,101,46,99,97,108,108,40,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,119,116,41,41,44,105,61,48,44,111,61,110,46,108,101,110,103,116,104,59,105,60,111,59,105,43,43,41,123,118,97,114,32,114,61,110,91,105,93,44,115,61,109,46,103,101,116,83,101,108,101,99,116,111,114,70,114,111,109,69,108,101,109,101,110,116,40,114,41,44,97,61,91,93,46,115,108,105,99,101,46,99,97,108,108,40,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,115,41,41,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,61,61,61,101,125,41,59,110,117,108,108,33,61,61,115,38,38,48,60,97,46,108,101,110,103,116,104,38,38,40,116,104,105,115,46,95,115,101,108,101,99,116,111,114,61,115,44,116,104,105,115,46,95,116,114,105,103,103,101,114,65,114,114,97,121,46,112,117,115,104,40,114,41,41,125,116,104,105,115,46,95,112,97,114,101,110,116,61,116,104,105,115,46,95,99,111,110,102,105,103,46,112,97,114,101,110,116,63,116,104,105,115,46,95,103,101,116,80,97,114,101,110,116,40,41,58,110,117,108,108,44,116,104,105,115,46,95,99,111,110,102,105,103,46,112,97,114,101,110,116,124,124,116,104,105,115,46,95,97,100,100,65,114,105,97,65,110,100,67,111,108,108,97,112,115,101,100,67,108,97,115,115,40,116,104,105,115,46,95,101,108,101,109,101,110,116,44,116,104,105,115,46,95,116,114,105,103,103,101,114,65,114,114,97,121,41,44,116,104,105,115,46,95,99,111,110,102,105,103,46,116,111,103,103,108,101,38,38,116,104,105,115,46,116,111,103,103,108,101,40,41,125,118,97,114,32,116,61,97,46,112,114,111,116,111,116,121,112,101,59,114,101,116,117,114,110,32,116,46,116,111,103,103,108,101,61,102,117,110,99,116,105,111,110,40,41,123,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,104,97,115,67,108,97,115,115,40,109,116,41,63,116,104,105,115,46,104,105,100,101,40,41,58,116,104,105,115,46,115,104,111,119,40,41,125,44,116,46,115,104,111,119,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,44,101,44,110,61,116,104,105,115,59,105,102,40,33,116,104,105,115,46,95,105,115,84,114,97,110,115,105,116,105,111,110,105,110,103,38,38,33,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,104,97,115,67,108,97,115,115,40,109,116,41,38,38,40,116,104,105,115,46,95,112,97,114,101,110,116,38,38,48,61,61,61,40,116,61,91,93,46,115,108,105,99,101,46,99,97,108,108,40,116,104,105,115,46,95,112,97,114,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,98,116,41,41,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,110,46,95,99,111,110,102,105,103,46,112,97,114,101,110,116,63,116,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,100,97,116,97,45,112,97,114,101,110,116,34,41,61,61,61,110,46,95,99,111,110,102,105,103,46,112,97,114,101,110,116,58,116,46,99,108,97,115,115,76,105,115,116,46,99,111,110,116,97,105,110,115,40,103,116,41,125,41,41,46,108,101,110,103,116,104,38,38,40,116,61,110,117,108,108,41,44,33,40,116,38,38,40,101,61,112,40,116,41,46,110,111,116,40,116,104,105,115,46,95,115,101,108,101,99,116,111,114,41,46,100,97,116,97,40,99,116,41,41,38,38,101,46,95,105,115,84,114,97,110,115,105,116,105,111,110,105,110,103,41,41,41,123,118,97,114,32,105,61,112,46,69,118,101,110,116,40,112,116,46,83,72,79,87,41,59,105,102,40,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,116,114,105,103,103,101,114,40,105,41,44,33,105,46,105,115,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,40,41,41,123,116,38,38,40,97,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,46,99,97,108,108,40,112,40,116,41,46,110,111,116,40,116,104,105,115,46,95,115,101,108,101,99,116,111,114,41,44,34,104,105,100,101,34,41,44,101,124,124,112,40,116,41,46,100,97,116,97,40,99,116,44,110,117,108,108,41,41,59,118,97,114,32,111,61,116,104,105,115,46,95,103,101,116,68,105,109,101,110,115,105,111,110,40,41,59,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,114,101,109,111,118,101,67,108,97,115,115,40,103,116,41,46,97,100,100,67,108,97,115,115,40,95,116,41,44,116,104,105,115,46,95,101,108,101,109,101,110,116,46,115,116,121,108,101,91,111,93,61,48,44,116,104,105,115,46,95,116,114,105,103,103,101,114,65,114,114,97,121,46,108,101,110,103,116,104,38,38,112,40,116,104,105,115,46,95,116,114,105,103,103,101,114,65,114,114,97,121,41,46,114,101,109,111,118,101,67,108,97,115,115,40,118,116,41,46,97,116,116,114,40,34,97,114,105,97,45,101,120,112,97,110,100,101,100,34,44,33,48,41,44,116,104,105,115,46,115,101,116,84,114,97,110,115,105,116,105,111,110,105,110,103,40,33,48,41,59,118,97,114,32,114,61,34,115,99,114,111,108,108,34,43,40,111,91,48,93,46,116,111,85,112,112,101,114,67,97,115,101,40,41,43,111,46,115,108,105,99,101,40,49,41,41,44,115,61,109,46,103,101,116,84,114,97,110,115,105,116,105,111,110,68,117,114,97,116,105,111,110,70,114,111,109,69,108,101,109,101,110,116,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,59,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,111,110,101,40,109,46,84,82,65,78,83,73,84,73,79,78,95,69,78,68,44,102,117,110,99,116,105,111,110,40,41,123,112,40,110,46,95,101,108,101,109,101,110,116,41,46,114,101,109,111,118,101,67,108,97,115,115,40,95,116,41,46,97,100,100,67,108,97,115,115,40,103,116,41,46,97,100,100,67,108,97,115,115,40,109,116,41,44,110,46,95,101,108,101,109,101,110,116,46,115,116,121,108,101,91,111,93,61,34,34,44,110,46,115,101,116,84,114,97,110,115,105,116,105,111,110,105,110,103,40,33,49,41,44,112,40,110,46,95,101,108,101,109,101,110,116,41,46,116,114,105,103,103,101,114,40,112,116,46,83,72,79,87,78,41,125,41,46,101,109,117,108,97,116,101,84,114,97,110,115,105,116,105,111,110,69,110,100,40,115,41,44,116,104,105,115,46,95,101,108,101,109,101,110,116,46,115,116,121,108,101,91,111,93,61,116,104,105,115,46,95,101,108,101,109,101,110,116,91,114,93,43,34,112,120,34,125,125,125,44,116,46,104,105,100,101,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,59,105,102,40,33,116,104,105,115,46,95,105,115,84,114,97,110,115,105,116,105,111,110,105,110,103,38,38,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,104,97,115,67,108,97,115,115,40,109,116,41,41,123,118,97,114,32,101,61,112,46,69,118,101,110,116,40,112,116,46,72,73,68,69,41,59,105,102,40,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,116,114,105,103,103,101,114,40,101,41,44,33,101,46,105,115,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,40,41,41,123,118,97,114,32,110,61,116,104,105,115,46,95,103,101,116,68,105,109,101,110,115,105,111,110,40,41,59,116,104,105,115,46,95,101,108,101,109,101,110,116,46,115,116,121,108,101,91,110,93,61,116,104,105,115,46,95,101,108,101,109,101,110,116,46,103,101,116,66,111,117,110,100,105,110,103,67,108,105,101,110,116,82,101,99,116,40,41,91,110,93,43,34,112,120,34,44,109,46,114,101,102,108,111,119,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,44,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,97,100,100,67,108,97,115,115,40,95,116,41,46,114,101,109,111,118,101,67,108,97,115,115,40,103,116,41,46,114,101,109,111,118,101,67,108,97,115,115,40,109,116,41,59,118,97,114,32,105,61,116,104,105,115,46,95,116,114,105,103,103,101,114,65,114,114,97,121,46,108,101,110,103,116,104,59,105,102,40,48,60,105,41,102,111,114,40,118,97,114,32,111,61,48,59,111,60,105,59,111,43,43,41,123,118,97,114,32,114,61,116,104,105,115,46,95,116,114,105,103,103,101,114,65,114,114,97,121,91,111,93,44,115,61,109,46,103,101,116,83,101,108,101,99,116,111,114,70,114,111,109,69,108,101,109,101,110,116,40,114,41,59,105,102,40,110,117,108,108,33,61,61,115,41,112,40,91,93,46,115,108,105,99,101,46,99,97,108,108,40,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,115,41,41,41,46,104,97,115,67,108,97,115,115,40,109,116,41,124,124,112,40,114,41,46,97,100,100,67,108,97,115,115,40,118,116,41,46,97,116,116,114,40,34,97,114,105,97,45,101,120,112,97,110,100,101,100,34,44,33,49,41,125,116,104,105,115,46,115,101,116,84,114,97,110,115,105,116,105,111,110,105,110,103,40,33,48,41,59,116,104,105,115,46,95,101,108,101,109,101,110,116,46,115,116,121,108,101,91,110,93,61,34,34,59,118,97,114,32,97,61,109,46,103,101,116,84,114,97,110,115,105,116,105,111,110,68,117,114,97,116,105,111,110,70,114,111,109,69,108,101,109,101,110,116,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,59,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,111,110,101,40,109,46,84,82,65,78,83,73,84,73,79,78,95,69,78,68,44,102,117,110,99,116,105,111,110,40,41,123,116,46,115,101,116,84,114,97,110,115,105,116,105,111,110,105,110,103,40,33,49,41,44,112,40,116,46,95,101,108,101,109,101,110,116,41,46,114,101,109,111,118,101,67,108,97,115,115,40,95,116,41,46,97,100,100,67,108,97,115,115,40,103,116,41,46,116,114,105,103,103,101,114,40,112,116,46,72,73,68,68,69,78,41,125,41,46,101,109,117,108,97,116,101,84,114,97,110,115,105,116,105,111,110,69,110,100,40,97,41,125,125,125,44,116,46,115,101,116,84,114,97,110,115,105,116,105,111,110,105,110,103,61,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,95,105,115,84,114,97,110,115,105,116,105,111,110,105,110,103,61,116,125,44,116,46,100,105,115,112,111,115,101,61,102,117,110,99,116,105,111,110,40,41,123,112,46,114,101,109,111,118,101,68,97,116,97,40,116,104,105,115,46,95,101,108,101,109,101,110,116,44,99,116,41,44,116,104,105,115,46,95,99,111,110,102,105,103,61,110,117,108,108,44,116,104,105,115,46,95,112,97,114,101,110,116,61,110,117,108,108,44,116,104,105,115,46,95,101,108,101,109,101,110,116,61,110,117,108,108,44,116,104,105,115,46,95,116,114,105,103,103,101,114,65,114,114,97,121,61,110,117,108,108,44,116,104,105,115,46,95,105,115,84,114,97,110,115,105,116,105,111,110,105,110,103,61,110,117,108,108,125,44,116,46,95,103,101,116,67,111,110,102,105,103,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,40,116,61,108,40,123,125,44,102,116,44,116,41,41,46,116,111,103,103,108,101,61,66,111,111,108,101,97,110,40,116,46,116,111,103,103,108,101,41,44,109,46,116,121,112,101,67,104,101,99,107,67,111,110,102,105,103,40,108,116,44,116,44,100,116,41,44,116,125,44,116,46,95,103,101,116,68,105,109,101,110,115,105,111,110,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,104,97,115,67,108,97,115,115,40,121,116,41,63,121,116,58,69,116,125,44,116,46,95,103,101,116,80,97,114,101,110,116,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,44,110,61,116,104,105,115,59,109,46,105,115,69,108,101,109,101,110,116,40,116,104,105,115,46,95,99,111,110,102,105,103,46,112,97,114,101,110,116,41,63,40,116,61,116,104,105,115,46,95,99,111,110,102,105,103,46,112,97,114,101,110,116,44,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,116,104,105,115,46,95,99,111,110,102,105,103,46,112,97,114,101,110,116,46,106,113,117,101,114,121,38,38,40,116,61,116,104,105,115,46,95,99,111,110,102,105,103,46,112,97,114,101,110,116,91,48,93,41,41,58,116,61,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,116,104,105,115,46,95,99,111,110,102,105,103,46,112,97,114,101,110,116,41,59,118,97,114,32,101,61,39,91,100,97,116,97,45,116,111,103,103,108,101,61,34,99,111,108,108,97,112,115,101,34,93,91,100,97,116,97,45,112,97,114,101,110,116,61,34,39,43,116,104,105,115,46,95,99,111,110,102,105,103,46,112,97,114,101,110,116,43,39,34,93,39,44,105,61,91,93,46,115,108,105,99,101,46,99,97,108,108,40,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,101,41,41,59,114,101,116,117,114,110,32,112,40,105,41,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,110,46,95,97,100,100,65,114,105,97,65,110,100,67,111,108,108,97,112,115,101,100,67,108,97,115,115,40,97,46,95,103,101,116,84,97,114,103,101,116,70,114,111,109,69,108,101,109,101,110,116,40,101,41,44,91,101,93,41,125,41,44,116,125,44,116,46,95,97,100,100,65,114,105,97,65,110,100,67,111,108,108,97,112,115,101,100,67,108,97,115,115,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,112,40,116,41,46,104,97,115,67,108,97,115,115,40,109,116,41,59,101,46,108,101,110,103,116,104,38,38,112,40,101,41,46,116,111,103,103,108,101,67,108,97,115,115,40,118,116,44,33,110,41,46,97,116,116,114,40,34,97,114,105,97,45,101,120,112,97,110,100,101,100,34,44,110,41,125,44,97,46,95,103,101,116,84,97,114,103,101,116,70,114,111,109,69,108,101,109,101,110,116,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,109,46,103,101,116,83,101,108,101,99,116,111,114,70,114,111,109,69,108,101,109,101,110,116,40,116,41,59,114,101,116,117,114,110,32,101,63,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,101,41,58,110,117,108,108,125,44,97,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,61,102,117,110,99,116,105,111,110,40,105,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,112,40,116,104,105,115,41,44,101,61,116,46,100,97,116,97,40,99,116,41,44,110,61,108,40,123,125,44,102,116,44,116,46,100,97,116,97,40,41,44,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,105,38,38,105,63,105,58,123,125,41,59,105,102,40,33,101,38,38,110,46,116,111,103,103,108,101,38,38,47,115,104,111,119,124,104,105,100,101,47,46,116,101,115,116,40,105,41,38,38,40,110,46,116,111,103,103,108,101,61,33,49,41,44,101,124,124,40,101,61,110,101,119,32,97,40,116,104,105,115,44,110,41,44,116,46,100,97,116,97,40,99,116,44,101,41,41,44,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,105,41,123,105,102,40,34,117,110,100,101,102,105,110,101,100,34,61,61,116,121,112,101,111,102,32,101,91,105,93,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,39,78,111,32,109,101,116,104,111,100,32,110,97,109,101,100,32,34,39,43,105,43,39,34,39,41,59,101,91,105,93,40,41,125,125,41,125,44,115,40,97,44,110,117,108,108,44,91,123,107,101,121,58,34,86,69,82,83,73,79,78,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,34,52,46,51,46,49,34,125,125,44,123,107,101,121,58,34,68,101,102,97,117,108,116,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,102,116,125,125,93,41,44,97,125,40,41,59,112,40,100,111,99,117,109,101,110,116,41,46,111,110,40,112,116,46,67,76,73,67,75,95,68,65,84,65,95,65,80,73,44,119,116,44,102,117,110,99,116,105,111,110,40,116,41,123,34,65,34,61,61,61,116,46,99,117,114,114,101,110,116,84,97,114,103,101,116,46,116,97,103,78,97,109,101,38,38,116,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,59,118,97,114,32,110,61,112,40,116,104,105,115,41,44,101,61,109,46,103,101,116,83,101,108,101,99,116,111,114,70,114,111,109,69,108,101,109,101,110,116,40,116,104,105,115,41,44,105,61,91,93,46,115,108,105,99,101,46,99,97,108,108,40,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,101,41,41,59,112,40,105,41,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,112,40,116,104,105,115,41,44,101,61,116,46,100,97,116,97,40,99,116,41,63,34,116,111,103,103,108,101,34,58,110,46,100,97,116,97,40,41,59,67,116,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,46,99,97,108,108,40,116,44,101,41,125,41,125,41,44,112,46,102,110,91,108,116,93,61,67,116,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,44,112,46,102,110,91,108,116,93,46,67,111,110,115,116,114,117,99,116,111,114,61,67,116,44,112,46,102,110,91,108,116,93,46,110,111,67,111,110,102,108,105,99,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,112,46,102,110,91,108,116,93,61,117,116,44,67,116,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,125,59,102,111,114,40,118,97,114,32,84,116,61,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,119,105,110,100,111,119,38,38,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,100,111,99,117,109,101,110,116,44,83,116,61,91,34,69,100,103,101,34,44,34,84,114,105,100,101,110,116,34,44,34,70,105,114,101,102,111,120,34,93,44,68,116,61,48,44,73,116,61,48,59,73,116,60,83,116,46,108,101,110,103,116,104,59,73,116,43,61,49,41,105,102,40,84,116,38,38,48,60,61,110,97,118,105,103,97,116,111,114,46,117,115,101,114,65,103,101,110,116,46,105,110,100,101,120,79,102,40,83,116,91,73,116,93,41,41,123,68,116,61,49,59,98,114,101,97,107,125,118,97,114,32,65,116,61,84,116,38,38,119,105,110,100,111,119,46,80,114,111,109,105,115,101,63,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,33,49,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,101,124,124,40,101,61,33,48,44,119,105,110,100,111,119,46,80,114,111,109,105,115,101,46,114,101,115,111,108,118,101,40,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,41,123,101,61,33,49,44,116,40,41,125,41,41,125,125,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,33,49,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,101,124,124,40,101,61,33,48,44,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,40,41,123,101,61,33,49,44,116,40,41,125,44,68,116,41,41,125,125,59,102,117,110,99,116,105,111,110,32,79,116,40,116,41,123,114,101,116,117,114,110,32,116,38,38,34,91,111,98,106,101,99,116,32,70,117,110,99,116,105,111,110,93,34,61,61,61,123,125,46,116,111,83,116,114,105,110,103,46,99,97,108,108,40,116,41,125,102,117,110,99,116,105,111,110,32,78,116,40,116,44,101,41,123,105,102,40,49,33,61,61,116,46,110,111,100,101,84,121,112,101,41,114,101,116,117,114,110,91,93,59,118,97,114,32,110,61,116,46,111,119,110,101,114,68,111,99,117,109,101,110,116,46,100,101,102,97,117,108,116,86,105,101,119,46,103,101,116,67,111,109,112,117,116,101,100,83,116,121,108,101,40,116,44,110,117,108,108,41,59,114,101,116,117,114,110,32,101,63,110,91,101,93,58,110,125,102,117,110,99,116,105,111,110,32,107,116,40,116,41,123,114,101,116,117,114,110,34,72,84,77,76,34,61,61,61,116,46,110,111,100,101,78,97,109,101,63,116,58,116,46,112,97,114,101,110,116,78,111,100,101,124,124,116,46,104,111,115,116,125,102,117,110,99,116,105,111,110,32,76,116,40,116,41,123,105,102,40,33,116,41,114,101,116,117,114,110,32,100,111,99,117,109,101,110,116,46,98,111,100,121,59,115,119,105,116,99,104,40,116,46,110,111,100,101,78,97,109,101,41,123,99,97,115,101,34,72,84,77,76,34,58,99,97,115,101,34,66,79,68,89,34,58,114,101,116,117,114,110,32,116,46,111,119,110,101,114,68,111,99,117,109,101,110,116,46,98,111,100,121,59,99,97,115,101,34,35,100,111,99,117,109,101,110,116,34,58,114,101,116,117,114,110,32,116,46,98,111,100,121,125,118,97,114,32,101,61,78,116,40,116,41,44,110,61,101,46,111,118,101,114,102,108,111,119,44,105,61,101,46,111,118,101,114,102,108,111,119,88,44,111,61,101,46,111,118,101,114,102,108,111,119,89,59,114,101,116,117,114,110,47,40,97,117,116,111,124,115,99,114,111,108,108,124,111,118,101,114,108,97,121,41,47,46,116,101,115,116,40,110,43,111,43,105,41,63,116,58,76,116,40,107,116,40,116,41,41,125,118,97,114,32,120,116,61,84,116,38,38,33,40,33,119,105,110,100,111,119,46,77,83,73,110,112,117,116,77,101,116,104,111,100,67,111,110,116,101,120,116,124,124,33,100,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,77,111,100,101,41,44,80,116,61,84,116,38,38,47,77,83,73,69,32,49,48,47,46,116,101,115,116,40,110,97,118,105,103,97,116,111,114,46,117,115,101,114,65,103,101,110,116,41,59,102,117,110,99,116,105,111,110,32,72,116,40,116,41,123,114,101,116,117,114,110,32,49,49,61,61,61,116,63,120,116,58,49,48,61,61,61,116,63,80,116,58,120,116,124,124,80,116,125,102,117,110,99,116,105,111,110,32,106,116,40,116,41,123,105,102,40,33,116,41,114,101,116,117,114,110,32,100,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,59,102,111,114,40,118,97,114,32,101,61,72,116,40,49,48,41,63,100,111,99,117,109,101,110,116,46,98,111,100,121,58,110,117,108,108,44,110,61,116,46,111,102,102,115,101,116,80,97,114,101,110,116,124,124,110,117,108,108,59,110,61,61,61,101,38,38,116,46,110,101,120,116,69,108,101,109,101,110,116,83,105,98,108,105,110,103,59,41,110,61,40,116,61,116,46,110,101,120,116,69,108,101,109,101,110,116,83,105,98,108,105,110,103,41,46,111,102,102,115,101,116,80,97,114,101,110,116,59,118,97,114,32,105,61,110,38,38,110,46,110,111,100,101,78,97,109,101,59,114,101,116,117,114,110,32,105,38,38,34,66,79,68,89,34,33,61,61,105,38,38,34,72,84,77,76,34,33,61,61,105,63,45,49,33,61,61,91,34,84,72,34,44,34,84,68,34,44,34,84,65,66,76,69,34,93,46,105,110,100,101,120,79,102,40,110,46,110,111,100,101,78,97,109,101,41,38,38,34,115,116,97,116,105,99,34,61,61,61,78,116,40,110,44,34,112,111,115,105,116,105,111,110,34,41,63,106,116,40,110,41,58,110,58,116,63,116,46,111,119,110,101,114,68,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,58,100,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,125,102,117,110,99,116,105,111,110,32,82,116,40,116,41,123,114,101,116,117,114,110,32,110,117,108,108,33,61,61,116,46,112,97,114,101,110,116,78,111,100,101,63,82,116,40,116,46,112,97,114,101,110,116,78,111,100,101,41,58,116,125,102,117,110,99,116,105,111,110,32,70,116,40,116,44,101,41,123,105,102,40,33,40,116,38,38,116,46,110,111,100,101,84,121,112,101,38,38,101,38,38,101,46,110,111,100,101,84,121,112,101,41,41,114,101,116,117,114,110,32,100,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,59,118,97,114,32,110,61,116,46,99,111,109,112,97,114,101,68,111,99,117,109,101,110,116,80,111,115,105,116,105,111,110,40,101,41,38,78,111,100,101,46,68,79,67,85,77,69,78,84,95,80,79,83,73,84,73,79,78,95,70,79,76,76,79,87,73,78,71,44,105,61,110,63,116,58,101,44,111,61,110,63,101,58,116,44,114,61,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,82,97,110,103,101,40,41,59,114,46,115,101,116,83,116,97,114,116,40,105,44,48,41,44,114,46,115,101,116,69,110,100,40,111,44,48,41,59,118,97,114,32,115,44,97,44,108,61,114,46,99,111,109,109,111,110,65,110,99,101,115,116,111,114,67,111,110,116,97,105,110,101,114,59,105,102,40,116,33,61,61,108,38,38,101,33,61,61,108,124,124,105,46,99,111,110,116,97,105,110,115,40,111,41,41,114,101,116,117,114,110,34,66,79,68,89,34,61,61,61,40,97,61,40,115,61,108,41,46,110,111,100,101,78,97,109,101,41,124,124,34,72,84,77,76,34,33,61,61,97,38,38,106,116,40,115,46,102,105,114,115,116,69,108,101,109,101,110,116,67,104,105,108,100,41,33,61,61,115,63,106,116,40,108,41,58,108,59,118,97,114,32,99,61,82,116,40,116,41,59,114,101,116,117,114,110,32,99,46,104,111,115,116,63,70,116,40,99,46,104,111,115,116,44,101,41,58,70,116,40,116,44,82,116,40,101,41,46,104,111,115,116,41,125,102,117,110,99,116,105,111,110,32,77,116,40,116,41,123,118,97,114,32,101,61,34,116,111,112,34,61,61,61,40,49,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,38,38,118,111,105,100,32,48,33,61,61,97,114,103,117,109,101,110,116,115,91,49,93,63,97,114,103,117,109,101,110,116,115,91,49,93,58,34,116,111,112,34,41,63,34,115,99,114,111,108,108,84,111,112,34,58,34,115,99,114,111,108,108,76,101,102,116,34,44,110,61,116,46,110,111,100,101,78,97,109,101,59,105,102,40,34,66,79,68,89,34,33,61,61,110,38,38,34,72,84,77,76,34,33,61,61,110,41,114,101,116,117,114,110,32,116,91,101,93,59,118,97,114,32,105,61,116,46,111,119,110,101,114,68,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,59,114,101,116,117,114,110,40,116,46,111,119,110,101,114,68,111,99,117,109,101,110,116,46,115,99,114,111,108,108,105,110,103,69,108,101,109,101,110,116,124,124,105,41,91,101,93,125,102,117,110,99,116,105,111,110,32,87,116,40,116,44,101,41,123,118,97,114,32,110,61,34,120,34,61,61,61,101,63,34,76,101,102,116,34,58,34,84,111,112,34,44,105,61,34,76,101,102,116,34,61,61,61,110,63,34,82,105,103,104,116,34,58,34,66,111,116,116,111,109,34,59,114,101,116,117,114,110,32,112,97,114,115,101,70,108,111,97,116,40,116,91,34,98,111,114,100,101,114,34,43,110,43,34,87,105,100,116,104,34,93,44,49,48,41,43,112,97,114,115,101,70,108,111,97,116,40,116,91,34,98,111,114,100,101,114,34,43,105,43,34,87,105,100,116,104,34,93,44,49,48,41,125,102,117,110,99,116,105,111,110,32,85,116,40,116,44,101,44,110,44,105,41,123,114,101,116,117,114,110,32,77,97,116,104,46,109,97,120,40,101,91,34,111,102,102,115,101,116,34,43,116,93,44,101,91,34,115,99,114,111,108,108,34,43,116,93,44,110,91,34,99,108,105,101,110,116,34,43,116,93,44,110,91,34,111,102,102,115,101,116,34,43,116,93,44,110,91,34,115,99,114,111,108,108,34,43,116,93,44,72,116,40,49,48,41,63,112,97,114,115,101,73,110,116,40,110,91,34,111,102,102,115,101,116,34,43,116,93,41,43,112,97,114,115,101,73,110,116,40,105,91,34,109,97,114,103,105,110,34,43,40,34,72,101,105,103,104,116,34,61,61,61,116,63,34,84,111,112,34,58,34,76,101,102,116,34,41,93,41,43,112,97,114,115,101,73,110,116,40,105,91,34,109,97,114,103,105,110,34,43,40,34,72,101,105,103,104,116,34,61,61,61,116,63,34,66,111,116,116,111,109,34,58,34,82,105,103,104,116,34,41,93,41,58,48,41,125,102,117,110,99,116,105,111,110,32,66,116,40,116,41,123,118,97,114,32,101,61,116,46,98,111,100,121,44,110,61,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,44,105,61,72,116,40,49,48,41,38,38,103,101,116,67,111,109,112,117,116,101,100,83,116,121,108,101,40,110,41,59,114,101,116,117,114,110,123,104,101,105,103,104,116,58,85,116,40,34,72,101,105,103,104,116,34,44,101,44,110,44,105,41,44,119,105,100,116,104,58,85,116,40,34,87,105,100,116,104,34,44,101,44,110,44,105,41,125,125,118,97,114,32,113,116,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,105,40,116,44,101,41,123,102,111,114,40,118,97,114,32,110,61,48,59,110,60,101,46,108,101,110,103,116,104,59,110,43,43,41,123,118,97,114,32,105,61,101,91,110,93,59,105,46,101,110,117,109,101,114,97,98,108,101,61,105,46,101,110,117,109,101,114,97,98,108,101,124,124,33,49,44,105,46,99,111,110,102,105,103,117,114,97,98,108,101,61,33,48,44,34,118,97,108,117,101,34,105,110,32,105,38,38,40,105,46,119,114,105,116,97,98,108,101,61,33,48,41,44,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,44,105,46,107,101,121,44,105,41,125,125,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,114,101,116,117,114,110,32,101,38,38,105,40,116,46,112,114,111,116,111,116,121,112,101,44,101,41,44,110,38,38,105,40,116,44,110,41,44,116,125,125,40,41,44,75,116,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,114,101,116,117,114,110,32,101,32,105,110,32,116,63,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,44,101,44,123,118,97,108,117,101,58,110,44,101,110,117,109,101,114,97,98,108,101,58,33,48,44,99,111,110,102,105,103,117,114,97,98,108,101,58,33,48,44,119,114,105,116,97,98,108,101,58,33,48,125,41,58,116,91,101,93,61,110,44,116,125,44,81,116,61,79,98,106,101,99,116,46,97,115,115,105,103,110,124,124,102,117,110,99,116,105,111,110,40,116,41,123,102,111,114,40,118,97,114,32,101,61,49,59,101,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,101,43,43,41,123,118,97,114,32,110,61,97,114,103,117,109,101,110,116,115,91,101,93,59,102,111,114,40,118,97,114,32,105,32,105,110,32,110,41,79,98,106,101,99,116,46,112,114,111,116,111,116,121,112,101,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,46,99,97,108,108,40,110,44,105,41,38,38,40,116,91,105,93,61,110,91,105,93,41,125,114,101,116,117,114,110,32,116,125,59,102,117,110,99,116,105,111,110,32,86,116,40,116,41,123,114,101,116,117,114,110,32,81,116,40,123,125,44,116,44,123,114,105,103,104,116,58,116,46,108,101,102,116,43,116,46,119,105,100,116,104,44,98,111,116,116,111,109,58,116,46,116,111,112,43,116,46,104,101,105,103,104,116,125,41,125,102,117,110,99,116,105,111,110,32,89,116,40,116,41,123,118,97,114,32,101,61,123,125,59,116,114,121,123,105,102,40,72,116,40,49,48,41,41,123,101,61,116,46,103,101,116,66,111,117,110,100,105,110,103,67,108,105,101,110,116,82,101,99,116,40,41,59,118,97,114,32,110,61,77,116,40,116,44,34,116,111,112,34,41,44,105,61,77,116,40,116,44,34,108,101,102,116,34,41,59,101,46,116,111,112,43,61,110,44,101,46,108,101,102,116,43,61,105,44,101,46,98,111,116,116,111,109,43,61,110,44,101,46,114,105,103,104,116,43,61,105,125,101,108,115,101,32,101,61,116,46,103,101,116,66,111,117,110,100,105,110,103,67,108,105,101,110,116,82,101,99,116,40,41,125,99,97,116,99,104,40,116,41,123,125,118,97,114,32,111,61,123,108,101,102,116,58,101,46,108,101,102,116,44,116,111,112,58,101,46,116,111,112,44,119,105,100,116,104,58,101,46,114,105,103,104,116,45,101,46,108,101,102,116,44,104,101,105,103,104,116,58,101,46,98,111,116,116,111,109,45,101,46,116,111,112,125,44,114,61,34,72,84,77,76,34,61,61,61,116,46,110,111,100,101,78,97,109,101,63,66,116,40,116,46,111,119,110,101,114,68,111,99,117,109,101,110,116,41,58,123,125,44,115,61,114,46,119,105,100,116,104,124,124,116,46,99,108,105,101,110,116,87,105,100,116,104,124,124,111,46,114,105,103,104,116,45,111,46,108,101,102,116,44,97,61,114,46,104,101,105,103,104,116,124,124,116,46,99,108,105,101,110,116,72,101,105,103,104,116,124,124,111,46,98,111,116,116,111,109,45,111,46,116,111,112,44,108,61,116,46,111,102,102,115,101,116,87,105,100,116,104,45,115,44,99,61,116,46,111,102,102,115,101,116,72,101,105,103,104,116,45,97,59,105,102,40,108,124,124,99,41,123,118,97,114,32,104,61,78,116,40,116,41,59,108,45,61,87,116,40,104,44,34,120,34,41,44,99,45,61,87,116,40,104,44,34,121,34,41,44,111,46,119,105,100,116,104,45,61,108,44,111,46,104,101,105,103,104,116,45,61,99,125,114,101,116,117,114,110,32,86,116,40,111,41,125,102,117,110,99,116,105,111,110,32,122,116,40,116,44,101,41,123,118,97,114,32,110,61,50,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,38,38,118,111,105,100,32,48,33,61,61,97,114,103,117,109,101,110,116,115,91,50,93,38,38,97,114,103,117,109,101,110,116,115,91,50,93,44,105,61,72,116,40,49,48,41,44,111,61,34,72,84,77,76,34,61,61,61,101,46,110,111,100,101,78,97,109,101,44,114,61,89,116,40,116,41,44,115,61,89,116,40,101,41,44,97,61,76,116,40,116,41,44,108,61,78,116,40,101,41,44,99,61,112,97,114,115,101,70,108,111,97,116,40,108,46,98,111,114,100,101,114,84,111,112,87,105,100,116,104,44,49,48,41,44,104,61,112,97,114,115,101,70,108,111,97,116,40,108,46,98,111,114,100,101,114,76,101,102,116,87,105,100,116,104,44,49,48,41,59,110,38,38,111,38,38,40,115,46,116,111,112,61,77,97,116,104,46,109,97,120,40,115,46,116,111,112,44,48,41,44,115,46,108,101,102,116,61,77,97,116,104,46,109,97,120,40,115,46,108,101,102,116,44,48,41,41,59,118,97,114,32,117,61,86,116,40,123,116,111,112,58,114,46,116,111,112,45,115,46,116,111,112,45,99,44,108,101,102,116,58,114,46,108,101,102,116,45,115,46,108,101,102,116,45,104,44,119,105,100,116,104,58,114,46,119,105,100,116,104,44,104,101,105,103,104,116,58,114,46,104,101,105,103,104,116,125,41,59,105,102,40,117,46,109,97,114,103,105,110,84,111,112,61,48,44,117,46,109,97,114,103,105,110,76,101,102,116,61,48,44,33,105,38,38,111,41,123,118,97,114,32,102,61,112,97,114,115,101,70,108,111,97,116,40,108,46,109,97,114,103,105,110,84,111,112,44,49,48,41,44,100,61,112,97,114,115,101,70,108,111,97,116,40,108,46,109,97,114,103,105,110,76,101,102,116,44,49,48,41,59,117,46,116,111,112,45,61,99,45,102,44,117,46,98,111,116,116,111,109,45,61,99,45,102,44,117,46,108,101,102,116,45,61,104,45,100,44,117,46,114,105,103,104,116,45,61,104,45,100,44,117,46,109,97,114,103,105,110,84,111,112,61,102,44,117,46,109,97,114,103,105,110,76,101,102,116,61,100,125,114,101,116,117,114,110,40,105,38,38,33,110,63,101,46,99,111,110,116,97,105,110,115,40,97,41,58,101,61,61,61,97,38,38,34,66,79,68,89,34,33,61,61,97,46,110,111,100,101,78,97,109,101,41,38,38,40,117,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,50,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,38,38,118,111,105,100,32,48,33,61,61,97,114,103,117,109,101,110,116,115,91,50,93,38,38,97,114,103,117,109,101,110,116,115,91,50,93,44,105,61,77,116,40,101,44,34,116,111,112,34,41,44,111,61,77,116,40,101,44,34,108,101,102,116,34,41,44,114,61,110,63,45,49,58,49,59,114,101,116,117,114,110,32,116,46,116,111,112,43,61,105,42,114,44,116,46,98,111,116,116,111,109,43,61,105,42,114,44,116,46,108,101,102,116,43,61,111,42,114,44,116,46,114,105,103,104,116,43,61,111,42,114,44,116,125,40,117,44,101,41,41,44,117,125,102,117,110,99,116,105,111,110,32,88,116,40,116,41,123,105,102,40,33,116,124,124,33,116,46,112,97,114,101,110,116,69,108,101,109,101,110,116,124,124,72,116,40,41,41,114,101,116,117,114,110,32,100,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,59,102,111,114,40,118,97,114,32,101,61,116,46,112,97,114,101,110,116,69,108,101,109,101,110,116,59,101,38,38,34,110,111,110,101,34,61,61,61,78,116,40,101,44,34,116,114,97,110,115,102,111,114,109,34,41,59,41,101,61,101,46,112,97,114,101,110,116,69,108,101,109,101,110,116,59,114,101,116,117,114,110,32,101,124,124,100,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,125,102,117,110,99,116,105,111,110,32,71,116,40,116,44,101,44,110,44,105,41,123,118,97,114,32,111,61,52,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,38,38,118,111,105,100,32,48,33,61,61,97,114,103,117,109,101,110,116,115,91,52,93,38,38,97,114,103,117,109,101,110,116,115,91,52,93,44,114,61,123,116,111,112,58,48,44,108,101,102,116,58,48,125,44,115,61,111,63,88,116,40,116,41,58,70,116,40,116,44,101,41,59,105,102,40,34,118,105,101,119,112,111,114,116,34,61,61,61,105,41,114,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,49,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,38,38,118,111,105,100,32,48,33,61,61,97,114,103,117,109,101,110,116,115,91,49,93,38,38,97,114,103,117,109,101,110,116,115,91,49,93,44,110,61,116,46,111,119,110,101,114,68,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,44,105,61,122,116,40,116,44,110,41,44,111,61,77,97,116,104,46,109,97,120,40,110,46,99,108,105,101,110,116,87,105,100,116,104,44,119,105,110,100,111,119,46,105,110,110,101,114,87,105,100,116,104,124,124,48,41,44,114,61,77,97,116,104,46,109,97,120,40,110,46,99,108,105,101,110,116,72,101,105,103,104,116,44,119,105,110,100,111,119,46,105,110,110,101,114,72,101,105,103,104,116,124,124,48,41,44,115,61,101,63,48,58,77,116,40,110,41,44,97,61,101,63,48,58,77,116,40,110,44,34,108,101,102,116,34,41,59,114,101,116,117,114,110,32,86,116,40,123,116,111,112,58,115,45,105,46,116,111,112,43,105,46,109,97,114,103,105,110,84,111,112,44,108,101,102,116,58,97,45,105,46,108,101,102,116,43,105,46,109,97,114,103,105,110,76,101,102,116,44,119,105,100,116,104,58,111,44,104,101,105,103,104,116,58,114,125,41,125,40,115,44,111,41,59,101,108,115,101,123,118,97,114,32,97,61,118,111,105,100,32,48,59,34,115,99,114,111,108,108,80,97,114,101,110,116,34,61,61,61,105,63,34,66,79,68,89,34,61,61,61,40,97,61,76,116,40,107,116,40,101,41,41,41,46,110,111,100,101,78,97,109,101,38,38,40,97,61,116,46,111,119,110,101,114,68,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,41,58,97,61,34,119,105,110,100,111,119,34,61,61,61,105,63,116,46,111,119,110,101,114,68,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,58,105,59,118,97,114,32,108,61,122,116,40,97,44,115,44,111,41,59,105,102,40,34,72,84,77,76,34,33,61,61,97,46,110,111,100,101,78,97,109,101,124,124,102,117,110,99,116,105,111,110,32,116,40,101,41,123,118,97,114,32,110,61,101,46,110,111,100,101,78,97,109,101,59,105,102,40,34,66,79,68,89,34,61,61,61,110,124,124,34,72,84,77,76,34,61,61,61,110,41,114,101,116,117,114,110,33,49,59,105,102,40,34,102,105,120,101,100,34,61,61,61,78,116,40,101,44,34,112,111,115,105,116,105,111,110,34,41,41,114,101,116,117,114,110,33,48,59,118,97,114,32,105,61,107,116,40,101,41,59,114,101,116,117,114,110,33,33,105,38,38,116,40,105,41,125,40,115,41,41,114,61,108,59,101,108,115,101,123,118,97,114,32,99,61,66,116,40,116,46,111,119,110,101,114,68,111,99,117,109,101,110,116,41,44,104,61,99,46,104,101,105,103,104,116,44,117,61,99,46,119,105,100,116,104,59,114,46,116,111,112,43,61,108,46,116,111,112,45,108,46,109,97,114,103,105,110,84,111,112,44,114,46,98,111,116,116,111,109,61,104,43,108,46,116,111,112,44,114,46,108,101,102,116,43,61,108,46,108,101,102,116,45,108,46,109,97,114,103,105,110,76,101,102,116,44,114,46,114,105,103,104,116,61,117,43,108,46,108,101,102,116,125,125,118,97,114,32,102,61,34,110,117,109,98,101,114,34,61,61,116,121,112,101,111,102,40,110,61,110,124,124,48,41,59,114,101,116,117,114,110,32,114,46,108,101,102,116,43,61,102,63,110,58,110,46,108,101,102,116,124,124,48,44,114,46,116,111,112,43,61,102,63,110,58,110,46,116,111,112,124,124,48,44,114,46,114,105,103,104,116,45,61,102,63,110,58,110,46,114,105,103,104,116,124,124,48,44,114,46,98,111,116,116,111,109,45,61,102,63,110,58,110,46,98,111,116,116,111,109,124,124,48,44,114,125,102,117,110,99,116,105,111,110,32,36,116,40,116,44,101,44,105,44,110,44,111,41,123,118,97,114,32,114,61,53,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,38,38,118,111,105,100,32,48,33,61,61,97,114,103,117,109,101,110,116,115,91,53,93,63,97,114,103,117,109,101,110,116,115,91,53,93,58,48,59,105,102,40,45,49,61,61,61,116,46,105,110,100,101,120,79,102,40,34,97,117,116,111,34,41,41,114,101,116,117,114,110,32,116,59,118,97,114,32,115,61,71,116,40,105,44,110,44,114,44,111,41,44,97,61,123,116,111,112,58,123,119,105,100,116,104,58,115,46,119,105,100,116,104,44,104,101,105,103,104,116,58,101,46,116,111,112,45,115,46,116,111,112,125,44,114,105,103,104,116,58,123,119,105,100,116,104,58,115,46,114,105,103,104,116,45,101,46,114,105,103,104,116,44,104,101,105,103,104,116,58,115,46,104,101,105,103,104,116,125,44,98,111,116,116,111,109,58,123,119,105,100,116,104,58,115,46,119,105,100,116,104,44,104,101,105,103,104,116,58,115,46,98,111,116,116,111,109,45,101,46,98,111,116,116,111,109,125,44,108,101,102,116,58,123,119,105,100,116,104,58,101,46,108,101,102,116,45,115,46,108,101,102,116,44,104,101,105,103,104,116,58,115,46,104,101,105,103,104,116,125,125,44,108,61,79,98,106,101,99,116,46,107,101,121,115,40,97,41,46,109,97,112,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,81,116,40,123,107,101,121,58,116,125,44,97,91,116,93,44,123,97,114,101,97,58,40,101,61,97,91,116,93,44,101,46,119,105,100,116,104,42,101,46,104,101,105,103,104,116,41,125,41,59,118,97,114,32,101,125,41,46,115,111,114,116,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,101,46,97,114,101,97,45,116,46,97,114,101,97,125,41,44,99,61,108,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,46,119,105,100,116,104,44,110,61,116,46,104,101,105,103,104,116,59,114,101,116,117,114,110,32,101,62,61,105,46,99,108,105,101,110,116,87,105,100,116,104,38,38,110,62,61,105,46,99,108,105,101,110,116,72,101,105,103,104,116,125,41,44,104,61,48,60,99,46,108,101,110,103,116,104,63,99,91,48,93,46,107,101,121,58,108,91,48,93,46,107,101,121,44,117,61,116,46,115,112,108,105,116,40,34,45,34,41,91,49,93,59,114,101,116,117,114,110,32,104,43,40,117,63,34,45,34,43,117,58,34,34,41,125,102,117,110,99,116,105,111,110,32,74,116,40,116,44,101,44,110,41,123,118,97,114,32,105,61,51,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,38,38,118,111,105,100,32,48,33,61,61,97,114,103,117,109,101,110,116,115,91,51,93,63,97,114,103,117,109,101,110,116,115,91,51,93,58,110,117,108,108,59,114,101,116,117,114,110,32,122,116,40,110,44,105,63,88,116,40,101,41,58,70,116,40,101,44,110,41,44,105,41,125,102,117,110,99,116,105,111,110,32,90,116,40,116,41,123,118,97,114,32,101,61,116,46,111,119,110,101,114,68,111,99,117,109,101,110,116,46,100,101,102,97,117,108,116,86,105,101,119,46,103,101,116,67,111,109,112,117,116,101,100,83,116,121,108,101,40,116,41,44,110,61,112,97,114,115,101,70,108,111,97,116,40,101,46,109,97,114,103,105,110,84,111,112,124,124,48,41,43,112,97,114,115,101,70,108,111,97,116,40,101,46,109,97,114,103,105,110,66,111,116,116,111,109,124,124,48,41,44,105,61,112,97,114,115,101,70,108,111,97,116,40,101,46,109,97,114,103,105,110,76,101,102,116,124,124,48,41,43,112,97,114,115,101,70,108,111,97,116,40,101,46,109,97,114,103,105,110,82,105,103,104,116,124,124,48,41,59,114,101,116,117,114,110,123,119,105,100,116,104,58,116,46,111,102,102,115,101,116,87,105,100,116,104,43,105,44,104,101,105,103,104,116,58,116,46,111,102,102,115,101,116,72,101,105,103,104,116,43,110,125,125,102,117,110,99,116,105,111,110,32,116,101,40,116,41,123,118,97,114,32,101,61,123,108,101,102,116,58,34,114,105,103,104,116,34,44,114,105,103,104,116,58,34,108,101,102,116,34,44,98,111,116,116,111,109,58,34,116,111,112,34,44,116,111,112,58,34,98,111,116,116,111,109,34,125,59,114,101,116,117,114,110,32,116,46,114,101,112,108,97,99,101,40,47,108,101,102,116,124,114,105,103,104,116,124,98,111,116,116,111,109,124,116,111,112,47,103,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,91,116,93,125,41,125,102,117,110,99,116,105,111,110,32,101,101,40,116,44,101,44,110,41,123,110,61,110,46,115,112,108,105,116,40,34,45,34,41,91,48,93,59,118,97,114,32,105,61,90,116,40,116,41,44,111,61,123,119,105,100,116,104,58,105,46,119,105,100,116,104,44,104,101,105,103,104,116,58,105,46,104,101,105,103,104,116,125,44,114,61,45,49,33,61,61,91,34,114,105,103,104,116,34,44,34,108,101,102,116,34,93,46,105,110,100,101,120,79,102,40,110,41,44,115,61,114,63,34,116,111,112,34,58,34,108,101,102,116,34,44,97,61,114,63,34,108,101,102,116,34,58,34,116,111,112,34,44,108,61,114,63,34,104,101,105,103,104,116,34,58,34,119,105,100,116,104,34,44,99,61,114,63,34,119,105,100,116,104,34,58,34,104,101,105,103,104,116,34,59,114,101,116,117,114,110,32,111,91,115,93,61,101,91,115,93,43,101,91,108,93,47,50,45,105,91,108,93,47,50,44,111,91,97,93,61,110,61,61,61,97,63,101,91,97,93,45,105,91,99,93,58,101,91,116,101,40,97,41,93,44,111,125,102,117,110,99,116,105,111,110,32,110,101,40,116,44,101,41,123,114,101,116,117,114,110,32,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,102,105,110,100,63,116,46,102,105,110,100,40,101,41,58,116,46,102,105,108,116,101,114,40,101,41,91,48,93,125,102,117,110,99,116,105,111,110,32,105,101,40,116,44,110,44,101,41,123,114,101,116,117,114,110,40,118,111,105,100,32,48,61,61,61,101,63,116,58,116,46,115,108,105,99,101,40,48,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,105,102,40,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,102,105,110,100,73,110,100,101,120,41,114,101,116,117,114,110,32,116,46,102,105,110,100,73,110,100,101,120,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,91,101,93,61,61,61,110,125,41,59,118,97,114,32,105,61,110,101,40,116,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,91,101,93,61,61,61,110,125,41,59,114,101,116,117,114,110,32,116,46,105,110,100,101,120,79,102,40,105,41,125,40,116,44,34,110,97,109,101,34,44,101,41,41,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,116,41,123,116,46,102,117,110,99,116,105,111,110,38,38,99,111,110,115,111,108,101,46,119,97,114,110,40,34,96,109,111,100,105,102,105,101,114,46,102,117,110,99,116,105,111,110,96,32,105,115,32,100,101,112,114,101,99,97,116,101,100,44,32,117,115,101,32,96,109,111,100,105,102,105,101,114,46,102,110,96,33,34,41,59,118,97,114,32,101,61,116,46,102,117,110,99,116,105,111,110,124,124,116,46,102,110,59,116,46,101,110,97,98,108,101,100,38,38,79,116,40,101,41,38,38,40,110,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,61,86,116,40,110,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,41,44,110,46,111,102,102,115,101,116,115,46,114,101,102,101,114,101,110,99,101,61,86,116,40,110,46,111,102,102,115,101,116,115,46,114,101,102,101,114,101,110,99,101,41,44,110,61,101,40,110,44,116,41,41,125,41,44,110,125,102,117,110,99,116,105,111,110,32,111,101,40,116,44,110,41,123,114,101,116,117,114,110,32,116,46,115,111,109,101,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,46,110,97,109,101,59,114,101,116,117,114,110,32,116,46,101,110,97,98,108,101,100,38,38,101,61,61,61,110,125,41,125,102,117,110,99,116,105,111,110,32,114,101,40,116,41,123,102,111,114,40,118,97,114,32,101,61,91,33,49,44,34,109,115,34,44,34,87,101,98,107,105,116,34,44,34,77,111,122,34,44,34,79,34,93,44,110,61,116,46,99,104,97,114,65,116,40,48,41,46,116,111,85,112,112,101,114,67,97,115,101,40,41,43,116,46,115,108,105,99,101,40,49,41,44,105,61,48,59,105,60,101,46,108,101,110,103,116,104,59,105,43,43,41,123,118,97,114,32,111,61,101,91,105,93,44,114,61,111,63,34,34,43,111,43,110,58,116,59,105,102,40,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,100,111,99,117,109,101,110,116,46,98,111,100,121,46,115,116,121,108,101,91,114,93,41,114,101,116,117,114,110,32,114,125,114,101,116,117,114,110,32,110,117,108,108,125,102,117,110,99,116,105,111,110,32,115,101,40,116,41,123,118,97,114,32,101,61,116,46,111,119,110,101,114,68,111,99,117,109,101,110,116,59,114,101,116,117,114,110,32,101,63,101,46,100,101,102,97,117,108,116,86,105,101,119,58,119,105,110,100,111,119,125,102,117,110,99,116,105,111,110,32,97,101,40,116,44,101,44,110,44,105,41,123,110,46,117,112,100,97,116,101,66,111,117,110,100,61,105,44,115,101,40,116,41,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,114,101,115,105,122,101,34,44,110,46,117,112,100,97,116,101,66,111,117,110,100,44,123,112,97,115,115,105,118,101,58,33,48,125,41,59,118,97,114,32,111,61,76,116,40,116,41,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,116,40,101,44,110,44,105,44,111,41,123,118,97,114,32,114,61,34,66,79,68,89,34,61,61,61,101,46,110,111,100,101,78,97,109,101,44,115,61,114,63,101,46,111,119,110,101,114,68,111,99,117,109,101,110,116,46,100,101,102,97,117,108,116,86,105,101,119,58,101,59,115,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,110,44,105,44,123,112,97,115,115,105,118,101,58,33,48,125,41,44,114,124,124,116,40,76,116,40,115,46,112,97,114,101,110,116,78,111,100,101,41,44,110,44,105,44,111,41,44,111,46,112,117,115,104,40,115,41,125,40,111,44,34,115,99,114,111,108,108,34,44,110,46,117,112,100,97,116,101,66,111,117,110,100,44,110,46,115,99,114,111,108,108,80,97,114,101,110,116,115,41,44,110,46,115,99,114,111,108,108,69,108,101,109,101,110,116,61,111,44,110,46,101,118,101,110,116,115,69,110,97,98,108,101,100,61,33,48,44,110,125,102,117,110,99,116,105,111,110,32,108,101,40,41,123,118,97,114,32,116,44,101,59,116,104,105,115,46,115,116,97,116,101,46,101,118,101,110,116,115,69,110,97,98,108,101,100,38,38,40,99,97,110,99,101,108,65,110,105,109,97,116,105,111,110,70,114,97,109,101,40,116,104,105,115,46,115,99,104,101,100,117,108,101,85,112,100,97,116,101,41,44,116,104,105,115,46,115,116,97,116,101,61,40,116,61,116,104,105,115,46,114,101,102,101,114,101,110,99,101,44,101,61,116,104,105,115,46,115,116,97,116,101,44,115,101,40,116,41,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,114,101,115,105,122,101,34,44,101,46,117,112,100,97,116,101,66,111,117,110,100,41,44,101,46,115,99,114,111,108,108,80,97,114,101,110,116,115,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,116,41,123,116,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,115,99,114,111,108,108,34,44,101,46,117,112,100,97,116,101,66,111,117,110,100,41,125,41,44,101,46,117,112,100,97,116,101,66,111,117,110,100,61,110,117,108,108,44,101,46,115,99,114,111,108,108,80,97,114,101,110,116,115,61,91,93,44,101,46,115,99,114,111,108,108,69,108,101,109,101,110,116,61,110,117,108,108,44,101,46,101,118,101,110,116,115,69,110,97,98,108,101,100,61,33,49,44,101,41,41,125,102,117,110,99,116,105,111,110,32,99,101,40,116,41,123,114,101,116,117,114,110,34,34,33,61,61,116,38,38,33,105,115,78,97,78,40,112,97,114,115,101,70,108,111,97,116,40,116,41,41,38,38,105,115,70,105,110,105,116,101,40,116,41,125,102,117,110,99,116,105,111,110,32,104,101,40,110,44,105,41,123,79,98,106,101,99,116,46,107,101,121,115,40,105,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,34,34,59,45,49,33,61,61,91,34,119,105,100,116,104,34,44,34,104,101,105,103,104,116,34,44,34,116,111,112,34,44,34,114,105,103,104,116,34,44,34,98,111,116,116,111,109,34,44,34,108,101,102,116,34,93,46,105,110,100,101,120,79,102,40,116,41,38,38,99,101,40,105,91,116,93,41,38,38,40,101,61,34,112,120,34,41,44,110,46,115,116,121,108,101,91,116,93,61,105,91,116,93,43,101,125,41,125,118,97,114,32,117,101,61,84,116,38,38,47,70,105,114,101,102,111,120,47,105,46,116,101,115,116,40,110,97,118,105,103,97,116,111,114,46,117,115,101,114,65,103,101,110,116,41,59,102,117,110,99,116,105,111,110,32,102,101,40,116,44,101,44,110,41,123,118,97,114,32,105,61,110,101,40,116,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,110,97,109,101,61,61,61,101,125,41,44,111,61,33,33,105,38,38,116,46,115,111,109,101,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,110,97,109,101,61,61,61,110,38,38,116,46,101,110,97,98,108,101,100,38,38,116,46,111,114,100,101,114,60,105,46,111,114,100,101,114,125,41,59,105,102,40,33,111,41,123,118,97,114,32,114,61,34,96,34,43,101,43,34,96,34,44,115,61,34,96,34,43,110,43,34,96,34,59,99,111,110,115,111,108,101,46,119,97,114,110,40,115,43,34,32,109,111,100,105,102,105,101,114,32,105,115,32,114,101,113,117,105,114,101,100,32,98,121,32,34,43,114,43,34,32,109,111,100,105,102,105,101,114,32,105,110,32,111,114,100,101,114,32,116,111,32,119,111,114,107,44,32,98,101,32,115,117,114,101,32,116,111,32,105,110,99,108,117,100,101,32,105,116,32,98,101,102,111,114,101,32,34,43,114,43,34,33,34,41,125,114,101,116,117,114,110,32,111,125,118,97,114,32,100,101,61,91,34,97,117,116,111,45,115,116,97,114,116,34,44,34,97,117,116,111,34,44,34,97,117,116,111,45,101,110,100,34,44,34,116,111,112,45,115,116,97,114,116,34,44,34,116,111,112,34,44,34,116,111,112,45,101,110,100,34,44,34,114,105,103,104,116,45,115,116,97,114,116,34,44,34,114,105,103,104,116,34,44,34,114,105,103,104,116,45,101,110,100,34,44,34,98,111,116,116,111,109,45,101,110,100,34,44,34,98,111,116,116,111,109,34,44,34,98,111,116,116,111,109,45,115,116,97,114,116,34,44,34,108,101,102,116,45,101,110,100,34,44,34,108,101,102,116,34,44,34,108,101,102,116,45,115,116,97,114,116,34,93,44,112,101,61,100,101,46,115,108,105,99,101,40,51,41,59,102,117,110,99,116,105,111,110,32,109,101,40,116,41,123,118,97,114,32,101,61,49,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,38,38,118,111,105,100,32,48,33,61,61,97,114,103,117,109,101,110,116,115,91,49,93,38,38,97,114,103,117,109,101,110,116,115,91,49,93,44,110,61,112,101,46,105,110,100,101,120,79,102,40,116,41,44,105,61,112,101,46,115,108,105,99,101,40,110,43,49,41,46,99,111,110,99,97,116,40,112,101,46,115,108,105,99,101,40,48,44,110,41,41,59,114,101,116,117,114,110,32,101,63,105,46,114,101,118,101,114,115,101,40,41,58,105,125,118,97,114,32,103,101,61,34,102,108,105,112,34,44,95,101,61,34,99,108,111,99,107,119,105,115,101,34,44,118,101,61,34,99,111,117,110,116,101,114,99,108,111,99,107,119,105,115,101,34,59,102,117,110,99,116,105,111,110,32,121,101,40,116,44,111,44,114,44,101,41,123,118,97,114,32,115,61,91,48,44,48,93,44,97,61,45,49,33,61,61,91,34,114,105,103,104,116,34,44,34,108,101,102,116,34,93,46,105,110,100,101,120,79,102,40,101,41,44,110,61,116,46,115,112,108,105,116,40,47,40,92,43,124,92,45,41,47,41,46,109,97,112,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,116,114,105,109,40,41,125,41,44,105,61,110,46,105,110,100,101,120,79,102,40,110,101,40,110,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,45,49,33,61,61,116,46,115,101,97,114,99,104,40,47,44,124,92,115,47,41,125,41,41,59,110,91,105,93,38,38,45,49,61,61,61,110,91,105,93,46,105,110,100,101,120,79,102,40,34,44,34,41,38,38,99,111,110,115,111,108,101,46,119,97,114,110,40,34,79,102,102,115,101,116,115,32,115,101,112,97,114,97,116,101,100,32,98,121,32,119,104,105,116,101,32,115,112,97,99,101,40,115,41,32,97,114,101,32,100,101,112,114,101,99,97,116,101,100,44,32,117,115,101,32,97,32,99,111,109,109,97,32,40,44,41,32,105,110,115,116,101,97,100,46,34,41,59,118,97,114,32,108,61,47,92,115,42,44,92,115,42,124,92,115,43,47,44,99,61,45,49,33,61,61,105,63,91,110,46,115,108,105,99,101,40,48,44,105,41,46,99,111,110,99,97,116,40,91,110,91,105,93,46,115,112,108,105,116,40,108,41,91,48,93,93,41,44,91,110,91,105,93,46,115,112,108,105,116,40,108,41,91,49,93,93,46,99,111,110,99,97,116,40,110,46,115,108,105,99,101,40,105,43,49,41,41,93,58,91,110,93,59,114,101,116,117,114,110,40,99,61,99,46,109,97,112,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,40,49,61,61,61,101,63,33,97,58,97,41,63,34,104,101,105,103,104,116,34,58,34,119,105,100,116,104,34,44,105,61,33,49,59,114,101,116,117,114,110,32,116,46,114,101,100,117,99,101,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,34,34,61,61,61,116,91,116,46,108,101,110,103,116,104,45,49,93,38,38,45,49,33,61,61,91,34,43,34,44,34,45,34,93,46,105,110,100,101,120,79,102,40,101,41,63,40,116,91,116,46,108,101,110,103,116,104,45,49,93,61,101,44,105,61,33,48,44,116,41,58,105,63,40,116,91,116,46,108,101,110,103,116,104,45,49,93,43,61,101,44,105,61,33,49,44,116,41,58,116,46,99,111,110,99,97,116,40,101,41,125,44,91,93,41,46,109,97,112,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,44,101,44,110,44,105,41,123,118,97,114,32,111,61,116,46,109,97,116,99,104,40,47,40,40,63,58,92,45,124,92,43,41,63,92,100,42,92,46,63,92,100,42,41,40,46,42,41,47,41,44,114,61,43,111,91,49,93,44,115,61,111,91,50,93,59,105,102,40,33,114,41,114,101,116,117,114,110,32,116,59,105,102,40,48,33,61,61,115,46,105,110,100,101,120,79,102,40,34,37,34,41,41,114,101,116,117,114,110,34,118,104,34,33,61,61,115,38,38,34,118,119,34,33,61,61,115,63,114,58,40,34,118,104,34,61,61,61,115,63,77,97,116,104,46,109,97,120,40,100,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,46,99,108,105,101,110,116,72,101,105,103,104,116,44,119,105,110,100,111,119,46,105,110,110,101,114,72,101,105,103,104,116,124,124,48,41,58,77,97,116,104,46,109,97,120,40,100,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,46,99,108,105,101,110,116,87,105,100,116,104,44,119,105,110,100,111,119,46,105,110,110,101,114,87,105,100,116,104,124,124,48,41,41,47,49,48,48,42,114,59,118,97,114,32,97,61,118,111,105,100,32,48,59,115,119,105,116,99,104,40,115,41,123,99,97,115,101,34,37,112,34,58,97,61,110,59,98,114,101,97,107,59,99,97,115,101,34,37,34,58,99,97,115,101,34,37,114,34,58,100,101,102,97,117,108,116,58,97,61,105,125,114,101,116,117,114,110,32,86,116,40,97,41,91,101,93,47,49,48,48,42,114,125,40,116,44,110,44,111,44,114,41,125,41,125,41,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,110,44,105,41,123,110,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,99,101,40,116,41,38,38,40,115,91,105,93,43,61,116,42,40,34,45,34,61,61,61,110,91,101,45,49,93,63,45,49,58,49,41,41,125,41,125,41,44,115,125,118,97,114,32,69,101,61,123,112,108,97,99,101,109,101,110,116,58,34,98,111,116,116,111,109,34,44,112,111,115,105,116,105,111,110,70,105,120,101,100,58,33,49,44,101,118,101,110,116,115,69,110,97,98,108,101,100,58,33,48,44,114,101,109,111,118,101,79,110,68,101,115,116,114,111,121,58,33,49,44,111,110,67,114,101,97,116,101,58,102,117,110,99,116,105,111,110,40,41,123,125,44,111,110,85,112,100,97,116,101,58,102,117,110,99,116,105,111,110,40,41,123,125,44,109,111,100,105,102,105,101,114,115,58,123,115,104,105,102,116,58,123,111,114,100,101,114,58,49,48,48,44,101,110,97,98,108,101,100,58,33,48,44,102,110,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,46,112,108,97,99,101,109,101,110,116,44,110,61,101,46,115,112,108,105,116,40,34,45,34,41,91,48,93,44,105,61,101,46,115,112,108,105,116,40,34,45,34,41,91,49,93,59,105,102,40,105,41,123,118,97,114,32,111,61,116,46,111,102,102,115,101,116,115,44,114,61,111,46,114,101,102,101,114,101,110,99,101,44,115,61,111,46,112,111,112,112,101,114,44,97,61,45,49,33,61,61,91,34,98,111,116,116,111,109,34,44,34,116,111,112,34,93,46,105,110,100,101,120,79,102,40,110,41,44,108,61,97,63,34,108,101,102,116,34,58,34,116,111,112,34,44,99,61,97,63,34,119,105,100,116,104,34,58,34,104,101,105,103,104,116,34,44,104,61,123,115,116,97,114,116,58,75,116,40,123,125,44,108,44,114,91,108,93,41,44,101,110,100,58,75,116,40,123,125,44,108,44,114,91,108,93,43,114,91,99,93,45,115,91,99,93,41,125,59,116,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,61,81,116,40,123,125,44,115,44,104,91,105,93,41,125,114,101,116,117,114,110,32,116,125,125,44,111,102,102,115,101,116,58,123,111,114,100,101,114,58,50,48,48,44,101,110,97,98,108,101,100,58,33,48,44,102,110,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,101,46,111,102,102,115,101,116,44,105,61,116,46,112,108,97,99,101,109,101,110,116,44,111,61,116,46,111,102,102,115,101,116,115,44,114,61,111,46,112,111,112,112,101,114,44,115,61,111,46,114,101,102,101,114,101,110,99,101,44,97,61,105,46,115,112,108,105,116,40,34,45,34,41,91,48,93,44,108,61,118,111,105,100,32,48,59,114,101,116,117,114,110,32,108,61,99,101,40,43,110,41,63,91,43,110,44,48,93,58,121,101,40,110,44,114,44,115,44,97,41,44,34,108,101,102,116,34,61,61,61,97,63,40,114,46,116,111,112,43,61,108,91,48,93,44,114,46,108,101,102,116,45,61,108,91,49,93,41,58,34,114,105,103,104,116,34,61,61,61,97,63,40,114,46,116,111,112,43,61,108,91,48,93,44,114,46,108,101,102,116,43,61,108,91,49,93,41,58,34,116,111,112,34,61,61,61,97,63,40,114,46,108,101,102,116,43,61,108,91,48,93,44,114,46,116,111,112,45,61,108,91,49,93,41,58,34,98,111,116,116,111,109,34,61,61,61,97,38,38,40,114,46,108,101,102,116,43,61,108,91,48,93,44,114,46,116,111,112,43,61,108,91,49,93,41,44,116,46,112,111,112,112,101,114,61,114,44,116,125,44,111,102,102,115,101,116,58,48,125,44,112,114,101,118,101,110,116,79,118,101,114,102,108,111,119,58,123,111,114,100,101,114,58,51,48,48,44,101,110,97,98,108,101,100,58,33,48,44,102,110,58,102,117,110,99,116,105,111,110,40,116,44,105,41,123,118,97,114,32,101,61,105,46,98,111,117,110,100,97,114,105,101,115,69,108,101,109,101,110,116,124,124,106,116,40,116,46,105,110,115,116,97,110,99,101,46,112,111,112,112,101,114,41,59,116,46,105,110,115,116,97,110,99,101,46,114,101,102,101,114,101,110,99,101,61,61,61,101,38,38,40,101,61,106,116,40,101,41,41,59,118,97,114,32,110,61,114,101,40,34,116,114,97,110,115,102,111,114,109,34,41,44,111,61,116,46,105,110,115,116,97,110,99,101,46,112,111,112,112,101,114,46,115,116,121,108,101,44,114,61,111,46,116,111,112,44,115,61,111,46,108,101,102,116,44,97,61,111,91,110,93,59,111,46,116,111,112,61,34,34,44,111,46,108,101,102,116,61,34,34,44,111,91,110,93,61,34,34,59,118,97,114,32,108,61,71,116,40,116,46,105,110,115,116,97,110,99,101,46,112,111,112,112,101,114,44,116,46,105,110,115,116,97,110,99,101,46,114,101,102,101,114,101,110,99,101,44,105,46,112,97,100,100,105,110,103,44,101,44,116,46,112,111,115,105,116,105,111,110,70,105,120,101,100,41,59,111,46,116,111,112,61,114,44,111,46,108,101,102,116,61,115,44,111,91,110,93,61,97,44,105,46,98,111,117,110,100,97,114,105,101,115,61,108,59,118,97,114,32,99,61,105,46,112,114,105,111,114,105,116,121,44,104,61,116,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,44,117,61,123,112,114,105,109,97,114,121,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,104,91,116,93,59,114,101,116,117,114,110,32,104,91,116,93,60,108,91,116,93,38,38,33,105,46,101,115,99,97,112,101,87,105,116,104,82,101,102,101,114,101,110,99,101,38,38,40,101,61,77,97,116,104,46,109,97,120,40,104,91,116,93,44,108,91,116,93,41,41,44,75,116,40,123,125,44,116,44,101,41,125,44,115,101,99,111,110,100,97,114,121,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,34,114,105,103,104,116,34,61,61,61,116,63,34,108,101,102,116,34,58,34,116,111,112,34,44,110,61,104,91,101,93,59,114,101,116,117,114,110,32,104,91,116,93,62,108,91,116,93,38,38,33,105,46,101,115,99,97,112,101,87,105,116,104,82,101,102,101,114,101,110,99,101,38,38,40,110,61,77,97,116,104,46,109,105,110,40,104,91,101,93,44,108,91,116,93,45,40,34,114,105,103,104,116,34,61,61,61,116,63,104,46,119,105,100,116,104,58,104,46,104,101,105,103,104,116,41,41,41,44,75,116,40,123,125,44,101,44,110,41,125,125,59,114,101,116,117,114,110,32,99,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,45,49,33,61,61,91,34,108,101,102,116,34,44,34,116,111,112,34,93,46,105,110,100,101,120,79,102,40,116,41,63,34,112,114,105,109,97,114,121,34,58,34,115,101,99,111,110,100,97,114,121,34,59,104,61,81,116,40,123,125,44,104,44,117,91,101,93,40,116,41,41,125,41,44,116,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,61,104,44,116,125,44,112,114,105,111,114,105,116,121,58,91,34,108,101,102,116,34,44,34,114,105,103,104,116,34,44,34,116,111,112,34,44,34,98,111,116,116,111,109,34,93,44,112,97,100,100,105,110,103,58,53,44,98,111,117,110,100,97,114,105,101,115,69,108,101,109,101,110,116,58,34,115,99,114,111,108,108,80,97,114,101,110,116,34,125,44,107,101,101,112,84,111,103,101,116,104,101,114,58,123,111,114,100,101,114,58,52,48,48,44,101,110,97,98,108,101,100,58,33,48,44,102,110,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,46,111,102,102,115,101,116,115,44,110,61,101,46,112,111,112,112,101,114,44,105,61,101,46,114,101,102,101,114,101,110,99,101,44,111,61,116,46,112,108,97,99,101,109,101,110,116,46,115,112,108,105,116,40,34,45,34,41,91,48,93,44,114,61,77,97,116,104,46,102,108,111,111,114,44,115,61,45,49,33,61,61,91,34,116,111,112,34,44,34,98,111,116,116,111,109,34,93,46,105,110,100,101,120,79,102,40,111,41,44,97,61,115,63,34,114,105,103,104,116,34,58,34,98,111,116,116,111,109,34,44,108,61,115,63,34,108,101,102,116,34,58,34,116,111,112,34,44,99,61,115,63,34,119,105,100,116,104,34,58,34,104,101,105,103,104,116,34,59,114,101,116,117,114,110,32,110,91,97,93,60,114,40,105,91,108,93,41,38,38,40,116,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,91,108,93,61,114,40,105,91,108,93,41,45,110,91,99,93,41,44,110,91,108,93,62,114,40,105,91,97,93,41,38,38,40,116,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,91,108,93,61,114,40,105,91,97,93,41,41,44,116,125,125,44,97,114,114,111,119,58,123,111,114,100,101,114,58,53,48,48,44,101,110,97,98,108,101,100,58,33,48,44,102,110,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,59,105,102,40,33,102,101,40,116,46,105,110,115,116,97,110,99,101,46,109,111,100,105,102,105,101,114,115,44,34,97,114,114,111,119,34,44,34,107,101,101,112,84,111,103,101,116,104,101,114,34,41,41,114,101,116,117,114,110,32,116,59,118,97,114,32,105,61,101,46,101,108,101,109,101,110,116,59,105,102,40,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,105,41,123,105,102,40,33,40,105,61,116,46,105,110,115,116,97,110,99,101,46,112,111,112,112,101,114,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,105,41,41,41,114,101,116,117,114,110,32,116,125,101,108,115,101,32,105,102,40,33,116,46,105,110,115,116,97,110,99,101,46,112,111,112,112,101,114,46,99,111,110,116,97,105,110,115,40,105,41,41,114,101,116,117,114,110,32,99,111,110,115,111,108,101,46,119,97,114,110,40,34,87,65,82,78,73,78,71,58,32,96,97,114,114,111,119,46,101,108,101,109,101,110,116,96,32,109,117,115,116,32,98,101,32,99,104,105,108,100,32,111,102,32,105,116,115,32,112,111,112,112,101,114,32,101,108,101,109,101,110,116,33,34,41,44,116,59,118,97,114,32,111,61,116,46,112,108,97,99,101,109,101,110,116,46,115,112,108,105,116,40,34,45,34,41,91,48,93,44,114,61,116,46,111,102,102,115,101,116,115,44,115,61,114,46,112,111,112,112,101,114,44,97,61,114,46,114,101,102,101,114,101,110,99,101,44,108,61,45,49,33,61,61,91,34,108,101,102,116,34,44,34,114,105,103,104,116,34,93,46,105,110,100,101,120,79,102,40,111,41,44,99,61,108,63,34,104,101,105,103,104,116,34,58,34,119,105,100,116,104,34,44,104,61,108,63,34,84,111,112,34,58,34,76,101,102,116,34,44,117,61,104,46,116,111,76,111,119,101,114,67,97,115,101,40,41,44,102,61,108,63,34,108,101,102,116,34,58,34,116,111,112,34,44,100,61,108,63,34,98,111,116,116,111,109,34,58,34,114,105,103,104,116,34,44,112,61,90,116,40,105,41,91,99,93,59,97,91,100,93,45,112,60,115,91,117,93,38,38,40,116,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,91,117,93,45,61,115,91,117,93,45,40,97,91,100,93,45,112,41,41,44,97,91,117,93,43,112,62,115,91,100,93,38,38,40,116,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,91,117,93,43,61,97,91,117,93,43,112,45,115,91,100,93,41,44,116,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,61,86,116,40,116,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,41,59,118,97,114,32,109,61,97,91,117,93,43,97,91,99,93,47,50,45,112,47,50,44,103,61,78,116,40,116,46,105,110,115,116,97,110,99,101,46,112,111,112,112,101,114,41,44,95,61,112,97,114,115,101,70,108,111,97,116,40,103,91,34,109,97,114,103,105,110,34,43,104,93,44,49,48,41,44,118,61,112,97,114,115,101,70,108,111,97,116,40,103,91,34,98,111,114,100,101,114,34,43,104,43,34,87,105,100,116,104,34,93,44,49,48,41,44,121,61,109,45,116,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,91,117,93,45,95,45,118,59,114,101,116,117,114,110,32,121,61,77,97,116,104,46,109,97,120,40,77,97,116,104,46,109,105,110,40,115,91,99,93,45,112,44,121,41,44,48,41,44,116,46,97,114,114,111,119,69,108,101,109,101,110,116,61,105,44,116,46,111,102,102,115,101,116,115,46,97,114,114,111,119,61,40,75,116,40,110,61,123,125,44,117,44,77,97,116,104,46,114,111,117,110,100,40,121,41,41,44,75,116,40,110,44,102,44,34,34,41,44,110,41,44,116,125,44,101,108,101,109,101,110,116,58,34,91,120,45,97,114,114,111,119,93,34,125,44,102,108,105,112,58,123,111,114,100,101,114,58,54,48,48,44,101,110,97,98,108,101,100,58,33,48,44,102,110,58,102,117,110,99,116,105,111,110,40,112,44,109,41,123,105,102,40,111,101,40,112,46,105,110,115,116,97,110,99,101,46,109,111,100,105,102,105,101,114,115,44,34,105,110,110,101,114,34,41,41,114,101,116,117,114,110,32,112,59,105,102,40,112,46,102,108,105,112,112,101,100,38,38,112,46,112,108,97,99,101,109,101,110,116,61,61,61,112,46,111,114,105,103,105,110,97,108,80,108,97,99,101,109,101,110,116,41,114,101,116,117,114,110,32,112,59,118,97,114,32,103,61,71,116,40,112,46,105,110,115,116,97,110,99,101,46,112,111,112,112,101,114,44,112,46,105,110,115,116,97,110,99,101,46,114,101,102,101,114,101,110,99,101,44,109,46,112,97,100,100,105,110,103,44,109,46,98,111,117,110,100,97,114,105,101,115,69,108,101,109,101,110,116,44,112,46,112,111,115,105,116,105,111,110,70,105,120,101,100,41,44,95,61,112,46,112,108,97,99,101,109,101,110,116,46,115,112,108,105,116,40,34,45,34,41,91,48,93,44,118,61,116,101,40,95,41,44,121,61,112,46,112,108,97,99,101,109,101,110,116,46,115,112,108,105,116,40,34,45,34,41,91,49,93,124,124,34,34,44,69,61,91,93,59,115,119,105,116,99,104,40,109,46,98,101,104,97,118,105,111,114,41,123,99,97,115,101,32,103,101,58,69,61,91,95,44,118,93,59,98,114,101,97,107,59,99,97,115,101,32,95,101,58,69,61,109,101,40,95,41,59,98,114,101,97,107,59,99,97,115,101,32,118,101,58,69,61,109,101,40,95,44,33,48,41,59,98,114,101,97,107,59,100,101,102,97,117,108,116,58,69,61,109,46,98,101,104,97,118,105,111,114,125,114,101,116,117,114,110,32,69,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,105,102,40,95,33,61,61,116,124,124,69,46,108,101,110,103,116,104,61,61,61,101,43,49,41,114,101,116,117,114,110,32,112,59,95,61,112,46,112,108,97,99,101,109,101,110,116,46,115,112,108,105,116,40,34,45,34,41,91,48,93,44,118,61,116,101,40,95,41,59,118,97,114,32,110,44,105,61,112,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,44,111,61,112,46,111,102,102,115,101,116,115,46,114,101,102,101,114,101,110,99,101,44,114,61,77,97,116,104,46,102,108,111,111,114,44,115,61,34,108,101,102,116,34,61,61,61,95,38,38,114,40,105,46,114,105,103,104,116,41,62,114,40,111,46,108,101,102,116,41,124,124,34,114,105,103,104,116,34,61,61,61,95,38,38,114,40,105,46,108,101,102,116,41,60,114,40,111,46,114,105,103,104,116,41,124,124,34,116,111,112,34,61,61,61,95,38,38,114,40,105,46,98,111,116,116,111,109,41,62,114,40,111,46,116,111,112,41,124,124,34,98,111,116,116,111,109,34,61,61,61,95,38,38,114,40,105,46,116,111,112,41,60,114,40,111,46,98,111,116,116,111,109,41,44,97,61,114,40,105,46,108,101,102,116,41,60,114,40,103,46,108,101,102,116,41,44,108,61,114,40,105,46,114,105,103,104,116,41,62,114,40,103,46,114,105,103,104,116,41,44,99,61,114,40,105,46,116,111,112,41,60,114,40,103,46,116,111,112,41,44,104,61,114,40,105,46,98,111,116,116,111,109,41,62,114,40,103,46,98,111,116,116,111,109,41,44,117,61,34,108,101,102,116,34,61,61,61,95,38,38,97,124,124,34,114,105,103,104,116,34,61,61,61,95,38,38,108,124,124,34,116,111,112,34,61,61,61,95,38,38,99,124,124,34,98,111,116,116,111,109,34,61,61,61,95,38,38,104,44,102,61,45,49,33,61,61,91,34,116,111,112,34,44,34,98,111,116,116,111,109,34,93,46,105,110,100,101,120,79,102,40,95,41,44,100,61,33,33,109,46,102,108,105,112,86,97,114,105,97,116,105,111,110,115,38,38,40,102,38,38,34,115,116,97,114,116,34,61,61,61,121,38,38,97,124,124,102,38,38,34,101,110,100,34,61,61,61,121,38,38,108,124,124,33,102,38,38,34,115,116,97,114,116,34,61,61,61,121,38,38,99,124,124,33,102,38,38,34,101,110,100,34,61,61,61,121,38,38,104,41,59,40,115,124,124,117,124,124,100,41,38,38,40,112,46,102,108,105,112,112,101,100,61,33,48,44,40,115,124,124,117,41,38,38,40,95,61,69,91,101,43,49,93,41,44,100,38,38,40,121,61,34,101,110,100,34,61,61,61,40,110,61,121,41,63,34,115,116,97,114,116,34,58,34,115,116,97,114,116,34,61,61,61,110,63,34,101,110,100,34,58,110,41,44,112,46,112,108,97,99,101,109,101,110,116,61,95,43,40,121,63,34,45,34,43,121,58,34,34,41,44,112,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,61,81,116,40,123,125,44,112,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,44,101,101,40,112,46,105,110,115,116,97,110,99,101,46,112,111,112,112,101,114,44,112,46,111,102,102,115,101,116,115,46,114,101,102,101,114,101,110,99,101,44,112,46,112,108,97,99,101,109,101,110,116,41,41,44,112,61,105,101,40,112,46,105,110,115,116,97,110,99,101,46,109,111,100,105,102,105,101,114,115,44,112,44,34,102,108,105,112,34,41,41,125,41,44,112,125,44,98,101,104,97,118,105,111,114,58,34,102,108,105,112,34,44,112,97,100,100,105,110,103,58,53,44,98,111,117,110,100,97,114,105,101,115,69,108,101,109,101,110,116,58,34,118,105,101,119,112,111,114,116,34,125,44,105,110,110,101,114,58,123,111,114,100,101,114,58,55,48,48,44,101,110,97,98,108,101,100,58,33,49,44,102,110,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,46,112,108,97,99,101,109,101,110,116,44,110,61,101,46,115,112,108,105,116,40,34,45,34,41,91,48,93,44,105,61,116,46,111,102,102,115,101,116,115,44,111,61,105,46,112,111,112,112,101,114,44,114,61,105,46,114,101,102,101,114,101,110,99,101,44,115,61,45,49,33,61,61,91,34,108,101,102,116,34,44,34,114,105,103,104,116,34,93,46,105,110,100,101,120,79,102,40,110,41,44,97,61,45,49,61,61,61,91,34,116,111,112,34,44,34,108,101,102,116,34,93,46,105,110,100,101,120,79,102,40,110,41,59,114,101,116,117,114,110,32,111,91,115,63,34,108,101,102,116,34,58,34,116,111,112,34,93,61,114,91,110,93,45,40,97,63,111,91,115,63,34,119,105,100,116,104,34,58,34,104,101,105,103,104,116,34,93,58,48,41,44,116,46,112,108,97,99,101,109,101,110,116,61,116,101,40,101,41,44,116,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,61,86,116,40,111,41,44,116,125,125,44,104,105,100,101,58,123,111,114,100,101,114,58,56,48,48,44,101,110,97,98,108,101,100,58,33,48,44,102,110,58,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,33,102,101,40,116,46,105,110,115,116,97,110,99,101,46,109,111,100,105,102,105,101,114,115,44,34,104,105,100,101,34,44,34,112,114,101,118,101,110,116,79,118,101,114,102,108,111,119,34,41,41,114,101,116,117,114,110,32,116,59,118,97,114,32,101,61,116,46,111,102,102,115,101,116,115,46,114,101,102,101,114,101,110,99,101,44,110,61,110,101,40,116,46,105,110,115,116,97,110,99,101,46,109,111,100,105,102,105,101,114,115,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,34,112,114,101,118,101,110,116,79,118,101,114,102,108,111,119,34,61,61,61,116,46,110,97,109,101,125,41,46,98,111,117,110,100,97,114,105,101,115,59,105,102,40,101,46,98,111,116,116,111,109,60,110,46,116,111,112,124,124,101,46,108,101,102,116,62,110,46,114,105,103,104,116,124,124,101,46,116,111,112,62,110,46,98,111,116,116,111,109,124,124,101,46,114,105,103,104,116,60,110,46,108,101,102,116,41,123,105,102,40,33,48,61,61,61,116,46,104,105,100,101,41,114,101,116,117,114,110,32,116,59,116,46,104,105,100,101,61,33,48,44,116,46,97,116,116,114,105,98,117,116,101,115,91,34,120,45,111,117,116,45,111,102,45,98,111,117,110,100,97,114,105,101,115,34,93,61,34,34,125,101,108,115,101,123,105,102,40,33,49,61,61,61,116,46,104,105,100,101,41,114,101,116,117,114,110,32,116,59,116,46,104,105,100,101,61,33,49,44,116,46,97,116,116,114,105,98,117,116,101,115,91,34,120,45,111,117,116,45,111,102,45,98,111,117,110,100,97,114,105,101,115,34,93,61,33,49,125,114,101,116,117,114,110,32,116,125,125,44,99,111,109,112,117,116,101,83,116,121,108,101,58,123,111,114,100,101,114,58,56,53,48,44,101,110,97,98,108,101,100,58,33,48,44,102,110,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,101,46,120,44,105,61,101,46,121,44,111,61,116,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,44,114,61,110,101,40,116,46,105,110,115,116,97,110,99,101,46,109,111,100,105,102,105,101,114,115,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,34,97,112,112,108,121,83,116,121,108,101,34,61,61,61,116,46,110,97,109,101,125,41,46,103,112,117,65,99,99,101,108,101,114,97,116,105,111,110,59,118,111,105,100,32,48,33,61,61,114,38,38,99,111,110,115,111,108,101,46,119,97,114,110,40,34,87,65,82,78,73,78,71,58,32,96,103,112,117,65,99,99,101,108,101,114,97,116,105,111,110,96,32,111,112,116,105,111,110,32,109,111,118,101,100,32,116,111,32,96,99,111,109,112,117,116,101,83,116,121,108,101,96,32,109,111,100,105,102,105,101,114,32,97,110,100,32,119,105,108,108,32,110,111,116,32,98,101,32,115,117,112,112,111,114,116,101,100,32,105,110,32,102,117,116,117,114,101,32,118,101,114,115,105,111,110,115,32,111,102,32,80,111,112,112,101,114,46,106,115,33,34,41,59,118,97,114,32,115,44,97,44,108,44,99,44,104,44,117,44,102,44,100,44,112,44,109,44,103,44,95,44,118,44,121,44,69,61,118,111,105,100,32,48,33,61,61,114,63,114,58,101,46,103,112,117,65,99,99,101,108,101,114,97,116,105,111,110,44,98,61,106,116,40,116,46,105,110,115,116,97,110,99,101,46,112,111,112,112,101,114,41,44,119,61,89,116,40,98,41,44,67,61,123,112,111,115,105,116,105,111,110,58,111,46,112,111,115,105,116,105,111,110,125,44,84,61,40,115,61,116,44,97,61,119,105,110,100,111,119,46,100,101,118,105,99,101,80,105,120,101,108,82,97,116,105,111,60,50,124,124,33,117,101,44,108,61,115,46,111,102,102,115,101,116,115,44,99,61,108,46,112,111,112,112,101,114,44,104,61,108,46,114,101,102,101,114,101,110,99,101,44,117,61,77,97,116,104,46,114,111,117,110,100,44,102,61,77,97,116,104,46,102,108,111,111,114,44,100,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,125,44,112,61,117,40,104,46,119,105,100,116,104,41,44,109,61,117,40,99,46,119,105,100,116,104,41,44,103,61,45,49,33,61,61,91,34,108,101,102,116,34,44,34,114,105,103,104,116,34,93,46,105,110,100,101,120,79,102,40,115,46,112,108,97,99,101,109,101,110,116,41,44,95,61,45,49,33,61,61,115,46,112,108,97,99,101,109,101,110,116,46,105,110,100,101,120,79,102,40,34,45,34,41,44,121,61,97,63,117,58,100,44,123,108,101,102,116,58,40,118,61,97,63,103,124,124,95,124,124,112,37,50,61,61,109,37,50,63,117,58,102,58,100,41,40,112,37,50,61,61,49,38,38,109,37,50,61,61,49,38,38,33,95,38,38,97,63,99,46,108,101,102,116,45,49,58,99,46,108,101,102,116,41,44,116,111,112,58,121,40,99,46,116,111,112,41,44,98,111,116,116,111,109,58,121,40,99,46,98,111,116,116,111,109,41,44,114,105,103,104,116,58,118,40,99,46,114,105,103,104,116,41,125,41,44,83,61,34,98,111,116,116,111,109,34,61,61,61,110,63,34,116,111,112,34,58,34,98,111,116,116,111,109,34,44,68,61,34,114,105,103,104,116,34,61,61,61,105,63,34,108,101,102,116,34,58,34,114,105,103,104,116,34,44,73,61,114,101,40,34,116,114,97,110,115,102,111,114,109,34,41,44,65,61,118,111,105,100,32,48,44,79,61,118,111,105,100,32,48,59,105,102,40,79,61,34,98,111,116,116,111,109,34,61,61,61,83,63,34,72,84,77,76,34,61,61,61,98,46,110,111,100,101,78,97,109,101,63,45,98,46,99,108,105,101,110,116,72,101,105,103,104,116,43,84,46,98,111,116,116,111,109,58,45,119,46,104,101,105,103,104,116,43,84,46,98,111,116,116,111,109,58,84,46,116,111,112,44,65,61,34,114,105,103,104,116,34,61,61,61,68,63,34,72,84,77,76,34,61,61,61,98,46,110,111,100,101,78,97,109,101,63,45,98,46,99,108,105,101,110,116,87,105,100,116,104,43,84,46,114,105,103,104,116,58,45,119,46,119,105,100,116,104,43,84,46,114,105,103,104,116,58,84,46,108,101,102,116,44,69,38,38,73,41,67,91,73,93,61,34,116,114,97,110,115,108,97,116,101,51,100,40,34,43,65,43,34,112,120,44,32,34,43,79,43,34,112,120,44,32,48,41,34,44,67,91,83,93,61,48,44,67,91,68,93,61,48,44,67,46,119,105,108,108,67,104,97,110,103,101,61,34,116,114,97,110,115,102,111,114,109,34,59,101,108,115,101,123,118,97,114,32,78,61,34,98,111,116,116,111,109,34,61,61,61,83,63,45,49,58,49,44,107,61,34,114,105,103,104,116,34,61,61,61,68,63,45,49,58,49,59,67,91,83,93,61,79,42,78,44,67,91,68,93,61,65,42,107,44,67,46,119,105,108,108,67,104,97,110,103,101,61,83,43,34,44,32,34,43,68,125,118,97,114,32,76,61,123,34,120,45,112,108,97,99,101,109,101,110,116,34,58,116,46,112,108,97,99,101,109,101,110,116,125,59,114,101,116,117,114,110,32,116,46,97,116,116,114,105,98,117,116,101,115,61,81,116,40,123,125,44,76,44,116,46,97,116,116,114,105,98,117,116,101,115,41,44,116,46,115,116,121,108,101,115,61,81,116,40,123,125,44,67,44,116,46,115,116,121,108,101,115,41,44,116,46,97,114,114,111,119,83,116,121,108,101,115,61,81,116,40,123,125,44,116,46,111,102,102,115,101,116,115,46,97,114,114,111,119,44,116,46,97,114,114,111,119,83,116,121,108,101,115,41,44,116,125,44,103,112,117,65,99,99,101,108,101,114,97,116,105,111,110,58,33,48,44,120,58,34,98,111,116,116,111,109,34,44,121,58,34,114,105,103,104,116,34,125,44,97,112,112,108,121,83,116,121,108,101,58,123,111,114,100,101,114,58,57,48,48,44,101,110,97,98,108,101,100,58,33,48,44,102,110,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,44,110,59,114,101,116,117,114,110,32,104,101,40,116,46,105,110,115,116,97,110,99,101,46,112,111,112,112,101,114,44,116,46,115,116,121,108,101,115,41,44,101,61,116,46,105,110,115,116,97,110,99,101,46,112,111,112,112,101,114,44,110,61,116,46,97,116,116,114,105,98,117,116,101,115,44,79,98,106,101,99,116,46,107,101,121,115,40,110,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,116,41,123,33,49,33,61,61,110,91,116,93,63,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,116,44,110,91,116,93,41,58,101,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,40,116,41,125,41,44,116,46,97,114,114,111,119,69,108,101,109,101,110,116,38,38,79,98,106,101,99,116,46,107,101,121,115,40,116,46,97,114,114,111,119,83,116,121,108,101,115,41,46,108,101,110,103,116,104,38,38,104,101,40,116,46,97,114,114,111,119,69,108,101,109,101,110,116,44,116,46,97,114,114,111,119,83,116,121,108,101,115,41,44,116,125,44,111,110,76,111,97,100,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,44,105,44,111,41,123,118,97,114,32,114,61,74,116,40,111,44,101,44,116,44,110,46,112,111,115,105,116,105,111,110,70,105,120,101,100,41,44,115,61,36,116,40,110,46,112,108,97,99,101,109,101,110,116,44,114,44,101,44,116,44,110,46,109,111,100,105,102,105,101,114,115,46,102,108,105,112,46,98,111,117,110,100,97,114,105,101,115,69,108,101,109,101,110,116,44,110,46,109,111,100,105,102,105,101,114,115,46,102,108,105,112,46,112,97,100,100,105,110,103,41,59,114,101,116,117,114,110,32,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,120,45,112,108,97,99,101,109,101,110,116,34,44,115,41,44,104,101,40,101,44,123,112,111,115,105,116,105,111,110,58,110,46,112,111,115,105,116,105,111,110,70,105,120,101,100,63,34,102,105,120,101,100,34,58,34,97,98,115,111,108,117,116,101,34,125,41,44,110,125,44,103,112,117,65,99,99,101,108,101,114,97,116,105,111,110,58,118,111,105,100,32,48,125,125,125,44,98,101,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,114,40,116,44,101,41,123,118,97,114,32,110,61,116,104,105,115,44,105,61,50,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,38,38,118,111,105,100,32,48,33,61,61,97,114,103,117,109,101,110,116,115,91,50,93,63,97,114,103,117,109,101,110,116,115,91,50,93,58,123,125,59,33,102,117,110,99,116,105,111,110,40,116,44,101,41,123,105,102,40,33,40,116,32,105,110,115,116,97,110,99,101,111,102,32,101,41,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,67,97,110,110,111,116,32,99,97,108,108,32,97,32,99,108,97,115,115,32,97,115,32,97,32,102,117,110,99,116,105,111,110,34,41,125,40,116,104,105,115,44,114,41,44,116,104,105,115,46,115,99,104,101,100,117,108,101,85,112,100,97,116,101,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,114,101,113,117,101,115,116,65,110,105,109,97,116,105,111,110,70,114,97,109,101,40,110,46,117,112,100,97,116,101,41,125,44,116,104,105,115,46,117,112,100,97,116,101,61,65,116,40,116,104,105,115,46,117,112,100,97,116,101,46,98,105,110,100,40,116,104,105,115,41,41,44,116,104,105,115,46,111,112,116,105,111,110,115,61,81,116,40,123,125,44,114,46,68,101,102,97,117,108,116,115,44,105,41,44,116,104,105,115,46,115,116,97,116,101,61,123,105,115,68,101,115,116,114,111,121,101,100,58,33,49,44,105,115,67,114,101,97,116,101,100,58,33,49,44,115,99,114,111,108,108,80,97,114,101,110,116,115,58,91,93,125,44,116,104,105,115,46,114,101,102,101,114,101,110,99,101,61,116,38,38,116,46,106,113,117,101,114,121,63,116,91,48,93,58,116,44,116,104,105,115,46,112,111,112,112,101,114,61,101,38,38,101,46,106,113,117,101,114,121,63,101,91,48,93,58,101,44,116,104,105,115,46,111,112,116,105,111,110,115,46,109,111,100,105,102,105,101,114,115,61,123,125,44,79,98,106,101,99,116,46,107,101,121,115,40,81,116,40,123,125,44,114,46,68,101,102,97,117,108,116,115,46,109,111,100,105,102,105,101,114,115,44,105,46,109,111,100,105,102,105,101,114,115,41,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,116,41,123,110,46,111,112,116,105,111,110,115,46,109,111,100,105,102,105,101,114,115,91,116,93,61,81,116,40,123,125,44,114,46,68,101,102,97,117,108,116,115,46,109,111,100,105,102,105,101,114,115,91,116,93,124,124,123,125,44,105,46,109,111,100,105,102,105,101,114,115,63,105,46,109,111,100,105,102,105,101,114,115,91,116,93,58,123,125,41,125,41,44,116,104,105,115,46,109,111,100,105,102,105,101,114,115,61,79,98,106,101,99,116,46,107,101,121,115,40,116,104,105,115,46,111,112,116,105,111,110,115,46,109,111,100,105,102,105,101,114,115,41,46,109,97,112,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,81,116,40,123,110,97,109,101,58,116,125,44,110,46,111,112,116,105,111,110,115,46,109,111,100,105,102,105,101,114,115,91,116,93,41,125,41,46,115,111,114,116,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,116,46,111,114,100,101,114,45,101,46,111,114,100,101,114,125,41,44,116,104,105,115,46,109,111,100,105,102,105,101,114,115,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,116,41,123,116,46,101,110,97,98,108,101,100,38,38,79,116,40,116,46,111,110,76,111,97,100,41,38,38,116,46,111,110,76,111,97,100,40,110,46,114,101,102,101,114,101,110,99,101,44,110,46,112,111,112,112,101,114,44,110,46,111,112,116,105,111,110,115,44,116,44,110,46,115,116,97,116,101,41,125,41,44,116,104,105,115,46,117,112,100,97,116,101,40,41,59,118,97,114,32,111,61,116,104,105,115,46,111,112,116,105,111,110,115,46,101,118,101,110,116,115,69,110,97,98,108,101,100,59,111,38,38,116,104,105,115,46,101,110,97,98,108,101,69,118,101,110,116,76,105,115,116,101,110,101,114,115,40,41,44,116,104,105,115,46,115,116,97,116,101,46,101,118,101,110,116,115,69,110,97,98,108,101,100,61,111,125,114,101,116,117,114,110,32,113,116,40,114,44,91,123,107,101,121,58,34,117,112,100,97,116,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,105,102,40,33,116,104,105,115,46,115,116,97,116,101,46,105,115,68,101,115,116,114,111,121,101,100,41,123,118,97,114,32,116,61,123,105,110,115,116,97,110,99,101,58,116,104,105,115,44,115,116,121,108,101,115,58,123,125,44,97,114,114,111,119,83,116,121,108,101,115,58,123,125,44,97,116,116,114,105,98,117,116,101,115,58,123,125,44,102,108,105,112,112,101,100,58,33,49,44,111,102,102,115,101,116,115,58,123,125,125,59,116,46,111,102,102,115,101,116,115,46,114,101,102,101,114,101,110,99,101,61,74,116,40,116,104,105,115,46,115,116,97,116,101,44,116,104,105,115,46,112,111,112,112,101,114,44,116,104,105,115,46,114,101,102,101,114,101,110,99,101,44,116,104,105,115,46,111,112,116,105,111,110,115,46,112,111,115,105,116,105,111,110,70,105,120,101,100,41,44,116,46,112,108,97,99,101,109,101,110,116,61,36,116,40,116,104,105,115,46,111,112,116,105,111,110,115,46,112,108,97,99,101,109,101,110,116,44,116,46,111,102,102,115,101,116,115,46,114,101,102,101,114,101,110,99,101,44,116,104,105,115,46,112,111,112,112,101,114,44,116,104,105,115,46,114,101,102,101,114,101,110,99,101,44,116,104,105,115,46,111,112,116,105,111,110,115,46,109,111,100,105,102,105,101,114,115,46,102,108,105,112,46,98,111,117,110,100,97,114,105,101,115,69,108,101,109,101,110,116,44,116,104,105,115,46,111,112,116,105,111,110,115,46,109,111,100,105,102,105,101,114,115,46,102,108,105,112,46,112,97,100,100,105,110,103,41,44,116,46,111,114,105,103,105,110,97,108,80,108,97,99,101,109,101,110,116,61,116,46,112,108,97,99,101,109,101,110,116,44,116,46,112,111,115,105,116,105,111,110,70,105,120,101,100,61,116,104,105,115,46,111,112,116,105,111,110,115,46,112,111,115,105,116,105,111,110,70,105,120,101,100,44,116,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,61,101,101,40,116,104,105,115,46,112,111,112,112,101,114,44,116,46,111,102,102,115,101,116,115,46,114,101,102,101,114,101,110,99,101,44,116,46,112,108,97,99,101,109,101,110,116,41,44,116,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,46,112,111,115,105,116,105,111,110,61,116,104,105,115,46,111,112,116,105,111,110,115,46,112,111,115,105,116,105,111,110,70,105,120,101,100,63,34,102,105,120,101,100,34,58,34,97,98,115,111,108,117,116,101,34,44,116,61,105,101,40,116,104,105,115,46,109,111,100,105,102,105,101,114,115,44,116,41,44,116,104,105,115,46,115,116,97,116,101,46,105,115,67,114,101,97,116,101,100,63,116,104,105,115,46,111,112,116,105,111,110,115,46,111,110,85,112,100,97,116,101,40,116,41,58,40,116,104,105,115,46,115,116,97,116,101,46,105,115,67,114,101,97,116,101,100,61,33,48,44,116,104,105,115,46,111,112,116,105,111,110,115,46,111,110,67,114,101,97,116,101,40,116,41,41,125,125,46,99,97,108,108,40,116,104,105,115,41,125,125,44,123,107,101,121,58,34,100,101,115,116,114,111,121,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,115,116,97,116,101,46,105,115,68,101,115,116,114,111,121,101,100,61,33,48,44,111,101,40,116,104,105,115,46,109,111,100,105,102,105,101,114,115,44,34,97,112,112,108,121,83,116,121,108,101,34,41,38,38,40,116,104,105,115,46,112,111,112,112,101,114,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,40,34,120,45,112,108,97,99,101,109,101,110,116,34,41,44,116,104,105,115,46,112,111,112,112,101,114,46,115,116,121,108,101,46,112,111,115,105,116,105,111,110,61,34,34,44,116,104,105,115,46,112,111,112,112,101,114,46,115,116,121,108,101,46,116,111,112,61,34,34,44,116,104,105,115,46,112,111,112,112,101,114,46,115,116,121,108,101,46,108,101,102,116,61,34,34,44,116,104,105,115,46,112,111,112,112,101,114,46,115,116,121,108,101,46,114,105,103,104,116,61,34,34,44,116,104,105,115,46,112,111,112,112,101,114,46,115,116,121,108,101,46,98,111,116,116,111,109,61,34,34,44,116,104,105,115,46,112,111,112,112,101,114,46,115,116,121,108,101,46,119,105,108,108,67,104,97,110,103,101,61,34,34,44,116,104,105,115,46,112,111,112,112,101,114,46,115,116,121,108,101,91,114,101,40,34,116,114,97,110,115,102,111,114,109,34,41,93,61,34,34,41,44,116,104,105,115,46,100,105,115,97,98,108,101,69,118,101,110,116,76,105,115,116,101,110,101,114,115,40,41,44,116,104,105,115,46,111,112,116,105,111,110,115,46,114,101,109,111,118,101,79,110,68,101,115,116,114,111,121,38,38,116,104,105,115,46,112,111,112,112,101,114,46,112,97,114,101,110,116,78,111,100,101,46,114,101,109,111,118,101,67,104,105,108,100,40,116,104,105,115,46,112,111,112,112,101,114,41,44,116,104,105,115,125,46,99,97,108,108,40,116,104,105,115,41,125,125,44,123,107,101,121,58,34,101,110,97,98,108,101,69,118,101,110,116,76,105,115,116,101,110,101,114,115,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,115,116,97,116,101,46,101,118,101,110,116,115,69,110,97,98,108,101,100,124,124,40,116,104,105,115,46,115,116,97,116,101,61,97,101,40,116,104,105,115,46,114,101,102,101,114,101,110,99,101,44,116,104,105,115,46,111,112,116,105,111,110,115,44,116,104,105,115,46,115,116,97,116,101,44,116,104,105,115,46,115,99,104,101,100,117,108,101,85,112,100,97,116,101,41,41,125,46,99,97,108,108,40,116,104,105,115,41,125,125,44,123,107,101,121,58,34,100,105,115,97,98,108,101,69,118,101,110,116,76,105,115,116,101,110,101,114,115,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,108,101,46,99,97,108,108,40,116,104,105,115,41,125,125,93,41,44,114,125,40,41,59,98,101,46,85,116,105,108,115,61,40,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,119,105,110,100,111,119,63,119,105,110,100,111,119,58,103,108,111,98,97,108,41,46,80,111,112,112,101,114,85,116,105,108,115,44,98,101,46,112,108,97,99,101,109,101,110,116,115,61,100,101,44,98,101,46,68,101,102,97,117,108,116,115,61,69,101,59,118,97,114,32,119,101,61,34,100,114,111,112,100,111,119,110,34,44,67,101,61,34,98,115,46,100,114,111,112,100,111,119,110,34,44,84,101,61,34,46,34,43,67,101,44,83,101,61,34,46,100,97,116,97,45,97,112,105,34,44,68,101,61,112,46,102,110,91,119,101,93,44,73,101,61,110,101,119,32,82,101,103,69,120,112,40,34,51,56,124,52,48,124,50,55,34,41,44,65,101,61,123,72,73,68,69,58,34,104,105,100,101,34,43,84,101,44,72,73,68,68,69,78,58,34,104,105,100,100,101,110,34,43,84,101,44,83,72,79,87,58,34,115,104,111,119,34,43,84,101,44,83,72,79,87,78,58,34,115,104,111,119,110,34,43,84,101,44,67,76,73,67,75,58,34,99,108,105,99,107,34,43,84,101,44,67,76,73,67,75,95,68,65,84,65,95,65,80,73,58,34,99,108,105,99,107,34,43,84,101,43,83,101,44,75,69,89,68,79,87,78,95,68,65,84,65,95,65,80,73,58,34,107,101,121,100,111,119,110,34,43,84,101,43,83,101,44,75,69,89,85,80,95,68,65,84,65,95,65,80,73,58,34,107,101,121,117,112,34,43,84,101,43,83,101,125,44,79,101,61,34,100,105,115,97,98,108,101,100,34,44,78,101,61,34,115,104,111,119,34,44,107,101,61,34,100,114,111,112,117,112,34,44,76,101,61,34,100,114,111,112,114,105,103,104,116,34,44,120,101,61,34,100,114,111,112,108,101,102,116,34,44,80,101,61,34,100,114,111,112,100,111,119,110,45,109,101,110,117,45,114,105,103,104,116,34,44,72,101,61,34,112,111,115,105,116,105,111,110,45,115,116,97,116,105,99,34,44,106,101,61,39,91,100,97,116,97,45,116,111,103,103,108,101,61,34,100,114,111,112,100,111,119,110,34,93,39,44,82,101,61,34,46,100,114,111,112,100,111,119,110,32,102,111,114,109,34,44,70,101,61,34,46,100,114,111,112,100,111,119,110,45,109,101,110,117,34,44,77,101,61,34,46,110,97,118,98,97,114,45,110,97,118,34,44,87,101,61,34,46,100,114,111,112,100,111,119,110,45,109,101,110,117,32,46,100,114,111,112,100,111,119,110,45,105,116,101,109,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,34,44,85,101,61,34,116,111,112,45,115,116,97,114,116,34,44,66,101,61,34,116,111,112,45,101,110,100,34,44,113,101,61,34,98,111,116,116,111,109,45,115,116,97,114,116,34,44,75,101,61,34,98,111,116,116,111,109,45,101,110,100,34,44,81,101,61,34,114,105,103,104,116,45,115,116,97,114,116,34,44,86,101,61,34,108,101,102,116,45,115,116,97,114,116,34,44,89,101,61,123,111,102,102,115,101,116,58,48,44,102,108,105,112,58,33,48,44,98,111,117,110,100,97,114,121,58,34,115,99,114,111,108,108,80,97,114,101,110,116,34,44,114,101,102,101,114,101,110,99,101,58,34,116,111,103,103,108,101,34,44,100,105,115,112,108,97,121,58,34,100,121,110,97,109,105,99,34,125,44,122,101,61,123,111,102,102,115,101,116,58,34,40,110,117,109,98,101,114,124,115,116,114,105,110,103,124,102,117,110,99,116,105,111,110,41,34,44,102,108,105,112,58,34,98,111,111,108,101,97,110,34,44,98,111,117,110,100,97,114,121,58,34,40,115,116,114,105,110,103,124,101,108,101,109,101,110,116,41,34,44,114,101,102,101,114,101,110,99,101,58,34,40,115,116,114,105,110,103,124,101,108,101,109,101,110,116,41,34,44,100,105,115,112,108,97,121,58,34,115,116,114,105,110,103,34,125,44,88,101,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,99,40,116,44,101,41,123,116,104,105,115,46,95,101,108,101,109,101,110,116,61,116,44,116,104,105,115,46,95,112,111,112,112,101,114,61,110,117,108,108,44,116,104,105,115,46,95,99,111,110,102,105,103,61,116,104,105,115,46,95,103,101,116,67,111,110,102,105,103,40,101,41,44,116,104,105,115,46,95,109,101,110,117,61,116,104,105,115,46,95,103,101,116,77,101,110,117,69,108,101,109,101,110,116,40,41,44,116,104,105,115,46,95,105,110,78,97,118,98,97,114,61,116,104,105,115,46,95,100,101,116,101,99,116,78,97,118,98,97,114,40,41,44,116,104,105,115,46,95,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,115,40,41,125,118,97,114,32,116,61,99,46,112,114,111,116,111,116,121,112,101,59,114,101,116,117,114,110,32,116,46,116,111,103,103,108,101,61,102,117,110,99,116,105,111,110,40,41,123,105,102,40,33,116,104,105,115,46,95,101,108,101,109,101,110,116,46,100,105,115,97,98,108,101,100,38,38,33,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,104,97,115,67,108,97,115,115,40,79,101,41,41,123,118,97,114,32,116,61,99,46,95,103,101,116,80,97,114,101,110,116,70,114,111,109,69,108,101,109,101,110,116,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,44,101,61,112,40,116,104,105,115,46,95,109,101,110,117,41,46,104,97,115,67,108,97,115,115,40,78,101,41,59,105,102,40,99,46,95,99,108,101,97,114,77,101,110,117,115,40,41,44,33,101,41,123,118,97,114,32,110,61,123,114,101,108,97,116,101,100,84,97,114,103,101,116,58,116,104,105,115,46,95,101,108,101,109,101,110,116,125,44,105,61,112,46,69,118,101,110,116,40,65,101,46,83,72,79,87,44,110,41,59,105,102,40,112,40,116,41,46,116,114,105,103,103,101,114,40,105,41,44,33,105,46,105,115,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,40,41,41,123,105,102,40,33,116,104,105,115,46,95,105,110,78,97,118,98,97,114,41,123,105,102,40,34,117,110,100,101,102,105,110,101,100,34,61,61,116,121,112,101,111,102,32,98,101,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,66,111,111,116,115,116,114,97,112,39,115,32,100,114,111,112,100,111,119,110,115,32,114,101,113,117,105,114,101,32,80,111,112,112,101,114,46,106,115,32,40,104,116,116,112,115,58,47,47,112,111,112,112,101,114,46,106,115,46,111,114,103,47,41,34,41,59,118,97,114,32,111,61,116,104,105,115,46,95,101,108,101,109,101,110,116,59,34,112,97,114,101,110,116,34,61,61,61,116,104,105,115,46,95,99,111,110,102,105,103,46,114,101,102,101,114,101,110,99,101,63,111,61,116,58,109,46,105,115,69,108,101,109,101,110,116,40,116,104,105,115,46,95,99,111,110,102,105,103,46,114,101,102,101,114,101,110,99,101,41,38,38,40,111,61,116,104,105,115,46,95,99,111,110,102,105,103,46,114,101,102,101,114,101,110,99,101,44,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,116,104,105,115,46,95,99,111,110,102,105,103,46,114,101,102,101,114,101,110,99,101,46,106,113,117,101,114,121,38,38,40,111,61,116,104,105,115,46,95,99,111,110,102,105,103,46,114,101,102,101,114,101,110,99,101,91,48,93,41,41,44,34,115,99,114,111,108,108,80,97,114,101,110,116,34,33,61,61,116,104,105,115,46,95,99,111,110,102,105,103,46,98,111,117,110,100,97,114,121,38,38,112,40,116,41,46,97,100,100,67,108,97,115,115,40,72,101,41,44,116,104,105,115,46,95,112,111,112,112,101,114,61,110,101,119,32,98,101,40,111,44,116,104,105,115,46,95,109,101,110,117,44,116,104,105,115,46,95,103,101,116,80,111,112,112,101,114,67,111,110,102,105,103,40,41,41,125,34,111,110,116,111,117,99,104,115,116,97,114,116,34,105,110,32,100,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,38,38,48,61,61,61,112,40,116,41,46,99,108,111,115,101,115,116,40,77,101,41,46,108,101,110,103,116,104,38,38,112,40,100,111,99,117,109,101,110,116,46,98,111,100,121,41,46,99,104,105,108,100,114,101,110,40,41,46,111,110,40,34,109,111,117,115,101,111,118,101,114,34,44,110,117,108,108,44,112,46,110,111,111,112,41,44,116,104,105,115,46,95,101,108,101,109,101,110,116,46,102,111,99,117,115,40,41,44,116,104,105,115,46,95,101,108,101,109,101,110,116,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,97,114,105,97,45,101,120,112,97,110,100,101,100,34,44,33,48,41,44,112,40,116,104,105,115,46,95,109,101,110,117,41,46,116,111,103,103,108,101,67,108,97,115,115,40,78,101,41,44,112,40,116,41,46,116,111,103,103,108,101,67,108,97,115,115,40,78,101,41,46,116,114,105,103,103,101,114,40,112,46,69,118,101,110,116,40,65,101,46,83,72,79,87,78,44,110,41,41,125,125,125,125,44,116,46,115,104,111,119,61,102,117,110,99,116,105,111,110,40,41,123,105,102,40,33,40,116,104,105,115,46,95,101,108,101,109,101,110,116,46,100,105,115,97,98,108,101,100,124,124,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,104,97,115,67,108,97,115,115,40,79,101,41,124,124,112,40,116,104,105,115,46,95,109,101,110,117,41,46,104,97,115,67,108,97,115,115,40,78,101,41,41,41,123,118,97,114,32,116,61,123,114,101,108,97,116,101,100,84,97,114,103,101,116,58,116,104,105,115,46,95,101,108,101,109,101,110,116,125,44,101,61,112,46,69,118,101,110,116,40,65,101,46,83,72,79,87,44,116,41,44,110,61,99,46,95,103,101,116,80,97,114,101,110,116,70,114,111,109,69,108,101,109,101,110,116,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,59,112,40,110,41,46,116,114,105,103,103,101,114,40,101,41,44,101,46,105,115,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,40,41,124,124,40,112,40,116,104,105,115,46,95,109,101,110,117,41,46,116,111,103,103,108,101,67,108,97,115,115,40,78,101,41,44,112,40,110,41,46,116,111,103,103,108,101,67,108,97,115,115,40,78,101,41,46,116,114,105,103,103,101,114,40,112,46,69,118,101,110,116,40,65,101,46,83,72,79,87,78,44,116,41,41,41,125,125,44,116,46,104,105,100,101,61,102,117,110,99,116,105,111,110,40,41,123,105,102,40,33,116,104,105,115,46,95,101,108,101,109,101,110,116,46,100,105,115,97,98,108,101,100,38,38,33,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,104,97,115,67,108,97,115,115,40,79,101,41,38,38,112,40,116,104,105,115,46,95,109,101,110,117,41,46,104,97,115,67,108,97,115,115,40,78,101,41,41,123,118,97,114,32,116,61,123,114,101,108,97,116,101,100,84,97,114,103,101,116,58,116,104,105,115,46,95,101,108,101,109,101,110,116,125,44,101,61,112,46,69,118,101,110,116,40,65,101,46,72,73,68,69,44,116,41,44,110,61,99,46,95,103,101,116,80,97,114,101,110,116,70,114,111,109,69,108,101,109,101,110,116,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,59,112,40,110,41,46,116,114,105,103,103,101,114,40,101,41,44,101,46,105,115,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,40,41,124,124,40,112,40,116,104,105,115,46,95,109,101,110,117,41,46,116,111,103,103,108,101,67,108,97,115,115,40,78,101,41,44,112,40,110,41,46,116,111,103,103,108,101,67,108,97,115,115,40,78,101,41,46,116,114,105,103,103,101,114,40,112,46,69,118,101,110,116,40,65,101,46,72,73,68,68,69,78,44,116,41,41,41,125,125,44,116,46,100,105,115,112,111,115,101,61,102,117,110,99,116,105,111,110,40,41,123,112,46,114,101,109,111,118,101,68,97,116,97,40,116,104,105,115,46,95,101,108,101,109,101,110,116,44,67,101,41,44,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,111,102,102,40,84,101,41,44,116,104,105,115,46,95,101,108,101,109,101,110,116,61,110,117,108,108,44,40,116,104,105,115,46,95,109,101,110,117,61,110,117,108,108,41,33,61,61,116,104,105,115,46,95,112,111,112,112,101,114,38,38,40,116,104,105,115,46,95,112,111,112,112,101,114,46,100,101,115,116,114,111,121,40,41,44,116,104,105,115,46,95,112,111,112,112,101,114,61,110,117,108,108,41,125,44,116,46,117,112,100,97,116,101,61,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,105,110,78,97,118,98,97,114,61,116,104,105,115,46,95,100,101,116,101,99,116,78,97,118,98,97,114,40,41,44,110,117,108,108,33,61,61,116,104,105,115,46,95,112,111,112,112,101,114,38,38,116,104,105,115,46,95,112,111,112,112,101,114,46,115,99,104,101,100,117,108,101,85,112,100,97,116,101,40,41,125,44,116,46,95,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,115,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,59,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,111,110,40,65,101,46,67,76,73,67,75,44,102,117,110,99,116,105,111,110,40,116,41,123,116,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,116,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,44,101,46,116,111,103,103,108,101,40,41,125,41,125,44,116,46,95,103,101,116,67,111,110,102,105,103,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,61,108,40,123,125,44,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,46,68,101,102,97,117,108,116,44,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,100,97,116,97,40,41,44,116,41,44,109,46,116,121,112,101,67,104,101,99,107,67,111,110,102,105,103,40,119,101,44,116,44,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,46,68,101,102,97,117,108,116,84,121,112,101,41,44,116,125,44,116,46,95,103,101,116,77,101,110,117,69,108,101,109,101,110,116,61,102,117,110,99,116,105,111,110,40,41,123,105,102,40,33,116,104,105,115,46,95,109,101,110,117,41,123,118,97,114,32,116,61,99,46,95,103,101,116,80,97,114,101,110,116,70,114,111,109,69,108,101,109,101,110,116,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,59,116,38,38,40,116,104,105,115,46,95,109,101,110,117,61,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,70,101,41,41,125,114,101,116,117,114,110,32,116,104,105,115,46,95,109,101,110,117,125,44,116,46,95,103,101,116,80,108,97,99,101,109,101,110,116,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,46,112,97,114,101,110,116,78,111,100,101,41,44,101,61,113,101,59,114,101,116,117,114,110,32,116,46,104,97,115,67,108,97,115,115,40,107,101,41,63,40,101,61,85,101,44,112,40,116,104,105,115,46,95,109,101,110,117,41,46,104,97,115,67,108,97,115,115,40,80,101,41,38,38,40,101,61,66,101,41,41,58,116,46,104,97,115,67,108,97,115,115,40,76,101,41,63,101,61,81,101,58,116,46,104,97,115,67,108,97,115,115,40,120,101,41,63,101,61,86,101,58,112,40,116,104,105,115,46,95,109,101,110,117,41,46,104,97,115,67,108,97,115,115,40,80,101,41,38,38,40,101,61,75,101,41,44,101,125,44,116,46,95,100,101,116,101,99,116,78,97,118,98,97,114,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,48,60,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,99,108,111,115,101,115,116,40,34,46,110,97,118,98,97,114,34,41,46,108,101,110,103,116,104,125,44,116,46,95,103,101,116,79,102,102,115,101,116,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,44,116,61,123,125,59,114,101,116,117,114,110,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,104,105,115,46,95,99,111,110,102,105,103,46,111,102,102,115,101,116,63,116,46,102,110,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,111,102,102,115,101,116,115,61,108,40,123,125,44,116,46,111,102,102,115,101,116,115,44,101,46,95,99,111,110,102,105,103,46,111,102,102,115,101,116,40,116,46,111,102,102,115,101,116,115,44,101,46,95,101,108,101,109,101,110,116,41,124,124,123,125,41,44,116,125,58,116,46,111,102,102,115,101,116,61,116,104,105,115,46,95,99,111,110,102,105,103,46,111,102,102,115,101,116,44,116,125,44,116,46,95,103,101,116,80,111,112,112,101,114,67,111,110,102,105,103,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,123,112,108,97,99,101,109,101,110,116,58,116,104,105,115,46,95,103,101,116,80,108,97,99,101,109,101,110,116,40,41,44,109,111,100,105,102,105,101,114,115,58,123,111,102,102,115,101,116,58,116,104,105,115,46,95,103,101,116,79,102,102,115,101,116,40,41,44,102,108,105,112,58,123,101,110,97,98,108,101,100,58,116,104,105,115,46,95,99,111,110,102,105,103,46,102,108,105,112,125,44,112,114,101,118,101,110,116,79,118,101,114,102,108,111,119,58,123,98,111,117,110,100,97,114,105,101,115,69,108,101,109,101,110,116,58,116,104,105,115,46,95,99,111,110,102,105,103,46,98,111,117,110,100,97,114,121,125,125,125,59,114,101,116,117,114,110,34,115,116,97,116,105,99,34,61,61,61,116,104,105,115,46,95,99,111,110,102,105,103,46,100,105,115,112,108,97,121,38,38,40,116,46,109,111,100,105,102,105,101,114,115,46,97,112,112,108,121,83,116,121,108,101,61,123,101,110,97,98,108,101,100,58,33,49,125,41,44,116,125,44,99,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,112,40,116,104,105,115,41,46,100,97,116,97,40,67,101,41,59,105,102,40,116,124,124,40,116,61,110,101,119,32,99,40,116,104,105,115,44,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,101,63,101,58,110,117,108,108,41,44,112,40,116,104,105,115,41,46,100,97,116,97,40,67,101,44,116,41,41,44,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,101,41,123,105,102,40,34,117,110,100,101,102,105,110,101,100,34,61,61,116,121,112,101,111,102,32,116,91,101,93,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,39,78,111,32,109,101,116,104,111,100,32,110,97,109,101,100,32,34,39,43,101,43,39,34,39,41,59,116,91,101,93,40,41,125,125,41,125,44,99,46,95,99,108,101,97,114,77,101,110,117,115,61,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,33,116,124,124,51,33,61,61,116,46,119,104,105,99,104,38,38,40,34,107,101,121,117,112,34,33,61,61,116,46,116,121,112,101,124,124,57,61,61,61,116,46,119,104,105,99,104,41,41,102,111,114,40,118,97,114,32,101,61,91,93,46,115,108,105,99,101,46,99,97,108,108,40,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,106,101,41,41,44,110,61,48,44,105,61,101,46,108,101,110,103,116,104,59,110,60,105,59,110,43,43,41,123,118,97,114,32,111,61,99,46,95,103,101,116,80,97,114,101,110,116,70,114,111,109,69,108,101,109,101,110,116,40,101,91,110,93,41,44,114,61,112,40,101,91,110,93,41,46,100,97,116,97,40,67,101,41,44,115,61,123,114,101,108,97,116,101,100,84,97,114,103,101,116,58,101,91,110,93,125,59,105,102,40,116,38,38,34,99,108,105,99,107,34,61,61,61,116,46,116,121,112,101,38,38,40,115,46,99,108,105,99,107,69,118,101,110,116,61,116,41,44,114,41,123,118,97,114,32,97,61,114,46,95,109,101,110,117,59,105,102,40,112,40,111,41,46,104,97,115,67,108,97,115,115,40,78,101,41,38,38,33,40,116,38,38,40,34,99,108,105,99,107,34,61,61,61,116,46,116,121,112,101,38,38,47,105,110,112,117,116,124,116,101,120,116,97,114,101,97,47,105,46,116,101,115,116,40,116,46,116,97,114,103,101,116,46,116,97,103,78,97,109,101,41,124,124,34,107,101,121,117,112,34,61,61,61,116,46,116,121,112,101,38,38,57,61,61,61,116,46,119,104,105,99,104,41,38,38,112,46,99,111,110,116,97,105,110,115,40,111,44,116,46,116,97,114,103,101,116,41,41,41,123,118,97,114,32,108,61,112,46,69,118,101,110,116,40,65,101,46,72,73,68,69,44,115,41,59,112,40,111,41,46,116,114,105,103,103,101,114,40,108,41,44,108,46,105,115,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,40,41,124,124,40,34,111,110,116,111,117,99,104,115,116,97,114,116,34,105,110,32,100,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,38,38,112,40,100,111,99,117,109,101,110,116,46,98,111,100,121,41,46,99,104,105,108,100,114,101,110,40,41,46,111,102,102,40,34,109,111,117,115,101,111,118,101,114,34,44,110,117,108,108,44,112,46,110,111,111,112,41,44,101,91,110,93,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,97,114,105,97,45,101,120,112,97,110,100,101,100,34,44,34,102,97,108,115,101,34,41,44,112,40,97,41,46,114,101,109,111,118,101,67,108,97,115,115,40,78,101,41,44,112,40,111,41,46,114,101,109,111,118,101,67,108,97,115,115,40,78,101,41,46,116,114,105,103,103,101,114,40,112,46,69,118,101,110,116,40,65,101,46,72,73,68,68,69,78,44,115,41,41,41,125,125,125,125,44,99,46,95,103,101,116,80,97,114,101,110,116,70,114,111,109,69,108,101,109,101,110,116,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,44,110,61,109,46,103,101,116,83,101,108,101,99,116,111,114,70,114,111,109,69,108,101,109,101,110,116,40,116,41,59,114,101,116,117,114,110,32,110,38,38,40,101,61,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,110,41,41,44,101,124,124,116,46,112,97,114,101,110,116,78,111,100,101,125,44,99,46,95,100,97,116,97,65,112,105,75,101,121,100,111,119,110,72,97,110,100,108,101,114,61,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,40,47,105,110,112,117,116,124,116,101,120,116,97,114,101,97,47,105,46,116,101,115,116,40,116,46,116,97,114,103,101,116,46,116,97,103,78,97,109,101,41,63,33,40,51,50,61,61,61,116,46,119,104,105,99,104,124,124,50,55,33,61,61,116,46,119,104,105,99,104,38,38,40,52,48,33,61,61,116,46,119,104,105,99,104,38,38,51,56,33,61,61,116,46,119,104,105,99,104,124,124,112,40,116,46,116,97,114,103,101,116,41,46,99,108,111,115,101,115,116,40,70,101,41,46,108,101,110,103,116,104,41,41,58,73,101,46,116,101,115,116,40,116,46,119,104,105,99,104,41,41,38,38,40,116,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,116,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,44,33,116,104,105,115,46,100,105,115,97,98,108,101,100,38,38,33,112,40,116,104,105,115,41,46,104,97,115,67,108,97,115,115,40,79,101,41,41,41,123,118,97,114,32,101,61,99,46,95,103,101,116,80,97,114,101,110,116,70,114,111,109,69,108,101,109,101,110,116,40,116,104,105,115,41,44,110,61,112,40,101,41,46,104,97,115,67,108,97,115,115,40,78,101,41,59,105,102,40,110,38,38,40,33,110,124,124,50,55,33,61,61,116,46,119,104,105,99,104,38,38,51,50,33,61,61,116,46,119,104,105,99,104,41,41,123,118,97,114,32,105,61,91,93,46,115,108,105,99,101,46,99,97,108,108,40,101,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,87,101,41,41,59,105,102,40,48,33,61,61,105,46,108,101,110,103,116,104,41,123,118,97,114,32,111,61,105,46,105,110,100,101,120,79,102,40,116,46,116,97,114,103,101,116,41,59,51,56,61,61,61,116,46,119,104,105,99,104,38,38,48,60,111,38,38,111,45,45,44,52,48,61,61,61,116,46,119,104,105,99,104,38,38,111,60,105,46,108,101,110,103,116,104,45,49,38,38,111,43,43,44,111,60,48,38,38,40,111,61,48,41,44,105,91,111,93,46,102,111,99,117,115,40,41,125,125,101,108,115,101,123,105,102,40,50,55,61,61,61,116,46,119,104,105,99,104,41,123,118,97,114,32,114,61,101,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,106,101,41,59,112,40,114,41,46,116,114,105,103,103,101,114,40,34,102,111,99,117,115,34,41,125,112,40,116,104,105,115,41,46,116,114,105,103,103,101,114,40,34,99,108,105,99,107,34,41,125,125,125,44,115,40,99,44,110,117,108,108,44,91,123,107,101,121,58,34,86,69,82,83,73,79,78,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,34,52,46,51,46,49,34,125,125,44,123,107,101,121,58,34,68,101,102,97,117,108,116,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,89,101,125,125,44,123,107,101,121,58,34,68,101,102,97,117,108,116,84,121,112,101,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,122,101,125,125,93,41,44,99,125,40,41,59,112,40,100,111,99,117,109,101,110,116,41,46,111,110,40,65,101,46,75,69,89,68,79,87,78,95,68,65,84,65,95,65,80,73,44,106,101,44,88,101,46,95,100,97,116,97,65,112,105,75,101,121,100,111,119,110,72,97,110,100,108,101,114,41,46,111,110,40,65,101,46,75,69,89,68,79,87,78,95,68,65,84,65,95,65,80,73,44,70,101,44,88,101,46,95,100,97,116,97,65,112,105,75,101,121,100,111,119,110,72,97,110,100,108,101,114,41,46,111,110,40,65,101,46,67,76,73,67,75,95,68,65,84,65,95,65,80,73,43,34,32,34,43,65,101,46,75,69,89,85,80,95,68,65,84,65,95,65,80,73,44,88,101,46,95,99,108,101,97,114,77,101,110,117,115,41,46,111,110,40,65,101,46,67,76,73,67,75,95,68,65,84,65,95,65,80,73,44,106,101,44,102,117,110,99,116,105,111,110,40,116,41,123,116,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,116,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,44,88,101,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,46,99,97,108,108,40,112,40,116,104,105,115,41,44,34,116,111,103,103,108,101,34,41,125,41,46,111,110,40,65,101,46,67,76,73,67,75,95,68,65,84,65,95,65,80,73,44,82,101,44,102,117,110,99,116,105,111,110,40,116,41,123,116,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,125,41,44,112,46,102,110,91,119,101,93,61,88,101,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,44,112,46,102,110,91,119,101,93,46,67,111,110,115,116,114,117,99,116,111,114,61,88,101,44,112,46,102,110,91,119,101,93,46,110,111,67,111,110,102,108,105,99,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,112,46,102,110,91,119,101,93,61,68,101,44,88,101,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,125,59,118,97,114,32,71,101,61,34,109,111,100,97,108,34,44,36,101,61,34,98,115,46,109,111,100,97,108,34,44,74,101,61,34,46,34,43,36,101,44,90,101,61,112,46,102,110,91,71,101,93,44,116,110,61,123,98,97,99,107,100,114,111,112,58,33,48,44,107,101,121,98,111,97,114,100,58,33,48,44,102,111,99,117,115,58,33,48,44,115,104,111,119,58,33,48,125,44,101,110,61,123,98,97,99,107,100,114,111,112,58,34,40,98,111,111,108,101,97,110,124,115,116,114,105,110,103,41,34,44,107,101,121,98,111,97,114,100,58,34,98,111,111,108,101,97,110,34,44,102,111,99,117,115,58,34,98,111,111,108,101,97,110,34,44,115,104,111,119,58,34,98,111,111,108,101,97,110,34,125,44,110,110,61,123,72,73,68,69,58,34,104,105,100,101,34,43,74,101,44,72,73,68,68,69,78,58,34,104,105,100,100,101,110,34,43,74,101,44,83,72,79,87,58,34,115,104,111,119,34,43,74,101,44,83,72,79,87,78,58,34,115,104,111,119,110,34,43,74,101,44,70,79,67,85,83,73,78,58,34,102,111,99,117,115,105,110,34,43,74,101,44,82,69,83,73,90,69,58,34,114,101,115,105,122,101,34,43,74,101,44,67,76,73,67,75,95,68,73,83,77,73,83,83,58,34,99,108,105,99,107,46,100,105,115,109,105,115,115,34,43,74,101,44,75,69,89,68,79,87,78,95,68,73,83,77,73,83,83,58,34,107,101,121,100,111,119,110,46,100,105,115,109,105,115,115,34,43,74,101,44,77,79,85,83,69,85,80,95,68,73,83,77,73,83,83,58,34,109,111,117,115,101,117,112,46,100,105,115,109,105,115,115,34,43,74,101,44,77,79,85,83,69,68,79,87,78,95,68,73,83,77,73,83,83,58,34,109,111,117,115,101,100,111,119,110,46,100,105,115,109,105,115,115,34,43,74,101,44,67,76,73,67,75,95,68,65,84,65,95,65,80,73,58,34,99,108,105,99,107,34,43,74,101,43,34,46,100,97,116,97,45,97,112,105,34,125,44,111,110,61,34,109,111,100,97,108,45,100,105,97,108,111,103,45,115,99,114,111,108,108,97,98,108,101,34,44,114,110,61,34,109,111,100,97,108,45,115,99,114,111,108,108,98,97,114,45,109,101,97,115,117,114,101,34,44,115,110,61,34,109,111,100,97,108,45,98,97,99,107,100,114,111,112,34,44,97,110,61,34,109,111,100,97,108,45,111,112,101,110,34,44,108,110,61,34,102,97,100,101,34,44,99,110,61,34,115,104,111,119,34,44,104,110,61,34,46,109,111,100,97,108,45,100,105,97,108,111,103,34,44,117,110,61,34,46,109,111,100,97,108,45,98,111,100,121,34,44,102,110,61,39,91,100,97,116,97,45,116,111,103,103,108,101,61,34,109,111,100,97,108,34,93,39,44,100,110,61,39,91,100,97,116,97,45,100,105,115,109,105,115,115,61,34,109,111,100,97,108,34,93,39,44,112,110,61,34,46,102,105,120,101,100,45,116,111,112,44,32,46,102,105,120,101,100,45,98,111,116,116,111,109,44,32,46,105,115,45,102,105,120,101,100,44,32,46,115,116,105,99,107,121,45,116,111,112,34,44,109,110,61,34,46,115,116,105,99,107,121,45,116,111,112,34,44,103,110,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,111,40,116,44,101,41,123,116,104,105,115,46,95,99,111,110,102,105,103,61,116,104,105,115,46,95,103,101,116,67,111,110,102,105,103,40,101,41,44,116,104,105,115,46,95,101,108,101,109,101,110,116,61,116,44,116,104,105,115,46,95,100,105,97,108,111,103,61,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,104,110,41,44,116,104,105,115,46,95,98,97,99,107,100,114,111,112,61,110,117,108,108,44,116,104,105,115,46,95,105,115,83,104,111,119,110,61,33,49,44,116,104,105,115,46,95,105,115,66,111,100,121,79,118,101,114,102,108,111,119,105,110,103,61,33,49,44,116,104,105,115,46,95,105,103,110,111,114,101,66,97,99,107,100,114,111,112,67,108,105,99,107,61,33,49,44,116,104,105,115,46,95,105,115,84,114,97,110,115,105,116,105,111,110,105,110,103,61,33,49,44,116,104,105,115,46,95,115,99,114,111,108,108,98,97,114,87,105,100,116,104,61,48,125,118,97,114,32,116,61,111,46,112,114,111,116,111,116,121,112,101,59,114,101,116,117,114,110,32,116,46,116,111,103,103,108,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,105,115,83,104,111,119,110,63,116,104,105,115,46,104,105,100,101,40,41,58,116,104,105,115,46,115,104,111,119,40,116,41,125,44,116,46,115,104,111,119,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,59,105,102,40,33,116,104,105,115,46,95,105,115,83,104,111,119,110,38,38,33,116,104,105,115,46,95,105,115,84,114,97,110,115,105,116,105,111,110,105,110,103,41,123,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,104,97,115,67,108,97,115,115,40,108,110,41,38,38,40,116,104,105,115,46,95,105,115,84,114,97,110,115,105,116,105,111,110,105,110,103,61,33,48,41,59,118,97,114,32,110,61,112,46,69,118,101,110,116,40,110,110,46,83,72,79,87,44,123,114,101,108,97,116,101,100,84,97,114,103,101,116,58,116,125,41,59,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,116,114,105,103,103,101,114,40,110,41,44,116,104,105,115,46,95,105,115,83,104,111,119,110,124,124,110,46,105,115,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,40,41,124,124,40,116,104,105,115,46,95,105,115,83,104,111,119,110,61,33,48,44,116,104,105,115,46,95,99,104,101,99,107,83,99,114,111,108,108,98,97,114,40,41,44,116,104,105,115,46,95,115,101,116,83,99,114,111,108,108,98,97,114,40,41,44,116,104,105,115,46,95,97,100,106,117,115,116,68,105,97,108,111,103,40,41,44,116,104,105,115,46,95,115,101,116,69,115,99,97,112,101,69,118,101,110,116,40,41,44,116,104,105,115,46,95,115,101,116,82,101,115,105,122,101,69,118,101,110,116,40,41,44,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,111,110,40,110,110,46,67,76,73,67,75,95,68,73,83,77,73,83,83,44,100,110,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,46,104,105,100,101,40,116,41,125,41,44,112,40,116,104,105,115,46,95,100,105,97,108,111,103,41,46,111,110,40,110,110,46,77,79,85,83,69,68,79,87,78,95,68,73,83,77,73,83,83,44,102,117,110,99,116,105,111,110,40,41,123,112,40,101,46,95,101,108,101,109,101,110,116,41,46,111,110,101,40,110,110,46,77,79,85,83,69,85,80,95,68,73,83,77,73,83,83,44,102,117,110,99,116,105,111,110,40,116,41,123,112,40,116,46,116,97,114,103,101,116,41,46,105,115,40,101,46,95,101,108,101,109,101,110,116,41,38,38,40,101,46,95,105,103,110,111,114,101,66,97,99,107,100,114,111,112,67,108,105,99,107,61,33,48,41,125,41,125,41,44,116,104,105,115,46,95,115,104,111,119,66,97,99,107,100,114,111,112,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,101,46,95,115,104,111,119,69,108,101,109,101,110,116,40,116,41,125,41,41,125,125,44,116,46,104,105,100,101,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,59,105,102,40,116,38,38,116,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,116,104,105,115,46,95,105,115,83,104,111,119,110,38,38,33,116,104,105,115,46,95,105,115,84,114,97,110,115,105,116,105,111,110,105,110,103,41,123,118,97,114,32,110,61,112,46,69,118,101,110,116,40,110,110,46,72,73,68,69,41,59,105,102,40,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,116,114,105,103,103,101,114,40,110,41,44,116,104,105,115,46,95,105,115,83,104,111,119,110,38,38,33,110,46,105,115,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,40,41,41,123,116,104,105,115,46,95,105,115,83,104,111,119,110,61,33,49,59,118,97,114,32,105,61,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,104,97,115,67,108,97,115,115,40,108,110,41,59,105,102,40,105,38,38,40,116,104,105,115,46,95,105,115,84,114,97,110,115,105,116,105,111,110,105,110,103,61,33,48,41,44,116,104,105,115,46,95,115,101,116,69,115,99,97,112,101,69,118,101,110,116,40,41,44,116,104,105,115,46,95,115,101,116,82,101,115,105,122,101,69,118,101,110,116,40,41,44,112,40,100,111,99,117,109,101,110,116,41,46,111,102,102,40,110,110,46,70,79,67,85,83,73,78,41,44,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,114,101,109,111,118,101,67,108,97,115,115,40,99,110,41,44,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,111,102,102,40,110,110,46,67,76,73,67,75,95,68,73,83,77,73,83,83,41,44,112,40,116,104,105,115,46,95,100,105,97,108,111,103,41,46,111,102,102,40,110,110,46,77,79,85,83,69,68,79,87,78,95,68,73,83,77,73,83,83,41,44,105,41,123,118,97,114,32,111,61,109,46,103,101,116,84,114,97,110,115,105,116,105,111,110,68,117,114,97,116,105,111,110,70,114,111,109,69,108,101,109,101,110,116,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,59,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,111,110,101,40,109,46,84,82,65,78,83,73,84,73,79,78,95,69,78,68,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,46,95,104,105,100,101,77,111,100,97,108,40,116,41,125,41,46,101,109,117,108,97,116,101,84,114,97,110,115,105,116,105,111,110,69,110,100,40,111,41,125,101,108,115,101,32,116,104,105,115,46,95,104,105,100,101,77,111,100,97,108,40,41,125,125,125,44,116,46,100,105,115,112,111,115,101,61,102,117,110,99,116,105,111,110,40,41,123,91,119,105,110,100,111,119,44,116,104,105,115,46,95,101,108,101,109,101,110,116,44,116,104,105,115,46,95,100,105,97,108,111,103,93,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,112,40,116,41,46,111,102,102,40,74,101,41,125,41,44,112,40,100,111,99,117,109,101,110,116,41,46,111,102,102,40,110,110,46,70,79,67,85,83,73,78,41,44,112,46,114,101,109,111,118,101,68,97,116,97,40,116,104,105,115,46,95,101,108,101,109,101,110,116,44,36,101,41,44,116,104,105,115,46,95,99,111,110,102,105,103,61,110,117,108,108,44,116,104,105,115,46,95,101,108,101,109,101,110,116,61,110,117,108,108,44,116,104,105,115,46,95,100,105,97,108,111,103,61,110,117,108,108,44,116,104,105,115,46,95,98,97,99,107,100,114,111,112,61,110,117,108,108,44,116,104,105,115,46,95,105,115,83,104,111,119,110,61,110,117,108,108,44,116,104,105,115,46,95,105,115,66,111,100,121,79,118,101,114,102,108,111,119,105,110,103,61,110,117,108,108,44,116,104,105,115,46,95,105,103,110,111,114,101,66,97,99,107,100,114,111,112,67,108,105,99,107,61,110,117,108,108,44,116,104,105,115,46,95,105,115,84,114,97,110,115,105,116,105,111,110,105,110,103,61,110,117,108,108,44,116,104,105,115,46,95,115,99,114,111,108,108,98,97,114,87,105,100,116,104,61,110,117,108,108,125,44,116,46,104,97,110,100,108,101,85,112,100,97,116,101,61,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,97,100,106,117,115,116,68,105,97,108,111,103,40,41,125,44,116,46,95,103,101,116,67,111,110,102,105,103,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,61,108,40,123,125,44,116,110,44,116,41,44,109,46,116,121,112,101,67,104,101,99,107,67,111,110,102,105,103,40,71,101,44,116,44,101,110,41,44,116,125,44,116,46,95,115,104,111,119,69,108,101,109,101,110,116,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,44,110,61,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,104,97,115,67,108,97,115,115,40,108,110,41,59,116,104,105,115,46,95,101,108,101,109,101,110,116,46,112,97,114,101,110,116,78,111,100,101,38,38,116,104,105,115,46,95,101,108,101,109,101,110,116,46,112,97,114,101,110,116,78,111,100,101,46,110,111,100,101,84,121,112,101,61,61,61,78,111,100,101,46,69,76,69,77,69,78,84,95,78,79,68,69,124,124,100,111,99,117,109,101,110,116,46,98,111,100,121,46,97,112,112,101,110,100,67,104,105,108,100,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,44,116,104,105,115,46,95,101,108,101,109,101,110,116,46,115,116,121,108,101,46,100,105,115,112,108,97,121,61,34,98,108,111,99,107,34,44,116,104,105,115,46,95,101,108,101,109,101,110,116,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,40,34,97,114,105,97,45,104,105,100,100,101,110,34,41,44,116,104,105,115,46,95,101,108,101,109,101,110,116,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,97,114,105,97,45,109,111,100,97,108,34,44,33,48,41,44,112,40,116,104,105,115,46,95,100,105,97,108,111,103,41,46,104,97,115,67,108,97,115,115,40,111,110,41,63,116,104,105,115,46,95,100,105,97,108,111,103,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,117,110,41,46,115,99,114,111,108,108,84,111,112,61,48,58,116,104,105,115,46,95,101,108,101,109,101,110,116,46,115,99,114,111,108,108,84,111,112,61,48,44,110,38,38,109,46,114,101,102,108,111,119,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,44,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,97,100,100,67,108,97,115,115,40,99,110,41,44,116,104,105,115,46,95,99,111,110,102,105,103,46,102,111,99,117,115,38,38,116,104,105,115,46,95,101,110,102,111,114,99,101,70,111,99,117,115,40,41,59,118,97,114,32,105,61,112,46,69,118,101,110,116,40,110,110,46,83,72,79,87,78,44,123,114,101,108,97,116,101,100,84,97,114,103,101,116,58,116,125,41,44,111,61,102,117,110,99,116,105,111,110,40,41,123,101,46,95,99,111,110,102,105,103,46,102,111,99,117,115,38,38,101,46,95,101,108,101,109,101,110,116,46,102,111,99,117,115,40,41,44,101,46,95,105,115,84,114,97,110,115,105,116,105,111,110,105,110,103,61,33,49,44,112,40,101,46,95,101,108,101,109,101,110,116,41,46,116,114,105,103,103,101,114,40,105,41,125,59,105,102,40,110,41,123,118,97,114,32,114,61,109,46,103,101,116,84,114,97,110,115,105,116,105,111,110,68,117,114,97,116,105,111,110,70,114,111,109,69,108,101,109,101,110,116,40,116,104,105,115,46,95,100,105,97,108,111,103,41,59,112,40,116,104,105,115,46,95,100,105,97,108,111,103,41,46,111,110,101,40,109,46,84,82,65,78,83,73,84,73,79,78,95,69,78,68,44,111,41,46,101,109,117,108,97,116,101,84,114,97,110,115,105,116,105,111,110,69,110,100,40,114,41,125,101,108,115,101,32,111,40,41,125,44,116,46,95,101,110,102,111,114,99,101,70,111,99,117,115,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,59,112,40,100,111,99,117,109,101,110,116,41,46,111,102,102,40,110,110,46,70,79,67,85,83,73,78,41,46,111,110,40,110,110,46,70,79,67,85,83,73,78,44,102,117,110,99,116,105,111,110,40,116,41,123,100,111,99,117,109,101,110,116,33,61,61,116,46,116,97,114,103,101,116,38,38,101,46,95,101,108,101,109,101,110,116,33,61,61,116,46,116,97,114,103,101,116,38,38,48,61,61,61,112,40,101,46,95,101,108,101,109,101,110,116,41,46,104,97,115,40,116,46,116,97,114,103,101,116,41,46,108,101,110,103,116,104,38,38,101,46,95,101,108,101,109,101,110,116,46,102,111,99,117,115,40,41,125,41,125,44,116,46,95,115,101,116,69,115,99,97,112,101,69,118,101,110,116,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,59,116,104,105,115,46,95,105,115,83,104,111,119,110,38,38,116,104,105,115,46,95,99,111,110,102,105,103,46,107,101,121,98,111,97,114,100,63,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,111,110,40,110,110,46,75,69,89,68,79,87,78,95,68,73,83,77,73,83,83,44,102,117,110,99,116,105,111,110,40,116,41,123,50,55,61,61,61,116,46,119,104,105,99,104,38,38,40,116,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,101,46,104,105,100,101,40,41,41,125,41,58,116,104,105,115,46,95,105,115,83,104,111,119,110,124,124,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,111,102,102,40,110,110,46,75,69,89,68,79,87,78,95,68,73,83,77,73,83,83,41,125,44,116,46,95,115,101,116,82,101,115,105,122,101,69,118,101,110,116,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,59,116,104,105,115,46,95,105,115,83,104,111,119,110,63,112,40,119,105,110,100,111,119,41,46,111,110,40,110,110,46,82,69,83,73,90,69,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,46,104,97,110,100,108,101,85,112,100,97,116,101,40,116,41,125,41,58,112,40,119,105,110,100,111,119,41,46,111,102,102,40,110,110,46,82,69,83,73,90,69,41,125,44,116,46,95,104,105,100,101,77,111,100,97,108,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,59,116,104,105,115,46,95,101,108,101,109,101,110,116,46,115,116,121,108,101,46,100,105,115,112,108,97,121,61,34,110,111,110,101,34,44,116,104,105,115,46,95,101,108,101,109,101,110,116,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,97,114,105,97,45,104,105,100,100,101,110,34,44,33,48,41,44,116,104,105,115,46,95,101,108,101,109,101,110,116,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,40,34,97,114,105,97,45,109,111,100,97,108,34,41,44,116,104,105,115,46,95,105,115,84,114,97,110,115,105,116,105,111,110,105,110,103,61,33,49,44,116,104,105,115,46,95,115,104,111,119,66,97,99,107,100,114,111,112,40,102,117,110,99,116,105,111,110,40,41,123,112,40,100,111,99,117,109,101,110,116,46,98,111,100,121,41,46,114,101,109,111,118,101,67,108,97,115,115,40,97,110,41,44,116,46,95,114,101,115,101,116,65,100,106,117,115,116,109,101,110,116,115,40,41,44,116,46,95,114,101,115,101,116,83,99,114,111,108,108,98,97,114,40,41,44,112,40,116,46,95,101,108,101,109,101,110,116,41,46,116,114,105,103,103,101,114,40,110,110,46,72,73,68,68,69,78,41,125,41,125,44,116,46,95,114,101,109,111,118,101,66,97,99,107,100,114,111,112,61,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,98,97,99,107,100,114,111,112,38,38,40,112,40,116,104,105,115,46,95,98,97,99,107,100,114,111,112,41,46,114,101,109,111,118,101,40,41,44,116,104,105,115,46,95,98,97,99,107,100,114,111,112,61,110,117,108,108,41,125,44,116,46,95,115,104,111,119,66,97,99,107,100,114,111,112,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,44,110,61,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,104,97,115,67,108,97,115,115,40,108,110,41,63,108,110,58,34,34,59,105,102,40,116,104,105,115,46,95,105,115,83,104,111,119,110,38,38,116,104,105,115,46,95,99,111,110,102,105,103,46,98,97,99,107,100,114,111,112,41,123,105,102,40,116,104,105,115,46,95,98,97,99,107,100,114,111,112,61,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,44,116,104,105,115,46,95,98,97,99,107,100,114,111,112,46,99,108,97,115,115,78,97,109,101,61,115,110,44,110,38,38,116,104,105,115,46,95,98,97,99,107,100,114,111,112,46,99,108,97,115,115,76,105,115,116,46,97,100,100,40,110,41,44,112,40,116,104,105,115,46,95,98,97,99,107,100,114,111,112,41,46,97,112,112,101,110,100,84,111,40,100,111,99,117,109,101,110,116,46,98,111,100,121,41,44,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,111,110,40,110,110,46,67,76,73,67,75,95,68,73,83,77,73,83,83,44,102,117,110,99,116,105,111,110,40,116,41,123,101,46,95,105,103,110,111,114,101,66,97,99,107,100,114,111,112,67,108,105,99,107,63,101,46,95,105,103,110,111,114,101,66,97,99,107,100,114,111,112,67,108,105,99,107,61,33,49,58,116,46,116,97,114,103,101,116,61,61,61,116,46,99,117,114,114,101,110,116,84,97,114,103,101,116,38,38,40,34,115,116,97,116,105,99,34,61,61,61,101,46,95,99,111,110,102,105,103,46,98,97,99,107,100,114,111,112,63,101,46,95,101,108,101,109,101,110,116,46,102,111,99,117,115,40,41,58,101,46,104,105,100,101,40,41,41,125,41,44,110,38,38,109,46,114,101,102,108,111,119,40,116,104,105,115,46,95,98,97,99,107,100,114,111,112,41,44,112,40,116,104,105,115,46,95,98,97,99,107,100,114,111,112,41,46,97,100,100,67,108,97,115,115,40,99,110,41,44,33,116,41,114,101,116,117,114,110,59,105,102,40,33,110,41,114,101,116,117,114,110,32,118,111,105,100,32,116,40,41,59,118,97,114,32,105,61,109,46,103,101,116,84,114,97,110,115,105,116,105,111,110,68,117,114,97,116,105,111,110,70,114,111,109,69,108,101,109,101,110,116,40,116,104,105,115,46,95,98,97,99,107,100,114,111,112,41,59,112,40,116,104,105,115,46,95,98,97,99,107,100,114,111,112,41,46,111,110,101,40,109,46,84,82,65,78,83,73,84,73,79,78,95,69,78,68,44,116,41,46,101,109,117,108,97,116,101,84,114,97,110,115,105,116,105,111,110,69,110,100,40,105,41,125,101,108,115,101,32,105,102,40,33,116,104,105,115,46,95,105,115,83,104,111,119,110,38,38,116,104,105,115,46,95,98,97,99,107,100,114,111,112,41,123,112,40,116,104,105,115,46,95,98,97,99,107,100,114,111,112,41,46,114,101,109,111,118,101,67,108,97,115,115,40,99,110,41,59,118,97,114,32,111,61,102,117,110,99,116,105,111,110,40,41,123,101,46,95,114,101,109,111,118,101,66,97,99,107,100,114,111,112,40,41,44,116,38,38,116,40,41,125,59,105,102,40,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,104,97,115,67,108,97,115,115,40,108,110,41,41,123,118,97,114,32,114,61,109,46,103,101,116,84,114,97,110,115,105,116,105,111,110,68,117,114,97,116,105,111,110,70,114,111,109,69,108,101,109,101,110,116,40,116,104,105,115,46,95,98,97,99,107,100,114,111,112,41,59,112,40,116,104,105,115,46,95,98,97,99,107,100,114,111,112,41,46,111,110,101,40,109,46,84,82,65,78,83,73,84,73,79,78,95,69,78,68,44,111,41,46,101,109,117,108,97,116,101,84,114,97,110,115,105,116,105,111,110,69,110,100,40,114,41,125,101,108,115,101,32,111,40,41,125,101,108,115,101,32,116,38,38,116,40,41,125,44,116,46,95,97,100,106,117,115,116,68,105,97,108,111,103,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,95,101,108,101,109,101,110,116,46,115,99,114,111,108,108,72,101,105,103,104,116,62,100,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,46,99,108,105,101,110,116,72,101,105,103,104,116,59,33,116,104,105,115,46,95,105,115,66,111,100,121,79,118,101,114,102,108,111,119,105,110,103,38,38,116,38,38,40,116,104,105,115,46,95,101,108,101,109,101,110,116,46,115,116,121,108,101,46,112,97,100,100,105,110,103,76,101,102,116,61,116,104,105,115,46,95,115,99,114,111,108,108,98,97,114,87,105,100,116,104,43,34,112,120,34,41,44,116,104,105,115,46,95,105,115,66,111,100,121,79,118,101,114,102,108,111,119,105,110,103,38,38,33,116,38,38,40,116,104,105,115,46,95,101,108,101,109,101,110,116,46,115,116,121,108,101,46,112,97,100,100,105,110,103,82,105,103,104,116,61,116,104,105,115,46,95,115,99,114,111,108,108,98,97,114,87,105,100,116,104,43,34,112,120,34,41,125,44,116,46,95,114,101,115,101,116,65,100,106,117,115,116,109,101,110,116,115,61,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,101,108,101,109,101,110,116,46,115,116,121,108,101,46,112,97,100,100,105,110,103,76,101,102,116,61,34,34,44,116,104,105,115,46,95,101,108,101,109,101,110,116,46,115,116,121,108,101,46,112,97,100,100,105,110,103,82,105,103,104,116,61,34,34,125,44,116,46,95,99,104,101,99,107,83,99,114,111,108,108,98,97,114,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,100,111,99,117,109,101,110,116,46,98,111,100,121,46,103,101,116,66,111,117,110,100,105,110,103,67,108,105,101,110,116,82,101,99,116,40,41,59,116,104,105,115,46,95,105,115,66,111,100,121,79,118,101,114,102,108,111,119,105,110,103,61,116,46,108,101,102,116,43,116,46,114,105,103,104,116,60,119,105,110,100,111,119,46,105,110,110,101,114,87,105,100,116,104,44,116,104,105,115,46,95,115,99,114,111,108,108,98,97,114,87,105,100,116,104,61,116,104,105,115,46,95,103,101,116,83,99,114,111,108,108,98,97,114,87,105,100,116,104,40,41,125,44,116,46,95,115,101,116,83,99,114,111,108,108,98,97,114,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,111,61,116,104,105,115,59,105,102,40,116,104,105,115,46,95,105,115,66,111,100,121,79,118,101,114,102,108,111,119,105,110,103,41,123,118,97,114,32,116,61,91,93,46,115,108,105,99,101,46,99,97,108,108,40,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,112,110,41,41,44,101,61,91,93,46,115,108,105,99,101,46,99,97,108,108,40,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,109,110,41,41,59,112,40,116,41,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,101,46,115,116,121,108,101,46,112,97,100,100,105,110,103,82,105,103,104,116,44,105,61,112,40,101,41,46,99,115,115,40,34,112,97,100,100,105,110,103,45,114,105,103,104,116,34,41,59,112,40,101,41,46,100,97,116,97,40,34,112,97,100,100,105,110,103,45,114,105,103,104,116,34,44,110,41,46,99,115,115,40,34,112,97,100,100,105,110,103,45,114,105,103,104,116,34,44,112,97,114,115,101,70,108,111,97,116,40,105,41,43,111,46,95,115,99,114,111,108,108,98,97,114,87,105,100,116,104,43,34,112,120,34,41,125,41,44,112,40,101,41,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,101,46,115,116,121,108,101,46,109,97,114,103,105,110,82,105,103,104,116,44,105,61,112,40,101,41,46,99,115,115,40,34,109,97,114,103,105,110,45,114,105,103,104,116,34,41,59,112,40,101,41,46,100,97,116,97,40,34,109,97,114,103,105,110,45,114,105,103,104,116,34,44,110,41,46,99,115,115,40,34,109,97,114,103,105,110,45,114,105,103,104,116,34,44,112,97,114,115,101,70,108,111,97,116,40,105,41,45,111,46,95,115,99,114,111,108,108,98,97,114,87,105,100,116,104,43,34,112,120,34,41,125,41,59,118,97,114,32,110,61,100,111,99,117,109,101,110,116,46,98,111,100,121,46,115,116,121,108,101,46,112,97,100,100,105,110,103,82,105,103,104,116,44,105,61,112,40,100,111,99,117,109,101,110,116,46,98,111,100,121,41,46,99,115,115,40,34,112,97,100,100,105,110,103,45,114,105,103,104,116,34,41,59,112,40,100,111,99,117,109,101,110,116,46,98,111,100,121,41,46,100,97,116,97,40,34,112,97,100,100,105,110,103,45,114,105,103,104,116,34,44,110,41,46,99,115,115,40,34,112,97,100,100,105,110,103,45,114,105,103,104,116,34,44,112,97,114,115,101,70,108,111,97,116,40,105,41,43,116,104,105,115,46,95,115,99,114,111,108,108,98,97,114,87,105,100,116,104,43,34,112,120,34,41,125,112,40,100,111,99,117,109,101,110,116,46,98,111,100,121,41,46,97,100,100,67,108,97,115,115,40,97,110,41,125,44,116,46,95,114,101,115,101,116,83,99,114,111,108,108,98,97,114,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,91,93,46,115,108,105,99,101,46,99,97,108,108,40,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,112,110,41,41,59,112,40,116,41,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,112,40,101,41,46,100,97,116,97,40,34,112,97,100,100,105,110,103,45,114,105,103,104,116,34,41,59,112,40,101,41,46,114,101,109,111,118,101,68,97,116,97,40,34,112,97,100,100,105,110,103,45,114,105,103,104,116,34,41,44,101,46,115,116,121,108,101,46,112,97,100,100,105,110,103,82,105,103,104,116,61,110,124,124,34,34,125,41,59,118,97,114,32,101,61,91,93,46,115,108,105,99,101,46,99,97,108,108,40,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,34,34,43,109,110,41,41,59,112,40,101,41,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,112,40,101,41,46,100,97,116,97,40,34,109,97,114,103,105,110,45,114,105,103,104,116,34,41,59,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,110,38,38,112,40,101,41,46,99,115,115,40,34,109,97,114,103,105,110,45,114,105,103,104,116,34,44,110,41,46,114,101,109,111,118,101,68,97,116,97,40,34,109,97,114,103,105,110,45,114,105,103,104,116,34,41,125,41,59,118,97,114,32,110,61,112,40,100,111,99,117,109,101,110,116,46,98,111,100,121,41,46,100,97,116,97,40,34,112,97,100,100,105,110,103,45,114,105,103,104,116,34,41,59,112,40,100,111,99,117,109,101,110,116,46,98,111,100,121,41,46,114,101,109,111,118,101,68,97,116,97,40,34,112,97,100,100,105,110,103,45,114,105,103,104,116,34,41,44,100,111,99,117,109,101,110,116,46,98,111,100,121,46,115,116,121,108,101,46,112,97,100,100,105,110,103,82,105,103,104,116,61,110,124,124,34,34,125,44,116,46,95,103,101,116,83,99,114,111,108,108,98,97,114,87,105,100,116,104,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,116,46,99,108,97,115,115,78,97,109,101,61,114,110,44,100,111,99,117,109,101,110,116,46,98,111,100,121,46,97,112,112,101,110,100,67,104,105,108,100,40,116,41,59,118,97,114,32,101,61,116,46,103,101,116,66,111,117,110,100,105,110,103,67,108,105,101,110,116,82,101,99,116,40,41,46,119,105,100,116,104,45,116,46,99,108,105,101,110,116,87,105,100,116,104,59,114,101,116,117,114,110,32,100,111,99,117,109,101,110,116,46,98,111,100,121,46,114,101,109,111,118,101,67,104,105,108,100,40,116,41,44,101,125,44,111,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,61,102,117,110,99,116,105,111,110,40,110,44,105,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,112,40,116,104,105,115,41,46,100,97,116,97,40,36,101,41,44,101,61,108,40,123,125,44,116,110,44,112,40,116,104,105,115,41,46,100,97,116,97,40,41,44,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,110,38,38,110,63,110,58,123,125,41,59,105,102,40,116,124,124,40,116,61,110,101,119,32,111,40,116,104,105,115,44,101,41,44,112,40,116,104,105,115,41,46,100,97,116,97,40,36,101,44,116,41,41,44,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,110,41,123,105,102,40,34,117,110,100,101,102,105,110,101,100,34,61,61,116,121,112,101,111,102,32,116,91,110,93,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,39,78,111,32,109,101,116,104,111,100,32,110,97,109,101,100,32,34,39,43,110,43,39,34,39,41,59,116,91,110,93,40,105,41,125,101,108,115,101,32,101,46,115,104,111,119,38,38,116,46,115,104,111,119,40,105,41,125,41,125,44,115,40,111,44,110,117,108,108,44,91,123,107,101,121,58,34,86,69,82,83,73,79,78,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,34,52,46,51,46,49,34,125,125,44,123,107,101,121,58,34,68,101,102,97,117,108,116,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,110,125,125,93,41,44,111,125,40,41,59,112,40,100,111,99,117,109,101,110,116,41,46,111,110,40,110,110,46,67,76,73,67,75,95,68,65,84,65,95,65,80,73,44,102,110,44,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,44,110,61,116,104,105,115,44,105,61,109,46,103,101,116,83,101,108,101,99,116,111,114,70,114,111,109,69,108,101,109,101,110,116,40,116,104,105,115,41,59,105,38,38,40,101,61,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,105,41,41,59,118,97,114,32,111,61,112,40,101,41,46,100,97,116,97,40,36,101,41,63,34,116,111,103,103,108,101,34,58,108,40,123,125,44,112,40,101,41,46,100,97,116,97,40,41,44,112,40,116,104,105,115,41,46,100,97,116,97,40,41,41,59,34,65,34,33,61,61,116,104,105,115,46,116,97,103,78,97,109,101,38,38,34,65,82,69,65,34,33,61,61,116,104,105,115,46,116,97,103,78,97,109,101,124,124,116,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,59,118,97,114,32,114,61,112,40,101,41,46,111,110,101,40,110,110,46,83,72,79,87,44,102,117,110,99,116,105,111,110,40,116,41,123,116,46,105,115,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,40,41,124,124,114,46,111,110,101,40,110,110,46,72,73,68,68,69,78,44,102,117,110,99,116,105,111,110,40,41,123,112,40,110,41,46,105,115,40,34,58,118,105,115,105,98,108,101,34,41,38,38,110,46,102,111,99,117,115,40,41,125,41,125,41,59,103,110,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,46,99,97,108,108,40,112,40,101,41,44,111,44,116,104,105,115,41,125,41,44,112,46,102,110,91,71,101,93,61,103,110,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,44,112,46,102,110,91,71,101,93,46,67,111,110,115,116,114,117,99,116,111,114,61,103,110,44,112,46,102,110,91,71,101,93,46,110,111,67,111,110,102,108,105,99,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,112,46,102,110,91,71,101,93,61,90,101,44,103,110,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,125,59,118,97,114,32,95,110,61,91,34,98,97,99,107,103,114,111,117,110,100,34,44,34,99,105,116,101,34,44,34,104,114,101,102,34,44,34,105,116,101,109,116,121,112,101,34,44,34,108,111,110,103,100,101,115,99,34,44,34,112,111,115,116,101,114,34,44,34,115,114,99,34,44,34,120,108,105,110,107,58,104,114,101,102,34,93,44,118,110,61,123,34,42,34,58,91,34,99,108,97,115,115,34,44,34,100,105,114,34,44,34,105,100,34,44,34,108,97,110,103,34,44,34,114,111,108,101,34,44,47,94,97,114,105,97,45,91,92,119,45,93,42,36,47,105,93,44,97,58,91,34,116,97,114,103,101,116,34,44,34,104,114,101,102,34,44,34,116,105,116,108,101,34,44,34,114,101,108,34,93,44,97,114,101,97,58,91,93,44,98,58,91,93,44,98,114,58,91,93,44,99,111,108,58,91,93,44,99,111,100,101,58,91,93,44,100,105,118,58,91,93,44,101,109,58,91,93,44,104,114,58,91,93,44,104,49,58,91,93,44,104,50,58,91,93,44,104,51,58,91,93,44,104,52,58,91,93,44,104,53,58,91,93,44,104,54,58,91,93,44,105,58,91,93,44,105,109,103,58,91,34,115,114,99,34,44,34,97,108,116,34,44,34,116,105,116,108,101,34,44,34,119,105,100,116,104,34,44,34,104,101,105,103,104,116,34,93,44,108,105,58,91,93,44,111,108,58,91,93,44,112,58,91,93,44,112,114,101,58,91,93,44,115,58,91,93,44,115,109,97,108,108,58,91,93,44,115,112,97,110,58,91,93,44,115,117,98,58,91,93,44,115,117,112,58,91,93,44,115,116,114,111,110,103,58,91,93,44,117,58,91,93,44,117,108,58,91,93,125,44,121,110,61,47,94,40,63,58,40,63,58,104,116,116,112,115,63,124,109,97,105,108,116,111,124,102,116,112,124,116,101,108,124,102,105,108,101,41,58,124,91,94,38,58,47,63,35,93,42,40,63,58,91,47,63,35,93,124,36,41,41,47,103,105,44,69,110,61,47,94,100,97,116,97,58,40,63,58,105,109,97,103,101,92,47,40,63,58,98,109,112,124,103,105,102,124,106,112,101,103,124,106,112,103,124,112,110,103,124,116,105,102,102,124,119,101,98,112,41,124,118,105,100,101,111,92,47,40,63,58,109,112,101,103,124,109,112,52,124,111,103,103,124,119,101,98,109,41,124,97,117,100,105,111,92,47,40,63,58,109,112,51,124,111,103,97,124,111,103,103,124,111,112,117,115,41,41,59,98,97,115,101,54,52,44,91,97,45,122,48,45,57,43,47,93,43,61,42,36,47,105,59,102,117,110,99,116,105,111,110,32,98,110,40,116,44,115,44,101,41,123,105,102,40,48,61,61,61,116,46,108,101,110,103,116,104,41,114,101,116,117,114,110,32,116,59,105,102,40,101,38,38,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,101,41,114,101,116,117,114,110,32,101,40,116,41,59,102,111,114,40,118,97,114,32,110,61,40,110,101,119,32,119,105,110,100,111,119,46,68,79,77,80,97,114,115,101,114,41,46,112,97,114,115,101,70,114,111,109,83,116,114,105,110,103,40,116,44,34,116,101,120,116,47,104,116,109,108,34,41,44,97,61,79,98,106,101,99,116,46,107,101,121,115,40,115,41,44,108,61,91,93,46,115,108,105,99,101,46,99,97,108,108,40,110,46,98,111,100,121,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,34,42,34,41,41,44,105,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,108,91,116,93,44,105,61,110,46,110,111,100,101,78,97,109,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,59,105,102,40,45,49,61,61,61,97,46,105,110,100,101,120,79,102,40,110,46,110,111,100,101,78,97,109,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,41,41,114,101,116,117,114,110,32,110,46,112,97,114,101,110,116,78,111,100,101,46,114,101,109,111,118,101,67,104,105,108,100,40,110,41,44,34,99,111,110,116,105,110,117,101,34,59,118,97,114,32,111,61,91,93,46,115,108,105,99,101,46,99,97,108,108,40,110,46,97,116,116,114,105,98,117,116,101,115,41,44,114,61,91,93,46,99,111,110,99,97,116,40,115,91,34,42,34,93,124,124,91,93,44,115,91,105,93,124,124,91,93,41,59,111,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,116,41,123,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,116,46,110,111,100,101,78,97,109,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,59,105,102,40,45,49,33,61,61,101,46,105,110,100,101,120,79,102,40,110,41,41,114,101,116,117,114,110,45,49,61,61,61,95,110,46,105,110,100,101,120,79,102,40,110,41,124,124,66,111,111,108,101,97,110,40,116,46,110,111,100,101,86,97,108,117,101,46,109,97,116,99,104,40,121,110,41,124,124,116,46,110,111,100,101,86,97,108,117,101,46,109,97,116,99,104,40,69,110,41,41,59,102,111,114,40,118,97,114,32,105,61,101,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,32,105,110,115,116,97,110,99,101,111,102,32,82,101,103,69,120,112,125,41,44,111,61,48,44,114,61,105,46,108,101,110,103,116,104,59,111,60,114,59,111,43,43,41,105,102,40,110,46,109,97,116,99,104,40,105,91,111,93,41,41,114,101,116,117,114,110,33,48,59,114,101,116,117,114,110,33,49,125,41,40,116,44,114,41,124,124,110,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,40,116,46,110,111,100,101,78,97,109,101,41,125,41,125,44,111,61,48,44,114,61,108,46,108,101,110,103,116,104,59,111,60,114,59,111,43,43,41,105,40,111,41,59,114,101,116,117,114,110,32,110,46,98,111,100,121,46,105,110,110,101,114,72,84,77,76,125,118,97,114,32,119,110,61,34,116,111,111,108,116,105,112,34,44,67,110,61,34,98,115,46,116,111,111,108,116,105,112,34,44,84,110,61,34,46,34,43,67,110,44,83,110,61,112,46,102,110,91,119,110,93,44,68,110,61,34,98,115,45,116,111,111,108,116,105,112,34,44,73,110,61,110,101,119,32,82,101,103,69,120,112,40,34,40,94,124,92,92,115,41,34,43,68,110,43,34,92,92,83,43,34,44,34,103,34,41,44,65,110,61,91,34,115,97,110,105,116,105,122,101,34,44,34,119,104,105,116,101,76,105,115,116,34,44,34,115,97,110,105,116,105,122,101,70,110,34,93,44,79,110,61,123,97,110,105,109,97,116,105,111,110,58,34,98,111,111,108,101,97,110,34,44,116,101,109,112,108,97,116,101,58,34,115,116,114,105,110,103,34,44,116,105,116,108,101,58,34,40,115,116,114,105,110,103,124,101,108,101,109,101,110,116,124,102,117,110,99,116,105,111,110,41,34,44,116,114,105,103,103,101,114,58,34,115,116,114,105,110,103,34,44,100,101,108,97,121,58,34,40,110,117,109,98,101,114,124,111,98,106,101,99,116,41,34,44,104,116,109,108,58,34,98,111,111,108,101,97,110,34,44,115,101,108,101,99,116,111,114,58,34,40,115,116,114,105,110,103,124,98,111,111,108,101,97,110,41,34,44,112,108,97,99,101,109,101,110,116,58,34,40,115,116,114,105,110,103,124,102,117,110,99,116,105,111,110,41,34,44,111,102,102,115,101,116,58,34,40,110,117,109,98,101,114,124,115,116,114,105,110,103,124,102,117,110,99,116,105,111,110,41,34,44,99,111,110,116,97,105,110,101,114,58,34,40,115,116,114,105,110,103,124,101,108,101,109,101,110,116,124,98,111,111,108,101,97,110,41,34,44,102,97,108,108,98,97,99,107,80,108,97,99,101,109,101,110,116,58,34,40,115,116,114,105,110,103,124,97,114,114,97,121,41,34,44,98,111,117,110,100,97,114,121,58,34,40,115,116,114,105,110,103,124,101,108,101,109,101,110,116,41,34,44,115,97,110,105,116,105,122,101,58,34,98,111,111,108,101,97,110,34,44,115,97,110,105,116,105,122,101,70,110,58,34,40,110,117,108,108,124,102,117,110,99,116,105,111,110,41,34,44,119,104,105,116,101,76,105,115,116,58,34,111,98,106,101,99,116,34,125,44,78,110,61,123,65,85,84,79,58,34,97,117,116,111,34,44,84,79,80,58,34,116,111,112,34,44,82,73,71,72,84,58,34,114,105,103,104,116,34,44,66,79,84,84,79,77,58,34,98,111,116,116,111,109,34,44,76,69,70,84,58,34,108,101,102,116,34,125,44,107,110,61,123,97,110,105,109,97,116,105,111,110,58,33,48,44,116,101,109,112,108,97,116,101,58,39,60,100,105,118,32,99,108,97,115,115,61,34,116,111,111,108,116,105,112,34,32,114,111,108,101,61,34,116,111,111,108,116,105,112,34,62,60,100,105,118,32,99,108,97,115,115,61,34,97,114,114,111,119,34,62,60,47,100,105,118,62,60,100,105,118,32,99,108,97,115,115,61,34,116,111,111,108,116,105,112,45,105,110,110,101,114,34,62,60,47,100,105,118,62,60,47,100,105,118,62,39,44,116,114,105,103,103,101,114,58,34,104,111,118,101,114,32,102,111,99,117,115,34,44,116,105,116,108,101,58,34,34,44,100,101,108,97,121,58,48,44,104,116,109,108,58,33,49,44,115,101,108,101,99,116,111,114,58,33,49,44,112,108,97,99,101,109,101,110,116,58,34,116,111,112,34,44,111,102,102,115,101,116,58,48,44,99,111,110,116,97,105,110,101,114,58,33,49,44,102,97,108,108,98,97,99,107,80,108,97,99,101,109,101,110,116,58,34,102,108,105,112,34,44,98,111,117,110,100,97,114,121,58,34,115,99,114,111,108,108,80,97,114,101,110,116,34,44,115,97,110,105,116,105,122,101,58,33,48,44,115,97,110,105,116,105,122,101,70,110,58,110,117,108,108,44,119,104,105,116,101,76,105,115,116,58,118,110,125,44,76,110,61,34,115,104,111,119,34,44,120,110,61,34,111,117,116,34,44,80,110,61,123,72,73,68,69,58,34,104,105,100,101,34,43,84,110,44,72,73,68,68,69,78,58,34,104,105,100,100,101,110,34,43,84,110,44,83,72,79,87,58,34,115,104,111,119,34,43,84,110,44,83,72,79,87,78,58,34,115,104,111,119,110,34,43,84,110,44,73,78,83,69,82,84,69,68,58,34,105,110,115,101,114,116,101,100,34,43,84,110,44,67,76,73,67,75,58,34,99,108,105,99,107,34,43,84,110,44,70,79,67,85,83,73,78,58,34,102,111,99,117,115,105,110,34,43,84,110,44,70,79,67,85,83,79,85,84,58,34,102,111,99,117,115,111,117,116,34,43,84,110,44,77,79,85,83,69,69,78,84,69,82,58,34,109,111,117,115,101,101,110,116,101,114,34,43,84,110,44,77,79,85,83,69,76,69,65,86,69,58,34,109,111,117,115,101,108,101,97,118,101,34,43,84,110,125,44,72,110,61,34,102,97,100,101,34,44,106,110,61,34,115,104,111,119,34,44,82,110,61,34,46,116,111,111,108,116,105,112,45,105,110,110,101,114,34,44,70,110,61,34,46,97,114,114,111,119,34,44,77,110,61,34,104,111,118,101,114,34,44,87,110,61,34,102,111,99,117,115,34,44,85,110,61,34,99,108,105,99,107,34,44,66,110,61,34,109,97,110,117,97,108,34,44,113,110,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,105,40,116,44,101,41,123,105,102,40,34,117,110,100,101,102,105,110,101,100,34,61,61,116,121,112,101,111,102,32,98,101,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,66,111,111,116,115,116,114,97,112,39,115,32,116,111,111,108,116,105,112,115,32,114,101,113,117,105,114,101,32,80,111,112,112,101,114,46,106,115,32,40,104,116,116,112,115,58,47,47,112,111,112,112,101,114,46,106,115,46,111,114,103,47,41,34,41,59,116,104,105,115,46,95,105,115,69,110,97,98,108,101,100,61,33,48,44,116,104,105,115,46,95,116,105,109,101,111,117,116,61,48,44,116,104,105,115,46,95,104,111,118,101,114,83,116,97,116,101,61,34,34,44,116,104,105,115,46,95,97,99,116,105,118,101,84,114,105,103,103,101,114,61,123,125,44,116,104,105,115,46,95,112,111,112,112,101,114,61,110,117,108,108,44,116,104,105,115,46,101,108,101,109,101,110,116,61,116,44,116,104,105,115,46,99,111,110,102,105,103,61,116,104,105,115,46,95,103,101,116,67,111,110,102,105,103,40,101,41,44,116,104,105,115,46,116,105,112,61,110,117,108,108,44,116,104,105,115,46,95,115,101,116,76,105,115,116,101,110,101,114,115,40,41,125,118,97,114,32,116,61,105,46,112,114,111,116,111,116,121,112,101,59,114,101,116,117,114,110,32,116,46,101,110,97,98,108,101,61,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,105,115,69,110,97,98,108,101,100,61,33,48,125,44,116,46,100,105,115,97,98,108,101,61,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,105,115,69,110,97,98,108,101,100,61,33,49,125,44,116,46,116,111,103,103,108,101,69,110,97,98,108,101,100,61,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,105,115,69,110,97,98,108,101,100,61,33,116,104,105,115,46,95,105,115,69,110,97,98,108,101,100,125,44,116,46,116,111,103,103,108,101,61,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,116,104,105,115,46,95,105,115,69,110,97,98,108,101,100,41,105,102,40,116,41,123,118,97,114,32,101,61,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,46,68,65,84,65,95,75,69,89,44,110,61,112,40,116,46,99,117,114,114,101,110,116,84,97,114,103,101,116,41,46,100,97,116,97,40,101,41,59,110,124,124,40,110,61,110,101,119,32,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,40,116,46,99,117,114,114,101,110,116,84,97,114,103,101,116,44,116,104,105,115,46,95,103,101,116,68,101,108,101,103,97,116,101,67,111,110,102,105,103,40,41,41,44,112,40,116,46,99,117,114,114,101,110,116,84,97,114,103,101,116,41,46,100,97,116,97,40,101,44,110,41,41,44,110,46,95,97,99,116,105,118,101,84,114,105,103,103,101,114,46,99,108,105,99,107,61,33,110,46,95,97,99,116,105,118,101,84,114,105,103,103,101,114,46,99,108,105,99,107,44,110,46,95,105,115,87,105,116,104,65,99,116,105,118,101,84,114,105,103,103,101,114,40,41,63,110,46,95,101,110,116,101,114,40,110,117,108,108,44,110,41,58,110,46,95,108,101,97,118,101,40,110,117,108,108,44,110,41,125,101,108,115,101,123,105,102,40,112,40,116,104,105,115,46,103,101,116,84,105,112,69,108,101,109,101,110,116,40,41,41,46,104,97,115,67,108,97,115,115,40,106,110,41,41,114,101,116,117,114,110,32,118,111,105,100,32,116,104,105,115,46,95,108,101,97,118,101,40,110,117,108,108,44,116,104,105,115,41,59,116,104,105,115,46,95,101,110,116,101,114,40,110,117,108,108,44,116,104,105,115,41,125,125,44,116,46,100,105,115,112,111,115,101,61,102,117,110,99,116,105,111,110,40,41,123,99,108,101,97,114,84,105,109,101,111,117,116,40,116,104,105,115,46,95,116,105,109,101,111,117,116,41,44,112,46,114,101,109,111,118,101,68,97,116,97,40,116,104,105,115,46,101,108,101,109,101,110,116,44,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,46,68,65,84,65,95,75,69,89,41,44,112,40,116,104,105,115,46,101,108,101,109,101,110,116,41,46,111,102,102,40,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,46,69,86,69,78,84,95,75,69,89,41,44,112,40,116,104,105,115,46,101,108,101,109,101,110,116,41,46,99,108,111,115,101,115,116,40,34,46,109,111,100,97,108,34,41,46,111,102,102,40,34,104,105,100,101,46,98,115,46,109,111,100,97,108,34,41,44,116,104,105,115,46,116,105,112,38,38,112,40,116,104,105,115,46,116,105,112,41,46,114,101,109,111,118,101,40,41,44,116,104,105,115,46,95,105,115,69,110,97,98,108,101,100,61,110,117,108,108,44,116,104,105,115,46,95,116,105,109,101,111,117,116,61,110,117,108,108,44,116,104,105,115,46,95,104,111,118,101,114,83,116,97,116,101,61,110,117,108,108,44,40,116,104,105,115,46,95,97,99,116,105,118,101,84,114,105,103,103,101,114,61,110,117,108,108,41,33,61,61,116,104,105,115,46,95,112,111,112,112,101,114,38,38,116,104,105,115,46,95,112,111,112,112,101,114,46,100,101,115,116,114,111,121,40,41,44,116,104,105,115,46,95,112,111,112,112,101,114,61,110,117,108,108,44,116,104,105,115,46,101,108,101,109,101,110,116,61,110,117,108,108,44,116,104,105,115,46,99,111,110,102,105,103,61,110,117,108,108,44,116,104,105,115,46,116,105,112,61,110,117,108,108,125,44,116,46,115,104,111,119,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,59,105,102,40,34,110,111,110,101,34,61,61,61,112,40,116,104,105,115,46,101,108,101,109,101,110,116,41,46,99,115,115,40,34,100,105,115,112,108,97,121,34,41,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,80,108,101,97,115,101,32,117,115,101,32,115,104,111,119,32,111,110,32,118,105,115,105,98,108,101,32,101,108,101,109,101,110,116,115,34,41,59,118,97,114,32,116,61,112,46,69,118,101,110,116,40,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,46,69,118,101,110,116,46,83,72,79,87,41,59,105,102,40,116,104,105,115,46,105,115,87,105,116,104,67,111,110,116,101,110,116,40,41,38,38,116,104,105,115,46,95,105,115,69,110,97,98,108,101,100,41,123,112,40,116,104,105,115,46,101,108,101,109,101,110,116,41,46,116,114,105,103,103,101,114,40,116,41,59,118,97,114,32,110,61,109,46,102,105,110,100,83,104,97,100,111,119,82,111,111,116,40,116,104,105,115,46,101,108,101,109,101,110,116,41,44,105,61,112,46,99,111,110,116,97,105,110,115,40,110,117,108,108,33,61,61,110,63,110,58,116,104,105,115,46,101,108,101,109,101,110,116,46,111,119,110,101,114,68,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,44,116,104,105,115,46,101,108,101,109,101,110,116,41,59,105,102,40,116,46,105,115,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,40,41,124,124,33,105,41,114,101,116,117,114,110,59,118,97,114,32,111,61,116,104,105,115,46,103,101,116,84,105,112,69,108,101,109,101,110,116,40,41,44,114,61,109,46,103,101,116,85,73,68,40,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,46,78,65,77,69,41,59,111,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,105,100,34,44,114,41,44,116,104,105,115,46,101,108,101,109,101,110,116,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,97,114,105,97,45,100,101,115,99,114,105,98,101,100,98,121,34,44,114,41,44,116,104,105,115,46,115,101,116,67,111,110,116,101,110,116,40,41,44,116,104,105,115,46,99,111,110,102,105,103,46,97,110,105,109,97,116,105,111,110,38,38,112,40,111,41,46,97,100,100,67,108,97,115,115,40,72,110,41,59,118,97,114,32,115,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,104,105,115,46,99,111,110,102,105,103,46,112,108,97,99,101,109,101,110,116,63,116,104,105,115,46,99,111,110,102,105,103,46,112,108,97,99,101,109,101,110,116,46,99,97,108,108,40,116,104,105,115,44,111,44,116,104,105,115,46,101,108,101,109,101,110,116,41,58,116,104,105,115,46,99,111,110,102,105,103,46,112,108,97,99,101,109,101,110,116,44,97,61,116,104,105,115,46,95,103,101,116,65,116,116,97,99,104,109,101,110,116,40,115,41,59,116,104,105,115,46,97,100,100,65,116,116,97,99,104,109,101,110,116,67,108,97,115,115,40,97,41,59,118,97,114,32,108,61,116,104,105,115,46,95,103,101,116,67,111,110,116,97,105,110,101,114,40,41,59,112,40,111,41,46,100,97,116,97,40,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,46,68,65,84,65,95,75,69,89,44,116,104,105,115,41,44,112,46,99,111,110,116,97,105,110,115,40,116,104,105,115,46,101,108,101,109,101,110,116,46,111,119,110,101,114,68,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,44,116,104,105,115,46,116,105,112,41,124,124,112,40,111,41,46,97,112,112,101,110,100,84,111,40,108,41,44,112,40,116,104,105,115,46,101,108,101,109,101,110,116,41,46,116,114,105,103,103,101,114,40,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,46,69,118,101,110,116,46,73,78,83,69,82,84,69,68,41,44,116,104,105,115,46,95,112,111,112,112,101,114,61,110,101,119,32,98,101,40,116,104,105,115,46,101,108,101,109,101,110,116,44,111,44,123,112,108,97,99,101,109,101,110,116,58,97,44,109,111,100,105,102,105,101,114,115,58,123,111,102,102,115,101,116,58,116,104,105,115,46,95,103,101,116,79,102,102,115,101,116,40,41,44,102,108,105,112,58,123,98,101,104,97,118,105,111,114,58,116,104,105,115,46,99,111,110,102,105,103,46,102,97,108,108,98,97,99,107,80,108,97,99,101,109,101,110,116,125,44,97,114,114,111,119,58,123,101,108,101,109,101,110,116,58,70,110,125,44,112,114,101,118,101,110,116,79,118,101,114,102,108,111,119,58,123,98,111,117,110,100,97,114,105,101,115,69,108,101,109,101,110,116,58,116,104,105,115,46,99,111,110,102,105,103,46,98,111,117,110,100,97,114,121,125,125,44,111,110,67,114,101,97,116,101,58,102,117,110,99,116,105,111,110,40,116,41,123,116,46,111,114,105,103,105,110,97,108,80,108,97,99,101,109,101,110,116,33,61,61,116,46,112,108,97,99,101,109,101,110,116,38,38,101,46,95,104,97,110,100,108,101,80,111,112,112,101,114,80,108,97,99,101,109,101,110,116,67,104,97,110,103,101,40,116,41,125,44,111,110,85,112,100,97,116,101,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,46,95,104,97,110,100,108,101,80,111,112,112,101,114,80,108,97,99,101,109,101,110,116,67,104,97,110,103,101,40,116,41,125,125,41,44,112,40,111,41,46,97,100,100,67,108,97,115,115,40,106,110,41,44,34,111,110,116,111,117,99,104,115,116,97,114,116,34,105,110,32,100,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,38,38,112,40,100,111,99,117,109,101,110,116,46,98,111,100,121,41,46,99,104,105,108,100,114,101,110,40,41,46,111,110,40,34,109,111,117,115,101,111,118,101,114,34,44,110,117,108,108,44,112,46,110,111,111,112,41,59,118,97,114,32,99,61,102,117,110,99,116,105,111,110,40,41,123,101,46,99,111,110,102,105,103,46,97,110,105,109,97,116,105,111,110,38,38,101,46,95,102,105,120,84,114,97,110,115,105,116,105,111,110,40,41,59,118,97,114,32,116,61,101,46,95,104,111,118,101,114,83,116,97,116,101,59,101,46,95,104,111,118,101,114,83,116,97,116,101,61,110,117,108,108,44,112,40,101,46,101,108,101,109,101,110,116,41,46,116,114,105,103,103,101,114,40,101,46,99,111,110,115,116,114,117,99,116,111,114,46,69,118,101,110,116,46,83,72,79,87,78,41,44,116,61,61,61,120,110,38,38,101,46,95,108,101,97,118,101,40,110,117,108,108,44,101,41,125,59,105,102,40,112,40,116,104,105,115,46,116,105,112,41,46,104,97,115,67,108,97,115,115,40,72,110,41,41,123,118,97,114,32,104,61,109,46,103,101,116,84,114,97,110,115,105,116,105,111,110,68,117,114,97,116,105,111,110,70,114,111,109,69,108,101,109,101,110,116,40,116,104,105,115,46,116,105,112,41,59,112,40,116,104,105,115,46,116,105,112,41,46,111,110,101,40,109,46,84,82,65,78,83,73,84,73,79,78,95,69,78,68,44,99,41,46,101,109,117,108,97,116,101,84,114,97,110,115,105,116,105,111,110,69,110,100,40,104,41,125,101,108,115,101,32,99,40,41,125,125,44,116,46,104,105,100,101,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,44,110,61,116,104,105,115,46,103,101,116,84,105,112,69,108,101,109,101,110,116,40,41,44,105,61,112,46,69,118,101,110,116,40,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,46,69,118,101,110,116,46,72,73,68,69,41,44,111,61,102,117,110,99,116,105,111,110,40,41,123,101,46,95,104,111,118,101,114,83,116,97,116,101,33,61,61,76,110,38,38,110,46,112,97,114,101,110,116,78,111,100,101,38,38,110,46,112,97,114,101,110,116,78,111,100,101,46,114,101,109,111,118,101,67,104,105,108,100,40,110,41,44,101,46,95,99,108,101,97,110,84,105,112,67,108,97,115,115,40,41,44,101,46,101,108,101,109,101,110,116,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,40,34,97,114,105,97,45,100,101,115,99,114,105,98,101,100,98,121,34,41,44,112,40,101,46,101,108,101,109,101,110,116,41,46,116,114,105,103,103,101,114,40,101,46,99,111,110,115,116,114,117,99,116,111,114,46,69,118,101,110,116,46,72,73,68,68,69,78,41,44,110,117,108,108,33,61,61,101,46,95,112,111,112,112,101,114,38,38,101,46,95,112,111,112,112,101,114,46,100,101,115,116,114,111,121,40,41,44,116,38,38,116,40,41,125,59,105,102,40,112,40,116,104,105,115,46,101,108,101,109,101,110,116,41,46,116,114,105,103,103,101,114,40,105,41,44,33,105,46,105,115,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,40,41,41,123,105,102,40,112,40,110,41,46,114,101,109,111,118,101,67,108,97,115,115,40,106,110,41,44,34,111,110,116,111,117,99,104,115,116,97,114,116,34,105,110,32,100,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,38,38,112,40,100,111,99,117,109,101,110,116,46,98,111,100,121,41,46,99,104,105,108,100,114,101,110,40,41,46,111,102,102,40,34,109,111,117,115,101,111,118,101,114,34,44,110,117,108,108,44,112,46,110,111,111,112,41,44,116,104,105,115,46,95,97,99,116,105,118,101,84,114,105,103,103,101,114,91,85,110,93,61,33,49,44,116,104,105,115,46,95,97,99,116,105,118,101,84,114,105,103,103,101,114,91,87,110,93,61,33,49,44,116,104,105,115,46,95,97,99,116,105,118,101,84,114,105,103,103,101,114,91,77,110,93,61,33,49,44,112,40,116,104,105,115,46,116,105,112,41,46,104,97,115,67,108,97,115,115,40,72,110,41,41,123,118,97,114,32,114,61,109,46,103,101,116,84,114,97,110,115,105,116,105,111,110,68,117,114,97,116,105,111,110,70,114,111,109,69,108,101,109,101,110,116,40,110,41,59,112,40,110,41,46,111,110,101,40,109,46,84,82,65,78,83,73,84,73,79,78,95,69,78,68,44,111,41,46,101,109,117,108,97,116,101,84,114,97,110,115,105,116,105,111,110,69,110,100,40,114,41,125,101,108,115,101,32,111,40,41,59,116,104,105,115,46,95,104,111,118,101,114,83,116,97,116,101,61,34,34,125,125,44,116,46,117,112,100,97,116,101,61,102,117,110,99,116,105,111,110,40,41,123,110,117,108,108,33,61,61,116,104,105,115,46,95,112,111,112,112,101,114,38,38,116,104,105,115,46,95,112,111,112,112,101,114,46,115,99,104,101,100,117,108,101,85,112,100,97,116,101,40,41,125,44,116,46,105,115,87,105,116,104,67,111,110,116,101,110,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,66,111,111,108,101,97,110,40,116,104,105,115,46,103,101,116,84,105,116,108,101,40,41,41,125,44,116,46,97,100,100,65,116,116,97,99,104,109,101,110,116,67,108,97,115,115,61,102,117,110,99,116,105,111,110,40,116,41,123,112,40,116,104,105,115,46,103,101,116,84,105,112,69,108,101,109,101,110,116,40,41,41,46,97,100,100,67,108,97,115,115,40,68,110,43,34,45,34,43,116,41,125,44,116,46,103,101,116,84,105,112,69,108,101,109,101,110,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,116,105,112,61,116,104,105,115,46,116,105,112,124,124,112,40,116,104,105,115,46,99,111,110,102,105,103,46,116,101,109,112,108,97,116,101,41,91,48,93,44,116,104,105,115,46,116,105,112,125,44,116,46,115,101,116,67,111,110,116,101,110,116,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,103,101,116,84,105,112,69,108,101,109,101,110,116,40,41,59,116,104,105,115,46,115,101,116,69,108,101,109,101,110,116,67,111,110,116,101,110,116,40,112,40,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,82,110,41,41,44,116,104,105,115,46,103,101,116,84,105,116,108,101,40,41,41,44,112,40,116,41,46,114,101,109,111,118,101,67,108,97,115,115,40,72,110,43,34,32,34,43,106,110,41,125,44,116,46,115,101,116,69,108,101,109,101,110,116,67,111,110,116,101,110,116,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,34,111,98,106,101,99,116,34,33,61,116,121,112,101,111,102,32,101,124,124,33,101,46,110,111,100,101,84,121,112,101,38,38,33,101,46,106,113,117,101,114,121,63,116,104,105,115,46,99,111,110,102,105,103,46,104,116,109,108,63,40,116,104,105,115,46,99,111,110,102,105,103,46,115,97,110,105,116,105,122,101,38,38,40,101,61,98,110,40,101,44,116,104,105,115,46,99,111,110,102,105,103,46,119,104,105,116,101,76,105,115,116,44,116,104,105,115,46,99,111,110,102,105,103,46,115,97,110,105,116,105,122,101,70,110,41,41,44,116,46,104,116,109,108,40,101,41,41,58,116,46,116,101,120,116,40,101,41,58,116,104,105,115,46,99,111,110,102,105,103,46,104,116,109,108,63,112,40,101,41,46,112,97,114,101,110,116,40,41,46,105,115,40,116,41,124,124,116,46,101,109,112,116,121,40,41,46,97,112,112,101,110,100,40,101,41,58,116,46,116,101,120,116,40,112,40,101,41,46,116,101,120,116,40,41,41,125,44,116,46,103,101,116,84,105,116,108,101,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,101,108,101,109,101,110,116,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,100,97,116,97,45,111,114,105,103,105,110,97,108,45,116,105,116,108,101,34,41,59,114,101,116,117,114,110,32,116,124,124,40,116,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,104,105,115,46,99,111,110,102,105,103,46,116,105,116,108,101,63,116,104,105,115,46,99,111,110,102,105,103,46,116,105,116,108,101,46,99,97,108,108,40,116,104,105,115,46,101,108,101,109,101,110,116,41,58,116,104,105,115,46,99,111,110,102,105,103,46,116,105,116,108,101,41,44,116,125,44,116,46,95,103,101,116,79,102,102,115,101,116,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,44,116,61,123,125,59,114,101,116,117,114,110,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,104,105,115,46,99,111,110,102,105,103,46,111,102,102,115,101,116,63,116,46,102,110,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,111,102,102,115,101,116,115,61,108,40,123,125,44,116,46,111,102,102,115,101,116,115,44,101,46,99,111,110,102,105,103,46,111,102,102,115,101,116,40,116,46,111,102,102,115,101,116,115,44,101,46,101,108,101,109,101,110,116,41,124,124,123,125,41,44,116,125,58,116,46,111,102,102,115,101,116,61,116,104,105,115,46,99,111,110,102,105,103,46,111,102,102,115,101,116,44,116,125,44,116,46,95,103,101,116,67,111,110,116,97,105,110,101,114,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,33,49,61,61,61,116,104,105,115,46,99,111,110,102,105,103,46,99,111,110,116,97,105,110,101,114,63,100,111,99,117,109,101,110,116,46,98,111,100,121,58,109,46,105,115,69,108,101,109,101,110,116,40,116,104,105,115,46,99,111,110,102,105,103,46,99,111,110,116,97,105,110,101,114,41,63,112,40,116,104,105,115,46,99,111,110,102,105,103,46,99,111,110,116,97,105,110,101,114,41,58,112,40,100,111,99,117,109,101,110,116,41,46,102,105,110,100,40,116,104,105,115,46,99,111,110,102,105,103,46,99,111,110,116,97,105,110,101,114,41,125,44,116,46,95,103,101,116,65,116,116,97,99,104,109,101,110,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,78,110,91,116,46,116,111,85,112,112,101,114,67,97,115,101,40,41,93,125,44,116,46,95,115,101,116,76,105,115,116,101,110,101,114,115,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,105,61,116,104,105,115,59,116,104,105,115,46,99,111,110,102,105,103,46,116,114,105,103,103,101,114,46,115,112,108,105,116,40,34,32,34,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,34,99,108,105,99,107,34,61,61,61,116,41,112,40,105,46,101,108,101,109,101,110,116,41,46,111,110,40,105,46,99,111,110,115,116,114,117,99,116,111,114,46,69,118,101,110,116,46,67,76,73,67,75,44,105,46,99,111,110,102,105,103,46,115,101,108,101,99,116,111,114,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,105,46,116,111,103,103,108,101,40,116,41,125,41,59,101,108,115,101,32,105,102,40,116,33,61,61,66,110,41,123,118,97,114,32,101,61,116,61,61,61,77,110,63,105,46,99,111,110,115,116,114,117,99,116,111,114,46,69,118,101,110,116,46,77,79,85,83,69,69,78,84,69,82,58,105,46,99,111,110,115,116,114,117,99,116,111,114,46,69,118,101,110,116,46,70,79,67,85,83,73,78,44,110,61,116,61,61,61,77,110,63,105,46,99,111,110,115,116,114,117,99,116,111,114,46,69,118,101,110,116,46,77,79,85,83,69,76,69,65,86,69,58,105,46,99,111,110,115,116,114,117,99,116,111,114,46,69,118,101,110,116,46,70,79,67,85,83,79,85,84,59,112,40,105,46,101,108,101,109,101,110,116,41,46,111,110,40,101,44,105,46,99,111,110,102,105,103,46,115,101,108,101,99,116,111,114,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,105,46,95,101,110,116,101,114,40,116,41,125,41,46,111,110,40,110,44,105,46,99,111,110,102,105,103,46,115,101,108,101,99,116,111,114,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,105,46,95,108,101,97,118,101,40,116,41,125,41,125,125,41,44,112,40,116,104,105,115,46,101,108,101,109,101,110,116,41,46,99,108,111,115,101,115,116,40,34,46,109,111,100,97,108,34,41,46,111,110,40,34,104,105,100,101,46,98,115,46,109,111,100,97,108,34,44,102,117,110,99,116,105,111,110,40,41,123,105,46,101,108,101,109,101,110,116,38,38,105,46,104,105,100,101,40,41,125,41,44,116,104,105,115,46,99,111,110,102,105,103,46,115,101,108,101,99,116,111,114,63,116,104,105,115,46,99,111,110,102,105,103,61,108,40,123,125,44,116,104,105,115,46,99,111,110,102,105,103,44,123,116,114,105,103,103,101,114,58,34,109,97,110,117,97,108,34,44,115,101,108,101,99,116,111,114,58,34,34,125,41,58,116,104,105,115,46,95,102,105,120,84,105,116,108,101,40,41,125,44,116,46,95,102,105,120,84,105,116,108,101,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,121,112,101,111,102,32,116,104,105,115,46,101,108,101,109,101,110,116,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,100,97,116,97,45,111,114,105,103,105,110,97,108,45,116,105,116,108,101,34,41,59,40,116,104,105,115,46,101,108,101,109,101,110,116,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,116,105,116,108,101,34,41,124,124,34,115,116,114,105,110,103,34,33,61,61,116,41,38,38,40,116,104,105,115,46,101,108,101,109,101,110,116,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,100,97,116,97,45,111,114,105,103,105,110,97,108,45,116,105,116,108,101,34,44,116,104,105,115,46,101,108,101,109,101,110,116,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,116,105,116,108,101,34,41,124,124,34,34,41,44,116,104,105,115,46,101,108,101,109,101,110,116,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,116,105,116,108,101,34,44,34,34,41,41,125,44,116,46,95,101,110,116,101,114,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,46,68,65,84,65,95,75,69,89,59,40,101,61,101,124,124,112,40,116,46,99,117,114,114,101,110,116,84,97,114,103,101,116,41,46,100,97,116,97,40,110,41,41,124,124,40,101,61,110,101,119,32,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,40,116,46,99,117,114,114,101,110,116,84,97,114,103,101,116,44,116,104,105,115,46,95,103,101,116,68,101,108,101,103,97,116,101,67,111,110,102,105,103,40,41,41,44,112,40,116,46,99,117,114,114,101,110,116,84,97,114,103,101,116,41,46,100,97,116,97,40,110,44,101,41,41,44,116,38,38,40,101,46,95,97,99,116,105,118,101,84,114,105,103,103,101,114,91,34,102,111,99,117,115,105,110,34,61,61,61,116,46,116,121,112,101,63,87,110,58,77,110,93,61,33,48,41,44,112,40,101,46,103,101,116,84,105,112,69,108,101,109,101,110,116,40,41,41,46,104,97,115,67,108,97,115,115,40,106,110,41,124,124,101,46,95,104,111,118,101,114,83,116,97,116,101,61,61,61,76,110,63,101,46,95,104,111,118,101,114,83,116,97,116,101,61,76,110,58,40,99,108,101,97,114,84,105,109,101,111,117,116,40,101,46,95,116,105,109,101,111,117,116,41,44,101,46,95,104,111,118,101,114,83,116,97,116,101,61,76,110,44,101,46,99,111,110,102,105,103,46,100,101,108,97,121,38,38,101,46,99,111,110,102,105,103,46,100,101,108,97,121,46,115,104,111,119,63,101,46,95,116,105,109,101,111,117,116,61,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,40,41,123,101,46,95,104,111,118,101,114,83,116,97,116,101,61,61,61,76,110,38,38,101,46,115,104,111,119,40,41,125,44,101,46,99,111,110,102,105,103,46,100,101,108,97,121,46,115,104,111,119,41,58,101,46,115,104,111,119,40,41,41,125,44,116,46,95,108,101,97,118,101,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,46,68,65,84,65,95,75,69,89,59,40,101,61,101,124,124,112,40,116,46,99,117,114,114,101,110,116,84,97,114,103,101,116,41,46,100,97,116,97,40,110,41,41,124,124,40,101,61,110,101,119,32,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,40,116,46,99,117,114,114,101,110,116,84,97,114,103,101,116,44,116,104,105,115,46,95,103,101,116,68,101,108,101,103,97,116,101,67,111,110,102,105,103,40,41,41,44,112,40,116,46,99,117,114,114,101,110,116,84,97,114,103,101,116,41,46,100,97,116,97,40,110,44,101,41,41,44,116,38,38,40,101,46,95,97,99,116,105,118,101,84,114,105,103,103,101,114,91,34,102,111,99,117,115,111,117,116,34,61,61,61,116,46,116,121,112,101,63,87,110,58,77,110,93,61,33,49,41,44,101,46,95,105,115,87,105,116,104,65,99,116,105,118,101,84,114,105,103,103,101,114,40,41,124,124,40,99,108,101,97,114,84,105,109,101,111,117,116,40,101,46,95,116,105,109,101,111,117,116,41,44,101,46,95,104,111,118,101,114,83,116,97,116,101,61,120,110,44,101,46,99,111,110,102,105,103,46,100,101,108,97,121,38,38,101,46,99,111,110,102,105,103,46,100,101,108,97,121,46,104,105,100,101,63,101,46,95,116,105,109,101,111,117,116,61,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,40,41,123,101,46,95,104,111,118,101,114,83,116,97,116,101,61,61,61,120,110,38,38,101,46,104,105,100,101,40,41,125,44,101,46,99,111,110,102,105,103,46,100,101,108,97,121,46,104,105,100,101,41,58,101,46,104,105,100,101,40,41,41,125,44,116,46,95,105,115,87,105,116,104,65,99,116,105,118,101,84,114,105,103,103,101,114,61,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,118,97,114,32,116,32,105,110,32,116,104,105,115,46,95,97,99,116,105,118,101,84,114,105,103,103,101,114,41,105,102,40,116,104,105,115,46,95,97,99,116,105,118,101,84,114,105,103,103,101,114,91,116,93,41,114,101,116,117,114,110,33,48,59,114,101,116,117,114,110,33,49,125,44,116,46,95,103,101,116,67,111,110,102,105,103,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,112,40,116,104,105,115,46,101,108,101,109,101,110,116,41,46,100,97,116,97,40,41,59,114,101,116,117,114,110,32,79,98,106,101,99,116,46,107,101,121,115,40,101,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,116,41,123,45,49,33,61,61,65,110,46,105,110,100,101,120,79,102,40,116,41,38,38,100,101,108,101,116,101,32,101,91,116,93,125,41,44,34,110,117,109,98,101,114,34,61,61,116,121,112,101,111,102,40,116,61,108,40,123,125,44,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,46,68,101,102,97,117,108,116,44,101,44,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,116,38,38,116,63,116,58,123,125,41,41,46,100,101,108,97,121,38,38,40,116,46,100,101,108,97,121,61,123,115,104,111,119,58,116,46,100,101,108,97,121,44,104,105,100,101,58,116,46,100,101,108,97,121,125,41,44,34,110,117,109,98,101,114,34,61,61,116,121,112,101,111,102,32,116,46,116,105,116,108,101,38,38,40,116,46,116,105,116,108,101,61,116,46,116,105,116,108,101,46,116,111,83,116,114,105,110,103,40,41,41,44,34,110,117,109,98,101,114,34,61,61,116,121,112,101,111,102,32,116,46,99,111,110,116,101,110,116,38,38,40,116,46,99,111,110,116,101,110,116,61,116,46,99,111,110,116,101,110,116,46,116,111,83,116,114,105,110,103,40,41,41,44,109,46,116,121,112,101,67,104,101,99,107,67,111,110,102,105,103,40,119,110,44,116,44,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,46,68,101,102,97,117,108,116,84,121,112,101,41,44,116,46,115,97,110,105,116,105,122,101,38,38,40,116,46,116,101,109,112,108,97,116,101,61,98,110,40,116,46,116,101,109,112,108,97,116,101,44,116,46,119,104,105,116,101,76,105,115,116,44,116,46,115,97,110,105,116,105,122,101,70,110,41,41,44,116,125,44,116,46,95,103,101,116,68,101,108,101,103,97,116,101,67,111,110,102,105,103,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,123,125,59,105,102,40,116,104,105,115,46,99,111,110,102,105,103,41,102,111,114,40,118,97,114,32,101,32,105,110,32,116,104,105,115,46,99,111,110,102,105,103,41,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,46,68,101,102,97,117,108,116,91,101,93,33,61,61,116,104,105,115,46,99,111,110,102,105,103,91,101,93,38,38,40,116,91,101,93,61,116,104,105,115,46,99,111,110,102,105,103,91,101,93,41,59,114,101,116,117,114,110,32,116,125,44,116,46,95,99,108,101,97,110,84,105,112,67,108,97,115,115,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,112,40,116,104,105,115,46,103,101,116,84,105,112,69,108,101,109,101,110,116,40,41,41,44,101,61,116,46,97,116,116,114,40,34,99,108,97,115,115,34,41,46,109,97,116,99,104,40,73,110,41,59,110,117,108,108,33,61,61,101,38,38,101,46,108,101,110,103,116,104,38,38,116,46,114,101,109,111,118,101,67,108,97,115,115,40,101,46,106,111,105,110,40,34,34,41,41,125,44,116,46,95,104,97,110,100,108,101,80,111,112,112,101,114,80,108,97,99,101,109,101,110,116,67,104,97,110,103,101,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,46,105,110,115,116,97,110,99,101,59,116,104,105,115,46,116,105,112,61,101,46,112,111,112,112,101,114,44,116,104,105,115,46,95,99,108,101,97,110,84,105,112,67,108,97,115,115,40,41,44,116,104,105,115,46,97,100,100,65,116,116,97,99,104,109,101,110,116,67,108,97,115,115,40,116,104,105,115,46,95,103,101,116,65,116,116,97,99,104,109,101,110,116,40,116,46,112,108,97,99,101,109,101,110,116,41,41,125,44,116,46,95,102,105,120,84,114,97,110,115,105,116,105,111,110,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,103,101,116,84,105,112,69,108,101,109,101,110,116,40,41,44,101,61,116,104,105,115,46,99,111,110,102,105,103,46,97,110,105,109,97,116,105,111,110,59,110,117,108,108,61,61,61,116,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,120,45,112,108,97,99,101,109,101,110,116,34,41,38,38,40,112,40,116,41,46,114,101,109,111,118,101,67,108,97,115,115,40,72,110,41,44,116,104,105,115,46,99,111,110,102,105,103,46,97,110,105,109,97,116,105,111,110,61,33,49,44,116,104,105,115,46,104,105,100,101,40,41,44,116,104,105,115,46,115,104,111,119,40,41,44,116,104,105,115,46,99,111,110,102,105,103,46,97,110,105,109,97,116,105,111,110,61,101,41,125,44,105,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,112,40,116,104,105,115,41,46,100,97,116,97,40,67,110,41,44,101,61,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,110,38,38,110,59,105,102,40,40,116,124,124,33,47,100,105,115,112,111,115,101,124,104,105,100,101,47,46,116,101,115,116,40,110,41,41,38,38,40,116,124,124,40,116,61,110,101,119,32,105,40,116,104,105,115,44,101,41,44,112,40,116,104,105,115,41,46,100,97,116,97,40,67,110,44,116,41,41,44,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,110,41,41,123,105,102,40,34,117,110,100,101,102,105,110,101,100,34,61,61,116,121,112,101,111,102,32,116,91,110,93,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,39,78,111,32,109,101,116,104,111,100,32,110,97,109,101,100,32,34,39,43,110,43,39,34,39,41,59,116,91,110,93,40,41,125,125,41,125,44,115,40,105,44,110,117,108,108,44,91,123,107,101,121,58,34,86,69,82,83,73,79,78,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,34,52,46,51,46,49,34,125,125,44,123,107,101,121,58,34,68,101,102,97,117,108,116,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,107,110,125,125,44,123,107,101,121,58,34,78,65,77,69,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,119,110,125,125,44,123,107,101,121,58,34,68,65,84,65,95,75,69,89,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,67,110,125,125,44,123,107,101,121,58,34,69,118,101,110,116,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,80,110,125,125,44,123,107,101,121,58,34,69,86,69,78,84,95,75,69,89,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,84,110,125,125,44,123,107,101,121,58,34,68,101,102,97,117,108,116,84,121,112,101,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,79,110,125,125,93,41,44,105,125,40,41,59,112,46,102,110,91,119,110,93,61,113,110,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,44,112,46,102,110,91,119,110,93,46,67,111,110,115,116,114,117,99,116,111,114,61,113,110,44,112,46,102,110,91,119,110,93,46,110,111,67,111,110,102,108,105,99,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,112,46,102,110,91,119,110,93,61,83,110,44,113,110,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,125,59,118,97,114,32,75,110,61,34,112,111,112,111,118,101,114,34,44,81,110,61,34,98,115,46,112,111,112,111,118,101,114,34,44,86,110,61,34,46,34,43,81,110,44,89,110,61,112,46,102,110,91,75,110,93,44,122,110,61,34,98,115,45,112,111,112,111,118,101,114,34,44,88,110,61,110,101,119,32,82,101,103,69,120,112,40,34,40,94,124,92,92,115,41,34,43,122,110,43,34,92,92,83,43,34,44,34,103,34,41,44,71,110,61,108,40,123,125,44,113,110,46,68,101,102,97,117,108,116,44,123,112,108,97,99,101,109,101,110,116,58,34,114,105,103,104,116,34,44,116,114,105,103,103,101,114,58,34,99,108,105,99,107,34,44,99,111,110,116,101,110,116,58,34,34,44,116,101,109,112,108,97,116,101,58,39,60,100,105,118,32,99,108,97,115,115,61,34,112,111,112,111,118,101,114,34,32,114,111,108,101,61,34,116,111,111,108,116,105,112,34,62,60,100,105,118,32,99,108,97,115,115,61,34,97,114,114,111,119,34,62,60,47,100,105,118,62,60,104,51,32,99,108,97,115,115,61,34,112,111,112,111,118,101,114,45,104,101,97,100,101,114,34,62,60,47,104,51,62,60,100,105,118,32,99,108,97,115,115,61,34,112,111,112,111,118,101,114,45,98,111,100,121,34,62,60,47,100,105,118,62,60,47,100,105,118,62,39,125,41,44,36,110,61,108,40,123,125,44,113,110,46,68,101,102,97,117,108,116,84,121,112,101,44,123,99,111,110,116,101,110,116,58,34,40,115,116,114,105,110,103,124,101,108,101,109,101,110,116,124,102,117,110,99,116,105,111,110,41,34,125,41,44,74,110,61,34,102,97,100,101,34,44,90,110,61,34,115,104,111,119,34,44,116,105,61,34,46,112,111,112,111,118,101,114,45,104,101,97,100,101,114,34,44,101,105,61,34,46,112,111,112,111,118,101,114,45,98,111,100,121,34,44,110,105,61,123,72,73,68,69,58,34,104,105,100,101,34,43,86,110,44,72,73,68,68,69,78,58,34,104,105,100,100,101,110,34,43,86,110,44,83,72,79,87,58,34,115,104,111,119,34,43,86,110,44,83,72,79,87,78,58,34,115,104,111,119,110,34,43,86,110,44,73,78,83,69,82,84,69,68,58,34,105,110,115,101,114,116,101,100,34,43,86,110,44,67,76,73,67,75,58,34,99,108,105,99,107,34,43,86,110,44,70,79,67,85,83,73,78,58,34,102,111,99,117,115,105,110,34,43,86,110,44,70,79,67,85,83,79,85,84,58,34,102,111,99,117,115,111,117,116,34,43,86,110,44,77,79,85,83,69,69,78,84,69,82,58,34,109,111,117,115,101,101,110,116,101,114,34,43,86,110,44,77,79,85,83,69,76,69,65,86,69,58,34,109,111,117,115,101,108,101,97,118,101,34,43,86,110,125,44,105,105,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,44,110,59,102,117,110,99,116,105,111,110,32,105,40,41,123,114,101,116,117,114,110,32,116,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,124,124,116,104,105,115,125,110,61,116,44,40,101,61,105,41,46,112,114,111,116,111,116,121,112,101,61,79,98,106,101,99,116,46,99,114,101,97,116,101,40,110,46,112,114,111,116,111,116,121,112,101,41,44,40,101,46,112,114,111,116,111,116,121,112,101,46,99,111,110,115,116,114,117,99,116,111,114,61,101,41,46,95,95,112,114,111,116,111,95,95,61,110,59,118,97,114,32,111,61,105,46,112,114,111,116,111,116,121,112,101,59,114,101,116,117,114,110,32,111,46,105,115,87,105,116,104,67,111,110,116,101,110,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,103,101,116,84,105,116,108,101,40,41,124,124,116,104,105,115,46,95,103,101,116,67,111,110,116,101,110,116,40,41,125,44,111,46,97,100,100,65,116,116,97,99,104,109,101,110,116,67,108,97,115,115,61,102,117,110,99,116,105,111,110,40,116,41,123,112,40,116,104,105,115,46,103,101,116,84,105,112,69,108,101,109,101,110,116,40,41,41,46,97,100,100,67,108,97,115,115,40,122,110,43,34,45,34,43,116,41,125,44,111,46,103,101,116,84,105,112,69,108,101,109,101,110,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,116,105,112,61,116,104,105,115,46,116,105,112,124,124,112,40,116,104,105,115,46,99,111,110,102,105,103,46,116,101,109,112,108,97,116,101,41,91,48,93,44,116,104,105,115,46,116,105,112,125,44,111,46,115,101,116,67,111,110,116,101,110,116,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,112,40,116,104,105,115,46,103,101,116,84,105,112,69,108,101,109,101,110,116,40,41,41,59,116,104,105,115,46,115,101,116,69,108,101,109,101,110,116,67,111,110,116,101,110,116,40,116,46,102,105,110,100,40,116,105,41,44,116,104,105,115,46,103,101,116,84,105,116,108,101,40,41,41,59,118,97,114,32,101,61,116,104,105,115,46,95,103,101,116,67,111,110,116,101,110,116,40,41,59,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,101,38,38,40,101,61,101,46,99,97,108,108,40,116,104,105,115,46,101,108,101,109,101,110,116,41,41,44,116,104,105,115,46,115,101,116,69,108,101,109,101,110,116,67,111,110,116,101,110,116,40,116,46,102,105,110,100,40,101,105,41,44,101,41,44,116,46,114,101,109,111,118,101,67,108,97,115,115,40,74,110,43,34,32,34,43,90,110,41,125,44,111,46,95,103,101,116,67,111,110,116,101,110,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,108,101,109,101,110,116,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,100,97,116,97,45,99,111,110,116,101,110,116,34,41,124,124,116,104,105,115,46,99,111,110,102,105,103,46,99,111,110,116,101,110,116,125,44,111,46,95,99,108,101,97,110,84,105,112,67,108,97,115,115,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,112,40,116,104,105,115,46,103,101,116,84,105,112,69,108,101,109,101,110,116,40,41,41,44,101,61,116,46,97,116,116,114,40,34,99,108,97,115,115,34,41,46,109,97,116,99,104,40,88,110,41,59,110,117,108,108,33,61,61,101,38,38,48,60,101,46,108,101,110,103,116,104,38,38,116,46,114,101,109,111,118,101,67,108,97,115,115,40,101,46,106,111,105,110,40,34,34,41,41,125,44,105,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,112,40,116,104,105,115,41,46,100,97,116,97,40,81,110,41,44,101,61,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,110,63,110,58,110,117,108,108,59,105,102,40,40,116,124,124,33,47,100,105,115,112,111,115,101,124,104,105,100,101,47,46,116,101,115,116,40,110,41,41,38,38,40,116,124,124,40,116,61,110,101,119,32,105,40,116,104,105,115,44,101,41,44,112,40,116,104,105,115,41,46,100,97,116,97,40,81,110,44,116,41,41,44,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,110,41,41,123,105,102,40,34,117,110,100,101,102,105,110,101,100,34,61,61,116,121,112,101,111,102,32,116,91,110,93,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,39,78,111,32,109,101,116,104,111,100,32,110,97,109,101,100,32,34,39,43,110,43,39,34,39,41,59,116,91,110,93,40,41,125,125,41,125,44,115,40,105,44,110,117,108,108,44,91,123,107,101,121,58,34,86,69,82,83,73,79,78,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,34,52,46,51,46,49,34,125,125,44,123,107,101,121,58,34,68,101,102,97,117,108,116,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,71,110,125,125,44,123,107,101,121,58,34,78,65,77,69,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,75,110,125,125,44,123,107,101,121,58,34,68,65,84,65,95,75,69,89,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,81,110,125,125,44,123,107,101,121,58,34,69,118,101,110,116,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,110,105,125,125,44,123,107,101,121,58,34,69,86,69,78,84,95,75,69,89,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,86,110,125,125,44,123,107,101,121,58,34,68,101,102,97,117,108,116,84,121,112,101,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,36,110,125,125,93,41,44,105,125,40,113,110,41,59,112,46,102,110,91,75,110,93,61,105,105,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,44,112,46,102,110,91,75,110,93,46,67,111,110,115,116,114,117,99,116,111,114,61,105,105,44,112,46,102,110,91,75,110,93,46,110,111,67,111,110,102,108,105,99,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,112,46,102,110,91,75,110,93,61,89,110,44,105,105,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,125,59,118,97,114,32,111,105,61,34,115,99,114,111,108,108,115,112,121,34,44,114,105,61,34,98,115,46,115,99,114,111,108,108,115,112,121,34,44,115,105,61,34,46,34,43,114,105,44,97,105,61,112,46,102,110,91,111,105,93,44,108,105,61,123,111,102,102,115,101,116,58,49,48,44,109,101,116,104,111,100,58,34,97,117,116,111,34,44,116,97,114,103,101,116,58,34,34,125,44,99,105,61,123,111,102,102,115,101,116,58,34,110,117,109,98,101,114,34,44,109,101,116,104,111,100,58,34,115,116,114,105,110,103,34,44,116,97,114,103,101,116,58,34,40,115,116,114,105,110,103,124,101,108,101,109,101,110,116,41,34,125,44,104,105,61,123,65,67,84,73,86,65,84,69,58,34,97,99,116,105,118,97,116,101,34,43,115,105,44,83,67,82,79,76,76,58,34,115,99,114,111,108,108,34,43,115,105,44,76,79,65,68,95,68,65,84,65,95,65,80,73,58,34,108,111,97,100,34,43,115,105,43,34,46,100,97,116,97,45,97,112,105,34,125,44,117,105,61,34,100,114,111,112,100,111,119,110,45,105,116,101,109,34,44,102,105,61,34,97,99,116,105,118,101,34,44,100,105,61,39,91,100,97,116,97,45,115,112,121,61,34,115,99,114,111,108,108,34,93,39,44,112,105,61,34,46,110,97,118,44,32,46,108,105,115,116,45,103,114,111,117,112,34,44,109,105,61,34,46,110,97,118,45,108,105,110,107,34,44,103,105,61,34,46,110,97,118,45,105,116,101,109,34,44,95,105,61,34,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,34,44,118,105,61,34,46,100,114,111,112,100,111,119,110,34,44,121,105,61,34,46,100,114,111,112,100,111,119,110,45,105,116,101,109,34,44,69,105,61,34,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,34,44,98,105,61,34,111,102,102,115,101,116,34,44,119,105,61,34,112,111,115,105,116,105,111,110,34,44,67,105,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,110,40,116,44,101,41,123,118,97,114,32,110,61,116,104,105,115,59,116,104,105,115,46,95,101,108,101,109,101,110,116,61,116,44,116,104,105,115,46,95,115,99,114,111,108,108,69,108,101,109,101,110,116,61,34,66,79,68,89,34,61,61,61,116,46,116,97,103,78,97,109,101,63,119,105,110,100,111,119,58,116,44,116,104,105,115,46,95,99,111,110,102,105,103,61,116,104,105,115,46,95,103,101,116,67,111,110,102,105,103,40,101,41,44,116,104,105,115,46,95,115,101,108,101,99,116,111,114,61,116,104,105,115,46,95,99,111,110,102,105,103,46,116,97,114,103,101,116,43,34,32,34,43,109,105,43,34,44,34,43,116,104,105,115,46,95,99,111,110,102,105,103,46,116,97,114,103,101,116,43,34,32,34,43,95,105,43,34,44,34,43,116,104,105,115,46,95,99,111,110,102,105,103,46,116,97,114,103,101,116,43,34,32,34,43,121,105,44,116,104,105,115,46,95,111,102,102,115,101,116,115,61,91,93,44,116,104,105,115,46,95,116,97,114,103,101,116,115,61,91,93,44,116,104,105,115,46,95,97,99,116,105,118,101,84,97,114,103,101,116,61,110,117,108,108,44,116,104,105,115,46,95,115,99,114,111,108,108,72,101,105,103,104,116,61,48,44,112,40,116,104,105,115,46,95,115,99,114,111,108,108,69,108,101,109,101,110,116,41,46,111,110,40,104,105,46,83,67,82,79,76,76,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,46,95,112,114,111,99,101,115,115,40,116,41,125,41,44,116,104,105,115,46,114,101,102,114,101,115,104,40,41,44,116,104,105,115,46,95,112,114,111,99,101,115,115,40,41,125,118,97,114,32,116,61,110,46,112,114,111,116,111,116,121,112,101,59,114,101,116,117,114,110,32,116,46,114,101,102,114,101,115,104,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,44,116,61,116,104,105,115,46,95,115,99,114,111,108,108,69,108,101,109,101,110,116,61,61,61,116,104,105,115,46,95,115,99,114,111,108,108,69,108,101,109,101,110,116,46,119,105,110,100,111,119,63,98,105,58,119,105,44,111,61,34,97,117,116,111,34,61,61,61,116,104,105,115,46,95,99,111,110,102,105,103,46,109,101,116,104,111,100,63,116,58,116,104,105,115,46,95,99,111,110,102,105,103,46,109,101,116,104,111,100,44,114,61,111,61,61,61,119,105,63,116,104,105,115,46,95,103,101,116,83,99,114,111,108,108,84,111,112,40,41,58,48,59,116,104,105,115,46,95,111,102,102,115,101,116,115,61,91,93,44,116,104,105,115,46,95,116,97,114,103,101,116,115,61,91,93,44,116,104,105,115,46,95,115,99,114,111,108,108,72,101,105,103,104,116,61,116,104,105,115,46,95,103,101,116,83,99,114,111,108,108,72,101,105,103,104,116,40,41,44,91,93,46,115,108,105,99,101,46,99,97,108,108,40,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,116,104,105,115,46,95,115,101,108,101,99,116,111,114,41,41,46,109,97,112,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,44,110,61,109,46,103,101,116,83,101,108,101,99,116,111,114,70,114,111,109,69,108,101,109,101,110,116,40,116,41,59,105,102,40,110,38,38,40,101,61,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,110,41,41,44,101,41,123,118,97,114,32,105,61,101,46,103,101,116,66,111,117,110,100,105,110,103,67,108,105,101,110,116,82,101,99,116,40,41,59,105,102,40,105,46,119,105,100,116,104,124,124,105,46,104,101,105,103,104,116,41,114,101,116,117,114,110,91,112,40,101,41,91,111,93,40,41,46,116,111,112,43,114,44,110,93,125,114,101,116,117,114,110,32,110,117,108,108,125,41,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,125,41,46,115,111,114,116,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,116,91,48,93,45,101,91,48,93,125,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,116,41,123,101,46,95,111,102,102,115,101,116,115,46,112,117,115,104,40,116,91,48,93,41,44,101,46,95,116,97,114,103,101,116,115,46,112,117,115,104,40,116,91,49,93,41,125,41,125,44,116,46,100,105,115,112,111,115,101,61,102,117,110,99,116,105,111,110,40,41,123,112,46,114,101,109,111,118,101,68,97,116,97,40,116,104,105,115,46,95,101,108,101,109,101,110,116,44,114,105,41,44,112,40,116,104,105,115,46,95,115,99,114,111,108,108,69,108,101,109,101,110,116,41,46,111,102,102,40,115,105,41,44,116,104,105,115,46,95,101,108,101,109,101,110,116,61,110,117,108,108,44,116,104,105,115,46,95,115,99,114,111,108,108,69,108,101,109,101,110,116,61,110,117,108,108,44,116,104,105,115,46,95,99,111,110,102,105,103,61,110,117,108,108,44,116,104,105,115,46,95,115,101,108,101,99,116,111,114,61,110,117,108,108,44,116,104,105,115,46,95,111,102,102,115,101,116,115,61,110,117,108,108,44,116,104,105,115,46,95,116,97,114,103,101,116,115,61,110,117,108,108,44,116,104,105,115,46,95,97,99,116,105,118,101,84,97,114,103,101,116,61,110,117,108,108,44,116,104,105,115,46,95,115,99,114,111,108,108,72,101,105,103,104,116,61,110,117,108,108,125,44,116,46,95,103,101,116,67,111,110,102,105,103,61,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,34,115,116,114,105,110,103,34,33,61,116,121,112,101,111,102,40,116,61,108,40,123,125,44,108,105,44,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,116,38,38,116,63,116,58,123,125,41,41,46,116,97,114,103,101,116,41,123,118,97,114,32,101,61,112,40,116,46,116,97,114,103,101,116,41,46,97,116,116,114,40,34,105,100,34,41,59,101,124,124,40,101,61,109,46,103,101,116,85,73,68,40,111,105,41,44,112,40,116,46,116,97,114,103,101,116,41,46,97,116,116,114,40,34,105,100,34,44,101,41,41,44,116,46,116,97,114,103,101,116,61,34,35,34,43,101,125,114,101,116,117,114,110,32,109,46,116,121,112,101,67,104,101,99,107,67,111,110,102,105,103,40,111,105,44,116,44,99,105,41,44,116,125,44,116,46,95,103,101,116,83,99,114,111,108,108,84,111,112,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,115,99,114,111,108,108,69,108,101,109,101,110,116,61,61,61,119,105,110,100,111,119,63,116,104,105,115,46,95,115,99,114,111,108,108,69,108,101,109,101,110,116,46,112,97,103,101,89,79,102,102,115,101,116,58,116,104,105,115,46,95,115,99,114,111,108,108,69,108,101,109,101,110,116,46,115,99,114,111,108,108,84,111,112,125,44,116,46,95,103,101,116,83,99,114,111,108,108,72,101,105,103,104,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,115,99,114,111,108,108,69,108,101,109,101,110,116,46,115,99,114,111,108,108,72,101,105,103,104,116,124,124,77,97,116,104,46,109,97,120,40,100,111,99,117,109,101,110,116,46,98,111,100,121,46,115,99,114,111,108,108,72,101,105,103,104,116,44,100,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,46,115,99,114,111,108,108,72,101,105,103,104,116,41,125,44,116,46,95,103,101,116,79,102,102,115,101,116,72,101,105,103,104,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,115,99,114,111,108,108,69,108,101,109,101,110,116,61,61,61,119,105,110,100,111,119,63,119,105,110,100,111,119,46,105,110,110,101,114,72,101,105,103,104,116,58,116,104,105,115,46,95,115,99,114,111,108,108,69,108,101,109,101,110,116,46,103,101,116,66,111,117,110,100,105,110,103,67,108,105,101,110,116,82,101,99,116,40,41,46,104,101,105,103,104,116,125,44,116,46,95,112,114,111,99,101,115,115,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,95,103,101,116,83,99,114,111,108,108,84,111,112,40,41,43,116,104,105,115,46,95,99,111,110,102,105,103,46,111,102,102,115,101,116,44,101,61,116,104,105,115,46,95,103,101,116,83,99,114,111,108,108,72,101,105,103,104,116,40,41,44,110,61,116,104,105,115,46,95,99,111,110,102,105,103,46,111,102,102,115,101,116,43,101,45,116,104,105,115,46,95,103,101,116,79,102,102,115,101,116,72,101,105,103,104,116,40,41,59,105,102,40,116,104,105,115,46,95,115,99,114,111,108,108,72,101,105,103,104,116,33,61,61,101,38,38,116,104,105,115,46,114,101,102,114,101,115,104,40,41,44,110,60,61,116,41,123,118,97,114,32,105,61,116,104,105,115,46,95,116,97,114,103,101,116,115,91,116,104,105,115,46,95,116,97,114,103,101,116,115,46,108,101,110,103,116,104,45,49,93,59,116,104,105,115,46,95,97,99,116,105,118,101,84,97,114,103,101,116,33,61,61,105,38,38,116,104,105,115,46,95,97,99,116,105,118,97,116,101,40,105,41,125,101,108,115,101,123,105,102,40,116,104,105,115,46,95,97,99,116,105,118,101,84,97,114,103,101,116,38,38,116,60,116,104,105,115,46,95,111,102,102,115,101,116,115,91,48,93,38,38,48,60,116,104,105,115,46,95,111,102,102,115,101,116,115,91,48,93,41,114,101,116,117,114,110,32,116,104,105,115,46,95,97,99,116,105,118,101,84,97,114,103,101,116,61,110,117,108,108,44,118,111,105,100,32,116,104,105,115,46,95,99,108,101,97,114,40,41,59,102,111,114,40,118,97,114,32,111,61,116,104,105,115,46,95,111,102,102,115,101,116,115,46,108,101,110,103,116,104,59,111,45,45,59,41,123,116,104,105,115,46,95,97,99,116,105,118,101,84,97,114,103,101,116,33,61,61,116,104,105,115,46,95,116,97,114,103,101,116,115,91,111,93,38,38,116,62,61,116,104,105,115,46,95,111,102,102,115,101,116,115,91,111,93,38,38,40,34,117,110,100,101,102,105,110,101,100,34,61,61,116,121,112,101,111,102,32,116,104,105,115,46,95,111,102,102,115,101,116,115,91,111,43,49,93,124,124,116,60,116,104,105,115,46,95,111,102,102,115,101,116,115,91,111,43,49,93,41,38,38,116,104,105,115,46,95,97,99,116,105,118,97,116,101,40,116,104,105,115,46,95,116,97,114,103,101,116,115,91,111,93,41,125,125,125,44,116,46,95,97,99,116,105,118,97,116,101,61,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,95,97,99,116,105,118,101,84,97,114,103,101,116,61,101,44,116,104,105,115,46,95,99,108,101,97,114,40,41,59,118,97,114,32,116,61,116,104,105,115,46,95,115,101,108,101,99,116,111,114,46,115,112,108,105,116,40,34,44,34,41,46,109,97,112,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,43,39,91,100,97,116,97,45,116,97,114,103,101,116,61,34,39,43,101,43,39,34,93,44,39,43,116,43,39,91,104,114,101,102,61,34,39,43,101,43,39,34,93,39,125,41,44,110,61,112,40,91,93,46,115,108,105,99,101,46,99,97,108,108,40,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,116,46,106,111,105,110,40,34,44,34,41,41,41,41,59,110,46,104,97,115,67,108,97,115,115,40,117,105,41,63,40,110,46,99,108,111,115,101,115,116,40,118,105,41,46,102,105,110,100,40,69,105,41,46,97,100,100,67,108,97,115,115,40,102,105,41,44,110,46,97,100,100,67,108,97,115,115,40,102,105,41,41,58,40,110,46,97,100,100,67,108,97,115,115,40,102,105,41,44,110,46,112,97,114,101,110,116,115,40,112,105,41,46,112,114,101,118,40,109,105,43,34,44,32,34,43,95,105,41,46,97,100,100,67,108,97,115,115,40,102,105,41,44,110,46,112,97,114,101,110,116,115,40,112,105,41,46,112,114,101,118,40,103,105,41,46,99,104,105,108,100,114,101,110,40,109,105,41,46,97,100,100,67,108,97,115,115,40,102,105,41,41,44,112,40,116,104,105,115,46,95,115,99,114,111,108,108,69,108,101,109,101,110,116,41,46,116,114,105,103,103,101,114,40,104,105,46,65,67,84,73,86,65,84,69,44,123,114,101,108,97,116,101,100,84,97,114,103,101,116,58,101,125,41,125,44,116,46,95,99,108,101,97,114,61,102,117,110,99,116,105,111,110,40,41,123,91,93,46,115,108,105,99,101,46,99,97,108,108,40,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,116,104,105,115,46,95,115,101,108,101,99,116,111,114,41,41,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,99,108,97,115,115,76,105,115,116,46,99,111,110,116,97,105,110,115,40,102,105,41,125,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,99,108,97,115,115,76,105,115,116,46,114,101,109,111,118,101,40,102,105,41,125,41,125,44,110,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,112,40,116,104,105,115,41,46,100,97,116,97,40,114,105,41,59,105,102,40,116,124,124,40,116,61,110,101,119,32,110,40,116,104,105,115,44,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,101,38,38,101,41,44,112,40,116,104,105,115,41,46,100,97,116,97,40,114,105,44,116,41,41,44,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,101,41,123,105,102,40,34,117,110,100,101,102,105,110,101,100,34,61,61,116,121,112,101,111,102,32,116,91,101,93,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,39,78,111,32,109,101,116,104,111,100,32,110,97,109,101,100,32,34,39,43,101,43,39,34,39,41,59,116,91,101,93,40,41,125,125,41,125,44,115,40,110,44,110,117,108,108,44,91,123,107,101,121,58,34,86,69,82,83,73,79,78,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,34,52,46,51,46,49,34,125,125,44,123,107,101,121,58,34,68,101,102,97,117,108,116,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,108,105,125,125,93,41,44,110,125,40,41,59,112,40,119,105,110,100,111,119,41,46,111,110,40,104,105,46,76,79,65,68,95,68,65,84,65,95,65,80,73,44,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,118,97,114,32,116,61,91,93,46,115,108,105,99,101,46,99,97,108,108,40,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,100,105,41,41,44,101,61,116,46,108,101,110,103,116,104,59,101,45,45,59,41,123,118,97,114,32,110,61,112,40,116,91,101,93,41,59,67,105,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,46,99,97,108,108,40,110,44,110,46,100,97,116,97,40,41,41,125,125,41,44,112,46,102,110,91,111,105,93,61,67,105,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,44,112,46,102,110,91,111,105,93,46,67,111,110,115,116,114,117,99,116,111,114,61,67,105,44,112,46,102,110,91,111,105,93,46,110,111,67,111,110,102,108,105,99,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,112,46,102,110,91,111,105,93,61,97,105,44,67,105,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,125,59,118,97,114,32,84,105,61,34,98,115,46,116,97,98,34,44,83,105,61,34,46,34,43,84,105,44,68,105,61,112,46,102,110,46,116,97,98,44,73,105,61,123,72,73,68,69,58,34,104,105,100,101,34,43,83,105,44,72,73,68,68,69,78,58,34,104,105,100,100,101,110,34,43,83,105,44,83,72,79,87,58,34,115,104,111,119,34,43,83,105,44,83,72,79,87,78,58,34,115,104,111,119,110,34,43,83,105,44,67,76,73,67,75,95,68,65,84,65,95,65,80,73,58,34,99,108,105,99,107,34,43,83,105,43,34,46,100,97,116,97,45,97,112,105,34,125,44,65,105,61,34,100,114,111,112,100,111,119,110,45,109,101,110,117,34,44,79,105,61,34,97,99,116,105,118,101,34,44,78,105,61,34,100,105,115,97,98,108,101,100,34,44,107,105,61,34,102,97,100,101,34,44,76,105,61,34,115,104,111,119,34,44,120,105,61,34,46,100,114,111,112,100,111,119,110,34,44,80,105,61,34,46,110,97,118,44,32,46,108,105,115,116,45,103,114,111,117,112,34,44,72,105,61,34,46,97,99,116,105,118,101,34,44,106,105,61,34,62,32,108,105,32,62,32,46,97,99,116,105,118,101,34,44,82,105,61,39,91,100,97,116,97,45,116,111,103,103,108,101,61,34,116,97,98,34,93,44,32,91,100,97,116,97,45,116,111,103,103,108,101,61,34,112,105,108,108,34,93,44,32,91,100,97,116,97,45,116,111,103,103,108,101,61,34,108,105,115,116,34,93,39,44,70,105,61,34,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,34,44,77,105,61,34,62,32,46,100,114,111,112,100,111,119,110,45,109,101,110,117,32,46,97,99,116,105,118,101,34,44,87,105,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,105,40,116,41,123,116,104,105,115,46,95,101,108,101,109,101,110,116,61,116,125,118,97,114,32,116,61,105,46,112,114,111,116,111,116,121,112,101,59,114,101,116,117,114,110,32,116,46,115,104,111,119,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,110,61,116,104,105,115,59,105,102,40,33,40,116,104,105,115,46,95,101,108,101,109,101,110,116,46,112,97,114,101,110,116,78,111,100,101,38,38,116,104,105,115,46,95,101,108,101,109,101,110,116,46,112,97,114,101,110,116,78,111,100,101,46,110,111,100,101,84,121,112,101,61,61,61,78,111,100,101,46,69,76,69,77,69,78,84,95,78,79,68,69,38,38,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,104,97,115,67,108,97,115,115,40,79,105,41,124,124,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,104,97,115,67,108,97,115,115,40,78,105,41,41,41,123,118,97,114,32,116,44,105,44,101,61,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,99,108,111,115,101,115,116,40,80,105,41,91,48,93,44,111,61,109,46,103,101,116,83,101,108,101,99,116,111,114,70,114,111,109,69,108,101,109,101,110,116,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,59,105,102,40,101,41,123,118,97,114,32,114,61,34,85,76,34,61,61,61,101,46,110,111,100,101,78,97,109,101,124,124,34,79,76,34,61,61,61,101,46,110,111,100,101,78,97,109,101,63,106,105,58,72,105,59,105,61,40,105,61,112,46,109,97,107,101,65,114,114,97,121,40,112,40,101,41,46,102,105,110,100,40,114,41,41,41,91,105,46,108,101,110,103,116,104,45,49,93,125,118,97,114,32,115,61,112,46,69,118,101,110,116,40,73,105,46,72,73,68,69,44,123,114,101,108,97,116,101,100,84,97,114,103,101,116,58,116,104,105,115,46,95,101,108,101,109,101,110,116,125,41,44,97,61,112,46,69,118,101,110,116,40,73,105,46,83,72,79,87,44,123,114,101,108,97,116,101,100,84,97,114,103,101,116,58,105,125,41,59,105,102,40,105,38,38,112,40,105,41,46,116,114,105,103,103,101,114,40,115,41,44,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,116,114,105,103,103,101,114,40,97,41,44,33,97,46,105,115,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,40,41,38,38,33,115,46,105,115,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,40,41,41,123,111,38,38,40,116,61,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,111,41,41,44,116,104,105,115,46,95,97,99,116,105,118,97,116,101,40,116,104,105,115,46,95,101,108,101,109,101,110,116,44,101,41,59,118,97,114,32,108,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,112,46,69,118,101,110,116,40,73,105,46,72,73,68,68,69,78,44,123,114,101,108,97,116,101,100,84,97,114,103,101,116,58,110,46,95,101,108,101,109,101,110,116,125,41,44,101,61,112,46,69,118,101,110,116,40,73,105,46,83,72,79,87,78,44,123,114,101,108,97,116,101,100,84,97,114,103,101,116,58,105,125,41,59,112,40,105,41,46,116,114,105,103,103,101,114,40,116,41,44,112,40,110,46,95,101,108,101,109,101,110,116,41,46,116,114,105,103,103,101,114,40,101,41,125,59,116,63,116,104,105,115,46,95,97,99,116,105,118,97,116,101,40,116,44,116,46,112,97,114,101,110,116,78,111,100,101,44,108,41,58,108,40,41,125,125,125,44,116,46,100,105,115,112,111,115,101,61,102,117,110,99,116,105,111,110,40,41,123,112,46,114,101,109,111,118,101,68,97,116,97,40,116,104,105,115,46,95,101,108,101,109,101,110,116,44,84,105,41,44,116,104,105,115,46,95,101,108,101,109,101,110,116,61,110,117,108,108,125,44,116,46,95,97,99,116,105,118,97,116,101,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,105,61,116,104,105,115,44,111,61,40,33,101,124,124,34,85,76,34,33,61,61,101,46,110,111,100,101,78,97,109,101,38,38,34,79,76,34,33,61,61,101,46,110,111,100,101,78,97,109,101,63,112,40,101,41,46,99,104,105,108,100,114,101,110,40,72,105,41,58,112,40,101,41,46,102,105,110,100,40,106,105,41,41,91,48,93,44,114,61,110,38,38,111,38,38,112,40,111,41,46,104,97,115,67,108,97,115,115,40,107,105,41,44,115,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,105,46,95,116,114,97,110,115,105,116,105,111,110,67,111,109,112,108,101,116,101,40,116,44,111,44,110,41,125,59,105,102,40,111,38,38,114,41,123,118,97,114,32,97,61,109,46,103,101,116,84,114,97,110,115,105,116,105,111,110,68,117,114,97,116,105,111,110,70,114,111,109,69,108,101,109,101,110,116,40,111,41,59,112,40,111,41,46,114,101,109,111,118,101,67,108,97,115,115,40,76,105,41,46,111,110,101,40,109,46,84,82,65,78,83,73,84,73,79,78,95,69,78,68,44,115,41,46,101,109,117,108,97,116,101,84,114,97,110,115,105,116,105,111,110,69,110,100,40,97,41,125,101,108,115,101,32,115,40,41,125,44,116,46,95,116,114,97,110,115,105,116,105,111,110,67,111,109,112,108,101,116,101,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,105,102,40,101,41,123,112,40,101,41,46,114,101,109,111,118,101,67,108,97,115,115,40,79,105,41,59,118,97,114,32,105,61,112,40,101,46,112,97,114,101,110,116,78,111,100,101,41,46,102,105,110,100,40,77,105,41,91,48,93,59,105,38,38,112,40,105,41,46,114,101,109,111,118,101,67,108,97,115,115,40,79,105,41,44,34,116,97,98,34,61,61,61,101,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,114,111,108,101,34,41,38,38,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,97,114,105,97,45,115,101,108,101,99,116,101,100,34,44,33,49,41,125,105,102,40,112,40,116,41,46,97,100,100,67,108,97,115,115,40,79,105,41,44,34,116,97,98,34,61,61,61,116,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,114,111,108,101,34,41,38,38,116,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,97,114,105,97,45,115,101,108,101,99,116,101,100,34,44,33,48,41,44,109,46,114,101,102,108,111,119,40,116,41,44,116,46,99,108,97,115,115,76,105,115,116,46,99,111,110,116,97,105,110,115,40,107,105,41,38,38,116,46,99,108,97,115,115,76,105,115,116,46,97,100,100,40,76,105,41,44,116,46,112,97,114,101,110,116,78,111,100,101,38,38,112,40,116,46,112,97,114,101,110,116,78,111,100,101,41,46,104,97,115,67,108,97,115,115,40,65,105,41,41,123,118,97,114,32,111,61,112,40,116,41,46,99,108,111,115,101,115,116,40,120,105,41,91,48,93,59,105,102,40,111,41,123,118,97,114,32,114,61,91,93,46,115,108,105,99,101,46,99,97,108,108,40,111,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,70,105,41,41,59,112,40,114,41,46,97,100,100,67,108,97,115,115,40,79,105,41,125,116,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,97,114,105,97,45,101,120,112,97,110,100,101,100,34,44,33,48,41,125,110,38,38,110,40,41,125,44,105,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,112,40,116,104,105,115,41,44,101,61,116,46,100,97,116,97,40,84,105,41,59,105,102,40,101,124,124,40,101,61,110,101,119,32,105,40,116,104,105,115,41,44,116,46,100,97,116,97,40,84,105,44,101,41,41,44,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,110,41,123,105,102,40,34,117,110,100,101,102,105,110,101,100,34,61,61,116,121,112,101,111,102,32,101,91,110,93,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,39,78,111,32,109,101,116,104,111,100,32,110,97,109,101,100,32,34,39,43,110,43,39,34,39,41,59,101,91,110,93,40,41,125,125,41,125,44,115,40,105,44,110,117,108,108,44,91,123,107,101,121,58,34,86,69,82,83,73,79,78,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,34,52,46,51,46,49,34,125,125,93,41,44,105,125,40,41,59,112,40,100,111,99,117,109,101,110,116,41,46,111,110,40,73,105,46,67,76,73,67,75,95,68,65,84,65,95,65,80,73,44,82,105,44,102,117,110,99,116,105,111,110,40,116,41,123,116,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,87,105,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,46,99,97,108,108,40,112,40,116,104,105,115,41,44,34,115,104,111,119,34,41,125,41,44,112,46,102,110,46,116,97,98,61,87,105,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,44,112,46,102,110,46,116,97,98,46,67,111,110,115,116,114,117,99,116,111,114,61,87,105,44,112,46,102,110,46,116,97,98,46,110,111,67,111,110,102,108,105,99,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,112,46,102,110,46,116,97,98,61,68,105,44,87,105,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,125,59,118,97,114,32,85,105,61,34,116,111,97,115,116,34,44,66,105,61,34,98,115,46,116,111,97,115,116,34,44,113,105,61,34,46,34,43,66,105,44,75,105,61,112,46,102,110,91,85,105,93,44,81,105,61,123,67,76,73,67,75,95,68,73,83,77,73,83,83,58,34,99,108,105,99,107,46,100,105,115,109,105,115,115,34,43,113,105,44,72,73,68,69,58,34,104,105,100,101,34,43,113,105,44,72,73,68,68,69,78,58,34,104,105,100,100,101,110,34,43,113,105,44,83,72,79,87,58,34,115,104,111,119,34,43,113,105,44,83,72,79,87,78,58,34,115,104,111,119,110,34,43,113,105,125,44,86,105,61,34,102,97,100,101,34,44,89,105,61,34,104,105,100,101,34,44,122,105,61,34,115,104,111,119,34,44,88,105,61,34,115,104,111,119,105,110,103,34,44,71,105,61,123,97,110,105,109,97,116,105,111,110,58,34,98,111,111,108,101,97,110,34,44,97,117,116,111,104,105,100,101,58,34,98,111,111,108,101,97,110,34,44,100,101,108,97,121,58,34,110,117,109,98,101,114,34,125,44,36,105,61,123,97,110,105,109,97,116,105,111,110,58,33,48,44,97,117,116,111,104,105,100,101,58,33,48,44,100,101,108,97,121,58,53,48,48,125,44,74,105,61,39,91,100,97,116,97,45,100,105,115,109,105,115,115,61,34,116,111,97,115,116,34,93,39,44,90,105,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,105,40,116,44,101,41,123,116,104,105,115,46,95,101,108,101,109,101,110,116,61,116,44,116,104,105,115,46,95,99,111,110,102,105,103,61,116,104,105,115,46,95,103,101,116,67,111,110,102,105,103,40,101,41,44,116,104,105,115,46,95,116,105,109,101,111,117,116,61,110,117,108,108,44,116,104,105,115,46,95,115,101,116,76,105,115,116,101,110,101,114,115,40,41,125,118,97,114,32,116,61,105,46,112,114,111,116,111,116,121,112,101,59,114,101,116,117,114,110,32,116,46,115,104,111,119,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,59,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,116,114,105,103,103,101,114,40,81,105,46,83,72,79,87,41,44,116,104,105,115,46,95,99,111,110,102,105,103,46,97,110,105,109,97,116,105,111,110,38,38,116,104,105,115,46,95,101,108,101,109,101,110,116,46,99,108,97,115,115,76,105,115,116,46,97,100,100,40,86,105,41,59,118,97,114,32,101,61,102,117,110,99,116,105,111,110,40,41,123,116,46,95,101,108,101,109,101,110,116,46,99,108,97,115,115,76,105,115,116,46,114,101,109,111,118,101,40,88,105,41,44,116,46,95,101,108,101,109,101,110,116,46,99,108,97,115,115,76,105,115,116,46,97,100,100,40,122,105,41,44,112,40,116,46,95,101,108,101,109,101,110,116,41,46,116,114,105,103,103,101,114,40,81,105,46,83,72,79,87,78,41,44,116,46,95,99,111,110,102,105,103,46,97,117,116,111,104,105,100,101,38,38,116,46,104,105,100,101,40,41,125,59,105,102,40,116,104,105,115,46,95,101,108,101,109,101,110,116,46,99,108,97,115,115,76,105,115,116,46,114,101,109,111,118,101,40,89,105,41,44,116,104,105,115,46,95,101,108,101,109,101,110,116,46,99,108,97,115,115,76,105,115,116,46,97,100,100,40,88,105,41,44,116,104,105,115,46,95,99,111,110,102,105,103,46,97,110,105,109,97,116,105,111,110,41,123,118,97,114,32,110,61,109,46,103,101,116,84,114,97,110,115,105,116,105,111,110,68,117,114,97,116,105,111,110,70,114,111,109,69,108,101,109,101,110,116,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,59,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,111,110,101,40,109,46,84,82,65,78,83,73,84,73,79,78,95,69,78,68,44,101,41,46,101,109,117,108,97,116,101,84,114,97,110,115,105,116,105,111,110,69,110,100,40,110,41,125,101,108,115,101,32,101,40,41,125,44,116,46,104,105,100,101,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,59,116,104,105,115,46,95,101,108,101,109,101,110,116,46,99,108,97,115,115,76,105,115,116,46,99,111,110,116,97,105,110,115,40,122,105,41,38,38,40,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,116,114,105,103,103,101,114,40,81,105,46,72,73,68,69,41,44,116,63,116,104,105,115,46,95,99,108,111,115,101,40,41,58,116,104,105,115,46,95,116,105,109,101,111,117,116,61,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,40,41,123,101,46,95,99,108,111,115,101,40,41,125,44,116,104,105,115,46,95,99,111,110,102,105,103,46,100,101,108,97,121,41,41,125,44,116,46,100,105,115,112,111,115,101,61,102,117,110,99,116,105,111,110,40,41,123,99,108,101,97,114,84,105,109,101,111,117,116,40,116,104,105,115,46,95,116,105,109,101,111,117,116,41,44,116,104,105,115,46,95,116,105,109,101,111,117,116,61,110,117,108,108,44,116,104,105,115,46,95,101,108,101,109,101,110,116,46,99,108,97,115,115,76,105,115,116,46,99,111,110,116,97,105,110,115,40,122,105,41,38,38,116,104,105,115,46,95,101,108,101,109,101,110,116,46,99,108,97,115,115,76,105,115,116,46,114,101,109,111,118,101,40,122,105,41,44,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,111,102,102,40,81,105,46,67,76,73,67,75,95,68,73,83,77,73,83,83,41,44,112,46,114,101,109,111,118,101,68,97,116,97,40,116,104,105,115,46,95,101,108,101,109,101,110,116,44,66,105,41,44,116,104,105,115,46,95,101,108,101,109,101,110,116,61,110,117,108,108,44,116,104,105,115,46,95,99,111,110,102,105,103,61,110,117,108,108,125,44,116,46,95,103,101,116,67,111,110,102,105,103,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,61,108,40,123,125,44,36,105,44,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,100,97,116,97,40,41,44,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,116,38,38,116,63,116,58,123,125,41,44,109,46,116,121,112,101,67,104,101,99,107,67,111,110,102,105,103,40,85,105,44,116,44,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,46,68,101,102,97,117,108,116,84,121,112,101,41,44,116,125,44,116,46,95,115,101,116,76,105,115,116,101,110,101,114,115,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,59,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,111,110,40,81,105,46,67,76,73,67,75,95,68,73,83,77,73,83,83,44,74,105,44,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,46,104,105,100,101,40,33,48,41,125,41,125,44,116,46,95,99,108,111,115,101,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,44,101,61,102,117,110,99,116,105,111,110,40,41,123,116,46,95,101,108,101,109,101,110,116,46,99,108,97,115,115,76,105,115,116,46,97,100,100,40,89,105,41,44,112,40,116,46,95,101,108,101,109,101,110,116,41,46,116,114,105,103,103,101,114,40,81,105,46,72,73,68,68,69,78,41,125,59,105,102,40,116,104,105,115,46,95,101,108,101,109,101,110,116,46,99,108,97,115,115,76,105,115,116,46,114,101,109,111,118,101,40,122,105,41,44,116,104,105,115,46,95,99,111,110,102,105,103,46,97,110,105,109,97,116,105,111,110,41,123,118,97,114,32,110,61,109,46,103,101,116,84,114,97,110,115,105,116,105,111,110,68,117,114,97,116,105,111,110,70,114,111,109,69,108,101,109,101,110,116,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,59,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,111,110,101,40,109,46,84,82,65,78,83,73,84,73,79,78,95,69,78,68,44,101,41,46,101,109,117,108,97,116,101,84,114,97,110,115,105,116,105,111,110,69,110,100,40,110,41,125,101,108,115,101,32,101,40,41,125,44,105,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,112,40,116,104,105,115,41,44,101,61,116,46,100,97,116,97,40,66,105,41,59,105,102,40,101,124,124,40,101,61,110,101,119,32,105,40,116,104,105,115,44,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,110,38,38,110,41,44,116,46,100,97,116,97,40,66,105,44,101,41,41,44,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,110,41,123,105,102,40,34,117,110,100,101,102,105,110,101,100,34,61,61,116,121,112,101,111,102,32,101,91,110,93,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,39,78,111,32,109,101,116,104,111,100,32,110,97,109,101,100,32,34,39,43,110,43,39,34,39,41,59,101,91,110,93,40,116,104,105,115,41,125,125,41,125,44,115,40,105,44,110,117,108,108,44,91,123,107,101,121,58,34,86,69,82,83,73,79,78,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,34,52,46,51,46,49,34,125,125,44,123,107,101,121,58,34,68,101,102,97,117,108,116,84,121,112,101,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,71,105,125,125,44,123,107,101,121,58,34,68,101,102,97,117,108,116,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,36,105,125,125,93,41,44,105,125,40,41,59,112,46,102,110,91,85,105,93,61,90,105,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,44,112,46,102,110,91,85,105,93,46,67,111,110,115,116,114,117,99,116,111,114,61,90,105,44,112,46,102,110,91,85,105,93,46,110,111,67,111,110,102,108,105,99,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,112,46,102,110,91,85,105,93,61,75,105,44,90,105,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,125,44,102,117,110,99,116,105,111,110,40,41,123,105,102,40,34,117,110,100,101,102,105,110,101,100,34,61,61,116,121,112,101,111,102,32,112,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,66,111,111,116,115,116,114,97,112,39,115,32,74,97,118,97,83,99,114,105,112,116,32,114,101,113,117,105,114,101,115,32,106,81,117,101,114,121,46,32,106,81,117,101,114,121,32,109,117,115,116,32,98,101,32,105,110,99,108,117,100,101,100,32,98,101,102,111,114,101,32,66,111,111,116,115,116,114,97,112,39,115,32,74,97,118,97,83,99,114,105,112,116,46,34,41,59,118,97,114,32,116,61,112,46,102,110,46,106,113,117,101,114,121,46,115,112,108,105,116,40,34,32,34,41,91,48,93,46,115,112,108,105,116,40,34,46,34,41,59,105,102,40,116,91,48,93,60,50,38,38,116,91,49,93,60,57,124,124,49,61,61,61,116,91,48,93,38,38,57,61,61,61,116,91,49,93,38,38,116,91,50,93,60,49,124,124,52,60,61,116,91,48,93,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,66,111,111,116,115,116,114,97,112,39,115,32,74,97,118,97,83,99,114,105,112,116,32,114,101,113,117,105,114,101,115,32,97,116,32,108,101,97,115,116,32,106,81,117,101,114,121,32,118,49,46,57,46,49,32,98,117,116,32,108,101,115,115,32,116,104,97,110,32,118,52,46,48,46,48,34,41,125,40,41,44,116,46,85,116,105,108,61,109,44,116,46,65,108,101,114,116,61,103,44,116,46,66,117,116,116,111,110,61,107,44,116,46,67,97,114,111,117,115,101,108,61,97,116,44,116,46,67,111,108,108,97,112,115,101,61,67,116,44,116,46,68,114,111,112,100,111,119,110,61,88,101,44,116,46,77,111,100,97,108,61,103,110,44,116,46,80,111,112,111,118,101,114,61,105,105,44,116,46,83,99,114,111,108,108,115,112,121,61,67,105,44,116,46,84,97,98,61,87,105,44,116,46,84,111,97,115,116,61,90,105,44,116,46,84,111,111,108,116,105,112,61,113,110,44,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,44,34,95,95,101,115,77,111,100,117,108,101,34,44,123,118,97,108,117,101,58,33,48,125,41,125,41,59,10,10,47,42,42,10,32,42,32,64,108,105,99,101,110,115,101,10,32,42,32,76,111,100,97,115,104,32,108,111,100,97,115,104,46,99,111,109,47,108,105,99,101,110,115,101,32,124,32,85,110,100,101,114,115,99,111,114,101,46,106,115,32,49,46,56,46,51,32,117,110,100,101,114,115,99,111,114,101,106,115,46,111,114,103,47,76,73,67,69,78,83,69,10,32,42,47,10,59,40,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,110,40,110,44,116,44,114,41,123,115,119,105,116,99,104,40,114,46,108,101,110,103,116,104,41,123,99,97,115,101,32,48,58,114,101,116,117,114,110,32,110,46,99,97,108,108,40,116,41,59,99,97,115,101,32,49,58,114,101,116,117,114,110,32,110,46,99,97,108,108,40,116,44,114,91,48,93,41,59,99,97,115,101,32,50,58,114,101,116,117,114,110,32,110,46,99,97,108,108,40,116,44,114,91,48,93,44,114,91,49,93,41,59,99,97,115,101,32,51,58,114,101,116,117,114,110,32,110,46,99,97,108,108,40,116,44,114,91,48,93,44,114,91,49,93,44,114,91,50,93,41,125,114,101,116,117,114,110,32,110,46,97,112,112,108,121,40,116,44,114,41,125,102,117,110,99,116,105,111,110,32,116,40,110,44,116,44,114,44,101,41,123,102,111,114,40,118,97,114,32,117,61,45,49,44,105,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,43,43,117,60,105,59,41,123,118,97,114,32,111,61,110,91,117,93,59,116,40,101,44,111,44,114,40,111,41,44,110,41,125,114,101,116,117,114,110,32,101,125,102,117,110,99,116,105,111,110,32,114,40,110,44,116,41,123,102,111,114,40,118,97,114,32,114,61,45,49,44,101,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,43,43,114,60,101,38,38,102,97,108,115,101,33,61,61,116,40,110,91,114,93,44,114,44,110,41,59,41,59,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,101,40,110,44,116,41,123,102,111,114,40,118,97,114,32,114,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,114,45,45,38,38,102,97,108,115,101,33,61,61,116,40,110,91,114,93,44,114,44,110,41,59,41,59,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,117,40,110,44,116,41,123,102,111,114,40,118,97,114,32,114,61,45,49,44,101,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,43,43,114,60,101,59,41,105,102,40,33,116,40,110,91,114,93,44,114,44,110,41,41,114,101,116,117,114,110,32,102,97,108,115,101,59,10,114,101,116,117,114,110,32,116,114,117,101,125,102,117,110,99,116,105,111,110,32,105,40,110,44,116,41,123,102,111,114,40,118,97,114,32,114,61,45,49,44,101,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,44,117,61,48,44,105,61,91,93,59,43,43,114,60,101,59,41,123,118,97,114,32,111,61,110,91,114,93,59,116,40,111,44,114,44,110,41,38,38,40,105,91,117,43,43,93,61,111,41,125,114,101,116,117,114,110,32,105,125,102,117,110,99,116,105,111,110,32,111,40,110,44,116,41,123,114,101,116,117,114,110,33,40,110,117,108,108,61,61,110,124,124,33,110,46,108,101,110,103,116,104,41,38,38,45,49,60,118,40,110,44,116,44,48,41,125,102,117,110,99,116,105,111,110,32,102,40,110,44,116,44,114,41,123,102,111,114,40,118,97,114,32,101,61,45,49,44,117,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,43,43,101,60,117,59,41,105,102,40,114,40,116,44,110,91,101,93,41,41,114,101,116,117,114,110,32,116,114,117,101,59,114,101,116,117,114,110,32,102,97,108,115,101,125,102,117,110,99,116,105,111,110,32,99,40,110,44,116,41,123,102,111,114,40,118,97,114,32,114,61,45,49,44,101,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,44,117,61,65,114,114,97,121,40,101,41,59,43,43,114,60,101,59,41,117,91,114,93,61,116,40,110,91,114,93,44,114,44,110,41,59,114,101,116,117,114,110,32,117,125,102,117,110,99,116,105,111,110,32,97,40,110,44,116,41,123,102,111,114,40,118,97,114,32,114,61,45,49,44,101,61,116,46,108,101,110,103,116,104,44,117,61,110,46,108,101,110,103,116,104,59,43,43,114,60,101,59,41,110,91,117,43,114,93,61,116,91,114,93,59,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,108,40,110,44,116,44,114,44,101,41,123,118,97,114,32,117,61,45,49,44,105,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,102,111,114,40,101,38,38,105,38,38,40,114,61,110,91,43,43,117,93,41,59,43,43,117,60,105,59,41,114,61,116,40,114,44,110,91,117,93,44,117,44,110,41,59,10,114,101,116,117,114,110,32,114,125,102,117,110,99,116,105,111,110,32,115,40,110,44,116,44,114,44,101,41,123,118,97,114,32,117,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,102,111,114,40,101,38,38,117,38,38,40,114,61,110,91,45,45,117,93,41,59,117,45,45,59,41,114,61,116,40,114,44,110,91,117,93,44,117,44,110,41,59,114,101,116,117,114,110,32,114,125,102,117,110,99,116,105,111,110,32,104,40,110,44,116,41,123,102,111,114,40,118,97,114,32,114,61,45,49,44,101,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,43,43,114,60,101,59,41,105,102,40,116,40,110,91,114,93,44,114,44,110,41,41,114,101,116,117,114,110,32,116,114,117,101,59,114,101,116,117,114,110,32,102,97,108,115,101,125,102,117,110,99,116,105,111,110,32,112,40,110,44,116,44,114,41,123,118,97,114,32,101,59,114,101,116,117,114,110,32,114,40,110,44,102,117,110,99,116,105,111,110,40,110,44,114,44,117,41,123,105,102,40,116,40,110,44,114,44,117,41,41,114,101,116,117,114,110,32,101,61,114,44,102,97,108,115,101,125,41,44,101,125,102,117,110,99,116,105,111,110,32,95,40,110,44,116,44,114,44,101,41,123,118,97,114,32,117,61,110,46,108,101,110,103,116,104,59,102,111,114,40,114,43,61,101,63,49,58,45,49,59,101,63,114,45,45,58,43,43,114,60,117,59,41,105,102,40,116,40,110,91,114,93,44,114,44,110,41,41,114,101,116,117,114,110,32,114,59,114,101,116,117,114,110,45,49,125,102,117,110,99,116,105,111,110,32,118,40,110,44,116,44,114,41,123,105,102,40,116,61,61,61,116,41,110,58,123,45,45,114,59,102,111,114,40,118,97,114,32,101,61,110,46,108,101,110,103,116,104,59,43,43,114,60,101,59,41,105,102,40,110,91,114,93,61,61,61,116,41,123,110,61,114,59,98,114,101,97,107,32,110,125,110,61,45,49,125,101,108,115,101,32,110,61,95,40,110,44,100,44,114,41,59,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,103,40,110,44,116,44,114,44,101,41,123,10,45,45,114,59,102,111,114,40,118,97,114,32,117,61,110,46,108,101,110,103,116,104,59,43,43,114,60,117,59,41,105,102,40,101,40,110,91,114,93,44,116,41,41,114,101,116,117,114,110,32,114,59,114,101,116,117,114,110,45,49,125,102,117,110,99,116,105,111,110,32,100,40,110,41,123,114,101,116,117,114,110,32,110,33,61,61,110,125,102,117,110,99,116,105,111,110,32,121,40,110,44,116,41,123,118,97,114,32,114,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,114,63,109,40,110,44,116,41,47,114,58,70,125,102,117,110,99,116,105,111,110,32,98,40,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,116,63,84,58,116,91,110,93,125,125,102,117,110,99,116,105,111,110,32,120,40,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,110,63,84,58,110,91,116,93,125,125,102,117,110,99,116,105,111,110,32,106,40,110,44,116,44,114,44,101,44,117,41,123,114,101,116,117,114,110,32,117,40,110,44,102,117,110,99,116,105,111,110,40,110,44,117,44,105,41,123,114,61,101,63,40,101,61,102,97,108,115,101,44,110,41,58,116,40,114,44,110,44,117,44,105,41,125,41,44,114,125,102,117,110,99,116,105,111,110,32,119,40,110,44,116,41,123,118,97,114,32,114,61,110,46,108,101,110,103,116,104,59,102,111,114,40,110,46,115,111,114,116,40,116,41,59,114,45,45,59,41,110,91,114,93,61,110,91,114,93,46,99,59,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,109,40,110,44,116,41,123,102,111,114,40,118,97,114,32,114,44,101,61,45,49,44,117,61,110,46,108,101,110,103,116,104,59,43,43,101,60,117,59,41,123,118,97,114,32,105,61,116,40,110,91,101,93,41,59,105,33,61,61,84,38,38,40,114,61,114,61,61,61,84,63,105,58,114,43,105,41,125,114,101,116,117,114,110,32,114,59,10,125,102,117,110,99,116,105,111,110,32,65,40,110,44,116,41,123,102,111,114,40,118,97,114,32,114,61,45,49,44,101,61,65,114,114,97,121,40,110,41,59,43,43,114,60,110,59,41,101,91,114,93,61,116,40,114,41,59,114,101,116,117,114,110,32,101,125,102,117,110,99,116,105,111,110,32,69,40,110,44,116,41,123,114,101,116,117,114,110,32,99,40,116,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,91,116,44,110,91,116,93,93,125,41,125,102,117,110,99,116,105,111,110,32,107,40,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,40,116,41,125,125,102,117,110,99,116,105,111,110,32,83,40,110,44,116,41,123,114,101,116,117,114,110,32,99,40,116,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,91,116,93,125,41,125,102,117,110,99,116,105,111,110,32,79,40,110,44,116,41,123,114,101,116,117,114,110,32,110,46,104,97,115,40,116,41,125,102,117,110,99,116,105,111,110,32,73,40,110,44,116,41,123,102,111,114,40,118,97,114,32,114,61,45,49,44,101,61,110,46,108,101,110,103,116,104,59,43,43,114,60,101,38,38,45,49,60,118,40,116,44,110,91,114,93,44,48,41,59,41,59,114,101,116,117,114,110,32,114,125,102,117,110,99,116,105,111,110,32,82,40,110,44,116,41,123,102,111,114,40,118,97,114,32,114,61,110,46,108,101,110,103,116,104,59,114,45,45,38,38,45,49,60,118,40,116,44,110,91,114,93,44,48,41,59,41,59,114,101,116,117,114,110,32,114,125,102,117,110,99,116,105,111,110,32,122,40,110,41,123,114,101,116,117,114,110,34,92,92,34,43,85,110,91,110,93,125,102,117,110,99,116,105,111,110,32,87,40,110,41,123,118,97,114,32,116,61,45,49,44,114,61,65,114,114,97,121,40,110,46,115,105,122,101,41,59,114,101,116,117,114,110,32,110,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,110,44,101,41,123,114,91,43,43,116,93,61,91,101,44,110,93,59,10,125,41,44,114,125,102,117,110,99,116,105,111,110,32,66,40,110,44,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,114,41,123,114,101,116,117,114,110,32,110,40,116,40,114,41,41,125,125,102,117,110,99,116,105,111,110,32,76,40,110,44,116,41,123,102,111,114,40,118,97,114,32,114,61,45,49,44,101,61,110,46,108,101,110,103,116,104,44,117,61,48,44,105,61,91,93,59,43,43,114,60,101,59,41,123,118,97,114,32,111,61,110,91,114,93,59,111,33,61,61,116,38,38,34,95,95,108,111,100,97,115,104,95,112,108,97,99,101,104,111,108,100,101,114,95,95,34,33,61,61,111,124,124,40,110,91,114,93,61,34,95,95,108,111,100,97,115,104,95,112,108,97,99,101,104,111,108,100,101,114,95,95,34,44,105,91,117,43,43,93,61,114,41,125,114,101,116,117,114,110,32,105,125,102,117,110,99,116,105,111,110,32,85,40,110,41,123,118,97,114,32,116,61,45,49,44,114,61,65,114,114,97,121,40,110,46,115,105,122,101,41,59,114,101,116,117,114,110,32,110,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,110,41,123,114,91,43,43,116,93,61,110,125,41,44,114,125,102,117,110,99,116,105,111,110,32,67,40,110,41,123,118,97,114,32,116,61,45,49,44,114,61,65,114,114,97,121,40,110,46,115,105,122,101,41,59,114,101,116,117,114,110,32,110,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,110,41,123,114,91,43,43,116,93,61,91,110,44,110,93,125,41,44,114,125,102,117,110,99,116,105,111,110,32,68,40,110,41,123,105,102,40,82,110,46,116,101,115,116,40,110,41,41,123,102,111,114,40,118,97,114,32,116,61,79,110,46,108,97,115,116,73,110,100,101,120,61,48,59,79,110,46,116,101,115,116,40,110,41,59,41,43,43,116,59,110,61,116,125,101,108,115,101,32,110,61,81,110,40,110,41,59,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,77,40,110,41,123,114,101,116,117,114,110,32,82,110,46,116,101,115,116,40,110,41,63,110,46,109,97,116,99,104,40,79,110,41,124,124,91,93,58,110,46,115,112,108,105,116,40,34,34,41,59,10,125,118,97,114,32,84,44,36,61,49,47,48,44,70,61,78,97,78,44,78,61,91,91,34,97,114,121,34,44,49,50,56,93,44,91,34,98,105,110,100,34,44,49,93,44,91,34,98,105,110,100,75,101,121,34,44,50,93,44,91,34,99,117,114,114,121,34,44,56,93,44,91,34,99,117,114,114,121,82,105,103,104,116,34,44,49,54,93,44,91,34,102,108,105,112,34,44,53,49,50,93,44,91,34,112,97,114,116,105,97,108,34,44,51,50,93,44,91,34,112,97,114,116,105,97,108,82,105,103,104,116,34,44,54,52,93,44,91,34,114,101,97,114,103,34,44,50,53,54,93,93,44,80,61,47,92,98,95,95,112,92,43,61,39,39,59,47,103,44,90,61,47,92,98,40,95,95,112,92,43,61,41,39,39,92,43,47,103,44,113,61,47,40,95,95,101,92,40,46,42,63,92,41,124,92,98,95,95,116,92,41,41,92,43,39,39,59,47,103,44,86,61,47,38,40,63,58,97,109,112,124,108,116,124,103,116,124,113,117,111,116,124,35,51,57,41,59,47,103,44,75,61,47,91,38,60,62,34,39,93,47,103,44,71,61,82,101,103,69,120,112,40,86,46,115,111,117,114,99,101,41,44,72,61,82,101,103,69,120,112,40,75,46,115,111,117,114,99,101,41,44,74,61,47,60,37,45,40,91,92,115,92,83,93,43,63,41,37,62,47,103,44,89,61,47,60,37,40,91,92,115,92,83,93,43,63,41,37,62,47,103,44,81,61,47,60,37,61,40,91,92,115,92,83,93,43,63,41,37,62,47,103,44,88,61,47,92,46,124,92,91,40,63,58,91,94,91,92,93,93,42,124,40,91,34,39,93,41,40,63,58,40,63,33,92,49,41,91,94,92,92,93,124,92,92,46,41,42,63,92,49,41,92,93,47,44,110,110,61,47,94,92,119,42,36,47,44,116,110,61,47,91,94,46,91,92,93,93,43,124,92,91,40,63,58,40,45,63,92,100,43,40,63,58,92,46,92,100,43,41,63,41,124,40,91,34,39,93,41,40,40,63,58,40,63,33,92,50,41,91,94,92,92,93,124,92,92,46,41,42,63,41,92,50,41,92,93,124,40,63,61,40,63,58,92,46,124,92,91,92,93,41,40,63,58,92,46,124,92,91,92,93,124,36,41,41,47,103,44,114,110,61,47,91,92,92,94,36,46,42,43,63,40,41,91,92,93,123,125,124,93,47,103,44,101,110,61,82,101,103,69,120,112,40,114,110,46,115,111,117,114,99,101,41,44,117,110,61,47,94,92,115,43,124,92,115,43,36,47,103,44,111,110,61,47,94,92,115,43,47,44,102,110,61,47,92,115,43,36,47,44,99,110,61,47,92,123,40,63,58,92,110,92,47,92,42,32,92,91,119,114,97,112,112,101,100,32,119,105,116,104,32,46,43,92,93,32,92,42,92,47,41,63,92,110,63,47,44,97,110,61,47,92,123,92,110,92,47,92,42,32,92,91,119,114,97,112,112,101,100,32,119,105,116,104,32,40,46,43,41,92,93,32,92,42,47,44,108,110,61,47,44,63,32,38,32,47,44,115,110,61,47,91,94,92,120,48,48,45,92,120,50,102,92,120,51,97,45,92,120,52,48,92,120,53,98,45,92,120,54,48,92,120,55,98,45,92,120,55,102,93,43,47,103,44,104,110,61,47,92,92,40,92,92,41,63,47,103,44,112,110,61,47,92,36,92,123,40,91,94,92,92,125,93,42,40,63,58,92,92,46,91,94,92,92,125,93,42,41,42,41,92,125,47,103,44,95,110,61,47,92,119,42,36,47,44,118,110,61,47,94,91,45,43,93,48,120,91,48,45,57,97,45,102,93,43,36,47,105,44,103,110,61,47,94,48,98,91,48,49,93,43,36,47,105,44,100,110,61,47,94,92,91,111,98,106,101,99,116,32,46,43,63,67,111,110,115,116,114,117,99,116,111,114,92,93,36,47,44,121,110,61,47,94,48,111,91,48,45,55,93,43,36,47,105,44,98,110,61,47,94,40,63,58,48,124,91,49,45,57,93,92,100,42,41,36,47,44,120,110,61,47,91,92,120,99,48,45,92,120,100,54,92,120,100,56,45,92,120,102,54,92,120,102,56,45,92,120,102,102,92,117,48,49,48,48,45,92,117,48,49,55,102,93,47,103,44,106,110,61,47,40,36,94,41,47,44,119,110,61,47,91,39,92,110,92,114,92,117,50,48,50,56,92,117,50,48,50,57,92,92,93,47,103,44,109,110,61,34,91,92,92,117,102,101,48,101,92,92,117,102,101,48,102,93,63,40,63,58,91,92,92,117,48,51,48,48,45,92,92,117,48,51,54,102,92,92,117,102,101,50,48,45,92,92,117,102,101,50,102,92,92,117,50,48,100,48,45,92,92,117,50,48,102,102,93,124,92,92,117,100,56,51,99,91,92,92,117,100,102,102,98,45,92,92,117,100,102,102,102,93,41,63,40,63,58,92,92,117,50,48,48,100,40,63,58,91,94,92,92,117,100,56,48,48,45,92,92,117,100,102,102,102,93,124,40,63,58,92,92,117,100,56,51,99,91,92,92,117,100,100,101,54,45,92,92,117,100,100,102,102,93,41,123,50,125,124,91,92,92,117,100,56,48,48,45,92,92,117,100,98,102,102,93,91,92,92,117,100,99,48,48,45,92,92,117,100,102,102,102,93,41,91,92,92,117,102,101,48,101,92,92,117,102,101,48,102,93,63,40,63,58,91,92,92,117,48,51,48,48,45,92,92,117,48,51,54,102,92,92,117,102,101,50,48,45,92,92,117,102,101,50,102,92,92,117,50,48,100,48,45,92,92,117,50,48,102,102,93,124,92,92,117,100,56,51,99,91,92,92,117,100,102,102,98,45,92,92,117,100,102,102,102,93,41,63,41,42,34,44,65,110,61,34,40,63,58,91,92,92,117,50,55,48,48,45,92,92,117,50,55,98,102,93,124,40,63,58,92,92,117,100,56,51,99,91,92,92,117,100,100,101,54,45,92,92,117,100,100,102,102,93,41,123,50,125,124,91,92,92,117,100,56,48,48,45,92,92,117,100,98,102,102,93,91,92,92,117,100,99,48,48,45,92,92,117,100,102,102,102,93,41,34,43,109,110,44,69,110,61,34,40,63,58,91,94,92,92,117,100,56,48,48,45,92,92,117,100,102,102,102,93,91,92,92,117,48,51,48,48,45,92,92,117,48,51,54,102,92,92,117,102,101,50,48,45,92,92,117,102,101,50,102,92,92,117,50,48,100,48,45,92,92,117,50,48,102,102,93,63,124,91,92,92,117,48,51,48,48,45,92,92,117,48,51,54,102,92,92,117,102,101,50,48,45,92,92,117,102,101,50,102,92,92,117,50,48,100,48,45,92,92,117,50,48,102,102,93,124,40,63,58,92,92,117,100,56,51,99,91,92,92,117,100,100,101,54,45,92,92,117,100,100,102,102,93,41,123,50,125,124,91,92,92,117,100,56,48,48,45,92,92,117,100,98,102,102,93,91,92,92,117,100,99,48,48,45,92,92,117,100,102,102,102,93,124,91,92,92,117,100,56,48,48,45,92,92,117,100,102,102,102,93,41,34,44,107,110,61,82,101,103,69,120,112,40,34,91,39,92,117,50,48,49,57,93,34,44,34,103,34,41,44,83,110,61,82,101,103,69,120,112,40,34,91,92,92,117,48,51,48,48,45,92,92,117,48,51,54,102,92,92,117,102,101,50,48,45,92,92,117,102,101,50,102,92,92,117,50,48,100,48,45,92,92,117,50,48,102,102,93,34,44,34,103,34,41,44,79,110,61,82,101,103,69,120,112,40,34,92,92,117,100,56,51,99,91,92,92,117,100,102,102,98,45,92,92,117,100,102,102,102,93,40,63,61,92,92,117,100,56,51,99,91,92,92,117,100,102,102,98,45,92,92,117,100,102,102,102,93,41,124,34,43,69,110,43,109,110,44,34,103,34,41,44,73,110,61,82,101,103,69,120,112,40,91,34,91,65,45,90,92,92,120,99,48,45,92,92,120,100,54,92,92,120,100,56,45,92,92,120,100,101,93,63,91,97,45,122,92,92,120,100,102,45,92,92,120,102,54,92,92,120,102,56,45,92,92,120,102,102,93,43,40,63,58,91,39,92,117,50,48,49,57,93,40,63,58,100,124,108,108,124,109,124,114,101,124,115,124,116,124,118,101,41,41,63,40,63,61,91,92,92,120,97,99,92,92,120,98,49,92,92,120,100,55,92,92,120,102,55,92,92,120,48,48,45,92,92,120,50,102,92,92,120,51,97,45,92,92,120,52,48,92,92,120,53,98,45,92,92,120,54,48,92,92,120,55,98,45,92,92,120,98,102,92,92,117,50,48,48,48,45,92,92,117,50,48,54,102,32,92,92,116,92,92,120,48,98,92,92,102,92,92,120,97,48,92,92,117,102,101,102,102,92,92,110,92,92,114,92,92,117,50,48,50,56,92,92,117,50,48,50,57,92,92,117,49,54,56,48,92,92,117,49,56,48,101,92,92,117,50,48,48,48,92,92,117,50,48,48,49,92,92,117,50,48,48,50,92,92,117,50,48,48,51,92,92,117,50,48,48,52,92,92,117,50,48,48,53,92,92,117,50,48,48,54,92,92,117,50,48,48,55,92,92,117,50,48,48,56,92,92,117,50,48,48,57,92,92,117,50,48,48,97,92,92,117,50,48,50,102,92,92,117,50,48,53,102,92,92,117,51,48,48,48,93,124,91,65,45,90,92,92,120,99,48,45,92,92,120,100,54,92,92,120,100,56,45,92,92,120,100,101,93,124,36,41,124,40,63,58,91,65,45,90,92,92,120,99,48,45,92,92,120,100,54,92,92,120,100,56,45,92,92,120,100,101,93,124,91,94,92,92,117,100,56,48,48,45,92,92,117,100,102,102,102,92,92,120,97,99,92,92,120,98,49,92,92,120,100,55,92,92,120,102,55,92,92,120,48,48,45,92,92,120,50,102,92,92,120,51,97,45,92,92,120,52,48,92,92,120,53,98,45,92,92,120,54,48,92,92,120,55,98,45,92,92,120,98,102,92,92,117,50,48,48,48,45,92,92,117,50,48,54,102,32,92,92,116,92,92,120,48,98,92,92,102,92,92,120,97,48,92,92,117,102,101,102,102,92,92,110,92,92,114,92,92,117,50,48,50,56,92,92,117,50,48,50,57,92,92,117,49,54,56,48,92,92,117,49,56,48,101,92,92,117,50,48,48,48,92,92,117,50,48,48,49,92,92,117,50,48,48,50,92,92,117,50,48,48,51,92,92,117,50,48,48,52,92,92,117,50,48,48,53,92,92,117,50,48,48,54,92,92,117,50,48,48,55,92,92,117,50,48,48,56,92,92,117,50,48,48,57,92,92,117,50,48,48,97,92,92,117,50,48,50,102,92,92,117,50,48,53,102,92,92,117,51,48,48,48,92,92,100,43,92,92,117,50,55,48,48,45,92,92,117,50,55,98,102,97,45,122,92,92,120,100,102,45,92,92,120,102,54,92,92,120,102,56,45,92,92,120,102,102,65,45,90,92,92,120,99,48,45,92,92,120,100,54,92,92,120,100,56,45,92,92,120,100,101,93,41,43,40,63,58,91,39,92,117,50,48,49,57,93,40,63,58,68,124,76,76,124,77,124,82,69,124,83,124,84,124,86,69,41,41,63,40,63,61,91,92,92,120,97,99,92,92,120,98,49,92,92,120,100,55,92,92,120,102,55,92,92,120,48,48,45,92,92,120,50,102,92,92,120,51,97,45,92,92,120,52,48,92,92,120,53,98,45,92,92,120,54,48,92,92,120,55,98,45,92,92,120,98,102,92,92,117,50,48,48,48,45,92,92,117,50,48,54,102,32,92,92,116,92,92,120,48,98,92,92,102,92,92,120,97,48,92,92,117,102,101,102,102,92,92,110,92,92,114,92,92,117,50,48,50,56,92,92,117,50,48,50,57,92,92,117,49,54,56,48,92,92,117,49,56,48,101,92,92,117,50,48,48,48,92,92,117,50,48,48,49,92,92,117,50,48,48,50,92,92,117,50,48,48,51,92,92,117,50,48,48,52,92,92,117,50,48,48,53,92,92,117,50,48,48,54,92,92,117,50,48,48,55,92,92,117,50,48,48,56,92,92,117,50,48,48,57,92,92,117,50,48,48,97,92,92,117,50,48,50,102,92,92,117,50,48,53,102,92,92,117,51,48,48,48,93,124,91,65,45,90,92,92,120,99,48,45,92,92,120,100,54,92,92,120,100,56,45,92,92,120,100,101,93,40,63,58,91,97,45,122,92,92,120,100,102,45,92,92,120,102,54,92,92,120,102,56,45,92,92,120,102,102,93,124,91,94,92,92,117,100,56,48,48,45,92,92,117,100,102,102,102,92,92,120,97,99,92,92,120,98,49,92,92,120,100,55,92,92,120,102,55,92,92,120,48,48,45,92,92,120,50,102,92,92,120,51,97,45,92,92,120,52,48,92,92,120,53,98,45,92,92,120,54,48,92,92,120,55,98,45,92,92,120,98,102,92,92,117,50,48,48,48,45,92,92,117,50,48,54,102,32,92,92,116,92,92,120,48,98,92,92,102,92,92,120,97,48,92,92,117,102,101,102,102,92,92,110,92,92,114,92,92,117,50,48,50,56,92,92,117,50,48,50,57,92,92,117,49,54,56,48,92,92,117,49,56,48,101,92,92,117,50,48,48,48,92,92,117,50,48,48,49,92,92,117,50,48,48,50,92,92,117,50,48,48,51,92,92,117,50,48,48,52,92,92,117,50,48,48,53,92,92,117,50,48,48,54,92,92,117,50,48,48,55,92,92,117,50,48,48,56,92,92,117,50,48,48,57,92,92,117,50,48,48,97,92,92,117,50,48,50,102,92,92,117,50,48,53,102,92,92,117,51,48,48,48,92,92,100,43,92,92,117,50,55,48,48,45,92,92,117,50,55,98,102,97,45,122,92,92,120,100,102,45,92,92,120,102,54,92,92,120,102,56,45,92,92,120,102,102,65,45,90,92,92,120,99,48,45,92,92,120,100,54,92,92,120,100,56,45,92,92,120,100,101,93,41,124,36,41,124,91,65,45,90,92,92,120,99,48,45,92,92,120,100,54,92,92,120,100,56,45,92,92,120,100,101,93,63,40,63,58,91,97,45,122,92,92,120,100,102,45,92,92,120,102,54,92,92,120,102,56,45,92,92,120,102,102,93,124,91,94,92,92,117,100,56,48,48,45,92,92,117,100,102,102,102,92,92,120,97,99,92,92,120,98,49,92,92,120,100,55,92,92,120,102,55,92,92,120,48,48,45,92,92,120,50,102,92,92,120,51,97,45,92,92,120,52,48,92,92,120,53,98,45,92,92,120,54,48,92,92,120,55,98,45,92,92,120,98,102,92,92,117,50,48,48,48,45,92,92,117,50,48,54,102,32,92,92,116,92,92,120,48,98,92,92,102,92,92,120,97,48,92,92,117,102,101,102,102,92,92,110,92,92,114,92,92,117,50,48,50,56,92,92,117,50,48,50,57,92,92,117,49,54,56,48,92,92,117,49,56,48,101,92,92,117,50,48,48,48,92,92,117,50,48,48,49,92,92,117,50,48,48,50,92,92,117,50,48,48,51,92,92,117,50,48,48,52,92,92,117,50,48,48,53,92,92,117,50,48,48,54,92,92,117,50,48,48,55,92,92,117,50,48,48,56,92,92,117,50,48,48,57,92,92,117,50,48,48,97,92,92,117,50,48,50,102,92,92,117,50,48,53,102,92,92,117,51,48,48,48,92,92,100,43,92,92,117,50,55,48,48,45,92,92,117,50,55,98,102,97,45,122,92,92,120,100,102,45,92,92,120,102,54,92,92,120,102,56,45,92,92,120,102,102,65,45,90,92,92,120,99,48,45,92,92,120,100,54,92,92,120,100,56,45,92,92,120,100,101,93,41,43,40,63,58,91,39,92,117,50,48,49,57,93,40,63,58,100,124,108,108,124,109,124,114,101,124,115,124,116,124,118,101,41,41,63,124,91,65,45,90,92,92,120,99,48,45,92,92,120,100,54,92,92,120,100,56,45,92,92,120,100,101,93,43,40,63,58,91,39,92,117,50,48,49,57,93,40,63,58,68,124,76,76,124,77,124,82,69,124,83,124,84,124,86,69,41,41,63,124,92,92,100,42,40,63,58,49,83,84,124,50,78,68,124,51,82,68,124,40,63,33,91,49,50,51,93,41,92,92,100,84,72,41,40,63,61,92,92,98,124,91,97,45,122,95,93,41,124,92,92,100,42,40,63,58,49,115,116,124,50,110,100,124,51,114,100,124,40,63,33,91,49,50,51,93,41,92,92,100,116,104,41,40,63,61,92,92,98,124,91,65,45,90,95,93,41,124,92,92,100,43,34,44,65,110,93,46,106,111,105,110,40,34,124,34,41,44,34,103,34,41,44,82,110,61,82,101,103,69,120,112,40,34,91,92,92,117,50,48,48,100,92,92,117,100,56,48,48,45,92,92,117,100,102,102,102,92,92,117,48,51,48,48,45,92,92,117,48,51,54,102,92,92,117,102,101,50,48,45,92,92,117,102,101,50,102,92,92,117,50,48,100,48,45,92,92,117,50,48,102,102,92,92,117,102,101,48,101,92,92,117,102,101,48,102,93,34,41,44,122,110,61,47,91,97,45,122,93,91,65,45,90,93,124,91,65,45,90,93,123,50,125,91,97,45,122,93,124,91,48,45,57,93,91,97,45,122,65,45,90,93,124,91,97,45,122,65,45,90,93,91,48,45,57,93,124,91,94,97,45,122,65,45,90,48,45,57,32,93,47,44,87,110,61,34,65,114,114,97,121,32,66,117,102,102,101,114,32,68,97,116,97,86,105,101,119,32,68,97,116,101,32,69,114,114,111,114,32,70,108,111,97,116,51,50,65,114,114,97,121,32,70,108,111,97,116,54,52,65,114,114,97,121,32,70,117,110,99,116,105,111,110,32,73,110,116,56,65,114,114,97,121,32,73,110,116,49,54,65,114,114,97,121,32,73,110,116,51,50,65,114,114,97,121,32,77,97,112,32,77,97,116,104,32,79,98,106,101,99,116,32,80,114,111,109,105,115,101,32,82,101,103,69,120,112,32,83,101,116,32,83,116,114,105,110,103,32,83,121,109,98,111,108,32,84,121,112,101,69,114,114,111,114,32,85,105,110,116,56,65,114,114,97,121,32,85,105,110,116,56,67,108,97,109,112,101,100,65,114,114,97,121,32,85,105,110,116,49,54,65,114,114,97,121,32,85,105,110,116,51,50,65,114,114,97,121,32,87,101,97,107,77,97,112,32,95,32,99,108,101,97,114,84,105,109,101,111,117,116,32,105,115,70,105,110,105,116,101,32,112,97,114,115,101,73,110,116,32,115,101,116,84,105,109,101,111,117,116,34,46,115,112,108,105,116,40,34,32,34,41,44,66,110,61,123,125,59,10,66,110,91,34,91,111,98,106,101,99,116,32,70,108,111,97,116,51,50,65,114,114,97,121,93,34,93,61,66,110,91,34,91,111,98,106,101,99,116,32,70,108,111,97,116,54,52,65,114,114,97,121,93,34,93,61,66,110,91,34,91,111,98,106,101,99,116,32,73,110,116,56,65,114,114,97,121,93,34,93,61,66,110,91,34,91,111,98,106,101,99,116,32,73,110,116,49,54,65,114,114,97,121,93,34,93,61,66,110,91,34,91,111,98,106,101,99,116,32,73,110,116,51,50,65,114,114,97,121,93,34,93,61,66,110,91,34,91,111,98,106,101,99,116,32,85,105,110,116,56,65,114,114,97,121,93,34,93,61,66,110,91,34,91,111,98,106,101,99,116,32,85,105,110,116,56,67,108,97,109,112,101,100,65,114,114,97,121,93,34,93,61,66,110,91,34,91,111,98,106,101,99,116,32,85,105,110,116,49,54,65,114,114,97,121,93,34,93,61,66,110,91,34,91,111,98,106,101,99,116,32,85,105,110,116,51,50,65,114,114,97,121,93,34,93,61,116,114,117,101,44,66,110,91,34,91,111,98,106,101,99,116,32,65,114,103,117,109,101,110,116,115,93,34,93,61,66,110,91,34,91,111,98,106,101,99,116,32,65,114,114,97,121,93,34,93,61,66,110,91,34,91,111,98,106,101,99,116,32,65,114,114,97,121,66,117,102,102,101,114,93,34,93,61,66,110,91,34,91,111,98,106,101,99,116,32,66,111,111,108,101,97,110,93,34,93,61,66,110,91,34,91,111,98,106,101,99,116,32,68,97,116,97,86,105,101,119,93,34,93,61,66,110,91,34,91,111,98,106,101,99,116,32,68,97,116,101,93,34,93,61,66,110,91,34,91,111,98,106,101,99,116,32,69,114,114,111,114,93,34,93,61,66,110,91,34,91,111,98,106,101,99,116,32,70,117,110,99,116,105,111,110,93,34,93,61,66,110,91,34,91,111,98,106,101,99,116,32,77,97,112,93,34,93,61,66,110,91,34,91,111,98,106,101,99,116,32,78,117,109,98,101,114,93,34,93,61,66,110,91,34,91,111,98,106,101,99,116,32,79,98,106,101,99,116,93,34,93,61,66,110,91,34,91,111,98,106,101,99,116,32,82,101,103,69,120,112,93,34,93,61,66,110,91,34,91,111,98,106,101,99,116,32,83,101,116,93,34,93,61,66,110,91,34,91,111,98,106,101,99,116,32,83,116,114,105,110,103,93,34,93,61,66,110,91,34,91,111,98,106,101,99,116,32,87,101,97,107,77,97,112,93,34,93,61,102,97,108,115,101,59,10,118,97,114,32,76,110,61,123,125,59,76,110,91,34,91,111,98,106,101,99,116,32,65,114,103,117,109,101,110,116,115,93,34,93,61,76,110,91,34,91,111,98,106,101,99,116,32,65,114,114,97,121,93,34,93,61,76,110,91,34,91,111,98,106,101,99,116,32,65,114,114,97,121,66,117,102,102,101,114,93,34,93,61,76,110,91,34,91,111,98,106,101,99,116,32,68,97,116,97,86,105,101,119,93,34,93,61,76,110,91,34,91,111,98,106,101,99,116,32,66,111,111,108,101,97,110,93,34,93,61,76,110,91,34,91,111,98,106,101,99,116,32,68,97,116,101,93,34,93,61,76,110,91,34,91,111,98,106,101,99,116,32,70,108,111,97,116,51,50,65,114,114,97,121,93,34,93,61,76,110,91,34,91,111,98,106,101,99,116,32,70,108,111,97,116,54,52,65,114,114,97,121,93,34,93,61,76,110,91,34,91,111,98,106,101,99,116,32,73,110,116,56,65,114,114,97,121,93,34,93,61,76,110,91,34,91,111,98,106,101,99,116,32,73,110,116,49,54,65,114,114,97,121,93,34,93,61,76,110,91,34,91,111,98,106,101,99,116,32,73,110,116,51,50,65,114,114,97,121,93,34,93,61,76,110,91,34,91,111,98,106,101,99,116,32,77,97,112,93,34,93,61,76,110,91,34,91,111,98,106,101,99,116,32,78,117,109,98,101,114,93,34,93,61,76,110,91,34,91,111,98,106,101,99,116,32,79,98,106,101,99,116,93,34,93,61,76,110,91,34,91,111,98,106,101,99,116,32,82,101,103,69,120,112,93,34,93,61,76,110,91,34,91,111,98,106,101,99,116,32,83,101,116,93,34,93,61,76,110,91,34,91,111,98,106,101,99,116,32,83,116,114,105,110,103,93,34,93,61,76,110,91,34,91,111,98,106,101,99,116,32,83,121,109,98,111,108,93,34,93,61,76,110,91,34,91,111,98,106,101,99,116,32,85,105,110,116,56,65,114,114,97,121,93,34,93,61,76,110,91,34,91,111,98,106,101,99,116,32,85,105,110,116,56,67,108,97,109,112,101,100,65,114,114,97,121,93,34,93,61,76,110,91,34,91,111,98,106,101,99,116,32,85,105,110,116,49,54,65,114,114,97,121,93,34,93,61,76,110,91,34,91,111,98,106,101,99,116,32,85,105,110,116,51,50,65,114,114,97,121,93,34,93,61,116,114,117,101,44,10,76,110,91,34,91,111,98,106,101,99,116,32,69,114,114,111,114,93,34,93,61,76,110,91,34,91,111,98,106,101,99,116,32,70,117,110,99,116,105,111,110,93,34,93,61,76,110,91,34,91,111,98,106,101,99,116,32,87,101,97,107,77,97,112,93,34,93,61,102,97,108,115,101,59,118,97,114,32,85,110,61,123,34,92,92,34,58,34,92,92,34,44,34,39,34,58,34,39,34,44,34,92,110,34,58,34,110,34,44,34,92,114,34,58,34,114,34,44,34,92,117,50,48,50,56,34,58,34,117,50,48,50,56,34,44,34,92,117,50,48,50,57,34,58,34,117,50,48,50,57,34,125,44,67,110,61,112,97,114,115,101,70,108,111,97,116,44,68,110,61,112,97,114,115,101,73,110,116,44,77,110,61,116,121,112,101,111,102,32,103,108,111,98,97,108,61,61,34,111,98,106,101,99,116,34,38,38,103,108,111,98,97,108,38,38,103,108,111,98,97,108,46,79,98,106,101,99,116,61,61,61,79,98,106,101,99,116,38,38,103,108,111,98,97,108,44,84,110,61,116,121,112,101,111,102,32,115,101,108,102,61,61,34,111,98,106,101,99,116,34,38,38,115,101,108,102,38,38,115,101,108,102,46,79,98,106,101,99,116,61,61,61,79,98,106,101,99,116,38,38,115,101,108,102,44,36,110,61,77,110,124,124,84,110,124,124,70,117,110,99,116,105,111,110,40,34,114,101,116,117,114,110,32,116,104,105,115,34,41,40,41,44,70,110,61,116,121,112,101,111,102,32,101,120,112,111,114,116,115,61,61,34,111,98,106,101,99,116,34,38,38,101,120,112,111,114,116,115,38,38,33,101,120,112,111,114,116,115,46,110,111,100,101,84,121,112,101,38,38,101,120,112,111,114,116,115,44,78,110,61,70,110,38,38,116,121,112,101,111,102,32,109,111,100,117,108,101,61,61,34,111,98,106,101,99,116,34,38,38,109,111,100,117,108,101,38,38,33,109,111,100,117,108,101,46,110,111,100,101,84,121,112,101,38,38,109,111,100,117,108,101,44,80,110,61,78,110,38,38,78,110,46,101,120,112,111,114,116,115,61,61,61,70,110,44,90,110,61,80,110,38,38,77,110,46,112,114,111,99,101,115,115,44,113,110,61,102,117,110,99,116,105,111,110,40,41,123,10,116,114,121,123,118,97,114,32,110,61,78,110,38,38,78,110,46,102,38,38,78,110,46,102,40,34,117,116,105,108,34,41,46,116,121,112,101,115,59,114,101,116,117,114,110,32,110,63,110,58,90,110,38,38,90,110,46,98,105,110,100,105,110,103,38,38,90,110,46,98,105,110,100,105,110,103,40,34,117,116,105,108,34,41,125,99,97,116,99,104,40,110,41,123,125,125,40,41,44,86,110,61,113,110,38,38,113,110,46,105,115,65,114,114,97,121,66,117,102,102,101,114,44,75,110,61,113,110,38,38,113,110,46,105,115,68,97,116,101,44,71,110,61,113,110,38,38,113,110,46,105,115,77,97,112,44,72,110,61,113,110,38,38,113,110,46,105,115,82,101,103,69,120,112,44,74,110,61,113,110,38,38,113,110,46,105,115,83,101,116,44,89,110,61,113,110,38,38,113,110,46,105,115,84,121,112,101,100,65,114,114,97,121,44,81,110,61,98,40,34,108,101,110,103,116,104,34,41,44,88,110,61,120,40,123,34,92,120,99,48,34,58,34,65,34,44,34,92,120,99,49,34,58,34,65,34,44,34,92,120,99,50,34,58,34,65,34,44,34,92,120,99,51,34,58,34,65,34,44,34,92,120,99,52,34,58,34,65,34,44,34,92,120,99,53,34,58,34,65,34,44,34,92,120,101,48,34,58,34,97,34,44,34,92,120,101,49,34,58,34,97,34,44,34,92,120,101,50,34,58,34,97,34,44,34,92,120,101,51,34,58,34,97,34,44,34,92,120,101,52,34,58,34,97,34,44,34,92,120,101,53,34,58,34,97,34,44,34,92,120,99,55,34,58,34,67,34,44,34,92,120,101,55,34,58,34,99,34,44,34,92,120,100,48,34,58,34,68,34,44,34,92,120,102,48,34,58,34,100,34,44,34,92,120,99,56,34,58,34,69,34,44,34,92,120,99,57,34,58,34,69,34,44,34,92,120,99,97,34,58,34,69,34,44,34,92,120,99,98,34,58,34,69,34,44,34,92,120,101,56,34,58,34,101,34,44,34,92,120,101,57,34,58,34,101,34,44,34,92,120,101,97,34,58,34,101,34,44,34,92,120,101,98,34,58,34,101,34,44,34,92,120,99,99,34,58,34,73,34,44,10,34,92,120,99,100,34,58,34,73,34,44,34,92,120,99,101,34,58,34,73,34,44,34,92,120,99,102,34,58,34,73,34,44,34,92,120,101,99,34,58,34,105,34,44,34,92,120,101,100,34,58,34,105,34,44,34,92,120,101,101,34,58,34,105,34,44,34,92,120,101,102,34,58,34,105,34,44,34,92,120,100,49,34,58,34,78,34,44,34,92,120,102,49,34,58,34,110,34,44,34,92,120,100,50,34,58,34,79,34,44,34,92,120,100,51,34,58,34,79,34,44,34,92,120,100,52,34,58,34,79,34,44,34,92,120,100,53,34,58,34,79,34,44,34,92,120,100,54,34,58,34,79,34,44,34,92,120,100,56,34,58,34,79,34,44,34,92,120,102,50,34,58,34,111,34,44,34,92,120,102,51,34,58,34,111,34,44,34,92,120,102,52,34,58,34,111,34,44,34,92,120,102,53,34,58,34,111,34,44,34,92,120,102,54,34,58,34,111,34,44,34,92,120,102,56,34,58,34,111,34,44,34,92,120,100,57,34,58,34,85,34,44,34,92,120,100,97,34,58,34,85,34,44,34,92,120,100,98,34,58,34,85,34,44,34,92,120,100,99,34,58,34,85,34,44,34,92,120,102,57,34,58,34,117,34,44,34,92,120,102,97,34,58,34,117,34,44,34,92,120,102,98,34,58,34,117,34,44,34,92,120,102,99,34,58,34,117,34,44,34,92,120,100,100,34,58,34,89,34,44,34,92,120,102,100,34,58,34,121,34,44,34,92,120,102,102,34,58,34,121,34,44,34,92,120,99,54,34,58,34,65,101,34,44,34,92,120,101,54,34,58,34,97,101,34,44,34,92,120,100,101,34,58,34,84,104,34,44,34,92,120,102,101,34,58,34,116,104,34,44,34,92,120,100,102,34,58,34,115,115,34,44,34,92,117,48,49,48,48,34,58,34,65,34,44,34,92,117,48,49,48,50,34,58,34,65,34,44,34,92,117,48,49,48,52,34,58,34,65,34,44,34,92,117,48,49,48,49,34,58,34,97,34,44,34,92,117,48,49,48,51,34,58,34,97,34,44,34,92,117,48,49,48,53,34,58,34,97,34,44,34,92,117,48,49,48,54,34,58,34,67,34,44,10,34,92,117,48,49,48,56,34,58,34,67,34,44,34,92,117,48,49,48,97,34,58,34,67,34,44,34,92,117,48,49,48,99,34,58,34,67,34,44,34,92,117,48,49,48,55,34,58,34,99,34,44,34,92,117,48,49,48,57,34,58,34,99,34,44,34,92,117,48,49,48,98,34,58,34,99,34,44,34,92,117,48,49,48,100,34,58,34,99,34,44,34,92,117,48,49,48,101,34,58,34,68,34,44,34,92,117,48,49,49,48,34,58,34,68,34,44,34,92,117,48,49,48,102,34,58,34,100,34,44,34,92,117,48,49,49,49,34,58,34,100,34,44,34,92,117,48,49,49,50,34,58,34,69,34,44,34,92,117,48,49,49,52,34,58,34,69,34,44,34,92,117,48,49,49,54,34,58,34,69,34,44,34,92,117,48,49,49,56,34,58,34,69,34,44,34,92,117,48,49,49,97,34,58,34,69,34,44,34,92,117,48,49,49,51,34,58,34,101,34,44,34,92,117,48,49,49,53,34,58,34,101,34,44,34,92,117,48,49,49,55,34,58,34,101,34,44,34,92,117,48,49,49,57,34,58,34,101,34,44,34,92,117,48,49,49,98,34,58,34,101,34,44,34,92,117,48,49,49,99,34,58,34,71,34,44,34,92,117,48,49,49,101,34,58,34,71,34,44,34,92,117,48,49,50,48,34,58,34,71,34,44,34,92,117,48,49,50,50,34,58,34,71,34,44,34,92,117,48,49,49,100,34,58,34,103,34,44,34,92,117,48,49,49,102,34,58,34,103,34,44,34,92,117,48,49,50,49,34,58,34,103,34,44,34,92,117,48,49,50,51,34,58,34,103,34,44,34,92,117,48,49,50,52,34,58,34,72,34,44,34,92,117,48,49,50,54,34,58,34,72,34,44,34,92,117,48,49,50,53,34,58,34,104,34,44,34,92,117,48,49,50,55,34,58,34,104,34,44,34,92,117,48,49,50,56,34,58,34,73,34,44,34,92,117,48,49,50,97,34,58,34,73,34,44,34,92,117,48,49,50,99,34,58,34,73,34,44,34,92,117,48,49,50,101,34,58,34,73,34,44,34,92,117,48,49,51,48,34,58,34,73,34,44,34,92,117,48,49,50,57,34,58,34,105,34,44,10,34,92,117,48,49,50,98,34,58,34,105,34,44,34,92,117,48,49,50,100,34,58,34,105,34,44,34,92,117,48,49,50,102,34,58,34,105,34,44,34,92,117,48,49,51,49,34,58,34,105,34,44,34,92,117,48,49,51,52,34,58,34,74,34,44,34,92,117,48,49,51,53,34,58,34,106,34,44,34,92,117,48,49,51,54,34,58,34,75,34,44,34,92,117,48,49,51,55,34,58,34,107,34,44,34,92,117,48,49,51,56,34,58,34,107,34,44,34,92,117,48,49,51,57,34,58,34,76,34,44,34,92,117,48,49,51,98,34,58,34,76,34,44,34,92,117,48,49,51,100,34,58,34,76,34,44,34,92,117,48,49,51,102,34,58,34,76,34,44,34,92,117,48,49,52,49,34,58,34,76,34,44,34,92,117,48,49,51,97,34,58,34,108,34,44,34,92,117,48,49,51,99,34,58,34,108,34,44,34,92,117,48,49,51,101,34,58,34,108,34,44,34,92,117,48,49,52,48,34,58,34,108,34,44,34,92,117,48,49,52,50,34,58,34,108,34,44,34,92,117,48,49,52,51,34,58,34,78,34,44,34,92,117,48,49,52,53,34,58,34,78,34,44,34,92,117,48,49,52,55,34,58,34,78,34,44,34,92,117,48,49,52,97,34,58,34,78,34,44,34,92,117,48,49,52,52,34,58,34,110,34,44,34,92,117,48,49,52,54,34,58,34,110,34,44,34,92,117,48,49,52,56,34,58,34,110,34,44,34,92,117,48,49,52,98,34,58,34,110,34,44,34,92,117,48,49,52,99,34,58,34,79,34,44,34,92,117,48,49,52,101,34,58,34,79,34,44,34,92,117,48,49,53,48,34,58,34,79,34,44,34,92,117,48,49,52,100,34,58,34,111,34,44,34,92,117,48,49,52,102,34,58,34,111,34,44,34,92,117,48,49,53,49,34,58,34,111,34,44,34,92,117,48,49,53,52,34,58,34,82,34,44,34,92,117,48,49,53,54,34,58,34,82,34,44,34,92,117,48,49,53,56,34,58,34,82,34,44,34,92,117,48,49,53,53,34,58,34,114,34,44,34,92,117,48,49,53,55,34,58,34,114,34,44,34,92,117,48,49,53,57,34,58,34,114,34,44,10,34,92,117,48,49,53,97,34,58,34,83,34,44,34,92,117,48,49,53,99,34,58,34,83,34,44,34,92,117,48,49,53,101,34,58,34,83,34,44,34,92,117,48,49,54,48,34,58,34,83,34,44,34,92,117,48,49,53,98,34,58,34,115,34,44,34,92,117,48,49,53,100,34,58,34,115,34,44,34,92,117,48,49,53,102,34,58,34,115,34,44,34,92,117,48,49,54,49,34,58,34,115,34,44,34,92,117,48,49,54,50,34,58,34,84,34,44,34,92,117,48,49,54,52,34,58,34,84,34,44,34,92,117,48,49,54,54,34,58,34,84,34,44,34,92,117,48,49,54,51,34,58,34,116,34,44,34,92,117,48,49,54,53,34,58,34,116,34,44,34,92,117,48,49,54,55,34,58,34,116,34,44,34,92,117,48,49,54,56,34,58,34,85,34,44,34,92,117,48,49,54,97,34,58,34,85,34,44,34,92,117,48,49,54,99,34,58,34,85,34,44,34,92,117,48,49,54,101,34,58,34,85,34,44,34,92,117,48,49,55,48,34,58,34,85,34,44,34,92,117,48,49,55,50,34,58,34,85,34,44,34,92,117,48,49,54,57,34,58,34,117,34,44,34,92,117,48,49,54,98,34,58,34,117,34,44,34,92,117,48,49,54,100,34,58,34,117,34,44,34,92,117,48,49,54,102,34,58,34,117,34,44,34,92,117,48,49,55,49,34,58,34,117,34,44,34,92,117,48,49,55,51,34,58,34,117,34,44,34,92,117,48,49,55,52,34,58,34,87,34,44,34,92,117,48,49,55,53,34,58,34,119,34,44,34,92,117,48,49,55,54,34,58,34,89,34,44,34,92,117,48,49,55,55,34,58,34,121,34,44,34,92,117,48,49,55,56,34,58,34,89,34,44,34,92,117,48,49,55,57,34,58,34,90,34,44,34,92,117,48,49,55,98,34,58,34,90,34,44,34,92,117,48,49,55,100,34,58,34,90,34,44,34,92,117,48,49,55,97,34,58,34,122,34,44,34,92,117,48,49,55,99,34,58,34,122,34,44,34,92,117,48,49,55,101,34,58,34,122,34,44,34,92,117,48,49,51,50,34,58,34,73,74,34,44,34,92,117,48,49,51,51,34,58,34,105,106,34,44,10,34,92,117,48,49,53,50,34,58,34,79,101,34,44,34,92,117,48,49,53,51,34,58,34,111,101,34,44,34,92,117,48,49,52,57,34,58,34,39,110,34,44,34,92,117,48,49,55,102,34,58,34,115,34,125,41,44,110,116,61,120,40,123,34,38,34,58,34,38,97,109,112,59,34,44,34,60,34,58,34,38,108,116,59,34,44,34,62,34,58,34,38,103,116,59,34,44,39,34,39,58,34,38,113,117,111,116,59,34,44,34,39,34,58,34,38,35,51,57,59,34,125,41,44,116,116,61,120,40,123,34,38,97,109,112,59,34,58,34,38,34,44,34,38,108,116,59,34,58,34,60,34,44,34,38,103,116,59,34,58,34,62,34,44,34,38,113,117,111,116,59,34,58,39,34,39,44,34,38,35,51,57,59,34,58,34,39,34,125,41,44,114,116,61,102,117,110,99,116,105,111,110,32,120,40,109,110,41,123,102,117,110,99,116,105,111,110,32,65,110,40,110,41,123,105,102,40,121,117,40,110,41,38,38,33,102,102,40,110,41,38,38,33,40,110,32,105,110,115,116,97,110,99,101,111,102,32,85,110,41,41,123,105,102,40,110,32,105,110,115,116,97,110,99,101,111,102,32,79,110,41,114,101,116,117,114,110,32,110,59,105,102,40,111,105,46,99,97,108,108,40,110,44,34,95,95,119,114,97,112,112,101,100,95,95,34,41,41,114,101,116,117,114,110,32,70,101,40,110,41,125,114,101,116,117,114,110,32,110,101,119,32,79,110,40,110,41,125,102,117,110,99,116,105,111,110,32,69,110,40,41,123,125,102,117,110,99,116,105,111,110,32,79,110,40,110,44,116,41,123,116,104,105,115,46,95,95,119,114,97,112,112,101,100,95,95,61,110,44,116,104,105,115,46,95,95,97,99,116,105,111,110,115,95,95,61,91,93,44,116,104,105,115,46,95,95,99,104,97,105,110,95,95,61,33,33,116,44,116,104,105,115,46,95,95,105,110,100,101,120,95,95,61,48,44,116,104,105,115,46,95,95,118,97,108,117,101,115,95,95,61,84,125,102,117,110,99,116,105,111,110,32,85,110,40,110,41,123,116,104,105,115,46,95,95,119,114,97,112,112,101,100,95,95,61,110,44,10,116,104,105,115,46,95,95,97,99,116,105,111,110,115,95,95,61,91,93,44,116,104,105,115,46,95,95,100,105,114,95,95,61,49,44,116,104,105,115,46,95,95,102,105,108,116,101,114,101,100,95,95,61,102,97,108,115,101,44,116,104,105,115,46,95,95,105,116,101,114,97,116,101,101,115,95,95,61,91,93,44,116,104,105,115,46,95,95,116,97,107,101,67,111,117,110,116,95,95,61,52,50,57,52,57,54,55,50,57,53,44,116,104,105,115,46,95,95,118,105,101,119,115,95,95,61,91,93,125,102,117,110,99,116,105,111,110,32,77,110,40,110,41,123,118,97,114,32,116,61,45,49,44,114,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,102,111,114,40,116,104,105,115,46,99,108,101,97,114,40,41,59,43,43,116,60,114,59,41,123,118,97,114,32,101,61,110,91,116,93,59,116,104,105,115,46,115,101,116,40,101,91,48,93,44,101,91,49,93,41,125,125,102,117,110,99,116,105,111,110,32,84,110,40,110,41,123,118,97,114,32,116,61,45,49,44,114,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,102,111,114,40,116,104,105,115,46,99,108,101,97,114,40,41,59,43,43,116,60,114,59,41,123,118,97,114,32,101,61,110,91,116,93,59,116,104,105,115,46,115,101,116,40,101,91,48,93,44,101,91,49,93,41,125,125,102,117,110,99,116,105,111,110,32,70,110,40,110,41,123,118,97,114,32,116,61,45,49,44,114,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,102,111,114,40,116,104,105,115,46,99,108,101,97,114,40,41,59,43,43,116,60,114,59,41,123,118,97,114,32,101,61,110,91,116,93,59,116,104,105,115,46,115,101,116,40,101,91,48,93,44,101,91,49,93,41,125,125,102,117,110,99,116,105,111,110,32,78,110,40,110,41,123,118,97,114,32,116,61,45,49,44,114,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,102,111,114,40,116,104,105,115,46,95,95,100,97,116,97,95,95,61,110,101,119,32,70,110,59,43,43,116,60,114,59,41,116,104,105,115,46,97,100,100,40,110,91,116,93,41,59,10,125,102,117,110,99,116,105,111,110,32,90,110,40,110,41,123,116,104,105,115,46,115,105,122,101,61,40,116,104,105,115,46,95,95,100,97,116,97,95,95,61,110,101,119,32,84,110,40,110,41,41,46,115,105,122,101,125,102,117,110,99,116,105,111,110,32,113,110,40,110,44,116,41,123,118,97,114,32,114,44,101,61,102,102,40,110,41,44,117,61,33,101,38,38,111,102,40,110,41,44,105,61,33,101,38,38,33,117,38,38,97,102,40,110,41,44,111,61,33,101,38,38,33,117,38,38,33,105,38,38,95,102,40,110,41,44,117,61,40,101,61,101,124,124,117,124,124,105,124,124,111,41,63,65,40,110,46,108,101,110,103,116,104,44,110,105,41,58,91,93,44,102,61,117,46,108,101,110,103,116,104,59,102,111,114,40,114,32,105,110,32,110,41,33,116,38,38,33,111,105,46,99,97,108,108,40,110,44,114,41,124,124,101,38,38,40,34,108,101,110,103,116,104,34,61,61,114,124,124,105,38,38,40,34,111,102,102,115,101,116,34,61,61,114,124,124,34,112,97,114,101,110,116,34,61,61,114,41,124,124,111,38,38,40,34,98,117,102,102,101,114,34,61,61,114,124,124,34,98,121,116,101,76,101,110,103,116,104,34,61,61,114,124,124,34,98,121,116,101,79,102,102,115,101,116,34,61,61,114,41,124,124,83,101,40,114,44,102,41,41,124,124,117,46,112,117,115,104,40,114,41,59,114,101,116,117,114,110,32,117,125,102,117,110,99,116,105,111,110,32,81,110,40,110,41,123,118,97,114,32,116,61,110,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,116,63,110,91,105,114,40,48,44,116,45,49,41,93,58,84,125,102,117,110,99,116,105,111,110,32,101,116,40,110,44,116,41,123,114,101,116,117,114,110,32,68,101,40,85,114,40,110,41,44,112,116,40,116,44,48,44,110,46,108,101,110,103,116,104,41,41,125,102,117,110,99,116,105,111,110,32,117,116,40,110,41,123,114,101,116,117,114,110,32,68,101,40,85,114,40,110,41,41,125,102,117,110,99,116,105,111,110,32,105,116,40,110,44,116,44,114,41,123,40,114,61,61,61,84,124,124,108,117,40,110,91,116,93,44,114,41,41,38,38,40,114,33,61,61,84,124,124,116,32,105,110,32,110,41,124,124,115,116,40,110,44,116,44,114,41,59,10,125,102,117,110,99,116,105,111,110,32,111,116,40,110,44,116,44,114,41,123,118,97,114,32,101,61,110,91,116,93,59,111,105,46,99,97,108,108,40,110,44,116,41,38,38,108,117,40,101,44,114,41,38,38,40,114,33,61,61,84,124,124,116,32,105,110,32,110,41,124,124,115,116,40,110,44,116,44,114,41,125,102,117,110,99,116,105,111,110,32,102,116,40,110,44,116,41,123,102,111,114,40,118,97,114,32,114,61,110,46,108,101,110,103,116,104,59,114,45,45,59,41,105,102,40,108,117,40,110,91,114,93,91,48,93,44,116,41,41,114,101,116,117,114,110,32,114,59,114,101,116,117,114,110,45,49,125,102,117,110,99,116,105,111,110,32,99,116,40,110,44,116,44,114,44,101,41,123,114,101,116,117,114,110,32,117,111,40,110,44,102,117,110,99,116,105,111,110,40,110,44,117,44,105,41,123,116,40,101,44,110,44,114,40,110,41,44,105,41,125,41,44,101,125,102,117,110,99,116,105,111,110,32,97,116,40,110,44,116,41,123,114,101,116,117,114,110,32,110,38,38,67,114,40,116,44,87,117,40,116,41,44,110,41,125,102,117,110,99,116,105,111,110,32,108,116,40,110,44,116,41,123,114,101,116,117,114,110,32,110,38,38,67,114,40,116,44,66,117,40,116,41,44,110,41,125,102,117,110,99,116,105,111,110,32,115,116,40,110,44,116,44,114,41,123,34,95,95,112,114,111,116,111,95,95,34,61,61,116,38,38,65,105,63,65,105,40,110,44,116,44,123,99,111,110,102,105,103,117,114,97,98,108,101,58,116,114,117,101,44,101,110,117,109,101,114,97,98,108,101,58,116,114,117,101,44,118,97,108,117,101,58,114,44,119,114,105,116,97,98,108,101,58,116,114,117,101,125,41,58,110,91,116,93,61,114,125,102,117,110,99,116,105,111,110,32,104,116,40,110,44,116,41,123,102,111,114,40,118,97,114,32,114,61,45,49,44,101,61,116,46,108,101,110,103,116,104,44,117,61,75,117,40,101,41,44,105,61,110,117,108,108,61,61,110,59,43,43,114,60,101,59,41,117,91,114,93,61,105,63,84,58,82,117,40,110,44,116,91,114,93,41,59,114,101,116,117,114,110,32,117,59,10,125,102,117,110,99,116,105,111,110,32,112,116,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,110,61,61,61,110,38,38,40,114,33,61,61,84,38,38,40,110,61,110,60,61,114,63,110,58,114,41,44,116,33,61,61,84,38,38,40,110,61,110,62,61,116,63,110,58,116,41,41,44,110,125,102,117,110,99,116,105,111,110,32,95,116,40,110,44,116,44,101,44,117,44,105,44,111,41,123,118,97,114,32,102,44,99,61,49,38,116,44,97,61,50,38,116,44,108,61,52,38,116,59,105,102,40,101,38,38,40,102,61,105,63,101,40,110,44,117,44,105,44,111,41,58,101,40,110,41,41,44,102,33,61,61,84,41,114,101,116,117,114,110,32,102,59,105,102,40,33,100,117,40,110,41,41,114,101,116,117,114,110,32,110,59,105,102,40,117,61,102,102,40,110,41,41,123,105,102,40,102,61,109,101,40,110,41,44,33,99,41,114,101,116,117,114,110,32,85,114,40,110,44,102,41,125,101,108,115,101,123,118,97,114,32,115,61,118,111,40,110,41,44,104,61,34,91,111,98,106,101,99,116,32,70,117,110,99,116,105,111,110,93,34,61,61,115,124,124,34,91,111,98,106,101,99,116,32,71,101,110,101,114,97,116,111,114,70,117,110,99,116,105,111,110,93,34,61,61,115,59,105,102,40,97,102,40,110,41,41,114,101,116,117,114,110,32,73,114,40,110,44,99,41,59,105,102,40,34,91,111,98,106,101,99,116,32,79,98,106,101,99,116,93,34,61,61,115,124,124,34,91,111,98,106,101,99,116,32,65,114,103,117,109,101,110,116,115,93,34,61,61,115,124,124,104,38,38,33,105,41,123,105,102,40,102,61,97,124,124,104,63,123,125,58,65,101,40,110,41,44,33,99,41,114,101,116,117,114,110,32,97,63,77,114,40,110,44,108,116,40,102,44,110,41,41,58,68,114,40,110,44,97,116,40,102,44,110,41,41,125,101,108,115,101,123,105,102,40,33,76,110,91,115,93,41,114,101,116,117,114,110,32,105,63,110,58,123,125,59,102,61,69,101,40,110,44,115,44,99,41,125,125,105,102,40,111,124,124,40,111,61,110,101,119,32,90,110,41,44,10,105,61,111,46,103,101,116,40,110,41,41,114,101,116,117,114,110,32,105,59,111,46,115,101,116,40,110,44,102,41,44,112,102,40,110,41,63,110,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,114,41,123,102,46,97,100,100,40,95,116,40,114,44,116,44,101,44,114,44,110,44,111,41,41,125,41,58,115,102,40,110,41,38,38,110,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,114,44,117,41,123,102,46,115,101,116,40,117,44,95,116,40,114,44,116,44,101,44,117,44,110,44,111,41,41,125,41,59,118,97,114,32,97,61,108,63,97,63,118,101,58,95,101,58,97,63,66,117,58,87,117,44,112,61,117,63,84,58,97,40,110,41,59,114,101,116,117,114,110,32,114,40,112,124,124,110,44,102,117,110,99,116,105,111,110,40,114,44,117,41,123,112,38,38,40,117,61,114,44,114,61,110,91,117,93,41,44,111,116,40,102,44,117,44,95,116,40,114,44,116,44,101,44,117,44,110,44,111,41,41,125,41,44,102,125,102,117,110,99,116,105,111,110,32,118,116,40,110,41,123,118,97,114,32,116,61,87,117,40,110,41,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,114,41,123,114,101,116,117,114,110,32,103,116,40,114,44,110,44,116,41,125,125,102,117,110,99,116,105,111,110,32,103,116,40,110,44,116,44,114,41,123,118,97,114,32,101,61,114,46,108,101,110,103,116,104,59,105,102,40,110,117,108,108,61,61,110,41,114,101,116,117,114,110,33,101,59,102,111,114,40,110,61,81,117,40,110,41,59,101,45,45,59,41,123,118,97,114,32,117,61,114,91,101,93,44,105,61,116,91,117,93,44,111,61,110,91,117,93,59,105,102,40,111,61,61,61,84,38,38,33,40,117,32,105,110,32,110,41,124,124,33,105,40,111,41,41,114,101,116,117,114,110,32,102,97,108,115,101,125,114,101,116,117,114,110,32,116,114,117,101,125,102,117,110,99,116,105,111,110,32,100,116,40,110,44,116,44,114,41,123,105,102,40,116,121,112,101,111,102,32,110,33,61,34,102,117,110,99,116,105,111,110,34,41,116,104,114,111,119,32,110,101,119,32,116,105,40,34,69,120,112,101,99,116,101,100,32,97,32,102,117,110,99,116,105,111,110,34,41,59,10,114,101,116,117,114,110,32,98,111,40,102,117,110,99,116,105,111,110,40,41,123,110,46,97,112,112,108,121,40,84,44,114,41,125,44,116,41,125,102,117,110,99,116,105,111,110,32,121,116,40,110,44,116,44,114,44,101,41,123,118,97,114,32,117,61,45,49,44,105,61,111,44,97,61,116,114,117,101,44,108,61,110,46,108,101,110,103,116,104,44,115,61,91,93,44,104,61,116,46,108,101,110,103,116,104,59,105,102,40,33,108,41,114,101,116,117,114,110,32,115,59,114,38,38,40,116,61,99,40,116,44,107,40,114,41,41,41,44,101,63,40,105,61,102,44,97,61,102,97,108,115,101,41,58,50,48,48,60,61,116,46,108,101,110,103,116,104,38,38,40,105,61,79,44,97,61,102,97,108,115,101,44,116,61,110,101,119,32,78,110,40,116,41,41,59,110,58,102,111,114,40,59,43,43,117,60,108,59,41,123,118,97,114,32,112,61,110,91,117,93,44,95,61,110,117,108,108,61,61,114,63,112,58,114,40,112,41,44,112,61,101,124,124,48,33,61,61,112,63,112,58,48,59,105,102,40,97,38,38,95,61,61,61,95,41,123,102,111,114,40,118,97,114,32,118,61,104,59,118,45,45,59,41,105,102,40,116,91,118,93,61,61,61,95,41,99,111,110,116,105,110,117,101,32,110,59,115,46,112,117,115,104,40,112,41,125,101,108,115,101,32,105,40,116,44,95,44,101,41,124,124,115,46,112,117,115,104,40,112,41,125,114,101,116,117,114,110,32,115,125,102,117,110,99,116,105,111,110,32,98,116,40,110,44,116,41,123,118,97,114,32,114,61,116,114,117,101,59,114,101,116,117,114,110,32,117,111,40,110,44,102,117,110,99,116,105,111,110,40,110,44,101,44,117,41,123,114,101,116,117,114,110,32,114,61,33,33,116,40,110,44,101,44,117,41,125,41,44,114,125,102,117,110,99,116,105,111,110,32,120,116,40,110,44,116,44,114,41,123,102,111,114,40,118,97,114,32,101,61,45,49,44,117,61,110,46,108,101,110,103,116,104,59,43,43,101,60,117,59,41,123,118,97,114,32,105,61,110,91,101,93,44,111,61,116,40,105,41,59,105,102,40,110,117,108,108,33,61,111,38,38,40,102,61,61,61,84,63,111,61,61,61,111,38,38,33,119,117,40,111,41,58,114,40,111,44,102,41,41,41,118,97,114,32,102,61,111,44,99,61,105,59,10,125,114,101,116,117,114,110,32,99,125,102,117,110,99,116,105,111,110,32,106,116,40,110,44,116,41,123,118,97,114,32,114,61,91,93,59,114,101,116,117,114,110,32,117,111,40,110,44,102,117,110,99,116,105,111,110,40,110,44,101,44,117,41,123,116,40,110,44,101,44,117,41,38,38,114,46,112,117,115,104,40,110,41,125,41,44,114,125,102,117,110,99,116,105,111,110,32,119,116,40,110,44,116,44,114,44,101,44,117,41,123,118,97,114,32,105,61,45,49,44,111,61,110,46,108,101,110,103,116,104,59,102,111,114,40,114,124,124,40,114,61,107,101,41,44,117,124,124,40,117,61,91,93,41,59,43,43,105,60,111,59,41,123,118,97,114,32,102,61,110,91,105,93,59,48,60,116,38,38,114,40,102,41,63,49,60,116,63,119,116,40,102,44,116,45,49,44,114,44,101,44,117,41,58,97,40,117,44,102,41,58,101,124,124,40,117,91,117,46,108,101,110,103,116,104,93,61,102,41,125,114,101,116,117,114,110,32,117,125,102,117,110,99,116,105,111,110,32,109,116,40,110,44,116,41,123,114,101,116,117,114,110,32,110,38,38,111,111,40,110,44,116,44,87,117,41,125,102,117,110,99,116,105,111,110,32,65,116,40,110,44,116,41,123,114,101,116,117,114,110,32,110,38,38,102,111,40,110,44,116,44,87,117,41,125,102,117,110,99,116,105,111,110,32,69,116,40,110,44,116,41,123,114,101,116,117,114,110,32,105,40,116,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,95,117,40,110,91,116,93,41,125,41,125,102,117,110,99,116,105,111,110,32,107,116,40,110,44,116,41,123,116,61,83,114,40,116,44,110,41,59,102,111,114,40,118,97,114,32,114,61,48,44,101,61,116,46,108,101,110,103,116,104,59,110,117,108,108,33,61,110,38,38,114,60,101,59,41,110,61,110,91,77,101,40,116,91,114,43,43,93,41,93,59,114,101,116,117,114,110,32,114,38,38,114,61,61,101,63,110,58,84,125,102,117,110,99,116,105,111,110,32,83,116,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,116,61,116,40,110,41,44,10,102,102,40,110,41,63,116,58,97,40,116,44,114,40,110,41,41,125,102,117,110,99,116,105,111,110,32,79,116,40,110,41,123,105,102,40,110,117,108,108,61,61,110,41,110,61,110,61,61,61,84,63,34,91,111,98,106,101,99,116,32,85,110,100,101,102,105,110,101,100,93,34,58,34,91,111,98,106,101,99,116,32,78,117,108,108,93,34,59,101,108,115,101,32,105,102,40,109,105,38,38,109,105,32,105,110,32,81,117,40,110,41,41,123,118,97,114,32,116,61,111,105,46,99,97,108,108,40,110,44,109,105,41,44,114,61,110,91,109,105,93,59,116,114,121,123,110,91,109,105,93,61,84,59,118,97,114,32,101,61,116,114,117,101,125,99,97,116,99,104,40,110,41,123,125,118,97,114,32,117,61,97,105,46,99,97,108,108,40,110,41,59,101,38,38,40,116,63,110,91,109,105,93,61,114,58,100,101,108,101,116,101,32,110,91,109,105,93,41,44,110,61,117,125,101,108,115,101,32,110,61,97,105,46,99,97,108,108,40,110,41,59,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,73,116,40,110,44,116,41,123,114,101,116,117,114,110,32,110,62,116,125,102,117,110,99,116,105,111,110,32,82,116,40,110,44,116,41,123,114,101,116,117,114,110,32,110,117,108,108,33,61,110,38,38,111,105,46,99,97,108,108,40,110,44,116,41,125,102,117,110,99,116,105,111,110,32,122,116,40,110,44,116,41,123,114,101,116,117,114,110,32,110,117,108,108,33,61,110,38,38,116,32,105,110,32,81,117,40,110,41,125,102,117,110,99,116,105,111,110,32,87,116,40,110,44,116,44,114,41,123,102,111,114,40,118,97,114,32,101,61,114,63,102,58,111,44,117,61,110,91,48,93,46,108,101,110,103,116,104,44,105,61,110,46,108,101,110,103,116,104,44,97,61,105,44,108,61,75,117,40,105,41,44,115,61,49,47,48,44,104,61,91,93,59,97,45,45,59,41,123,118,97,114,32,112,61,110,91,97,93,59,97,38,38,116,38,38,40,112,61,99,40,112,44,107,40,116,41,41,41,44,115,61,67,105,40,112,46,108,101,110,103,116,104,44,115,41,44,10,108,91,97,93,61,33,114,38,38,40,116,124,124,49,50,48,60,61,117,38,38,49,50,48,60,61,112,46,108,101,110,103,116,104,41,63,110,101,119,32,78,110,40,97,38,38,112,41,58,84,125,118,97,114,32,112,61,110,91,48,93,44,95,61,45,49,44,118,61,108,91,48,93,59,110,58,102,111,114,40,59,43,43,95,60,117,38,38,104,46,108,101,110,103,116,104,60,115,59,41,123,118,97,114,32,103,61,112,91,95,93,44,100,61,116,63,116,40,103,41,58,103,44,103,61,114,124,124,48,33,61,61,103,63,103,58,48,59,105,102,40,118,63,33,79,40,118,44,100,41,58,33,101,40,104,44,100,44,114,41,41,123,102,111,114,40,97,61,105,59,45,45,97,59,41,123,118,97,114,32,121,61,108,91,97,93,59,105,102,40,121,63,33,79,40,121,44,100,41,58,33,101,40,110,91,97,93,44,100,44,114,41,41,99,111,110,116,105,110,117,101,32,110,125,118,38,38,118,46,112,117,115,104,40,100,41,44,104,46,112,117,115,104,40,103,41,125,125,114,101,116,117,114,110,32,104,125,102,117,110,99,116,105,111,110,32,66,116,40,110,44,116,44,114,41,123,118,97,114,32,101,61,123,125,59,114,101,116,117,114,110,32,109,116,40,110,44,102,117,110,99,116,105,111,110,40,110,44,117,44,105,41,123,116,40,101,44,114,40,110,41,44,117,44,105,41,125,41,44,101,125,102,117,110,99,116,105,111,110,32,76,116,40,116,44,114,44,101,41,123,114,101,116,117,114,110,32,114,61,83,114,40,114,44,116,41,44,116,61,50,62,114,46,108,101,110,103,116,104,63,116,58,107,116,40,116,44,104,114,40,114,44,48,44,45,49,41,41,44,114,61,110,117,108,108,61,61,116,63,116,58,116,91,77,101,40,86,101,40,114,41,41,93,44,110,117,108,108,61,61,114,63,84,58,110,40,114,44,116,44,101,41,125,102,117,110,99,116,105,111,110,32,85,116,40,110,41,123,114,101,116,117,114,110,32,121,117,40,110,41,38,38,34,91,111,98,106,101,99,116,32,65,114,103,117,109,101,110,116,115,93,34,61,61,79,116,40,110,41,125,102,117,110,99,116,105,111,110,32,67,116,40,110,41,123,10,114,101,116,117,114,110,32,121,117,40,110,41,38,38,34,91,111,98,106,101,99,116,32,65,114,114,97,121,66,117,102,102,101,114,93,34,61,61,79,116,40,110,41,125,102,117,110,99,116,105,111,110,32,68,116,40,110,41,123,114,101,116,117,114,110,32,121,117,40,110,41,38,38,34,91,111,98,106,101,99,116,32,68,97,116,101,93,34,61,61,79,116,40,110,41,125,102,117,110,99,116,105,111,110,32,77,116,40,110,44,116,44,114,44,101,44,117,41,123,105,102,40,110,61,61,61,116,41,116,61,116,114,117,101,59,101,108,115,101,32,105,102,40,110,117,108,108,61,61,110,124,124,110,117,108,108,61,61,116,124,124,33,121,117,40,110,41,38,38,33,121,117,40,116,41,41,116,61,110,33,61,61,110,38,38,116,33,61,61,116,59,101,108,115,101,32,110,58,123,118,97,114,32,105,61,102,102,40,110,41,44,111,61,102,102,40,116,41,44,102,61,105,63,34,91,111,98,106,101,99,116,32,65,114,114,97,121,93,34,58,118,111,40,110,41,44,99,61,111,63,34,91,111,98,106,101,99,116,32,65,114,114,97,121,93,34,58,118,111,40,116,41,44,102,61,34,91,111,98,106,101,99,116,32,65,114,103,117,109,101,110,116,115,93,34,61,61,102,63,34,91,111,98,106,101,99,116,32,79,98,106,101,99,116,93,34,58,102,44,99,61,34,91,111,98,106,101,99,116,32,65,114,103,117,109,101,110,116,115,93,34,61,61,99,63,34,91,111,98,106,101,99,116,32,79,98,106,101,99,116,93,34,58,99,44,97,61,34,91,111,98,106,101,99,116,32,79,98,106,101,99,116,93,34,61,61,102,44,111,61,34,91,111,98,106,101,99,116,32,79,98,106,101,99,116,93,34,61,61,99,59,105,102,40,40,99,61,102,61,61,99,41,38,38,97,102,40,110,41,41,123,105,102,40,33,97,102,40,116,41,41,123,116,61,102,97,108,115,101,59,98,114,101,97,107,32,110,125,105,61,116,114,117,101,44,97,61,102,97,108,115,101,125,105,102,40,99,38,38,33,97,41,117,124,124,40,117,61,110,101,119,32,90,110,41,44,116,61,105,124,124,95,102,40,110,41,63,115,101,40,110,44,116,44,114,44,101,44,77,116,44,117,41,58,104,101,40,110,44,116,44,102,44,114,44,101,44,77,116,44,117,41,59,101,108,115,101,123,10,105,102,40,33,40,49,38,114,41,38,38,40,105,61,97,38,38,111,105,46,99,97,108,108,40,110,44,34,95,95,119,114,97,112,112,101,100,95,95,34,41,44,102,61,111,38,38,111,105,46,99,97,108,108,40,116,44,34,95,95,119,114,97,112,112,101,100,95,95,34,41,44,105,124,124,102,41,41,123,110,61,105,63,110,46,118,97,108,117,101,40,41,58,110,44,116,61,102,63,116,46,118,97,108,117,101,40,41,58,116,44,117,124,124,40,117,61,110,101,119,32,90,110,41,44,116,61,77,116,40,110,44,116,44,114,44,101,44,117,41,59,98,114,101,97,107,32,110,125,105,102,40,99,41,116,58,105,102,40,117,124,124,40,117,61,110,101,119,32,90,110,41,44,105,61,49,38,114,44,102,61,95,101,40,110,41,44,111,61,102,46,108,101,110,103,116,104,44,99,61,95,101,40,116,41,46,108,101,110,103,116,104,44,111,61,61,99,124,124,105,41,123,102,111,114,40,97,61,111,59,97,45,45,59,41,123,118,97,114,32,108,61,102,91,97,93,59,105,102,40,33,40,105,63,108,32,105,110,32,116,58,111,105,46,99,97,108,108,40,116,44,108,41,41,41,123,116,61,102,97,108,115,101,59,98,114,101,97,107,32,116,125,125,105,102,40,40,99,61,117,46,103,101,116,40,110,41,41,38,38,117,46,103,101,116,40,116,41,41,116,61,99,61,61,116,59,101,108,115,101,123,99,61,116,114,117,101,44,117,46,115,101,116,40,110,44,116,41,44,117,46,115,101,116,40,116,44,110,41,59,102,111,114,40,118,97,114,32,115,61,105,59,43,43,97,60,111,59,41,123,118,97,114,32,108,61,102,91,97,93,44,104,61,110,91,108,93,44,112,61,116,91,108,93,59,105,102,40,101,41,118,97,114,32,95,61,105,63,101,40,112,44,104,44,108,44,116,44,110,44,117,41,58,101,40,104,44,112,44,108,44,110,44,116,44,117,41,59,105,102,40,95,61,61,61,84,63,104,33,61,61,112,38,38,33,77,116,40,104,44,112,44,114,44,101,44,117,41,58,33,95,41,123,99,61,102,97,108,115,101,59,98,114,101,97,107,125,115,124,124,40,115,61,34,99,111,110,115,116,114,117,99,116,111,114,34,61,61,108,41,59,10,125,99,38,38,33,115,38,38,40,114,61,110,46,99,111,110,115,116,114,117,99,116,111,114,44,101,61,116,46,99,111,110,115,116,114,117,99,116,111,114,44,114,33,61,101,38,38,34,99,111,110,115,116,114,117,99,116,111,114,34,105,110,32,110,38,38,34,99,111,110,115,116,114,117,99,116,111,114,34,105,110,32,116,38,38,33,40,116,121,112,101,111,102,32,114,61,61,34,102,117,110,99,116,105,111,110,34,38,38,114,32,105,110,115,116,97,110,99,101,111,102,32,114,38,38,116,121,112,101,111,102,32,101,61,61,34,102,117,110,99,116,105,111,110,34,38,38,101,32,105,110,115,116,97,110,99,101,111,102,32,101,41,38,38,40,99,61,102,97,108,115,101,41,41,44,117,46,100,101,108,101,116,101,40,110,41,44,117,46,100,101,108,101,116,101,40,116,41,44,116,61,99,125,125,101,108,115,101,32,116,61,102,97,108,115,101,59,101,108,115,101,32,116,61,102,97,108,115,101,125,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,84,116,40,110,41,123,114,101,116,117,114,110,32,121,117,40,110,41,38,38,34,91,111,98,106,101,99,116,32,77,97,112,93,34,61,61,118,111,40,110,41,125,102,117,110,99,116,105,111,110,32,36,116,40,110,44,116,44,114,44,101,41,123,118,97,114,32,117,61,114,46,108,101,110,103,116,104,44,105,61,117,44,111,61,33,101,59,105,102,40,110,117,108,108,61,61,110,41,114,101,116,117,114,110,33,105,59,102,111,114,40,110,61,81,117,40,110,41,59,117,45,45,59,41,123,118,97,114,32,102,61,114,91,117,93,59,105,102,40,111,38,38,102,91,50,93,63,102,91,49,93,33,61,61,110,91,102,91,48,93,93,58,33,40,102,91,48,93,105,110,32,110,41,41,114,101,116,117,114,110,32,102,97,108,115,101,125,102,111,114,40,59,43,43,117,60,105,59,41,123,118,97,114,32,102,61,114,91,117,93,44,99,61,102,91,48,93,44,97,61,110,91,99,93,44,108,61,102,91,49,93,59,105,102,40,111,38,38,102,91,50,93,41,123,105,102,40,97,61,61,61,84,38,38,33,40,99,32,105,110,32,110,41,41,114,101,116,117,114,110,32,102,97,108,115,101,59,10,125,101,108,115,101,123,105,102,40,102,61,110,101,119,32,90,110,44,101,41,118,97,114,32,115,61,101,40,97,44,108,44,99,44,110,44,116,44,102,41,59,105,102,40,115,61,61,61,84,63,33,77,116,40,108,44,97,44,51,44,101,44,102,41,58,33,115,41,114,101,116,117,114,110,32,102,97,108,115,101,125,125,114,101,116,117,114,110,32,116,114,117,101,125,102,117,110,99,116,105,111,110,32,70,116,40,110,41,123,114,101,116,117,114,110,33,40,33,100,117,40,110,41,124,124,99,105,38,38,99,105,32,105,110,32,110,41,38,38,40,95,117,40,110,41,63,104,105,58,100,110,41,46,116,101,115,116,40,84,101,40,110,41,41,125,102,117,110,99,116,105,111,110,32,78,116,40,110,41,123,114,101,116,117,114,110,32,121,117,40,110,41,38,38,34,91,111,98,106,101,99,116,32,82,101,103,69,120,112,93,34,61,61,79,116,40,110,41,125,102,117,110,99,116,105,111,110,32,80,116,40,110,41,123,114,101,116,117,114,110,32,121,117,40,110,41,38,38,34,91,111,98,106,101,99,116,32,83,101,116,93,34,61,61,118,111,40,110,41,125,102,117,110,99,116,105,111,110,32,90,116,40,110,41,123,114,101,116,117,114,110,32,121,117,40,110,41,38,38,103,117,40,110,46,108,101,110,103,116,104,41,38,38,33,33,66,110,91,79,116,40,110,41,93,125,102,117,110,99,116,105,111,110,32,113,116,40,110,41,123,114,101,116,117,114,110,32,116,121,112,101,111,102,32,110,61,61,34,102,117,110,99,116,105,111,110,34,63,110,58,110,117,108,108,61,61,110,63,36,117,58,116,121,112,101,111,102,32,110,61,61,34,111,98,106,101,99,116,34,63,102,102,40,110,41,63,74,116,40,110,91,48,93,44,110,91,49,93,41,58,72,116,40,110,41,58,90,117,40,110,41,125,102,117,110,99,116,105,111,110,32,86,116,40,110,41,123,105,102,40,33,122,101,40,110,41,41,114,101,116,117,114,110,32,76,105,40,110,41,59,118,97,114,32,116,44,114,61,91,93,59,102,111,114,40,116,32,105,110,32,81,117,40,110,41,41,111,105,46,99,97,108,108,40,110,44,116,41,38,38,34,99,111,110,115,116,114,117,99,116,111,114,34,33,61,116,38,38,114,46,112,117,115,104,40,116,41,59,10,114,101,116,117,114,110,32,114,125,102,117,110,99,116,105,111,110,32,75,116,40,110,44,116,41,123,114,101,116,117,114,110,32,110,60,116,125,102,117,110,99,116,105,111,110,32,71,116,40,110,44,116,41,123,118,97,114,32,114,61,45,49,44,101,61,115,117,40,110,41,63,75,117,40,110,46,108,101,110,103,116,104,41,58,91,93,59,114,101,116,117,114,110,32,117,111,40,110,44,102,117,110,99,116,105,111,110,40,110,44,117,44,105,41,123,101,91,43,43,114,93,61,116,40,110,44,117,44,105,41,125,41,44,101,125,102,117,110,99,116,105,111,110,32,72,116,40,110,41,123,118,97,114,32,116,61,120,101,40,110,41,59,114,101,116,117,114,110,32,49,61,61,116,46,108,101,110,103,116,104,38,38,116,91,48,93,91,50,93,63,87,101,40,116,91,48,93,91,48,93,44,116,91,48,93,91,49,93,41,58,102,117,110,99,116,105,111,110,40,114,41,123,114,101,116,117,114,110,32,114,61,61,61,110,124,124,36,116,40,114,44,110,44,116,41,125,125,102,117,110,99,116,105,111,110,32,74,116,40,110,44,116,41,123,114,101,116,117,114,110,32,73,101,40,110,41,38,38,116,61,61,61,116,38,38,33,100,117,40,116,41,63,87,101,40,77,101,40,110,41,44,116,41,58,102,117,110,99,116,105,111,110,40,114,41,123,118,97,114,32,101,61,82,117,40,114,44,110,41,59,114,101,116,117,114,110,32,101,61,61,61,84,38,38,101,61,61,61,116,63,122,117,40,114,44,110,41,58,77,116,40,116,44,101,44,51,41,125,125,102,117,110,99,116,105,111,110,32,89,116,40,110,44,116,44,114,44,101,44,117,41,123,110,33,61,61,116,38,38,111,111,40,116,44,102,117,110,99,116,105,111,110,40,105,44,111,41,123,105,102,40,117,124,124,40,117,61,110,101,119,32,90,110,41,44,100,117,40,105,41,41,123,118,97,114,32,102,61,117,44,99,61,76,101,40,110,44,111,41,44,97,61,76,101,40,116,44,111,41,44,108,61,102,46,103,101,116,40,97,41,59,105,102,40,108,41,105,116,40,110,44,111,44,108,41,59,101,108,115,101,123,10,118,97,114,32,108,61,101,63,101,40,99,44,97,44,111,43,34,34,44,110,44,116,44,102,41,58,84,44,115,61,108,61,61,61,84,59,105,102,40,115,41,123,118,97,114,32,104,61,102,102,40,97,41,44,112,61,33,104,38,38,97,102,40,97,41,44,95,61,33,104,38,38,33,112,38,38,95,102,40,97,41,44,108,61,97,59,104,124,124,112,124,124,95,63,102,102,40,99,41,63,108,61,99,58,104,117,40,99,41,63,108,61,85,114,40,99,41,58,112,63,40,115,61,102,97,108,115,101,44,108,61,73,114,40,97,44,116,114,117,101,41,41,58,95,63,40,115,61,102,97,108,115,101,44,108,61,122,114,40,97,44,116,114,117,101,41,41,58,108,61,91,93,58,120,117,40,97,41,124,124,111,102,40,97,41,63,40,108,61,99,44,111,102,40,99,41,63,108,61,79,117,40,99,41,58,100,117,40,99,41,38,38,33,95,117,40,99,41,124,124,40,108,61,65,101,40,97,41,41,41,58,115,61,102,97,108,115,101,125,115,38,38,40,102,46,115,101,116,40,97,44,108,41,44,89,116,40,108,44,97,44,114,44,101,44,102,41,44,102,46,100,101,108,101,116,101,40,97,41,41,44,105,116,40,110,44,111,44,108,41,125,125,101,108,115,101,32,102,61,101,63,101,40,76,101,40,110,44,111,41,44,105,44,111,43,34,34,44,110,44,116,44,117,41,58,84,44,102,61,61,61,84,38,38,40,102,61,105,41,44,105,116,40,110,44,111,44,102,41,125,44,66,117,41,125,102,117,110,99,116,105,111,110,32,81,116,40,110,44,116,41,123,118,97,114,32,114,61,110,46,108,101,110,103,116,104,59,105,102,40,114,41,114,101,116,117,114,110,32,116,43,61,48,62,116,63,114,58,48,44,83,101,40,116,44,114,41,63,110,91,116,93,58,84,125,102,117,110,99,116,105,111,110,32,88,116,40,110,44,116,44,114,41,123,118,97,114,32,101,61,45,49,59,114,101,116,117,114,110,32,116,61,99,40,116,46,108,101,110,103,116,104,63,116,58,91,36,117,93,44,107,40,121,101,40,41,41,41,44,110,61,71,116,40,110,44,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,123,10,97,58,99,40,116,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,40,110,41,125,41,44,98,58,43,43,101,44,99,58,110,125,125,41,44,119,40,110,44,102,117,110,99,116,105,111,110,40,110,44,116,41,123,118,97,114,32,101,59,110,58,123,101,61,45,49,59,102,111,114,40,118,97,114,32,117,61,110,46,97,44,105,61,116,46,97,44,111,61,117,46,108,101,110,103,116,104,44,102,61,114,46,108,101,110,103,116,104,59,43,43,101,60,111,59,41,123,118,97,114,32,99,61,87,114,40,117,91,101,93,44,105,91,101,93,41,59,105,102,40,99,41,123,101,61,101,62,61,102,63,99,58,99,42,40,34,100,101,115,99,34,61,61,114,91,101,93,63,45,49,58,49,41,59,98,114,101,97,107,32,110,125,125,101,61,110,46,98,45,116,46,98,125,114,101,116,117,114,110,32,101,125,41,125,102,117,110,99,116,105,111,110,32,110,114,40,110,44,116,41,123,114,101,116,117,114,110,32,116,114,40,110,44,116,44,102,117,110,99,116,105,111,110,40,116,44,114,41,123,114,101,116,117,114,110,32,122,117,40,110,44,114,41,125,41,125,102,117,110,99,116,105,111,110,32,116,114,40,110,44,116,44,114,41,123,102,111,114,40,118,97,114,32,101,61,45,49,44,117,61,116,46,108,101,110,103,116,104,44,105,61,123,125,59,43,43,101,60,117,59,41,123,118,97,114,32,111,61,116,91,101,93,44,102,61,107,116,40,110,44,111,41,59,114,40,102,44,111,41,38,38,108,114,40,105,44,83,114,40,111,44,110,41,44,102,41,125,114,101,116,117,114,110,32,105,125,102,117,110,99,116,105,111,110,32,114,114,40,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,107,116,40,116,44,110,41,125,125,102,117,110,99,116,105,111,110,32,101,114,40,110,44,116,44,114,44,101,41,123,118,97,114,32,117,61,101,63,103,58,118,44,105,61,45,49,44,111,61,116,46,108,101,110,103,116,104,44,102,61,110,59,102,111,114,40,110,61,61,61,116,38,38,40,116,61,85,114,40,116,41,41,44,10,114,38,38,40,102,61,99,40,110,44,107,40,114,41,41,41,59,43,43,105,60,111,59,41,102,111,114,40,118,97,114,32,97,61,48,44,108,61,116,91,105,93,44,108,61,114,63,114,40,108,41,58,108,59,45,49,60,40,97,61,117,40,102,44,108,44,97,44,101,41,41,59,41,102,33,61,61,110,38,38,120,105,46,99,97,108,108,40,102,44,97,44,49,41,44,120,105,46,99,97,108,108,40,110,44,97,44,49,41,59,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,117,114,40,110,44,116,41,123,102,111,114,40,118,97,114,32,114,61,110,63,116,46,108,101,110,103,116,104,58,48,44,101,61,114,45,49,59,114,45,45,59,41,123,118,97,114,32,117,61,116,91,114,93,59,105,102,40,114,61,61,101,124,124,117,33,61,61,105,41,123,118,97,114,32,105,61,117,59,83,101,40,117,41,63,120,105,46,99,97,108,108,40,110,44,117,44,49,41,58,120,114,40,110,44,117,41,125,125,125,102,117,110,99,116,105,111,110,32,105,114,40,110,44,116,41,123,114,101,116,117,114,110,32,110,43,73,105,40,84,105,40,41,42,40,116,45,110,43,49,41,41,125,102,117,110,99,116,105,111,110,32,111,114,40,110,44,116,41,123,118,97,114,32,114,61,34,34,59,105,102,40,33,110,124,124,49,62,116,124,124,57,48,48,55,49,57,57,50,53,52,55,52,48,57,57,49,60,116,41,114,101,116,117,114,110,32,114,59,100,111,32,116,37,50,38,38,40,114,43,61,110,41,44,40,116,61,73,105,40,116,47,50,41,41,38,38,40,110,43,61,110,41,59,119,104,105,108,101,40,116,41,59,114,101,116,117,114,110,32,114,125,102,117,110,99,116,105,111,110,32,102,114,40,110,44,116,41,123,114,101,116,117,114,110,32,120,111,40,66,101,40,110,44,116,44,36,117,41,44,110,43,34,34,41,125,102,117,110,99,116,105,111,110,32,99,114,40,110,41,123,114,101,116,117,114,110,32,81,110,40,85,117,40,110,41,41,125,102,117,110,99,116,105,111,110,32,97,114,40,110,44,116,41,123,118,97,114,32,114,61,85,117,40,110,41,59,10,114,101,116,117,114,110,32,68,101,40,114,44,112,116,40,116,44,48,44,114,46,108,101,110,103,116,104,41,41,125,102,117,110,99,116,105,111,110,32,108,114,40,110,44,116,44,114,44,101,41,123,105,102,40,33,100,117,40,110,41,41,114,101,116,117,114,110,32,110,59,116,61,83,114,40,116,44,110,41,59,102,111,114,40,118,97,114,32,117,61,45,49,44,105,61,116,46,108,101,110,103,116,104,44,111,61,105,45,49,44,102,61,110,59,110,117,108,108,33,61,102,38,38,43,43,117,60,105,59,41,123,118,97,114,32,99,61,77,101,40,116,91,117,93,41,44,97,61,114,59,105,102,40,117,33,61,111,41,123,118,97,114,32,108,61,102,91,99,93,44,97,61,101,63,101,40,108,44,99,44,102,41,58,84,59,97,61,61,61,84,38,38,40,97,61,100,117,40,108,41,63,108,58,83,101,40,116,91,117,43,49,93,41,63,91,93,58,123,125,41,125,111,116,40,102,44,99,44,97,41,44,102,61,102,91,99,93,125,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,115,114,40,110,41,123,114,101,116,117,114,110,32,68,101,40,85,117,40,110,41,41,125,102,117,110,99,116,105,111,110,32,104,114,40,110,44,116,44,114,41,123,118,97,114,32,101,61,45,49,44,117,61,110,46,108,101,110,103,116,104,59,102,111,114,40,48,62,116,38,38,40,116,61,45,116,62,117,63,48,58,117,43,116,41,44,114,61,114,62,117,63,117,58,114,44,48,62,114,38,38,40,114,43,61,117,41,44,117,61,116,62,114,63,48,58,114,45,116,62,62,62,48,44,116,62,62,62,61,48,44,114,61,75,117,40,117,41,59,43,43,101,60,117,59,41,114,91,101,93,61,110,91,101,43,116,93,59,114,101,116,117,114,110,32,114,125,102,117,110,99,116,105,111,110,32,112,114,40,110,44,116,41,123,118,97,114,32,114,59,114,101,116,117,114,110,32,117,111,40,110,44,102,117,110,99,116,105,111,110,40,110,44,101,44,117,41,123,114,101,116,117,114,110,32,114,61,116,40,110,44,101,44,117,41,44,33,114,125,41,44,33,33,114,125,10,102,117,110,99,116,105,111,110,32,95,114,40,110,44,116,44,114,41,123,118,97,114,32,101,61,48,44,117,61,110,117,108,108,61,61,110,63,101,58,110,46,108,101,110,103,116,104,59,105,102,40,116,121,112,101,111,102,32,116,61,61,34,110,117,109,98,101,114,34,38,38,116,61,61,61,116,38,38,50,49,52,55,52,56,51,54,52,55,62,61,117,41,123,102,111,114,40,59,101,60,117,59,41,123,118,97,114,32,105,61,101,43,117,62,62,62,49,44,111,61,110,91,105,93,59,110,117,108,108,33,61,61,111,38,38,33,119,117,40,111,41,38,38,40,114,63,111,60,61,116,58,111,60,116,41,63,101,61,105,43,49,58,117,61,105,125,114,101,116,117,114,110,32,117,125,114,101,116,117,114,110,32,118,114,40,110,44,116,44,36,117,44,114,41,125,102,117,110,99,116,105,111,110,32,118,114,40,110,44,116,44,114,44,101,41,123,116,61,114,40,116,41,59,102,111,114,40,118,97,114,32,117,61,48,44,105,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,44,111,61,116,33,61,61,116,44,102,61,110,117,108,108,61,61,61,116,44,99,61,119,117,40,116,41,44,97,61,116,61,61,61,84,59,117,60,105,59,41,123,118,97,114,32,108,61,73,105,40,40,117,43,105,41,47,50,41,44,115,61,114,40,110,91,108,93,41,44,104,61,115,33,61,61,84,44,112,61,110,117,108,108,61,61,61,115,44,95,61,115,61,61,61,115,44,118,61,119,117,40,115,41,59,40,111,63,101,124,124,95,58,97,63,95,38,38,40,101,124,124,104,41,58,102,63,95,38,38,104,38,38,40,101,124,124,33,112,41,58,99,63,95,38,38,104,38,38,33,112,38,38,40,101,124,124,33,118,41,58,112,124,124,118,63,48,58,101,63,115,60,61,116,58,115,60,116,41,63,117,61,108,43,49,58,105,61,108,125,114,101,116,117,114,110,32,67,105,40,105,44,52,50,57,52,57,54,55,50,57,52,41,125,102,117,110,99,116,105,111,110,32,103,114,40,110,44,116,41,123,102,111,114,40,118,97,114,32,114,61,45,49,44,101,61,110,46,108,101,110,103,116,104,44,117,61,48,44,105,61,91,93,59,43,43,114,60,101,59,41,123,10,118,97,114,32,111,61,110,91,114,93,44,102,61,116,63,116,40,111,41,58,111,59,105,102,40,33,114,124,124,33,108,117,40,102,44,99,41,41,123,118,97,114,32,99,61,102,59,105,91,117,43,43,93,61,48,61,61,61,111,63,48,58,111,125,125,114,101,116,117,114,110,32,105,125,102,117,110,99,116,105,111,110,32,100,114,40,110,41,123,114,101,116,117,114,110,32,116,121,112,101,111,102,32,110,61,61,34,110,117,109,98,101,114,34,63,110,58,119,117,40,110,41,63,70,58,43,110,125,102,117,110,99,116,105,111,110,32,121,114,40,110,41,123,105,102,40,116,121,112,101,111,102,32,110,61,61,34,115,116,114,105,110,103,34,41,114,101,116,117,114,110,32,110,59,105,102,40,102,102,40,110,41,41,114,101,116,117,114,110,32,99,40,110,44,121,114,41,43,34,34,59,105,102,40,119,117,40,110,41,41,114,101,116,117,114,110,32,114,111,63,114,111,46,99,97,108,108,40,110,41,58,34,34,59,118,97,114,32,116,61,110,43,34,34,59,114,101,116,117,114,110,34,48,34,61,61,116,38,38,49,47,110,61,61,45,36,63,34,45,48,34,58,116,125,102,117,110,99,116,105,111,110,32,98,114,40,110,44,116,44,114,41,123,118,97,114,32,101,61,45,49,44,117,61,111,44,105,61,110,46,108,101,110,103,116,104,44,99,61,116,114,117,101,44,97,61,91,93,44,108,61,97,59,105,102,40,114,41,99,61,102,97,108,115,101,44,117,61,102,59,101,108,115,101,32,105,102,40,50,48,48,60,61,105,41,123,105,102,40,117,61,116,63,110,117,108,108,58,115,111,40,110,41,41,114,101,116,117,114,110,32,85,40,117,41,59,99,61,102,97,108,115,101,44,117,61,79,44,108,61,110,101,119,32,78,110,125,101,108,115,101,32,108,61,116,63,91,93,58,97,59,110,58,102,111,114,40,59,43,43,101,60,105,59,41,123,118,97,114,32,115,61,110,91,101,93,44,104,61,116,63,116,40,115,41,58,115,44,115,61,114,124,124,48,33,61,61,115,63,115,58,48,59,105,102,40,99,38,38,104,61,61,61,104,41,123,102,111,114,40,118,97,114,32,112,61,108,46,108,101,110,103,116,104,59,112,45,45,59,41,105,102,40,108,91,112,93,61,61,61,104,41,99,111,110,116,105,110,117,101,32,110,59,10,116,38,38,108,46,112,117,115,104,40,104,41,44,97,46,112,117,115,104,40,115,41,125,101,108,115,101,32,117,40,108,44,104,44,114,41,124,124,40,108,33,61,61,97,38,38,108,46,112,117,115,104,40,104,41,44,97,46,112,117,115,104,40,115,41,41,125,114,101,116,117,114,110,32,97,125,102,117,110,99,116,105,111,110,32,120,114,40,110,44,116,41,123,114,101,116,117,114,110,32,116,61,83,114,40,116,44,110,41,44,110,61,50,62,116,46,108,101,110,103,116,104,63,110,58,107,116,40,110,44,104,114,40,116,44,48,44,45,49,41,41,44,110,117,108,108,61,61,110,124,124,100,101,108,101,116,101,32,110,91,77,101,40,86,101,40,116,41,41,93,125,102,117,110,99,116,105,111,110,32,106,114,40,110,44,116,44,114,44,101,41,123,102,111,114,40,118,97,114,32,117,61,110,46,108,101,110,103,116,104,44,105,61,101,63,117,58,45,49,59,40,101,63,105,45,45,58,43,43,105,60,117,41,38,38,116,40,110,91,105,93,44,105,44,110,41,59,41,59,114,101,116,117,114,110,32,114,63,104,114,40,110,44,101,63,48,58,105,44,101,63,105,43,49,58,117,41,58,104,114,40,110,44,101,63,105,43,49,58,48,44,101,63,117,58,105,41,125,102,117,110,99,116,105,111,110,32,119,114,40,110,44,116,41,123,118,97,114,32,114,61,110,59,114,101,116,117,114,110,32,114,32,105,110,115,116,97,110,99,101,111,102,32,85,110,38,38,40,114,61,114,46,118,97,108,117,101,40,41,41,44,108,40,116,44,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,116,46,102,117,110,99,46,97,112,112,108,121,40,116,46,116,104,105,115,65,114,103,44,97,40,91,110,93,44,116,46,97,114,103,115,41,41,125,44,114,41,125,102,117,110,99,116,105,111,110,32,109,114,40,110,44,116,44,114,41,123,118,97,114,32,101,61,110,46,108,101,110,103,116,104,59,105,102,40,50,62,101,41,114,101,116,117,114,110,32,101,63,98,114,40,110,91,48,93,41,58,91,93,59,102,111,114,40,118,97,114,32,117,61,45,49,44,105,61,75,117,40,101,41,59,43,43,117,60,101,59,41,102,111,114,40,118,97,114,32,111,61,110,91,117,93,44,102,61,45,49,59,43,43,102,60,101,59,41,102,33,61,117,38,38,40,105,91,117,93,61,121,116,40,105,91,117,93,124,124,111,44,110,91,102,93,44,116,44,114,41,41,59,10,114,101,116,117,114,110,32,98,114,40,119,116,40,105,44,49,41,44,116,44,114,41,125,102,117,110,99,116,105,111,110,32,65,114,40,110,44,116,44,114,41,123,102,111,114,40,118,97,114,32,101,61,45,49,44,117,61,110,46,108,101,110,103,116,104,44,105,61,116,46,108,101,110,103,116,104,44,111,61,123,125,59,43,43,101,60,117,59,41,114,40,111,44,110,91,101,93,44,101,60,105,63,116,91,101,93,58,84,41,59,114,101,116,117,114,110,32,111,125,102,117,110,99,116,105,111,110,32,69,114,40,110,41,123,114,101,116,117,114,110,32,104,117,40,110,41,63,110,58,91,93,125,102,117,110,99,116,105,111,110,32,107,114,40,110,41,123,114,101,116,117,114,110,32,116,121,112,101,111,102,32,110,61,61,34,102,117,110,99,116,105,111,110,34,63,110,58,36,117,125,102,117,110,99,116,105,111,110,32,83,114,40,110,44,116,41,123,114,101,116,117,114,110,32,102,102,40,110,41,63,110,58,73,101,40,110,44,116,41,63,91,110,93,58,106,111,40,73,117,40,110,41,41,125,102,117,110,99,116,105,111,110,32,79,114,40,110,44,116,44,114,41,123,118,97,114,32,101,61,110,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,114,61,114,61,61,61,84,63,101,58,114,44,33,116,38,38,114,62,61,101,63,110,58,104,114,40,110,44,116,44,114,41,125,102,117,110,99,116,105,111,110,32,73,114,40,110,44,116,41,123,105,102,40,116,41,114,101,116,117,114,110,32,110,46,115,108,105,99,101,40,41,59,118,97,114,32,114,61,110,46,108,101,110,103,116,104,44,114,61,103,105,63,103,105,40,114,41,58,110,101,119,32,110,46,99,111,110,115,116,114,117,99,116,111,114,40,114,41,59,114,101,116,117,114,110,32,110,46,99,111,112,121,40,114,41,44,114,125,102,117,110,99,116,105,111,110,32,82,114,40,110,41,123,118,97,114,32,116,61,110,101,119,32,110,46,99,111,110,115,116,114,117,99,116,111,114,40,110,46,98,121,116,101,76,101,110,103,116,104,41,59,114,101,116,117,114,110,32,110,101,119,32,118,105,40,116,41,46,115,101,116,40,110,101,119,32,118,105,40,110,41,41,44,10,116,125,102,117,110,99,116,105,111,110,32,122,114,40,110,44,116,41,123,114,101,116,117,114,110,32,110,101,119,32,110,46,99,111,110,115,116,114,117,99,116,111,114,40,116,63,82,114,40,110,46,98,117,102,102,101,114,41,58,110,46,98,117,102,102,101,114,44,110,46,98,121,116,101,79,102,102,115,101,116,44,110,46,108,101,110,103,116,104,41,125,102,117,110,99,116,105,111,110,32,87,114,40,110,44,116,41,123,105,102,40,110,33,61,61,116,41,123,118,97,114,32,114,61,110,33,61,61,84,44,101,61,110,117,108,108,61,61,61,110,44,117,61,110,61,61,61,110,44,105,61,119,117,40,110,41,44,111,61,116,33,61,61,84,44,102,61,110,117,108,108,61,61,61,116,44,99,61,116,61,61,61,116,44,97,61,119,117,40,116,41,59,105,102,40,33,102,38,38,33,97,38,38,33,105,38,38,110,62,116,124,124,105,38,38,111,38,38,99,38,38,33,102,38,38,33,97,124,124,101,38,38,111,38,38,99,124,124,33,114,38,38,99,124,124,33,117,41,114,101,116,117,114,110,32,49,59,105,102,40,33,101,38,38,33,105,38,38,33,97,38,38,110,60,116,124,124,97,38,38,114,38,38,117,38,38,33,101,38,38,33,105,124,124,102,38,38,114,38,38,117,124,124,33,111,38,38,117,124,124,33,99,41,114,101,116,117,114,110,45,49,125,114,101,116,117,114,110,32,48,125,102,117,110,99,116,105,111,110,32,66,114,40,110,44,116,44,114,44,101,41,123,118,97,114,32,117,61,45,49,44,105,61,110,46,108,101,110,103,116,104,44,111,61,114,46,108,101,110,103,116,104,44,102,61,45,49,44,99,61,116,46,108,101,110,103,116,104,44,97,61,85,105,40,105,45,111,44,48,41,44,108,61,75,117,40,99,43,97,41,59,102,111,114,40,101,61,33,101,59,43,43,102,60,99,59,41,108,91,102,93,61,116,91,102,93,59,102,111,114,40,59,43,43,117,60,111,59,41,40,101,124,124,117,60,105,41,38,38,40,108,91,114,91,117,93,93,61,110,91,117,93,41,59,102,111,114,40,59,97,45,45,59,41,108,91,102,43,43,93,61,110,91,117,43,43,93,59,10,114,101,116,117,114,110,32,108,125,102,117,110,99,116,105,111,110,32,76,114,40,110,44,116,44,114,44,101,41,123,118,97,114,32,117,61,45,49,44,105,61,110,46,108,101,110,103,116,104,44,111,61,45,49,44,102,61,114,46,108,101,110,103,116,104,44,99,61,45,49,44,97,61,116,46,108,101,110,103,116,104,44,108,61,85,105,40,105,45,102,44,48,41,44,115,61,75,117,40,108,43,97,41,59,102,111,114,40,101,61,33,101,59,43,43,117,60,108,59,41,115,91,117,93,61,110,91,117,93,59,102,111,114,40,108,61,117,59,43,43,99,60,97,59,41,115,91,108,43,99,93,61,116,91,99,93,59,102,111,114,40,59,43,43,111,60,102,59,41,40,101,124,124,117,60,105,41,38,38,40,115,91,108,43,114,91,111,93,93,61,110,91,117,43,43,93,41,59,114,101,116,117,114,110,32,115,125,102,117,110,99,116,105,111,110,32,85,114,40,110,44,116,41,123,118,97,114,32,114,61,45,49,44,101,61,110,46,108,101,110,103,116,104,59,102,111,114,40,116,124,124,40,116,61,75,117,40,101,41,41,59,43,43,114,60,101,59,41,116,91,114,93,61,110,91,114,93,59,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,67,114,40,110,44,116,44,114,44,101,41,123,118,97,114,32,117,61,33,114,59,114,124,124,40,114,61,123,125,41,59,102,111,114,40,118,97,114,32,105,61,45,49,44,111,61,116,46,108,101,110,103,116,104,59,43,43,105,60,111,59,41,123,118,97,114,32,102,61,116,91,105,93,44,99,61,101,63,101,40,114,91,102,93,44,110,91,102,93,44,102,44,114,44,110,41,58,84,59,99,61,61,61,84,38,38,40,99,61,110,91,102,93,41,44,117,63,115,116,40,114,44,102,44,99,41,58,111,116,40,114,44,102,44,99,41,125,114,101,116,117,114,110,32,114,125,102,117,110,99,116,105,111,110,32,68,114,40,110,44,116,41,123,114,101,116,117,114,110,32,67,114,40,110,44,112,111,40,110,41,44,116,41,125,102,117,110,99,116,105,111,110,32,77,114,40,110,44,116,41,123,114,101,116,117,114,110,32,67,114,40,110,44,95,111,40,110,41,44,116,41,59,10,125,102,117,110,99,116,105,111,110,32,84,114,40,110,44,114,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,101,44,117,41,123,118,97,114,32,105,61,102,102,40,101,41,63,116,58,99,116,44,111,61,114,63,114,40,41,58,123,125,59,114,101,116,117,114,110,32,105,40,101,44,110,44,121,101,40,117,44,50,41,44,111,41,125,125,102,117,110,99,116,105,111,110,32,36,114,40,110,41,123,114,101,116,117,114,110,32,102,114,40,102,117,110,99,116,105,111,110,40,116,44,114,41,123,118,97,114,32,101,61,45,49,44,117,61,114,46,108,101,110,103,116,104,44,105,61,49,60,117,63,114,91,117,45,49,93,58,84,44,111,61,50,60,117,63,114,91,50,93,58,84,44,105,61,51,60,110,46,108,101,110,103,116,104,38,38,116,121,112,101,111,102,32,105,61,61,34,102,117,110,99,116,105,111,110,34,63,40,117,45,45,44,105,41,58,84,59,102,111,114,40,111,38,38,79,101,40,114,91,48,93,44,114,91,49,93,44,111,41,38,38,40,105,61,51,62,117,63,84,58,105,44,117,61,49,41,44,116,61,81,117,40,116,41,59,43,43,101,60,117,59,41,40,111,61,114,91,101,93,41,38,38,110,40,116,44,111,44,101,44,105,41,59,114,101,116,117,114,110,32,116,125,41,125,102,117,110,99,116,105,111,110,32,70,114,40,110,44,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,114,44,101,41,123,105,102,40,110,117,108,108,61,61,114,41,114,101,116,117,114,110,32,114,59,105,102,40,33,115,117,40,114,41,41,114,101,116,117,114,110,32,110,40,114,44,101,41,59,102,111,114,40,118,97,114,32,117,61,114,46,108,101,110,103,116,104,44,105,61,116,63,117,58,45,49,44,111,61,81,117,40,114,41,59,40,116,63,105,45,45,58,43,43,105,60,117,41,38,38,102,97,108,115,101,33,61,61,101,40,111,91,105,93,44,105,44,111,41,59,41,59,114,101,116,117,114,110,32,114,125,125,102,117,110,99,116,105,111,110,32,78,114,40,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,44,114,44,101,41,123,10,118,97,114,32,117,61,45,49,44,105,61,81,117,40,116,41,59,101,61,101,40,116,41,59,102,111,114,40,118,97,114,32,111,61,101,46,108,101,110,103,116,104,59,111,45,45,59,41,123,118,97,114,32,102,61,101,91,110,63,111,58,43,43,117,93,59,105,102,40,102,97,108,115,101,61,61,61,114,40,105,91,102,93,44,102,44,105,41,41,98,114,101,97,107,125,114,101,116,117,114,110,32,116,125,125,102,117,110,99,116,105,111,110,32,80,114,40,110,44,116,44,114,41,123,102,117,110,99,116,105,111,110,32,101,40,41,123,114,101,116,117,114,110,40,116,104,105,115,38,38,116,104,105,115,33,61,61,36,110,38,38,116,104,105,115,32,105,110,115,116,97,110,99,101,111,102,32,101,63,105,58,110,41,46,97,112,112,108,121,40,117,63,114,58,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,125,118,97,114,32,117,61,49,38,116,44,105,61,86,114,40,110,41,59,114,101,116,117,114,110,32,101,125,102,117,110,99,116,105,111,110,32,90,114,40,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,41,123,116,61,73,117,40,116,41,59,118,97,114,32,114,61,82,110,46,116,101,115,116,40,116,41,63,77,40,116,41,58,84,44,101,61,114,63,114,91,48,93,58,116,46,99,104,97,114,65,116,40,48,41,59,114,101,116,117,114,110,32,116,61,114,63,79,114,40,114,44,49,41,46,106,111,105,110,40,34,34,41,58,116,46,115,108,105,99,101,40,49,41,44,101,91,110,93,40,41,43,116,125,125,102,117,110,99,116,105,111,110,32,113,114,40,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,108,40,77,117,40,68,117,40,116,41,46,114,101,112,108,97,99,101,40,107,110,44,34,34,41,41,44,110,44,34,34,41,125,125,102,117,110,99,116,105,111,110,32,86,114,40,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,97,114,103,117,109,101,110,116,115,59,115,119,105,116,99,104,40,116,46,108,101,110,103,116,104,41,123,10,99,97,115,101,32,48,58,114,101,116,117,114,110,32,110,101,119,32,110,59,99,97,115,101,32,49,58,114,101,116,117,114,110,32,110,101,119,32,110,40,116,91,48,93,41,59,99,97,115,101,32,50,58,114,101,116,117,114,110,32,110,101,119,32,110,40,116,91,48,93,44,116,91,49,93,41,59,99,97,115,101,32,51,58,114,101,116,117,114,110,32,110,101,119,32,110,40,116,91,48,93,44,116,91,49,93,44,116,91,50,93,41,59,99,97,115,101,32,52,58,114,101,116,117,114,110,32,110,101,119,32,110,40,116,91,48,93,44,116,91,49,93,44,116,91,50,93,44,116,91,51,93,41,59,99,97,115,101,32,53,58,114,101,116,117,114,110,32,110,101,119,32,110,40,116,91,48,93,44,116,91,49,93,44,116,91,50,93,44,116,91,51,93,44,116,91,52,93,41,59,99,97,115,101,32,54,58,114,101,116,117,114,110,32,110,101,119,32,110,40,116,91,48,93,44,116,91,49,93,44,116,91,50,93,44,116,91,51,93,44,116,91,52,93,44,116,91,53,93,41,59,99,97,115,101,32,55,58,114,101,116,117,114,110,32,110,101,119,32,110,40,116,91,48,93,44,116,91,49,93,44,116,91,50,93,44,116,91,51,93,44,116,91,52,93,44,116,91,53,93,44,116,91,54,93,41,125,118,97,114,32,114,61,101,111,40,110,46,112,114,111,116,111,116,121,112,101,41,44,116,61,110,46,97,112,112,108,121,40,114,44,116,41,59,114,101,116,117,114,110,32,100,117,40,116,41,63,116,58,114,125,125,102,117,110,99,116,105,111,110,32,75,114,40,116,44,114,44,101,41,123,102,117,110,99,116,105,111,110,32,117,40,41,123,102,111,114,40,118,97,114,32,111,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,44,102,61,75,117,40,111,41,44,99,61,111,44,97,61,100,101,40,117,41,59,99,45,45,59,41,102,91,99,93,61,97,114,103,117,109,101,110,116,115,91,99,93,59,114,101,116,117,114,110,32,99,61,51,62,111,38,38,102,91,48,93,33,61,61,97,38,38,102,91,111,45,49,93,33,61,61,97,63,91,93,58,76,40,102,44,97,41,44,10,111,45,61,99,46,108,101,110,103,116,104,44,111,60,101,63,117,101,40,116,44,114,44,74,114,44,117,46,112,108,97,99,101,104,111,108,100,101,114,44,84,44,102,44,99,44,84,44,84,44,101,45,111,41,58,110,40,116,104,105,115,38,38,116,104,105,115,33,61,61,36,110,38,38,116,104,105,115,32,105,110,115,116,97,110,99,101,111,102,32,117,63,105,58,116,44,116,104,105,115,44,102,41,125,118,97,114,32,105,61,86,114,40,116,41,59,114,101,116,117,114,110,32,117,125,102,117,110,99,116,105,111,110,32,71,114,40,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,44,114,44,101,41,123,118,97,114,32,117,61,81,117,40,116,41,59,105,102,40,33,115,117,40,116,41,41,123,118,97,114,32,105,61,121,101,40,114,44,51,41,59,116,61,87,117,40,116,41,44,114,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,105,40,117,91,110,93,44,110,44,117,41,125,125,114,101,116,117,114,110,32,114,61,110,40,116,44,114,44,101,41,44,45,49,60,114,63,117,91,105,63,116,91,114,93,58,114,93,58,84,125,125,102,117,110,99,116,105,111,110,32,72,114,40,110,41,123,114,101,116,117,114,110,32,112,101,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,114,61,116,46,108,101,110,103,116,104,44,101,61,114,44,117,61,79,110,46,112,114,111,116,111,116,121,112,101,46,116,104,114,117,59,102,111,114,40,110,38,38,116,46,114,101,118,101,114,115,101,40,41,59,101,45,45,59,41,123,118,97,114,32,105,61,116,91,101,93,59,105,102,40,116,121,112,101,111,102,32,105,33,61,34,102,117,110,99,116,105,111,110,34,41,116,104,114,111,119,32,110,101,119,32,116,105,40,34,69,120,112,101,99,116,101,100,32,97,32,102,117,110,99,116,105,111,110,34,41,59,105,102,40,117,38,38,33,111,38,38,34,119,114,97,112,112,101,114,34,61,61,103,101,40,105,41,41,118,97,114,32,111,61,110,101,119,32,79,110,40,91,93,44,116,114,117,101,41,125,102,111,114,40,101,61,111,63,101,58,114,59,43,43,101,60,114,59,41,118,97,114,32,105,61,116,91,101,93,44,117,61,103,101,40,105,41,44,102,61,34,119,114,97,112,112,101,114,34,61,61,117,63,104,111,40,105,41,58,84,44,111,61,102,38,38,82,101,40,102,91,48,93,41,38,38,52,50,52,61,61,102,91,49,93,38,38,33,102,91,52,93,46,108,101,110,103,116,104,38,38,49,61,61,102,91,57,93,63,111,91,103,101,40,102,91,48,93,41,93,46,97,112,112,108,121,40,111,44,102,91,51,93,41,58,49,61,61,105,46,108,101,110,103,116,104,38,38,82,101,40,105,41,63,111,91,117,93,40,41,58,111,46,116,104,114,117,40,105,41,59,10,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,110,61,97,114,103,117,109,101,110,116,115,44,101,61,110,91,48,93,59,105,102,40,111,38,38,49,61,61,110,46,108,101,110,103,116,104,38,38,102,102,40,101,41,41,114,101,116,117,114,110,32,111,46,112,108,97,110,116,40,101,41,46,118,97,108,117,101,40,41,59,102,111,114,40,118,97,114,32,117,61,48,44,110,61,114,63,116,91,117,93,46,97,112,112,108,121,40,116,104,105,115,44,110,41,58,101,59,43,43,117,60,114,59,41,110,61,116,91,117,93,46,99,97,108,108,40,116,104,105,115,44,110,41,59,114,101,116,117,114,110,32,110,125,125,41,125,102,117,110,99,116,105,111,110,32,74,114,40,110,44,116,44,114,44,101,44,117,44,105,44,111,44,102,44,99,44,97,41,123,102,117,110,99,116,105,111,110,32,108,40,41,123,102,111,114,40,118,97,114,32,100,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,44,121,61,75,117,40,100,41,44,98,61,100,59,98,45,45,59,41,121,91,98,93,61,97,114,103,117,109,101,110,116,115,91,98,93,59,105,102,40,95,41,123,118,97,114,32,120,44,106,61,100,101,40,108,41,44,98,61,121,46,108,101,110,103,116,104,59,102,111,114,40,120,61,48,59,98,45,45,59,41,121,91,98,93,61,61,61,106,38,38,43,43,120,125,105,102,40,101,38,38,40,121,61,66,114,40,121,44,101,44,117,44,95,41,41,44,105,38,38,40,121,61,76,114,40,121,44,105,44,111,44,95,41,41,44,100,45,61,120,44,95,38,38,100,60,97,41,114,101,116,117,114,110,32,106,61,76,40,121,44,106,41,44,117,101,40,110,44,116,44,74,114,44,108,46,112,108,97,99,101,104,111,108,100,101,114,44,114,44,121,44,106,44,102,44,99,44,97,45,100,41,59,105,102,40,106,61,104,63,114,58,116,104,105,115,44,98,61,112,63,106,91,110,93,58,110,44,100,61,121,46,108,101,110,103,116,104,44,102,41,123,120,61,121,46,108,101,110,103,116,104,59,102,111,114,40,118,97,114,32,119,61,67,105,40,102,46,108,101,110,103,116,104,44,120,41,44,109,61,85,114,40,121,41,59,119,45,45,59,41,123,10,118,97,114,32,65,61,102,91,119,93,59,121,91,119,93,61,83,101,40,65,44,120,41,63,109,91,65,93,58,84,125,125,101,108,115,101,32,118,38,38,49,60,100,38,38,121,46,114,101,118,101,114,115,101,40,41,59,114,101,116,117,114,110,32,115,38,38,99,60,100,38,38,40,121,46,108,101,110,103,116,104,61,99,41,44,116,104,105,115,38,38,116,104,105,115,33,61,61,36,110,38,38,116,104,105,115,32,105,110,115,116,97,110,99,101,111,102,32,108,38,38,40,98,61,103,124,124,86,114,40,98,41,41,44,98,46,97,112,112,108,121,40,106,44,121,41,125,118,97,114,32,115,61,49,50,56,38,116,44,104,61,49,38,116,44,112,61,50,38,116,44,95,61,50,52,38,116,44,118,61,53,49,50,38,116,44,103,61,112,63,84,58,86,114,40,110,41,59,114,101,116,117,114,110,32,108,125,102,117,110,99,116,105,111,110,32,89,114,40,110,44,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,114,44,101,41,123,114,101,116,117,114,110,32,66,116,40,114,44,110,44,116,40,101,41,41,125,125,102,117,110,99,116,105,111,110,32,81,114,40,110,44,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,114,44,101,41,123,118,97,114,32,117,59,105,102,40,114,61,61,61,84,38,38,101,61,61,61,84,41,114,101,116,117,114,110,32,116,59,105,102,40,114,33,61,61,84,38,38,40,117,61,114,41,44,101,33,61,61,84,41,123,105,102,40,117,61,61,61,84,41,114,101,116,117,114,110,32,101,59,116,121,112,101,111,102,32,114,61,61,34,115,116,114,105,110,103,34,124,124,116,121,112,101,111,102,32,101,61,61,34,115,116,114,105,110,103,34,63,40,114,61,121,114,40,114,41,44,101,61,121,114,40,101,41,41,58,40,114,61,100,114,40,114,41,44,101,61,100,114,40,101,41,41,44,117,61,110,40,114,44,101,41,125,114,101,116,117,114,110,32,117,125,125,102,117,110,99,116,105,111,110,32,88,114,40,116,41,123,114,101,116,117,114,110,32,112,101,40,102,117,110,99,116,105,111,110,40,114,41,123,10,114,101,116,117,114,110,32,114,61,99,40,114,44,107,40,121,101,40,41,41,41,44,102,114,40,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,117,61,116,104,105,115,59,114,101,116,117,114,110,32,116,40,114,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,40,116,44,117,44,101,41,125,41,125,41,125,41,125,102,117,110,99,116,105,111,110,32,110,101,40,110,44,116,41,123,116,61,116,61,61,61,84,63,34,32,34,58,121,114,40,116,41,59,118,97,114,32,114,61,116,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,50,62,114,63,114,63,111,114,40,116,44,110,41,58,116,58,40,114,61,111,114,40,116,44,79,105,40,110,47,68,40,116,41,41,41,44,82,110,46,116,101,115,116,40,116,41,63,79,114,40,77,40,114,41,44,48,44,110,41,46,106,111,105,110,40,34,34,41,58,114,46,115,108,105,99,101,40,48,44,110,41,41,125,102,117,110,99,116,105,111,110,32,116,101,40,116,44,114,44,101,44,117,41,123,102,117,110,99,116,105,111,110,32,105,40,41,123,102,111,114,40,118,97,114,32,114,61,45,49,44,99,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,44,97,61,45,49,44,108,61,117,46,108,101,110,103,116,104,44,115,61,75,117,40,108,43,99,41,44,104,61,116,104,105,115,38,38,116,104,105,115,33,61,61,36,110,38,38,116,104,105,115,32,105,110,115,116,97,110,99,101,111,102,32,105,63,102,58,116,59,43,43,97,60,108,59,41,115,91,97,93,61,117,91,97,93,59,102,111,114,40,59,99,45,45,59,41,115,91,97,43,43,93,61,97,114,103,117,109,101,110,116,115,91,43,43,114,93,59,114,101,116,117,114,110,32,110,40,104,44,111,63,101,58,116,104,105,115,44,115,41,125,118,97,114,32,111,61,49,38,114,44,102,61,86,114,40,116,41,59,114,101,116,117,114,110,32,105,125,102,117,110,99,116,105,111,110,32,114,101,40,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,44,114,44,101,41,123,10,101,38,38,116,121,112,101,111,102,32,101,33,61,34,110,117,109,98,101,114,34,38,38,79,101,40,116,44,114,44,101,41,38,38,40,114,61,101,61,84,41,44,116,61,65,117,40,116,41,44,114,61,61,61,84,63,40,114,61,116,44,116,61,48,41,58,114,61,65,117,40,114,41,44,101,61,101,61,61,61,84,63,116,60,114,63,49,58,45,49,58,65,117,40,101,41,59,118,97,114,32,117,61,45,49,59,114,61,85,105,40,79,105,40,40,114,45,116,41,47,40,101,124,124,49,41,41,44,48,41,59,102,111,114,40,118,97,114,32,105,61,75,117,40,114,41,59,114,45,45,59,41,105,91,110,63,114,58,43,43,117,93,61,116,44,116,43,61,101,59,114,101,116,117,114,110,32,105,125,125,102,117,110,99,116,105,111,110,32,101,101,40,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,44,114,41,123,114,101,116,117,114,110,32,116,121,112,101,111,102,32,116,61,61,34,115,116,114,105,110,103,34,38,38,116,121,112,101,111,102,32,114,61,61,34,115,116,114,105,110,103,34,124,124,40,116,61,83,117,40,116,41,44,114,61,83,117,40,114,41,41,44,110,40,116,44,114,41,125,125,102,117,110,99,116,105,111,110,32,117,101,40,110,44,116,44,114,44,101,44,117,44,105,44,111,44,102,44,99,44,97,41,123,118,97,114,32,108,61,56,38,116,44,115,61,108,63,111,58,84,59,111,61,108,63,84,58,111,59,118,97,114,32,104,61,108,63,105,58,84,59,114,101,116,117,114,110,32,105,61,108,63,84,58,105,44,116,61,40,116,124,40,108,63,51,50,58,54,52,41,41,38,126,40,108,63,54,52,58,51,50,41,44,52,38,116,124,124,40,116,38,61,45,52,41,44,117,61,91,110,44,116,44,117,44,104,44,115,44,105,44,111,44,102,44,99,44,97,93,44,114,61,114,46,97,112,112,108,121,40,84,44,117,41,44,82,101,40,110,41,38,38,121,111,40,114,44,117,41,44,114,46,112,108,97,99,101,104,111,108,100,101,114,61,101,44,85,101,40,114,44,110,44,116,41,125,102,117,110,99,116,105,111,110,32,105,101,40,110,41,123,10,118,97,114,32,116,61,89,117,91,110,93,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,110,44,114,41,123,105,102,40,110,61,83,117,40,110,41,44,40,114,61,110,117,108,108,61,61,114,63,48,58,67,105,40,69,117,40,114,41,44,50,57,50,41,41,38,38,87,105,40,110,41,41,123,118,97,114,32,101,61,40,73,117,40,110,41,43,34,101,34,41,46,115,112,108,105,116,40,34,101,34,41,44,101,61,116,40,101,91,48,93,43,34,101,34,43,40,43,101,91,49,93,43,114,41,41,44,101,61,40,73,117,40,101,41,43,34,101,34,41,46,115,112,108,105,116,40,34,101,34,41,59,114,101,116,117,114,110,43,40,101,91,48,93,43,34,101,34,43,40,43,101,91,49,93,45,114,41,41,125,114,101,116,117,114,110,32,116,40,110,41,125,125,102,117,110,99,116,105,111,110,32,111,101,40,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,114,61,118,111,40,116,41,59,114,101,116,117,114,110,34,91,111,98,106,101,99,116,32,77,97,112,93,34,61,61,114,63,87,40,116,41,58,34,91,111,98,106,101,99,116,32,83,101,116,93,34,61,61,114,63,67,40,116,41,58,69,40,116,44,110,40,116,41,41,125,125,102,117,110,99,116,105,111,110,32,102,101,40,110,44,116,44,114,44,101,44,117,44,105,44,111,44,102,41,123,118,97,114,32,99,61,50,38,116,59,105,102,40,33,99,38,38,116,121,112,101,111,102,32,110,33,61,34,102,117,110,99,116,105,111,110,34,41,116,104,114,111,119,32,110,101,119,32,116,105,40,34,69,120,112,101,99,116,101,100,32,97,32,102,117,110,99,116,105,111,110,34,41,59,118,97,114,32,97,61,101,63,101,46,108,101,110,103,116,104,58,48,59,105,102,40,97,124,124,40,116,38,61,45,57,55,44,101,61,117,61,84,41,44,111,61,111,61,61,61,84,63,111,58,85,105,40,69,117,40,111,41,44,48,41,44,102,61,102,61,61,61,84,63,102,58,69,117,40,102,41,44,97,45,61,117,63,117,46,108,101,110,103,116,104,58,48,44,10,54,52,38,116,41,123,118,97,114,32,108,61,101,44,115,61,117,59,101,61,117,61,84,125,118,97,114,32,104,61,99,63,84,58,104,111,40,110,41,59,114,101,116,117,114,110,32,105,61,91,110,44,116,44,114,44,101,44,117,44,108,44,115,44,105,44,111,44,102,93,44,104,38,38,40,114,61,105,91,49,93,44,110,61,104,91,49,93,44,116,61,114,124,110,44,101,61,49,50,56,61,61,110,38,38,56,61,61,114,124,124,49,50,56,61,61,110,38,38,50,53,54,61,61,114,38,38,105,91,55,93,46,108,101,110,103,116,104,60,61,104,91,56,93,124,124,51,56,52,61,61,110,38,38,104,91,55,93,46,108,101,110,103,116,104,60,61,104,91,56,93,38,38,56,61,61,114,44,49,51,49,62,116,124,124,101,41,38,38,40,49,38,110,38,38,40,105,91,50,93,61,104,91,50,93,44,116,124,61,49,38,114,63,48,58,52,41,44,40,114,61,104,91,51,93,41,38,38,40,101,61,105,91,51,93,44,105,91,51,93,61,101,63,66,114,40,101,44,114,44,104,91,52,93,41,58,114,44,105,91,52,93,61,101,63,76,40,105,91,51,93,44,34,95,95,108,111,100,97,115,104,95,112,108,97,99,101,104,111,108,100,101,114,95,95,34,41,58,104,91,52,93,41,44,40,114,61,104,91,53,93,41,38,38,40,101,61,105,91,53,93,44,105,91,53,93,61,101,63,76,114,40,101,44,114,44,104,91,54,93,41,58,114,44,105,91,54,93,61,101,63,76,40,105,91,53,93,44,34,95,95,108,111,100,97,115,104,95,112,108,97,99,101,104,111,108,100,101,114,95,95,34,41,58,104,91,54,93,41,44,40,114,61,104,91,55,93,41,38,38,40,105,91,55,93,61,114,41,44,49,50,56,38,110,38,38,40,105,91,56,93,61,110,117,108,108,61,61,105,91,56,93,63,104,91,56,93,58,67,105,40,105,91,56,93,44,104,91,56,93,41,41,44,110,117,108,108,61,61,105,91,57,93,38,38,40,105,91,57,93,61,104,91,57,93,41,44,105,91,48,93,61,104,91,48,93,44,105,91,49,93,61,116,41,44,110,61,105,91,48,93,44,10,116,61,105,91,49,93,44,114,61,105,91,50,93,44,101,61,105,91,51,93,44,117,61,105,91,52,93,44,102,61,105,91,57,93,61,105,91,57,93,61,61,61,84,63,99,63,48,58,110,46,108,101,110,103,116,104,58,85,105,40,105,91,57,93,45,97,44,48,41,44,33,102,38,38,50,52,38,116,38,38,40,116,38,61,45,50,53,41,44,85,101,40,40,104,63,99,111,58,121,111,41,40,116,38,38,49,33,61,116,63,56,61,61,116,124,124,49,54,61,61,116,63,75,114,40,110,44,116,44,102,41,58,51,50,33,61,116,38,38,51,51,33,61,116,124,124,117,46,108,101,110,103,116,104,63,74,114,46,97,112,112,108,121,40,84,44,105,41,58,116,101,40,110,44,116,44,114,44,101,41,58,80,114,40,110,44,116,44,114,41,44,105,41,44,110,44,116,41,125,102,117,110,99,116,105,111,110,32,99,101,40,110,44,116,44,114,44,101,41,123,114,101,116,117,114,110,32,110,61,61,61,84,124,124,108,117,40,110,44,101,105,91,114,93,41,38,38,33,111,105,46,99,97,108,108,40,101,44,114,41,63,116,58,110,125,102,117,110,99,116,105,111,110,32,97,101,40,110,44,116,44,114,44,101,44,117,44,105,41,123,114,101,116,117,114,110,32,100,117,40,110,41,38,38,100,117,40,116,41,38,38,40,105,46,115,101,116,40,116,44,110,41,44,89,116,40,110,44,116,44,84,44,97,101,44,105,41,44,105,46,100,101,108,101,116,101,40,116,41,41,44,110,125,102,117,110,99,116,105,111,110,32,108,101,40,110,41,123,114,101,116,117,114,110,32,120,117,40,110,41,63,84,58,110,125,102,117,110,99,116,105,111,110,32,115,101,40,110,44,116,44,114,44,101,44,117,44,105,41,123,118,97,114,32,111,61,49,38,114,44,102,61,110,46,108,101,110,103,116,104,44,99,61,116,46,108,101,110,103,116,104,59,105,102,40,102,33,61,99,38,38,33,40,111,38,38,99,62,102,41,41,114,101,116,117,114,110,32,102,97,108,115,101,59,105,102,40,40,99,61,105,46,103,101,116,40,110,41,41,38,38,105,46,103,101,116,40,116,41,41,114,101,116,117,114,110,32,99,61,61,116,59,10,118,97,114,32,99,61,45,49,44,97,61,116,114,117,101,44,108,61,50,38,114,63,110,101,119,32,78,110,58,84,59,102,111,114,40,105,46,115,101,116,40,110,44,116,41,44,105,46,115,101,116,40,116,44,110,41,59,43,43,99,60,102,59,41,123,118,97,114,32,115,61,110,91,99,93,44,112,61,116,91,99,93,59,105,102,40,101,41,118,97,114,32,95,61,111,63,101,40,112,44,115,44,99,44,116,44,110,44,105,41,58,101,40,115,44,112,44,99,44,110,44,116,44,105,41,59,105,102,40,95,33,61,61,84,41,123,105,102,40,95,41,99,111,110,116,105,110,117,101,59,97,61,102,97,108,115,101,59,98,114,101,97,107,125,105,102,40,108,41,123,105,102,40,33,104,40,116,44,102,117,110,99,116,105,111,110,40,110,44,116,41,123,105,102,40,33,79,40,108,44,116,41,38,38,40,115,61,61,61,110,124,124,117,40,115,44,110,44,114,44,101,44,105,41,41,41,114,101,116,117,114,110,32,108,46,112,117,115,104,40,116,41,125,41,41,123,97,61,102,97,108,115,101,59,98,114,101,97,107,125,125,101,108,115,101,32,105,102,40,115,33,61,61,112,38,38,33,117,40,115,44,112,44,114,44,101,44,105,41,41,123,97,61,102,97,108,115,101,59,98,114,101,97,107,125,125,114,101,116,117,114,110,32,105,46,100,101,108,101,116,101,40,110,41,44,105,46,100,101,108,101,116,101,40,116,41,44,97,125,102,117,110,99,116,105,111,110,32,104,101,40,110,44,116,44,114,44,101,44,117,44,105,44,111,41,123,115,119,105,116,99,104,40,114,41,123,99,97,115,101,34,91,111,98,106,101,99,116,32,68,97,116,97,86,105,101,119,93,34,58,105,102,40,110,46,98,121,116,101,76,101,110,103,116,104,33,61,116,46,98,121,116,101,76,101,110,103,116,104,124,124,110,46,98,121,116,101,79,102,102,115,101,116,33,61,116,46,98,121,116,101,79,102,102,115,101,116,41,98,114,101,97,107,59,110,61,110,46,98,117,102,102,101,114,44,116,61,116,46,98,117,102,102,101,114,59,99,97,115,101,34,91,111,98,106,101,99,116,32,65,114,114,97,121,66,117,102,102,101,114,93,34,58,10,105,102,40,110,46,98,121,116,101,76,101,110,103,116,104,33,61,116,46,98,121,116,101,76,101,110,103,116,104,124,124,33,105,40,110,101,119,32,118,105,40,110,41,44,110,101,119,32,118,105,40,116,41,41,41,98,114,101,97,107,59,114,101,116,117,114,110,32,116,114,117,101,59,99,97,115,101,34,91,111,98,106,101,99,116,32,66,111,111,108,101,97,110,93,34,58,99,97,115,101,34,91,111,98,106,101,99,116,32,68,97,116,101,93,34,58,99,97,115,101,34,91,111,98,106,101,99,116,32,78,117,109,98,101,114,93,34,58,114,101,116,117,114,110,32,108,117,40,43,110,44,43,116,41,59,99,97,115,101,34,91,111,98,106,101,99,116,32,69,114,114,111,114,93,34,58,114,101,116,117,114,110,32,110,46,110,97,109,101,61,61,116,46,110,97,109,101,38,38,110,46,109,101,115,115,97,103,101,61,61,116,46,109,101,115,115,97,103,101,59,99,97,115,101,34,91,111,98,106,101,99,116,32,82,101,103,69,120,112,93,34,58,99,97,115,101,34,91,111,98,106,101,99,116,32,83,116,114,105,110,103,93,34,58,114,101,116,117,114,110,32,110,61,61,116,43,34,34,59,99,97,115,101,34,91,111,98,106,101,99,116,32,77,97,112,93,34,58,118,97,114,32,102,61,87,59,99,97,115,101,34,91,111,98,106,101,99,116,32,83,101,116,93,34,58,105,102,40,102,124,124,40,102,61,85,41,44,110,46,115,105,122,101,33,61,116,46,115,105,122,101,38,38,33,40,49,38,101,41,41,98,114,101,97,107,59,114,101,116,117,114,110,40,114,61,111,46,103,101,116,40,110,41,41,63,114,61,61,116,58,40,101,124,61,50,44,111,46,115,101,116,40,110,44,116,41,44,116,61,115,101,40,102,40,110,41,44,102,40,116,41,44,101,44,117,44,105,44,111,41,44,111,46,100,101,108,101,116,101,40,110,41,44,116,41,59,99,97,115,101,34,91,111,98,106,101,99,116,32,83,121,109,98,111,108,93,34,58,105,102,40,116,111,41,114,101,116,117,114,110,32,116,111,46,99,97,108,108,40,110,41,61,61,116,111,46,99,97,108,108,40,116,41,125,10,114,101,116,117,114,110,32,102,97,108,115,101,125,102,117,110,99,116,105,111,110,32,112,101,40,110,41,123,114,101,116,117,114,110,32,120,111,40,66,101,40,110,44,84,44,90,101,41,44,110,43,34,34,41,125,102,117,110,99,116,105,111,110,32,95,101,40,110,41,123,114,101,116,117,114,110,32,83,116,40,110,44,87,117,44,112,111,41,125,102,117,110,99,116,105,111,110,32,118,101,40,110,41,123,114,101,116,117,114,110,32,83,116,40,110,44,66,117,44,95,111,41,125,102,117,110,99,116,105,111,110,32,103,101,40,110,41,123,102,111,114,40,118,97,114,32,116,61,110,46,110,97,109,101,43,34,34,44,114,61,71,105,91,116,93,44,101,61,111,105,46,99,97,108,108,40,71,105,44,116,41,63,114,46,108,101,110,103,116,104,58,48,59,101,45,45,59,41,123,118,97,114,32,117,61,114,91,101,93,44,105,61,117,46,102,117,110,99,59,105,102,40,110,117,108,108,61,61,105,124,124,105,61,61,110,41,114,101,116,117,114,110,32,117,46,110,97,109,101,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,100,101,40,110,41,123,114,101,116,117,114,110,40,111,105,46,99,97,108,108,40,65,110,44,34,112,108,97,99,101,104,111,108,100,101,114,34,41,63,65,110,58,110,41,46,112,108,97,99,101,104,111,108,100,101,114,125,102,117,110,99,116,105,111,110,32,121,101,40,41,123,118,97,114,32,110,61,65,110,46,105,116,101,114,97,116,101,101,124,124,70,117,44,110,61,110,61,61,61,70,117,63,113,116,58,110,59,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,110,40,97,114,103,117,109,101,110,116,115,91,48,93,44,97,114,103,117,109,101,110,116,115,91,49,93,41,58,110,125,102,117,110,99,116,105,111,110,32,98,101,40,110,44,116,41,123,118,97,114,32,114,61,110,46,95,95,100,97,116,97,95,95,44,101,61,116,121,112,101,111,102,32,116,59,114,101,116,117,114,110,40,34,115,116,114,105,110,103,34,61,61,101,124,124,34,110,117,109,98,101,114,34,61,61,101,124,124,34,115,121,109,98,111,108,34,61,61,101,124,124,34,98,111,111,108,101,97,110,34,61,61,101,63,34,95,95,112,114,111,116,111,95,95,34,33,61,61,116,58,110,117,108,108,61,61,61,116,41,63,114,91,116,121,112,101,111,102,32,116,61,61,34,115,116,114,105,110,103,34,63,34,115,116,114,105,110,103,34,58,34,104,97,115,104,34,93,58,114,46,109,97,112,59,10,125,102,117,110,99,116,105,111,110,32,120,101,40,110,41,123,102,111,114,40,118,97,114,32,116,61,87,117,40,110,41,44,114,61,116,46,108,101,110,103,116,104,59,114,45,45,59,41,123,118,97,114,32,101,61,116,91,114,93,44,117,61,110,91,101,93,59,116,91,114,93,61,91,101,44,117,44,117,61,61,61,117,38,38,33,100,117,40,117,41,93,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,106,101,40,110,44,116,41,123,118,97,114,32,114,61,110,117,108,108,61,61,110,63,84,58,110,91,116,93,59,114,101,116,117,114,110,32,70,116,40,114,41,63,114,58,84,125,102,117,110,99,116,105,111,110,32,119,101,40,110,44,116,44,114,41,123,116,61,83,114,40,116,44,110,41,59,102,111,114,40,118,97,114,32,101,61,45,49,44,117,61,116,46,108,101,110,103,116,104,44,105,61,102,97,108,115,101,59,43,43,101,60,117,59,41,123,118,97,114,32,111,61,77,101,40,116,91,101,93,41,59,105,102,40,33,40,105,61,110,117,108,108,33,61,110,38,38,114,40,110,44,111,41,41,41,98,114,101,97,107,59,110,61,110,91,111,93,125,114,101,116,117,114,110,32,105,124,124,43,43,101,33,61,117,63,105,58,40,117,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,44,33,33,117,38,38,103,117,40,117,41,38,38,83,101,40,111,44,117,41,38,38,40,102,102,40,110,41,124,124,111,102,40,110,41,41,41,125,102,117,110,99,116,105,111,110,32,109,101,40,110,41,123,118,97,114,32,116,61,110,46,108,101,110,103,116,104,44,114,61,110,101,119,32,110,46,99,111,110,115,116,114,117,99,116,111,114,40,116,41,59,114,101,116,117,114,110,32,116,38,38,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,110,91,48,93,38,38,111,105,46,99,97,108,108,40,110,44,34,105,110,100,101,120,34,41,38,38,40,114,46,105,110,100,101,120,61,110,46,105,110,100,101,120,44,114,46,105,110,112,117,116,61,110,46,105,110,112,117,116,41,44,114,125,102,117,110,99,116,105,111,110,32,65,101,40,110,41,123,10,114,101,116,117,114,110,32,116,121,112,101,111,102,32,110,46,99,111,110,115,116,114,117,99,116,111,114,33,61,34,102,117,110,99,116,105,111,110,34,124,124,122,101,40,110,41,63,123,125,58,101,111,40,100,105,40,110,41,41,125,102,117,110,99,116,105,111,110,32,69,101,40,110,44,116,44,114,41,123,118,97,114,32,101,61,110,46,99,111,110,115,116,114,117,99,116,111,114,59,115,119,105,116,99,104,40,116,41,123,99,97,115,101,34,91,111,98,106,101,99,116,32,65,114,114,97,121,66,117,102,102,101,114,93,34,58,114,101,116,117,114,110,32,82,114,40,110,41,59,99,97,115,101,34,91,111,98,106,101,99,116,32,66,111,111,108,101,97,110,93,34,58,99,97,115,101,34,91,111,98,106,101,99,116,32,68,97,116,101,93,34,58,114,101,116,117,114,110,32,110,101,119,32,101,40,43,110,41,59,99,97,115,101,34,91,111,98,106,101,99,116,32,68,97,116,97,86,105,101,119,93,34,58,114,101,116,117,114,110,32,116,61,114,63,82,114,40,110,46,98,117,102,102,101,114,41,58,110,46,98,117,102,102,101,114,44,110,101,119,32,110,46,99,111,110,115,116,114,117,99,116,111,114,40,116,44,110,46,98,121,116,101,79,102,102,115,101,116,44,110,46,98,121,116,101,76,101,110,103,116,104,41,59,99,97,115,101,34,91,111,98,106,101,99,116,32,70,108,111,97,116,51,50,65,114,114,97,121,93,34,58,99,97,115,101,34,91,111,98,106,101,99,116,32,70,108,111,97,116,54,52,65,114,114,97,121,93,34,58,99,97,115,101,34,91,111,98,106,101,99,116,32,73,110,116,56,65,114,114,97,121,93,34,58,99,97,115,101,34,91,111,98,106,101,99,116,32,73,110,116,49,54,65,114,114,97,121,93,34,58,99,97,115,101,34,91,111,98,106,101,99,116,32,73,110,116,51,50,65,114,114,97,121,93,34,58,99,97,115,101,34,91,111,98,106,101,99,116,32,85,105,110,116,56,65,114,114,97,121,93,34,58,99,97,115,101,34,91,111,98,106,101,99,116,32,85,105,110,116,56,67,108,97,109,112,101,100,65,114,114,97,121,93,34,58,10,99,97,115,101,34,91,111,98,106,101,99,116,32,85,105,110,116,49,54,65,114,114,97,121,93,34,58,99,97,115,101,34,91,111,98,106,101,99,116,32,85,105,110,116,51,50,65,114,114,97,121,93,34,58,114,101,116,117,114,110,32,122,114,40,110,44,114,41,59,99,97,115,101,34,91,111,98,106,101,99,116,32,77,97,112,93,34,58,114,101,116,117,114,110,32,110,101,119,32,101,59,99,97,115,101,34,91,111,98,106,101,99,116,32,78,117,109,98,101,114,93,34,58,99,97,115,101,34,91,111,98,106,101,99,116,32,83,116,114,105,110,103,93,34,58,114,101,116,117,114,110,32,110,101,119,32,101,40,110,41,59,99,97,115,101,34,91,111,98,106,101,99,116,32,82,101,103,69,120,112,93,34,58,114,101,116,117,114,110,32,116,61,110,101,119,32,110,46,99,111,110,115,116,114,117,99,116,111,114,40,110,46,115,111,117,114,99,101,44,95,110,46,101,120,101,99,40,110,41,41,44,116,46,108,97,115,116,73,110,100,101,120,61,110,46,108,97,115,116,73,110,100,101,120,44,116,59,99,97,115,101,34,91,111,98,106,101,99,116,32,83,101,116,93,34,58,114,101,116,117,114,110,32,110,101,119,32,101,59,99,97,115,101,34,91,111,98,106,101,99,116,32,83,121,109,98,111,108,93,34,58,114,101,116,117,114,110,32,116,111,63,81,117,40,116,111,46,99,97,108,108,40,110,41,41,58,123,125,125,125,102,117,110,99,116,105,111,110,32,107,101,40,110,41,123,114,101,116,117,114,110,32,102,102,40,110,41,124,124,111,102,40,110,41,124,124,33,33,40,106,105,38,38,110,38,38,110,91,106,105,93,41,125,102,117,110,99,116,105,111,110,32,83,101,40,110,44,116,41,123,118,97,114,32,114,61,116,121,112,101,111,102,32,110,59,114,101,116,117,114,110,32,116,61,110,117,108,108,61,61,116,63,57,48,48,55,49,57,57,50,53,52,55,52,48,57,57,49,58,116,44,33,33,116,38,38,40,34,110,117,109,98,101,114,34,61,61,114,124,124,34,115,121,109,98,111,108,34,33,61,114,38,38,98,110,46,116,101,115,116,40,110,41,41,38,38,45,49,60,110,38,38,48,61,61,110,37,49,38,38,110,60,116,59,10,125,102,117,110,99,116,105,111,110,32,79,101,40,110,44,116,44,114,41,123,105,102,40,33,100,117,40,114,41,41,114,101,116,117,114,110,32,102,97,108,115,101,59,118,97,114,32,101,61,116,121,112,101,111,102,32,116,59,114,101,116,117,114,110,33,33,40,34,110,117,109,98,101,114,34,61,61,101,63,115,117,40,114,41,38,38,83,101,40,116,44,114,46,108,101,110,103,116,104,41,58,34,115,116,114,105,110,103,34,61,61,101,38,38,116,32,105,110,32,114,41,38,38,108,117,40,114,91,116,93,44,110,41,125,102,117,110,99,116,105,111,110,32,73,101,40,110,44,116,41,123,105,102,40,102,102,40,110,41,41,114,101,116,117,114,110,32,102,97,108,115,101,59,118,97,114,32,114,61,116,121,112,101,111,102,32,110,59,114,101,116,117,114,110,33,40,34,110,117,109,98,101,114,34,33,61,114,38,38,34,115,121,109,98,111,108,34,33,61,114,38,38,34,98,111,111,108,101,97,110,34,33,61,114,38,38,110,117,108,108,33,61,110,38,38,33,119,117,40,110,41,41,124,124,40,110,110,46,116,101,115,116,40,110,41,124,124,33,88,46,116,101,115,116,40,110,41,124,124,110,117,108,108,33,61,116,38,38,110,32,105,110,32,81,117,40,116,41,41,125,102,117,110,99,116,105,111,110,32,82,101,40,110,41,123,118,97,114,32,116,61,103,101,40,110,41,44,114,61,65,110,91,116,93,59,114,101,116,117,114,110,32,116,121,112,101,111,102,32,114,61,61,34,102,117,110,99,116,105,111,110,34,38,38,116,32,105,110,32,85,110,46,112,114,111,116,111,116,121,112,101,38,38,40,110,61,61,61,114,124,124,40,116,61,104,111,40,114,41,44,33,33,116,38,38,110,61,61,61,116,91,48,93,41,41,125,102,117,110,99,116,105,111,110,32,122,101,40,110,41,123,118,97,114,32,116,61,110,38,38,110,46,99,111,110,115,116,114,117,99,116,111,114,59,114,101,116,117,114,110,32,110,61,61,61,40,116,121,112,101,111,102,32,116,61,61,34,102,117,110,99,116,105,111,110,34,38,38,116,46,112,114,111,116,111,116,121,112,101,124,124,101,105,41,125,102,117,110,99,116,105,111,110,32,87,101,40,110,44,116,41,123,10,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,114,41,123,114,101,116,117,114,110,32,110,117,108,108,33,61,114,38,38,40,114,91,110,93,61,61,61,116,38,38,40,116,33,61,61,84,124,124,110,32,105,110,32,81,117,40,114,41,41,41,125,125,102,117,110,99,116,105,111,110,32,66,101,40,116,44,114,44,101,41,123,114,101,116,117,114,110,32,114,61,85,105,40,114,61,61,61,84,63,116,46,108,101,110,103,116,104,45,49,58,114,44,48,41,44,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,118,97,114,32,117,61,97,114,103,117,109,101,110,116,115,44,105,61,45,49,44,111,61,85,105,40,117,46,108,101,110,103,116,104,45,114,44,48,41,44,102,61,75,117,40,111,41,59,43,43,105,60,111,59,41,102,91,105,93,61,117,91,114,43,105,93,59,102,111,114,40,105,61,45,49,44,111,61,75,117,40,114,43,49,41,59,43,43,105,60,114,59,41,111,91,105,93,61,117,91,105,93,59,114,101,116,117,114,110,32,111,91,114,93,61,101,40,102,41,44,110,40,116,44,116,104,105,115,44,111,41,125,125,102,117,110,99,116,105,111,110,32,76,101,40,110,44,116,41,123,105,102,40,40,34,99,111,110,115,116,114,117,99,116,111,114,34,33,61,61,116,124,124,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,110,91,116,93,41,38,38,34,95,95,112,114,111,116,111,95,95,34,33,61,116,41,114,101,116,117,114,110,32,110,91,116,93,125,102,117,110,99,116,105,111,110,32,85,101,40,110,44,116,44,114,41,123,118,97,114,32,101,61,116,43,34,34,59,116,61,120,111,59,118,97,114,32,117,44,105,61,36,101,59,114,101,116,117,114,110,32,117,61,40,117,61,101,46,109,97,116,99,104,40,97,110,41,41,63,117,91,49,93,46,115,112,108,105,116,40,108,110,41,58,91,93,44,114,61,105,40,117,44,114,41,44,40,105,61,114,46,108,101,110,103,116,104,41,38,38,40,117,61,105,45,49,44,114,91,117,93,61,40,49,60,105,63,34,38,32,34,58,34,34,41,43,114,91,117,93,44,10,114,61,114,46,106,111,105,110,40,50,60,105,63,34,44,32,34,58,34,32,34,41,44,101,61,101,46,114,101,112,108,97,99,101,40,99,110,44,34,123,92,110,47,42,32,91,119,114,97,112,112,101,100,32,119,105,116,104,32,34,43,114,43,34,93,32,42,47,92,110,34,41,41,44,116,40,110,44,101,41,125,102,117,110,99,116,105,111,110,32,67,101,40,110,41,123,118,97,114,32,116,61,48,44,114,61,48,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,68,105,40,41,44,117,61,49,54,45,40,101,45,114,41,59,105,102,40,114,61,101,44,48,60,117,41,123,105,102,40,56,48,48,60,61,43,43,116,41,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,91,48,93,125,101,108,115,101,32,116,61,48,59,114,101,116,117,114,110,32,110,46,97,112,112,108,121,40,84,44,97,114,103,117,109,101,110,116,115,41,125,125,102,117,110,99,116,105,111,110,32,68,101,40,110,44,116,41,123,118,97,114,32,114,61,45,49,44,101,61,110,46,108,101,110,103,116,104,44,117,61,101,45,49,59,102,111,114,40,116,61,116,61,61,61,84,63,101,58,116,59,43,43,114,60,116,59,41,123,118,97,114,32,101,61,105,114,40,114,44,117,41,44,105,61,110,91,101,93,59,110,91,101,93,61,110,91,114,93,44,110,91,114,93,61,105,125,114,101,116,117,114,110,32,110,46,108,101,110,103,116,104,61,116,44,110,125,102,117,110,99,116,105,111,110,32,77,101,40,110,41,123,105,102,40,116,121,112,101,111,102,32,110,61,61,34,115,116,114,105,110,103,34,124,124,119,117,40,110,41,41,114,101,116,117,114,110,32,110,59,118,97,114,32,116,61,110,43,34,34,59,114,101,116,117,114,110,34,48,34,61,61,116,38,38,49,47,110,61,61,45,36,63,34,45,48,34,58,116,125,102,117,110,99,116,105,111,110,32,84,101,40,110,41,123,105,102,40,110,117,108,108,33,61,110,41,123,116,114,121,123,114,101,116,117,114,110,32,105,105,46,99,97,108,108,40,110,41,125,99,97,116,99,104,40,110,41,123,125,10,114,101,116,117,114,110,32,110,43,34,34,125,114,101,116,117,114,110,34,34,125,102,117,110,99,116,105,111,110,32,36,101,40,110,44,116,41,123,114,101,116,117,114,110,32,114,40,78,44,102,117,110,99,116,105,111,110,40,114,41,123,118,97,114,32,101,61,34,95,46,34,43,114,91,48,93,59,116,38,114,91,49,93,38,38,33,111,40,110,44,101,41,38,38,110,46,112,117,115,104,40,101,41,125,41,44,110,46,115,111,114,116,40,41,125,102,117,110,99,116,105,111,110,32,70,101,40,110,41,123,105,102,40,110,32,105,110,115,116,97,110,99,101,111,102,32,85,110,41,114,101,116,117,114,110,32,110,46,99,108,111,110,101,40,41,59,118,97,114,32,116,61,110,101,119,32,79,110,40,110,46,95,95,119,114,97,112,112,101,100,95,95,44,110,46,95,95,99,104,97,105,110,95,95,41,59,114,101,116,117,114,110,32,116,46,95,95,97,99,116,105,111,110,115,95,95,61,85,114,40,110,46,95,95,97,99,116,105,111,110,115,95,95,41,44,116,46,95,95,105,110,100,101,120,95,95,61,110,46,95,95,105,110,100,101,120,95,95,44,116,46,95,95,118,97,108,117,101,115,95,95,61,110,46,95,95,118,97,108,117,101,115,95,95,44,116,125,102,117,110,99,116,105,111,110,32,78,101,40,110,44,116,44,114,41,123,118,97,114,32,101,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,101,63,40,114,61,110,117,108,108,61,61,114,63,48,58,69,117,40,114,41,44,48,62,114,38,38,40,114,61,85,105,40,101,43,114,44,48,41,41,44,95,40,110,44,121,101,40,116,44,51,41,44,114,41,41,58,45,49,125,102,117,110,99,116,105,111,110,32,80,101,40,110,44,116,44,114,41,123,118,97,114,32,101,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,105,102,40,33,101,41,114,101,116,117,114,110,45,49,59,118,97,114,32,117,61,101,45,49,59,114,101,116,117,114,110,32,114,33,61,61,84,38,38,40,117,61,69,117,40,114,41,44,117,61,48,62,114,63,85,105,40,101,43,117,44,48,41,58,67,105,40,117,44,101,45,49,41,41,44,10,95,40,110,44,121,101,40,116,44,51,41,44,117,44,116,114,117,101,41,125,102,117,110,99,116,105,111,110,32,90,101,40,110,41,123,114,101,116,117,114,110,40,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,41,63,119,116,40,110,44,49,41,58,91,93,125,102,117,110,99,116,105,111,110,32,113,101,40,110,41,123,114,101,116,117,114,110,32,110,38,38,110,46,108,101,110,103,116,104,63,110,91,48,93,58,84,125,102,117,110,99,116,105,111,110,32,86,101,40,110,41,123,118,97,114,32,116,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,116,63,110,91,116,45,49,93,58,84,125,102,117,110,99,116,105,111,110,32,75,101,40,110,44,116,41,123,114,101,116,117,114,110,32,110,38,38,110,46,108,101,110,103,116,104,38,38,116,38,38,116,46,108,101,110,103,116,104,63,101,114,40,110,44,116,41,58,110,125,102,117,110,99,116,105,111,110,32,71,101,40,110,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,110,63,110,58,36,105,46,99,97,108,108,40,110,41,125,102,117,110,99,116,105,111,110,32,72,101,40,110,41,123,105,102,40,33,110,124,124,33,110,46,108,101,110,103,116,104,41,114,101,116,117,114,110,91,93,59,118,97,114,32,116,61,48,59,114,101,116,117,114,110,32,110,61,105,40,110,44,102,117,110,99,116,105,111,110,40,110,41,123,105,102,40,104,117,40,110,41,41,114,101,116,117,114,110,32,116,61,85,105,40,110,46,108,101,110,103,116,104,44,116,41,44,116,114,117,101,125,41,44,65,40,116,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,99,40,110,44,98,40,116,41,41,125,41,125,102,117,110,99,116,105,111,110,32,74,101,40,116,44,114,41,123,105,102,40,33,116,124,124,33,116,46,108,101,110,103,116,104,41,114,101,116,117,114,110,91,93,59,118,97,114,32,101,61,72,101,40,116,41,59,114,101,116,117,114,110,32,110,117,108,108,61,61,114,63,101,58,99,40,101,44,102,117,110,99,116,105,111,110,40,116,41,123,10,114,101,116,117,114,110,32,110,40,114,44,84,44,116,41,125,41,125,102,117,110,99,116,105,111,110,32,89,101,40,110,41,123,114,101,116,117,114,110,32,110,61,65,110,40,110,41,44,110,46,95,95,99,104,97,105,110,95,95,61,116,114,117,101,44,110,125,102,117,110,99,116,105,111,110,32,81,101,40,110,44,116,41,123,114,101,116,117,114,110,32,116,40,110,41,125,102,117,110,99,116,105,111,110,32,88,101,40,41,123,114,101,116,117,114,110,32,116,104,105,115,125,102,117,110,99,116,105,111,110,32,110,117,40,110,44,116,41,123,114,101,116,117,114,110,40,102,102,40,110,41,63,114,58,117,111,41,40,110,44,121,101,40,116,44,51,41,41,125,102,117,110,99,116,105,111,110,32,116,117,40,110,44,116,41,123,114,101,116,117,114,110,40,102,102,40,110,41,63,101,58,105,111,41,40,110,44,121,101,40,116,44,51,41,41,125,102,117,110,99,116,105,111,110,32,114,117,40,110,44,116,41,123,114,101,116,117,114,110,40,102,102,40,110,41,63,99,58,71,116,41,40,110,44,121,101,40,116,44,51,41,41,125,102,117,110,99,116,105,111,110,32,101,117,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,116,61,114,63,84,58,116,44,116,61,110,38,38,110,117,108,108,61,61,116,63,110,46,108,101,110,103,116,104,58,116,44,102,101,40,110,44,49,50,56,44,84,44,84,44,84,44,84,44,116,41,125,102,117,110,99,116,105,111,110,32,117,117,40,110,44,116,41,123,118,97,114,32,114,59,105,102,40,116,121,112,101,111,102,32,116,33,61,34,102,117,110,99,116,105,111,110,34,41,116,104,114,111,119,32,110,101,119,32,116,105,40,34,69,120,112,101,99,116,101,100,32,97,32,102,117,110,99,116,105,111,110,34,41,59,114,101,116,117,114,110,32,110,61,69,117,40,110,41,44,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,48,60,45,45,110,38,38,40,114,61,116,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,41,44,49,62,61,110,38,38,40,116,61,84,41,44,10,114,125,125,102,117,110,99,116,105,111,110,32,105,117,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,116,61,114,63,84,58,116,44,110,61,102,101,40,110,44,56,44,84,44,84,44,84,44,84,44,84,44,116,41,44,110,46,112,108,97,99,101,104,111,108,100,101,114,61,105,117,46,112,108,97,99,101,104,111,108,100,101,114,44,110,125,102,117,110,99,116,105,111,110,32,111,117,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,116,61,114,63,84,58,116,44,110,61,102,101,40,110,44,49,54,44,84,44,84,44,84,44,84,44,84,44,116,41,44,110,46,112,108,97,99,101,104,111,108,100,101,114,61,111,117,46,112,108,97,99,101,104,111,108,100,101,114,44,110,125,102,117,110,99,116,105,111,110,32,102,117,40,110,44,116,44,114,41,123,102,117,110,99,116,105,111,110,32,101,40,116,41,123,118,97,114,32,114,61,99,44,101,61,97,59,114,101,116,117,114,110,32,99,61,97,61,84,44,95,61,116,44,115,61,110,46,97,112,112,108,121,40,101,44,114,41,125,102,117,110,99,116,105,111,110,32,117,40,110,41,123,118,97,114,32,114,61,110,45,112,59,114,101,116,117,114,110,32,110,45,61,95,44,112,61,61,61,84,124,124,114,62,61,116,124,124,48,62,114,124,124,103,38,38,110,62,61,108,125,102,117,110,99,116,105,111,110,32,105,40,41,123,118,97,114,32,110,61,71,111,40,41,59,105,102,40,117,40,110,41,41,114,101,116,117,114,110,32,111,40,110,41,59,118,97,114,32,114,44,101,61,98,111,59,114,61,110,45,95,44,110,61,116,45,40,110,45,112,41,44,114,61,103,63,67,105,40,110,44,108,45,114,41,58,110,44,104,61,101,40,105,44,114,41,125,102,117,110,99,116,105,111,110,32,111,40,110,41,123,114,101,116,117,114,110,32,104,61,84,44,100,38,38,99,63,101,40,110,41,58,40,99,61,97,61,84,44,115,41,125,102,117,110,99,116,105,111,110,32,102,40,41,123,118,97,114,32,110,61,71,111,40,41,44,114,61,117,40,110,41,59,105,102,40,99,61,97,114,103,117,109,101,110,116,115,44,10,97,61,116,104,105,115,44,112,61,110,44,114,41,123,105,102,40,104,61,61,61,84,41,114,101,116,117,114,110,32,95,61,110,61,112,44,104,61,98,111,40,105,44,116,41,44,118,63,101,40,110,41,58,115,59,105,102,40,103,41,114,101,116,117,114,110,32,108,111,40,104,41,44,104,61,98,111,40,105,44,116,41,44,101,40,112,41,125,114,101,116,117,114,110,32,104,61,61,61,84,38,38,40,104,61,98,111,40,105,44,116,41,41,44,115,125,118,97,114,32,99,44,97,44,108,44,115,44,104,44,112,44,95,61,48,44,118,61,102,97,108,115,101,44,103,61,102,97,108,115,101,44,100,61,116,114,117,101,59,105,102,40,116,121,112,101,111,102,32,110,33,61,34,102,117,110,99,116,105,111,110,34,41,116,104,114,111,119,32,110,101,119,32,116,105,40,34,69,120,112,101,99,116,101,100,32,97,32,102,117,110,99,116,105,111,110,34,41,59,114,101,116,117,114,110,32,116,61,83,117,40,116,41,124,124,48,44,100,117,40,114,41,38,38,40,118,61,33,33,114,46,108,101,97,100,105,110,103,44,108,61,40,103,61,34,109,97,120,87,97,105,116,34,105,110,32,114,41,63,85,105,40,83,117,40,114,46,109,97,120,87,97,105,116,41,124,124,48,44,116,41,58,108,44,100,61,34,116,114,97,105,108,105,110,103,34,105,110,32,114,63,33,33,114,46,116,114,97,105,108,105,110,103,58,100,41,44,102,46,99,97,110,99,101,108,61,102,117,110,99,116,105,111,110,40,41,123,104,33,61,61,84,38,38,108,111,40,104,41,44,95,61,48,44,99,61,112,61,97,61,104,61,84,125,44,102,46,102,108,117,115,104,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,104,61,61,61,84,63,115,58,111,40,71,111,40,41,41,125,44,102,125,102,117,110,99,116,105,111,110,32,99,117,40,110,44,116,41,123,102,117,110,99,116,105,111,110,32,114,40,41,123,118,97,114,32,101,61,97,114,103,117,109,101,110,116,115,44,117,61,116,63,116,46,97,112,112,108,121,40,116,104,105,115,44,101,41,58,101,91,48,93,44,105,61,114,46,99,97,99,104,101,59,10,114,101,116,117,114,110,32,105,46,104,97,115,40,117,41,63,105,46,103,101,116,40,117,41,58,40,101,61,110,46,97,112,112,108,121,40,116,104,105,115,44,101,41,44,114,46,99,97,99,104,101,61,105,46,115,101,116,40,117,44,101,41,124,124,105,44,101,41,125,105,102,40,116,121,112,101,111,102,32,110,33,61,34,102,117,110,99,116,105,111,110,34,124,124,110,117,108,108,33,61,116,38,38,116,121,112,101,111,102,32,116,33,61,34,102,117,110,99,116,105,111,110,34,41,116,104,114,111,119,32,110,101,119,32,116,105,40,34,69,120,112,101,99,116,101,100,32,97,32,102,117,110,99,116,105,111,110,34,41,59,114,101,116,117,114,110,32,114,46,99,97,99,104,101,61,110,101,119,40,99,117,46,67,97,99,104,101,124,124,70,110,41,44,114,125,102,117,110,99,116,105,111,110,32,97,117,40,110,41,123,105,102,40,116,121,112,101,111,102,32,110,33,61,34,102,117,110,99,116,105,111,110,34,41,116,104,114,111,119,32,110,101,119,32,116,105,40,34,69,120,112,101,99,116,101,100,32,97,32,102,117,110,99,116,105,111,110,34,41,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,97,114,103,117,109,101,110,116,115,59,115,119,105,116,99,104,40,116,46,108,101,110,103,116,104,41,123,99,97,115,101,32,48,58,114,101,116,117,114,110,33,110,46,99,97,108,108,40,116,104,105,115,41,59,99,97,115,101,32,49,58,114,101,116,117,114,110,33,110,46,99,97,108,108,40,116,104,105,115,44,116,91,48,93,41,59,99,97,115,101,32,50,58,114,101,116,117,114,110,33,110,46,99,97,108,108,40,116,104,105,115,44,116,91,48,93,44,116,91,49,93,41,59,99,97,115,101,32,51,58,114,101,116,117,114,110,33,110,46,99,97,108,108,40,116,104,105,115,44,116,91,48,93,44,116,91,49,93,44,116,91,50,93,41,125,114,101,116,117,114,110,33,110,46,97,112,112,108,121,40,116,104,105,115,44,116,41,125,125,102,117,110,99,116,105,111,110,32,108,117,40,110,44,116,41,123,114,101,116,117,114,110,32,110,61,61,61,116,124,124,110,33,61,61,110,38,38,116,33,61,61,116,59,10,125,102,117,110,99,116,105,111,110,32,115,117,40,110,41,123,114,101,116,117,114,110,32,110,117,108,108,33,61,110,38,38,103,117,40,110,46,108,101,110,103,116,104,41,38,38,33,95,117,40,110,41,125,102,117,110,99,116,105,111,110,32,104,117,40,110,41,123,114,101,116,117,114,110,32,121,117,40,110,41,38,38,115,117,40,110,41,125,102,117,110,99,116,105,111,110,32,112,117,40,110,41,123,105,102,40,33,121,117,40,110,41,41,114,101,116,117,114,110,32,102,97,108,115,101,59,118,97,114,32,116,61,79,116,40,110,41,59,114,101,116,117,114,110,34,91,111,98,106,101,99,116,32,69,114,114,111,114,93,34,61,61,116,124,124,34,91,111,98,106,101,99,116,32,68,79,77,69,120,99,101,112,116,105,111,110,93,34,61,61,116,124,124,116,121,112,101,111,102,32,110,46,109,101,115,115,97,103,101,61,61,34,115,116,114,105,110,103,34,38,38,116,121,112,101,111,102,32,110,46,110,97,109,101,61,61,34,115,116,114,105,110,103,34,38,38,33,120,117,40,110,41,125,102,117,110,99,116,105,111,110,32,95,117,40,110,41,123,114,101,116,117,114,110,33,33,100,117,40,110,41,38,38,40,110,61,79,116,40,110,41,44,34,91,111,98,106,101,99,116,32,70,117,110,99,116,105,111,110,93,34,61,61,110,124,124,34,91,111,98,106,101,99,116,32,71,101,110,101,114,97,116,111,114,70,117,110,99,116,105,111,110,93,34,61,61,110,124,124,34,91,111,98,106,101,99,116,32,65,115,121,110,99,70,117,110,99,116,105,111,110,93,34,61,61,110,124,124,34,91,111,98,106,101,99,116,32,80,114,111,120,121,93,34,61,61,110,41,125,102,117,110,99,116,105,111,110,32,118,117,40,110,41,123,114,101,116,117,114,110,32,116,121,112,101,111,102,32,110,61,61,34,110,117,109,98,101,114,34,38,38,110,61,61,69,117,40,110,41,125,102,117,110,99,116,105,111,110,32,103,117,40,110,41,123,114,101,116,117,114,110,32,116,121,112,101,111,102,32,110,61,61,34,110,117,109,98,101,114,34,38,38,45,49,60,110,38,38,48,61,61,110,37,49,38,38,57,48,48,55,49,57,57,50,53,52,55,52,48,57,57,49,62,61,110,59,10,125,102,117,110,99,116,105,111,110,32,100,117,40,110,41,123,118,97,114,32,116,61,116,121,112,101,111,102,32,110,59,114,101,116,117,114,110,32,110,117,108,108,33,61,110,38,38,40,34,111,98,106,101,99,116,34,61,61,116,124,124,34,102,117,110,99,116,105,111,110,34,61,61,116,41,125,102,117,110,99,116,105,111,110,32,121,117,40,110,41,123,114,101,116,117,114,110,32,110,117,108,108,33,61,110,38,38,116,121,112,101,111,102,32,110,61,61,34,111,98,106,101,99,116,34,125,102,117,110,99,116,105,111,110,32,98,117,40,110,41,123,114,101,116,117,114,110,32,116,121,112,101,111,102,32,110,61,61,34,110,117,109,98,101,114,34,124,124,121,117,40,110,41,38,38,34,91,111,98,106,101,99,116,32,78,117,109,98,101,114,93,34,61,61,79,116,40,110,41,125,102,117,110,99,116,105,111,110,32,120,117,40,110,41,123,114,101,116,117,114,110,33,40,33,121,117,40,110,41,124,124,34,91,111,98,106,101,99,116,32,79,98,106,101,99,116,93,34,33,61,79,116,40,110,41,41,38,38,40,110,61,100,105,40,110,41,44,110,117,108,108,61,61,61,110,124,124,40,110,61,111,105,46,99,97,108,108,40,110,44,34,99,111,110,115,116,114,117,99,116,111,114,34,41,38,38,110,46,99,111,110,115,116,114,117,99,116,111,114,44,116,121,112,101,111,102,32,110,61,61,34,102,117,110,99,116,105,111,110,34,38,38,110,32,105,110,115,116,97,110,99,101,111,102,32,110,38,38,105,105,46,99,97,108,108,40,110,41,61,61,108,105,41,41,125,102,117,110,99,116,105,111,110,32,106,117,40,110,41,123,114,101,116,117,114,110,32,116,121,112,101,111,102,32,110,61,61,34,115,116,114,105,110,103,34,124,124,33,102,102,40,110,41,38,38,121,117,40,110,41,38,38,34,91,111,98,106,101,99,116,32,83,116,114,105,110,103,93,34,61,61,79,116,40,110,41,125,102,117,110,99,116,105,111,110,32,119,117,40,110,41,123,114,101,116,117,114,110,32,116,121,112,101,111,102,32,110,61,61,34,115,121,109,98,111,108,34,124,124,121,117,40,110,41,38,38,34,91,111,98,106,101,99,116,32,83,121,109,98,111,108,93,34,61,61,79,116,40,110,41,59,10,125,102,117,110,99,116,105,111,110,32,109,117,40,110,41,123,105,102,40,33,110,41,114,101,116,117,114,110,91,93,59,105,102,40,115,117,40,110,41,41,114,101,116,117,114,110,32,106,117,40,110,41,63,77,40,110,41,58,85,114,40,110,41,59,105,102,40,119,105,38,38,110,91,119,105,93,41,123,110,61,110,91,119,105,93,40,41,59,102,111,114,40,118,97,114,32,116,44,114,61,91,93,59,33,40,116,61,110,46,110,101,120,116,40,41,41,46,100,111,110,101,59,41,114,46,112,117,115,104,40,116,46,118,97,108,117,101,41,59,114,101,116,117,114,110,32,114,125,114,101,116,117,114,110,32,116,61,118,111,40,110,41,44,40,34,91,111,98,106,101,99,116,32,77,97,112,93,34,61,61,116,63,87,58,34,91,111,98,106,101,99,116,32,83,101,116,93,34,61,61,116,63,85,58,85,117,41,40,110,41,125,102,117,110,99,116,105,111,110,32,65,117,40,110,41,123,114,101,116,117,114,110,32,110,63,40,110,61,83,117,40,110,41,44,110,61,61,61,36,124,124,110,61,61,61,45,36,63,49,46,55,57,55,54,57,51,49,51,52,56,54,50,51,49,53,55,101,51,48,56,42,40,48,62,110,63,45,49,58,49,41,58,110,61,61,61,110,63,110,58,48,41,58,48,61,61,61,110,63,110,58,48,125,102,117,110,99,116,105,111,110,32,69,117,40,110,41,123,110,61,65,117,40,110,41,59,118,97,114,32,116,61,110,37,49,59,114,101,116,117,114,110,32,110,61,61,61,110,63,116,63,110,45,116,58,110,58,48,125,102,117,110,99,116,105,111,110,32,107,117,40,110,41,123,114,101,116,117,114,110,32,110,63,112,116,40,69,117,40,110,41,44,48,44,52,50,57,52,57,54,55,50,57,53,41,58,48,125,102,117,110,99,116,105,111,110,32,83,117,40,110,41,123,105,102,40,116,121,112,101,111,102,32,110,61,61,34,110,117,109,98,101,114,34,41,114,101,116,117,114,110,32,110,59,105,102,40,119,117,40,110,41,41,114,101,116,117,114,110,32,70,59,105,102,40,100,117,40,110,41,38,38,40,110,61,116,121,112,101,111,102,32,110,46,118,97,108,117,101,79,102,61,61,34,102,117,110,99,116,105,111,110,34,63,110,46,118,97,108,117,101,79,102,40,41,58,110,44,10,110,61,100,117,40,110,41,63,110,43,34,34,58,110,41,44,116,121,112,101,111,102,32,110,33,61,34,115,116,114,105,110,103,34,41,114,101,116,117,114,110,32,48,61,61,61,110,63,110,58,43,110,59,110,61,110,46,114,101,112,108,97,99,101,40,117,110,44,34,34,41,59,118,97,114,32,116,61,103,110,46,116,101,115,116,40,110,41,59,114,101,116,117,114,110,32,116,124,124,121,110,46,116,101,115,116,40,110,41,63,68,110,40,110,46,115,108,105,99,101,40,50,41,44,116,63,50,58,56,41,58,118,110,46,116,101,115,116,40,110,41,63,70,58,43,110,125,102,117,110,99,116,105,111,110,32,79,117,40,110,41,123,114,101,116,117,114,110,32,67,114,40,110,44,66,117,40,110,41,41,125,102,117,110,99,116,105,111,110,32,73,117,40,110,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,110,63,34,34,58,121,114,40,110,41,125,102,117,110,99,116,105,111,110,32,82,117,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,110,61,110,117,108,108,61,61,110,63,84,58,107,116,40,110,44,116,41,44,110,61,61,61,84,63,114,58,110,125,102,117,110,99,116,105,111,110,32,122,117,40,110,44,116,41,123,114,101,116,117,114,110,32,110,117,108,108,33,61,110,38,38,119,101,40,110,44,116,44,122,116,41,125,102,117,110,99,116,105,111,110,32,87,117,40,110,41,123,114,101,116,117,114,110,32,115,117,40,110,41,63,113,110,40,110,41,58,86,116,40,110,41,125,102,117,110,99,116,105,111,110,32,66,117,40,110,41,123,105,102,40,115,117,40,110,41,41,110,61,113,110,40,110,44,116,114,117,101,41,59,101,108,115,101,32,105,102,40,100,117,40,110,41,41,123,118,97,114,32,116,44,114,61,122,101,40,110,41,44,101,61,91,93,59,102,111,114,40,116,32,105,110,32,110,41,40,34,99,111,110,115,116,114,117,99,116,111,114,34,33,61,116,124,124,33,114,38,38,111,105,46,99,97,108,108,40,110,44,116,41,41,38,38,101,46,112,117,115,104,40,116,41,59,110,61,101,125,101,108,115,101,123,105,102,40,116,61,91,93,44,10,110,117,108,108,33,61,110,41,102,111,114,40,114,32,105,110,32,81,117,40,110,41,41,116,46,112,117,115,104,40,114,41,59,110,61,116,125,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,76,117,40,110,44,116,41,123,105,102,40,110,117,108,108,61,61,110,41,114,101,116,117,114,110,123,125,59,118,97,114,32,114,61,99,40,118,101,40,110,41,44,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,91,110,93,125,41,59,114,101,116,117,114,110,32,116,61,121,101,40,116,41,44,116,114,40,110,44,114,44,102,117,110,99,116,105,111,110,40,110,44,114,41,123,114,101,116,117,114,110,32,116,40,110,44,114,91,48,93,41,125,41,125,102,117,110,99,116,105,111,110,32,85,117,40,110,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,110,63,91,93,58,83,40,110,44,87,117,40,110,41,41,125,102,117,110,99,116,105,111,110,32,67,117,40,110,41,123,114,101,116,117,114,110,32,36,102,40,73,117,40,110,41,46,116,111,76,111,119,101,114,67,97,115,101,40,41,41,125,102,117,110,99,116,105,111,110,32,68,117,40,110,41,123,114,101,116,117,114,110,40,110,61,73,117,40,110,41,41,38,38,110,46,114,101,112,108,97,99,101,40,120,110,44,88,110,41,46,114,101,112,108,97,99,101,40,83,110,44,34,34,41,125,102,117,110,99,116,105,111,110,32,77,117,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,110,61,73,117,40,110,41,44,116,61,114,63,84,58,116,44,116,61,61,61,84,63,122,110,46,116,101,115,116,40,110,41,63,110,46,109,97,116,99,104,40,73,110,41,124,124,91,93,58,110,46,109,97,116,99,104,40,115,110,41,124,124,91,93,58,110,46,109,97,116,99,104,40,116,41,124,124,91,93,125,102,117,110,99,116,105,111,110,32,84,117,40,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,110,125,125,102,117,110,99,116,105,111,110,32,36,117,40,110,41,123,114,101,116,117,114,110,32,110,59,10,125,102,117,110,99,116,105,111,110,32,70,117,40,110,41,123,114,101,116,117,114,110,32,113,116,40,116,121,112,101,111,102,32,110,61,61,34,102,117,110,99,116,105,111,110,34,63,110,58,95,116,40,110,44,49,41,41,125,102,117,110,99,116,105,111,110,32,78,117,40,110,44,116,44,101,41,123,118,97,114,32,117,61,87,117,40,116,41,44,105,61,69,116,40,116,44,117,41,59,110,117,108,108,33,61,101,124,124,100,117,40,116,41,38,38,40,105,46,108,101,110,103,116,104,124,124,33,117,46,108,101,110,103,116,104,41,124,124,40,101,61,116,44,116,61,110,44,110,61,116,104,105,115,44,105,61,69,116,40,116,44,87,117,40,116,41,41,41,59,118,97,114,32,111,61,33,40,100,117,40,101,41,38,38,34,99,104,97,105,110,34,105,110,32,101,38,38,33,101,46,99,104,97,105,110,41,44,102,61,95,117,40,110,41,59,114,101,116,117,114,110,32,114,40,105,44,102,117,110,99,116,105,111,110,40,114,41,123,118,97,114,32,101,61,116,91,114,93,59,110,91,114,93,61,101,44,102,38,38,40,110,46,112,114,111,116,111,116,121,112,101,91,114,93,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,95,95,99,104,97,105,110,95,95,59,105,102,40,111,124,124,116,41,123,118,97,114,32,114,61,110,40,116,104,105,115,46,95,95,119,114,97,112,112,101,100,95,95,41,59,114,101,116,117,114,110,40,114,46,95,95,97,99,116,105,111,110,115,95,95,61,85,114,40,116,104,105,115,46,95,95,97,99,116,105,111,110,115,95,95,41,41,46,112,117,115,104,40,123,102,117,110,99,58,101,44,97,114,103,115,58,97,114,103,117,109,101,110,116,115,44,116,104,105,115,65,114,103,58,110,125,41,44,114,46,95,95,99,104,97,105,110,95,95,61,116,44,114,125,114,101,116,117,114,110,32,101,46,97,112,112,108,121,40,110,44,97,40,91,116,104,105,115,46,118,97,108,117,101,40,41,93,44,97,114,103,117,109,101,110,116,115,41,41,125,41,125,41,44,110,125,102,117,110,99,116,105,111,110,32,80,117,40,41,123,125,10,102,117,110,99,116,105,111,110,32,90,117,40,110,41,123,114,101,116,117,114,110,32,73,101,40,110,41,63,98,40,77,101,40,110,41,41,58,114,114,40,110,41,125,102,117,110,99,116,105,111,110,32,113,117,40,41,123,114,101,116,117,114,110,91,93,125,102,117,110,99,116,105,111,110,32,86,117,40,41,123,114,101,116,117,114,110,32,102,97,108,115,101,125,109,110,61,110,117,108,108,61,61,109,110,63,36,110,58,114,116,46,100,101,102,97,117,108,116,115,40,36,110,46,79,98,106,101,99,116,40,41,44,109,110,44,114,116,46,112,105,99,107,40,36,110,44,87,110,41,41,59,118,97,114,32,75,117,61,109,110,46,65,114,114,97,121,44,71,117,61,109,110,46,68,97,116,101,44,72,117,61,109,110,46,69,114,114,111,114,44,74,117,61,109,110,46,70,117,110,99,116,105,111,110,44,89,117,61,109,110,46,77,97,116,104,44,81,117,61,109,110,46,79,98,106,101,99,116,44,88,117,61,109,110,46,82,101,103,69,120,112,44,110,105,61,109,110,46,83,116,114,105,110,103,44,116,105,61,109,110,46,84,121,112,101,69,114,114,111,114,44,114,105,61,75,117,46,112,114,111,116,111,116,121,112,101,44,101,105,61,81,117,46,112,114,111,116,111,116,121,112,101,44,117,105,61,109,110,91,34,95,95,99,111,114,101,45,106,115,95,115,104,97,114,101,100,95,95,34,93,44,105,105,61,74,117,46,112,114,111,116,111,116,121,112,101,46,116,111,83,116,114,105,110,103,44,111,105,61,101,105,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,44,102,105,61,48,44,99,105,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,110,61,47,91,94,46,93,43,36,47,46,101,120,101,99,40,117,105,38,38,117,105,46,107,101,121,115,38,38,117,105,46,107,101,121,115,46,73,69,95,80,82,79,84,79,124,124,34,34,41,59,114,101,116,117,114,110,32,110,63,34,83,121,109,98,111,108,40,115,114,99,41,95,49,46,34,43,110,58,34,34,125,40,41,44,97,105,61,101,105,46,116,111,83,116,114,105,110,103,44,108,105,61,105,105,46,99,97,108,108,40,81,117,41,44,115,105,61,36,110,46,95,44,104,105,61,88,117,40,34,94,34,43,105,105,46,99,97,108,108,40,111,105,41,46,114,101,112,108,97,99,101,40,114,110,44,34,92,92,36,38,34,41,46,114,101,112,108,97,99,101,40,47,104,97,115,79,119,110,80,114,111,112,101,114,116,121,124,40,102,117,110,99,116,105,111,110,41,46,42,63,40,63,61,92,92,92,40,41,124,32,102,111,114,32,46,43,63,40,63,61,92,92,92,93,41,47,103,44,34,36,49,46,42,63,34,41,43,34,36,34,41,44,112,105,61,80,110,63,109,110,46,66,117,102,102,101,114,58,84,44,95,105,61,109,110,46,83,121,109,98,111,108,44,118,105,61,109,110,46,85,105,110,116,56,65,114,114,97,121,44,103,105,61,112,105,63,112,105,46,103,58,84,44,100,105,61,66,40,81,117,46,103,101,116,80,114,111,116,111,116,121,112,101,79,102,44,81,117,41,44,121,105,61,81,117,46,99,114,101,97,116,101,44,98,105,61,101,105,46,112,114,111,112,101,114,116,121,73,115,69,110,117,109,101,114,97,98,108,101,44,120,105,61,114,105,46,115,112,108,105,99,101,44,106,105,61,95,105,63,95,105,46,105,115,67,111,110,99,97,116,83,112,114,101,97,100,97,98,108,101,58,84,44,119,105,61,95,105,63,95,105,46,105,116,101,114,97,116,111,114,58,84,44,109,105,61,95,105,63,95,105,46,116,111,83,116,114,105,110,103,84,97,103,58,84,44,65,105,61,102,117,110,99,116,105,111,110,40,41,123,10,116,114,121,123,118,97,114,32,110,61,106,101,40,81,117,44,34,100,101,102,105,110,101,80,114,111,112,101,114,116,121,34,41,59,114,101,116,117,114,110,32,110,40,123,125,44,34,34,44,123,125,41,44,110,125,99,97,116,99,104,40,110,41,123,125,125,40,41,44,69,105,61,109,110,46,99,108,101,97,114,84,105,109,101,111,117,116,33,61,61,36,110,46,99,108,101,97,114,84,105,109,101,111,117,116,38,38,109,110,46,99,108,101,97,114,84,105,109,101,111,117,116,44,107,105,61,71,117,38,38,71,117,46,110,111,119,33,61,61,36,110,46,68,97,116,101,46,110,111,119,38,38,71,117,46,110,111,119,44,83,105,61,109,110,46,115,101,116,84,105,109,101,111,117,116,33,61,61,36,110,46,115,101,116,84,105,109,101,111,117,116,38,38,109,110,46,115,101,116,84,105,109,101,111,117,116,44,79,105,61,89,117,46,99,101,105,108,44,73,105,61,89,117,46,102,108,111,111,114,44,82,105,61,81,117,46,103,101,116,79,119,110,80,114,111,112,101,114,116,121,83,121,109,98,111,108,115,44,122,105,61,112,105,63,112,105,46,105,115,66,117,102,102,101,114,58,84,44,87,105,61,109,110,46,105,115,70,105,110,105,116,101,44,66,105,61,114,105,46,106,111,105,110,44,76,105,61,66,40,81,117,46,107,101,121,115,44,81,117,41,44,85,105,61,89,117,46,109,97,120,44,67,105,61,89,117,46,109,105,110,44,68,105,61,71,117,46,110,111,119,44,77,105,61,109,110,46,112,97,114,115,101,73,110,116,44,84,105,61,89,117,46,114,97,110,100,111,109,44,36,105,61,114,105,46,114,101,118,101,114,115,101,44,70,105,61,106,101,40,109,110,44,34,68,97,116,97,86,105,101,119,34,41,44,78,105,61,106,101,40,109,110,44,34,77,97,112,34,41,44,80,105,61,106,101,40,109,110,44,34,80,114,111,109,105,115,101,34,41,44,90,105,61,106,101,40,109,110,44,34,83,101,116,34,41,44,113,105,61,106,101,40,109,110,44,34,87,101,97,107,77,97,112,34,41,44,86,105,61,106,101,40,81,117,44,34,99,114,101,97,116,101,34,41,44,75,105,61,113,105,38,38,110,101,119,32,113,105,44,71,105,61,123,125,44,72,105,61,84,101,40,70,105,41,44,74,105,61,84,101,40,78,105,41,44,89,105,61,84,101,40,80,105,41,44,81,105,61,84,101,40,90,105,41,44,88,105,61,84,101,40,113,105,41,44,110,111,61,95,105,63,95,105,46,112,114,111,116,111,116,121,112,101,58,84,44,116,111,61,110,111,63,110,111,46,118,97,108,117,101,79,102,58,84,44,114,111,61,110,111,63,110,111,46,116,111,83,116,114,105,110,103,58,84,44,101,111,61,102,117,110,99,116,105,111,110,40,41,123,10,102,117,110,99,116,105,111,110,32,110,40,41,123,125,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,100,117,40,116,41,63,121,105,63,121,105,40,116,41,58,40,110,46,112,114,111,116,111,116,121,112,101,61,116,44,116,61,110,101,119,32,110,44,110,46,112,114,111,116,111,116,121,112,101,61,84,44,116,41,58,123,125,125,125,40,41,59,65,110,46,116,101,109,112,108,97,116,101,83,101,116,116,105,110,103,115,61,123,101,115,99,97,112,101,58,74,44,101,118,97,108,117,97,116,101,58,89,44,105,110,116,101,114,112,111,108,97,116,101,58,81,44,118,97,114,105,97,98,108,101,58,34,34,44,105,109,112,111,114,116,115,58,123,95,58,65,110,125,125,44,65,110,46,112,114,111,116,111,116,121,112,101,61,69,110,46,112,114,111,116,111,116,121,112,101,44,65,110,46,112,114,111,116,111,116,121,112,101,46,99,111,110,115,116,114,117,99,116,111,114,61,65,110,44,79,110,46,112,114,111,116,111,116,121,112,101,61,101,111,40,69,110,46,112,114,111,116,111,116,121,112,101,41,44,79,110,46,112,114,111,116,111,116,121,112,101,46,99,111,110,115,116,114,117,99,116,111,114,61,79,110,44,85,110,46,112,114,111,116,111,116,121,112,101,61,101,111,40,69,110,46,112,114,111,116,111,116,121,112,101,41,44,85,110,46,112,114,111,116,111,116,121,112,101,46,99,111,110,115,116,114,117,99,116,111,114,61,85,110,44,77,110,46,112,114,111,116,111,116,121,112,101,46,99,108,101,97,114,61,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,95,100,97,116,97,95,95,61,86,105,63,86,105,40,110,117,108,108,41,58,123,125,44,116,104,105,115,46,115,105,122,101,61,48,125,44,77,110,46,112,114,111,116,111,116,121,112,101,46,100,101,108,101,116,101,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,110,61,116,104,105,115,46,104,97,115,40,110,41,38,38,100,101,108,101,116,101,32,116,104,105,115,46,95,95,100,97,116,97,95,95,91,110,93,44,10,116,104,105,115,46,115,105,122,101,45,61,110,63,49,58,48,44,110,125,44,77,110,46,112,114,111,116,111,116,121,112,101,46,103,101,116,61,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,116,61,116,104,105,115,46,95,95,100,97,116,97,95,95,59,114,101,116,117,114,110,32,86,105,63,40,110,61,116,91,110,93,44,34,95,95,108,111,100,97,115,104,95,104,97,115,104,95,117,110,100,101,102,105,110,101,100,95,95,34,61,61,61,110,63,84,58,110,41,58,111,105,46,99,97,108,108,40,116,44,110,41,63,116,91,110,93,58,84,125,44,77,110,46,112,114,111,116,111,116,121,112,101,46,104,97,115,61,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,116,61,116,104,105,115,46,95,95,100,97,116,97,95,95,59,114,101,116,117,114,110,32,86,105,63,116,91,110,93,33,61,61,84,58,111,105,46,99,97,108,108,40,116,44,110,41,125,44,77,110,46,112,114,111,116,111,116,121,112,101,46,115,101,116,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,118,97,114,32,114,61,116,104,105,115,46,95,95,100,97,116,97,95,95,59,114,101,116,117,114,110,32,116,104,105,115,46,115,105,122,101,43,61,116,104,105,115,46,104,97,115,40,110,41,63,48,58,49,44,114,91,110,93,61,86,105,38,38,116,61,61,61,84,63,34,95,95,108,111,100,97,115,104,95,104,97,115,104,95,117,110,100,101,102,105,110,101,100,95,95,34,58,116,44,116,104,105,115,125,44,84,110,46,112,114,111,116,111,116,121,112,101,46,99,108,101,97,114,61,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,95,100,97,116,97,95,95,61,91,93,44,116,104,105,115,46,115,105,122,101,61,48,125,44,84,110,46,112,114,111,116,111,116,121,112,101,46,100,101,108,101,116,101,61,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,116,61,116,104,105,115,46,95,95,100,97,116,97,95,95,59,114,101,116,117,114,110,32,110,61,102,116,40,116,44,110,41,44,33,40,48,62,110,41,38,38,40,110,61,61,116,46,108,101,110,103,116,104,45,49,63,116,46,112,111,112,40,41,58,120,105,46,99,97,108,108,40,116,44,110,44,49,41,44,10,45,45,116,104,105,115,46,115,105,122,101,44,116,114,117,101,41,125,44,84,110,46,112,114,111,116,111,116,121,112,101,46,103,101,116,61,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,116,61,116,104,105,115,46,95,95,100,97,116,97,95,95,59,114,101,116,117,114,110,32,110,61,102,116,40,116,44,110,41,44,48,62,110,63,84,58,116,91,110,93,91,49,93,125,44,84,110,46,112,114,111,116,111,116,121,112,101,46,104,97,115,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,45,49,60,102,116,40,116,104,105,115,46,95,95,100,97,116,97,95,95,44,110,41,125,44,84,110,46,112,114,111,116,111,116,121,112,101,46,115,101,116,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,118,97,114,32,114,61,116,104,105,115,46,95,95,100,97,116,97,95,95,44,101,61,102,116,40,114,44,110,41,59,114,101,116,117,114,110,32,48,62,101,63,40,43,43,116,104,105,115,46,115,105,122,101,44,114,46,112,117,115,104,40,91,110,44,116,93,41,41,58,114,91,101,93,91,49,93,61,116,44,116,104,105,115,125,44,70,110,46,112,114,111,116,111,116,121,112,101,46,99,108,101,97,114,61,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,115,105,122,101,61,48,44,116,104,105,115,46,95,95,100,97,116,97,95,95,61,123,104,97,115,104,58,110,101,119,32,77,110,44,109,97,112,58,110,101,119,40,78,105,124,124,84,110,41,44,115,116,114,105,110,103,58,110,101,119,32,77,110,125,125,44,70,110,46,112,114,111,116,111,116,121,112,101,46,100,101,108,101,116,101,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,110,61,98,101,40,116,104,105,115,44,110,41,46,100,101,108,101,116,101,40,110,41,44,116,104,105,115,46,115,105,122,101,45,61,110,63,49,58,48,44,110,125,44,70,110,46,112,114,111,116,111,116,121,112,101,46,103,101,116,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,98,101,40,116,104,105,115,44,110,41,46,103,101,116,40,110,41,59,10,125,44,70,110,46,112,114,111,116,111,116,121,112,101,46,104,97,115,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,98,101,40,116,104,105,115,44,110,41,46,104,97,115,40,110,41,125,44,70,110,46,112,114,111,116,111,116,121,112,101,46,115,101,116,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,118,97,114,32,114,61,98,101,40,116,104,105,115,44,110,41,44,101,61,114,46,115,105,122,101,59,114,101,116,117,114,110,32,114,46,115,101,116,40,110,44,116,41,44,116,104,105,115,46,115,105,122,101,43,61,114,46,115,105,122,101,61,61,101,63,48,58,49,44,116,104,105,115,125,44,78,110,46,112,114,111,116,111,116,121,112,101,46,97,100,100,61,78,110,46,112,114,111,116,111,116,121,112,101,46,112,117,115,104,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,95,100,97,116,97,95,95,46,115,101,116,40,110,44,34,95,95,108,111,100,97,115,104,95,104,97,115,104,95,117,110,100,101,102,105,110,101,100,95,95,34,41,44,116,104,105,115,125,44,78,110,46,112,114,111,116,111,116,121,112,101,46,104,97,115,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,95,100,97,116,97,95,95,46,104,97,115,40,110,41,125,44,90,110,46,112,114,111,116,111,116,121,112,101,46,99,108,101,97,114,61,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,95,100,97,116,97,95,95,61,110,101,119,32,84,110,44,116,104,105,115,46,115,105,122,101,61,48,125,44,90,110,46,112,114,111,116,111,116,121,112,101,46,100,101,108,101,116,101,61,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,116,61,116,104,105,115,46,95,95,100,97,116,97,95,95,59,114,101,116,117,114,110,32,110,61,116,46,100,101,108,101,116,101,40,110,41,44,116,104,105,115,46,115,105,122,101,61,116,46,115,105,122,101,44,110,125,44,90,110,46,112,114,111,116,111,116,121,112,101,46,103,101,116,61,102,117,110,99,116,105,111,110,40,110,41,123,10,114,101,116,117,114,110,32,116,104,105,115,46,95,95,100,97,116,97,95,95,46,103,101,116,40,110,41,125,44,90,110,46,112,114,111,116,111,116,121,112,101,46,104,97,115,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,95,100,97,116,97,95,95,46,104,97,115,40,110,41,125,44,90,110,46,112,114,111,116,111,116,121,112,101,46,115,101,116,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,118,97,114,32,114,61,116,104,105,115,46,95,95,100,97,116,97,95,95,59,105,102,40,114,32,105,110,115,116,97,110,99,101,111,102,32,84,110,41,123,118,97,114,32,101,61,114,46,95,95,100,97,116,97,95,95,59,105,102,40,33,78,105,124,124,49,57,57,62,101,46,108,101,110,103,116,104,41,114,101,116,117,114,110,32,101,46,112,117,115,104,40,91,110,44,116,93,41,44,116,104,105,115,46,115,105,122,101,61,43,43,114,46,115,105,122,101,44,116,104,105,115,59,114,61,116,104,105,115,46,95,95,100,97,116,97,95,95,61,110,101,119,32,70,110,40,101,41,125,114,101,116,117,114,110,32,114,46,115,101,116,40,110,44,116,41,44,116,104,105,115,46,115,105,122,101,61,114,46,115,105,122,101,44,116,104,105,115,125,59,118,97,114,32,117,111,61,70,114,40,109,116,41,44,105,111,61,70,114,40,65,116,44,116,114,117,101,41,44,111,111,61,78,114,40,41,44,102,111,61,78,114,40,116,114,117,101,41,44,99,111,61,75,105,63,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,75,105,46,115,101,116,40,110,44,116,41,44,110,125,58,36,117,44,97,111,61,65,105,63,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,65,105,40,110,44,34,116,111,83,116,114,105,110,103,34,44,123,99,111,110,102,105,103,117,114,97,98,108,101,58,116,114,117,101,44,101,110,117,109,101,114,97,98,108,101,58,102,97,108,115,101,44,118,97,108,117,101,58,84,117,40,116,41,44,119,114,105,116,97,98,108,101,58,116,114,117,101,125,41,125,58,36,117,44,108,111,61,69,105,124,124,102,117,110,99,116,105,111,110,40,110,41,123,10,114,101,116,117,114,110,32,36,110,46,99,108,101,97,114,84,105,109,101,111,117,116,40,110,41,125,44,115,111,61,90,105,38,38,49,47,85,40,110,101,119,32,90,105,40,91,44,45,48,93,41,41,91,49,93,61,61,36,63,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,110,101,119,32,90,105,40,110,41,125,58,80,117,44,104,111,61,75,105,63,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,75,105,46,103,101,116,40,110,41,125,58,80,117,44,112,111,61,82,105,63,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,110,63,91,93,58,40,110,61,81,117,40,110,41,44,105,40,82,105,40,110,41,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,98,105,46,99,97,108,108,40,110,44,116,41,125,41,41,125,58,113,117,44,95,111,61,82,105,63,102,117,110,99,116,105,111,110,40,110,41,123,102,111,114,40,118,97,114,32,116,61,91,93,59,110,59,41,97,40,116,44,112,111,40,110,41,41,44,110,61,100,105,40,110,41,59,114,101,116,117,114,110,32,116,125,58,113,117,44,118,111,61,79,116,59,40,70,105,38,38,34,91,111,98,106,101,99,116,32,68,97,116,97,86,105,101,119,93,34,33,61,118,111,40,110,101,119,32,70,105,40,110,101,119,32,65,114,114,97,121,66,117,102,102,101,114,40,49,41,41,41,124,124,78,105,38,38,34,91,111,98,106,101,99,116,32,77,97,112,93,34,33,61,118,111,40,110,101,119,32,78,105,41,124,124,80,105,38,38,34,91,111,98,106,101,99,116,32,80,114,111,109,105,115,101,93,34,33,61,118,111,40,80,105,46,114,101,115,111,108,118,101,40,41,41,124,124,90,105,38,38,34,91,111,98,106,101,99,116,32,83,101,116,93,34,33,61,118,111,40,110,101,119,32,90,105,41,124,124,113,105,38,38,34,91,111,98,106,101,99,116,32,87,101,97,107,77,97,112,93,34,33,61,118,111,40,110,101,119,32,113,105,41,41,38,38,40,118,111,61,102,117,110,99,116,105,111,110,40,110,41,123,10,118,97,114,32,116,61,79,116,40,110,41,59,105,102,40,110,61,40,110,61,34,91,111,98,106,101,99,116,32,79,98,106,101,99,116,93,34,61,61,116,63,110,46,99,111,110,115,116,114,117,99,116,111,114,58,84,41,63,84,101,40,110,41,58,34,34,41,115,119,105,116,99,104,40,110,41,123,99,97,115,101,32,72,105,58,114,101,116,117,114,110,34,91,111,98,106,101,99,116,32,68,97,116,97,86,105,101,119,93,34,59,99,97,115,101,32,74,105,58,114,101,116,117,114,110,34,91,111,98,106,101,99,116,32,77,97,112,93,34,59,99,97,115,101,32,89,105,58,114,101,116,117,114,110,34,91,111,98,106,101,99,116,32,80,114,111,109,105,115,101,93,34,59,99,97,115,101,32,81,105,58,114,101,116,117,114,110,34,91,111,98,106,101,99,116,32,83,101,116,93,34,59,99,97,115,101,32,88,105,58,114,101,116,117,114,110,34,91,111,98,106,101,99,116,32,87,101,97,107,77,97,112,93,34,125,114,101,116,117,114,110,32,116,125,41,59,118,97,114,32,103,111,61,117,105,63,95,117,58,86,117,44,121,111,61,67,101,40,99,111,41,44,98,111,61,83,105,124,124,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,36,110,46,115,101,116,84,105,109,101,111,117,116,40,110,44,116,41,125,44,120,111,61,67,101,40,97,111,41,44,106,111,61,102,117,110,99,116,105,111,110,40,110,41,123,110,61,99,117,40,110,44,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,53,48,48,61,61,61,116,46,115,105,122,101,38,38,116,46,99,108,101,97,114,40,41,44,110,125,41,59,118,97,114,32,116,61,110,46,99,97,99,104,101,59,114,101,116,117,114,110,32,110,125,40,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,116,61,91,93,59,114,101,116,117,114,110,32,52,54,61,61,61,110,46,99,104,97,114,67,111,100,101,65,116,40,48,41,38,38,116,46,112,117,115,104,40,34,34,41,44,110,46,114,101,112,108,97,99,101,40,116,110,44,102,117,110,99,116,105,111,110,40,110,44,114,44,101,44,117,41,123,10,116,46,112,117,115,104,40,101,63,117,46,114,101,112,108,97,99,101,40,104,110,44,34,36,49,34,41,58,114,124,124,110,41,125,41,44,116,125,41,44,119,111,61,102,114,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,104,117,40,110,41,63,121,116,40,110,44,119,116,40,116,44,49,44,104,117,44,116,114,117,101,41,41,58,91,93,125,41,44,109,111,61,102,114,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,118,97,114,32,114,61,86,101,40,116,41,59,114,101,116,117,114,110,32,104,117,40,114,41,38,38,40,114,61,84,41,44,104,117,40,110,41,63,121,116,40,110,44,119,116,40,116,44,49,44,104,117,44,116,114,117,101,41,44,121,101,40,114,44,50,41,41,58,91,93,125,41,44,65,111,61,102,114,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,118,97,114,32,114,61,86,101,40,116,41,59,114,101,116,117,114,110,32,104,117,40,114,41,38,38,40,114,61,84,41,44,104,117,40,110,41,63,121,116,40,110,44,119,116,40,116,44,49,44,104,117,44,116,114,117,101,41,44,84,44,114,41,58,91,93,125,41,44,69,111,61,102,114,40,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,116,61,99,40,110,44,69,114,41,59,114,101,116,117,114,110,32,116,46,108,101,110,103,116,104,38,38,116,91,48,93,61,61,61,110,91,48,93,63,87,116,40,116,41,58,91,93,125,41,44,107,111,61,102,114,40,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,116,61,86,101,40,110,41,44,114,61,99,40,110,44,69,114,41,59,114,101,116,117,114,110,32,116,61,61,61,86,101,40,114,41,63,116,61,84,58,114,46,112,111,112,40,41,44,114,46,108,101,110,103,116,104,38,38,114,91,48,93,61,61,61,110,91,48,93,63,87,116,40,114,44,121,101,40,116,44,50,41,41,58,91,93,125,41,44,83,111,61,102,114,40,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,116,61,86,101,40,110,41,44,114,61,99,40,110,44,69,114,41,59,114,101,116,117,114,110,40,116,61,116,121,112,101,111,102,32,116,61,61,34,102,117,110,99,116,105,111,110,34,63,116,58,84,41,38,38,114,46,112,111,112,40,41,44,10,114,46,108,101,110,103,116,104,38,38,114,91,48,93,61,61,61,110,91,48,93,63,87,116,40,114,44,84,44,116,41,58,91,93,125,41,44,79,111,61,102,114,40,75,101,41,44,73,111,61,112,101,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,118,97,114,32,114,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,44,101,61,104,116,40,110,44,116,41,59,114,101,116,117,114,110,32,117,114,40,110,44,99,40,116,44,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,83,101,40,110,44,114,41,63,43,110,58,110,125,41,46,115,111,114,116,40,87,114,41,41,44,101,125,41,44,82,111,61,102,114,40,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,98,114,40,119,116,40,110,44,49,44,104,117,44,116,114,117,101,41,41,125,41,44,122,111,61,102,114,40,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,116,61,86,101,40,110,41,59,114,101,116,117,114,110,32,104,117,40,116,41,38,38,40,116,61,84,41,44,98,114,40,119,116,40,110,44,49,44,104,117,44,116,114,117,101,41,44,121,101,40,116,44,50,41,41,125,41,44,87,111,61,102,114,40,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,116,61,86,101,40,110,41,44,116,61,116,121,112,101,111,102,32,116,61,61,34,102,117,110,99,116,105,111,110,34,63,116,58,84,59,114,101,116,117,114,110,32,98,114,40,119,116,40,110,44,49,44,104,117,44,116,114,117,101,41,44,84,44,116,41,125,41,44,66,111,61,102,114,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,104,117,40,110,41,63,121,116,40,110,44,116,41,58,91,93,125,41,44,76,111,61,102,114,40,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,109,114,40,105,40,110,44,104,117,41,41,125,41,44,85,111,61,102,114,40,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,116,61,86,101,40,110,41,59,114,101,116,117,114,110,32,104,117,40,116,41,38,38,40,116,61,84,41,44,10,109,114,40,105,40,110,44,104,117,41,44,121,101,40,116,44,50,41,41,125,41,44,67,111,61,102,114,40,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,116,61,86,101,40,110,41,44,116,61,116,121,112,101,111,102,32,116,61,61,34,102,117,110,99,116,105,111,110,34,63,116,58,84,59,114,101,116,117,114,110,32,109,114,40,105,40,110,44,104,117,41,44,84,44,116,41,125,41,44,68,111,61,102,114,40,72,101,41,44,77,111,61,102,114,40,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,116,61,110,46,108,101,110,103,116,104,44,116,61,49,60,116,63,110,91,116,45,49,93,58,84,44,116,61,116,121,112,101,111,102,32,116,61,61,34,102,117,110,99,116,105,111,110,34,63,40,110,46,112,111,112,40,41,44,116,41,58,84,59,114,101,116,117,114,110,32,74,101,40,110,44,116,41,125,41,44,84,111,61,112,101,40,102,117,110,99,116,105,111,110,40,110,41,123,102,117,110,99,116,105,111,110,32,116,40,116,41,123,114,101,116,117,114,110,32,104,116,40,116,44,110,41,125,118,97,114,32,114,61,110,46,108,101,110,103,116,104,44,101,61,114,63,110,91,48,93,58,48,44,117,61,116,104,105,115,46,95,95,119,114,97,112,112,101,100,95,95,59,114,101,116,117,114,110,33,40,49,60,114,124,124,116,104,105,115,46,95,95,97,99,116,105,111,110,115,95,95,46,108,101,110,103,116,104,41,38,38,117,32,105,110,115,116,97,110,99,101,111,102,32,85,110,38,38,83,101,40,101,41,63,40,117,61,117,46,115,108,105,99,101,40,101,44,43,101,43,40,114,63,49,58,48,41,41,44,117,46,95,95,97,99,116,105,111,110,115,95,95,46,112,117,115,104,40,123,102,117,110,99,58,81,101,44,97,114,103,115,58,91,116,93,44,116,104,105,115,65,114,103,58,84,125,41,44,110,101,119,32,79,110,40,117,44,116,104,105,115,46,95,95,99,104,97,105,110,95,95,41,46,116,104,114,117,40,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,114,38,38,33,110,46,108,101,110,103,116,104,38,38,110,46,112,117,115,104,40,84,41,44,10,110,125,41,41,58,116,104,105,115,46,116,104,114,117,40,116,41,125,41,44,36,111,61,84,114,40,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,111,105,46,99,97,108,108,40,110,44,114,41,63,43,43,110,91,114,93,58,115,116,40,110,44,114,44,49,41,125,41,44,70,111,61,71,114,40,78,101,41,44,78,111,61,71,114,40,80,101,41,44,80,111,61,84,114,40,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,111,105,46,99,97,108,108,40,110,44,114,41,63,110,91,114,93,46,112,117,115,104,40,116,41,58,115,116,40,110,44,114,44,91,116,93,41,125,41,44,90,111,61,102,114,40,102,117,110,99,116,105,111,110,40,116,44,114,44,101,41,123,118,97,114,32,117,61,45,49,44,105,61,116,121,112,101,111,102,32,114,61,61,34,102,117,110,99,116,105,111,110,34,44,111,61,115,117,40,116,41,63,75,117,40,116,46,108,101,110,103,116,104,41,58,91,93,59,114,101,116,117,114,110,32,117,111,40,116,44,102,117,110,99,116,105,111,110,40,116,41,123,111,91,43,43,117,93,61,105,63,110,40,114,44,116,44,101,41,58,76,116,40,116,44,114,44,101,41,125,41,44,111,125,41,44,113,111,61,84,114,40,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,115,116,40,110,44,114,44,116,41,125,41,44,86,111,61,84,114,40,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,110,91,114,63,48,58,49,93,46,112,117,115,104,40,116,41,125,44,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,91,91,93,44,91,93,93,125,41,44,75,111,61,102,114,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,105,102,40,110,117,108,108,61,61,110,41,114,101,116,117,114,110,91,93,59,118,97,114,32,114,61,116,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,49,60,114,38,38,79,101,40,110,44,116,91,48,93,44,116,91,49,93,41,63,116,61,91,93,58,50,60,114,38,38,79,101,40,116,91,48,93,44,116,91,49,93,44,116,91,50,93,41,38,38,40,116,61,91,116,91,48,93,93,41,44,10,88,116,40,110,44,119,116,40,116,44,49,41,44,91,93,41,125,41,44,71,111,61,107,105,124,124,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,36,110,46,68,97,116,101,46,110,111,119,40,41,125,44,72,111,61,102,114,40,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,118,97,114,32,101,61,49,59,105,102,40,114,46,108,101,110,103,116,104,41,118,97,114,32,117,61,76,40,114,44,100,101,40,72,111,41,41,44,101,61,51,50,124,101,59,114,101,116,117,114,110,32,102,101,40,110,44,101,44,116,44,114,44,117,41,125,41,44,74,111,61,102,114,40,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,118,97,114,32,101,61,51,59,105,102,40,114,46,108,101,110,103,116,104,41,118,97,114,32,117,61,76,40,114,44,100,101,40,74,111,41,41,44,101,61,51,50,124,101,59,114,101,116,117,114,110,32,102,101,40,116,44,101,44,110,44,114,44,117,41,125,41,44,89,111,61,102,114,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,100,116,40,110,44,49,44,116,41,125,41,44,81,111,61,102,114,40,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,100,116,40,110,44,83,117,40,116,41,124,124,48,44,114,41,125,41,59,99,117,46,67,97,99,104,101,61,70,110,59,118,97,114,32,88,111,61,102,114,40,102,117,110,99,116,105,111,110,40,116,44,114,41,123,114,61,49,61,61,114,46,108,101,110,103,116,104,38,38,102,102,40,114,91,48,93,41,63,99,40,114,91,48,93,44,107,40,121,101,40,41,41,41,58,99,40,119,116,40,114,44,49,41,44,107,40,121,101,40,41,41,41,59,118,97,114,32,101,61,114,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,102,114,40,102,117,110,99,116,105,111,110,40,117,41,123,102,111,114,40,118,97,114,32,105,61,45,49,44,111,61,67,105,40,117,46,108,101,110,103,116,104,44,101,41,59,43,43,105,60,111,59,41,117,91,105,93,61,114,91,105,93,46,99,97,108,108,40,116,104,105,115,44,117,91,105,93,41,59,10,114,101,116,117,114,110,32,110,40,116,44,116,104,105,115,44,117,41,125,41,125,41,44,110,102,61,102,114,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,102,101,40,110,44,51,50,44,84,44,116,44,76,40,116,44,100,101,40,110,102,41,41,41,125,41,44,116,102,61,102,114,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,102,101,40,110,44,54,52,44,84,44,116,44,76,40,116,44,100,101,40,116,102,41,41,41,125,41,44,114,102,61,112,101,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,102,101,40,110,44,50,53,54,44,84,44,84,44,84,44,116,41,125,41,44,101,102,61,101,101,40,73,116,41,44,117,102,61,101,101,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,62,61,116,125,41,44,111,102,61,85,116,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,125,40,41,41,63,85,116,58,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,121,117,40,110,41,38,38,111,105,46,99,97,108,108,40,110,44,34,99,97,108,108,101,101,34,41,38,38,33,98,105,46,99,97,108,108,40,110,44,34,99,97,108,108,101,101,34,41,125,44,102,102,61,75,117,46,105,115,65,114,114,97,121,44,99,102,61,86,110,63,107,40,86,110,41,58,67,116,44,97,102,61,122,105,124,124,86,117,44,108,102,61,75,110,63,107,40,75,110,41,58,68,116,44,115,102,61,71,110,63,107,40,71,110,41,58,84,116,44,104,102,61,72,110,63,107,40,72,110,41,58,78,116,44,112,102,61,74,110,63,107,40,74,110,41,58,80,116,44,95,102,61,89,110,63,107,40,89,110,41,58,90,116,44,118,102,61,101,101,40,75,116,41,44,103,102,61,101,101,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,60,61,116,125,41,44,100,102,61,36,114,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,10,105,102,40,122,101,40,116,41,124,124,115,117,40,116,41,41,67,114,40,116,44,87,117,40,116,41,44,110,41,59,101,108,115,101,32,102,111,114,40,118,97,114,32,114,32,105,110,32,116,41,111,105,46,99,97,108,108,40,116,44,114,41,38,38,111,116,40,110,44,114,44,116,91,114,93,41,125,41,44,121,102,61,36,114,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,67,114,40,116,44,66,117,40,116,41,44,110,41,125,41,44,98,102,61,36,114,40,102,117,110,99,116,105,111,110,40,110,44,116,44,114,44,101,41,123,67,114,40,116,44,66,117,40,116,41,44,110,44,101,41,125,41,44,120,102,61,36,114,40,102,117,110,99,116,105,111,110,40,110,44,116,44,114,44,101,41,123,67,114,40,116,44,87,117,40,116,41,44,110,44,101,41,125,41,44,106,102,61,112,101,40,104,116,41,44,119,102,61,102,114,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,110,61,81,117,40,110,41,59,118,97,114,32,114,61,45,49,44,101,61,116,46,108,101,110,103,116,104,44,117,61,50,60,101,63,116,91,50,93,58,84,59,102,111,114,40,117,38,38,79,101,40,116,91,48,93,44,116,91,49,93,44,117,41,38,38,40,101,61,49,41,59,43,43,114,60,101,59,41,102,111,114,40,118,97,114,32,117,61,116,91,114,93,44,105,61,66,117,40,117,41,44,111,61,45,49,44,102,61,105,46,108,101,110,103,116,104,59,43,43,111,60,102,59,41,123,118,97,114,32,99,61,105,91,111,93,44,97,61,110,91,99,93,59,40,97,61,61,61,84,124,124,108,117,40,97,44,101,105,91,99,93,41,38,38,33,111,105,46,99,97,108,108,40,110,44,99,41,41,38,38,40,110,91,99,93,61,117,91,99,93,41,125,114,101,116,117,114,110,32,110,125,41,44,109,102,61,102,114,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,112,117,115,104,40,84,44,97,101,41,44,110,40,79,102,44,84,44,116,41,125,41,44,65,102,61,89,114,40,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,10,110,117,108,108,33,61,116,38,38,116,121,112,101,111,102,32,116,46,116,111,83,116,114,105,110,103,33,61,34,102,117,110,99,116,105,111,110,34,38,38,40,116,61,97,105,46,99,97,108,108,40,116,41,41,44,110,91,116,93,61,114,125,44,84,117,40,36,117,41,41,44,69,102,61,89,114,40,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,110,117,108,108,33,61,116,38,38,116,121,112,101,111,102,32,116,46,116,111,83,116,114,105,110,103,33,61,34,102,117,110,99,116,105,111,110,34,38,38,40,116,61,97,105,46,99,97,108,108,40,116,41,41,44,111,105,46,99,97,108,108,40,110,44,116,41,63,110,91,116,93,46,112,117,115,104,40,114,41,58,110,91,116,93,61,91,114,93,125,44,121,101,41,44,107,102,61,102,114,40,76,116,41,44,83,102,61,36,114,40,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,89,116,40,110,44,116,44,114,41,125,41,44,79,102,61,36,114,40,102,117,110,99,116,105,111,110,40,110,44,116,44,114,44,101,41,123,89,116,40,110,44,116,44,114,44,101,41,125,41,44,73,102,61,112,101,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,118,97,114,32,114,61,123,125,59,105,102,40,110,117,108,108,61,61,110,41,114,101,116,117,114,110,32,114,59,118,97,114,32,101,61,102,97,108,115,101,59,116,61,99,40,116,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,61,83,114,40,116,44,110,41,44,101,124,124,40,101,61,49,60,116,46,108,101,110,103,116,104,41,44,116,125,41,44,67,114,40,110,44,118,101,40,110,41,44,114,41,44,101,38,38,40,114,61,95,116,40,114,44,55,44,108,101,41,41,59,102,111,114,40,118,97,114,32,117,61,116,46,108,101,110,103,116,104,59,117,45,45,59,41,120,114,40,114,44,116,91,117,93,41,59,114,101,116,117,114,110,32,114,125,41,44,82,102,61,112,101,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,110,63,123,125,58,110,114,40,110,44,116,41,59,10,125,41,44,122,102,61,111,101,40,87,117,41,44,87,102,61,111,101,40,66,117,41,44,66,102,61,113,114,40,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,116,61,116,46,116,111,76,111,119,101,114,67,97,115,101,40,41,44,110,43,40,114,63,67,117,40,116,41,58,116,41,125,41,44,76,102,61,113,114,40,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,110,43,40,114,63,34,45,34,58,34,34,41,43,116,46,116,111,76,111,119,101,114,67,97,115,101,40,41,125,41,44,85,102,61,113,114,40,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,110,43,40,114,63,34,32,34,58,34,34,41,43,116,46,116,111,76,111,119,101,114,67,97,115,101,40,41,125,41,44,67,102,61,90,114,40,34,116,111,76,111,119,101,114,67,97,115,101,34,41,44,68,102,61,113,114,40,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,110,43,40,114,63,34,95,34,58,34,34,41,43,116,46,116,111,76,111,119,101,114,67,97,115,101,40,41,125,41,44,77,102,61,113,114,40,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,110,43,40,114,63,34,32,34,58,34,34,41,43,36,102,40,116,41,125,41,44,84,102,61,113,114,40,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,110,43,40,114,63,34,32,34,58,34,34,41,43,116,46,116,111,85,112,112,101,114,67,97,115,101,40,41,125,41,44,36,102,61,90,114,40,34,116,111,85,112,112,101,114,67,97,115,101,34,41,44,70,102,61,102,114,40,102,117,110,99,116,105,111,110,40,116,44,114,41,123,116,114,121,123,114,101,116,117,114,110,32,110,40,116,44,84,44,114,41,125,99,97,116,99,104,40,110,41,123,114,101,116,117,114,110,32,112,117,40,110,41,63,110,58,110,101,119,32,72,117,40,110,41,125,125,41,44,78,102,61,112,101,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,10,114,101,116,117,114,110,32,114,40,116,44,102,117,110,99,116,105,111,110,40,116,41,123,116,61,77,101,40,116,41,44,115,116,40,110,44,116,44,72,111,40,110,91,116,93,44,110,41,41,125,41,44,110,125,41,44,80,102,61,72,114,40,41,44,90,102,61,72,114,40,116,114,117,101,41,44,113,102,61,102,114,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,114,41,123,114,101,116,117,114,110,32,76,116,40,114,44,110,44,116,41,125,125,41,44,86,102,61,102,114,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,114,41,123,114,101,116,117,114,110,32,76,116,40,110,44,114,44,116,41,125,125,41,44,75,102,61,88,114,40,99,41,44,71,102,61,88,114,40,117,41,44,72,102,61,88,114,40,104,41,44,74,102,61,114,101,40,41,44,89,102,61,114,101,40,116,114,117,101,41,44,81,102,61,81,114,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,43,116,125,44,48,41,44,88,102,61,105,101,40,34,99,101,105,108,34,41,44,110,99,61,81,114,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,47,116,125,44,49,41,44,116,99,61,105,101,40,34,102,108,111,111,114,34,41,44,114,99,61,81,114,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,42,116,125,44,49,41,44,101,99,61,105,101,40,34,114,111,117,110,100,34,41,44,117,99,61,81,114,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,45,116,125,44,48,41,59,114,101,116,117,114,110,32,65,110,46,97,102,116,101,114,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,105,102,40,116,121,112,101,111,102,32,116,33,61,34,102,117,110,99,116,105,111,110,34,41,116,104,114,111,119,32,110,101,119,32,116,105,40,34,69,120,112,101,99,116,101,100,32,97,32,102,117,110,99,116,105,111,110,34,41,59,10,114,101,116,117,114,110,32,110,61,69,117,40,110,41,44,102,117,110,99,116,105,111,110,40,41,123,105,102,40,49,62,45,45,110,41,114,101,116,117,114,110,32,116,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,125,125,44,65,110,46,97,114,121,61,101,117,44,65,110,46,97,115,115,105,103,110,61,100,102,44,65,110,46,97,115,115,105,103,110,73,110,61,121,102,44,65,110,46,97,115,115,105,103,110,73,110,87,105,116,104,61,98,102,44,65,110,46,97,115,115,105,103,110,87,105,116,104,61,120,102,44,65,110,46,97,116,61,106,102,44,65,110,46,98,101,102,111,114,101,61,117,117,44,65,110,46,98,105,110,100,61,72,111,44,65,110,46,98,105,110,100,65,108,108,61,78,102,44,65,110,46,98,105,110,100,75,101,121,61,74,111,44,65,110,46,99,97,115,116,65,114,114,97,121,61,102,117,110,99,116,105,111,110,40,41,123,105,102,40,33,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,114,101,116,117,114,110,91,93,59,118,97,114,32,110,61,97,114,103,117,109,101,110,116,115,91,48,93,59,114,101,116,117,114,110,32,102,102,40,110,41,63,110,58,91,110,93,125,44,65,110,46,99,104,97,105,110,61,89,101,44,65,110,46,99,104,117,110,107,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,105,102,40,116,61,40,114,63,79,101,40,110,44,116,44,114,41,58,116,61,61,61,84,41,63,49,58,85,105,40,69,117,40,116,41,44,48,41,44,114,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,44,33,114,124,124,49,62,116,41,114,101,116,117,114,110,91,93,59,102,111,114,40,118,97,114,32,101,61,48,44,117,61,48,44,105,61,75,117,40,79,105,40,114,47,116,41,41,59,101,60,114,59,41,105,91,117,43,43,93,61,104,114,40,110,44,101,44,101,43,61,116,41,59,114,101,116,117,114,110,32,105,125,44,65,110,46,99,111,109,112,97,99,116,61,102,117,110,99,116,105,111,110,40,110,41,123,102,111,114,40,118,97,114,32,116,61,45,49,44,114,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,44,101,61,48,44,117,61,91,93,59,43,43,116,60,114,59,41,123,10,118,97,114,32,105,61,110,91,116,93,59,105,38,38,40,117,91,101,43,43,93,61,105,41,125,114,101,116,117,114,110,32,117,125,44,65,110,46,99,111,110,99,97,116,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,110,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,105,102,40,33,110,41,114,101,116,117,114,110,91,93,59,102,111,114,40,118,97,114,32,116,61,75,117,40,110,45,49,41,44,114,61,97,114,103,117,109,101,110,116,115,91,48,93,59,110,45,45,59,41,116,91,110,45,49,93,61,97,114,103,117,109,101,110,116,115,91,110,93,59,114,101,116,117,114,110,32,97,40,102,102,40,114,41,63,85,114,40,114,41,58,91,114,93,44,119,116,40,116,44,49,41,41,125,44,65,110,46,99,111,110,100,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,114,61,110,117,108,108,61,61,116,63,48,58,116,46,108,101,110,103,116,104,44,101,61,121,101,40,41,59,114,101,116,117,114,110,32,116,61,114,63,99,40,116,44,102,117,110,99,116,105,111,110,40,110,41,123,105,102,40,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,110,91,49,93,41,116,104,114,111,119,32,110,101,119,32,116,105,40,34,69,120,112,101,99,116,101,100,32,97,32,102,117,110,99,116,105,111,110,34,41,59,114,101,116,117,114,110,91,101,40,110,91,48,93,41,44,110,91,49,93,93,125,41,58,91,93,44,102,114,40,102,117,110,99,116,105,111,110,40,101,41,123,102,111,114,40,118,97,114,32,117,61,45,49,59,43,43,117,60,114,59,41,123,118,97,114,32,105,61,116,91,117,93,59,105,102,40,110,40,105,91,48,93,44,116,104,105,115,44,101,41,41,114,101,116,117,114,110,32,110,40,105,91,49,93,44,116,104,105,115,44,101,41,125,125,41,125,44,65,110,46,99,111,110,102,111,114,109,115,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,118,116,40,95,116,40,110,44,49,41,41,125,44,65,110,46,99,111,110,115,116,97,110,116,61,84,117,44,10,65,110,46,99,111,117,110,116,66,121,61,36,111,44,65,110,46,99,114,101,97,116,101,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,118,97,114,32,114,61,101,111,40,110,41,59,114,101,116,117,114,110,32,110,117,108,108,61,61,116,63,114,58,97,116,40,114,44,116,41,125,44,65,110,46,99,117,114,114,121,61,105,117,44,65,110,46,99,117,114,114,121,82,105,103,104,116,61,111,117,44,65,110,46,100,101,98,111,117,110,99,101,61,102,117,44,65,110,46,100,101,102,97,117,108,116,115,61,119,102,44,65,110,46,100,101,102,97,117,108,116,115,68,101,101,112,61,109,102,44,65,110,46,100,101,102,101,114,61,89,111,44,65,110,46,100,101,108,97,121,61,81,111,44,65,110,46,100,105,102,102,101,114,101,110,99,101,61,119,111,44,65,110,46,100,105,102,102,101,114,101,110,99,101,66,121,61,109,111,44,65,110,46,100,105,102,102,101,114,101,110,99,101,87,105,116,104,61,65,111,44,65,110,46,100,114,111,112,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,118,97,114,32,101,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,101,63,40,116,61,114,124,124,116,61,61,61,84,63,49,58,69,117,40,116,41,44,104,114,40,110,44,48,62,116,63,48,58,116,44,101,41,41,58,91,93,125,44,65,110,46,100,114,111,112,82,105,103,104,116,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,118,97,114,32,101,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,101,63,40,116,61,114,124,124,116,61,61,61,84,63,49,58,69,117,40,116,41,44,116,61,101,45,116,44,104,114,40,110,44,48,44,48,62,116,63,48,58,116,41,41,58,91,93,125,44,65,110,46,100,114,111,112,82,105,103,104,116,87,104,105,108,101,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,38,38,110,46,108,101,110,103,116,104,63,106,114,40,110,44,121,101,40,116,44,51,41,44,116,114,117,101,44,116,114,117,101,41,58,91,93,59,10,125,44,65,110,46,100,114,111,112,87,104,105,108,101,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,38,38,110,46,108,101,110,103,116,104,63,106,114,40,110,44,121,101,40,116,44,51,41,44,116,114,117,101,41,58,91,93,125,44,65,110,46,102,105,108,108,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,44,101,41,123,118,97,114,32,117,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,105,102,40,33,117,41,114,101,116,117,114,110,91,93,59,102,111,114,40,114,38,38,116,121,112,101,111,102,32,114,33,61,34,110,117,109,98,101,114,34,38,38,79,101,40,110,44,116,44,114,41,38,38,40,114,61,48,44,101,61,117,41,44,117,61,110,46,108,101,110,103,116,104,44,114,61,69,117,40,114,41,44,48,62,114,38,38,40,114,61,45,114,62,117,63,48,58,117,43,114,41,44,101,61,101,61,61,61,84,124,124,101,62,117,63,117,58,69,117,40,101,41,44,48,62,101,38,38,40,101,43,61,117,41,44,101,61,114,62,101,63,48,58,107,117,40,101,41,59,114,60,101,59,41,110,91,114,43,43,93,61,116,59,114,101,116,117,114,110,32,110,125,44,65,110,46,102,105,108,116,101,114,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,40,102,102,40,110,41,63,105,58,106,116,41,40,110,44,121,101,40,116,44,51,41,41,125,44,65,110,46,102,108,97,116,77,97,112,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,119,116,40,114,117,40,110,44,116,41,44,49,41,125,44,65,110,46,102,108,97,116,77,97,112,68,101,101,112,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,119,116,40,114,117,40,110,44,116,41,44,36,41,125,44,65,110,46,102,108,97,116,77,97,112,68,101,112,116,104,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,114,61,114,61,61,61,84,63,49,58,69,117,40,114,41,44,10,119,116,40,114,117,40,110,44,116,41,44,114,41,125,44,65,110,46,102,108,97,116,116,101,110,61,90,101,44,65,110,46,102,108,97,116,116,101,110,68,101,101,112,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,40,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,41,63,119,116,40,110,44,36,41,58,91,93,125,44,65,110,46,102,108,97,116,116,101,110,68,101,112,116,104,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,117,108,108,33,61,110,38,38,110,46,108,101,110,103,116,104,63,40,116,61,116,61,61,61,84,63,49,58,69,117,40,116,41,44,119,116,40,110,44,116,41,41,58,91,93,125,44,65,110,46,102,108,105,112,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,102,101,40,110,44,53,49,50,41,125,44,65,110,46,102,108,111,119,61,80,102,44,65,110,46,102,108,111,119,82,105,103,104,116,61,90,102,44,65,110,46,102,114,111,109,80,97,105,114,115,61,102,117,110,99,116,105,111,110,40,110,41,123,102,111,114,40,118,97,114,32,116,61,45,49,44,114,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,44,101,61,123,125,59,43,43,116,60,114,59,41,123,118,97,114,32,117,61,110,91,116,93,59,101,91,117,91,48,93,93,61,117,91,49,93,125,114,101,116,117,114,110,32,101,125,44,65,110,46,102,117,110,99,116,105,111,110,115,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,110,63,91,93,58,69,116,40,110,44,87,117,40,110,41,41,125,44,65,110,46,102,117,110,99,116,105,111,110,115,73,110,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,110,63,91,93,58,69,116,40,110,44,66,117,40,110,41,41,125,44,65,110,46,103,114,111,117,112,66,121,61,80,111,44,65,110,46,105,110,105,116,105,97,108,61,102,117,110,99,116,105,111,110,40,110,41,123,10,114,101,116,117,114,110,40,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,41,63,104,114,40,110,44,48,44,45,49,41,58,91,93,125,44,65,110,46,105,110,116,101,114,115,101,99,116,105,111,110,61,69,111,44,65,110,46,105,110,116,101,114,115,101,99,116,105,111,110,66,121,61,107,111,44,65,110,46,105,110,116,101,114,115,101,99,116,105,111,110,87,105,116,104,61,83,111,44,65,110,46,105,110,118,101,114,116,61,65,102,44,65,110,46,105,110,118,101,114,116,66,121,61,69,102,44,65,110,46,105,110,118,111,107,101,77,97,112,61,90,111,44,65,110,46,105,116,101,114,97,116,101,101,61,70,117,44,65,110,46,107,101,121,66,121,61,113,111,44,65,110,46,107,101,121,115,61,87,117,44,65,110,46,107,101,121,115,73,110,61,66,117,44,65,110,46,109,97,112,61,114,117,44,65,110,46,109,97,112,75,101,121,115,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,118,97,114,32,114,61,123,125,59,114,101,116,117,114,110,32,116,61,121,101,40,116,44,51,41,44,109,116,40,110,44,102,117,110,99,116,105,111,110,40,110,44,101,44,117,41,123,115,116,40,114,44,116,40,110,44,101,44,117,41,44,110,41,125,41,44,114,125,44,65,110,46,109,97,112,86,97,108,117,101,115,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,118,97,114,32,114,61,123,125,59,114,101,116,117,114,110,32,116,61,121,101,40,116,44,51,41,44,109,116,40,110,44,102,117,110,99,116,105,111,110,40,110,44,101,44,117,41,123,115,116,40,114,44,101,44,116,40,110,44,101,44,117,41,41,125,41,44,114,125,44,65,110,46,109,97,116,99,104,101,115,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,72,116,40,95,116,40,110,44,49,41,41,125,44,65,110,46,109,97,116,99,104,101,115,80,114,111,112,101,114,116,121,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,74,116,40,110,44,95,116,40,116,44,49,41,41,125,44,65,110,46,109,101,109,111,105,122,101,61,99,117,44,10,65,110,46,109,101,114,103,101,61,83,102,44,65,110,46,109,101,114,103,101,87,105,116,104,61,79,102,44,65,110,46,109,101,116,104,111,100,61,113,102,44,65,110,46,109,101,116,104,111,100,79,102,61,86,102,44,65,110,46,109,105,120,105,110,61,78,117,44,65,110,46,110,101,103,97,116,101,61,97,117,44,65,110,46,110,116,104,65,114,103,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,110,61,69,117,40,110,41,44,102,114,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,81,116,40,116,44,110,41,125,41,125,44,65,110,46,111,109,105,116,61,73,102,44,65,110,46,111,109,105,116,66,121,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,76,117,40,110,44,97,117,40,121,101,40,116,41,41,41,125,44,65,110,46,111,110,99,101,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,117,117,40,50,44,110,41,125,44,65,110,46,111,114,100,101,114,66,121,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,44,101,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,110,63,91,93,58,40,102,102,40,116,41,124,124,40,116,61,110,117,108,108,61,61,116,63,91,93,58,91,116,93,41,44,114,61,101,63,84,58,114,44,102,102,40,114,41,124,124,40,114,61,110,117,108,108,61,61,114,63,91,93,58,91,114,93,41,44,88,116,40,110,44,116,44,114,41,41,125,44,65,110,46,111,118,101,114,61,75,102,44,65,110,46,111,118,101,114,65,114,103,115,61,88,111,44,65,110,46,111,118,101,114,69,118,101,114,121,61,71,102,44,65,110,46,111,118,101,114,83,111,109,101,61,72,102,44,65,110,46,112,97,114,116,105,97,108,61,110,102,44,65,110,46,112,97,114,116,105,97,108,82,105,103,104,116,61,116,102,44,65,110,46,112,97,114,116,105,116,105,111,110,61,86,111,44,65,110,46,112,105,99,107,61,82,102,44,65,110,46,112,105,99,107,66,121,61,76,117,44,65,110,46,112,114,111,112,101,114,116,121,61,90,117,44,10,65,110,46,112,114,111,112,101,114,116,121,79,102,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,110,63,84,58,107,116,40,110,44,116,41,125,125,44,65,110,46,112,117,108,108,61,79,111,44,65,110,46,112,117,108,108,65,108,108,61,75,101,44,65,110,46,112,117,108,108,65,108,108,66,121,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,110,38,38,110,46,108,101,110,103,116,104,38,38,116,38,38,116,46,108,101,110,103,116,104,63,101,114,40,110,44,116,44,121,101,40,114,44,50,41,41,58,110,125,44,65,110,46,112,117,108,108,65,108,108,87,105,116,104,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,110,38,38,110,46,108,101,110,103,116,104,38,38,116,38,38,116,46,108,101,110,103,116,104,63,101,114,40,110,44,116,44,84,44,114,41,58,110,125,44,65,110,46,112,117,108,108,65,116,61,73,111,44,65,110,46,114,97,110,103,101,61,74,102,44,65,110,46,114,97,110,103,101,82,105,103,104,116,61,89,102,44,65,110,46,114,101,97,114,103,61,114,102,44,65,110,46,114,101,106,101,99,116,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,40,102,102,40,110,41,63,105,58,106,116,41,40,110,44,97,117,40,121,101,40,116,44,51,41,41,41,125,44,65,110,46,114,101,109,111,118,101,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,118,97,114,32,114,61,91,93,59,105,102,40,33,110,124,124,33,110,46,108,101,110,103,116,104,41,114,101,116,117,114,110,32,114,59,118,97,114,32,101,61,45,49,44,117,61,91,93,44,105,61,110,46,108,101,110,103,116,104,59,102,111,114,40,116,61,121,101,40,116,44,51,41,59,43,43,101,60,105,59,41,123,118,97,114,32,111,61,110,91,101,93,59,116,40,111,44,101,44,110,41,38,38,40,114,46,112,117,115,104,40,111,41,44,10,117,46,112,117,115,104,40,101,41,41,125,114,101,116,117,114,110,32,117,114,40,110,44,117,41,44,114,125,44,65,110,46,114,101,115,116,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,105,102,40,116,121,112,101,111,102,32,110,33,61,34,102,117,110,99,116,105,111,110,34,41,116,104,114,111,119,32,110,101,119,32,116,105,40,34,69,120,112,101,99,116,101,100,32,97,32,102,117,110,99,116,105,111,110,34,41,59,114,101,116,117,114,110,32,116,61,116,61,61,61,84,63,116,58,69,117,40,116,41,44,102,114,40,110,44,116,41,125,44,65,110,46,114,101,118,101,114,115,101,61,71,101,44,65,110,46,115,97,109,112,108,101,83,105,122,101,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,116,61,40,114,63,79,101,40,110,44,116,44,114,41,58,116,61,61,61,84,41,63,49,58,69,117,40,116,41,44,40,102,102,40,110,41,63,101,116,58,97,114,41,40,110,44,116,41,125,44,65,110,46,115,101,116,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,110,63,110,58,108,114,40,110,44,116,44,114,41,125,44,65,110,46,115,101,116,87,105,116,104,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,44,101,41,123,114,101,116,117,114,110,32,101,61,116,121,112,101,111,102,32,101,61,61,34,102,117,110,99,116,105,111,110,34,63,101,58,84,44,110,117,108,108,61,61,110,63,110,58,108,114,40,110,44,116,44,114,44,101,41,125,44,65,110,46,115,104,117,102,102,108,101,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,40,102,102,40,110,41,63,117,116,58,115,114,41,40,110,41,125,44,65,110,46,115,108,105,99,101,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,118,97,114,32,101,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,101,63,40,114,38,38,116,121,112,101,111,102,32,114,33,61,34,110,117,109,98,101,114,34,38,38,79,101,40,110,44,116,44,114,41,63,40,116,61,48,44,10,114,61,101,41,58,40,116,61,110,117,108,108,61,61,116,63,48,58,69,117,40,116,41,44,114,61,114,61,61,61,84,63,101,58,69,117,40,114,41,41,44,104,114,40,110,44,116,44,114,41,41,58,91,93,125,44,65,110,46,115,111,114,116,66,121,61,75,111,44,65,110,46,115,111,114,116,101,100,85,110,105,113,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,110,38,38,110,46,108,101,110,103,116,104,63,103,114,40,110,41,58,91,93,125,44,65,110,46,115,111,114,116,101,100,85,110,105,113,66,121,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,38,38,110,46,108,101,110,103,116,104,63,103,114,40,110,44,121,101,40,116,44,50,41,41,58,91,93,125,44,65,110,46,115,112,108,105,116,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,114,38,38,116,121,112,101,111,102,32,114,33,61,34,110,117,109,98,101,114,34,38,38,79,101,40,110,44,116,44,114,41,38,38,40,116,61,114,61,84,41,44,114,61,114,61,61,61,84,63,52,50,57,52,57,54,55,50,57,53,58,114,62,62,62,48,44,114,63,40,110,61,73,117,40,110,41,41,38,38,40,116,121,112,101,111,102,32,116,61,61,34,115,116,114,105,110,103,34,124,124,110,117,108,108,33,61,116,38,38,33,104,102,40,116,41,41,38,38,40,116,61,121,114,40,116,41,44,33,116,38,38,82,110,46,116,101,115,116,40,110,41,41,63,79,114,40,77,40,110,41,44,48,44,114,41,58,110,46,115,112,108,105,116,40,116,44,114,41,58,91,93,125,44,65,110,46,115,112,114,101,97,100,61,102,117,110,99,116,105,111,110,40,116,44,114,41,123,105,102,40,116,121,112,101,111,102,32,116,33,61,34,102,117,110,99,116,105,111,110,34,41,116,104,114,111,119,32,110,101,119,32,116,105,40,34,69,120,112,101,99,116,101,100,32,97,32,102,117,110,99,116,105,111,110,34,41,59,114,101,116,117,114,110,32,114,61,110,117,108,108,61,61,114,63,48,58,85,105,40,69,117,40,114,41,44,48,41,44,10,102,114,40,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,117,61,101,91,114,93,59,114,101,116,117,114,110,32,101,61,79,114,40,101,44,48,44,114,41,44,117,38,38,97,40,101,44,117,41,44,110,40,116,44,116,104,105,115,44,101,41,125,41,125,44,65,110,46,116,97,105,108,61,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,116,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,116,63,104,114,40,110,44,49,44,116,41,58,91,93,125,44,65,110,46,116,97,107,101,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,110,38,38,110,46,108,101,110,103,116,104,63,40,116,61,114,124,124,116,61,61,61,84,63,49,58,69,117,40,116,41,44,104,114,40,110,44,48,44,48,62,116,63,48,58,116,41,41,58,91,93,125,44,65,110,46,116,97,107,101,82,105,103,104,116,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,118,97,114,32,101,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,101,63,40,116,61,114,124,124,116,61,61,61,84,63,49,58,69,117,40,116,41,44,116,61,101,45,116,44,104,114,40,110,44,48,62,116,63,48,58,116,44,101,41,41,58,91,93,125,44,65,110,46,116,97,107,101,82,105,103,104,116,87,104,105,108,101,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,38,38,110,46,108,101,110,103,116,104,63,106,114,40,110,44,121,101,40,116,44,51,41,44,102,97,108,115,101,44,116,114,117,101,41,58,91,93,125,44,65,110,46,116,97,107,101,87,104,105,108,101,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,38,38,110,46,108,101,110,103,116,104,63,106,114,40,110,44,121,101,40,116,44,51,41,41,58,91,93,125,44,65,110,46,116,97,112,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,116,40,110,41,44,10,110,125,44,65,110,46,116,104,114,111,116,116,108,101,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,118,97,114,32,101,61,116,114,117,101,44,117,61,116,114,117,101,59,105,102,40,116,121,112,101,111,102,32,110,33,61,34,102,117,110,99,116,105,111,110,34,41,116,104,114,111,119,32,110,101,119,32,116,105,40,34,69,120,112,101,99,116,101,100,32,97,32,102,117,110,99,116,105,111,110,34,41,59,114,101,116,117,114,110,32,100,117,40,114,41,38,38,40,101,61,34,108,101,97,100,105,110,103,34,105,110,32,114,63,33,33,114,46,108,101,97,100,105,110,103,58,101,44,117,61,34,116,114,97,105,108,105,110,103,34,105,110,32,114,63,33,33,114,46,116,114,97,105,108,105,110,103,58,117,41,44,102,117,40,110,44,116,44,123,108,101,97,100,105,110,103,58,101,44,109,97,120,87,97,105,116,58,116,44,116,114,97,105,108,105,110,103,58,117,125,41,125,44,65,110,46,116,104,114,117,61,81,101,44,65,110,46,116,111,65,114,114,97,121,61,109,117,44,65,110,46,116,111,80,97,105,114,115,61,122,102,44,65,110,46,116,111,80,97,105,114,115,73,110,61,87,102,44,65,110,46,116,111,80,97,116,104,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,102,102,40,110,41,63,99,40,110,44,77,101,41,58,119,117,40,110,41,63,91,110,93,58,85,114,40,106,111,40,73,117,40,110,41,41,41,125,44,65,110,46,116,111,80,108,97,105,110,79,98,106,101,99,116,61,79,117,44,65,110,46,116,114,97,110,115,102,111,114,109,61,102,117,110,99,116,105,111,110,40,110,44,116,44,101,41,123,118,97,114,32,117,61,102,102,40,110,41,44,105,61,117,124,124,97,102,40,110,41,124,124,95,102,40,110,41,59,105,102,40,116,61,121,101,40,116,44,52,41,44,110,117,108,108,61,61,101,41,123,118,97,114,32,111,61,110,38,38,110,46,99,111,110,115,116,114,117,99,116,111,114,59,101,61,105,63,117,63,110,101,119,32,111,58,91,93,58,100,117,40,110,41,38,38,95,117,40,111,41,63,101,111,40,100,105,40,110,41,41,58,123,125,59,10,125,114,101,116,117,114,110,40,105,63,114,58,109,116,41,40,110,44,102,117,110,99,116,105,111,110,40,110,44,114,44,117,41,123,114,101,116,117,114,110,32,116,40,101,44,110,44,114,44,117,41,125,41,44,101,125,44,65,110,46,117,110,97,114,121,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,101,117,40,110,44,49,41,125,44,65,110,46,117,110,105,111,110,61,82,111,44,65,110,46,117,110,105,111,110,66,121,61,122,111,44,65,110,46,117,110,105,111,110,87,105,116,104,61,87,111,44,65,110,46,117,110,105,113,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,110,38,38,110,46,108,101,110,103,116,104,63,98,114,40,110,41,58,91,93,125,44,65,110,46,117,110,105,113,66,121,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,38,38,110,46,108,101,110,103,116,104,63,98,114,40,110,44,121,101,40,116,44,50,41,41,58,91,93,125,44,65,110,46,117,110,105,113,87,105,116,104,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,116,61,116,121,112,101,111,102,32,116,61,61,34,102,117,110,99,116,105,111,110,34,63,116,58,84,44,110,38,38,110,46,108,101,110,103,116,104,63,98,114,40,110,44,84,44,116,41,58,91,93,125,44,65,110,46,117,110,115,101,116,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,110,124,124,120,114,40,110,44,116,41,125,44,65,110,46,117,110,122,105,112,61,72,101,44,65,110,46,117,110,122,105,112,87,105,116,104,61,74,101,44,65,110,46,117,112,100,97,116,101,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,110,63,110,58,108,114,40,110,44,116,44,107,114,40,114,41,40,107,116,40,110,44,116,41,41,44,118,111,105,100,32,48,41,125,44,65,110,46,117,112,100,97,116,101,87,105,116,104,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,44,101,41,123,10,114,101,116,117,114,110,32,101,61,116,121,112,101,111,102,32,101,61,61,34,102,117,110,99,116,105,111,110,34,63,101,58,84,44,110,117,108,108,33,61,110,38,38,40,110,61,108,114,40,110,44,116,44,107,114,40,114,41,40,107,116,40,110,44,116,41,41,44,101,41,41,44,110,125,44,65,110,46,118,97,108,117,101,115,61,85,117,44,65,110,46,118,97,108,117,101,115,73,110,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,110,63,91,93,58,83,40,110,44,66,117,40,110,41,41,125,44,65,110,46,119,105,116,104,111,117,116,61,66,111,44,65,110,46,119,111,114,100,115,61,77,117,44,65,110,46,119,114,97,112,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,102,40,107,114,40,116,41,44,110,41,125,44,65,110,46,120,111,114,61,76,111,44,65,110,46,120,111,114,66,121,61,85,111,44,65,110,46,120,111,114,87,105,116,104,61,67,111,44,65,110,46,122,105,112,61,68,111,44,65,110,46,122,105,112,79,98,106,101,99,116,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,65,114,40,110,124,124,91,93,44,116,124,124,91,93,44,111,116,41,125,44,65,110,46,122,105,112,79,98,106,101,99,116,68,101,101,112,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,65,114,40,110,124,124,91,93,44,116,124,124,91,93,44,108,114,41,125,44,65,110,46,122,105,112,87,105,116,104,61,77,111,44,65,110,46,101,110,116,114,105,101,115,61,122,102,44,65,110,46,101,110,116,114,105,101,115,73,110,61,87,102,44,65,110,46,101,120,116,101,110,100,61,121,102,44,65,110,46,101,120,116,101,110,100,87,105,116,104,61,98,102,44,78,117,40,65,110,44,65,110,41,44,65,110,46,97,100,100,61,81,102,44,65,110,46,97,116,116,101,109,112,116,61,70,102,44,65,110,46,99,97,109,101,108,67,97,115,101,61,66,102,44,65,110,46,99,97,112,105,116,97,108,105,122,101,61,67,117,44,10,65,110,46,99,101,105,108,61,88,102,44,65,110,46,99,108,97,109,112,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,114,61,61,61,84,38,38,40,114,61,116,44,116,61,84,41,44,114,33,61,61,84,38,38,40,114,61,83,117,40,114,41,44,114,61,114,61,61,61,114,63,114,58,48,41,44,116,33,61,61,84,38,38,40,116,61,83,117,40,116,41,44,116,61,116,61,61,61,116,63,116,58,48,41,44,112,116,40,83,117,40,110,41,44,116,44,114,41,125,44,65,110,46,99,108,111,110,101,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,95,116,40,110,44,52,41,125,44,65,110,46,99,108,111,110,101,68,101,101,112,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,95,116,40,110,44,53,41,125,44,65,110,46,99,108,111,110,101,68,101,101,112,87,105,116,104,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,116,61,116,121,112,101,111,102,32,116,61,61,34,102,117,110,99,116,105,111,110,34,63,116,58,84,44,95,116,40,110,44,53,44,116,41,125,44,65,110,46,99,108,111,110,101,87,105,116,104,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,116,61,116,121,112,101,111,102,32,116,61,61,34,102,117,110,99,116,105,111,110,34,63,116,58,84,44,95,116,40,110,44,52,44,116,41,125,44,65,110,46,99,111,110,102,111,114,109,115,84,111,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,116,124,124,103,116,40,110,44,116,44,87,117,40,116,41,41,125,44,65,110,46,100,101,98,117,114,114,61,68,117,44,65,110,46,100,101,102,97,117,108,116,84,111,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,110,124,124,110,33,61,61,110,63,116,58,110,125,44,65,110,46,100,105,118,105,100,101,61,110,99,44,65,110,46,101,110,100,115,87,105,116,104,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,10,110,61,73,117,40,110,41,44,116,61,121,114,40,116,41,59,118,97,114,32,101,61,110,46,108,101,110,103,116,104,44,101,61,114,61,114,61,61,61,84,63,101,58,112,116,40,69,117,40,114,41,44,48,44,101,41,59,114,101,116,117,114,110,32,114,45,61,116,46,108,101,110,103,116,104,44,48,60,61,114,38,38,110,46,115,108,105,99,101,40,114,44,101,41,61,61,116,125,44,65,110,46,101,113,61,108,117,44,65,110,46,101,115,99,97,112,101,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,40,110,61,73,117,40,110,41,41,38,38,72,46,116,101,115,116,40,110,41,63,110,46,114,101,112,108,97,99,101,40,75,44,110,116,41,58,110,125,44,65,110,46,101,115,99,97,112,101,82,101,103,69,120,112,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,40,110,61,73,117,40,110,41,41,38,38,101,110,46,116,101,115,116,40,110,41,63,110,46,114,101,112,108,97,99,101,40,114,110,44,34,92,92,36,38,34,41,58,110,125,44,65,110,46,101,118,101,114,121,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,118,97,114,32,101,61,102,102,40,110,41,63,117,58,98,116,59,114,101,116,117,114,110,32,114,38,38,79,101,40,110,44,116,44,114,41,38,38,40,116,61,84,41,44,101,40,110,44,121,101,40,116,44,51,41,41,125,44,65,110,46,102,105,110,100,61,70,111,44,65,110,46,102,105,110,100,73,110,100,101,120,61,78,101,44,65,110,46,102,105,110,100,75,101,121,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,112,40,110,44,121,101,40,116,44,51,41,44,109,116,41,125,44,65,110,46,102,105,110,100,76,97,115,116,61,78,111,44,65,110,46,102,105,110,100,76,97,115,116,73,110,100,101,120,61,80,101,44,65,110,46,102,105,110,100,76,97,115,116,75,101,121,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,112,40,110,44,121,101,40,116,44,51,41,44,65,116,41,59,10,125,44,65,110,46,102,108,111,111,114,61,116,99,44,65,110,46,102,111,114,69,97,99,104,61,110,117,44,65,110,46,102,111,114,69,97,99,104,82,105,103,104,116,61,116,117,44,65,110,46,102,111,114,73,110,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,110,63,110,58,111,111,40,110,44,121,101,40,116,44,51,41,44,66,117,41,125,44,65,110,46,102,111,114,73,110,82,105,103,104,116,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,110,63,110,58,102,111,40,110,44,121,101,40,116,44,51,41,44,66,117,41,125,44,65,110,46,102,111,114,79,119,110,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,38,38,109,116,40,110,44,121,101,40,116,44,51,41,41,125,44,65,110,46,102,111,114,79,119,110,82,105,103,104,116,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,38,38,65,116,40,110,44,121,101,40,116,44,51,41,41,125,44,65,110,46,103,101,116,61,82,117,44,65,110,46,103,116,61,101,102,44,65,110,46,103,116,101,61,117,102,44,65,110,46,104,97,115,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,117,108,108,33,61,110,38,38,119,101,40,110,44,116,44,82,116,41,125,44,65,110,46,104,97,115,73,110,61,122,117,44,65,110,46,104,101,97,100,61,113,101,44,65,110,46,105,100,101,110,116,105,116,121,61,36,117,44,65,110,46,105,110,99,108,117,100,101,115,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,44,101,41,123,114,101,116,117,114,110,32,110,61,115,117,40,110,41,63,110,58,85,117,40,110,41,44,114,61,114,38,38,33,101,63,69,117,40,114,41,58,48,44,101,61,110,46,108,101,110,103,116,104,44,48,62,114,38,38,40,114,61,85,105,40,101,43,114,44,48,41,41,44,106,117,40,110,41,63,114,60,61,101,38,38,45,49,60,110,46,105,110,100,101,120,79,102,40,116,44,114,41,58,33,33,101,38,38,45,49,60,118,40,110,44,116,44,114,41,59,10,125,44,65,110,46,105,110,100,101,120,79,102,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,118,97,114,32,101,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,101,63,40,114,61,110,117,108,108,61,61,114,63,48,58,69,117,40,114,41,44,48,62,114,38,38,40,114,61,85,105,40,101,43,114,44,48,41,41,44,118,40,110,44,116,44,114,41,41,58,45,49,125,44,65,110,46,105,110,82,97,110,103,101,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,116,61,65,117,40,116,41,44,114,61,61,61,84,63,40,114,61,116,44,116,61,48,41,58,114,61,65,117,40,114,41,44,110,61,83,117,40,110,41,44,110,62,61,67,105,40,116,44,114,41,38,38,110,60,85,105,40,116,44,114,41,125,44,65,110,46,105,110,118,111,107,101,61,107,102,44,65,110,46,105,115,65,114,103,117,109,101,110,116,115,61,111,102,44,65,110,46,105,115,65,114,114,97,121,61,102,102,44,65,110,46,105,115,65,114,114,97,121,66,117,102,102,101,114,61,99,102,44,65,110,46,105,115,65,114,114,97,121,76,105,107,101,61,115,117,44,65,110,46,105,115,65,114,114,97,121,76,105,107,101,79,98,106,101,99,116,61,104,117,44,65,110,46,105,115,66,111,111,108,101,97,110,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,114,117,101,61,61,61,110,124,124,102,97,108,115,101,61,61,61,110,124,124,121,117,40,110,41,38,38,34,91,111,98,106,101,99,116,32,66,111,111,108,101,97,110,93,34,61,61,79,116,40,110,41,125,44,65,110,46,105,115,66,117,102,102,101,114,61,97,102,44,65,110,46,105,115,68,97,116,101,61,108,102,44,65,110,46,105,115,69,108,101,109,101,110,116,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,121,117,40,110,41,38,38,49,61,61,61,110,46,110,111,100,101,84,121,112,101,38,38,33,120,117,40,110,41,125,44,65,110,46,105,115,69,109,112,116,121,61,102,117,110,99,116,105,111,110,40,110,41,123,10,105,102,40,110,117,108,108,61,61,110,41,114,101,116,117,114,110,32,116,114,117,101,59,105,102,40,115,117,40,110,41,38,38,40,102,102,40,110,41,124,124,116,121,112,101,111,102,32,110,61,61,34,115,116,114,105,110,103,34,124,124,116,121,112,101,111,102,32,110,46,115,112,108,105,99,101,61,61,34,102,117,110,99,116,105,111,110,34,124,124,97,102,40,110,41,124,124,95,102,40,110,41,124,124,111,102,40,110,41,41,41,114,101,116,117,114,110,33,110,46,108,101,110,103,116,104,59,118,97,114,32,116,61,118,111,40,110,41,59,105,102,40,34,91,111,98,106,101,99,116,32,77,97,112,93,34,61,61,116,124,124,34,91,111,98,106,101,99,116,32,83,101,116,93,34,61,61,116,41,114,101,116,117,114,110,33,110,46,115,105,122,101,59,105,102,40,122,101,40,110,41,41,114,101,116,117,114,110,33,86,116,40,110,41,46,108,101,110,103,116,104,59,102,111,114,40,118,97,114,32,114,32,105,110,32,110,41,105,102,40,111,105,46,99,97,108,108,40,110,44,114,41,41,114,101,116,117,114,110,32,102,97,108,115,101,59,114,101,116,117,114,110,32,116,114,117,101,125,44,65,110,46,105,115,69,113,117,97,108,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,77,116,40,110,44,116,41,125,44,65,110,46,105,115,69,113,117,97,108,87,105,116,104,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,118,97,114,32,101,61,40,114,61,116,121,112,101,111,102,32,114,61,61,34,102,117,110,99,116,105,111,110,34,63,114,58,84,41,63,114,40,110,44,116,41,58,84,59,114,101,116,117,114,110,32,101,61,61,61,84,63,77,116,40,110,44,116,44,84,44,114,41,58,33,33,101,125,44,65,110,46,105,115,69,114,114,111,114,61,112,117,44,65,110,46,105,115,70,105,110,105,116,101,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,121,112,101,111,102,32,110,61,61,34,110,117,109,98,101,114,34,38,38,87,105,40,110,41,125,44,65,110,46,105,115,70,117,110,99,116,105,111,110,61,95,117,44,10,65,110,46,105,115,73,110,116,101,103,101,114,61,118,117,44,65,110,46,105,115,76,101,110,103,116,104,61,103,117,44,65,110,46,105,115,77,97,112,61,115,102,44,65,110,46,105,115,77,97,116,99,104,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,61,61,61,116,124,124,36,116,40,110,44,116,44,120,101,40,116,41,41,125,44,65,110,46,105,115,77,97,116,99,104,87,105,116,104,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,114,61,116,121,112,101,111,102,32,114,61,61,34,102,117,110,99,116,105,111,110,34,63,114,58,84,44,36,116,40,110,44,116,44,120,101,40,116,41,44,114,41,125,44,65,110,46,105,115,78,97,78,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,98,117,40,110,41,38,38,110,33,61,43,110,125,44,65,110,46,105,115,78,97,116,105,118,101,61,102,117,110,99,116,105,111,110,40,110,41,123,105,102,40,103,111,40,110,41,41,116,104,114,111,119,32,110,101,119,32,72,117,40,34,85,110,115,117,112,112,111,114,116,101,100,32,99,111,114,101,45,106,115,32,117,115,101,46,32,84,114,121,32,104,116,116,112,115,58,47,47,110,112,109,115,46,105,111,47,115,101,97,114,99,104,63,113,61,112,111,110,121,102,105,108,108,46,34,41,59,114,101,116,117,114,110,32,70,116,40,110,41,125,44,65,110,46,105,115,78,105,108,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,110,125,44,65,110,46,105,115,78,117,108,108,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,61,110,125,44,65,110,46,105,115,78,117,109,98,101,114,61,98,117,44,65,110,46,105,115,79,98,106,101,99,116,61,100,117,44,65,110,46,105,115,79,98,106,101,99,116,76,105,107,101,61,121,117,44,65,110,46,105,115,80,108,97,105,110,79,98,106,101,99,116,61,120,117,44,65,110,46,105,115,82,101,103,69,120,112,61,104,102,44,10,65,110,46,105,115,83,97,102,101,73,110,116,101,103,101,114,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,118,117,40,110,41,38,38,45,57,48,48,55,49,57,57,50,53,52,55,52,48,57,57,49,60,61,110,38,38,57,48,48,55,49,57,57,50,53,52,55,52,48,57,57,49,62,61,110,125,44,65,110,46,105,115,83,101,116,61,112,102,44,65,110,46,105,115,83,116,114,105,110,103,61,106,117,44,65,110,46,105,115,83,121,109,98,111,108,61,119,117,44,65,110,46,105,115,84,121,112,101,100,65,114,114,97,121,61,95,102,44,65,110,46,105,115,85,110,100,101,102,105,110,101,100,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,110,61,61,61,84,125,44,65,110,46,105,115,87,101,97,107,77,97,112,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,121,117,40,110,41,38,38,34,91,111,98,106,101,99,116,32,87,101,97,107,77,97,112,93,34,61,61,118,111,40,110,41,125,44,65,110,46,105,115,87,101,97,107,83,101,116,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,121,117,40,110,41,38,38,34,91,111,98,106,101,99,116,32,87,101,97,107,83,101,116,93,34,61,61,79,116,40,110,41,125,44,65,110,46,106,111,105,110,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,110,63,34,34,58,66,105,46,99,97,108,108,40,110,44,116,41,125,44,65,110,46,107,101,98,97,98,67,97,115,101,61,76,102,44,65,110,46,108,97,115,116,61,86,101,44,65,110,46,108,97,115,116,73,110,100,101,120,79,102,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,118,97,114,32,101,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,105,102,40,33,101,41,114,101,116,117,114,110,45,49,59,118,97,114,32,117,61,101,59,105,102,40,114,33,61,61,84,38,38,40,117,61,69,117,40,114,41,44,117,61,48,62,117,63,85,105,40,101,43,117,44,48,41,58,67,105,40,117,44,101,45,49,41,41,44,10,116,61,61,61,116,41,123,102,111,114,40,114,61,117,43,49,59,114,45,45,38,38,110,91,114,93,33,61,61,116,59,41,59,110,61,114,125,101,108,115,101,32,110,61,95,40,110,44,100,44,117,44,116,114,117,101,41,59,114,101,116,117,114,110,32,110,125,44,65,110,46,108,111,119,101,114,67,97,115,101,61,85,102,44,65,110,46,108,111,119,101,114,70,105,114,115,116,61,67,102,44,65,110,46,108,116,61,118,102,44,65,110,46,108,116,101,61,103,102,44,65,110,46,109,97,120,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,110,38,38,110,46,108,101,110,103,116,104,63,120,116,40,110,44,36,117,44,73,116,41,58,84,125,44,65,110,46,109,97,120,66,121,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,38,38,110,46,108,101,110,103,116,104,63,120,116,40,110,44,121,101,40,116,44,50,41,44,73,116,41,58,84,125,44,65,110,46,109,101,97,110,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,121,40,110,44,36,117,41,125,44,65,110,46,109,101,97,110,66,121,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,121,40,110,44,121,101,40,116,44,50,41,41,125,44,65,110,46,109,105,110,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,110,38,38,110,46,108,101,110,103,116,104,63,120,116,40,110,44,36,117,44,75,116,41,58,84,125,44,65,110,46,109,105,110,66,121,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,38,38,110,46,108,101,110,103,116,104,63,120,116,40,110,44,121,101,40,116,44,50,41,44,75,116,41,58,84,125,44,65,110,46,115,116,117,98,65,114,114,97,121,61,113,117,44,65,110,46,115,116,117,98,70,97,108,115,101,61,86,117,44,65,110,46,115,116,117,98,79,98,106,101,99,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,125,125,44,65,110,46,115,116,117,98,83,116,114,105,110,103,61,102,117,110,99,116,105,111,110,40,41,123,10,114,101,116,117,114,110,34,34,125,44,65,110,46,115,116,117,98,84,114,117,101,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,114,117,101,125,44,65,110,46,109,117,108,116,105,112,108,121,61,114,99,44,65,110,46,110,116,104,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,38,38,110,46,108,101,110,103,116,104,63,81,116,40,110,44,69,117,40,116,41,41,58,84,125,44,65,110,46,110,111,67,111,110,102,108,105,99,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,36,110,46,95,61,61,61,116,104,105,115,38,38,40,36,110,46,95,61,115,105,41,44,116,104,105,115,125,44,65,110,46,110,111,111,112,61,80,117,44,65,110,46,110,111,119,61,71,111,44,65,110,46,112,97,100,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,110,61,73,117,40,110,41,59,118,97,114,32,101,61,40,116,61,69,117,40,116,41,41,63,68,40,110,41,58,48,59,114,101,116,117,114,110,33,116,124,124,101,62,61,116,63,110,58,40,116,61,40,116,45,101,41,47,50,44,110,101,40,73,105,40,116,41,44,114,41,43,110,43,110,101,40,79,105,40,116,41,44,114,41,41,125,44,65,110,46,112,97,100,69,110,100,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,110,61,73,117,40,110,41,59,118,97,114,32,101,61,40,116,61,69,117,40,116,41,41,63,68,40,110,41,58,48,59,114,101,116,117,114,110,32,116,38,38,101,60,116,63,110,43,110,101,40,116,45,101,44,114,41,58,110,125,44,65,110,46,112,97,100,83,116,97,114,116,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,110,61,73,117,40,110,41,59,118,97,114,32,101,61,40,116,61,69,117,40,116,41,41,63,68,40,110,41,58,48,59,114,101,116,117,114,110,32,116,38,38,101,60,116,63,110,101,40,116,45,101,44,114,41,43,110,58,110,125,44,65,110,46,112,97,114,115,101,73,110,116,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,10,114,101,116,117,114,110,32,114,124,124,110,117,108,108,61,61,116,63,116,61,48,58,116,38,38,40,116,61,43,116,41,44,77,105,40,73,117,40,110,41,46,114,101,112,108,97,99,101,40,111,110,44,34,34,41,44,116,124,124,48,41,125,44,65,110,46,114,97,110,100,111,109,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,105,102,40,114,38,38,116,121,112,101,111,102,32,114,33,61,34,98,111,111,108,101,97,110,34,38,38,79,101,40,110,44,116,44,114,41,38,38,40,116,61,114,61,84,41,44,114,61,61,61,84,38,38,40,116,121,112,101,111,102,32,116,61,61,34,98,111,111,108,101,97,110,34,63,40,114,61,116,44,116,61,84,41,58,116,121,112,101,111,102,32,110,61,61,34,98,111,111,108,101,97,110,34,38,38,40,114,61,110,44,110,61,84,41,41,44,110,61,61,61,84,38,38,116,61,61,61,84,63,40,110,61,48,44,116,61,49,41,58,40,110,61,65,117,40,110,41,44,116,61,61,61,84,63,40,116,61,110,44,110,61,48,41,58,116,61,65,117,40,116,41,41,44,110,62,116,41,123,118,97,114,32,101,61,110,59,110,61,116,44,116,61,101,125,114,101,116,117,114,110,32,114,124,124,110,37,49,124,124,116,37,49,63,40,114,61,84,105,40,41,44,67,105,40,110,43,114,42,40,116,45,110,43,67,110,40,34,49,101,45,34,43,40,40,114,43,34,34,41,46,108,101,110,103,116,104,45,49,41,41,41,44,116,41,41,58,105,114,40,110,44,116,41,125,44,65,110,46,114,101,100,117,99,101,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,118,97,114,32,101,61,102,102,40,110,41,63,108,58,106,44,117,61,51,62,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,101,40,110,44,121,101,40,116,44,52,41,44,114,44,117,44,117,111,41,125,44,65,110,46,114,101,100,117,99,101,82,105,103,104,116,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,118,97,114,32,101,61,102,102,40,110,41,63,115,58,106,44,117,61,51,62,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,10,114,101,116,117,114,110,32,101,40,110,44,121,101,40,116,44,52,41,44,114,44,117,44,105,111,41,125,44,65,110,46,114,101,112,101,97,116,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,116,61,40,114,63,79,101,40,110,44,116,44,114,41,58,116,61,61,61,84,41,63,49,58,69,117,40,116,41,44,111,114,40,73,117,40,110,41,44,116,41,125,44,65,110,46,114,101,112,108,97,99,101,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,110,61,97,114,103,117,109,101,110,116,115,44,116,61,73,117,40,110,91,48,93,41,59,114,101,116,117,114,110,32,51,62,110,46,108,101,110,103,116,104,63,116,58,116,46,114,101,112,108,97,99,101,40,110,91,49,93,44,110,91,50,93,41,125,44,65,110,46,114,101,115,117,108,116,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,116,61,83,114,40,116,44,110,41,59,118,97,114,32,101,61,45,49,44,117,61,116,46,108,101,110,103,116,104,59,102,111,114,40,117,124,124,40,117,61,49,44,110,61,84,41,59,43,43,101,60,117,59,41,123,118,97,114,32,105,61,110,117,108,108,61,61,110,63,84,58,110,91,77,101,40,116,91,101,93,41,93,59,105,61,61,61,84,38,38,40,101,61,117,44,105,61,114,41,44,110,61,95,117,40,105,41,63,105,46,99,97,108,108,40,110,41,58,105,125,114,101,116,117,114,110,32,110,125,44,65,110,46,114,111,117,110,100,61,101,99,44,65,110,46,114,117,110,73,110,67,111,110,116,101,120,116,61,120,44,65,110,46,115,97,109,112,108,101,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,40,102,102,40,110,41,63,81,110,58,99,114,41,40,110,41,125,44,65,110,46,115,105,122,101,61,102,117,110,99,116,105,111,110,40,110,41,123,105,102,40,110,117,108,108,61,61,110,41,114,101,116,117,114,110,32,48,59,105,102,40,115,117,40,110,41,41,114,101,116,117,114,110,32,106,117,40,110,41,63,68,40,110,41,58,110,46,108,101,110,103,116,104,59,10,118,97,114,32,116,61,118,111,40,110,41,59,114,101,116,117,114,110,34,91,111,98,106,101,99,116,32,77,97,112,93,34,61,61,116,124,124,34,91,111,98,106,101,99,116,32,83,101,116,93,34,61,61,116,63,110,46,115,105,122,101,58,86,116,40,110,41,46,108,101,110,103,116,104,125,44,65,110,46,115,110,97,107,101,67,97,115,101,61,68,102,44,65,110,46,115,111,109,101,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,118,97,114,32,101,61,102,102,40,110,41,63,104,58,112,114,59,114,101,116,117,114,110,32,114,38,38,79,101,40,110,44,116,44,114,41,38,38,40,116,61,84,41,44,101,40,110,44,121,101,40,116,44,51,41,41,125,44,65,110,46,115,111,114,116,101,100,73,110,100,101,120,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,95,114,40,110,44,116,41,125,44,65,110,46,115,111,114,116,101,100,73,110,100,101,120,66,121,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,118,114,40,110,44,116,44,121,101,40,114,44,50,41,41,125,44,65,110,46,115,111,114,116,101,100,73,110,100,101,120,79,102,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,118,97,114,32,114,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,105,102,40,114,41,123,118,97,114,32,101,61,95,114,40,110,44,116,41,59,105,102,40,101,60,114,38,38,108,117,40,110,91,101,93,44,116,41,41,114,101,116,117,114,110,32,101,125,114,101,116,117,114,110,45,49,125,44,65,110,46,115,111,114,116,101,100,76,97,115,116,73,110,100,101,120,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,95,114,40,110,44,116,44,116,114,117,101,41,125,44,65,110,46,115,111,114,116,101,100,76,97,115,116,73,110,100,101,120,66,121,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,118,114,40,110,44,116,44,121,101,40,114,44,50,41,44,116,114,117,101,41,59,10,125,44,65,110,46,115,111,114,116,101,100,76,97,115,116,73,110,100,101,120,79,102,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,105,102,40,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,41,123,118,97,114,32,114,61,95,114,40,110,44,116,44,116,114,117,101,41,45,49,59,105,102,40,108,117,40,110,91,114,93,44,116,41,41,114,101,116,117,114,110,32,114,125,114,101,116,117,114,110,45,49,125,44,65,110,46,115,116,97,114,116,67,97,115,101,61,77,102,44,65,110,46,115,116,97,114,116,115,87,105,116,104,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,110,61,73,117,40,110,41,44,114,61,110,117,108,108,61,61,114,63,48,58,112,116,40,69,117,40,114,41,44,48,44,110,46,108,101,110,103,116,104,41,44,116,61,121,114,40,116,41,44,110,46,115,108,105,99,101,40,114,44,114,43,116,46,108,101,110,103,116,104,41,61,61,116,125,44,65,110,46,115,117,98,116,114,97,99,116,61,117,99,44,65,110,46,115,117,109,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,110,38,38,110,46,108,101,110,103,116,104,63,109,40,110,44,36,117,41,58,48,125,44,65,110,46,115,117,109,66,121,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,38,38,110,46,108,101,110,103,116,104,63,109,40,110,44,121,101,40,116,44,50,41,41,58,48,125,44,65,110,46,116,101,109,112,108,97,116,101,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,118,97,114,32,101,61,65,110,46,116,101,109,112,108,97,116,101,83,101,116,116,105,110,103,115,59,114,38,38,79,101,40,110,44,116,44,114,41,38,38,40,116,61,84,41,44,110,61,73,117,40,110,41,44,116,61,98,102,40,123,125,44,116,44,101,44,99,101,41,44,114,61,98,102,40,123,125,44,116,46,105,109,112,111,114,116,115,44,101,46,105,109,112,111,114,116,115,44,99,101,41,59,118,97,114,32,117,44,105,44,111,61,87,117,40,114,41,44,102,61,83,40,114,44,111,41,44,99,61,48,59,10,114,61,116,46,105,110,116,101,114,112,111,108,97,116,101,124,124,106,110,59,118,97,114,32,97,61,34,95,95,112,43,61,39,34,59,114,61,88,117,40,40,116,46,101,115,99,97,112,101,124,124,106,110,41,46,115,111,117,114,99,101,43,34,124,34,43,114,46,115,111,117,114,99,101,43,34,124,34,43,40,114,61,61,61,81,63,112,110,58,106,110,41,46,115,111,117,114,99,101,43,34,124,34,43,40,116,46,101,118,97,108,117,97,116,101,124,124,106,110,41,46,115,111,117,114,99,101,43,34,124,36,34,44,34,103,34,41,59,118,97,114,32,108,61,111,105,46,99,97,108,108,40,116,44,34,115,111,117,114,99,101,85,82,76,34,41,63,34,47,47,35,32,115,111,117,114,99,101,85,82,76,61,34,43,40,116,46,115,111,117,114,99,101,85,82,76,43,34,34,41,46,114,101,112,108,97,99,101,40,47,91,92,114,92,110,93,47,103,44,34,32,34,41,43,34,92,110,34,58,34,34,59,105,102,40,110,46,114,101,112,108,97,99,101,40,114,44,102,117,110,99,116,105,111,110,40,116,44,114,44,101,44,111,44,102,44,108,41,123,114,101,116,117,114,110,32,101,124,124,40,101,61,111,41,44,97,43,61,110,46,115,108,105,99,101,40,99,44,108,41,46,114,101,112,108,97,99,101,40,119,110,44,122,41,44,114,38,38,40,117,61,116,114,117,101,44,97,43,61,34,39,43,95,95,101,40,34,43,114,43,34,41,43,39,34,41,44,102,38,38,40,105,61,116,114,117,101,44,97,43,61,34,39,59,34,43,102,43,34,59,92,110,95,95,112,43,61,39,34,41,44,101,38,38,40,97,43,61,34,39,43,40,40,95,95,116,61,40,34,43,101,43,34,41,41,61,61,110,117,108,108,63,39,39,58,95,95,116,41,43,39,34,41,44,99,61,108,43,116,46,108,101,110,103,116,104,44,116,125,41,44,97,43,61,34,39,59,34,44,40,116,61,111,105,46,99,97,108,108,40,116,44,34,118,97,114,105,97,98,108,101,34,41,38,38,116,46,118,97,114,105,97,98,108,101,41,124,124,40,97,61,34,119,105,116,104,40,111,98,106,41,123,34,43,97,43,34,125,34,41,44,10,97,61,40,105,63,97,46,114,101,112,108,97,99,101,40,80,44,34,34,41,58,97,41,46,114,101,112,108,97,99,101,40,90,44,34,36,49,34,41,46,114,101,112,108,97,99,101,40,113,44,34,36,49,59,34,41,44,97,61,34,102,117,110,99,116,105,111,110,40,34,43,40,116,124,124,34,111,98,106,34,41,43,34,41,123,34,43,40,116,63,34,34,58,34,111,98,106,124,124,40,111,98,106,61,123,125,41,59,34,41,43,34,118,97,114,32,95,95,116,44,95,95,112,61,39,39,34,43,40,117,63,34,44,95,95,101,61,95,46,101,115,99,97,112,101,34,58,34,34,41,43,40,105,63,34,44,95,95,106,61,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,106,111,105,110,59,102,117,110,99,116,105,111,110,32,112,114,105,110,116,40,41,123,95,95,112,43,61,95,95,106,46,99,97,108,108,40,97,114,103,117,109,101,110,116,115,44,39,39,41,125,34,58,34,59,34,41,43,97,43,34,114,101,116,117,114,110,32,95,95,112,125,34,44,116,61,70,102,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,74,117,40,111,44,108,43,34,114,101,116,117,114,110,32,34,43,97,41,46,97,112,112,108,121,40,84,44,102,41,125,41,44,116,46,115,111,117,114,99,101,61,97,44,112,117,40,116,41,41,116,104,114,111,119,32,116,59,114,101,116,117,114,110,32,116,125,44,65,110,46,116,105,109,101,115,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,105,102,40,110,61,69,117,40,110,41,44,49,62,110,124,124,57,48,48,55,49,57,57,50,53,52,55,52,48,57,57,49,60,110,41,114,101,116,117,114,110,91,93,59,118,97,114,32,114,61,52,50,57,52,57,54,55,50,57,53,44,101,61,67,105,40,110,44,52,50,57,52,57,54,55,50,57,53,41,59,102,111,114,40,116,61,121,101,40,116,41,44,110,45,61,52,50,57,52,57,54,55,50,57,53,44,101,61,65,40,101,44,116,41,59,43,43,114,60,110,59,41,116,40,114,41,59,114,101,116,117,114,110,32,101,125,44,65,110,46,116,111,70,105,110,105,116,101,61,65,117,44,10,65,110,46,116,111,73,110,116,101,103,101,114,61,69,117,44,65,110,46,116,111,76,101,110,103,116,104,61,107,117,44,65,110,46,116,111,76,111,119,101,114,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,73,117,40,110,41,46,116,111,76,111,119,101,114,67,97,115,101,40,41,125,44,65,110,46,116,111,78,117,109,98,101,114,61,83,117,44,65,110,46,116,111,83,97,102,101,73,110,116,101,103,101,114,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,110,63,112,116,40,69,117,40,110,41,44,45,57,48,48,55,49,57,57,50,53,52,55,52,48,57,57,49,44,57,48,48,55,49,57,57,50,53,52,55,52,48,57,57,49,41,58,48,61,61,61,110,63,110,58,48,125,44,65,110,46,116,111,83,116,114,105,110,103,61,73,117,44,65,110,46,116,111,85,112,112,101,114,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,73,117,40,110,41,46,116,111,85,112,112,101,114,67,97,115,101,40,41,125,44,65,110,46,116,114,105,109,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,40,110,61,73,117,40,110,41,41,38,38,40,114,124,124,116,61,61,61,84,41,63,110,46,114,101,112,108,97,99,101,40,117,110,44,34,34,41,58,110,38,38,40,116,61,121,114,40,116,41,41,63,40,110,61,77,40,110,41,44,114,61,77,40,116,41,44,116,61,73,40,110,44,114,41,44,114,61,82,40,110,44,114,41,43,49,44,79,114,40,110,44,116,44,114,41,46,106,111,105,110,40,34,34,41,41,58,110,125,44,65,110,46,116,114,105,109,69,110,100,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,40,110,61,73,117,40,110,41,41,38,38,40,114,124,124,116,61,61,61,84,41,63,110,46,114,101,112,108,97,99,101,40,102,110,44,34,34,41,58,110,38,38,40,116,61,121,114,40,116,41,41,63,40,110,61,77,40,110,41,44,116,61,82,40,110,44,77,40,116,41,41,43,49,44,10,79,114,40,110,44,48,44,116,41,46,106,111,105,110,40,34,34,41,41,58,110,125,44,65,110,46,116,114,105,109,83,116,97,114,116,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,40,110,61,73,117,40,110,41,41,38,38,40,114,124,124,116,61,61,61,84,41,63,110,46,114,101,112,108,97,99,101,40,111,110,44,34,34,41,58,110,38,38,40,116,61,121,114,40,116,41,41,63,40,110,61,77,40,110,41,44,116,61,73,40,110,44,77,40,116,41,41,44,79,114,40,110,44,116,41,46,106,111,105,110,40,34,34,41,41,58,110,125,44,65,110,46,116,114,117,110,99,97,116,101,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,118,97,114,32,114,61,51,48,44,101,61,34,46,46,46,34,59,105,102,40,100,117,40,116,41,41,118,97,114,32,117,61,34,115,101,112,97,114,97,116,111,114,34,105,110,32,116,63,116,46,115,101,112,97,114,97,116,111,114,58,117,44,114,61,34,108,101,110,103,116,104,34,105,110,32,116,63,69,117,40,116,46,108,101,110,103,116,104,41,58,114,44,101,61,34,111,109,105,115,115,105,111,110,34,105,110,32,116,63,121,114,40,116,46,111,109,105,115,115,105,111,110,41,58,101,59,110,61,73,117,40,110,41,59,118,97,114,32,105,61,110,46,108,101,110,103,116,104,59,105,102,40,82,110,46,116,101,115,116,40,110,41,41,118,97,114,32,111,61,77,40,110,41,44,105,61,111,46,108,101,110,103,116,104,59,105,102,40,114,62,61,105,41,114,101,116,117,114,110,32,110,59,105,102,40,105,61,114,45,68,40,101,41,44,49,62,105,41,114,101,116,117,114,110,32,101,59,105,102,40,114,61,111,63,79,114,40,111,44,48,44,105,41,46,106,111,105,110,40,34,34,41,58,110,46,115,108,105,99,101,40,48,44,105,41,44,117,61,61,61,84,41,114,101,116,117,114,110,32,114,43,101,59,105,102,40,111,38,38,40,105,43,61,114,46,108,101,110,103,116,104,45,105,41,44,104,102,40,117,41,41,123,105,102,40,110,46,115,108,105,99,101,40,105,41,46,115,101,97,114,99,104,40,117,41,41,123,10,118,97,114,32,102,61,114,59,102,111,114,40,117,46,103,108,111,98,97,108,124,124,40,117,61,88,117,40,117,46,115,111,117,114,99,101,44,73,117,40,95,110,46,101,120,101,99,40,117,41,41,43,34,103,34,41,41,44,117,46,108,97,115,116,73,110,100,101,120,61,48,59,111,61,117,46,101,120,101,99,40,102,41,59,41,118,97,114,32,99,61,111,46,105,110,100,101,120,59,114,61,114,46,115,108,105,99,101,40,48,44,99,61,61,61,84,63,105,58,99,41,125,125,101,108,115,101,32,110,46,105,110,100,101,120,79,102,40,121,114,40,117,41,44,105,41,33,61,105,38,38,40,117,61,114,46,108,97,115,116,73,110,100,101,120,79,102,40,117,41,44,45,49,60,117,38,38,40,114,61,114,46,115,108,105,99,101,40,48,44,117,41,41,41,59,114,101,116,117,114,110,32,114,43,101,125,44,65,110,46,117,110,101,115,99,97,112,101,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,40,110,61,73,117,40,110,41,41,38,38,71,46,116,101,115,116,40,110,41,63,110,46,114,101,112,108,97,99,101,40,86,44,116,116,41,58,110,125,44,65,110,46,117,110,105,113,117,101,73,100,61,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,116,61,43,43,102,105,59,114,101,116,117,114,110,32,73,117,40,110,41,43,116,125,44,65,110,46,117,112,112,101,114,67,97,115,101,61,84,102,44,65,110,46,117,112,112,101,114,70,105,114,115,116,61,36,102,44,65,110,46,101,97,99,104,61,110,117,44,65,110,46,101,97,99,104,82,105,103,104,116,61,116,117,44,65,110,46,102,105,114,115,116,61,113,101,44,78,117,40,65,110,44,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,110,61,123,125,59,114,101,116,117,114,110,32,109,116,40,65,110,44,102,117,110,99,116,105,111,110,40,116,44,114,41,123,111,105,46,99,97,108,108,40,65,110,46,112,114,111,116,111,116,121,112,101,44,114,41,124,124,40,110,91,114,93,61,116,41,125,41,44,110,125,40,41,44,123,99,104,97,105,110,58,102,97,108,115,101,10,125,41,44,65,110,46,86,69,82,83,73,79,78,61,34,52,46,49,55,46,49,53,34,44,114,40,34,98,105,110,100,32,98,105,110,100,75,101,121,32,99,117,114,114,121,32,99,117,114,114,121,82,105,103,104,116,32,112,97,114,116,105,97,108,32,112,97,114,116,105,97,108,82,105,103,104,116,34,46,115,112,108,105,116,40,34,32,34,41,44,102,117,110,99,116,105,111,110,40,110,41,123,65,110,91,110,93,46,112,108,97,99,101,104,111,108,100,101,114,61,65,110,125,41,44,114,40,91,34,100,114,111,112,34,44,34,116,97,107,101,34,93,44,102,117,110,99,116,105,111,110,40,110,44,116,41,123,85,110,46,112,114,111,116,111,116,121,112,101,91,110,93,61,102,117,110,99,116,105,111,110,40,114,41,123,114,61,114,61,61,61,84,63,49,58,85,105,40,69,117,40,114,41,44,48,41,59,118,97,114,32,101,61,116,104,105,115,46,95,95,102,105,108,116,101,114,101,100,95,95,38,38,33,116,63,110,101,119,32,85,110,40,116,104,105,115,41,58,116,104,105,115,46,99,108,111,110,101,40,41,59,114,101,116,117,114,110,32,101,46,95,95,102,105,108,116,101,114,101,100,95,95,63,101,46,95,95,116,97,107,101,67,111,117,110,116,95,95,61,67,105,40,114,44,101,46,95,95,116,97,107,101,67,111,117,110,116,95,95,41,58,101,46,95,95,118,105,101,119,115,95,95,46,112,117,115,104,40,123,115,105,122,101,58,67,105,40,114,44,52,50,57,52,57,54,55,50,57,53,41,44,116,121,112,101,58,110,43,40,48,62,101,46,95,95,100,105,114,95,95,63,34,82,105,103,104,116,34,58,34,34,41,125,41,44,101,125,44,85,110,46,112,114,111,116,111,116,121,112,101,91,110,43,34,82,105,103,104,116,34,93,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,104,105,115,46,114,101,118,101,114,115,101,40,41,91,110,93,40,116,41,46,114,101,118,101,114,115,101,40,41,125,125,41,44,114,40,91,34,102,105,108,116,101,114,34,44,34,109,97,112,34,44,34,116,97,107,101,87,104,105,108,101,34,93,44,102,117,110,99,116,105,111,110,40,110,44,116,41,123,10,118,97,114,32,114,61,116,43,49,44,101,61,49,61,61,114,124,124,51,61,61,114,59,85,110,46,112,114,111,116,111,116,121,112,101,91,110,93,61,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,116,61,116,104,105,115,46,99,108,111,110,101,40,41,59,114,101,116,117,114,110,32,116,46,95,95,105,116,101,114,97,116,101,101,115,95,95,46,112,117,115,104,40,123,105,116,101,114,97,116,101,101,58,121,101,40,110,44,51,41,44,116,121,112,101,58,114,125,41,44,116,46,95,95,102,105,108,116,101,114,101,100,95,95,61,116,46,95,95,102,105,108,116,101,114,101,100,95,95,124,124,101,44,116,125,125,41,44,114,40,91,34,104,101,97,100,34,44,34,108,97,115,116,34,93,44,102,117,110,99,116,105,111,110,40,110,44,116,41,123,118,97,114,32,114,61,34,116,97,107,101,34,43,40,116,63,34,82,105,103,104,116,34,58,34,34,41,59,85,110,46,112,114,111,116,111,116,121,112,101,91,110,93,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,91,114,93,40,49,41,46,118,97,108,117,101,40,41,91,48,93,125,125,41,44,114,40,91,34,105,110,105,116,105,97,108,34,44,34,116,97,105,108,34,93,44,102,117,110,99,116,105,111,110,40,110,44,116,41,123,118,97,114,32,114,61,34,100,114,111,112,34,43,40,116,63,34,34,58,34,82,105,103,104,116,34,41,59,85,110,46,112,114,111,116,111,116,121,112,101,91,110,93,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,95,102,105,108,116,101,114,101,100,95,95,63,110,101,119,32,85,110,40,116,104,105,115,41,58,116,104,105,115,91,114,93,40,49,41,125,125,41,44,85,110,46,112,114,111,116,111,116,121,112,101,46,99,111,109,112,97,99,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,102,105,108,116,101,114,40,36,117,41,125,44,85,110,46,112,114,111,116,111,116,121,112,101,46,102,105,110,100,61,102,117,110,99,116,105,111,110,40,110,41,123,10,114,101,116,117,114,110,32,116,104,105,115,46,102,105,108,116,101,114,40,110,41,46,104,101,97,100,40,41,125,44,85,110,46,112,114,111,116,111,116,121,112,101,46,102,105,110,100,76,97,115,116,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,104,105,115,46,114,101,118,101,114,115,101,40,41,46,102,105,110,100,40,110,41,125,44,85,110,46,112,114,111,116,111,116,121,112,101,46,105,110,118,111,107,101,77,97,112,61,102,114,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,116,121,112,101,111,102,32,110,61,61,34,102,117,110,99,116,105,111,110,34,63,110,101,119,32,85,110,40,116,104,105,115,41,58,116,104,105,115,46,109,97,112,40,102,117,110,99,116,105,111,110,40,114,41,123,114,101,116,117,114,110,32,76,116,40,114,44,110,44,116,41,125,41,125,41,44,85,110,46,112,114,111,116,111,116,121,112,101,46,114,101,106,101,99,116,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,104,105,115,46,102,105,108,116,101,114,40,97,117,40,121,101,40,110,41,41,41,125,44,85,110,46,112,114,111,116,111,116,121,112,101,46,115,108,105,99,101,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,110,61,69,117,40,110,41,59,118,97,114,32,114,61,116,104,105,115,59,114,101,116,117,114,110,32,114,46,95,95,102,105,108,116,101,114,101,100,95,95,38,38,40,48,60,110,124,124,48,62,116,41,63,110,101,119,32,85,110,40,114,41,58,40,48,62,110,63,114,61,114,46,116,97,107,101,82,105,103,104,116,40,45,110,41,58,110,38,38,40,114,61,114,46,100,114,111,112,40,110,41,41,44,116,33,61,61,84,38,38,40,116,61,69,117,40,116,41,44,114,61,48,62,116,63,114,46,100,114,111,112,82,105,103,104,116,40,45,116,41,58,114,46,116,97,107,101,40,116,45,110,41,41,44,114,41,125,44,85,110,46,112,114,111,116,111,116,121,112,101,46,116,97,107,101,82,105,103,104,116,87,104,105,108,101,61,102,117,110,99,116,105,111,110,40,110,41,123,10,114,101,116,117,114,110,32,116,104,105,115,46,114,101,118,101,114,115,101,40,41,46,116,97,107,101,87,104,105,108,101,40,110,41,46,114,101,118,101,114,115,101,40,41,125,44,85,110,46,112,114,111,116,111,116,121,112,101,46,116,111,65,114,114,97,121,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,116,97,107,101,40,52,50,57,52,57,54,55,50,57,53,41,125,44,109,116,40,85,110,46,112,114,111,116,111,116,121,112,101,44,102,117,110,99,116,105,111,110,40,110,44,116,41,123,118,97,114,32,114,61,47,94,40,63,58,102,105,108,116,101,114,124,102,105,110,100,124,109,97,112,124,114,101,106,101,99,116,41,124,87,104,105,108,101,36,47,46,116,101,115,116,40,116,41,44,101,61,47,94,40,63,58,104,101,97,100,124,108,97,115,116,41,36,47,46,116,101,115,116,40,116,41,44,117,61,65,110,91,101,63,34,116,97,107,101,34,43,40,34,108,97,115,116,34,61,61,116,63,34,82,105,103,104,116,34,58,34,34,41,58,116,93,44,105,61,101,124,124,47,94,102,105,110,100,47,46,116,101,115,116,40,116,41,59,117,38,38,40,65,110,46,112,114,111,116,111,116,121,112,101,91,116,93,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,116,40,110,41,123,114,101,116,117,114,110,32,110,61,117,46,97,112,112,108,121,40,65,110,44,97,40,91,110,93,44,102,41,41,44,101,38,38,104,63,110,91,48,93,58,110,125,118,97,114,32,111,61,116,104,105,115,46,95,95,119,114,97,112,112,101,100,95,95,44,102,61,101,63,91,49,93,58,97,114,103,117,109,101,110,116,115,44,99,61,111,32,105,110,115,116,97,110,99,101,111,102,32,85,110,44,108,61,102,91,48,93,44,115,61,99,124,124,102,102,40,111,41,59,115,38,38,114,38,38,116,121,112,101,111,102,32,108,61,61,34,102,117,110,99,116,105,111,110,34,38,38,49,33,61,108,46,108,101,110,103,116,104,38,38,40,99,61,115,61,102,97,108,115,101,41,59,118,97,114,32,104,61,116,104,105,115,46,95,95,99,104,97,105,110,95,95,44,112,61,33,33,116,104,105,115,46,95,95,97,99,116,105,111,110,115,95,95,46,108,101,110,103,116,104,44,108,61,105,38,38,33,104,44,99,61,99,38,38,33,112,59,10,114,101,116,117,114,110,33,105,38,38,115,63,40,111,61,99,63,111,58,110,101,119,32,85,110,40,116,104,105,115,41,44,111,61,110,46,97,112,112,108,121,40,111,44,102,41,44,111,46,95,95,97,99,116,105,111,110,115,95,95,46,112,117,115,104,40,123,102,117,110,99,58,81,101,44,97,114,103,115,58,91,116,93,44,116,104,105,115,65,114,103,58,84,125,41,44,110,101,119,32,79,110,40,111,44,104,41,41,58,108,38,38,99,63,110,46,97,112,112,108,121,40,116,104,105,115,44,102,41,58,40,111,61,116,104,105,115,46,116,104,114,117,40,116,41,44,108,63,101,63,111,46,118,97,108,117,101,40,41,91,48,93,58,111,46,118,97,108,117,101,40,41,58,111,41,125,41,125,41,44,114,40,34,112,111,112,32,112,117,115,104,32,115,104,105,102,116,32,115,111,114,116,32,115,112,108,105,99,101,32,117,110,115,104,105,102,116,34,46,115,112,108,105,116,40,34,32,34,41,44,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,116,61,114,105,91,110,93,44,114,61,47,94,40,63,58,112,117,115,104,124,115,111,114,116,124,117,110,115,104,105,102,116,41,36,47,46,116,101,115,116,40,110,41,63,34,116,97,112,34,58,34,116,104,114,117,34,44,101,61,47,94,40,63,58,112,111,112,124,115,104,105,102,116,41,36,47,46,116,101,115,116,40,110,41,59,65,110,46,112,114,111,116,111,116,121,112,101,91,110,93,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,110,61,97,114,103,117,109,101,110,116,115,59,105,102,40,101,38,38,33,116,104,105,115,46,95,95,99,104,97,105,110,95,95,41,123,118,97,114,32,117,61,116,104,105,115,46,118,97,108,117,101,40,41,59,114,101,116,117,114,110,32,116,46,97,112,112,108,121,40,102,102,40,117,41,63,117,58,91,93,44,110,41,125,114,101,116,117,114,110,32,116,104,105,115,91,114,93,40,102,117,110,99,116,105,111,110,40,114,41,123,114,101,116,117,114,110,32,116,46,97,112,112,108,121,40,102,102,40,114,41,63,114,58,91,93,44,110,41,125,41,59,10,125,125,41,44,109,116,40,85,110,46,112,114,111,116,111,116,121,112,101,44,102,117,110,99,116,105,111,110,40,110,44,116,41,123,118,97,114,32,114,61,65,110,91,116,93,59,105,102,40,114,41,123,118,97,114,32,101,61,114,46,110,97,109,101,43,34,34,59,111,105,46,99,97,108,108,40,71,105,44,101,41,124,124,40,71,105,91,101,93,61,91,93,41,44,71,105,91,101,93,46,112,117,115,104,40,123,110,97,109,101,58,116,44,102,117,110,99,58,114,125,41,125,125,41,44,71,105,91,74,114,40,84,44,50,41,46,110,97,109,101,93,61,91,123,110,97,109,101,58,34,119,114,97,112,112,101,114,34,44,102,117,110,99,58,84,125,93,44,85,110,46,112,114,111,116,111,116,121,112,101,46,99,108,111,110,101,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,110,61,110,101,119,32,85,110,40,116,104,105,115,46,95,95,119,114,97,112,112,101,100,95,95,41,59,114,101,116,117,114,110,32,110,46,95,95,97,99,116,105,111,110,115,95,95,61,85,114,40,116,104,105,115,46,95,95,97,99,116,105,111,110,115,95,95,41,44,110,46,95,95,100,105,114,95,95,61,116,104,105,115,46,95,95,100,105,114,95,95,44,110,46,95,95,102,105,108,116,101,114,101,100,95,95,61,116,104,105,115,46,95,95,102,105,108,116,101,114,101,100,95,95,44,110,46,95,95,105,116,101,114,97,116,101,101,115,95,95,61,85,114,40,116,104,105,115,46,95,95,105,116,101,114,97,116,101,101,115,95,95,41,44,110,46,95,95,116,97,107,101,67,111,117,110,116,95,95,61,116,104,105,115,46,95,95,116,97,107,101,67,111,117,110,116,95,95,44,110,46,95,95,118,105,101,119,115,95,95,61,85,114,40,116,104,105,115,46,95,95,118,105,101,119,115,95,95,41,44,110,125,44,85,110,46,112,114,111,116,111,116,121,112,101,46,114,101,118,101,114,115,101,61,102,117,110,99,116,105,111,110,40,41,123,105,102,40,116,104,105,115,46,95,95,102,105,108,116,101,114,101,100,95,95,41,123,118,97,114,32,110,61,110,101,119,32,85,110,40,116,104,105,115,41,59,10,110,46,95,95,100,105,114,95,95,61,45,49,44,110,46,95,95,102,105,108,116,101,114,101,100,95,95,61,116,114,117,101,125,101,108,115,101,32,110,61,116,104,105,115,46,99,108,111,110,101,40,41,44,110,46,95,95,100,105,114,95,95,42,61,45,49,59,114,101,116,117,114,110,32,110,125,44,85,110,46,112,114,111,116,111,116,121,112,101,46,118,97,108,117,101,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,110,44,116,61,116,104,105,115,46,95,95,119,114,97,112,112,101,100,95,95,46,118,97,108,117,101,40,41,44,114,61,116,104,105,115,46,95,95,100,105,114,95,95,44,101,61,102,102,40,116,41,44,117,61,48,62,114,44,105,61,101,63,116,46,108,101,110,103,116,104,58,48,59,110,61,105,59,102,111,114,40,118,97,114,32,111,61,116,104,105,115,46,95,95,118,105,101,119,115,95,95,44,102,61,48,44,99,61,45,49,44,97,61,111,46,108,101,110,103,116,104,59,43,43,99,60,97,59,41,123,118,97,114,32,108,61,111,91,99,93,44,115,61,108,46,115,105,122,101,59,115,119,105,116,99,104,40,108,46,116,121,112,101,41,123,99,97,115,101,34,100,114,111,112,34,58,102,43,61,115,59,98,114,101,97,107,59,99,97,115,101,34,100,114,111,112,82,105,103,104,116,34,58,110,45,61,115,59,98,114,101,97,107,59,99,97,115,101,34,116,97,107,101,34,58,110,61,67,105,40,110,44,102,43,115,41,59,98,114,101,97,107,59,99,97,115,101,34,116,97,107,101,82,105,103,104,116,34,58,102,61,85,105,40,102,44,110,45,115,41,125,125,105,102,40,110,61,123,115,116,97,114,116,58,102,44,101,110,100,58,110,125,44,111,61,110,46,115,116,97,114,116,44,102,61,110,46,101,110,100,44,110,61,102,45,111,44,111,61,117,63,102,58,111,45,49,44,102,61,116,104,105,115,46,95,95,105,116,101,114,97,116,101,101,115,95,95,44,99,61,102,46,108,101,110,103,116,104,44,97,61,48,44,108,61,67,105,40,110,44,116,104,105,115,46,95,95,116,97,107,101,67,111,117,110,116,95,95,41,44,33,101,124,124,33,117,38,38,105,61,61,110,38,38,108,61,61,110,41,114,101,116,117,114,110,32,119,114,40,116,44,116,104,105,115,46,95,95,97,99,116,105,111,110,115,95,95,41,59,10,101,61,91,93,59,110,58,102,111,114,40,59,110,45,45,38,38,97,60,108,59,41,123,102,111,114,40,111,43,61,114,44,117,61,45,49,44,105,61,116,91,111,93,59,43,43,117,60,99,59,41,123,118,97,114,32,104,61,102,91,117,93,44,115,61,104,46,116,121,112,101,44,104,61,40,48,44,104,46,105,116,101,114,97,116,101,101,41,40,105,41,59,105,102,40,50,61,61,115,41,105,61,104,59,101,108,115,101,32,105,102,40,33,104,41,123,105,102,40,49,61,61,115,41,99,111,110,116,105,110,117,101,32,110,59,98,114,101,97,107,32,110,125,125,101,91,97,43,43,93,61,105,125,114,101,116,117,114,110,32,101,125,44,65,110,46,112,114,111,116,111,116,121,112,101,46,97,116,61,84,111,44,65,110,46,112,114,111,116,111,116,121,112,101,46,99,104,97,105,110,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,89,101,40,116,104,105,115,41,125,44,65,110,46,112,114,111,116,111,116,121,112,101,46,99,111,109,109,105,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,110,101,119,32,79,110,40,116,104,105,115,46,118,97,108,117,101,40,41,44,116,104,105,115,46,95,95,99,104,97,105,110,95,95,41,125,44,65,110,46,112,114,111,116,111,116,121,112,101,46,110,101,120,116,61,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,95,118,97,108,117,101,115,95,95,61,61,61,84,38,38,40,116,104,105,115,46,95,95,118,97,108,117,101,115,95,95,61,109,117,40,116,104,105,115,46,118,97,108,117,101,40,41,41,41,59,118,97,114,32,110,61,116,104,105,115,46,95,95,105,110,100,101,120,95,95,62,61,116,104,105,115,46,95,95,118,97,108,117,101,115,95,95,46,108,101,110,103,116,104,59,114,101,116,117,114,110,123,100,111,110,101,58,110,44,118,97,108,117,101,58,110,63,84,58,116,104,105,115,46,95,95,118,97,108,117,101,115,95,95,91,116,104,105,115,46,95,95,105,110,100,101,120,95,95,43,43,93,125,125,44,65,110,46,112,114,111,116,111,116,121,112,101,46,112,108,97,110,116,61,102,117,110,99,116,105,111,110,40,110,41,123,10,102,111,114,40,118,97,114,32,116,44,114,61,116,104,105,115,59,114,32,105,110,115,116,97,110,99,101,111,102,32,69,110,59,41,123,118,97,114,32,101,61,70,101,40,114,41,59,101,46,95,95,105,110,100,101,120,95,95,61,48,44,101,46,95,95,118,97,108,117,101,115,95,95,61,84,44,116,63,117,46,95,95,119,114,97,112,112,101,100,95,95,61,101,58,116,61,101,59,118,97,114,32,117,61,101,44,114,61,114,46,95,95,119,114,97,112,112,101,100,95,95,125,114,101,116,117,114,110,32,117,46,95,95,119,114,97,112,112,101,100,95,95,61,110,44,116,125,44,65,110,46,112,114,111,116,111,116,121,112,101,46,114,101,118,101,114,115,101,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,110,61,116,104,105,115,46,95,95,119,114,97,112,112,101,100,95,95,59,114,101,116,117,114,110,32,110,32,105,110,115,116,97,110,99,101,111,102,32,85,110,63,40,116,104,105,115,46,95,95,97,99,116,105,111,110,115,95,95,46,108,101,110,103,116,104,38,38,40,110,61,110,101,119,32,85,110,40,116,104,105,115,41,41,44,110,61,110,46,114,101,118,101,114,115,101,40,41,44,110,46,95,95,97,99,116,105,111,110,115,95,95,46,112,117,115,104,40,123,102,117,110,99,58,81,101,44,97,114,103,115,58,91,71,101,93,44,116,104,105,115,65,114,103,58,84,125,41,44,110,101,119,32,79,110,40,110,44,116,104,105,115,46,95,95,99,104,97,105,110,95,95,41,41,58,116,104,105,115,46,116,104,114,117,40,71,101,41,125,44,65,110,46,112,114,111,116,111,116,121,112,101,46,116,111,74,83,79,78,61,65,110,46,112,114,111,116,111,116,121,112,101,46,118,97,108,117,101,79,102,61,65,110,46,112,114,111,116,111,116,121,112,101,46,118,97,108,117,101,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,119,114,40,116,104,105,115,46,95,95,119,114,97,112,112,101,100,95,95,44,116,104,105,115,46,95,95,97,99,116,105,111,110,115,95,95,41,125,44,65,110,46,112,114,111,116,111,116,121,112,101,46,102,105,114,115,116,61,65,110,46,112,114,111,116,111,116,121,112,101,46,104,101,97,100,44,10,119,105,38,38,40,65,110,46,112,114,111,116,111,116,121,112,101,91,119,105,93,61,88,101,41,44,65,110,125,40,41,59,116,121,112,101,111,102,32,100,101,102,105,110,101,61,61,34,102,117,110,99,116,105,111,110,34,38,38,116,121,112,101,111,102,32,100,101,102,105,110,101,46,97,109,100,61,61,34,111,98,106,101,99,116,34,38,38,100,101,102,105,110,101,46,97,109,100,63,40,36,110,46,95,61,114,116,44,32,100,101,102,105,110,101,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,114,116,125,41,41,58,78,110,63,40,40,78,110,46,101,120,112,111,114,116,115,61,114,116,41,46,95,61,114,116,44,70,110,46,95,61,114,116,41,58,36,110,46,95,61,114,116,125,41,46,99,97,108,108,40,116,104,105,115,41,59,47,42,32,73,110,115,112,105,114,101,32,84,114,101,101,10,32,42,32,64,118,101,114,115,105,111,110,32,54,46,48,46,49,10,32,42,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,104,101,108,105,111,110,51,47,105,110,115,112,105,114,101,45,116,114,101,101,10,32,42,32,64,99,111,112,121,114,105,103,104,116,32,67,111,112,121,114,105,103,104,116,32,50,48,49,53,32,72,101,108,105,111,110,51,44,32,97,110,100,32,111,116,104,101,114,32,99,111,110,116,114,105,98,117,116,111,114,115,10,32,42,32,64,108,105,99,101,110,115,101,32,76,105,99,101,110,115,101,100,32,117,110,100,101,114,32,77,73,84,10,32,42,32,32,32,32,32,32,32,32,32,32,115,101,101,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,104,101,108,105,111,110,51,47,105,110,115,112,105,114,101,45,116,114,101,101,47,98,108,111,98,47,109,97,115,116,101,114,47,76,73,67,69,78,83,69,10,32,42,47,10,33,102,117,110,99,116,105,111,110,40,101,44,116,41,123,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,101,120,112,111,114,116,115,38,38,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,109,111,100,117,108,101,63,109,111,100,117,108,101,46,101,120,112,111,114,116,115,61,116,40,114,101,113,117,105,114,101,40,34,108,111,100,97,115,104,34,41,41,58,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,100,101,102,105,110,101,38,38,100,101,102,105,110,101,46,97,109,100,63,100,101,102,105,110,101,40,91,34,108,111,100,97,115,104,34,93,44,116,41,58,40,101,61,101,124,124,115,101,108,102,41,46,73,110,115,112,105,114,101,84,114,101,101,61,116,40,101,46,95,41,125,40,116,104,105,115,44,102,117,110,99,116,105,111,110,40,99,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,102,117,110,99,116,105,111,110,32,97,40,101,44,116,41,123,105,102,40,33,40,101,32,105,110,115,116,97,110,99,101,111,102,32,116,41,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,67,97,110,110,111,116,32,99,97,108,108,32,97,32,99,108,97,115,115,32,97,115,32,97,32,102,117,110,99,116,105,111,110,34,41,125,102,117,110,99,116,105,111,110,32,105,40,101,44,116,41,123,102,111,114,40,118,97,114,32,110,61,48,59,110,60,116,46,108,101,110,103,116,104,59,110,43,43,41,123,118,97,114,32,105,61,116,91,110,93,59,105,46,101,110,117,109,101,114,97,98,108,101,61,105,46,101,110,117,109,101,114,97,98,108,101,124,124,33,49,44,105,46,99,111,110,102,105,103,117,114,97,98,108,101,61,33,48,44,34,118,97,108,117,101,34,105,110,32,105,38,38,40,105,46,119,114,105,116,97,98,108,101,61,33,48,41,44,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,101,44,105,46,107,101,121,44,105,41,125,125,102,117,110,99,116,105,111,110,32,101,40,101,44,116,44,110,41,123,114,101,116,117,114,110,32,116,38,38,105,40,101,46,112,114,111,116,111,116,121,112,101,44,116,41,44,110,38,38,105,40,101,44,110,41,44,101,125,102,117,110,99,116,105,111,110,32,116,40,101,44,116,41,123,105,102,40,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,116,38,38,110,117,108,108,33,61,61,116,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,83,117,112,101,114,32,101,120,112,114,101,115,115,105,111,110,32,109,117,115,116,32,101,105,116,104,101,114,32,98,101,32,110,117,108,108,32,111,114,32,97,32,102,117,110,99,116,105,111,110,34,41,59,101,46,112,114,111,116,111,116,121,112,101,61,79,98,106,101,99,116,46,99,114,101,97,116,101,40,116,38,38,116,46,112,114,111,116,111,116,121,112,101,44,123,99,111,110,115,116,114,117,99,116,111,114,58,123,118,97,108,117,101,58,101,44,119,114,105,116,97,98,108,101,58,33,48,44,99,111,110,102,105,103,117,114,97,98,108,101,58,33,48,125,125,41,44,116,38,38,110,40,101,44,116,41,125,102,117,110,99,116,105,111,110,32,117,40,101,41,123,114,101,116,117,114,110,40,117,61,79,98,106,101,99,116,46,115,101,116,80,114,111,116,111,116,121,112,101,79,102,63,79,98,106,101,99,116,46,103,101,116,80,114,111,116,111,116,121,112,101,79,102,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,46,95,95,112,114,111,116,111,95,95,124,124,79,98,106,101,99,116,46,103,101,116,80,114,111,116,111,116,121,112,101,79,102,40,101,41,125,41,40,101,41,125,102,117,110,99,116,105,111,110,32,110,40,101,44,116,41,123,114,101,116,117,114,110,40,110,61,79,98,106,101,99,116,46,115,101,116,80,114,111,116,111,116,121,112,101,79,102,124,124,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,101,46,95,95,112,114,111,116,111,95,95,61,116,44,101,125,41,40,101,44,116,41,125,102,117,110,99,116,105,111,110,32,108,40,101,41,123,105,102,40,118,111,105,100,32,48,61,61,61,101,41,116,104,114,111,119,32,110,101,119,32,82,101,102,101,114,101,110,99,101,69,114,114,111,114,40,34,116,104,105,115,32,104,97,115,110,39,116,32,98,101,101,110,32,105,110,105,116,105,97,108,105,115,101,100,32,45,32,115,117,112,101,114,40,41,32,104,97,115,110,39,116,32,98,101,101,110,32,99,97,108,108,101,100,34,41,59,114,101,116,117,114,110,32,101,125,102,117,110,99,116,105,111,110,32,104,40,101,44,116,41,123,114,101,116,117,114,110,33,116,124,124,34,111,98,106,101,99,116,34,33,61,116,121,112,101,111,102,32,116,38,38,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,116,63,108,40,101,41,58,116,125,102,117,110,99,116,105,111,110,32,114,40,101,44,116,44,110,41,123,114,101,116,117,114,110,40,114,61,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,82,101,102,108,101,99,116,38,38,82,101,102,108,101,99,116,46,103,101,116,63,82,101,102,108,101,99,116,46,103,101,116,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,105,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,102,111,114,40,59,33,79,98,106,101,99,116,46,112,114,111,116,111,116,121,112,101,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,46,99,97,108,108,40,101,44,116,41,38,38,110,117,108,108,33,61,61,40,101,61,117,40,101,41,41,59,41,59,114,101,116,117,114,110,32,101,125,40,101,44,116,41,59,105,102,40,105,41,123,118,97,114,32,114,61,79,98,106,101,99,116,46,103,101,116,79,119,110,80,114,111,112,101,114,116,121,68,101,115,99,114,105,112,116,111,114,40,105,44,116,41,59,114,101,116,117,114,110,32,114,46,103,101,116,63,114,46,103,101,116,46,99,97,108,108,40,110,41,58,114,46,118,97,108,117,101,125,125,41,40,101,44,116,44,110,124,124,101,41,125,102,117,110,99,116,105,111,110,32,115,40,101,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,101,41,123,105,102,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,101,41,41,114,101,116,117,114,110,32,101,125,40,101,41,124,124,102,117,110,99,116,105,111,110,40,101,41,123,105,102,40,83,121,109,98,111,108,46,105,116,101,114,97,116,111,114,32,105,110,32,79,98,106,101,99,116,40,101,41,124,124,34,91,111,98,106,101,99,116,32,65,114,103,117,109,101,110,116,115,93,34,61,61,61,79,98,106,101,99,116,46,112,114,111,116,111,116,121,112,101,46,116,111,83,116,114,105,110,103,46,99,97,108,108,40,101,41,41,114,101,116,117,114,110,32,65,114,114,97,121,46,102,114,111,109,40,101,41,125,40,101,41,124,124,102,117,110,99,116,105,111,110,40,41,123,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,73,110,118,97,108,105,100,32,97,116,116,101,109,112,116,32,116,111,32,100,101,115,116,114,117,99,116,117,114,101,32,110,111,110,45,105,116,101,114,97,98,108,101,32,105,110,115,116,97,110,99,101,34,41,125,40,41,125,102,117,110,99,116,105,111,110,32,111,40,116,44,110,44,105,44,101,44,114,41,123,114,101,116,117,114,110,32,101,46,115,116,97,116,101,40,116,41,33,61,61,110,38,38,40,101,46,99,111,110,116,101,120,116,40,41,46,98,97,116,99,104,40,41,44,101,46,95,116,114,101,101,46,99,111,110,102,105,103,46,110,111,100,101,115,46,114,101,115,101,116,83,116,97,116,101,79,110,82,101,115,116,111,114,101,38,38,34,114,101,115,116,111,114,101,100,34,61,61,61,105,38,38,102,117,110,99,116,105,111,110,40,110,41,123,99,46,101,97,99,104,40,110,46,95,116,114,101,101,46,100,101,102,97,117,108,116,83,116,97,116,101,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,110,46,115,116,97,116,101,40,116,44,101,41,125,41,125,40,101,41,44,110,38,38,34,99,104,101,99,107,101,100,34,61,61,61,116,38,38,101,46,115,116,97,116,101,40,34,105,110,100,101,116,101,114,109,105,110,97,116,101,34,44,33,49,41,44,101,46,115,116,97,116,101,40,116,44,110,41,44,101,46,95,116,114,101,101,46,101,109,105,116,40,34,110,111,100,101,46,34,43,105,44,101,44,33,49,41,44,114,38,38,101,46,104,97,115,67,104,105,108,100,114,101,110,40,41,38,38,101,46,99,104,105,108,100,114,101,110,46,114,101,99,117,114,115,101,68,111,119,110,40,102,117,110,99,116,105,111,110,40,101,41,123,111,40,116,44,110,44,105,44,101,41,125,41,44,34,104,105,100,100,101,110,34,33,61,61,116,38,38,34,114,101,109,111,118,101,100,34,33,61,61,116,124,124,40,101,46,99,111,110,116,101,120,116,40,41,46,105,110,100,105,99,101,115,68,105,114,116,121,61,33,48,44,101,46,99,111,110,116,101,120,116,40,41,46,99,97,108,99,117,108,97,116,101,82,101,110,100,101,114,97,98,108,101,80,111,115,105,116,105,111,110,115,40,41,41,44,101,46,109,97,114,107,68,105,114,116,121,40,41,44,101,46,99,111,110,116,101,120,116,40,41,46,101,110,100,40,41,41,44,101,125,118,97,114,32,84,61,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,103,108,111,98,97,108,84,104,105,115,63,103,108,111,98,97,108,84,104,105,115,58,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,119,105,110,100,111,119,63,119,105,110,100,111,119,58,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,103,108,111,98,97,108,63,103,108,111,98,97,108,58,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,115,101,108,102,63,115,101,108,102,58,123,125,59,102,117,110,99,116,105,111,110,32,100,40,101,44,116,41,123,114,101,116,117,114,110,32,101,40,116,61,123,101,120,112,111,114,116,115,58,123,125,125,44,116,46,101,120,112,111,114,116,115,41,44,116,46,101,120,112,111,114,116,115,125,118,97,114,32,102,61,100,40,102,117,110,99,116,105,111,110,40,101,44,116,41,123,10,32,32,32,32,47,42,33,10,32,32,32,32,32,32,32,42,32,64,111,118,101,114,118,105,101,119,32,101,115,54,45,112,114,111,109,105,115,101,32,45,32,97,32,116,105,110,121,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,32,111,102,32,80,114,111,109,105,115,101,115,47,65,43,46,10,32,32,32,32,32,32,32,42,32,64,99,111,112,121,114,105,103,104,116,32,67,111,112,121,114,105,103,104,116,32,40,99,41,32,50,48,49,52,32,89,101,104,117,100,97,32,75,97,116,122,44,32,84,111,109,32,68,97,108,101,44,32,83,116,101,102,97,110,32,80,101,110,110,101,114,32,97,110,100,32,99,111,110,116,114,105,98,117,116,111,114,115,32,40,67,111,110,118,101,114,115,105,111,110,32,116,111,32,69,83,54,32,65,80,73,32,98,121,32,74,97,107,101,32,65,114,99,104,105,98,97,108,100,41,10,32,32,32,32,32,32,32,42,32,64,108,105,99,101,110,115,101,32,32,32,76,105,99,101,110,115,101,100,32,117,110,100,101,114,32,77,73,84,32,108,105,99,101,110,115,101,10,32,32,32,32,32,32,32,42,32,32,32,32,32,32,32,32,32,32,32,32,83,101,101,32,104,116,116,112,115,58,47,47,114,97,119,46,103,105,116,104,117,98,117,115,101,114,99,111,110,116,101,110,116,46,99,111,109,47,115,116,101,102,97,110,112,101,110,110,101,114,47,101,115,54,45,112,114,111,109,105,115,101,47,109,97,115,116,101,114,47,76,73,67,69,78,83,69,10,32,32,32,32,32,32,32,42,32,64,118,101,114,115,105,111,110,32,32,32,118,52,46,50,46,56,43,49,101,54,56,100,99,101,54,10,32,32,32,32,32,32,32,42,47,10,32,32,32,32,101,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,99,40,101,41,123,114,101,116,117,114,110,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,101,125,118,97,114,32,110,61,65,114,114,97,121,46,105,115,65,114,114,97,121,63,65,114,114,97,121,46,105,115,65,114,114,97,121,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,34,91,111,98,106,101,99,116,32,65,114,114,97,121,93,34,61,61,61,79,98,106,101,99,116,46,112,114,111,116,111,116,121,112,101,46,116,111,83,116,114,105,110,103,46,99,97,108,108,40,101,41,125,44,105,61,48,44,116,61,118,111,105,100,32,48,44,114,61,118,111,105,100,32,48,44,111,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,100,91,105,93,61,101,44,100,91,105,43,49,93,61,116,44,50,61,61,61,40,105,43,61,50,41,38,38,40,114,63,114,40,102,41,58,118,40,41,41,125,59,118,97,114,32,101,61,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,119,105,110,100,111,119,63,119,105,110,100,111,119,58,118,111,105,100,32,48,44,115,61,101,124,124,123,125,44,97,61,115,46,77,117,116,97,116,105,111,110,79,98,115,101,114,118,101,114,124,124,115,46,87,101,98,75,105,116,77,117,116,97,116,105,111,110,79,98,115,101,114,118,101,114,44,117,61,34,117,110,100,101,102,105,110,101,100,34,61,61,116,121,112,101,111,102,32,115,101,108,102,38,38,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,112,114,111,99,101,115,115,38,38,34,91,111,98,106,101,99,116,32,112,114,111,99,101,115,115,93,34,61,61,61,123,125,46,116,111,83,116,114,105,110,103,46,99,97,108,108,40,112,114,111,99,101,115,115,41,44,108,61,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,85,105,110,116,56,67,108,97,109,112,101,100,65,114,114,97,121,38,38,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,105,109,112,111,114,116,83,99,114,105,112,116,115,38,38,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,77,101,115,115,97,103,101,67,104,97,110,110,101,108,59,102,117,110,99,116,105,111,110,32,104,40,41,123,118,97,114,32,101,61,115,101,116,84,105,109,101,111,117,116,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,101,40,102,44,49,41,125,125,118,97,114,32,100,61,110,101,119,32,65,114,114,97,121,40,49,101,51,41,59,102,117,110,99,116,105,111,110,32,102,40,41,123,102,111,114,40,118,97,114,32,101,61,48,59,101,60,105,59,101,43,61,50,41,123,118,97,114,32,116,61,100,91,101,93,44,110,61,100,91,101,43,49,93,59,116,40,110,41,44,100,91,101,93,61,118,111,105,100,32,48,44,100,91,101,43,49,93,61,118,111,105,100,32,48,125,105,61,48,125,118,97,114,32,118,61,118,111,105,100,32,48,59,102,117,110,99,116,105,111,110,32,121,40,101,44,116,41,123,118,97,114,32,110,61,116,104,105,115,44,105,61,110,101,119,32,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,40,103,41,59,118,111,105,100,32,48,61,61,61,105,91,107,93,38,38,106,40,105,41,59,118,97,114,32,114,61,110,46,95,115,116,97,116,101,59,105,102,40,114,41,123,118,97,114,32,115,61,97,114,103,117,109,101,110,116,115,91,114,45,49,93,59,111,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,79,40,114,44,105,44,115,44,110,46,95,114,101,115,117,108,116,41,125,41,125,101,108,115,101,32,67,40,110,44,105,44,101,44,116,41,59,114,101,116,117,114,110,32,105,125,102,117,110,99,116,105,111,110,32,112,40,101,41,123,105,102,40,101,38,38,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,101,38,38,101,46,99,111,110,115,116,114,117,99,116,111,114,61,61,61,116,104,105,115,41,114,101,116,117,114,110,32,101,59,118,97,114,32,116,61,110,101,119,32,116,104,105,115,40,103,41,59,114,101,116,117,114,110,32,68,40,116,44,101,41,44,116,125,118,61,117,63,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,112,114,111,99,101,115,115,46,110,101,120,116,84,105,99,107,40,102,41,125,58,97,63,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,48,44,116,61,110,101,119,32,97,40,102,41,44,110,61,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,84,101,120,116,78,111,100,101,40,34,34,41,59,114,101,116,117,114,110,32,116,46,111,98,115,101,114,118,101,40,110,44,123,99,104,97,114,97,99,116,101,114,68,97,116,97,58,33,48,125,41,44,102,117,110,99,116,105,111,110,40,41,123,110,46,100,97,116,97,61,101,61,43,43,101,37,50,125,125,40,41,58,108,63,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,110,101,119,32,77,101,115,115,97,103,101,67,104,97,110,110,101,108,59,114,101,116,117,114,110,32,101,46,112,111,114,116,49,46,111,110,109,101,115,115,97,103,101,61,102,44,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,101,46,112,111,114,116,50,46,112,111,115,116,77,101,115,115,97,103,101,40,48,41,125,125,40,41,58,118,111,105,100,32,48,61,61,61,101,63,102,117,110,99,116,105,111,110,40,41,123,116,114,121,123,118,97,114,32,101,61,70,117,110,99,116,105,111,110,40,34,114,101,116,117,114,110,32,116,104,105,115,34,41,40,41,46,114,101,113,117,105,114,101,40,34,118,101,114,116,120,34,41,59,114,101,116,117,114,110,32,118,111,105,100,32,48,61,61,61,40,116,61,101,46,114,117,110,79,110,76,111,111,112,124,124,101,46,114,117,110,79,110,67,111,110,116,101,120,116,41,63,104,40,41,58,102,117,110,99,116,105,111,110,40,41,123,116,40,102,41,125,125,99,97,116,99,104,40,101,41,123,114,101,116,117,114,110,32,104,40,41,125,125,40,41,58,104,40,41,59,118,97,114,32,107,61,77,97,116,104,46,114,97,110,100,111,109,40,41,46,116,111,83,116,114,105,110,103,40,51,54,41,46,115,117,98,115,116,114,105,110,103,40,50,41,59,102,117,110,99,116,105,111,110,32,103,40,41,123,125,118,97,114,32,95,61,118,111,105,100,32,48,44,109,61,49,44,98,61,50,59,102,117,110,99,116,105,111,110,32,119,40,101,44,116,44,110,44,105,41,123,116,114,121,123,101,46,99,97,108,108,40,116,44,110,44,105,41,125,99,97,116,99,104,40,101,41,123,114,101,116,117,114,110,32,101,125,125,102,117,110,99,116,105,111,110,32,120,40,101,44,116,44,110,41,123,116,46,99,111,110,115,116,114,117,99,116,111,114,61,61,61,101,46,99,111,110,115,116,114,117,99,116,111,114,38,38,110,61,61,61,121,38,38,116,46,99,111,110,115,116,114,117,99,116,111,114,46,114,101,115,111,108,118,101,61,61,61,112,63,102,117,110,99,116,105,111,110,40,116,44,101,41,123,101,46,95,115,116,97,116,101,61,61,61,109,63,76,40,116,44,101,46,95,114,101,115,117,108,116,41,58,101,46,95,115,116,97,116,101,61,61,61,98,63,80,40,116,44,101,46,95,114,101,115,117,108,116,41,58,67,40,101,44,118,111,105,100,32,48,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,68,40,116,44,101,41,125,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,80,40,116,44,101,41,125,41,125,40,101,44,116,41,58,118,111,105,100,32,48,61,61,61,110,63,76,40,101,44,116,41,58,99,40,110,41,63,102,117,110,99,116,105,111,110,40,101,44,105,44,114,41,123,111,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,33,49,44,101,61,119,40,114,44,105,44,102,117,110,99,116,105,111,110,40,101,41,123,110,124,124,40,110,61,33,48,44,105,33,61,61,101,63,68,40,116,44,101,41,58,76,40,116,44,101,41,41,125,44,102,117,110,99,116,105,111,110,40,101,41,123,110,124,124,40,110,61,33,48,44,80,40,116,44,101,41,41,125,44,116,46,95,108,97,98,101,108,41,59,33,110,38,38,101,38,38,40,110,61,33,48,44,80,40,116,44,101,41,41,125,44,101,41,125,40,101,44,116,44,110,41,58,76,40,101,44,116,41,125,102,117,110,99,116,105,111,110,32,68,40,116,44,101,41,123,105,102,40,116,61,61,61,101,41,80,40,116,44,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,89,111,117,32,99,97,110,110,111,116,32,114,101,115,111,108,118,101,32,97,32,112,114,111,109,105,115,101,32,119,105,116,104,32,105,116,115,101,108,102,34,41,41,59,101,108,115,101,32,105,102,40,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,116,121,112,101,111,102,32,101,59,114,101,116,117,114,110,32,110,117,108,108,33,61,61,101,38,38,40,34,111,98,106,101,99,116,34,61,61,116,124,124,34,102,117,110,99,116,105,111,110,34,61,61,116,41,125,40,101,41,41,123,118,97,114,32,110,61,118,111,105,100,32,48,59,116,114,121,123,110,61,101,46,116,104,101,110,125,99,97,116,99,104,40,101,41,123,114,101,116,117,114,110,32,118,111,105,100,32,80,40,116,44,101,41,125,120,40,116,44,101,44,110,41,125,101,108,115,101,32,76,40,116,44,101,41,125,102,117,110,99,116,105,111,110,32,65,40,101,41,123,101,46,95,111,110,101,114,114,111,114,38,38,101,46,95,111,110,101,114,114,111,114,40,101,46,95,114,101,115,117,108,116,41,44,83,40,101,41,125,102,117,110,99,116,105,111,110,32,76,40,101,44,116,41,123,101,46,95,115,116,97,116,101,61,61,61,95,38,38,40,101,46,95,114,101,115,117,108,116,61,116,44,101,46,95,115,116,97,116,101,61,109,44,48,33,61,61,101,46,95,115,117,98,115,99,114,105,98,101,114,115,46,108,101,110,103,116,104,38,38,111,40,83,44,101,41,41,125,102,117,110,99,116,105,111,110,32,80,40,101,44,116,41,123,101,46,95,115,116,97,116,101,61,61,61,95,38,38,40,101,46,95,115,116,97,116,101,61,98,44,101,46,95,114,101,115,117,108,116,61,116,44,111,40,65,44,101,41,41,125,102,117,110,99,116,105,111,110,32,67,40,101,44,116,44,110,44,105,41,123,118,97,114,32,114,61,101,46,95,115,117,98,115,99,114,105,98,101,114,115,44,115,61,114,46,108,101,110,103,116,104,59,101,46,95,111,110,101,114,114,111,114,61,110,117,108,108,44,114,91,115,93,61,116,44,114,91,115,43,109,93,61,110,44,114,91,115,43,98,93,61,105,44,48,61,61,61,115,38,38,101,46,95,115,116,97,116,101,38,38,111,40,83,44,101,41,125,102,117,110,99,116,105,111,110,32,83,40,101,41,123,118,97,114,32,116,61,101,46,95,115,117,98,115,99,114,105,98,101,114,115,44,110,61,101,46,95,115,116,97,116,101,59,105,102,40,48,33,61,61,116,46,108,101,110,103,116,104,41,123,102,111,114,40,118,97,114,32,105,61,118,111,105,100,32,48,44,114,61,118,111,105,100,32,48,44,115,61,101,46,95,114,101,115,117,108,116,44,111,61,48,59,111,60,116,46,108,101,110,103,116,104,59,111,43,61,51,41,105,61,116,91,111,93,44,114,61,116,91,111,43,110,93,44,105,63,79,40,110,44,105,44,114,44,115,41,58,114,40,115,41,59,101,46,95,115,117,98,115,99,114,105,98,101,114,115,46,108,101,110,103,116,104,61,48,125,125,102,117,110,99,116,105,111,110,32,79,40,101,44,116,44,110,44,105,41,123,118,97,114,32,114,61,99,40,110,41,44,115,61,118,111,105,100,32,48,44,111,61,118,111,105,100,32,48,44,97,61,33,48,59,105,102,40,114,41,123,116,114,121,123,115,61,110,40,105,41,125,99,97,116,99,104,40,101,41,123,97,61,33,49,44,111,61,101,125,105,102,40,116,61,61,61,115,41,114,101,116,117,114,110,32,118,111,105,100,32,80,40,116,44,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,65,32,112,114,111,109,105,115,101,115,32,99,97,108,108,98,97,99,107,32,99,97,110,110,111,116,32,114,101,116,117,114,110,32,116,104,97,116,32,115,97,109,101,32,112,114,111,109,105,115,101,46,34,41,41,125,101,108,115,101,32,115,61,105,59,116,46,95,115,116,97,116,101,33,61,61,95,124,124,40,114,38,38,97,63,68,40,116,44,115,41,58,33,49,61,61,61,97,63,80,40,116,44,111,41,58,101,61,61,61,109,63,76,40,116,44,115,41,58,101,61,61,61,98,38,38,80,40,116,44,115,41,41,125,118,97,114,32,78,61,48,59,102,117,110,99,116,105,111,110,32,106,40,101,41,123,101,91,107,93,61,78,43,43,44,101,46,95,115,116,97,116,101,61,118,111,105,100,32,48,44,101,46,95,114,101,115,117,108,116,61,118,111,105,100,32,48,44,101,46,95,115,117,98,115,99,114,105,98,101,114,115,61,91,93,125,118,97,114,32,69,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,101,40,101,44,116,41,123,116,104,105,115,46,95,105,110,115,116,97,110,99,101,67,111,110,115,116,114,117,99,116,111,114,61,101,44,116,104,105,115,46,112,114,111,109,105,115,101,61,110,101,119,32,101,40,103,41,44,116,104,105,115,46,112,114,111,109,105,115,101,91,107,93,124,124,106,40,116,104,105,115,46,112,114,111,109,105,115,101,41,44,110,40,116,41,63,40,116,104,105,115,46,108,101,110,103,116,104,61,116,46,108,101,110,103,116,104,44,116,104,105,115,46,95,114,101,109,97,105,110,105,110,103,61,116,46,108,101,110,103,116,104,44,116,104,105,115,46,95,114,101,115,117,108,116,61,110,101,119,32,65,114,114,97,121,40,116,104,105,115,46,108,101,110,103,116,104,41,44,48,61,61,61,116,104,105,115,46,108,101,110,103,116,104,63,76,40,116,104,105,115,46,112,114,111,109,105,115,101,44,116,104,105,115,46,95,114,101,115,117,108,116,41,58,40,116,104,105,115,46,108,101,110,103,116,104,61,116,104,105,115,46,108,101,110,103,116,104,124,124,48,44,116,104,105,115,46,95,101,110,117,109,101,114,97,116,101,40,116,41,44,48,61,61,61,116,104,105,115,46,95,114,101,109,97,105,110,105,110,103,38,38,76,40,116,104,105,115,46,112,114,111,109,105,115,101,44,116,104,105,115,46,95,114,101,115,117,108,116,41,41,41,58,80,40,116,104,105,115,46,112,114,111,109,105,115,101,44,110,101,119,32,69,114,114,111,114,40,34,65,114,114,97,121,32,77,101,116,104,111,100,115,32,109,117,115,116,32,98,101,32,112,114,111,118,105,100,101,100,32,97,110,32,65,114,114,97,121,34,41,41,125,114,101,116,117,114,110,32,101,46,112,114,111,116,111,116,121,112,101,46,95,101,110,117,109,101,114,97,116,101,61,102,117,110,99,116,105,111,110,40,101,41,123,102,111,114,40,118,97,114,32,116,61,48,59,116,104,105,115,46,95,115,116,97,116,101,61,61,61,95,38,38,116,60,101,46,108,101,110,103,116,104,59,116,43,43,41,116,104,105,115,46,95,101,97,99,104,69,110,116,114,121,40,101,91,116,93,44,116,41,125,44,101,46,112,114,111,116,111,116,121,112,101,46,95,101,97,99,104,69,110,116,114,121,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,116,104,105,115,46,95,105,110,115,116,97,110,99,101,67,111,110,115,116,114,117,99,116,111,114,44,105,61,110,46,114,101,115,111,108,118,101,59,105,102,40,105,61,61,61,112,41,123,118,97,114,32,114,61,118,111,105,100,32,48,44,115,61,118,111,105,100,32,48,44,111,61,33,49,59,116,114,121,123,114,61,116,46,116,104,101,110,125,99,97,116,99,104,40,101,41,123,111,61,33,48,44,115,61,101,125,105,102,40,114,61,61,61,121,38,38,116,46,95,115,116,97,116,101,33,61,61,95,41,116,104,105,115,46,95,115,101,116,116,108,101,100,65,116,40,116,46,95,115,116,97,116,101,44,101,44,116,46,95,114,101,115,117,108,116,41,59,101,108,115,101,32,105,102,40,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,114,41,116,104,105,115,46,95,114,101,109,97,105,110,105,110,103,45,45,44,116,104,105,115,46,95,114,101,115,117,108,116,91,101,93,61,116,59,101,108,115,101,32,105,102,40,110,61,61,61,82,41,123,118,97,114,32,97,61,110,101,119,32,110,40,103,41,59,111,63,80,40,97,44,115,41,58,120,40,97,44,116,44,114,41,44,116,104,105,115,46,95,119,105,108,108,83,101,116,116,108,101,65,116,40,97,44,101,41,125,101,108,115,101,32,116,104,105,115,46,95,119,105,108,108,83,101,116,116,108,101,65,116,40,110,101,119,32,110,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,40,116,41,125,41,44,101,41,125,101,108,115,101,32,116,104,105,115,46,95,119,105,108,108,83,101,116,116,108,101,65,116,40,105,40,116,41,44,101,41,125,44,101,46,112,114,111,116,111,116,121,112,101,46,95,115,101,116,116,108,101,100,65,116,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,105,61,116,104,105,115,46,112,114,111,109,105,115,101,59,105,46,95,115,116,97,116,101,61,61,61,95,38,38,40,116,104,105,115,46,95,114,101,109,97,105,110,105,110,103,45,45,44,101,61,61,61,98,63,80,40,105,44,110,41,58,116,104,105,115,46,95,114,101,115,117,108,116,91,116,93,61,110,41,44,48,61,61,61,116,104,105,115,46,95,114,101,109,97,105,110,105,110,103,38,38,76,40,105,44,116,104,105,115,46,95,114,101,115,117,108,116,41,125,44,101,46,112,114,111,116,111,116,121,112,101,46,95,119,105,108,108,83,101,116,116,108,101,65,116,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,61,116,104,105,115,59,67,40,101,44,118,111,105,100,32,48,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,110,46,95,115,101,116,116,108,101,100,65,116,40,109,44,116,44,101,41,125,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,110,46,95,115,101,116,116,108,101,100,65,116,40,98,44,116,44,101,41,125,41,125,44,101,125,40,41,59,118,97,114,32,82,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,116,40,101,41,123,116,104,105,115,91,107,93,61,78,43,43,44,116,104,105,115,46,95,114,101,115,117,108,116,61,116,104,105,115,46,95,115,116,97,116,101,61,118,111,105,100,32,48,44,116,104,105,115,46,95,115,117,98,115,99,114,105,98,101,114,115,61,91,93,44,103,33,61,61,101,38,38,40,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,101,38,38,102,117,110,99,116,105,111,110,40,41,123,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,89,111,117,32,109,117,115,116,32,112,97,115,115,32,97,32,114,101,115,111,108,118,101,114,32,102,117,110,99,116,105,111,110,32,97,115,32,116,104,101,32,102,105,114,115,116,32,97,114,103,117,109,101,110,116,32,116,111,32,116,104,101,32,112,114,111,109,105,115,101,32,99,111,110,115,116,114,117,99,116,111,114,34,41,125,40,41,44,116,104,105,115,32,105,110,115,116,97,110,99,101,111,102,32,116,63,102,117,110,99,116,105,111,110,40,116,44,101,41,123,116,114,121,123,101,40,102,117,110,99,116,105,111,110,40,101,41,123,68,40,116,44,101,41,125,44,102,117,110,99,116,105,111,110,40,101,41,123,80,40,116,44,101,41,125,41,125,99,97,116,99,104,40,101,41,123,80,40,116,44,101,41,125,125,40,116,104,105,115,44,101,41,58,102,117,110,99,116,105,111,110,40,41,123,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,70,97,105,108,101,100,32,116,111,32,99,111,110,115,116,114,117,99,116,32,39,80,114,111,109,105,115,101,39,58,32,80,108,101,97,115,101,32,117,115,101,32,116,104,101,32,39,110,101,119,39,32,111,112,101,114,97,116,111,114,44,32,116,104,105,115,32,111,98,106,101,99,116,32,99,111,110,115,116,114,117,99,116,111,114,32,99,97,110,110,111,116,32,98,101,32,99,97,108,108,101,100,32,97,115,32,97,32,102,117,110,99,116,105,111,110,46,34,41,125,40,41,41,125,114,101,116,117,114,110,32,116,46,112,114,111,116,111,116,121,112,101,46,99,97,116,99,104,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,116,104,101,110,40,110,117,108,108,44,101,41,125,44,116,46,112,114,111,116,111,116,121,112,101,46,102,105,110,97,108,108,121,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,59,114,101,116,117,114,110,32,99,40,116,41,63,116,104,105,115,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,110,46,114,101,115,111,108,118,101,40,116,40,41,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,101,125,41,125,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,110,46,114,101,115,111,108,118,101,40,116,40,41,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,41,123,116,104,114,111,119,32,101,125,41,125,41,58,116,104,105,115,46,116,104,101,110,40,116,44,116,41,125,44,116,125,40,41,59,114,101,116,117,114,110,32,82,46,112,114,111,116,111,116,121,112,101,46,116,104,101,110,61,121,44,82,46,97,108,108,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,110,101,119,32,69,40,116,104,105,115,44,101,41,46,112,114,111,109,105,115,101,125,44,82,46,114,97,99,101,61,102,117,110,99,116,105,111,110,40,114,41,123,118,97,114,32,115,61,116,104,105,115,59,114,101,116,117,114,110,32,110,40,114,41,63,110,101,119,32,115,40,102,117,110,99,116,105,111,110,40,101,44,116,41,123,102,111,114,40,118,97,114,32,110,61,114,46,108,101,110,103,116,104,44,105,61,48,59,105,60,110,59,105,43,43,41,115,46,114,101,115,111,108,118,101,40,114,91,105,93,41,46,116,104,101,110,40,101,44,116,41,125,41,58,110,101,119,32,115,40,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,116,40,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,89,111,117,32,109,117,115,116,32,112,97,115,115,32,97,110,32,97,114,114,97,121,32,116,111,32,114,97,99,101,46,34,41,41,125,41,125,44,82,46,114,101,115,111,108,118,101,61,112,44,82,46,114,101,106,101,99,116,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,110,101,119,32,116,104,105,115,40,103,41,59,114,101,116,117,114,110,32,80,40,116,44,101,41,44,116,125,44,82,46,95,115,101,116,83,99,104,101,100,117,108,101,114,61,102,117,110,99,116,105,111,110,40,101,41,123,114,61,101,125,44,82,46,95,115,101,116,65,115,97,112,61,102,117,110,99,116,105,111,110,40,101,41,123,111,61,101,125,44,82,46,95,97,115,97,112,61,111,44,82,46,112,111,108,121,102,105,108,108,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,118,111,105,100,32,48,59,105,102,40,118,111,105,100,32,48,33,61,61,84,41,101,61,84,59,101,108,115,101,32,105,102,40,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,115,101,108,102,41,101,61,115,101,108,102,59,101,108,115,101,32,116,114,121,123,101,61,70,117,110,99,116,105,111,110,40,34,114,101,116,117,114,110,32,116,104,105,115,34,41,40,41,125,99,97,116,99,104,40,101,41,123,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,112,111,108,121,102,105,108,108,32,102,97,105,108,101,100,32,98,101,99,97,117,115,101,32,103,108,111,98,97,108,32,111,98,106,101,99,116,32,105,115,32,117,110,97,118,97,105,108,97,98,108,101,32,105,110,32,116,104,105,115,32,101,110,118,105,114,111,110,109,101,110,116,34,41,125,118,97,114,32,116,61,101,46,80,114,111,109,105,115,101,59,105,102,40,116,41,123,118,97,114,32,110,61,110,117,108,108,59,116,114,121,123,110,61,79,98,106,101,99,116,46,112,114,111,116,111,116,121,112,101,46,116,111,83,116,114,105,110,103,46,99,97,108,108,40,116,46,114,101,115,111,108,118,101,40,41,41,125,99,97,116,99,104,40,101,41,123,125,105,102,40,34,91,111,98,106,101,99,116,32,80,114,111,109,105,115,101,93,34,61,61,61,110,38,38,33,116,46,99,97,115,116,41,114,101,116,117,114,110,125,101,46,80,114,111,109,105,115,101,61,82,125,44,82,46,80,114,111,109,105,115,101,61,82,125,40,41,125,41,46,80,114,111,109,105,115,101,59,102,117,110,99,116,105,111,110,32,118,40,101,41,123,102,117,110,99,116,105,111,110,32,116,40,41,123,101,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,125,114,101,116,117,114,110,32,116,46,112,114,111,116,111,116,121,112,101,61,79,98,106,101,99,116,46,99,114,101,97,116,101,40,101,46,112,114,111,116,111,116,121,112,101,44,123,99,111,110,115,116,114,117,99,116,111,114,58,123,118,97,108,117,101,58,101,44,101,110,117,109,101,114,97,98,108,101,58,33,49,44,119,114,105,116,97,98,108,101,58,33,48,44,99,111,110,102,105,103,117,114,97,98,108,101,58,33,48,125,125,41,44,79,98,106,101,99,116,46,115,101,116,80,114,111,116,111,116,121,112,101,79,102,63,79,98,106,101,99,116,46,115,101,116,80,114,111,116,111,116,121,112,101,79,102,40,116,44,101,41,58,116,46,95,95,112,114,111,116,111,95,95,61,101,44,116,125,102,117,110,99,116,105,111,110,32,121,40,101,44,110,44,105,44,116,41,123,114,101,116,117,114,110,32,110,61,99,46,99,97,115,116,65,114,114,97,121,40,110,41,44,101,46,95,116,114,101,101,46,98,97,116,99,104,40,41,44,101,91,116,63,34,114,101,99,117,114,115,101,68,111,119,110,34,58,34,101,97,99,104,34,93,40,102,117,110,99,116,105,111,110,40,116,41,123,99,46,101,97,99,104,40,110,44,102,117,110,99,116,105,111,110,40,101,41,123,99,46,105,115,70,117,110,99,116,105,111,110,40,116,91,101,93,41,38,38,116,91,101,93,46,97,112,112,108,121,40,116,44,105,41,125,41,125,41,44,101,46,95,116,114,101,101,46,101,110,100,40,41,44,101,125,102,117,110,99,116,105,111,110,32,112,40,116,41,123,118,97,114,32,101,61,116,59,114,101,116,117,114,110,32,99,46,105,115,83,116,114,105,110,103,40,116,41,38,38,40,101,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,99,46,105,115,70,117,110,99,116,105,111,110,40,101,91,116,93,41,63,101,91,116,93,40,41,58,101,91,116,93,125,41,44,101,125,102,117,110,99,116,105,111,110,32,107,40,116,44,101,41,123,105,102,40,101,41,114,101,116,117,114,110,32,116,104,105,115,46,101,120,116,114,97,99,116,40,116,41,59,118,97,114,32,110,61,112,40,116,41,59,114,101,116,117,114,110,32,116,104,105,115,46,102,108,97,116,116,101,110,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,40,34,114,101,109,111,118,101,100,34,61,61,61,116,124,124,33,101,46,114,101,109,111,118,101,100,40,41,41,38,38,110,40,101,41,125,41,125,118,97,114,32,103,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,115,40,101,44,116,44,110,41,123,118,97,114,32,105,59,105,102,40,97,40,116,104,105,115,44,115,41,44,105,61,104,40,116,104,105,115,44,117,40,115,41,46,99,97,108,108,40,116,104,105,115,41,41,44,99,46,105,115,70,117,110,99,116,105,111,110,40,99,46,103,101,116,40,101,44,34,105,115,84,114,101,101,34,41,41,38,38,33,101,46,105,115,84,114,101,101,40,101,41,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,73,110,118,97,108,105,100,32,116,114,101,101,32,105,110,115,116,97,110,99,101,46,34,41,59,114,101,116,117,114,110,32,105,46,95,116,114,101,101,61,101,44,105,46,108,101,110,103,116,104,61,48,44,105,46,98,97,116,99,104,105,110,103,61,48,44,105,46,105,110,100,105,99,101,115,68,105,114,116,121,61,33,49,44,105,46,99,111,110,102,105,103,61,99,46,100,101,102,97,117,108,116,115,68,101,101,112,40,123,125,44,110,44,123,99,97,108,99,117,108,97,116,101,82,101,110,100,101,114,97,98,108,101,80,111,115,105,116,105,111,110,115,58,33,49,125,41,44,105,46,95,112,97,103,105,110,97,116,105,111,110,61,123,108,105,109,105,116,58,101,46,99,111,110,102,105,103,46,112,97,103,105,110,97,116,105,111,110,46,108,105,109,105,116,44,116,111,116,97,108,58,48,125,44,40,99,46,105,115,65,114,114,97,121,40,116,41,124,124,116,32,105,110,115,116,97,110,99,101,111,102,32,115,41,38,38,99,46,101,97,99,104,40,116,44,102,117,110,99,116,105,111,110,40,101,41,123,101,32,105,110,115,116,97,110,99,101,111,102,32,119,63,105,46,112,117,115,104,40,101,46,99,108,111,110,101,40,41,41,58,105,46,97,100,100,78,111,100,101,40,101,41,125,41,44,105,125,114,101,116,117,114,110,32,116,40,115,44,118,40,65,114,114,97,121,41,41,44,101,40,115,44,91,123,107,101,121,58,34,97,100,100,78,111,100,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,116,104,105,115,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,116,104,105,115,46,95,116,114,101,101,46,99,111,110,102,105,103,46,115,111,114,116,38,38,40,116,61,99,46,115,111,114,116,101,100,73,110,100,101,120,66,121,40,116,104,105,115,44,101,44,116,104,105,115,46,95,116,114,101,101,46,99,111,110,102,105,103,46,115,111,114,116,41,41,44,116,104,105,115,46,105,110,115,101,114,116,65,116,40,116,44,101,41,125,125,44,123,107,101,121,58,34,97,112,112,108,121,67,104,97,110,103,101,115,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,48,61,61,61,116,104,105,115,46,98,97,116,99,104,105,110,103,38,38,40,116,104,105,115,46,99,97,108,99,117,108,97,116,101,82,101,110,100,101,114,97,98,108,101,80,111,115,105,116,105,111,110,115,40,41,44,116,104,105,115,46,95,116,114,101,101,46,101,109,105,116,40,34,99,104,97,110,103,101,115,46,97,112,112,108,105,101,100,34,44,116,104,105,115,46,99,111,110,116,101,120,116,40,41,41,41,125,125,44,123,107,101,121,58,34,98,97,116,99,104,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,98,97,116,99,104,105,110,103,60,48,38,38,40,116,104,105,115,46,98,97,116,99,104,105,110,103,61,48,41,44,116,104,105,115,46,98,97,116,99,104,105,110,103,43,43,125,125,44,123,107,101,121,58,34,97,118,97,105,108,97,98,108,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,107,46,99,97,108,108,40,116,104,105,115,44,34,97,118,97,105,108,97,98,108,101,34,44,101,41,125,125,44,123,107,101,121,58,34,98,108,117,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,110,118,111,107,101,40,34,98,108,117,114,34,41,125,125,44,123,107,101,121,58,34,98,108,117,114,68,101,101,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,110,118,111,107,101,68,101,101,112,40,34,98,108,117,114,34,41,125,125,44,123,107,101,121,58,34,99,97,108,99,117,108,97,116,101,82,101,110,100,101,114,97,98,108,101,80,111,115,105,116,105,111,110,115,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,44,110,59,33,116,104,105,115,46,105,110,100,105,99,101,115,68,105,114,116,121,124,124,48,60,116,104,105,115,46,98,97,116,99,104,105,110,103,124,124,33,116,104,105,115,46,99,111,110,102,105,103,46,99,97,108,99,117,108,97,116,101,82,101,110,100,101,114,97,98,108,101,80,111,115,105,116,105,111,110,115,124,124,40,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,101,41,123,101,46,114,101,110,100,101,114,97,98,108,101,40,41,38,38,40,116,61,116,124,124,101,44,110,61,101,41,125,41,44,116,104,105,115,46,102,105,114,115,116,82,101,110,100,101,114,97,98,108,101,78,111,100,101,38,38,116,104,105,115,46,102,105,114,115,116,82,101,110,100,101,114,97,98,108,101,78,111,100,101,33,61,61,116,38,38,116,104,105,115,46,102,105,114,115,116,82,101,110,100,101,114,97,98,108,101,78,111,100,101,46,109,97,114,107,68,105,114,116,121,40,41,44,116,38,38,116,33,61,61,116,104,105,115,46,102,105,114,115,116,82,101,110,100,101,114,97,98,108,101,78,111,100,101,38,38,116,46,109,97,114,107,68,105,114,116,121,40,41,44,116,104,105,115,46,108,97,115,116,82,101,110,100,101,114,97,98,108,101,78,111,100,101,38,38,116,104,105,115,46,108,97,115,116,82,101,110,100,101,114,97,98,108,101,78,111,100,101,33,61,61,110,38,38,116,104,105,115,46,108,97,115,116,82,101,110,100,101,114,97,98,108,101,78,111,100,101,46,109,97,114,107,68,105,114,116,121,40,41,44,110,38,38,110,33,61,61,116,104,105,115,46,108,97,115,116,82,101,110,100,101,114,97,98,108,101,78,111,100,101,38,38,110,46,109,97,114,107,68,105,114,116,121,40,41,44,116,104,105,115,46,102,105,114,115,116,82,101,110,100,101,114,97,98,108,101,78,111,100,101,61,116,44,116,104,105,115,46,108,97,115,116,82,101,110,100,101,114,97,98,108,101,78,111,100,101,61,110,44,116,104,105,115,46,105,110,100,105,99,101,115,68,105,114,116,121,61,33,49,41,125,125,44,123,107,101,121,58,34,99,104,101,99,107,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,107,46,99,97,108,108,40,116,104,105,115,44,34,99,104,101,99,107,101,100,34,44,101,41,125,125,44,123,107,101,121,58,34,99,108,101,97,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,110,118,111,107,101,40,34,99,108,101,97,110,34,41,125,125,44,123,107,101,121,58,34,99,108,111,110,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,110,101,119,32,115,40,116,104,105,115,46,95,116,114,101,101,44,116,104,105,115,41,125,125,44,123,107,101,121,58,34,99,111,108,108,97,112,115,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,110,118,111,107,101,40,34,99,111,108,108,97,112,115,101,34,41,125,125,44,123,107,101,121,58,34,99,111,108,108,97,112,115,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,107,46,99,97,108,108,40,116,104,105,115,44,34,99,111,108,108,97,112,115,101,100,34,44,101,41,125,125,44,123,107,101,121,58,34,99,111,108,108,97,112,115,101,68,101,101,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,110,118,111,107,101,68,101,101,112,40,34,99,111,108,108,97,112,115,101,34,41,125,125,44,123,107,101,121,58,34,99,111,110,99,97,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,110,101,119,32,115,40,116,104,105,115,46,95,116,114,101,101,41,59,116,46,95,99,111,110,116,101,120,116,61,116,104,105,115,46,95,99,111,110,116,101,120,116,59,102,117,110,99,116,105,111,110,32,110,40,101,41,123,101,32,105,110,115,116,97,110,99,101,111,102,32,119,38,38,116,46,112,117,115,104,40,101,41,125,114,101,116,117,114,110,32,99,46,101,97,99,104,40,116,104,105,115,44,110,41,44,99,46,101,97,99,104,40,101,44,110,41,44,116,46,95,112,97,103,105,110,97,116,105,111,110,46,108,105,109,105,116,61,116,104,105,115,46,95,112,97,103,105,110,97,116,105,111,110,46,108,105,109,105,116,44,116,125,125,44,123,107,101,121,58,34,99,111,110,116,101,120,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,99,111,110,116,101,120,116,124,124,116,104,105,115,46,95,116,114,101,101,125,125,44,123,107,101,121,58,34,99,111,112,121,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,116,44,110,44,105,41,123,118,97,114,32,114,61,110,101,119,32,115,40,116,104,105,115,46,95,116,114,101,101,41,59,114,101,116,117,114,110,32,99,46,101,97,99,104,40,116,104,105,115,44,102,117,110,99,116,105,111,110,40,101,41,123,114,46,112,117,115,104,40,101,46,99,111,112,121,40,116,44,110,44,105,41,41,125,41,44,114,125,125,44,123,107,101,121,58,34,100,101,101,112,101,115,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,110,101,119,32,115,40,116,104,105,115,46,95,116,114,101,101,41,59,114,101,116,117,114,110,32,116,104,105,115,46,114,101,99,117,114,115,101,68,111,119,110,40,102,117,110,99,116,105,111,110,40,101,41,123,101,46,99,104,105,108,100,114,101,110,124,124,116,46,112,117,115,104,40,101,41,125,41,44,116,125,125,44,123,107,101,121,58,34,100,101,115,101,108,101,99,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,110,118,111,107,101,40,34,100,101,115,101,108,101,99,116,34,41,125,125,44,123,107,101,121,58,34,100,101,115,101,108,101,99,116,68,101,101,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,110,118,111,107,101,68,101,101,112,40,34,100,101,115,101,108,101,99,116,34,41,125,125,44,123,107,101,121,58,34,101,97,99,104,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,99,46,101,97,99,104,40,116,104,105,115,44,101,41,44,116,104,105,115,125,125,44,123,107,101,121,58,34,101,100,105,116,97,98,108,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,107,46,99,97,108,108,40,116,104,105,115,44,34,101,100,105,116,97,98,108,101,34,44,101,41,125,125,44,123,107,101,121,58,34,101,100,105,116,105,110,103,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,107,46,99,97,108,108,40,116,104,105,115,44,34,101,100,105,116,105,110,103,34,44,101,41,125,125,44,123,107,101,121,58,34,101,110,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,98,97,116,99,104,105,110,103,45,45,44,48,61,61,61,116,104,105,115,46,98,97,116,99,104,105,110,103,38,38,116,104,105,115,46,97,112,112,108,121,67,104,97,110,103,101,115,40,41,125,125,44,123,107,101,121,58,34,101,120,112,97,110,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,110,118,111,107,101,40,34,101,120,112,97,110,100,34,41,125,125,44,123,107,101,121,58,34,101,120,112,97,110,100,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,107,46,99,97,108,108,40,116,104,105,115,44,34,101,120,112,97,110,100,101,100,34,44,101,41,125,125,44,123,107,101,121,58,34,101,120,112,97,110,100,68,101,101,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,105,61,116,104,105,115,59,114,101,116,117,114,110,32,110,101,119,32,102,40,102,117,110,99,116,105,111,110,40,101,41,123,102,117,110,99,116,105,111,110,32,116,40,41,123,48,61,61,45,45,110,38,38,101,40,105,41,125,118,97,114,32,110,61,48,59,105,46,114,101,99,117,114,115,101,68,111,119,110,40,102,117,110,99,116,105,111,110,40,101,41,123,110,43,43,44,101,46,99,104,105,108,100,114,101,110,63,101,46,101,120,112,97,110,100,40,41,46,99,97,116,99,104,40,116,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,41,123,101,46,99,104,105,108,100,114,101,110,46,101,120,112,97,110,100,68,101,101,112,40,41,46,99,97,116,99,104,40,116,41,46,116,104,101,110,40,116,41,125,41,58,116,40,41,125,41,125,41,125,125,44,123,107,101,121,58,34,101,120,112,97,110,100,80,97,114,101,110,116,115,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,110,118,111,107,101,40,34,101,120,112,97,110,100,80,97,114,101,110,116,115,34,41,125,125,44,123,107,101,121,58,34,101,120,116,114,97,99,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,116,104,105,115,46,102,108,97,116,116,101,110,40,101,41,44,110,61,110,101,119,32,115,40,116,104,105,115,46,95,116,114,101,101,41,59,114,101,116,117,114,110,32,99,46,101,97,99,104,40,116,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,110,46,97,100,100,78,111,100,101,40,101,46,99,111,112,121,72,105,101,114,97,114,99,104,121,40,41,41,125,41,44,110,125,125,44,123,107,101,121,58,34,102,105,108,116,101,114,66,121,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,112,40,101,41,44,110,61,110,101,119,32,115,40,116,104,105,115,46,95,116,114,101,101,41,59,114,101,116,117,114,110,32,99,46,101,97,99,104,40,116,104,105,115,44,102,117,110,99,116,105,111,110,40,101,41,123,116,40,101,41,38,38,110,46,112,117,115,104,40,101,41,125,41,44,110,125,125,44,123,107,101,121,58,34,102,105,110,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,59,114,101,116,117,114,110,32,116,104,105,115,46,114,101,99,117,114,115,101,68,111,119,110,40,102,117,110,99,116,105,111,110,40,101,41,123,105,102,40,116,40,101,41,41,114,101,116,117,114,110,32,110,61,101,44,33,49,125,41,44,110,125,125,44,123,107,101,121,58,34,102,105,114,115,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,102,111,114,40,118,97,114,32,116,61,48,44,110,61,116,104,105,115,46,108,101,110,103,116,104,59,116,60,110,59,116,43,43,41,105,102,40,101,40,116,104,105,115,91,116,93,41,41,114,101,116,117,114,110,32,116,104,105,115,91,116,93,125,125,44,123,107,101,121,58,34,102,108,97,116,116,101,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,110,101,119,32,115,40,116,104,105,115,46,95,116,114,101,101,41,44,110,61,112,40,101,41,59,114,101,116,117,114,110,32,116,104,105,115,46,114,101,99,117,114,115,101,68,111,119,110,40,102,117,110,99,116,105,111,110,40,101,41,123,110,40,101,41,38,38,116,46,112,117,115,104,40,101,41,125,41,44,116,125,125,44,123,107,101,121,58,34,102,111,99,117,115,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,107,46,99,97,108,108,40,116,104,105,115,44,34,102,111,99,117,115,101,100,34,44,101,41,125,125,44,123,107,101,121,58,34,102,111,114,69,97,99,104,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,101,41,125,125,44,123,107,101,121,58,34,103,101,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,104,105,115,91,101,93,125,125,44,123,107,101,121,58,34,104,105,100,100,101,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,107,46,99,97,108,108,40,116,104,105,115,44,34,104,105,100,100,101,110,34,44,101,41,125,125,44,123,107,101,121,58,34,104,105,100,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,110,118,111,107,101,40,34,104,105,100,101,34,41,125,125,44,123,107,101,121,58,34,104,105,100,101,68,101,101,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,110,118,111,107,101,68,101,101,112,40,34,104,105,100,101,34,41,125,125,44,123,107,101,121,58,34,105,110,100,101,116,101,114,109,105,110,97,116,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,107,46,99,97,108,108,40,116,104,105,115,44,34,105,110,100,101,116,101,114,109,105,110,97,116,101,34,44,101,41,125,125,44,123,107,101,121,58,34,105,110,115,101,114,116,65,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,102,40,116,46,105,100,41,123,118,97,114,32,110,61,116,104,105,115,46,110,111,100,101,40,116,46,105,100,41,59,105,102,40,110,41,114,101,116,117,114,110,32,110,46,114,101,115,116,111,114,101,40,41,46,115,104,111,119,40,41,44,99,46,105,115,65,114,114,97,121,76,105,107,101,40,116,46,99,104,105,108,100,114,101,110,41,63,40,99,46,105,115,65,114,114,97,121,76,105,107,101,40,110,46,99,104,105,108,100,114,101,110,41,124,124,40,110,46,99,104,105,108,100,114,101,110,61,110,101,119,32,115,40,116,104,105,115,46,95,116,114,101,101,41,44,110,46,99,104,105,108,100,114,101,110,46,95,99,111,110,116,101,120,116,61,110,41,44,99,46,101,97,99,104,40,116,46,99,104,105,108,100,114,101,110,44,102,117,110,99,116,105,111,110,40,101,41,123,110,46,99,104,105,108,100,114,101,110,46,97,100,100,78,111,100,101,40,101,41,125,41,41,58,116,46,99,104,105,108,100,114,101,110,38,38,99,46,105,115,66,111,111,108,101,97,110,40,110,46,99,104,105,108,100,114,101,110,41,38,38,40,110,46,99,104,105,108,100,114,101,110,61,116,46,99,104,105,108,100,114,101,110,41,44,110,46,109,97,114,107,68,105,114,116,121,40,41,44,116,104,105,115,46,97,112,112,108,121,67,104,97,110,103,101,115,40,41,44,110,125,118,97,114,32,105,61,116,104,105,115,46,95,116,114,101,101,46,99,111,110,115,116,114,117,99,116,111,114,46,105,115,84,114,101,101,78,111,100,101,40,116,41,63,116,58,67,40,116,104,105,115,46,95,116,114,101,101,44,116,41,59,114,101,116,117,114,110,32,116,104,105,115,46,115,112,108,105,99,101,40,101,44,48,44,105,41,44,116,104,105,115,46,95,99,111,110,116,101,120,116,38,38,40,105,46,105,116,114,101,101,46,112,97,114,101,110,116,61,116,104,105,115,46,95,99,111,110,116,101,120,116,44,116,104,105,115,46,95,99,111,110,116,101,120,116,46,114,101,102,114,101,115,104,73,110,100,101,116,101,114,109,105,110,97,116,101,83,116,97,116,101,40,41,46,109,97,114,107,68,105,114,116,121,40,41,41,44,116,104,105,115,46,95,116,114,101,101,46,101,109,105,116,40,34,110,111,100,101,46,97,100,100,101,100,34,44,105,41,44,105,46,109,97,114,107,68,105,114,116,121,40,41,44,116,104,105,115,46,108,101,110,103,116,104,45,49,33,61,61,101,38,38,116,104,105,115,46,105,110,118,111,107,101,40,34,109,97,114,107,68,105,114,116,121,34,41,44,116,104,105,115,46,97,112,112,108,121,67,104,97,110,103,101,115,40,41,44,105,125,125,44,123,107,101,121,58,34,105,110,118,111,107,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,121,40,116,104,105,115,44,101,44,116,41,125,125,44,123,107,101,121,58,34,105,110,118,111,107,101,68,101,101,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,40,33,99,46,105,115,65,114,114,97,121,76,105,107,101,79,98,106,101,99,116,40,116,41,124,124,50,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,38,38,40,116,61,99,46,116,97,105,108,40,97,114,103,117,109,101,110,116,115,41,41,44,121,40,116,104,105,115,44,101,44,116,44,33,48,41,125,125,44,123,107,101,121,58,34,108,97,115,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,102,111,114,40,118,97,114,32,116,61,116,104,105,115,46,108,101,110,103,116,104,45,49,59,48,60,61,116,59,116,45,45,41,105,102,40,101,40,116,104,105,115,91,116,93,41,41,114,101,116,117,114,110,32,116,104,105,115,91,116,93,125,125,44,123,107,101,121,58,34,108,111,97,100,105,110,103,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,107,46,99,97,108,108,40,116,104,105,115,44,34,108,111,97,100,105,110,103,34,44,101,41,125,125,44,123,107,101,121,58,34,108,111,97,100,77,111,114,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,44,110,61,116,104,105,115,59,114,101,116,117,114,110,32,116,104,105,115,46,95,108,111,97,100,105,110,103,63,102,46,114,101,106,101,99,116,40,110,101,119,32,69,114,114,111,114,40,34,80,101,110,100,105,110,103,32,108,111,97,100,77,111,114,101,32,99,97,108,108,32,109,117,115,116,32,99,111,109,112,108,101,116,101,32,98,101,102,111,114,101,32,98,101,105,110,103,32,105,110,118,111,107,101,100,32,97,103,97,105,110,46,34,41,41,58,116,104,105,115,46,95,112,97,103,105,110,97,116,105,111,110,46,108,105,109,105,116,61,61,61,116,104,105,115,46,95,112,97,103,105,110,97,116,105,111,110,46,116,111,116,97,108,63,102,46,114,101,115,111,108,118,101,40,41,58,40,116,104,105,115,46,95,108,111,97,100,105,110,103,61,33,48,44,116,104,105,115,46,98,97,116,99,104,40,41,44,99,46,105,110,118,111,107,101,40,116,104,105,115,46,95,99,111,110,116,101,120,116,44,34,109,97,114,107,68,105,114,116,121,34,41,44,116,104,105,115,46,95,112,97,103,105,110,97,116,105,111,110,46,108,105,109,105,116,43,61,116,104,105,115,46,95,116,114,101,101,46,99,111,110,102,105,103,46,112,97,103,105,110,97,116,105,111,110,46,108,105,109,105,116,44,116,104,105,115,46,95,116,114,101,101,46,101,109,105,116,40,34,110,111,100,101,46,112,97,103,105,110,97,116,101,100,34,44,116,104,105,115,46,95,99,111,110,116,101,120,116,124,124,116,104,105,115,46,95,116,114,101,101,44,116,104,105,115,46,112,97,103,105,110,97,116,105,111,110,44,101,41,44,116,61,116,104,105,115,46,95,116,114,101,101,46,99,111,110,102,105,103,46,100,101,102,101,114,114,101,100,76,111,97,100,105,110,103,63,116,104,105,115,46,95,99,111,110,116,101,120,116,63,116,104,105,115,46,95,99,111,110,116,101,120,116,46,108,111,97,100,67,104,105,108,100,114,101,110,40,41,58,116,104,105,115,46,95,116,114,101,101,46,108,111,97,100,40,116,104,105,115,46,95,116,114,101,101,46,99,111,110,102,105,103,46,100,97,116,97,41,58,40,116,104,105,115,46,95,108,111,97,100,105,110,103,61,33,49,44,102,46,114,101,115,111,108,118,101,40,41,41,44,116,104,105,115,46,101,110,100,40,41,44,116,104,105,115,46,95,116,114,101,101,46,99,111,110,102,105,103,46,100,101,102,101,114,114,101,100,76,111,97,100,105,110,103,38,38,116,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,41,123,110,46,95,108,111,97,100,105,110,103,61,33,49,44,110,46,97,112,112,108,121,67,104,97,110,103,101,115,40,41,125,41,46,99,97,116,99,104,40,102,117,110,99,116,105,111,110,40,41,123,110,46,95,108,111,97,100,105,110,103,61,33,49,44,110,46,97,112,112,108,121,67,104,97,110,103,101,115,40,41,125,41,44,116,41,125,125,44,123,107,101,121,58,34,109,97,116,99,104,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,107,46,99,97,108,108,40,116,104,105,115,44,34,109,97,116,99,104,101,100,34,44,101,41,125,125,44,123,107,101,121,58,34,109,111,118,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,105,61,50,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,38,38,118,111,105,100,32,48,33,61,61,110,63,110,58,116,104,105,115,44,114,61,116,104,105,115,91,101,93,46,114,101,109,111,118,101,40,41,44,115,61,105,46,105,110,115,101,114,116,65,116,40,116,44,114,41,59,114,101,116,117,114,110,32,116,104,105,115,46,95,116,114,101,101,46,101,109,105,116,40,34,110,111,100,101,46,109,111,118,101,100,34,44,115,44,116,104,105,115,44,101,44,105,44,116,41,44,115,125,125,44,123,107,101,121,58,34,110,111,100,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,59,114,101,116,117,114,110,32,116,104,105,115,46,114,101,99,117,114,115,101,68,111,119,110,40,102,117,110,99,116,105,111,110,40,101,41,123,105,102,40,101,46,105,100,61,61,61,116,41,114,101,116,117,114,110,32,110,61,101,44,33,49,125,41,44,110,125,125,44,123,107,101,121,58,34,110,111,100,101,115,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,59,114,101,116,117,114,110,32,99,46,105,115,65,114,114,97,121,40,116,41,38,38,40,110,61,110,101,119,32,115,40,116,104,105,115,46,95,116,114,101,101,41,44,116,104,105,115,46,114,101,99,117,114,115,101,68,111,119,110,40,102,117,110,99,116,105,111,110,40,101,41,123,45,49,60,116,46,105,110,100,101,120,79,102,40,101,46,105,100,41,38,38,110,46,112,117,115,104,40,101,41,125,41,41,44,99,46,105,115,65,114,114,97,121,40,116,41,63,110,58,116,104,105,115,125,125,44,123,107,101,121,58,34,112,97,103,105,110,97,116,105,111,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,112,97,103,105,110,97,116,105,111,110,125,125,44,123,107,101,121,58,34,112,111,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,114,40,117,40,115,46,112,114,111,116,111,116,121,112,101,41,44,34,112,111,112,34,44,116,104,105,115,41,46,99,97,108,108,40,116,104,105,115,41,59,114,101,116,117,114,110,32,116,104,105,115,46,105,110,100,105,99,101,115,68,105,114,116,121,61,33,48,44,116,104,105,115,46,99,97,108,99,117,108,97,116,101,82,101,110,100,101,114,97,98,108,101,80,111,115,105,116,105,111,110,115,40,41,44,101,125,125,44,123,107,101,121,58,34,112,117,115,104,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,114,40,117,40,115,46,112,114,111,116,111,116,121,112,101,41,44,34,112,117,115,104,34,44,116,104,105,115,41,46,99,97,108,108,40,116,104,105,115,44,101,41,59,114,101,116,117,114,110,32,116,104,105,115,46,105,110,100,105,99,101,115,68,105,114,116,121,61,33,48,44,116,104,105,115,46,99,97,108,99,117,108,97,116,101,82,101,110,100,101,114,97,98,108,101,80,111,115,105,116,105,111,110,115,40,41,44,116,125,125,44,123,107,101,121,58,34,114,101,99,117,114,115,101,68,111,119,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,95,40,116,104,105,115,44,101,41,44,116,104,105,115,125,125,44,123,107,101,121,58,34,114,101,109,111,118,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,99,46,114,101,109,111,118,101,40,116,104,105,115,44,123,105,100,58,101,46,105,100,125,41,44,99,46,105,110,118,111,107,101,40,116,104,105,115,46,95,99,111,110,116,101,120,116,44,34,109,97,114,107,68,105,114,116,121,34,41,44,116,104,105,115,46,105,110,100,105,99,101,115,68,105,114,116,121,61,33,48,44,116,104,105,115,46,97,112,112,108,121,67,104,97,110,103,101,115,40,41,44,116,104,105,115,125,125,44,123,107,101,121,58,34,114,101,109,111,118,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,107,46,99,97,108,108,40,116,104,105,115,44,34,114,101,109,111,118,101,100,34,44,101,41,125,125,44,123,107,101,121,58,34,114,101,115,116,111,114,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,110,118,111,107,101,40,34,114,101,115,116,111,114,101,34,41,125,125,44,123,107,101,121,58,34,114,101,115,116,111,114,101,68,101,101,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,110,118,111,107,101,68,101,101,112,40,34,114,101,115,116,111,114,101,34,41,125,125,44,123,107,101,121,58,34,115,101,108,101,99,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,110,118,111,107,101,40,34,115,101,108,101,99,116,34,41,125,125,44,123,107,101,121,58,34,115,101,108,101,99,116,97,98,108,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,107,46,99,97,108,108,40,116,104,105,115,44,34,115,101,108,101,99,116,97,98,108,101,34,44,101,41,125,125,44,123,107,101,121,58,34,115,101,108,101,99,116,68,101,101,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,110,118,111,107,101,68,101,101,112,40,34,115,101,108,101,99,116,34,41,125,125,44,123,107,101,121,58,34,115,101,108,101,99,116,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,107,46,99,97,108,108,40,116,104,105,115,44,34,115,101,108,101,99,116,101,100,34,44,101,41,125,125,44,123,107,101,121,58,34,115,104,105,102,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,114,40,117,40,115,46,112,114,111,116,111,116,121,112,101,41,44,34,115,104,105,102,116,34,44,116,104,105,115,41,46,99,97,108,108,40,116,104,105,115,44,101,41,59,114,101,116,117,114,110,32,116,104,105,115,46,105,110,100,105,99,101,115,68,105,114,116,121,61,33,48,44,116,104,105,115,46,99,97,108,99,117,108,97,116,101,82,101,110,100,101,114,97,98,108,101,80,111,115,105,116,105,111,110,115,40,41,44,116,125,125,44,123,107,101,121,58,34,115,104,111,119,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,110,118,111,107,101,40,34,115,104,111,119,34,41,125,125,44,123,107,101,121,58,34,115,104,111,119,68,101,101,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,110,118,111,107,101,68,101,101,112,40,34,115,104,111,119,34,41,125,125,44,123,107,101,121,58,34,115,111,102,116,82,101,109,111,118,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,110,118,111,107,101,40,34,115,111,102,116,82,101,109,111,118,101,34,41,125,125,44,123,107,101,121,58,34,115,111,114,116,66,121,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,116,104,105,115,59,105,102,40,101,61,101,124,124,116,104,105,115,46,95,116,114,101,101,46,99,111,110,102,105,103,46,115,111,114,116,41,123,116,104,105,115,46,98,97,116,99,104,40,41,59,118,97,114,32,110,61,99,46,115,111,114,116,66,121,40,116,104,105,115,44,101,41,59,116,104,105,115,46,108,101,110,103,116,104,61,48,44,99,46,101,97,99,104,40,110,44,102,117,110,99,116,105,111,110,40,101,41,123,116,46,112,117,115,104,40,101,41,125,41,44,116,104,105,115,46,105,110,100,105,99,101,115,68,105,114,116,121,61,33,48,44,116,104,105,115,46,101,110,100,40,41,125,114,101,116,117,114,110,32,116,104,105,115,125,125,44,123,107,101,121,58,34,115,111,114,116,68,101,101,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,104,105,115,46,115,111,114,116,40,116,41,44,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,101,41,123,101,46,104,97,115,67,104,105,108,100,114,101,110,40,41,38,38,101,46,99,104,105,108,100,114,101,110,46,115,111,114,116,68,101,101,112,40,116,41,125,41,44,116,104,105,115,125,125,44,123,107,101,121,58,34,115,112,108,105,99,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,114,40,117,40,115,46,112,114,111,116,111,116,121,112,101,41,44,34,115,112,108,105,99,101,34,44,116,104,105,115,41,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,59,114,101,116,117,114,110,32,116,104,105,115,46,105,110,100,105,99,101,115,68,105,114,116,121,61,33,48,44,116,104,105,115,46,99,97,108,99,117,108,97,116,101,82,101,110,100,101,114,97,98,108,101,80,111,115,105,116,105,111,110,115,40,41,44,101,125,125,44,123,107,101,121,58,34,115,116,97,116,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,110,118,111,107,101,40,34,115,116,97,116,101,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,115,116,97,116,101,68,101,101,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,110,118,111,107,101,68,101,101,112,40,34,115,116,97,116,101,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,115,119,97,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,116,104,105,115,46,95,116,114,101,101,46,98,97,116,99,104,40,41,59,118,97,114,32,110,61,101,46,99,111,110,116,101,120,116,40,41,44,105,61,116,46,99,111,110,116,101,120,116,40,41,44,114,61,110,46,105,110,100,101,120,79,102,40,101,41,44,115,61,105,46,105,110,100,101,120,79,102,40,116,41,59,114,101,116,117,114,110,32,110,61,61,61,105,63,40,116,104,105,115,91,114,93,61,116,44,116,104,105,115,91,115,93,61,101,44,116,104,105,115,46,95,116,114,101,101,46,101,109,105,116,40,34,110,111,100,101,46,109,111,118,101,100,34,44,101,44,110,44,114,44,105,44,115,41,44,116,104,105,115,46,95,116,114,101,101,46,101,109,105,116,40,34,110,111,100,101,46,109,111,118,101,100,34,44,116,44,105,44,115,44,110,44,114,41,41,58,40,110,46,109,111,118,101,40,114,44,105,46,105,110,100,101,120,79,102,40,116,41,44,105,41,44,105,46,109,111,118,101,40,105,46,105,110,100,101,120,79,102,40,116,41,44,114,44,110,41,41,44,116,104,105,115,46,105,110,100,105,99,101,115,68,105,114,116,121,61,33,48,44,116,104,105,115,46,95,116,114,101,101,46,101,110,100,40,41,44,116,104,105,115,46,95,116,114,101,101,46,101,109,105,116,40,34,110,111,100,101,46,115,119,97,112,112,101,100,34,44,101,44,110,44,114,44,116,44,105,44,115,41,44,116,104,105,115,125,125,44,123,107,101,121,58,34,116,114,101,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,116,114,101,101,125,125,44,123,107,101,121,58,34,116,111,65,114,114,97,121,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,91,93,59,114,101,116,117,114,110,32,99,46,101,97,99,104,40,116,104,105,115,44,102,117,110,99,116,105,111,110,40,101,41,123,116,46,112,117,115,104,40,101,46,116,111,79,98,106,101,99,116,40,41,41,125,41,44,116,125,125,44,123,107,101,121,58,34,117,110,115,104,105,102,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,114,40,117,40,115,46,112,114,111,116,111,116,121,112,101,41,44,34,117,110,115,104,105,102,116,34,44,116,104,105,115,41,46,99,97,108,108,40,116,104,105,115,44,101,41,59,114,101,116,117,114,110,32,116,104,105,115,46,105,110,100,105,99,101,115,68,105,114,116,121,61,33,48,44,116,104,105,115,46,99,97,108,99,117,108,97,116,101,82,101,110,100,101,114,97,98,108,101,80,111,115,105,116,105,111,110,115,40,41,44,116,125,125,44,123,107,101,121,58,34,118,105,115,105,98,108,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,107,46,99,97,108,108,40,116,104,105,115,44,34,118,105,115,105,98,108,101,34,44,101,41,125,125,93,41,44,115,125,40,41,59,102,117,110,99,116,105,111,110,32,95,40,101,44,116,41,123,118,97,114,32,110,59,114,101,116,117,114,110,32,101,32,105,110,115,116,97,110,99,101,111,102,32,103,63,99,46,101,97,99,104,40,101,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,110,61,95,40,101,44,116,41,125,41,58,101,32,105,110,115,116,97,110,99,101,111,102,32,119,38,38,33,49,33,61,61,40,110,61,116,40,101,41,41,38,38,101,46,104,97,115,67,104,105,108,100,114,101,110,40,41,38,38,40,110,61,95,40,101,46,99,104,105,108,100,114,101,110,44,116,41,41,44,110,125,102,117,110,99,116,105,111,110,32,109,40,110,41,123,114,101,116,117,114,110,32,110,101,119,32,102,40,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,102,40,33,99,46,105,115,79,98,106,101,99,116,40,110,41,41,114,101,116,117,114,110,32,116,40,110,101,119,32,69,114,114,111,114,40,34,73,110,118,97,108,105,100,32,80,114,111,109,105,115,101,34,41,41,59,99,46,105,115,70,117,110,99,116,105,111,110,40,110,46,116,104,101,110,41,38,38,110,46,116,104,101,110,40,101,41,44,99,46,105,115,70,117,110,99,116,105,111,110,40,110,46,101,114,114,111,114,41,63,110,46,101,114,114,111,114,40,116,41,58,99,46,105,115,70,117,110,99,116,105,111,110,40,110,46,99,97,116,99,104,41,38,38,110,46,99,97,116,99,104,40,116,41,125,41,125,102,117,110,99,116,105,111,110,32,98,40,101,44,116,44,110,41,123,118,97,114,32,105,61,101,46,105,116,114,101,101,46,115,116,97,116,101,91,116,93,59,114,101,116,117,114,110,32,118,111,105,100,32,48,33,61,61,110,38,38,105,33,61,61,110,38,38,40,101,46,105,116,114,101,101,46,115,116,97,116,101,91,116,93,61,110,44,34,114,101,110,100,101,114,101,100,34,33,61,61,116,38,38,101,46,109,97,114,107,68,105,114,116,121,40,41,44,101,46,95,116,114,101,101,46,101,109,105,116,40,34,110,111,100,101,46,115,116,97,116,101,46,99,104,97,110,103,101,100,34,44,101,44,116,44,105,44,110,41,41,44,105,125,102,111,114,40,118,97,114,32,119,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,114,40,101,44,116,44,110,41,123,118,97,114,32,105,61,116,104,105,115,59,97,40,116,104,105,115,44,114,41,44,116,104,105,115,46,95,116,114,101,101,61,101,44,116,32,105,110,115,116,97,110,99,101,111,102,32,114,38,38,40,40,110,61,99,46,99,97,115,116,65,114,114,97,121,40,110,41,41,46,112,117,115,104,40,34,95,116,114,101,101,34,41,44,99,46,101,97,99,104,40,116,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,99,46,105,110,99,108,117,100,101,115,40,110,44,116,41,124,124,40,99,46,105,115,79,98,106,101,99,116,40,101,41,63,105,91,116,93,61,101,32,105,110,115,116,97,110,99,101,111,102,32,103,63,101,46,99,108,111,110,101,40,41,58,34,105,116,114,101,101,34,61,61,61,116,63,102,117,110,99,116,105,111,110,40,101,44,110,41,123,118,97,114,32,105,61,123,125,59,114,101,116,117,114,110,40,110,61,99,46,99,97,115,116,65,114,114,97,121,40,110,41,41,46,112,117,115,104,40,34,114,101,102,34,41,44,99,46,101,97,99,104,40,101,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,99,46,105,110,99,108,117,100,101,115,40,110,44,116,41,124,124,40,105,91,116,93,61,99,46,99,108,111,110,101,68,101,101,112,40,101,41,41,125,41,44,105,125,40,101,41,58,99,46,99,108,111,110,101,68,101,101,112,40,101,41,58,105,91,116,93,61,101,41,125,41,41,125,114,101,116,117,114,110,32,101,40,114,44,91,123,107,101,121,58,34,97,100,100,67,104,105,108,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,33,99,46,105,115,65,114,114,97,121,40,116,104,105,115,46,99,104,105,108,100,114,101,110,41,38,38,99,46,105,115,65,114,114,97,121,76,105,107,101,40,116,104,105,115,46,99,104,105,108,100,114,101,110,41,124,124,40,116,104,105,115,46,99,104,105,108,100,114,101,110,61,110,101,119,32,103,40,116,104,105,115,46,95,116,114,101,101,41,44,116,104,105,115,46,99,104,105,108,100,114,101,110,46,95,99,111,110,116,101,120,116,61,116,104,105,115,41,44,116,104,105,115,46,99,104,105,108,100,114,101,110,46,97,100,100,78,111,100,101,40,101,41,125,125,44,123,107,101,121,58,34,97,100,100,67,104,105,108,100,114,101,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,116,104,105,115,44,110,61,110,101,119,32,103,40,116,104,105,115,46,95,116,114,101,101,41,59,114,101,116,117,114,110,33,99,46,105,115,65,114,114,97,121,40,116,104,105,115,46,99,104,105,108,100,114,101,110,41,38,38,99,46,105,115,65,114,114,97,121,76,105,107,101,40,116,104,105,115,46,99,104,105,108,100,114,101,110,41,124,124,40,116,104,105,115,46,99,104,105,108,100,114,101,110,61,110,101,119,32,103,40,116,104,105,115,46,95,116,114,101,101,41,44,116,104,105,115,46,99,104,105,108,100,114,101,110,46,95,99,111,110,116,101,120,116,61,116,104,105,115,41,44,116,104,105,115,46,99,104,105,108,100,114,101,110,46,98,97,116,99,104,40,41,44,99,46,101,97,99,104,40,101,44,102,117,110,99,116,105,111,110,40,101,41,123,110,46,112,117,115,104,40,116,46,97,100,100,67,104,105,108,100,40,101,41,41,125,41,44,116,104,105,115,46,99,104,105,108,100,114,101,110,46,101,110,100,40,41,44,110,125,125,44,123,107,101,121,58,34,97,108,108,111,119,68,121,110,97,109,105,99,76,111,97,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,116,114,101,101,46,105,115,68,121,110,97,109,105,99,38,38,40,99,46,105,115,65,114,114,97,121,76,105,107,101,40,116,104,105,115,46,99,104,105,108,100,114,101,110,41,124,124,33,48,61,61,61,116,104,105,115,46,99,104,105,108,100,114,101,110,41,125,125,44,123,107,101,121,58,34,97,115,115,105,103,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,99,46,97,115,115,105,103,110,46,97,112,112,108,121,40,99,44,91,116,104,105,115,93,46,99,111,110,99,97,116,40,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,115,108,105,99,101,46,99,97,108,108,40,97,114,103,117,109,101,110,116,115,41,41,41,44,116,104,105,115,46,109,97,114,107,68,105,114,116,121,40,41,44,116,104,105,115,46,99,111,110,116,101,120,116,40,41,46,97,112,112,108,121,67,104,97,110,103,101,115,40,41,44,116,104,105,115,125,125,44,123,107,101,121,58,34,97,118,97,105,108,97,98,108,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,33,116,104,105,115,46,104,105,100,100,101,110,40,41,38,38,33,116,104,105,115,46,114,101,109,111,118,101,100,40,41,125,125,44,123,107,101,121,58,34,98,108,117,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,115,116,97,116,101,40,34,101,100,105,116,105,110,103,34,44,33,49,41,44,111,40,34,102,111,99,117,115,101,100,34,44,33,49,44,34,98,108,117,114,114,101,100,34,44,116,104,105,115,41,125,125,44,123,107,101,121,58,34,99,104,101,99,107,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,116,114,101,101,46,98,97,116,99,104,40,41,44,111,40,34,99,104,101,99,107,101,100,34,44,33,48,44,34,99,104,101,99,107,101,100,34,44,116,104,105,115,44,33,101,38,38,116,104,105,115,46,95,116,114,101,101,46,99,111,110,102,105,103,46,99,104,101,99,107,98,111,120,46,97,117,116,111,67,104,101,99,107,67,104,105,108,100,114,101,110,41,44,116,104,105,115,46,104,97,115,80,97,114,101,110,116,40,41,38,38,116,104,105,115,46,103,101,116,80,97,114,101,110,116,40,41,46,114,101,102,114,101,115,104,73,110,100,101,116,101,114,109,105,110,97,116,101,83,116,97,116,101,40,41,44,116,104,105,115,46,95,116,114,101,101,46,101,110,100,40,41,44,116,104,105,115,125,125,44,123,107,101,121,58,34,99,104,101,99,107,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,115,116,97,116,101,40,34,99,104,101,99,107,101,100,34,41,125,125,44,123,107,101,121,58,34,99,108,101,97,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,114,101,99,117,114,115,101,85,112,40,102,117,110,99,116,105,111,110,40,101,41,123,105,102,40,101,46,104,97,115,80,97,114,101,110,116,40,41,41,123,118,97,114,32,116,61,101,46,103,101,116,80,97,114,101,110,116,40,41,59,116,46,104,97,115,86,105,115,105,98,108,101,67,104,105,108,100,114,101,110,40,41,124,124,116,46,104,105,100,101,40,41,125,125,41,44,116,104,105,115,125,125,44,123,107,101,121,58,34,99,108,111,110,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,110,101,119,32,114,40,116,104,105,115,46,95,116,114,101,101,44,116,104,105,115,44,101,41,125,125,44,123,107,101,121,58,34,99,111,108,108,97,112,115,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,111,40,34,99,111,108,108,97,112,115,101,100,34,44,33,48,44,34,99,111,108,108,97,112,115,101,100,34,44,116,104,105,115,41,125,125,44,123,107,101,121,58,34,99,111,108,108,97,112,115,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,115,116,97,116,101,40,34,99,111,108,108,97,112,115,101,100,34,41,125,125,44,123,107,101,121,58,34,99,111,110,116,101,120,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,104,97,115,80,97,114,101,110,116,40,41,63,116,104,105,115,46,103,101,116,80,97,114,101,110,116,40,41,46,99,104,105,108,100,114,101,110,58,116,104,105,115,46,95,116,114,101,101,46,109,111,100,101,108,125,125,44,123,107,101,121,58,34,99,111,112,121,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,105,102,40,33,101,124,124,33,99,46,105,115,70,117,110,99,116,105,111,110,40,101,46,97,100,100,78,111,100,101,41,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,68,101,115,116,105,110,97,116,105,111,110,32,109,117,115,116,32,98,101,32,97,110,32,73,110,115,112,105,114,101,32,84,114,101,101,32,105,110,115,116,97,110,99,101,46,34,41,59,118,97,114,32,105,61,116,104,105,115,59,114,101,116,117,114,110,32,116,38,38,40,105,61,105,46,99,111,112,121,72,105,101,114,97,114,99,104,121,40,33,49,44,110,41,41,44,101,46,97,100,100,78,111,100,101,40,99,46,99,108,111,110,101,68,101,101,112,40,105,46,116,111,79,98,106,101,99,116,40,33,49,44,110,41,41,41,125,125,44,123,107,101,121,58,34,99,111,112,121,72,105,101,114,97,114,99,104,121,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,105,61,91,93,44,101,61,116,104,105,115,46,103,101,116,80,97,114,101,110,116,115,40,41,59,105,102,40,99,46,101,97,99,104,40,101,44,102,117,110,99,116,105,111,110,40,101,41,123,105,46,112,117,115,104,40,101,46,116,111,79,98,106,101,99,116,40,116,44,110,41,41,125,41,44,101,61,105,46,114,101,118,101,114,115,101,40,41,44,33,116,41,123,118,97,114,32,114,61,116,104,105,115,46,116,111,79,98,106,101,99,116,40,33,48,44,110,41,59,116,104,105,115,46,104,97,115,67,104,105,108,100,114,101,110,40,41,38,38,40,114,46,99,104,105,108,100,114,101,110,61,116,104,105,115,46,99,104,105,108,100,114,101,110,46,102,105,108,116,101,114,66,121,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,33,101,46,115,116,97,116,101,40,34,104,105,100,100,101,110,34,41,125,41,46,116,111,65,114,114,97,121,40,41,44,114,46,99,104,105,108,100,114,101,110,46,95,99,111,110,116,101,120,116,61,114,41,44,105,46,112,117,115,104,40,114,41,125,118,97,114,32,115,61,105,91,48,93,44,111,61,105,46,108,101,110,103,116,104,44,97,61,115,59,114,101,116,117,114,110,32,99,46,101,97,99,104,40,105,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,61,91,93,59,116,43,49,60,111,38,38,40,110,46,112,117,115,104,40,105,91,116,43,49,93,41,44,97,46,99,104,105,108,100,114,101,110,61,110,44,97,61,97,46,99,104,105,108,100,114,101,110,91,48,93,41,125,41,44,67,40,116,104,105,115,46,95,116,114,101,101,44,115,41,125,125,44,123,107,101,121,58,34,100,101,115,101,108,101,99,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,115,101,108,101,99,116,101,100,40,41,38,38,40,33,116,104,105,115,46,95,116,114,101,101,46,99,111,110,102,105,103,46,115,101,108,101,99,116,105,111,110,46,114,101,113,117,105,114,101,124,124,49,60,116,104,105,115,46,95,116,114,101,101,46,115,101,108,101,99,116,101,100,40,41,46,108,101,110,103,116,104,41,38,38,40,116,104,105,115,46,99,111,110,116,101,120,116,40,41,46,98,97,116,99,104,40,41,44,111,40,34,115,101,108,101,99,116,101,100,34,44,33,49,44,34,100,101,115,101,108,101,99,116,101,100,34,44,116,104,105,115,44,33,101,38,38,116,104,105,115,46,95,116,114,101,101,46,99,111,110,102,105,103,46,115,101,108,101,99,116,105,111,110,46,97,117,116,111,83,101,108,101,99,116,67,104,105,108,100,114,101,110,41,44,116,104,105,115,46,99,111,110,116,101,120,116,40,41,46,101,110,100,40,41,41,59,114,101,116,117,114,110,32,116,104,105,115,125,125,44,123,107,101,121,58,34,101,100,105,116,97,98,108,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,116,114,101,101,46,99,111,110,102,105,103,46,101,100,105,116,97,98,108,101,38,38,116,104,105,115,46,95,116,114,101,101,46,99,111,110,102,105,103,46,101,100,105,116,105,110,103,46,101,100,105,116,38,38,116,104,105,115,46,115,116,97,116,101,40,34,101,100,105,116,97,98,108,101,34,41,125,125,44,123,107,101,121,58,34,101,100,105,116,105,110,103,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,115,116,97,116,101,40,34,101,100,105,116,105,110,103,34,41,125,125,44,123,107,101,121,58,34,101,120,112,97,110,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,110,61,116,104,105,115,59,114,101,116,117,114,110,32,110,101,119,32,102,40,102,117,110,99,116,105,111,110,40,101,44,116,41,123,40,110,46,104,97,115,67,104,105,108,100,114,101,110,40,41,124,124,110,46,95,116,114,101,101,46,105,115,68,121,110,97,109,105,99,38,38,33,48,61,61,61,110,46,99,104,105,108,100,114,101,110,41,38,38,40,110,46,99,111,108,108,97,112,115,101,100,40,41,124,124,110,46,104,105,100,100,101,110,40,41,41,63,40,110,46,115,116,97,116,101,40,34,99,111,108,108,97,112,115,101,100,34,44,33,49,41,44,110,46,115,116,97,116,101,40,34,104,105,100,100,101,110,34,44,33,49,41,44,110,46,95,116,114,101,101,46,101,109,105,116,40,34,110,111,100,101,46,101,120,112,97,110,100,101,100,34,44,110,41,44,110,46,95,116,114,101,101,46,105,115,68,121,110,97,109,105,99,38,38,33,48,61,61,61,110,46,99,104,105,108,100,114,101,110,63,110,46,108,111,97,100,67,104,105,108,100,114,101,110,40,41,46,116,104,101,110,40,101,41,46,99,97,116,99,104,40,116,41,58,40,110,46,99,111,110,116,101,120,116,40,41,46,97,112,112,108,121,67,104,97,110,103,101,115,40,41,44,101,40,110,41,41,41,58,101,40,110,41,125,41,125,125,44,123,107,101,121,58,34,101,120,112,97,110,100,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,33,116,104,105,115,46,99,111,108,108,97,112,115,101,100,40,41,125,125,44,123,107,101,121,58,34,101,120,112,97,110,100,80,97,114,101,110,116,115,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,104,97,115,80,97,114,101,110,116,40,41,38,38,116,104,105,115,46,103,101,116,80,97,114,101,110,116,40,41,46,114,101,99,117,114,115,101,85,112,40,102,117,110,99,116,105,111,110,40,101,41,123,101,46,101,120,112,97,110,100,40,41,125,41,44,116,104,105,115,125,125,44,123,107,101,121,58,34,102,111,99,117,115,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,102,111,99,117,115,101,100,40,41,124,124,40,116,104,105,115,46,95,116,114,101,101,46,98,97,116,99,104,40,41,44,116,104,105,115,46,95,116,114,101,101,46,98,108,117,114,68,101,101,112,40,41,44,116,104,105,115,46,115,116,97,116,101,40,34,102,111,99,117,115,101,100,34,44,33,48,41,44,116,104,105,115,46,95,116,114,101,101,46,101,109,105,116,40,34,110,111,100,101,46,102,111,99,117,115,101,100,34,44,116,104,105,115,41,44,116,104,105,115,46,109,97,114,107,68,105,114,116,121,40,41,44,116,104,105,115,46,95,116,114,101,101,46,101,110,100,40,41,41,44,116,104,105,115,125,125,44,123,107,101,121,58,34,102,111,99,117,115,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,115,116,97,116,101,40,34,102,111,99,117,115,101,100,34,41,125,125,44,123,107,101,121,58,34,103,101,116,67,104,105,108,100,114,101,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,104,97,115,67,104,105,108,100,114,101,110,40,41,63,116,104,105,115,46,99,104,105,108,100,114,101,110,58,110,101,119,32,103,40,116,104,105,115,46,95,116,114,101,101,41,125,125,44,123,107,101,121,58,34,103,101,116,80,97,114,101,110,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,116,114,101,101,46,112,97,114,101,110,116,125,125,44,123,107,101,121,58,34,103,101,116,80,97,114,101,110,116,115,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,110,101,119,32,103,40,116,104,105,115,46,95,116,114,101,101,41,59,114,101,116,117,114,110,32,116,104,105,115,46,104,97,115,80,97,114,101,110,116,40,41,38,38,116,104,105,115,46,103,101,116,80,97,114,101,110,116,40,41,46,114,101,99,117,114,115,101,85,112,40,102,117,110,99,116,105,111,110,40,101,41,123,116,46,112,117,115,104,40,101,41,125,41,44,116,125,125,44,123,107,101,121,58,34,103,101,116,84,101,120,116,117,97,108,72,105,101,114,97,114,99,104,121,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,91,93,59,114,101,116,117,114,110,32,116,104,105,115,46,114,101,99,117,114,115,101,85,112,40,102,117,110,99,116,105,111,110,40,101,41,123,116,46,117,110,115,104,105,102,116,40,101,46,116,101,120,116,41,125,41,44,116,125,125,44,123,107,101,121,58,34,104,97,115,65,110,99,101,115,116,111,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,33,49,59,114,101,116,117,114,110,32,116,104,105,115,46,114,101,99,117,114,115,101,85,112,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,33,40,110,61,101,46,105,100,61,61,61,116,46,105,100,41,125,41,44,110,125,125,44,123,107,101,121,58,34,104,97,115,67,104,105,108,100,114,101,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,99,46,105,115,65,114,114,97,121,76,105,107,101,40,116,104,105,115,46,99,104,105,108,100,114,101,110,41,38,38,48,60,116,104,105,115,46,99,104,105,108,100,114,101,110,46,108,101,110,103,116,104,125,125,44,123,107,101,121,58,34,104,97,115,76,111,97,100,101,100,67,104,105,108,100,114,101,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,99,46,105,115,65,114,114,97,121,76,105,107,101,40,116,104,105,115,46,99,104,105,108,100,114,101,110,41,125,125,44,123,107,101,121,58,34,104,97,115,79,114,87,105,108,108,72,97,118,101,67,104,105,108,100,114,101,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,99,46,105,115,65,114,114,97,121,76,105,107,101,40,116,104,105,115,46,99,104,105,108,100,114,101,110,41,63,66,111,111,108,101,97,110,40,116,104,105,115,46,99,104,105,108,100,114,101,110,46,108,101,110,103,116,104,41,58,116,104,105,115,46,97,108,108,111,119,68,121,110,97,109,105,99,76,111,97,100,40,41,125,125,44,123,107,101,121,58,34,104,97,115,80,97,114,101,110,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,66,111,111,108,101,97,110,40,116,104,105,115,46,105,116,114,101,101,46,112,97,114,101,110,116,41,125,125,44,123,107,101,121,58,34,104,97,115,86,105,115,105,98,108,101,67,104,105,108,100,114,101,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,33,49,59,114,101,116,117,114,110,32,116,104,105,115,46,104,97,115,67,104,105,108,100,114,101,110,40,41,38,38,40,101,61,48,60,116,104,105,115,46,99,104,105,108,100,114,101,110,46,102,105,108,116,101,114,66,121,40,34,97,118,97,105,108,97,98,108,101,34,41,46,108,101,110,103,116,104,41,44,101,125,125,44,123,107,101,121,58,34,104,105,100,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,111,40,34,104,105,100,100,101,110,34,44,33,48,44,34,104,105,100,100,101,110,34,44,116,104,105,115,41,59,114,101,116,117,114,110,32,101,46,104,97,115,67,104,105,108,100,114,101,110,40,41,38,38,101,46,99,104,105,108,100,114,101,110,46,104,105,100,101,40,41,44,101,125,125,44,123,107,101,121,58,34,104,105,100,100,101,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,115,116,97,116,101,40,34,104,105,100,100,101,110,34,41,125,125,44,123,107,101,121,58,34,105,110,100,101,120,80,97,116,104,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,91,93,59,114,101,116,117,114,110,32,116,104,105,115,46,114,101,99,117,114,115,101,85,112,40,102,117,110,99,116,105,111,110,40,101,41,123,116,46,112,117,115,104,40,99,46,105,110,100,101,120,79,102,40,101,46,99,111,110,116,101,120,116,40,41,44,101,41,41,125,41,44,116,46,114,101,118,101,114,115,101,40,41,46,106,111,105,110,40,34,46,34,41,125,125,44,123,107,101,121,58,34,105,110,100,101,116,101,114,109,105,110,97,116,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,115,116,97,116,101,40,34,105,110,100,101,116,101,114,109,105,110,97,116,101,34,41,125,125,44,123,107,101,121,58,34,105,115,70,105,114,115,116,82,101,110,100,101,114,97,98,108,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,61,61,61,116,104,105,115,46,99,111,110,116,101,120,116,40,41,46,102,105,114,115,116,82,101,110,100,101,114,97,98,108,101,78,111,100,101,125,125,44,123,107,101,121,58,34,105,115,76,97,115,116,82,101,110,100,101,114,97,98,108,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,61,61,61,116,104,105,115,46,99,111,110,116,101,120,116,40,41,46,108,97,115,116,82,101,110,100,101,114,97,98,108,101,78,111,100,101,125,125,44,123,107,101,121,58,34,105,115,79,110,108,121,82,101,110,100,101,114,97,98,108,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,115,70,105,114,115,116,82,101,110,100,101,114,97,98,108,101,40,41,38,38,116,104,105,115,46,105,115,76,97,115,116,82,101,110,100,101,114,97,98,108,101,40,41,125,125,44,123,107,101,121,58,34,108,97,115,116,68,101,101,112,101,115,116,86,105,115,105,98,108,101,67,104,105,108,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,59,105,102,40,116,104,105,115,46,104,97,115,67,104,105,108,100,114,101,110,40,41,38,38,33,116,104,105,115,46,99,111,108,108,97,112,115,101,100,40,41,41,123,118,97,114,32,116,61,40,101,61,99,46,102,105,110,100,76,97,115,116,40,116,104,105,115,46,99,104,105,108,100,114,101,110,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,46,118,105,115,105,98,108,101,40,41,125,41,41,46,108,97,115,116,68,101,101,112,101,115,116,86,105,115,105,98,108,101,67,104,105,108,100,40,41,59,116,38,38,40,101,61,116,41,125,114,101,116,117,114,110,32,101,125,125,44,123,107,101,121,58,34,108,111,97,100,67,104,105,108,100,114,101,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,111,61,116,104,105,115,59,114,101,116,117,114,110,32,110,101,119,32,102,40,102,117,110,99,116,105,111,110,40,105,44,114,41,123,105,102,40,33,111,46,97,108,108,111,119,68,121,110,97,109,105,99,76,111,97,100,40,41,41,114,101,116,117,114,110,32,114,40,110,101,119,32,69,114,114,111,114,40,34,78,111,100,101,32,100,111,101,115,32,110,111,116,32,104,97,118,101,32,111,114,32,115,117,112,112,111,114,116,32,100,121,110,97,109,105,99,32,99,104,105,108,100,114,101,110,46,34,41,41,59,111,46,115,116,97,116,101,40,34,108,111,97,100,105,110,103,34,44,33,48,41,44,111,46,109,97,114,107,68,105,114,116,121,40,41,44,111,46,99,111,110,116,101,120,116,40,41,46,97,112,112,108,121,67,104,97,110,103,101,115,40,41,59,102,117,110,99,116,105,111,110,32,101,40,101,44,116,41,123,105,102,40,33,99,46,105,115,65,114,114,97,121,76,105,107,101,40,101,41,41,114,101,116,117,114,110,32,114,40,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,76,111,97,100,101,114,32,114,101,113,117,105,114,101,115,32,97,110,32,97,114,114,97,121,45,108,105,107,101,32,96,110,111,100,101,115,96,32,112,97,114,97,109,101,116,101,114,46,34,41,41,59,111,46,99,111,110,116,101,120,116,40,41,46,98,97,116,99,104,40,41,44,111,46,115,116,97,116,101,40,34,108,111,97,100,105,110,103,34,44,33,49,41,59,118,97,114,32,110,61,83,40,111,46,95,116,114,101,101,44,101,44,111,41,59,99,46,105,115,65,114,114,97,121,76,105,107,101,40,111,46,99,104,105,108,100,114,101,110,41,63,111,46,99,104,105,108,100,114,101,110,61,111,46,99,104,105,108,100,114,101,110,46,99,111,110,99,97,116,40,110,41,58,111,46,99,104,105,108,100,114,101,110,61,110,44,99,46,112,97,114,115,101,73,110,116,40,116,41,62,101,46,108,101,110,103,116,104,38,38,40,111,46,99,104,105,108,100,114,101,110,46,95,112,97,103,105,110,97,116,105,111,110,46,116,111,116,97,108,61,99,46,112,97,114,115,101,73,110,116,40,116,41,41,44,34,99,104,101,99,107,98,111,120,34,61,61,61,111,46,95,116,114,101,101,46,99,111,110,102,105,103,46,115,101,108,101,99,116,105,111,110,46,109,111,100,101,38,38,111,46,115,101,108,101,99,116,101,100,40,41,38,38,111,46,99,104,105,108,100,114,101,110,46,115,101,108,101,99,116,40,41,44,111,46,109,97,114,107,68,105,114,116,121,40,41,44,111,46,99,111,110,116,101,120,116,40,41,46,101,110,100,40,41,44,105,40,111,46,99,104,105,108,100,114,101,110,41,44,111,46,95,116,114,101,101,46,101,109,105,116,40,34,99,104,105,108,100,114,101,110,46,108,111,97,100,101,100,34,44,111,41,125,102,117,110,99,116,105,111,110,32,116,40,101,41,123,111,46,115,116,97,116,101,40,34,108,111,97,100,105,110,103,34,44,33,49,41,44,111,46,99,104,105,108,100,114,101,110,61,110,101,119,32,103,40,111,46,95,116,114,101,101,41,44,40,111,46,99,104,105,108,100,114,101,110,46,95,99,111,110,116,101,120,116,61,111,41,46,109,97,114,107,68,105,114,116,121,40,41,44,111,46,99,111,110,116,101,120,116,40,41,46,97,112,112,108,121,67,104,97,110,103,101,115,40,41,44,114,40,101,41,44,111,46,95,116,114,101,101,46,101,109,105,116,40,34,116,114,101,101,46,108,111,97,100,101,114,114,111,114,34,44,101,41,125,118,97,114,32,110,61,111,46,95,116,114,101,101,46,99,111,110,115,116,114,117,99,116,111,114,46,105,115,84,114,101,101,78,111,100,101,115,40,111,46,99,104,105,108,100,114,101,110,41,63,111,46,99,104,105,108,100,114,101,110,46,112,97,103,105,110,97,116,105,111,110,40,41,58,110,117,108,108,44,115,61,111,46,95,116,114,101,101,46,99,111,110,102,105,103,46,100,97,116,97,40,111,44,101,44,116,44,110,41,59,99,46,105,115,79,98,106,101,99,116,40,115,41,38,38,109,40,115,41,46,116,104,101,110,40,101,41,46,99,97,116,99,104,40,116,41,125,41,125,125,44,123,107,101,121,58,34,108,111,97,100,105,110,103,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,115,116,97,116,101,40,34,108,111,97,100,105,110,103,34,41,125,125,44,123,107,101,121,58,34,108,111,97,100,77,111,114,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,99,104,105,108,100,114,101,110,38,38,33,48,33,61,61,116,104,105,115,46,99,104,105,108,100,114,101,110,63,116,104,105,115,46,99,104,105,108,100,114,101,110,46,108,111,97,100,77,111,114,101,40,41,58,102,46,114,101,106,101,99,116,40,110,101,119,32,69,114,114,111,114,40,34,67,104,105,108,100,114,101,110,32,104,97,118,101,32,110,111,116,32,121,101,116,32,98,101,101,110,32,108,111,97,100,101,100,46,34,41,41,125,125,44,123,107,101,121,58,34,109,97,114,107,68,105,114,116,121,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,116,114,101,101,46,100,105,114,116,121,124,124,40,116,104,105,115,46,105,116,114,101,101,46,100,105,114,116,121,61,33,48,44,116,104,105,115,46,104,97,115,80,97,114,101,110,116,40,41,38,38,116,104,105,115,46,103,101,116,80,97,114,101,110,116,40,41,46,109,97,114,107,68,105,114,116,121,40,41,41,44,116,104,105,115,125,125,44,123,107,101,121,58,34,109,97,116,99,104,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,115,116,97,116,101,40,34,109,97,116,99,104,101,100,34,41,125,125,44,123,107,101,121,58,34,110,101,120,116,86,105,115,105,98,108,101,65,110,99,101,115,116,114,97,108,83,105,98,108,105,110,103,78,111,100,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,59,105,102,40,116,104,105,115,46,104,97,115,80,97,114,101,110,116,40,41,41,123,118,97,114,32,116,61,116,104,105,115,46,103,101,116,80,97,114,101,110,116,40,41,59,101,61,40,101,61,116,46,110,101,120,116,86,105,115,105,98,108,101,83,105,98,108,105,110,103,78,111,100,101,40,41,41,124,124,116,46,110,101,120,116,86,105,115,105,98,108,101,65,110,99,101,115,116,114,97,108,83,105,98,108,105,110,103,78,111,100,101,40,41,125,114,101,116,117,114,110,32,101,125,125,44,123,107,101,121,58,34,110,101,120,116,86,105,115,105,98,108,101,67,104,105,108,100,78,111,100,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,59,114,101,116,117,114,110,32,116,104,105,115,46,104,97,115,67,104,105,108,100,114,101,110,40,41,38,38,40,101,61,99,46,102,105,110,100,40,116,104,105,115,46,99,104,105,108,100,114,101,110,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,46,118,105,115,105,98,108,101,40,41,125,41,41,44,101,125,125,44,123,107,101,121,58,34,110,101,120,116,86,105,115,105,98,108,101,78,111,100,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,110,101,120,116,86,105,115,105,98,108,101,67,104,105,108,100,78,111,100,101,40,41,124,124,116,104,105,115,46,110,101,120,116,86,105,115,105,98,108,101,83,105,98,108,105,110,103,78,111,100,101,40,41,124,124,116,104,105,115,46,110,101,120,116,86,105,115,105,98,108,101,65,110,99,101,115,116,114,97,108,83,105,98,108,105,110,103,78,111,100,101,40,41,125,125,44,123,107,101,121,58,34,110,101,120,116,86,105,115,105,98,108,101,83,105,98,108,105,110,103,78,111,100,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,104,97,115,80,97,114,101,110,116,40,41,63,116,104,105,115,46,103,101,116,80,97,114,101,110,116,40,41,46,99,104,105,108,100,114,101,110,58,116,104,105,115,46,95,116,114,101,101,46,110,111,100,101,115,40,41,44,116,61,99,46,102,105,110,100,73,110,100,101,120,40,101,44,123,105,100,58,116,104,105,115,46,105,100,125,41,59,114,101,116,117,114,110,32,99,46,102,105,110,100,40,99,46,115,108,105,99,101,40,101,44,116,43,49,41,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,46,118,105,115,105,98,108,101,40,41,125,41,125,125,44,123,107,101,121,58,34,112,97,103,105,110,97,116,105,111,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,99,46,103,101,116,40,116,104,105,115,44,34,99,104,105,108,100,114,101,110,46,95,112,97,103,105,110,97,116,105,111,110,34,41,125,125,44,123,107,101,121,58,34,112,114,101,118,105,111,117,115,86,105,115,105,98,108,101,78,111,100,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,59,114,101,116,117,114,110,40,101,61,116,104,105,115,46,112,114,101,118,105,111,117,115,86,105,115,105,98,108,101,83,105,98,108,105,110,103,78,111,100,101,40,41,41,38,38,101,46,104,97,115,67,104,105,108,100,114,101,110,40,41,38,38,33,101,46,99,111,108,108,97,112,115,101,100,40,41,38,38,40,101,61,101,46,108,97,115,116,68,101,101,112,101,115,116,86,105,115,105,98,108,101,67,104,105,108,100,40,41,41,44,33,101,38,38,116,104,105,115,46,104,97,115,80,97,114,101,110,116,40,41,38,38,40,101,61,116,104,105,115,46,103,101,116,80,97,114,101,110,116,40,41,41,44,101,125,125,44,123,107,101,121,58,34,112,114,101,118,105,111,117,115,86,105,115,105,98,108,101,83,105,98,108,105,110,103,78,111,100,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,104,97,115,80,97,114,101,110,116,40,41,63,116,104,105,115,46,103,101,116,80,97,114,101,110,116,40,41,46,99,104,105,108,100,114,101,110,58,116,104,105,115,46,95,116,114,101,101,46,110,111,100,101,115,40,41,44,116,61,99,46,102,105,110,100,73,110,100,101,120,40,101,44,123,105,100,58,116,104,105,115,46,105,100,125,41,59,114,101,116,117,114,110,32,99,46,102,105,110,100,76,97,115,116,40,99,46,115,108,105,99,101,40,101,44,48,44,116,41,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,46,118,105,115,105,98,108,101,40,41,125,41,125,125,44,123,107,101,121,58,34,114,101,99,117,114,115,101,68,111,119,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,95,40,116,104,105,115,44,101,41,44,116,104,105,115,125,125,44,123,107,101,121,58,34,114,101,99,117,114,115,101,85,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,33,49,33,61,61,101,40,116,104,105,115,41,38,38,116,104,105,115,46,104,97,115,80,97,114,101,110,116,40,41,38,38,116,104,105,115,46,103,101,116,80,97,114,101,110,116,40,41,46,114,101,99,117,114,115,101,85,112,40,101,41,44,116,104,105,115,125,125,44,123,107,101,121,58,34,114,101,102,114,101,115,104,73,110,100,101,116,101,114,109,105,110,97,116,101,83,116,97,116,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,105,110,100,101,116,101,114,109,105,110,97,116,101,40,41,59,105,102,40,116,104,105,115,46,115,116,97,116,101,40,34,105,110,100,101,116,101,114,109,105,110,97,116,101,34,44,33,49,41,44,116,104,105,115,46,104,97,115,67,104,105,108,100,114,101,110,40,41,41,123,118,97,114,32,116,61,116,104,105,115,46,99,104,105,108,100,114,101,110,46,108,101,110,103,116,104,44,110,61,48,44,105,61,48,59,116,104,105,115,46,99,104,105,108,100,114,101,110,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,101,41,123,101,46,99,104,101,99,107,101,100,40,41,38,38,105,43,43,44,101,46,105,110,100,101,116,101,114,109,105,110,97,116,101,40,41,38,38,110,43,43,125,41,44,105,61,61,61,116,63,111,40,34,99,104,101,99,107,101,100,34,44,33,48,44,34,99,104,101,99,107,101,100,34,44,116,104,105,115,41,58,111,40,34,99,104,101,99,107,101,100,34,44,33,49,44,34,117,110,99,104,101,99,107,101,100,34,44,116,104,105,115,41,44,116,104,105,115,46,99,104,101,99,107,101,100,40,41,124,124,116,104,105,115,46,115,116,97,116,101,40,34,105,110,100,101,116,101,114,109,105,110,97,116,101,34,44,48,60,110,124,124,48,60,116,38,38,48,60,105,38,38,105,60,116,41,125,114,101,116,117,114,110,32,116,104,105,115,46,104,97,115,80,97,114,101,110,116,40,41,38,38,116,104,105,115,46,103,101,116,80,97,114,101,110,116,40,41,46,114,101,102,114,101,115,104,73,110,100,101,116,101,114,109,105,110,97,116,101,83,116,97,116,101,40,41,44,101,33,61,61,116,104,105,115,46,115,116,97,116,101,40,34,105,110,100,101,116,101,114,109,105,110,97,116,101,34,41,38,38,116,104,105,115,46,109,97,114,107,68,105,114,116,121,40,41,44,116,104,105,115,125,125,44,123,107,101,121,58,34,114,101,108,111,97,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,110,61,116,104,105,115,59,114,101,116,117,114,110,32,110,101,119,32,102,40,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,102,40,33,110,46,97,108,108,111,119,68,121,110,97,109,105,99,76,111,97,100,40,41,41,114,101,116,117,114,110,32,116,40,110,101,119,32,69,114,114,111,114,40,34,78,111,100,101,32,111,114,32,116,114,101,101,32,100,111,101,115,32,110,111,116,32,115,117,112,112,111,114,116,32,100,121,110,97,109,105,99,32,99,104,105,108,100,114,101,110,46,34,41,41,59,110,46,99,104,105,108,100,114,101,110,61,33,48,44,110,46,99,111,108,108,97,112,115,101,40,41,44,110,46,108,111,97,100,67,104,105,108,100,114,101,110,40,41,46,116,104,101,110,40,101,41,46,99,97,116,99,104,40,116,41,125,41,125,125,44,123,107,101,121,58,34,114,101,109,111,118,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,48,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,38,38,118,111,105,100,32,48,33,61,61,101,38,38,101,44,110,61,116,104,105,115,46,103,101,116,80,97,114,101,110,116,40,41,59,116,104,105,115,46,99,111,110,116,101,120,116,40,41,46,114,101,109,111,118,101,40,116,104,105,115,41,44,110,38,38,40,110,46,114,101,102,114,101,115,104,73,110,100,101,116,101,114,109,105,110,97,116,101,83,116,97,116,101,40,41,44,110,46,109,97,114,107,68,105,114,116,121,40,41,41,44,40,110,63,110,46,112,97,103,105,110,97,116,105,111,110,40,41,58,116,104,105,115,46,95,116,114,101,101,46,112,97,103,105,110,97,116,105,111,110,40,41,41,46,116,111,116,97,108,45,45,59,118,97,114,32,105,61,116,104,105,115,46,116,111,79,98,106,101,99,116,40,33,49,44,116,41,59,114,101,116,117,114,110,32,116,104,105,115,46,95,116,114,101,101,46,101,109,105,116,40,34,110,111,100,101,46,114,101,109,111,118,101,100,34,44,105,44,110,41,44,116,104,105,115,46,99,111,110,116,101,120,116,40,41,46,97,112,112,108,121,67,104,97,110,103,101,115,40,41,44,105,125,125,44,123,107,101,121,58,34,114,101,109,111,118,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,115,116,97,116,101,40,34,114,101,109,111,118,101,100,34,41,125,125,44,123,107,101,121,58,34,114,101,110,100,101,114,97,98,108,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,33,116,104,105,115,46,104,105,100,100,101,110,40,41,38,38,33,116,104,105,115,46,114,101,109,111,118,101,100,40,41,125,125,44,123,107,101,121,58,34,114,101,110,100,101,114,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,115,116,97,116,101,40,34,114,101,110,100,101,114,101,100,34,41,125,125,44,123,107,101,121,58,34,114,101,115,116,111,114,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,111,40,34,114,101,109,111,118,101,100,34,44,33,49,44,34,114,101,115,116,111,114,101,100,34,44,116,104,105,115,41,125,125,44,123,107,101,121,58,34,115,101,108,101,99,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,105,102,40,33,116,104,105,115,46,115,101,108,101,99,116,101,100,40,41,38,38,116,104,105,115,46,115,101,108,101,99,116,97,98,108,101,40,41,41,123,105,102,40,116,104,105,115,46,95,116,114,101,101,46,98,97,116,99,104,40,41,44,116,104,105,115,46,95,116,114,101,101,46,99,97,110,65,117,116,111,68,101,115,101,108,101,99,116,40,41,41,123,118,97,114,32,116,61,116,104,105,115,46,95,116,114,101,101,46,99,111,110,102,105,103,46,115,101,108,101,99,116,105,111,110,46,114,101,113,117,105,114,101,59,116,104,105,115,46,95,116,114,101,101,46,99,111,110,102,105,103,46,115,101,108,101,99,116,105,111,110,46,114,101,113,117,105,114,101,61,33,49,44,116,104,105,115,46,95,116,114,101,101,46,100,101,115,101,108,101,99,116,68,101,101,112,40,41,44,116,104,105,115,46,95,116,114,101,101,46,99,111,110,102,105,103,46,115,101,108,101,99,116,105,111,110,46,114,101,113,117,105,114,101,61,116,125,111,40,34,115,101,108,101,99,116,101,100,34,44,33,48,44,34,115,101,108,101,99,116,101,100,34,44,116,104,105,115,44,33,101,38,38,116,104,105,115,46,95,116,114,101,101,46,99,111,110,102,105,103,46,115,101,108,101,99,116,105,111,110,46,97,117,116,111,83,101,108,101,99,116,67,104,105,108,100,114,101,110,41,44,40,116,104,105,115,46,95,116,114,101,101,46,95,108,97,115,116,83,101,108,101,99,116,101,100,78,111,100,101,61,116,104,105,115,41,46,109,97,114,107,68,105,114,116,121,40,41,44,116,104,105,115,46,95,116,114,101,101,46,101,110,100,40,41,125,114,101,116,117,114,110,32,116,104,105,115,125,125,44,123,107,101,121,58,34,115,101,108,101,99,116,97,98,108,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,95,116,114,101,101,46,99,111,110,102,105,103,46,115,101,108,101,99,116,105,111,110,46,97,108,108,111,119,40,116,104,105,115,41,59,114,101,116,117,114,110,34,98,111,111,108,101,97,110,34,61,61,116,121,112,101,111,102,32,101,63,101,58,116,104,105,115,46,115,116,97,116,101,40,34,115,101,108,101,99,116,97,98,108,101,34,41,125,125,44,123,107,101,121,58,34,115,101,108,101,99,116,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,115,116,97,116,101,40,34,115,101,108,101,99,116,101,100,34,41,125,125,44,123,107,101,121,58,34,115,101,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,116,104,105,115,91,101,93,61,116,44,116,104,105,115,46,109,97,114,107,68,105,114,116,121,40,41,44,116,104,105,115,46,99,111,110,116,101,120,116,40,41,46,97,112,112,108,121,67,104,97,110,103,101,115,40,41,44,116,104,105,115,125,125,44,123,107,101,121,58,34,115,104,111,119,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,111,40,34,104,105,100,100,101,110,34,44,33,49,44,34,115,104,111,119,110,34,44,116,104,105,115,41,125,125,44,123,107,101,121,58,34,115,111,102,116,82,101,109,111,118,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,111,40,34,114,101,109,111,118,101,100,34,44,33,48,44,34,115,111,102,116,114,101,109,111,118,101,100,34,44,116,104,105,115,44,34,115,111,102,116,82,101,109,111,118,101,34,41,125,125,44,123,107,101,121,58,34,115,116,97,116,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,61,116,104,105,115,59,105,102,40,99,46,105,115,83,116,114,105,110,103,40,101,41,41,114,101,116,117,114,110,32,98,40,116,104,105,115,44,101,44,116,41,59,116,104,105,115,46,99,111,110,116,101,120,116,40,41,46,98,97,116,99,104,40,41,59,118,97,114,32,105,61,123,125,59,114,101,116,117,114,110,32,99,46,101,97,99,104,40,101,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,91,116,93,61,98,40,110,44,116,44,101,41,125,41,44,116,104,105,115,46,99,111,110,116,101,120,116,40,41,46,101,110,100,40,41,44,105,125,125,44,123,107,101,121,58,34,115,116,97,116,101,115,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,61,116,104,105,115,44,105,61,91,93,59,114,101,116,117,114,110,32,116,104,105,115,46,99,111,110,116,101,120,116,40,41,46,98,97,116,99,104,40,41,44,99,46,101,97,99,104,40,101,44,102,117,110,99,116,105,111,110,40,101,41,123,105,46,112,117,115,104,40,110,46,115,116,97,116,101,40,101,44,116,41,41,125,41,44,116,104,105,115,46,99,111,110,116,101,120,116,40,41,46,101,110,100,40,41,44,105,125,125,44,123,107,101,121,58,34,115,119,97,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,99,111,110,116,101,120,116,40,41,46,115,119,97,112,40,116,104,105,115,44,101,41,44,116,104,105,115,125,125,44,123,107,101,121,58,34,116,111,103,103,108,101,67,104,101,99,107,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,99,104,101,99,107,101,100,40,41,63,116,104,105,115,46,117,110,99,104,101,99,107,40,41,58,116,104,105,115,46,99,104,101,99,107,40,41,125,125,44,123,107,101,121,58,34,116,111,103,103,108,101,67,111,108,108,97,112,115,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,99,111,108,108,97,112,115,101,100,40,41,63,116,104,105,115,46,101,120,112,97,110,100,40,41,58,116,104,105,115,46,99,111,108,108,97,112,115,101,40,41,125,125,44,123,107,101,121,58,34,116,111,103,103,108,101,69,100,105,116,105,110,103,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,115,116,97,116,101,40,34,101,100,105,116,105,110,103,34,44,33,116,104,105,115,46,115,116,97,116,101,40,34,101,100,105,116,105,110,103,34,41,41,44,116,104,105,115,46,109,97,114,107,68,105,114,116,121,40,41,44,116,104,105,115,46,99,111,110,116,101,120,116,40,41,46,97,112,112,108,121,67,104,97,110,103,101,115,40,41,44,116,104,105,115,125,125,44,123,107,101,121,58,34,116,111,103,103,108,101,83,101,108,101,99,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,115,101,108,101,99,116,101,100,40,41,63,116,104,105,115,46,100,101,115,101,108,101,99,116,40,41,58,116,104,105,115,46,115,101,108,101,99,116,40,41,125,125,44,123,107,101,121,58,34,116,111,79,98,106,101,99,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,61,116,104,105,115,44,105,61,48,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,38,38,118,111,105,100,32,48,33,61,61,101,38,38,101,44,114,61,49,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,38,38,118,111,105,100,32,48,33,61,61,116,38,38,116,44,115,61,123,125,44,111,61,99,46,112,117,108,108,40,79,98,106,101,99,116,46,107,101,121,115,40,116,104,105,115,41,44,34,95,116,114,101,101,34,44,34,99,104,105,108,100,114,101,110,34,44,34,105,116,114,101,101,34,41,59,99,46,101,97,99,104,40,111,44,102,117,110,99,116,105,111,110,40,101,41,123,115,91,101,93,61,110,91,101,93,125,41,59,118,97,114,32,97,61,115,46,105,116,114,101,101,61,123,125,59,114,101,116,117,114,110,32,97,46,97,61,116,104,105,115,46,105,116,114,101,101,46,97,44,97,46,105,99,111,110,61,116,104,105,115,46,105,116,114,101,101,46,105,99,111,110,44,97,46,108,105,61,116,104,105,115,46,105,116,114,101,101,46,108,105,44,114,38,38,40,97,46,115,116,97,116,101,61,116,104,105,115,46,105,116,114,101,101,46,115,116,97,116,101,41,44,33,105,38,38,116,104,105,115,46,104,97,115,67,104,105,108,100,114,101,110,40,41,38,38,99,46,105,115,70,117,110,99,116,105,111,110,40,116,104,105,115,46,99,104,105,108,100,114,101,110,46,116,111,65,114,114,97,121,41,38,38,40,115,46,99,104,105,108,100,114,101,110,61,116,104,105,115,46,99,104,105,108,100,114,101,110,46,116,111,65,114,114,97,121,40,41,41,44,115,125,125,44,123,107,101,121,58,34,116,111,83,116,114,105,110,103,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,116,101,120,116,125,125,44,123,107,101,121,58,34,116,114,101,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,99,111,110,116,101,120,116,40,41,46,116,114,101,101,40,41,125,125,44,123,107,101,121,58,34,117,110,99,104,101,99,107,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,116,114,101,101,46,98,97,116,99,104,40,41,44,111,40,34,99,104,101,99,107,101,100,34,44,33,49,44,34,117,110,99,104,101,99,107,101,100,34,44,116,104,105,115,44,33,101,38,38,116,104,105,115,46,95,116,114,101,101,46,99,111,110,102,105,103,46,99,104,101,99,107,98,111,120,46,97,117,116,111,67,104,101,99,107,67,104,105,108,100,114,101,110,41,44,116,104,105,115,46,115,116,97,116,101,40,34,105,110,100,101,116,101,114,109,105,110,97,116,101,34,44,33,49,41,44,116,104,105,115,46,104,97,115,80,97,114,101,110,116,40,41,38,38,116,104,105,115,46,103,101,116,80,97,114,101,110,116,40,41,46,114,101,102,114,101,115,104,73,110,100,101,116,101,114,109,105,110,97,116,101,83,116,97,116,101,40,41,44,116,104,105,115,46,95,116,114,101,101,46,101,110,100,40,41,44,116,104,105,115,125,125,44,123,107,101,121,58,34,118,105,115,105,98,108,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,33,40,116,104,105,115,46,104,105,100,100,101,110,40,41,124,124,116,104,105,115,46,114,101,109,111,118,101,100,40,41,124,124,116,104,105,115,46,95,116,114,101,101,46,117,115,101,115,78,97,116,105,118,101,68,79,77,38,38,33,116,104,105,115,46,114,101,110,100,101,114,101,100,40,41,41,38,38,40,33,116,104,105,115,46,104,97,115,80,97,114,101,110,116,40,41,124,124,33,116,104,105,115,46,103,101,116,80,97,114,101,110,116,40,41,46,99,111,108,108,97,112,115,101,100,40,41,38,38,116,104,105,115,46,103,101,116,80,97,114,101,110,116,40,41,46,118,105,115,105,98,108,101,40,41,41,125,125,93,41,44,114,125,40,41,44,120,61,100,40,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,99,114,121,112,116,111,38,38,99,114,121,112,116,111,46,103,101,116,82,97,110,100,111,109,86,97,108,117,101,115,38,38,99,114,121,112,116,111,46,103,101,116,82,97,110,100,111,109,86,97,108,117,101,115,46,98,105,110,100,40,99,114,121,112,116,111,41,124,124,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,109,115,67,114,121,112,116,111,38,38,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,119,105,110,100,111,119,46,109,115,67,114,121,112,116,111,46,103,101,116,82,97,110,100,111,109,86,97,108,117,101,115,38,38,109,115,67,114,121,112,116,111,46,103,101,116,82,97,110,100,111,109,86,97,108,117,101,115,46,98,105,110,100,40,109,115,67,114,121,112,116,111,41,59,105,102,40,116,41,123,118,97,114,32,110,61,110,101,119,32,85,105,110,116,56,65,114,114,97,121,40,49,54,41,59,101,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,40,110,41,44,110,125,125,101,108,115,101,123,118,97,114,32,105,61,110,101,119,32,65,114,114,97,121,40,49,54,41,59,101,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,118,97,114,32,101,44,116,61,48,59,116,60,49,54,59,116,43,43,41,48,61,61,40,51,38,116,41,38,38,40,101,61,52,50,57,52,57,54,55,50,57,54,42,77,97,116,104,46,114,97,110,100,111,109,40,41,41,44,105,91,116,93,61,101,62,62,62,40,40,51,38,116,41,60,60,51,41,38,50,53,53,59,114,101,116,117,114,110,32,105,125,125,125,41,44,68,61,91,93,44,65,61,48,59,65,60,50,53,54,59,43,43,65,41,68,91,65,93,61,40,65,43,50,53,54,41,46,116,111,83,116,114,105,110,103,40,49,54,41,46,115,117,98,115,116,114,40,49,41,59,118,97,114,32,76,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,61,116,124,124,48,44,105,61,68,59,114,101,116,117,114,110,91,105,91,101,91,110,43,43,93,93,44,105,91,101,91,110,43,43,93,93,44,105,91,101,91,110,43,43,93,93,44,105,91,101,91,110,43,43,93,93,44,34,45,34,44,105,91,101,91,110,43,43,93,93,44,105,91,101,91,110,43,43,93,93,44,34,45,34,44,105,91,101,91,110,43,43,93,93,44,105,91,101,91,110,43,43,93,93,44,34,45,34,44,105,91,101,91,110,43,43,93,93,44,105,91,101,91,110,43,43,93,93,44,34,45,34,44,105,91,101,91,110,43,43,93,93,44,105,91,101,91,110,43,43,93,93,44,105,91,101,91,110,43,43,93,93,44,105,91,101,91,110,43,43,93,93,44,105,91,101,91,110,43,43,93,93,44,105,91,101,91,110,43,43,93,93,93,46,106,111,105,110,40,34,34,41,125,59,118,97,114,32,80,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,105,61,116,38,38,110,124,124,48,59,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,101,38,38,40,116,61,34,98,105,110,97,114,121,34,61,61,61,101,63,110,101,119,32,65,114,114,97,121,40,49,54,41,58,110,117,108,108,44,101,61,110,117,108,108,41,59,118,97,114,32,114,61,40,101,61,101,124,124,123,125,41,46,114,97,110,100,111,109,124,124,40,101,46,114,110,103,124,124,120,41,40,41,59,105,102,40,114,91,54,93,61,49,53,38,114,91,54,93,124,54,52,44,114,91,56,93,61,54,51,38,114,91,56,93,124,49,50,56,44,116,41,102,111,114,40,118,97,114,32,115,61,48,59,115,60,49,54,59,43,43,115,41,116,91,105,43,115,93,61,114,91,115,93,59,114,101,116,117,114,110,32,116,124,124,76,40,114,41,125,59,102,117,110,99,116,105,111,110,32,67,40,116,44,110,44,101,41,123,110,46,105,100,61,110,46,105,100,124,124,80,40,41,44,34,115,116,114,105,110,103,34,33,61,116,121,112,101,111,102,32,110,46,105,100,38,38,34,110,117,109,98,101,114,34,33,61,116,121,112,101,111,102,32,110,46,105,100,38,38,40,110,46,105,100,61,110,46,105,100,46,116,111,83,116,114,105,110,103,40,41,41,59,118,97,114,32,105,61,110,46,105,116,114,101,101,61,110,46,105,116,114,101,101,124,124,123,125,59,105,46,105,99,111,110,61,105,46,105,99,111,110,124,124,33,49,44,105,46,100,105,114,116,121,61,33,49,59,118,97,114,32,114,61,105,46,108,105,61,105,46,108,105,124,124,123,125,59,114,46,97,116,116,114,105,98,117,116,101,115,61,114,46,97,116,116,114,105,98,117,116,101,115,124,124,123,125,59,118,97,114,32,115,61,105,46,97,61,105,46,97,124,124,123,125,59,115,46,97,116,116,114,105,98,117,116,101,115,61,115,46,97,116,116,114,105,98,117,116,101,115,124,124,123,125,59,118,97,114,32,111,61,105,46,115,116,97,116,101,61,105,46,115,116,97,116,101,124,124,123,125,59,114,101,116,117,114,110,32,111,46,99,111,108,108,97,112,115,101,100,61,34,98,111,111,108,101,97,110,34,61,61,116,121,112,101,111,102,32,111,46,99,111,108,108,97,112,115,101,100,63,111,46,99,111,108,108,97,112,115,101,100,58,116,46,100,101,102,97,117,108,116,83,116,97,116,101,46,99,111,108,108,97,112,115,101,100,44,111,46,115,101,108,101,99,116,97,98,108,101,61,34,98,111,111,108,101,97,110,34,61,61,116,121,112,101,111,102,32,111,46,115,101,108,101,99,116,97,98,108,101,63,111,46,115,101,108,101,99,116,97,98,108,101,58,116,46,100,101,102,97,117,108,116,83,116,97,116,101,46,115,101,108,101,99,116,97,98,108,101,44,111,46,100,114,97,103,103,97,98,108,101,61,34,98,111,111,108,101,97,110,34,61,61,116,121,112,101,111,102,32,111,46,100,114,97,103,103,97,98,108,101,63,111,46,100,114,97,103,103,97,98,108,101,58,116,46,100,101,102,97,117,108,116,83,116,97,116,101,46,100,114,97,103,103,97,98,108,101,44,111,91,34,100,114,111,112,45,116,97,114,103,101,116,34,93,61,34,98,111,111,108,101,97,110,34,61,61,116,121,112,101,111,102,32,111,91,34,100,114,111,112,45,116,97,114,103,101,116,34,93,63,111,91,34,100,114,111,112,45,116,97,114,103,101,116,34,93,58,116,46,100,101,102,97,117,108,116,83,116,97,116,101,91,34,100,114,111,112,45,116,97,114,103,101,116,34,93,44,111,46,99,104,101,99,107,101,100,61,34,98,111,111,108,101,97,110,34,61,61,116,121,112,101,111,102,32,111,46,99,104,101,99,107,101,100,38,38,111,46,99,104,101,99,107,101,100,44,111,46,101,100,105,116,97,98,108,101,61,34,98,111,111,108,101,97,110,34,61,61,116,121,112,101,111,102,32,111,46,101,100,105,116,97,98,108,101,63,111,46,101,100,105,116,97,98,108,101,58,116,46,100,101,102,97,117,108,116,83,116,97,116,101,46,101,100,105,116,97,98,108,101,44,111,46,101,100,105,116,105,110,103,61,34,98,111,111,108,101,97,110,34,61,61,116,121,112,101,111,102,32,111,46,101,100,105,116,105,110,103,63,111,46,101,100,105,116,105,110,103,58,116,46,100,101,102,97,117,108,116,83,116,97,116,101,46,101,100,105,116,105,110,103,44,111,46,102,111,99,117,115,101,100,61,111,46,102,111,99,117,115,101,100,124,124,116,46,100,101,102,97,117,108,116,83,116,97,116,101,46,102,111,99,117,115,101,100,44,111,46,104,105,100,100,101,110,61,111,46,104,105,100,100,101,110,124,124,116,46,100,101,102,97,117,108,116,83,116,97,116,101,46,104,105,100,100,101,110,44,111,46,105,110,100,101,116,101,114,109,105,110,97,116,101,61,111,46,105,110,100,101,116,101,114,109,105,110,97,116,101,124,124,116,46,100,101,102,97,117,108,116,83,116,97,116,101,46,105,110,100,101,116,101,114,109,105,110,97,116,101,44,111,46,108,111,97,100,105,110,103,61,111,46,108,111,97,100,105,110,103,124,124,116,46,100,101,102,97,117,108,116,83,116,97,116,101,46,108,111,97,100,105,110,103,44,111,46,114,101,109,111,118,101,100,61,111,46,114,101,109,111,118,101,100,124,124,116,46,100,101,102,97,117,108,116,83,116,97,116,101,46,114,101,109,111,118,101,100,44,111,46,114,101,110,100,101,114,101,100,61,111,46,114,101,110,100,101,114,101,100,124,124,116,46,100,101,102,97,117,108,116,83,116,97,116,101,46,114,101,110,100,101,114,101,100,44,111,46,115,101,108,101,99,116,101,100,61,111,46,115,101,108,101,99,116,101,100,124,124,116,46,100,101,102,97,117,108,116,83,116,97,116,101,46,115,101,108,101,99,116,101,100,44,110,46,105,116,114,101,101,46,112,97,114,101,110,116,61,101,44,110,61,99,46,97,115,115,105,103,110,40,110,101,119,32,119,40,116,41,44,110,41,44,99,46,105,115,65,114,114,97,121,76,105,107,101,40,110,46,99,104,105,108,100,114,101,110,41,38,38,40,110,46,99,104,105,108,100,114,101,110,61,83,40,116,44,110,46,99,104,105,108,100,114,101,110,44,110,41,41,44,116,46,97,108,108,111,119,115,76,111,97,100,69,118,101,110,116,115,38,38,99,46,101,97,99,104,40,116,46,99,111,110,102,105,103,46,97,108,108,111,119,76,111,97,100,69,118,101,110,116,115,44,102,117,110,99,116,105,111,110,40,101,41,123,111,91,101,93,38,38,116,46,101,109,105,116,40,34,110,111,100,101,46,34,43,101,44,110,44,33,48,41,125,41,44,110,125,102,117,110,99,116,105,111,110,32,83,40,116,44,101,44,110,41,123,118,97,114,32,105,61,110,101,119,32,103,40,116,44,110,117,108,108,44,123,99,97,108,99,117,108,97,116,101,82,101,110,100,101,114,97,98,108,101,80,111,115,105,116,105,111,110,115,58,33,48,125,41,59,114,101,116,117,114,110,32,105,46,98,97,116,99,104,40,41,44,116,46,99,111,110,102,105,103,46,115,111,114,116,38,38,40,101,61,99,46,115,111,114,116,66,121,40,101,44,116,46,99,111,110,102,105,103,46,115,111,114,116,41,41,44,99,46,101,97,99,104,40,101,44,102,117,110,99,116,105,111,110,40,101,41,123,105,46,112,117,115,104,40,67,40,116,44,101,44,110,41,41,125,41,44,105,46,95,99,111,110,116,101,120,116,61,110,44,105,46,101,110,100,40,41,44,105,125,118,97,114,32,79,61,100,40,102,117,110,99,116,105,111,110,40,101,44,116,41,123,102,117,110,99,116,105,111,110,32,117,40,41,123,116,104,105,115,46,95,101,118,101,110,116,115,61,123,125,44,116,104,105,115,46,95,99,111,110,102,38,38,110,46,99,97,108,108,40,116,104,105,115,44,116,104,105,115,46,95,99,111,110,102,41,125,102,117,110,99,116,105,111,110,32,110,40,101,41,123,101,63,40,40,116,104,105,115,46,95,99,111,110,102,61,101,41,46,100,101,108,105,109,105,116,101,114,38,38,40,116,104,105,115,46,100,101,108,105,109,105,116,101,114,61,101,46,100,101,108,105,109,105,116,101,114,41,44,116,104,105,115,46,95,109,97,120,76,105,115,116,101,110,101,114,115,61,101,46,109,97,120,76,105,115,116,101,110,101,114,115,33,61,61,108,63,101,46,109,97,120,76,105,115,116,101,110,101,114,115,58,114,44,101,46,119,105,108,100,99,97,114,100,38,38,40,116,104,105,115,46,119,105,108,100,99,97,114,100,61,101,46,119,105,108,100,99,97,114,100,41,44,101,46,110,101,119,76,105,115,116,101,110,101,114,38,38,40,116,104,105,115,46,95,110,101,119,76,105,115,116,101,110,101,114,61,101,46,110,101,119,76,105,115,116,101,110,101,114,41,44,101,46,114,101,109,111,118,101,76,105,115,116,101,110,101,114,38,38,40,116,104,105,115,46,95,114,101,109,111,118,101,76,105,115,116,101,110,101,114,61,101,46,114,101,109,111,118,101,76,105,115,116,101,110,101,114,41,44,101,46,118,101,114,98,111,115,101,77,101,109,111,114,121,76,101,97,107,38,38,40,116,104,105,115,46,118,101,114,98,111,115,101,77,101,109,111,114,121,76,101,97,107,61,101,46,118,101,114,98,111,115,101,77,101,109,111,114,121,76,101,97,107,41,44,116,104,105,115,46,119,105,108,100,99,97,114,100,38,38,40,116,104,105,115,46,108,105,115,116,101,110,101,114,84,114,101,101,61,123,125,41,41,58,116,104,105,115,46,95,109,97,120,76,105,115,116,101,110,101,114,115,61,114,125,102,117,110,99,116,105,111,110,32,111,40,101,44,116,41,123,118,97,114,32,110,61,34,40,110,111,100,101,41,32,119,97,114,110,105,110,103,58,32,112,111,115,115,105,98,108,101,32,69,118,101,110,116,69,109,105,116,116,101,114,32,109,101,109,111,114,121,32,108,101,97,107,32,100,101,116,101,99,116,101,100,46,32,34,43,101,43,34,32,108,105,115,116,101,110,101,114,115,32,97,100,100,101,100,46,32,85,115,101,32,101,109,105,116,116,101,114,46,115,101,116,77,97,120,76,105,115,116,101,110,101,114,115,40,41,32,116,111,32,105,110,99,114,101,97,115,101,32,108,105,109,105,116,46,34,59,105,102,40,116,104,105,115,46,118,101,114,98,111,115,101,77,101,109,111,114,121,76,101,97,107,38,38,40,110,43,61,34,32,69,118,101,110,116,32,110,97,109,101,58,32,34,43,116,43,34,46,34,41,44,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,112,114,111,99,101,115,115,38,38,112,114,111,99,101,115,115,46,101,109,105,116,87,97,114,110,105,110,103,41,123,118,97,114,32,105,61,110,101,119,32,69,114,114,111,114,40,110,41,59,105,46,110,97,109,101,61,34,77,97,120,76,105,115,116,101,110,101,114,115,69,120,99,101,101,100,101,100,87,97,114,110,105,110,103,34,44,105,46,101,109,105,116,116,101,114,61,116,104,105,115,44,105,46,99,111,117,110,116,61,101,44,112,114,111,99,101,115,115,46,101,109,105,116,87,97,114,110,105,110,103,40,105,41,125,101,108,115,101,32,99,111,110,115,111,108,101,46,101,114,114,111,114,40,110,41,44,99,111,110,115,111,108,101,46,116,114,97,99,101,38,38,99,111,110,115,111,108,101,46,116,114,97,99,101,40,41,125,102,117,110,99,116,105,111,110,32,105,40,101,41,123,116,104,105,115,46,95,101,118,101,110,116,115,61,123,125,44,116,104,105,115,46,95,110,101,119,76,105,115,116,101,110,101,114,61,33,49,44,116,104,105,115,46,95,114,101,109,111,118,101,76,105,115,116,101,110,101,114,61,33,49,44,116,104,105,115,46,118,101,114,98,111,115,101,77,101,109,111,114,121,76,101,97,107,61,33,49,44,110,46,99,97,108,108,40,116,104,105,115,44,101,41,125,102,117,110,99,116,105,111,110,32,121,40,101,44,116,44,110,44,105,41,123,105,102,40,33,110,41,114,101,116,117,114,110,91,93,59,118,97,114,32,114,44,115,44,111,44,97,44,99,44,117,44,108,44,104,61,91,93,44,100,61,116,46,108,101,110,103,116,104,44,102,61,116,91,105,93,44,118,61,116,91,105,43,49,93,59,105,102,40,105,61,61,61,100,38,38,110,46,95,108,105,115,116,101,110,101,114,115,41,123,105,102,40,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,110,46,95,108,105,115,116,101,110,101,114,115,41,114,101,116,117,114,110,32,101,38,38,101,46,112,117,115,104,40,110,46,95,108,105,115,116,101,110,101,114,115,41,44,91,110,93,59,102,111,114,40,114,61,48,44,115,61,110,46,95,108,105,115,116,101,110,101,114,115,46,108,101,110,103,116,104,59,114,60,115,59,114,43,43,41,101,38,38,101,46,112,117,115,104,40,110,46,95,108,105,115,116,101,110,101,114,115,91,114,93,41,59,114,101,116,117,114,110,91,110,93,125,105,102,40,34,42,34,61,61,61,102,124,124,34,42,42,34,61,61,61,102,124,124,110,91,102,93,41,123,105,102,40,34,42,34,61,61,61,102,41,123,102,111,114,40,111,32,105,110,32,110,41,34,95,108,105,115,116,101,110,101,114,115,34,33,61,61,111,38,38,110,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,111,41,38,38,40,104,61,104,46,99,111,110,99,97,116,40,121,40,101,44,116,44,110,91,111,93,44,105,43,49,41,41,41,59,114,101,116,117,114,110,32,104,125,105,102,40,34,42,42,34,61,61,61,102,41,123,102,111,114,40,111,32,105,110,40,108,61,105,43,49,61,61,61,100,124,124,105,43,50,61,61,61,100,38,38,34,42,34,61,61,61,118,41,38,38,110,46,95,108,105,115,116,101,110,101,114,115,38,38,40,104,61,104,46,99,111,110,99,97,116,40,121,40,101,44,116,44,110,44,100,41,41,41,44,110,41,34,95,108,105,115,116,101,110,101,114,115,34,33,61,61,111,38,38,110,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,111,41,38,38,40,104,61,34,42,34,61,61,61,111,124,124,34,42,42,34,61,61,61,111,63,40,110,91,111,93,46,95,108,105,115,116,101,110,101,114,115,38,38,33,108,38,38,40,104,61,104,46,99,111,110,99,97,116,40,121,40,101,44,116,44,110,91,111,93,44,100,41,41,41,44,104,46,99,111,110,99,97,116,40,121,40,101,44,116,44,110,91,111,93,44,105,41,41,41,58,111,61,61,61,118,63,104,46,99,111,110,99,97,116,40,121,40,101,44,116,44,110,91,111,93,44,105,43,50,41,41,58,104,46,99,111,110,99,97,116,40,121,40,101,44,116,44,110,91,111,93,44,105,41,41,41,59,114,101,116,117,114,110,32,104,125,104,61,104,46,99,111,110,99,97,116,40,121,40,101,44,116,44,110,91,102,93,44,105,43,49,41,41,125,105,102,40,40,97,61,110,91,34,42,34,93,41,38,38,121,40,101,44,116,44,97,44,105,43,49,41,44,99,61,110,91,34,42,42,34,93,41,105,102,40,105,60,100,41,102,111,114,40,111,32,105,110,32,99,46,95,108,105,115,116,101,110,101,114,115,38,38,121,40,101,44,116,44,99,44,100,41,44,99,41,34,95,108,105,115,116,101,110,101,114,115,34,33,61,61,111,38,38,99,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,111,41,38,38,40,111,61,61,61,118,63,121,40,101,44,116,44,99,91,111,93,44,105,43,50,41,58,111,61,61,61,102,63,121,40,101,44,116,44,99,91,111,93,44,105,43,49,41,58,40,40,117,61,123,125,41,91,111,93,61,99,91,111,93,44,121,40,101,44,116,44,123,34,42,42,34,58,117,125,44,105,43,49,41,41,41,59,101,108,115,101,32,99,46,95,108,105,115,116,101,110,101,114,115,63,121,40,101,44,116,44,99,44,100,41,58,99,91,34,42,34,93,38,38,99,91,34,42,34,93,46,95,108,105,115,116,101,110,101,114,115,38,38,121,40,101,44,116,44,99,91,34,42,34,93,44,100,41,59,114,101,116,117,114,110,32,104,125,118,97,114,32,108,44,104,44,114,59,104,61,65,114,114,97,121,46,105,115,65,114,114,97,121,63,65,114,114,97,121,46,105,115,65,114,114,97,121,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,34,91,111,98,106,101,99,116,32,65,114,114,97,121,93,34,61,61,61,79,98,106,101,99,116,46,112,114,111,116,111,116,121,112,101,46,116,111,83,116,114,105,110,103,46,99,97,108,108,40,101,41,125,44,114,61,49,48,44,40,105,46,69,118,101,110,116,69,109,105,116,116,101,114,50,61,105,41,46,112,114,111,116,111,116,121,112,101,46,100,101,108,105,109,105,116,101,114,61,34,46,34,44,105,46,112,114,111,116,111,116,121,112,101,46,115,101,116,77,97,120,76,105,115,116,101,110,101,114,115,61,102,117,110,99,116,105,111,110,40,101,41,123,101,33,61,61,108,38,38,40,116,104,105,115,46,95,109,97,120,76,105,115,116,101,110,101,114,115,61,101,44,116,104,105,115,46,95,99,111,110,102,124,124,40,116,104,105,115,46,95,99,111,110,102,61,123,125,41,44,116,104,105,115,46,95,99,111,110,102,46,109,97,120,76,105,115,116,101,110,101,114,115,61,101,41,125,44,105,46,112,114,111,116,111,116,121,112,101,46,101,118,101,110,116,61,34,34,44,105,46,112,114,111,116,111,116,121,112,101,46,111,110,99,101,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,111,110,99,101,40,101,44,116,44,33,49,41,125,44,105,46,112,114,111,116,111,116,121,112,101,46,112,114,101,112,101,110,100,79,110,99,101,76,105,115,116,101,110,101,114,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,111,110,99,101,40,101,44,116,44,33,48,41,125,44,105,46,112,114,111,116,111,116,121,112,101,46,95,111,110,99,101,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,109,97,110,121,40,101,44,49,44,116,44,110,41,44,116,104,105,115,125,44,105,46,112,114,111,116,111,116,121,112,101,46,109,97,110,121,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,109,97,110,121,40,101,44,116,44,110,44,33,49,41,125,44,105,46,112,114,111,116,111,116,121,112,101,46,112,114,101,112,101,110,100,77,97,110,121,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,109,97,110,121,40,101,44,116,44,110,44,33,48,41,125,44,105,46,112,114,111,116,111,116,121,112,101,46,95,109,97,110,121,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,105,41,123,118,97,114,32,114,61,116,104,105,115,59,105,102,40,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,110,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,109,97,110,121,32,111,110,108,121,32,97,99,99,101,112,116,115,32,105,110,115,116,97,110,99,101,115,32,111,102,32,70,117,110,99,116,105,111,110,34,41,59,102,117,110,99,116,105,111,110,32,115,40,41,123,114,101,116,117,114,110,32,48,61,61,45,45,116,38,38,114,46,111,102,102,40,101,44,115,41,44,110,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,125,114,101,116,117,114,110,32,115,46,95,111,114,105,103,105,110,61,110,44,116,104,105,115,46,95,111,110,40,101,44,115,44,105,41,44,114,125,44,105,46,112,114,111,116,111,116,121,112,101,46,101,109,105,116,61,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,101,118,101,110,116,115,124,124,117,46,99,97,108,108,40,116,104,105,115,41,59,118,97,114,32,101,61,97,114,103,117,109,101,110,116,115,91,48,93,59,105,102,40,34,110,101,119,76,105,115,116,101,110,101,114,34,61,61,61,101,38,38,33,116,104,105,115,46,95,110,101,119,76,105,115,116,101,110,101,114,38,38,33,116,104,105,115,46,95,101,118,101,110,116,115,46,110,101,119,76,105,115,116,101,110,101,114,41,114,101,116,117,114,110,33,49,59,118,97,114,32,116,44,110,44,105,44,114,44,115,44,111,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,105,102,40,116,104,105,115,46,95,97,108,108,38,38,116,104,105,115,46,95,97,108,108,46,108,101,110,103,116,104,41,123,105,102,40,115,61,116,104,105,115,46,95,97,108,108,46,115,108,105,99,101,40,41,44,51,60,111,41,102,111,114,40,116,61,110,101,119,32,65,114,114,97,121,40,111,41,44,114,61,48,59,114,60,111,59,114,43,43,41,116,91,114,93,61,97,114,103,117,109,101,110,116,115,91,114,93,59,102,111,114,40,105,61,48,44,110,61,115,46,108,101,110,103,116,104,59,105,60,110,59,105,43,43,41,115,119,105,116,99,104,40,116,104,105,115,46,101,118,101,110,116,61,101,44,111,41,123,99,97,115,101,32,49,58,115,91,105,93,46,99,97,108,108,40,116,104,105,115,44,101,41,59,98,114,101,97,107,59,99,97,115,101,32,50,58,115,91,105,93,46,99,97,108,108,40,116,104,105,115,44,101,44,97,114,103,117,109,101,110,116,115,91,49,93,41,59,98,114,101,97,107,59,99,97,115,101,32,51,58,115,91,105,93,46,99,97,108,108,40,116,104,105,115,44,101,44,97,114,103,117,109,101,110,116,115,91,49,93,44,97,114,103,117,109,101,110,116,115,91,50,93,41,59,98,114,101,97,107,59,100,101,102,97,117,108,116,58,115,91,105,93,46,97,112,112,108,121,40,116,104,105,115,44,116,41,125,125,105,102,40,116,104,105,115,46,119,105,108,100,99,97,114,100,41,123,115,61,91,93,59,118,97,114,32,97,61,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,101,63,101,46,115,112,108,105,116,40,116,104,105,115,46,100,101,108,105,109,105,116,101,114,41,58,101,46,115,108,105,99,101,40,41,59,121,46,99,97,108,108,40,116,104,105,115,44,115,44,97,44,116,104,105,115,46,108,105,115,116,101,110,101,114,84,114,101,101,44,48,41,125,101,108,115,101,123,105,102,40,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,40,115,61,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,41,41,123,115,119,105,116,99,104,40,116,104,105,115,46,101,118,101,110,116,61,101,44,111,41,123,99,97,115,101,32,49,58,115,46,99,97,108,108,40,116,104,105,115,41,59,98,114,101,97,107,59,99,97,115,101,32,50,58,115,46,99,97,108,108,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,91,49,93,41,59,98,114,101,97,107,59,99,97,115,101,32,51,58,115,46,99,97,108,108,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,91,49,93,44,97,114,103,117,109,101,110,116,115,91,50,93,41,59,98,114,101,97,107,59,100,101,102,97,117,108,116,58,102,111,114,40,116,61,110,101,119,32,65,114,114,97,121,40,111,45,49,41,44,114,61,49,59,114,60,111,59,114,43,43,41,116,91,114,45,49,93,61,97,114,103,117,109,101,110,116,115,91,114,93,59,115,46,97,112,112,108,121,40,116,104,105,115,44,116,41,125,114,101,116,117,114,110,33,48,125,115,61,115,38,38,115,46,115,108,105,99,101,40,41,125,105,102,40,115,38,38,115,46,108,101,110,103,116,104,41,123,105,102,40,51,60,111,41,102,111,114,40,116,61,110,101,119,32,65,114,114,97,121,40,111,45,49,41,44,114,61,49,59,114,60,111,59,114,43,43,41,116,91,114,45,49,93,61,97,114,103,117,109,101,110,116,115,91,114,93,59,102,111,114,40,105,61,48,44,110,61,115,46,108,101,110,103,116,104,59,105,60,110,59,105,43,43,41,115,119,105,116,99,104,40,116,104,105,115,46,101,118,101,110,116,61,101,44,111,41,123,99,97,115,101,32,49,58,115,91,105,93,46,99,97,108,108,40,116,104,105,115,41,59,98,114,101,97,107,59,99,97,115,101,32,50,58,115,91,105,93,46,99,97,108,108,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,91,49,93,41,59,98,114,101,97,107,59,99,97,115,101,32,51,58,115,91,105,93,46,99,97,108,108,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,91,49,93,44,97,114,103,117,109,101,110,116,115,91,50,93,41,59,98,114,101,97,107,59,100,101,102,97,117,108,116,58,115,91,105,93,46,97,112,112,108,121,40,116,104,105,115,44,116,41,125,114,101,116,117,114,110,33,48,125,105,102,40,33,116,104,105,115,46,95,97,108,108,38,38,34,101,114,114,111,114,34,61,61,61,101,41,116,104,114,111,119,32,97,114,103,117,109,101,110,116,115,91,49,93,105,110,115,116,97,110,99,101,111,102,32,69,114,114,111,114,63,97,114,103,117,109,101,110,116,115,91,49,93,58,110,101,119,32,69,114,114,111,114,40,34,85,110,99,97,117,103,104,116,44,32,117,110,115,112,101,99,105,102,105,101,100,32,39,101,114,114,111,114,39,32,101,118,101,110,116,46,34,41,59,114,101,116,117,114,110,33,33,116,104,105,115,46,95,97,108,108,125,44,105,46,112,114,111,116,111,116,121,112,101,46,101,109,105,116,65,115,121,110,99,61,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,101,118,101,110,116,115,124,124,117,46,99,97,108,108,40,116,104,105,115,41,59,118,97,114,32,101,61,97,114,103,117,109,101,110,116,115,91,48,93,59,105,102,40,34,110,101,119,76,105,115,116,101,110,101,114,34,61,61,61,101,38,38,33,116,104,105,115,46,95,110,101,119,76,105,115,116,101,110,101,114,38,38,33,116,104,105,115,46,95,101,118,101,110,116,115,46,110,101,119,76,105,115,116,101,110,101,114,41,114,101,116,117,114,110,32,80,114,111,109,105,115,101,46,114,101,115,111,108,118,101,40,91,33,49,93,41,59,118,97,114,32,116,44,110,44,105,44,114,44,115,44,111,61,91,93,44,97,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,105,102,40,116,104,105,115,46,95,97,108,108,41,123,105,102,40,51,60,97,41,102,111,114,40,116,61,110,101,119,32,65,114,114,97,121,40,97,41,44,114,61,49,59,114,60,97,59,114,43,43,41,116,91,114,93,61,97,114,103,117,109,101,110,116,115,91,114,93,59,102,111,114,40,105,61,48,44,110,61,116,104,105,115,46,95,97,108,108,46,108,101,110,103,116,104,59,105,60,110,59,105,43,43,41,115,119,105,116,99,104,40,116,104,105,115,46,101,118,101,110,116,61,101,44,97,41,123,99,97,115,101,32,49,58,111,46,112,117,115,104,40,116,104,105,115,46,95,97,108,108,91,105,93,46,99,97,108,108,40,116,104,105,115,44,101,41,41,59,98,114,101,97,107,59,99,97,115,101,32,50,58,111,46,112,117,115,104,40,116,104,105,115,46,95,97,108,108,91,105,93,46,99,97,108,108,40,116,104,105,115,44,101,44,97,114,103,117,109,101,110,116,115,91,49,93,41,41,59,98,114,101,97,107,59,99,97,115,101,32,51,58,111,46,112,117,115,104,40,116,104,105,115,46,95,97,108,108,91,105,93,46,99,97,108,108,40,116,104,105,115,44,101,44,97,114,103,117,109,101,110,116,115,91,49,93,44,97,114,103,117,109,101,110,116,115,91,50,93,41,41,59,98,114,101,97,107,59,100,101,102,97,117,108,116,58,111,46,112,117,115,104,40,116,104,105,115,46,95,97,108,108,91,105,93,46,97,112,112,108,121,40,116,104,105,115,44,116,41,41,125,125,105,102,40,116,104,105,115,46,119,105,108,100,99,97,114,100,41,123,115,61,91,93,59,118,97,114,32,99,61,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,101,63,101,46,115,112,108,105,116,40,116,104,105,115,46,100,101,108,105,109,105,116,101,114,41,58,101,46,115,108,105,99,101,40,41,59,121,46,99,97,108,108,40,116,104,105,115,44,115,44,99,44,116,104,105,115,46,108,105,115,116,101,110,101,114,84,114,101,101,44,48,41,125,101,108,115,101,32,115,61,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,59,105,102,40,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,115,41,115,119,105,116,99,104,40,116,104,105,115,46,101,118,101,110,116,61,101,44,97,41,123,99,97,115,101,32,49,58,111,46,112,117,115,104,40,115,46,99,97,108,108,40,116,104,105,115,41,41,59,98,114,101,97,107,59,99,97,115,101,32,50,58,111,46,112,117,115,104,40,115,46,99,97,108,108,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,91,49,93,41,41,59,98,114,101,97,107,59,99,97,115,101,32,51,58,111,46,112,117,115,104,40,115,46,99,97,108,108,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,91,49,93,44,97,114,103,117,109,101,110,116,115,91,50,93,41,41,59,98,114,101,97,107,59,100,101,102,97,117,108,116,58,102,111,114,40,116,61,110,101,119,32,65,114,114,97,121,40,97,45,49,41,44,114,61,49,59,114,60,97,59,114,43,43,41,116,91,114,45,49,93,61,97,114,103,117,109,101,110,116,115,91,114,93,59,111,46,112,117,115,104,40,115,46,97,112,112,108,121,40,116,104,105,115,44,116,41,41,125,101,108,115,101,32,105,102,40,115,38,38,115,46,108,101,110,103,116,104,41,123,105,102,40,115,61,115,46,115,108,105,99,101,40,41,44,51,60,97,41,102,111,114,40,116,61,110,101,119,32,65,114,114,97,121,40,97,45,49,41,44,114,61,49,59,114,60,97,59,114,43,43,41,116,91,114,45,49,93,61,97,114,103,117,109,101,110,116,115,91,114,93,59,102,111,114,40,105,61,48,44,110,61,115,46,108,101,110,103,116,104,59,105,60,110,59,105,43,43,41,115,119,105,116,99,104,40,116,104,105,115,46,101,118,101,110,116,61,101,44,97,41,123,99,97,115,101,32,49,58,111,46,112,117,115,104,40,115,91,105,93,46,99,97,108,108,40,116,104,105,115,41,41,59,98,114,101,97,107,59,99,97,115,101,32,50,58,111,46,112,117,115,104,40,115,91,105,93,46,99,97,108,108,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,91,49,93,41,41,59,98,114,101,97,107,59,99,97,115,101,32,51,58,111,46,112,117,115,104,40,115,91,105,93,46,99,97,108,108,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,91,49,93,44,97,114,103,117,109,101,110,116,115,91,50,93,41,41,59,98,114,101,97,107,59,100,101,102,97,117,108,116,58,111,46,112,117,115,104,40,115,91,105,93,46,97,112,112,108,121,40,116,104,105,115,44,116,41,41,125,125,101,108,115,101,32,105,102,40,33,116,104,105,115,46,95,97,108,108,38,38,34,101,114,114,111,114,34,61,61,61,101,41,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,91,49,93,105,110,115,116,97,110,99,101,111,102,32,69,114,114,111,114,63,80,114,111,109,105,115,101,46,114,101,106,101,99,116,40,97,114,103,117,109,101,110,116,115,91,49,93,41,58,80,114,111,109,105,115,101,46,114,101,106,101,99,116,40,34,85,110,99,97,117,103,104,116,44,32,117,110,115,112,101,99,105,102,105,101,100,32,39,101,114,114,111,114,39,32,101,118,101,110,116,46,34,41,59,114,101,116,117,114,110,32,80,114,111,109,105,115,101,46,97,108,108,40,111,41,125,44,105,46,112,114,111,116,111,116,121,112,101,46,111,110,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,111,110,40,101,44,116,44,33,49,41,125,44,105,46,112,114,111,116,111,116,121,112,101,46,112,114,101,112,101,110,100,76,105,115,116,101,110,101,114,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,111,110,40,101,44,116,44,33,48,41,125,44,105,46,112,114,111,116,111,116,121,112,101,46,111,110,65,110,121,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,111,110,65,110,121,40,101,44,33,49,41,125,44,105,46,112,114,111,116,111,116,121,112,101,46,112,114,101,112,101,110,100,65,110,121,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,111,110,65,110,121,40,101,44,33,48,41,125,44,105,46,112,114,111,116,111,116,121,112,101,46,97,100,100,76,105,115,116,101,110,101,114,61,105,46,112,114,111,116,111,116,121,112,101,46,111,110,44,105,46,112,114,111,116,111,116,121,112,101,46,95,111,110,65,110,121,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,102,40,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,101,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,111,110,65,110,121,32,111,110,108,121,32,97,99,99,101,112,116,115,32,105,110,115,116,97,110,99,101,115,32,111,102,32,70,117,110,99,116,105,111,110,34,41,59,114,101,116,117,114,110,32,116,104,105,115,46,95,97,108,108,124,124,40,116,104,105,115,46,95,97,108,108,61,91,93,41,44,116,63,116,104,105,115,46,95,97,108,108,46,117,110,115,104,105,102,116,40,101,41,58,116,104,105,115,46,95,97,108,108,46,112,117,115,104,40,101,41,44,116,104,105,115,125,44,105,46,112,114,111,116,111,116,121,112,101,46,95,111,110,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,105,102,40,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,101,41,114,101,116,117,114,110,32,116,104,105,115,46,95,111,110,65,110,121,40,101,44,116,41,44,116,104,105,115,59,105,102,40,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,116,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,111,110,32,111,110,108,121,32,97,99,99,101,112,116,115,32,105,110,115,116,97,110,99,101,115,32,111,102,32,70,117,110,99,116,105,111,110,34,41,59,114,101,116,117,114,110,32,116,104,105,115,46,95,101,118,101,110,116,115,124,124,117,46,99,97,108,108,40,116,104,105,115,41,44,116,104,105,115,46,95,110,101,119,76,105,115,116,101,110,101,114,38,38,116,104,105,115,46,101,109,105,116,40,34,110,101,119,76,105,115,116,101,110,101,114,34,44,101,44,116,41,44,116,104,105,115,46,119,105,108,100,99,97,114,100,63,102,117,110,99,116,105,111,110,40,101,44,116,41,123,102,111,114,40,118,97,114,32,110,61,48,44,105,61,40,101,61,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,101,63,101,46,115,112,108,105,116,40,116,104,105,115,46,100,101,108,105,109,105,116,101,114,41,58,101,46,115,108,105,99,101,40,41,41,46,108,101,110,103,116,104,59,110,43,49,60,105,59,110,43,43,41,105,102,40,34,42,42,34,61,61,61,101,91,110,93,38,38,34,42,42,34,61,61,61,101,91,110,43,49,93,41,114,101,116,117,114,110,59,102,111,114,40,118,97,114,32,114,61,116,104,105,115,46,108,105,115,116,101,110,101,114,84,114,101,101,44,115,61,101,46,115,104,105,102,116,40,41,59,115,33,61,61,108,59,41,123,105,102,40,114,91,115,93,124,124,40,114,91,115,93,61,123,125,41,44,114,61,114,91,115,93,44,48,61,61,61,101,46,108,101,110,103,116,104,41,114,101,116,117,114,110,32,114,46,95,108,105,115,116,101,110,101,114,115,63,40,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,114,46,95,108,105,115,116,101,110,101,114,115,38,38,40,114,46,95,108,105,115,116,101,110,101,114,115,61,91,114,46,95,108,105,115,116,101,110,101,114,115,93,41,44,114,46,95,108,105,115,116,101,110,101,114,115,46,112,117,115,104,40,116,41,44,33,114,46,95,108,105,115,116,101,110,101,114,115,46,119,97,114,110,101,100,38,38,48,60,116,104,105,115,46,95,109,97,120,76,105,115,116,101,110,101,114,115,38,38,114,46,95,108,105,115,116,101,110,101,114,115,46,108,101,110,103,116,104,62,116,104,105,115,46,95,109,97,120,76,105,115,116,101,110,101,114,115,38,38,40,114,46,95,108,105,115,116,101,110,101,114,115,46,119,97,114,110,101,100,61,33,48,44,111,46,99,97,108,108,40,116,104,105,115,44,114,46,95,108,105,115,116,101,110,101,114,115,46,108,101,110,103,116,104,44,115,41,41,41,58,114,46,95,108,105,115,116,101,110,101,114,115,61,116,44,33,48,59,115,61,101,46,115,104,105,102,116,40,41,125,114,101,116,117,114,110,33,48,125,46,99,97,108,108,40,116,104,105,115,44,101,44,116,41,58,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,63,40,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,38,38,40,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,61,91,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,93,41,44,110,63,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,46,117,110,115,104,105,102,116,40,116,41,58,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,46,112,117,115,104,40,116,41,44,33,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,46,119,97,114,110,101,100,38,38,48,60,116,104,105,115,46,95,109,97,120,76,105,115,116,101,110,101,114,115,38,38,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,46,108,101,110,103,116,104,62,116,104,105,115,46,95,109,97,120,76,105,115,116,101,110,101,114,115,38,38,40,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,46,119,97,114,110,101,100,61,33,48,44,111,46,99,97,108,108,40,116,104,105,115,44,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,46,108,101,110,103,116,104,44,101,41,41,41,58,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,61,116,44,116,104,105,115,125,44,105,46,112,114,111,116,111,116,121,112,101,46,111,102,102,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,102,40,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,116,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,114,101,109,111,118,101,76,105,115,116,101,110,101,114,32,111,110,108,121,32,116,97,107,101,115,32,105,110,115,116,97,110,99,101,115,32,111,102,32,70,117,110,99,116,105,111,110,34,41,59,118,97,114,32,110,44,105,61,91,93,59,105,102,40,116,104,105,115,46,119,105,108,100,99,97,114,100,41,123,118,97,114,32,114,61,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,101,63,101,46,115,112,108,105,116,40,116,104,105,115,46,100,101,108,105,109,105,116,101,114,41,58,101,46,115,108,105,99,101,40,41,59,105,61,121,46,99,97,108,108,40,116,104,105,115,44,110,117,108,108,44,114,44,116,104,105,115,46,108,105,115,116,101,110,101,114,84,114,101,101,44,48,41,125,101,108,115,101,123,105,102,40,33,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,41,114,101,116,117,114,110,32,116,104,105,115,59,110,61,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,44,105,46,112,117,115,104,40,123,95,108,105,115,116,101,110,101,114,115,58,110,125,41,125,102,111,114,40,118,97,114,32,115,61,48,59,115,60,105,46,108,101,110,103,116,104,59,115,43,43,41,123,118,97,114,32,111,61,105,91,115,93,59,105,102,40,110,61,111,46,95,108,105,115,116,101,110,101,114,115,44,104,40,110,41,41,123,102,111,114,40,118,97,114,32,97,61,45,49,44,99,61,48,44,117,61,110,46,108,101,110,103,116,104,59,99,60,117,59,99,43,43,41,105,102,40,110,91,99,93,61,61,61,116,124,124,110,91,99,93,46,108,105,115,116,101,110,101,114,38,38,110,91,99,93,46,108,105,115,116,101,110,101,114,61,61,61,116,124,124,110,91,99,93,46,95,111,114,105,103,105,110,38,38,110,91,99,93,46,95,111,114,105,103,105,110,61,61,61,116,41,123,97,61,99,59,98,114,101,97,107,125,105,102,40,97,60,48,41,99,111,110,116,105,110,117,101,59,114,101,116,117,114,110,32,116,104,105,115,46,119,105,108,100,99,97,114,100,63,111,46,95,108,105,115,116,101,110,101,114,115,46,115,112,108,105,99,101,40,97,44,49,41,58,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,46,115,112,108,105,99,101,40,97,44,49,41,44,48,61,61,61,110,46,108,101,110,103,116,104,38,38,40,116,104,105,115,46,119,105,108,100,99,97,114,100,63,100,101,108,101,116,101,32,111,46,95,108,105,115,116,101,110,101,114,115,58,100,101,108,101,116,101,32,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,41,44,116,104,105,115,46,95,114,101,109,111,118,101,76,105,115,116,101,110,101,114,38,38,116,104,105,115,46,101,109,105,116,40,34,114,101,109,111,118,101,76,105,115,116,101,110,101,114,34,44,101,44,116,41,44,116,104,105,115,125,40,110,61,61,61,116,124,124,110,46,108,105,115,116,101,110,101,114,38,38,110,46,108,105,115,116,101,110,101,114,61,61,61,116,124,124,110,46,95,111,114,105,103,105,110,38,38,110,46,95,111,114,105,103,105,110,61,61,61,116,41,38,38,40,116,104,105,115,46,119,105,108,100,99,97,114,100,63,100,101,108,101,116,101,32,111,46,95,108,105,115,116,101,110,101,114,115,58,100,101,108,101,116,101,32,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,44,116,104,105,115,46,95,114,101,109,111,118,101,76,105,115,116,101,110,101,114,38,38,116,104,105,115,46,101,109,105,116,40,34,114,101,109,111,118,101,76,105,115,116,101,110,101,114,34,44,101,44,116,41,41,125,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,101,40,116,41,123,105,102,40,116,33,61,61,108,41,123,118,97,114,32,110,61,79,98,106,101,99,116,46,107,101,121,115,40,116,41,59,102,111,114,40,118,97,114,32,105,32,105,110,32,110,41,123,118,97,114,32,114,61,110,91,105,93,44,115,61,116,91,114,93,59,115,32,105,110,115,116,97,110,99,101,111,102,32,70,117,110,99,116,105,111,110,124,124,34,111,98,106,101,99,116,34,33,61,116,121,112,101,111,102,32,115,124,124,110,117,108,108,61,61,61,115,124,124,40,48,60,79,98,106,101,99,116,46,107,101,121,115,40,115,41,46,108,101,110,103,116,104,38,38,101,40,116,91,114,93,41,44,48,61,61,61,79,98,106,101,99,116,46,107,101,121,115,40,115,41,46,108,101,110,103,116,104,38,38,100,101,108,101,116,101,32,116,91,114,93,41,125,125,125,40,116,104,105,115,46,108,105,115,116,101,110,101,114,84,114,101,101,41,44,116,104,105,115,125,44,105,46,112,114,111,116,111,116,121,112,101,46,111,102,102,65,110,121,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,44,110,61,48,44,105,61,48,59,105,102,40,101,38,38,116,104,105,115,46,95,97,108,108,38,38,48,60,116,104,105,115,46,95,97,108,108,46,108,101,110,103,116,104,41,123,102,111,114,40,110,61,48,44,105,61,40,116,61,116,104,105,115,46,95,97,108,108,41,46,108,101,110,103,116,104,59,110,60,105,59,110,43,43,41,105,102,40,101,61,61,61,116,91,110,93,41,114,101,116,117,114,110,32,116,46,115,112,108,105,99,101,40,110,44,49,41,44,116,104,105,115,46,95,114,101,109,111,118,101,76,105,115,116,101,110,101,114,38,38,116,104,105,115,46,101,109,105,116,40,34,114,101,109,111,118,101,76,105,115,116,101,110,101,114,65,110,121,34,44,101,41,44,116,104,105,115,125,101,108,115,101,123,105,102,40,116,61,116,104,105,115,46,95,97,108,108,44,116,104,105,115,46,95,114,101,109,111,118,101,76,105,115,116,101,110,101,114,41,102,111,114,40,110,61,48,44,105,61,116,46,108,101,110,103,116,104,59,110,60,105,59,110,43,43,41,116,104,105,115,46,101,109,105,116,40,34,114,101,109,111,118,101,76,105,115,116,101,110,101,114,65,110,121,34,44,116,91,110,93,41,59,116,104,105,115,46,95,97,108,108,61,91,93,125,114,101,116,117,114,110,32,116,104,105,115,125,44,105,46,112,114,111,116,111,116,121,112,101,46,114,101,109,111,118,101,76,105,115,116,101,110,101,114,61,105,46,112,114,111,116,111,116,121,112,101,46,111,102,102,44,105,46,112,114,111,116,111,116,121,112,101,46,114,101,109,111,118,101,65,108,108,76,105,115,116,101,110,101,114,115,61,102,117,110,99,116,105,111,110,40,101,41,123,105,102,40,101,61,61,61,108,41,114,101,116,117,114,110,32,116,104,105,115,46,95,101,118,101,110,116,115,38,38,117,46,99,97,108,108,40,116,104,105,115,41,44,116,104,105,115,59,105,102,40,116,104,105,115,46,119,105,108,100,99,97,114,100,41,102,111,114,40,118,97,114,32,116,61,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,101,63,101,46,115,112,108,105,116,40,116,104,105,115,46,100,101,108,105,109,105,116,101,114,41,58,101,46,115,108,105,99,101,40,41,44,110,61,121,46,99,97,108,108,40,116,104,105,115,44,110,117,108,108,44,116,44,116,104,105,115,46,108,105,115,116,101,110,101,114,84,114,101,101,44,48,41,44,105,61,48,59,105,60,110,46,108,101,110,103,116,104,59,105,43,43,41,110,91,105,93,46,95,108,105,115,116,101,110,101,114,115,61,110,117,108,108,59,101,108,115,101,32,116,104,105,115,46,95,101,118,101,110,116,115,38,38,40,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,61,110,117,108,108,41,59,114,101,116,117,114,110,32,116,104,105,115,125,44,105,46,112,114,111,116,111,116,121,112,101,46,108,105,115,116,101,110,101,114,115,61,102,117,110,99,116,105,111,110,40,101,41,123,105,102,40,116,104,105,115,46,119,105,108,100,99,97,114,100,41,123,118,97,114,32,116,61,91,93,44,110,61,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,101,63,101,46,115,112,108,105,116,40,116,104,105,115,46,100,101,108,105,109,105,116,101,114,41,58,101,46,115,108,105,99,101,40,41,59,114,101,116,117,114,110,32,121,46,99,97,108,108,40,116,104,105,115,44,116,44,110,44,116,104,105,115,46,108,105,115,116,101,110,101,114,84,114,101,101,44,48,41,44,116,125,114,101,116,117,114,110,32,116,104,105,115,46,95,101,118,101,110,116,115,124,124,117,46,99,97,108,108,40,116,104,105,115,41,44,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,124,124,40,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,61,91,93,41,44,104,40,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,41,124,124,40,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,61,91,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,93,41,44,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,125,44,105,46,112,114,111,116,111,116,121,112,101,46,101,118,101,110,116,78,97,109,101,115,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,79,98,106,101,99,116,46,107,101,121,115,40,116,104,105,115,46,95,101,118,101,110,116,115,41,125,44,105,46,112,114,111,116,111,116,121,112,101,46,108,105,115,116,101,110,101,114,67,111,117,110,116,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,108,105,115,116,101,110,101,114,115,40,101,41,46,108,101,110,103,116,104,125,44,105,46,112,114,111,116,111,116,121,112,101,46,108,105,115,116,101,110,101,114,115,65,110,121,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,97,108,108,63,116,104,105,115,46,95,97,108,108,58,91,93,125,44,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,108,38,38,108,46,97,109,100,63,108,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,105,125,41,58,101,46,101,120,112,111,114,116,115,61,105,125,41,46,69,118,101,110,116,69,109,105,116,116,101,114,50,59,102,117,110,99,116,105,111,110,32,78,40,101,44,116,44,110,41,123,114,101,116,117,114,110,32,101,46,109,111,100,101,108,91,116,93,46,97,112,112,108,121,40,101,46,109,111,100,101,108,44,110,41,125,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,111,40,101,41,123,118,97,114,32,114,59,97,40,116,104,105,115,44,111,41,44,40,114,61,104,40,116,104,105,115,44,117,40,111,41,46,99,97,108,108,40,116,104,105,115,41,41,41,46,95,108,97,115,116,83,101,108,101,99,116,101,100,78,111,100,101,44,114,46,95,109,117,116,101,100,61,33,49,44,114,46,97,108,108,111,119,115,76,111,97,100,69,118,101,110,116,115,61,33,49,44,114,46,105,100,61,80,40,41,44,114,46,105,110,105,116,105,97,108,105,122,101,100,61,33,49,44,114,46,105,115,68,121,110,97,109,105,99,61,33,49,44,114,46,111,112,116,115,61,101,44,114,46,112,114,101,118,101,110,116,68,101,115,101,108,101,99,116,105,111,110,61,33,49,44,114,46,99,111,110,102,105,103,61,99,46,100,101,102,97,117,108,116,115,68,101,101,112,40,123,125,44,101,44,123,97,108,108,111,119,76,111,97,100,69,118,101,110,116,115,58,91,93,44,99,104,101,99,107,98,111,120,58,123,97,117,116,111,67,104,101,99,107,67,104,105,108,100,114,101,110,58,33,48,125,44,99,111,110,116,101,120,116,77,101,110,117,58,33,49,44,100,97,116,97,58,33,49,44,101,100,105,116,97,98,108,101,58,33,49,44,101,100,105,116,105,110,103,58,123,97,100,100,58,33,49,44,101,100,105,116,58,33,49,44,114,101,109,111,118,101,58,33,49,125,44,110,111,100,101,115,58,123,114,101,115,101,116,83,116,97,116,101,79,110,82,101,115,116,111,114,101,58,33,48,125,44,112,97,103,105,110,97,116,105,111,110,58,123,108,105,109,105,116,58,45,49,125,44,115,101,97,114,99,104,58,123,109,97,116,99,104,101,114,58,33,49,44,109,97,116,99,104,80,114,111,99,101,115,115,111,114,58,33,49,125,44,115,101,108,101,99,116,105,111,110,58,123,97,108,108,111,119,58,99,46,110,111,111,112,44,97,117,116,111,68,101,115,101,108,101,99,116,58,33,48,44,97,117,116,111,83,101,108,101,99,116,67,104,105,108,100,114,101,110,58,33,49,44,100,105,115,97,98,108,101,68,105,114,101,99,116,68,101,115,101,108,101,99,116,105,111,110,58,33,49,44,109,111,100,101,58,34,100,101,102,97,117,108,116,34,44,109,117,108,116,105,112,108,101,58,33,49,44,114,101,113,117,105,114,101,58,33,49,125,44,115,104,111,119,67,104,101,99,107,98,111,120,101,115,58,33,49,44,115,111,114,116,58,33,49,125,41,44,34,99,104,101,99,107,98,111,120,34,61,61,61,114,46,99,111,110,102,105,103,46,115,101,108,101,99,116,105,111,110,46,109,111,100,101,38,38,40,114,46,99,111,110,102,105,103,46,115,101,108,101,99,116,105,111,110,46,97,117,116,111,83,101,108,101,99,116,67,104,105,108,100,114,101,110,61,33,48,44,114,46,111,110,40,34,110,111,100,101,46,99,104,101,99,107,101,100,34,44,102,117,110,99,116,105,111,110,40,101,41,123,101,46,115,101,108,101,99,116,101,100,40,41,124,124,101,46,115,101,108,101,99,116,40,33,48,41,125,41,44,114,46,111,110,40,34,110,111,100,101,46,115,101,108,101,99,116,101,100,34,44,102,117,110,99,116,105,111,110,40,101,41,123,101,46,99,104,101,99,107,101,100,40,41,124,124,101,46,99,104,101,99,107,40,33,48,41,125,41,44,114,46,111,110,40,34,110,111,100,101,46,117,110,99,104,101,99,107,101,100,34,44,102,117,110,99,116,105,111,110,40,101,41,123,101,46,115,101,108,101,99,116,101,100,40,41,38,38,101,46,100,101,115,101,108,101,99,116,40,33,48,41,125,41,44,114,46,111,110,40,34,110,111,100,101,46,100,101,115,101,108,101,99,116,101,100,34,44,102,117,110,99,116,105,111,110,40,101,41,123,101,46,99,104,101,99,107,101,100,40,41,38,38,101,46,117,110,99,104,101,99,107,40,33,48,41,125,41,41,44,114,46,99,111,110,102,105,103,46,115,101,108,101,99,116,105,111,110,46,97,117,116,111,83,101,108,101,99,116,67,104,105,108,100,114,101,110,38,38,40,114,46,99,111,110,102,105,103,46,115,101,108,101,99,116,105,111,110,46,109,117,108,116,105,112,108,101,61,33,48,44,114,46,99,111,110,102,105,103,46,115,101,108,101,99,116,105,111,110,46,97,117,116,111,68,101,115,101,108,101,99,116,61,33,49,41,44,101,46,101,100,105,116,97,98,108,101,38,38,33,101,46,101,100,105,116,105,110,103,38,38,40,114,46,99,111,110,102,105,103,46,101,100,105,116,105,110,103,46,97,100,100,61,33,48,44,114,46,99,111,110,102,105,103,46,101,100,105,116,105,110,103,46,101,100,105,116,61,33,48,44,114,46,99,111,110,102,105,103,46,101,100,105,116,105,110,103,46,114,101,109,111,118,101,61,33,48,41,44,99,46,105,115,70,117,110,99,116,105,111,110,40,101,46,115,101,97,114,99,104,41,38,38,40,114,46,99,111,110,102,105,103,46,115,101,97,114,99,104,61,123,109,97,116,99,104,101,114,58,101,46,115,101,97,114,99,104,44,109,97,116,99,104,80,114,111,99,101,115,115,111,114,58,33,49,125,41,44,114,46,100,101,102,97,117,108,116,83,116,97,116,101,61,123,99,111,108,108,97,112,115,101,100,58,33,48,44,101,100,105,116,97,98,108,101,58,99,46,103,101,116,40,108,40,114,41,44,34,99,111,110,102,105,103,46,101,100,105,116,105,110,103,46,101,100,105,116,34,41,44,101,100,105,116,105,110,103,58,33,49,44,100,114,97,103,103,97,98,108,101,58,33,48,44,34,100,114,111,112,45,116,97,114,103,101,116,34,58,33,48,44,102,111,99,117,115,101,100,58,33,49,44,104,105,100,100,101,110,58,33,49,44,105,110,100,101,116,101,114,109,105,110,97,116,101,58,33,49,44,108,111,97,100,105,110,103,58,33,49,44,109,97,116,99,104,101,100,58,33,49,44,114,101,109,111,118,101,100,58,33,49,44,114,101,110,100,101,114,101,100,58,33,49,44,115,101,108,101,99,116,97,98,108,101,58,33,48,44,115,101,108,101,99,116,101,100,58,33,49,125,44,114,46,97,108,108,111,119,115,76,111,97,100,69,118,101,110,116,115,61,99,46,105,115,65,114,114,97,121,40,114,46,99,111,110,102,105,103,46,97,108,108,111,119,76,111,97,100,69,118,101,110,116,115,41,38,38,48,60,114,46,99,111,110,102,105,103,46,97,108,108,111,119,76,111,97,100,69,118,101,110,116,115,46,108,101,110,103,116,104,44,114,46,105,115,68,121,110,97,109,105,99,61,99,46,105,115,70,117,110,99,116,105,111,110,40,114,46,99,111,110,102,105,103,46,100,97,116,97,41,59,118,97,114,32,115,61,114,46,101,109,105,116,59,114,101,116,117,114,110,32,114,46,101,109,105,116,61,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,118,97,114,32,101,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,44,116,61,110,101,119,32,65,114,114,97,121,40,101,41,44,110,61,48,59,110,60,101,59,110,43,43,41,116,91,110,93,61,97,114,103,117,109,101,110,116,115,91,110,93,59,105,102,40,33,114,46,105,115,69,118,101,110,116,77,117,116,101,100,40,116,91,48,93,41,41,123,105,102,40,99,46,105,115,70,117,110,99,116,105,111,110,40,99,46,103,101,116,40,116,44,34,91,48,93,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,34,41,41,41,123,118,97,114,32,105,61,116,91,48,93,59,105,46,116,114,101,101,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,61,33,49,44,105,46,112,114,101,118,101,110,116,84,114,101,101,68,101,102,97,117,108,116,61,102,117,110,99,116,105,111,110,40,41,123,105,46,116,114,101,101,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,61,33,48,125,125,115,46,97,112,112,108,121,40,108,40,114,41,44,116,41,125,125,44,114,46,109,111,100,101,108,61,110,101,119,32,103,40,108,40,114,41,41,44,114,46,99,111,110,102,105,103,46,100,97,116,97,38,38,114,46,108,111,97,100,40,114,46,99,111,110,102,105,103,46,100,97,116,97,41,44,114,46,105,110,105,116,105,97,108,105,122,101,100,61,33,48,44,114,125,114,101,116,117,114,110,32,116,40,111,44,79,41,44,101,40,111,44,91,123,107,101,121,58,34,97,100,100,78,111,100,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,97,100,100,78,111,100,101,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,97,100,100,78,111,100,101,115,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,116,104,105,115,59,116,104,105,115,46,98,97,116,99,104,40,41,59,118,97,114,32,110,61,110,101,119,32,103,40,116,104,105,115,41,59,114,101,116,117,114,110,32,99,46,101,97,99,104,40,101,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,110,46,112,117,115,104,40,116,46,97,100,100,78,111,100,101,40,101,41,41,125,41,44,116,104,105,115,46,101,110,100,40,41,44,110,125,125,44,123,107,101,121,58,34,97,112,112,108,121,67,104,97,110,103,101,115,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,109,111,100,101,108,46,97,112,112,108,121,67,104,97,110,103,101,115,40,41,125,125,44,123,107,101,121,58,34,97,118,97,105,108,97,98,108,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,97,118,97,105,108,97,98,108,101,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,98,97,116,99,104,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,109,111,100,101,108,46,98,97,116,99,104,40,41,125,125,44,123,107,101,121,58,34,98,108,117,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,98,108,117,114,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,98,108,117,114,68,101,101,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,98,108,117,114,68,101,101,112,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,98,111,117,110,100,105,110,103,78,111,100,101,115,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,99,46,116,114,97,110,115,102,111,114,109,40,97,114,103,117,109,101,110,116,115,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,101,91,116,46,105,110,100,101,120,80,97,116,104,40,41,46,114,101,112,108,97,99,101,40,47,92,46,47,103,44,34,34,41,93,61,116,125,44,123,125,41,44,116,61,115,40,99,46,115,111,114,116,66,121,40,79,98,106,101,99,116,46,107,101,121,115,40,101,41,41,41,44,110,61,116,91,48,93,44,105,61,116,46,115,108,105,99,101,40,49,41,59,114,101,116,117,114,110,91,99,46,103,101,116,40,101,44,110,41,44,99,46,103,101,116,40,101,44,105,41,93,125,125,44,123,107,101,121,58,34,99,97,110,65,117,116,111,68,101,115,101,108,101,99,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,99,111,110,102,105,103,46,115,101,108,101,99,116,105,111,110,46,97,117,116,111,68,101,115,101,108,101,99,116,38,38,33,116,104,105,115,46,112,114,101,118,101,110,116,68,101,115,101,108,101,99,116,105,111,110,125,125,44,123,107,101,121,58,34,99,104,101,99,107,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,99,104,101,99,107,101,100,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,99,108,101,97,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,99,108,101,97,110,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,99,108,101,97,114,83,101,97,114,99,104,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,98,97,116,99,104,40,41,44,116,104,105,115,46,114,101,99,117,114,115,101,68,111,119,110,40,102,117,110,99,116,105,111,110,40,101,41,123,101,46,115,104,111,119,40,41,46,99,111,108,108,97,112,115,101,40,41,46,115,116,97,116,101,40,34,109,97,116,99,104,101,100,34,44,33,49,41,125,41,44,116,104,105,115,46,101,110,100,40,41,44,116,104,105,115,125,125,44,123,107,101,121,58,34,99,108,111,110,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,99,108,111,110,101,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,99,111,108,108,97,112,115,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,99,111,108,108,97,112,115,101,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,99,111,108,108,97,112,115,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,99,111,108,108,97,112,115,101,100,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,99,111,108,108,97,112,115,101,68,101,101,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,99,111,108,108,97,112,115,101,68,101,101,112,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,99,111,110,99,97,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,99,111,110,99,97,116,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,99,111,112,121,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,99,111,112,121,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,99,114,101,97,116,101,78,111,100,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,111,46,105,115,84,114,101,101,78,111,100,101,40,101,41,63,101,58,67,40,116,104,105,115,44,101,41,125,125,44,123,107,101,121,58,34,100,101,101,112,101,115,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,100,101,101,112,101,115,116,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,100,101,115,101,108,101,99,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,100,101,115,101,108,101,99,116,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,100,101,115,101,108,101,99,116,68,101,101,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,100,101,115,101,108,101,99,116,68,101,101,112,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,100,105,115,97,98,108,101,68,101,115,101,108,101,99,116,105,111,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,99,111,110,102,105,103,46,115,101,108,101,99,116,105,111,110,46,109,117,108,116,105,112,108,101,38,38,40,116,104,105,115,46,112,114,101,118,101,110,116,68,101,115,101,108,101,99,116,105,111,110,61,33,48,41,44,116,104,105,115,125,125,44,123,107,101,121,58,34,101,97,99,104,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,101,97,99,104,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,101,100,105,116,97,98,108,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,101,100,105,116,97,98,108,101,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,101,100,105,116,105,110,103,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,101,100,105,116,105,110,103,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,101,110,97,98,108,101,68,101,115,101,108,101,99,116,105,111,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,112,114,101,118,101,110,116,68,101,115,101,108,101,99,116,105,111,110,61,33,49,44,116,104,105,115,125,125,44,123,107,101,121,58,34,101,110,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,109,111,100,101,108,46,101,110,100,40,41,125,125,44,123,107,101,121,58,34,101,118,101,114,121,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,101,118,101,114,121,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,101,120,112,97,110,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,101,120,112,97,110,100,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,101,120,112,97,110,100,68,101,101,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,101,120,112,97,110,100,68,101,101,112,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,101,120,112,97,110,100,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,101,120,112,97,110,100,101,100,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,101,120,116,114,97,99,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,101,120,116,114,97,99,116,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,102,105,108,116,101,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,102,105,108,116,101,114,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,102,105,108,116,101,114,66,121,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,102,105,108,116,101,114,66,121,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,102,105,110,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,102,105,110,100,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,102,105,114,115,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,102,105,114,115,116,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,102,108,97,116,116,101,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,102,108,97,116,116,101,110,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,102,111,99,117,115,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,102,111,99,117,115,101,100,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,102,111,114,69,97,99,104,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,101,97,99,104,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,103,101,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,103,101,116,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,104,105,100,100,101,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,104,105,100,100,101,110,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,104,105,100,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,104,105,100,101,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,104,105,100,101,68,101,101,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,104,105,100,101,68,101,101,112,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,105,110,100,101,116,101,114,109,105,110,97,116,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,105,110,100,101,116,101,114,109,105,110,97,116,101,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,105,110,100,101,120,79,102,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,105,110,100,101,120,79,102,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,105,110,115,101,114,116,65,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,105,110,115,101,114,116,65,116,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,105,110,118,111,107,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,105,110,118,111,107,101,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,105,110,118,111,107,101,68,101,101,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,105,110,118,111,107,101,68,101,101,112,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,105,115,69,118,101,110,116,77,117,116,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,99,46,105,115,66,111,111,108,101,97,110,40,116,104,105,115,46,109,117,116,101,100,40,41,41,63,116,104,105,115,46,109,117,116,101,100,40,41,58,99,46,105,110,99,108,117,100,101,115,40,116,104,105,115,46,109,117,116,101,100,40,41,44,101,41,125,125,44,123,107,101,121,58,34,105,115,84,114,101,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,32,105,110,115,116,97,110,99,101,111,102,32,111,125,125,44,123,107,101,121,58,34,106,111,105,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,106,111,105,110,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,108,97,115,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,108,97,115,116,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,108,97,115,116,83,101,108,101,99,116,101,100,78,111,100,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,108,97,115,116,83,101,108,101,99,116,101,100,78,111,100,101,125,125,44,123,107,101,121,58,34,108,111,97,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,111,61,116,104,105,115,44,101,61,110,101,119,32,102,40,102,117,110,99,116,105,111,110,40,114,44,115,41,123,102,117,110,99,116,105,111,110,32,101,40,101,44,116,41,123,105,102,40,33,99,46,105,115,65,114,114,97,121,76,105,107,101,40,101,41,41,114,101,116,117,114,110,32,115,40,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,76,111,97,100,101,114,32,114,101,113,117,105,114,101,115,32,97,110,32,97,114,114,97,121,45,108,105,107,101,32,96,110,111,100,101,115,96,32,112,97,114,97,109,101,116,101,114,46,34,41,41,59,33,111,46,105,110,105,116,105,97,108,105,122,101,100,38,38,99,46,105,115,65,114,114,97,121,76,105,107,101,40,101,41,63,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,40,41,123,111,46,101,109,105,116,40,34,100,97,116,97,46,108,111,97,100,101,100,34,44,101,41,125,41,58,111,46,101,109,105,116,40,34,100,97,116,97,46,108,111,97,100,101,100,34,44,101,41,59,118,97,114,32,110,61,83,40,111,44,101,41,59,102,117,110,99,116,105,111,110,32,105,40,41,123,111,46,101,109,105,116,40,34,109,111,100,101,108,46,108,111,97,100,101,100,34,44,111,46,109,111,100,101,108,41,44,114,40,111,46,109,111,100,101,108,41,44,111,46,109,111,100,101,108,46,97,112,112,108,121,67,104,97,110,103,101,115,40,41,125,111,46,99,111,110,102,105,103,46,100,101,102,101,114,114,101,100,76,111,97,100,105,110,103,63,111,46,109,111,100,101,108,61,111,46,109,111,100,101,108,46,99,111,110,99,97,116,40,110,41,58,111,46,109,111,100,101,108,61,110,44,111,46,109,111,100,101,108,46,95,112,97,103,105,110,97,116,105,111,110,46,116,111,116,97,108,61,101,46,108,101,110,103,116,104,44,99,46,112,97,114,115,101,73,110,116,40,116,41,62,101,46,108,101,110,103,116,104,38,38,40,111,46,109,111,100,101,108,46,95,112,97,103,105,110,97,116,105,111,110,46,116,111,116,97,108,61,99,46,112,97,114,115,101,73,110,116,40,116,41,41,44,116,124,124,111,46,109,111,100,101,108,46,114,101,99,117,114,115,101,68,111,119,110,40,102,117,110,99,116,105,111,110,40,101,41,123,101,46,104,97,115,67,104,105,108,100,114,101,110,40,41,38,38,40,101,46,99,104,105,108,100,114,101,110,46,95,112,97,103,105,110,97,116,105,111,110,46,116,111,116,97,108,61,101,46,99,104,105,108,100,114,101,110,46,108,101,110,103,116,104,41,125,41,44,111,46,99,111,110,102,105,103,46,115,101,108,101,99,116,105,111,110,46,114,101,113,117,105,114,101,38,38,33,111,46,115,101,108,101,99,116,101,100,40,41,46,108,101,110,103,116,104,38,38,111,46,115,101,108,101,99,116,70,105,114,115,116,65,118,97,105,108,97,98,108,101,78,111,100,101,40,41,44,33,111,46,105,110,105,116,105,97,108,105,122,101,100,38,38,99,46,105,115,65,114,114,97,121,40,101,41,63,115,101,116,84,105,109,101,111,117,116,40,105,41,58,105,40,41,125,105,102,40,99,46,105,115,65,114,114,97,121,76,105,107,101,40,110,41,41,101,40,110,41,59,101,108,115,101,32,105,102,40,99,46,105,115,70,117,110,99,116,105,111,110,40,110,41,41,123,118,97,114,32,116,61,110,40,110,117,108,108,44,101,44,115,44,111,46,112,97,103,105,110,97,116,105,111,110,40,41,41,59,116,38,38,40,110,61,116,41,125,99,46,105,115,79,98,106,101,99,116,40,110,41,63,109,40,110,41,46,116,104,101,110,40,101,41,46,99,97,116,99,104,40,115,41,58,115,40,110,101,119,32,69,114,114,111,114,40,34,73,110,118,97,108,105,100,32,100,97,116,97,32,108,111,97,100,101,114,46,34,41,41,125,41,59,114,101,116,117,114,110,32,101,46,99,97,116,99,104,40,102,117,110,99,116,105,111,110,40,101,41,123,111,46,101,109,105,116,40,34,100,97,116,97,46,108,111,97,100,101,114,114,111,114,34,44,101,41,125,41,44,116,104,105,115,46,95,108,111,97,100,101,114,61,123,112,114,111,109,105,115,101,58,101,125,44,101,125,125,44,123,107,101,121,58,34,108,111,97,100,105,110,103,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,108,111,97,100,105,110,103,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,108,111,97,100,77,111,114,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,108,111,97,100,77,111,114,101,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,109,97,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,109,97,112,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,109,97,116,99,104,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,109,97,116,99,104,101,100,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,109,111,118,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,109,111,118,101,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,109,117,116,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,99,46,105,115,83,116,114,105,110,103,40,101,41,124,124,99,46,105,115,65,114,114,97,121,40,101,41,63,116,104,105,115,46,95,109,117,116,101,100,61,99,46,99,97,115,116,65,114,114,97,121,40,101,41,58,116,104,105,115,46,95,109,117,116,101,100,61,33,48,44,116,104,105,115,125,125,44,123,107,101,121,58,34,109,117,116,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,109,117,116,101,100,125,125,44,123,107,101,121,58,34,110,111,100,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,110,111,100,101,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,110,111,100,101,115,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,110,111,100,101,115,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,112,97,103,105,110,97,116,105,111,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,112,97,103,105,110,97,116,105,111,110,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,112,111,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,112,111,112,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,112,117,115,104,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,112,117,115,104,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,114,101,99,117,114,115,101,68,111,119,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,114,101,99,117,114,115,101,68,111,119,110,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,114,101,100,117,99,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,114,101,100,117,99,101,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,114,101,100,117,99,101,82,105,103,104,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,114,101,100,117,99,101,82,105,103,104,116,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,114,101,108,111,97,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,114,101,115,101,116,40,41,44,116,104,105,115,46,108,111,97,100,40,116,104,105,115,46,111,112,116,115,46,100,97,116,97,124,124,116,104,105,115,46,99,111,110,102,105,103,46,100,97,116,97,41,125,125,44,123,107,101,121,58,34,114,101,109,111,118,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,114,101,109,111,118,101,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,114,101,109,111,118,101,65,108,108,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,114,101,115,101,116,40,41,46,97,112,112,108,121,67,104,97,110,103,101,115,40,41,44,116,104,105,115,125,125,44,123,107,101,121,58,34,114,101,109,111,118,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,114,101,109,111,118,101,100,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,114,101,115,101,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,109,111,100,101,108,61,110,101,119,32,103,40,116,104,105,115,41,44,116,104,105,115,125,125,44,123,107,101,121,58,34,114,101,115,116,111,114,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,114,101,115,116,111,114,101,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,114,101,115,116,111,114,101,68,101,101,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,114,101,115,116,111,114,101,68,101,101,112,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,114,101,118,101,114,115,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,114,101,118,101,114,115,101,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,115,101,97,114,99,104,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,114,61,116,104,105,115,44,101,61,116,104,105,115,46,99,111,110,102,105,103,46,115,101,97,114,99,104,44,105,61,101,46,109,97,116,99,104,101,114,44,115,61,101,46,109,97,116,99,104,80,114,111,99,101,115,115,111,114,59,114,101,116,117,114,110,33,110,124,124,99,46,105,115,83,116,114,105,110,103,40,110,41,38,38,99,46,105,115,69,109,112,116,121,40,110,41,63,102,46,114,101,115,111,108,118,101,40,116,104,105,115,46,99,108,101,97,114,83,101,97,114,99,104,40,41,41,58,40,116,104,105,115,46,98,97,116,99,104,40,41,44,116,104,105,115,46,114,101,99,117,114,115,101,68,111,119,110,40,102,117,110,99,116,105,111,110,40,101,41,123,101,46,115,116,97,116,101,40,34,104,105,100,100,101,110,34,44,33,48,41,44,101,46,115,116,97,116,101,40,34,109,97,116,99,104,101,100,34,44,33,49,41,125,41,44,116,104,105,115,46,101,110,100,40,41,44,105,61,99,46,105,115,70,117,110,99,116,105,111,110,40,105,41,63,105,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,44,105,61,110,101,119,32,103,40,114,41,59,99,46,105,115,83,116,114,105,110,103,40,116,41,38,38,40,116,61,110,101,119,32,82,101,103,69,120,112,40,116,44,34,105,34,41,41,44,110,61,99,46,105,115,82,101,103,69,120,112,40,116,41,63,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,46,116,101,115,116,40,101,46,116,101,120,116,41,125,58,116,44,114,46,109,111,100,101,108,46,114,101,99,117,114,115,101,68,111,119,110,40,102,117,110,99,116,105,111,110,40,101,41,123,101,46,114,101,109,111,118,101,100,40,41,124,124,110,40,101,41,38,38,105,46,112,117,115,104,40,101,41,125,41,44,101,40,105,41,125,44,115,61,99,46,105,115,70,117,110,99,116,105,111,110,40,115,41,63,115,58,102,117,110,99,116,105,111,110,40,101,41,123,101,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,101,41,123,101,46,115,104,111,119,40,41,46,115,116,97,116,101,40,34,109,97,116,99,104,101,100,34,44,33,48,41,44,101,46,101,120,112,97,110,100,80,97,114,101,110,116,115,40,41,46,99,111,108,108,97,112,115,101,40,41,44,101,46,104,97,115,67,104,105,108,100,114,101,110,40,41,38,38,101,46,99,104,105,108,100,114,101,110,46,115,104,111,119,68,101,101,112,40,41,125,41,125,44,110,101,119,32,102,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,105,40,110,44,102,117,110,99,116,105,111,110,40,101,41,123,111,46,105,115,84,114,101,101,78,111,100,101,115,40,101,41,124,124,40,101,61,114,46,110,111,100,101,115,40,99,46,109,97,112,40,101,44,34,105,100,34,41,41,41,44,114,46,98,97,116,99,104,40,41,44,115,40,101,41,44,114,46,101,110,100,40,41,44,116,40,101,41,125,44,101,41,125,41,41,125,125,44,123,107,101,121,58,34,115,101,108,101,99,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,115,101,108,101,99,116,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,115,101,108,101,99,116,97,98,108,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,115,101,108,101,99,116,97,98,108,101,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,115,101,108,101,99,116,66,101,116,119,101,101,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,116,104,105,115,46,98,97,116,99,104,40,41,59,102,111,114,40,118,97,114,32,110,61,101,46,110,101,120,116,86,105,115,105,98,108,101,78,111,100,101,40,41,59,110,46,105,100,33,61,61,116,46,105,100,59,41,110,46,115,101,108,101,99,116,40,41,44,110,61,110,46,110,101,120,116,86,105,115,105,98,108,101,78,111,100,101,40,41,59,114,101,116,117,114,110,32,116,104,105,115,46,101,110,100,40,41,44,116,104,105,115,125,125,44,123,107,101,121,58,34,115,101,108,101,99,116,68,101,101,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,115,101,108,101,99,116,68,101,101,112,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,115,101,108,101,99,116,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,115,101,108,101,99,116,101,100,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,115,101,108,101,99,116,70,105,114,115,116,65,118,97,105,108,97,98,108,101,78,111,100,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,109,111,100,101,108,46,102,105,108,116,101,114,66,121,40,34,97,118,97,105,108,97,98,108,101,34,41,46,103,101,116,40,48,41,59,114,101,116,117,114,110,32,101,38,38,101,46,115,101,108,101,99,116,40,41,44,101,125,125,44,123,107,101,121,58,34,115,104,105,102,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,115,104,105,102,116,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,115,104,111,119,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,115,104,111,119,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,115,104,111,119,68,101,101,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,115,104,111,119,68,101,101,112,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,115,108,105,99,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,115,108,105,99,101,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,115,111,102,116,82,101,109,111,118,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,115,111,102,116,82,101,109,111,118,101,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,115,111,109,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,115,111,109,101,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,115,111,114,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,115,111,114,116,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,115,111,114,116,66,121,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,115,111,114,116,66,121,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,115,111,114,116,68,101,101,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,115,111,114,116,68,101,101,112,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,115,112,108,105,99,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,115,108,105,99,101,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,115,116,97,116,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,115,116,97,116,101,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,115,116,97,116,101,68,101,101,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,115,116,97,116,101,68,101,101,112,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,115,119,97,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,115,119,97,112,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,116,111,65,114,114,97,121,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,116,111,65,114,114,97,121,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,116,111,83,116,114,105,110,103,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,116,111,83,116,114,105,110,103,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,117,110,109,117,116,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,99,46,105,115,83,116,114,105,110,103,40,101,41,124,124,99,46,105,115,65,114,114,97,121,40,101,41,63,40,116,104,105,115,46,95,109,117,116,101,100,61,99,46,100,105,102,102,101,114,101,110,99,101,40,116,104,105,115,46,95,109,117,116,101,100,44,99,46,99,97,115,116,65,114,114,97,121,40,101,41,41,44,116,104,105,115,46,95,109,117,116,101,100,46,108,101,110,103,116,104,124,124,40,116,104,105,115,46,95,109,117,116,101,100,61,33,49,41,41,58,116,104,105,115,46,95,109,117,116,101,100,61,33,49,44,116,104,105,115,125,125,44,123,107,101,121,58,34,117,110,115,104,105,102,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,117,110,115,104,105,102,116,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,118,105,115,105,98,108,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,118,105,115,105,98,108,101,34,44,97,114,103,117,109,101,110,116,115,41,125,125,93,44,91,123,107,101,121,58,34,105,115,84,114,101,101,78,111,100,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,32,105,110,115,116,97,110,99,101,111,102,32,119,125,125,44,123,107,101,121,58,34,105,115,84,114,101,101,78,111,100,101,115,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,32,105,110,115,116,97,110,99,101,111,102,32,103,125,125,93,41,44,111,125,40,41,125,41,59,102,117,110,99,116,105,111,110,32,98,97,115,101,83,116,97,116,101,67,104,97,110,103,101,40,112,114,111,112,44,32,118,97,108,117,101,44,32,118,101,114,98,44,32,110,111,100,101,44,32,100,101,101,112,41,32,123,32,105,102,32,40,110,111,100,101,46,115,116,97,116,101,40,112,114,111,112,41,32,33,61,61,32,118,97,108,117,101,41,32,123,32,110,111,100,101,46,99,111,110,116,101,120,116,40,41,46,98,97,116,99,104,40,41,59,32,105,102,32,40,110,111,100,101,46,95,116,114,101,101,46,99,111,110,102,105,103,46,110,111,100,101,115,46,114,101,115,101,116,83,116,97,116,101,79,110,82,101,115,116,111,114,101,32,38,38,32,118,101,114,98,32,61,61,61,32,39,114,101,115,116,111,114,101,100,39,41,32,123,32,114,101,115,101,116,83,116,97,116,101,40,110,111,100,101,41,59,32,125,32,105,102,32,40,118,97,108,117,101,32,38,38,32,112,114,111,112,32,61,61,61,32,39,99,104,101,99,107,101,100,39,41,32,123,32,110,111,100,101,46,115,116,97,116,101,40,39,105,110,100,101,116,101,114,109,105,110,97,116,101,39,44,32,102,97,108,115,101,41,59,32,125,32,110,111,100,101,46,115,116,97,116,101,40,112,114,111,112,44,32,118,97,108,117,101,41,59,32,110,111,100,101,46,95,116,114,101,101,46,101,109,105,116,40,39,110,111,100,101,46,39,32,43,32,118,101,114,98,44,32,110,111,100,101,44,32,102,97,108,115,101,41,59,32,105,102,32,40,100,101,101,112,32,38,38,32,110,111,100,101,46,104,97,115,67,104,105,108,100,114,101,110,40,41,41,32,123,32,110,111,100,101,46,99,104,105,108,100,114,101,110,46,114,101,99,117,114,115,101,68,111,119,110,40,99,104,105,108,100,32,61,62,32,123,32,98,97,115,101,83,116,97,116,101,67,104,97,110,103,101,40,112,114,111,112,44,32,118,97,108,117,101,44,32,118,101,114,98,44,32,99,104,105,108,100,41,59,32,125,41,59,32,125,32,105,102,32,40,112,114,111,112,32,61,61,61,32,39,104,105,100,100,101,110,39,32,124,124,32,112,114,111,112,32,61,61,61,32,39,114,101,109,111,118,101,100,39,41,32,123,32,110,111,100,101,46,99,111,110,116,101,120,116,40,41,46,105,110,100,105,99,101,115,68,105,114,116,121,32,61,32,116,114,117,101,59,32,110,111,100,101,46,99,111,110,116,101,120,116,40,41,46,99,97,108,99,117,108,97,116,101,82,101,110,100,101,114,97,98,108,101,80,111,115,105,116,105,111,110,115,40,41,59,32,125,32,110,111,100,101,46,109,97,114,107,68,105,114,116,121,40,41,59,32,110,111,100,101,46,99,111,110,116,101,120,116,40,41,46,101,110,100,40,41,59,32,125,32,114,101,116,117,114,110,32,110,111,100,101,59,32,125,47,42,32,73,110,115,112,105,114,101,32,84,114,101,101,32,68,79,77,10,32,42,32,64,118,101,114,115,105,111,110,32,52,46,48,46,54,10,32,42,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,104,101,108,105,111,110,51,47,105,110,115,112,105,114,101,45,116,114,101,101,45,100,111,109,10,32,42,32,64,99,111,112,121,114,105,103,104,116,32,67,111,112,121,114,105,103,104,116,32,50,48,49,53,32,72,101,108,105,111,110,51,44,32,97,110,100,32,111,116,104,101,114,32,99,111,110,116,114,105,98,117,116,111,114,115,10,32,42,32,64,108,105,99,101,110,115,101,32,76,105,99,101,110,115,101,100,32,117,110,100,101,114,32,77,73,84,10,32,42,32,32,32,32,32,32,32,32,32,32,115,101,101,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,104,101,108,105,111,110,51,47,105,110,115,112,105,114,101,45,116,114,101,101,45,100,111,109,47,98,108,111,98,47,109,97,115,116,101,114,47,76,73,67,69,78,83,69,10,32,42,47,33,102,117,110,99,116,105,111,110,40,101,44,116,41,123,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,101,120,112,111,114,116,115,38,38,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,109,111,100,117,108,101,63,109,111,100,117,108,101,46,101,120,112,111,114,116,115,61,116,40,114,101,113,117,105,114,101,40,34,108,111,100,97,115,104,34,41,44,114,101,113,117,105,114,101,40,34,105,110,115,112,105,114,101,45,116,114,101,101,34,41,41,58,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,100,101,102,105,110,101,38,38,100,101,102,105,110,101,46,97,109,100,63,100,101,102,105,110,101,40,91,34,108,111,100,97,115,104,34,44,34,105,110,115,112,105,114,101,45,116,114,101,101,34,93,44,116,41,58,101,46,73,110,115,112,105,114,101,84,114,101,101,68,79,77,61,116,40,101,46,95,44,101,46,73,110,115,112,105,114,101,84,114,101,101,41,125,40,116,104,105,115,44,102,117,110,99,116,105,111,110,40,108,44,105,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,105,61,105,38,38,105,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,34,100,101,102,97,117,108,116,34,41,63,105,46,100,101,102,97,117,108,116,58,105,59,118,97,114,32,109,61,34,36,78,79,95,79,80,34,44,97,61,34,97,32,114,117,110,116,105,109,101,32,101,114,114,111,114,32,111,99,99,117,114,101,100,33,32,85,115,101,32,73,110,102,101,114,110,111,32,105,110,32,100,101,118,101,108,111,112,109,101,110,116,32,101,110,118,105,114,111,110,109,101,110,116,32,116,111,32,102,105,110,100,32,116,104,101,32,101,114,114,111,114,46,34,44,101,61,33,40,34,117,110,100,101,102,105,110,101,100,34,61,61,116,121,112,101,111,102,32,119,105,110,100,111,119,124,124,33,119,105,110,100,111,119,46,100,111,99,117,109,101,110,116,41,44,117,61,65,114,114,97,121,46,105,115,65,114,114,97,121,59,102,117,110,99,116,105,111,110,32,112,40,101,41,123,118,97,114,32,116,61,116,121,112,101,111,102,32,101,59,114,101,116,117,114,110,34,115,116,114,105,110,103,34,61,61,61,116,124,124,34,110,117,109,98,101,114,34,61,61,61,116,125,102,117,110,99,116,105,111,110,32,68,40,101,41,123,114,101,116,117,114,110,32,103,40,101,41,124,124,121,40,101,41,125,102,117,110,99,116,105,111,110,32,102,40,101,41,123,114,101,116,117,114,110,32,121,40,101,41,124,124,33,49,61,61,61,101,124,124,33,48,61,61,61,101,124,124,103,40,101,41,125,102,117,110,99,116,105,111,110,32,95,40,101,41,123,114,101,116,117,114,110,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,101,125,102,117,110,99,116,105,111,110,32,104,40,101,41,123,114,101,116,117,114,110,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,101,125,102,117,110,99,116,105,111,110,32,118,40,101,41,123,114,101,116,117,114,110,34,110,117,109,98,101,114,34,61,61,116,121,112,101,111,102,32,101,125,102,117,110,99,116,105,111,110,32,121,40,101,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,61,101,125,102,117,110,99,116,105,111,110,32,103,40,101,41,123,114,101,116,117,114,110,32,118,111,105,100,32,48,61,61,61,101,125,102,117,110,99,116,105,111,110,32,98,40,101,44,116,41,123,118,97,114,32,110,61,123,125,59,105,102,40,101,41,102,111,114,40,118,97,114,32,111,32,105,110,32,101,41,110,91,111,93,61,101,91,111,93,59,105,102,40,116,41,102,111,114,40,118,97,114,32,114,32,105,110,32,116,41,110,91,114,93,61,116,91,114,93,59,114,101,116,117,114,110,32,110,125,118,97,114,32,107,61,34,36,34,59,102,117,110,99,116,105,111,110,32,67,40,101,44,116,44,110,44,111,44,114,44,105,44,97,44,115,41,123,114,101,116,117,114,110,123,99,104,105,108,100,70,108,97,103,115,58,101,44,99,104,105,108,100,114,101,110,58,116,44,99,108,97,115,115,78,97,109,101,58,110,44,100,111,109,58,110,117,108,108,44,102,108,97,103,115,58,111,44,107,101,121,58,118,111,105,100,32,48,61,61,61,114,63,110,117,108,108,58,114,44,112,97,114,101,110,116,86,78,111,100,101,58,110,117,108,108,44,112,114,111,112,115,58,118,111,105,100,32,48,61,61,61,105,63,110,117,108,108,58,105,44,114,101,102,58,118,111,105,100,32,48,61,61,61,97,63,110,117,108,108,58,97,44,116,121,112,101,58,115,125,125,102,117,110,99,116,105,111,110,32,115,40,101,44,116,44,110,44,111,44,114,44,105,44,97,44,115,41,123,118,97,114,32,108,61,118,111,105,100,32,48,61,61,61,114,63,49,58,114,44,100,61,67,40,108,44,111,44,110,44,101,44,97,44,105,44,115,44,116,41,59,114,101,116,117,114,110,32,48,61,61,61,108,38,38,83,40,100,44,100,46,99,104,105,108,100,114,101,110,41,44,100,125,102,117,110,99,116,105,111,110,32,100,40,101,44,116,44,110,44,111,44,114,41,123,48,60,40,50,38,101,41,38,38,40,101,61,116,46,112,114,111,116,111,116,121,112,101,38,38,95,40,116,46,112,114,111,116,111,116,121,112,101,46,114,101,110,100,101,114,41,63,52,58,56,41,59,118,97,114,32,105,61,116,46,100,101,102,97,117,108,116,80,114,111,112,115,59,105,102,40,33,68,40,105,41,41,102,111,114,40,118,97,114,32,97,32,105,110,32,110,124,124,40,110,61,123,125,41,44,105,41,103,40,110,91,97,93,41,38,38,40,110,91,97,93,61,105,91,97,93,41,59,105,102,40,48,60,40,56,38,101,41,41,123,118,97,114,32,115,61,116,46,100,101,102,97,117,108,116,72,111,111,107,115,59,105,102,40,33,68,40,115,41,41,105,102,40,114,41,102,111,114,40,118,97,114,32,108,32,105,110,32,115,41,103,40,114,91,108,93,41,38,38,40,114,91,108,93,61,115,91,108,93,41,59,101,108,115,101,32,114,61,115,125,118,97,114,32,100,61,67,40,49,44,110,117,108,108,44,110,117,108,108,44,101,44,111,44,110,44,114,44,116,41,44,99,61,80,46,99,114,101,97,116,101,86,78,111,100,101,59,114,101,116,117,114,110,32,95,40,99,41,38,38,99,40,100,41,44,100,125,102,117,110,99,116,105,111,110,32,36,40,101,44,116,41,123,114,101,116,117,114,110,32,67,40,49,44,68,40,101,41,63,34,34,58,101,44,110,117,108,108,44,49,54,44,116,44,110,117,108,108,44,110,117,108,108,44,110,117,108,108,41,125,102,117,110,99,116,105,111,110,32,99,40,101,41,123,118,97,114,32,116,61,101,46,112,114,111,112,115,59,105,102,40,116,41,123,118,97,114,32,110,61,101,46,102,108,97,103,115,59,52,56,49,38,110,38,38,40,118,111,105,100,32,48,33,61,61,116,46,99,104,105,108,100,114,101,110,38,38,68,40,101,46,99,104,105,108,100,114,101,110,41,38,38,83,40,101,44,116,46,99,104,105,108,100,114,101,110,41,44,118,111,105,100,32,48,33,61,61,116,46,99,108,97,115,115,78,97,109,101,38,38,40,101,46,99,108,97,115,115,78,97,109,101,61,116,46,99,108,97,115,115,78,97,109,101,124,124,110,117,108,108,44,116,46,99,108,97,115,115,78,97,109,101,61,118,111,105,100,32,48,41,41,44,118,111,105,100,32,48,33,61,61,116,46,107,101,121,38,38,40,101,46,107,101,121,61,116,46,107,101,121,44,116,46,107,101,121,61,118,111,105,100,32,48,41,44,118,111,105,100,32,48,33,61,61,116,46,114,101,102,38,38,40,101,46,114,101,102,61,56,38,110,63,98,40,101,46,114,101,102,44,116,46,114,101,102,41,58,116,46,114,101,102,44,116,46,114,101,102,61,118,111,105,100,32,48,41,125,114,101,116,117,114,110,32,101,125,102,117,110,99,116,105,111,110,32,119,40,101,41,123,118,97,114,32,116,44,110,61,101,46,102,108,97,103,115,59,105,102,40,49,52,38,110,41,123,118,97,114,32,111,44,114,61,101,46,112,114,111,112,115,59,105,102,40,33,121,40,114,41,41,102,111,114,40,118,97,114,32,105,32,105,110,32,111,61,123,125,44,114,41,111,91,105,93,61,114,91,105,93,59,116,61,100,40,110,44,101,46,116,121,112,101,44,111,44,101,46,107,101,121,44,101,46,114,101,102,41,125,101,108,115,101,32,52,56,49,38,110,63,116,61,115,40,110,44,101,46,116,121,112,101,44,101,46,99,108,97,115,115,78,97,109,101,44,101,46,99,104,105,108,100,114,101,110,44,101,46,99,104,105,108,100,70,108,97,103,115,44,101,46,112,114,111,112,115,44,101,46,107,101,121,44,101,46,114,101,102,41,58,49,54,38,110,63,116,61,36,40,101,46,99,104,105,108,100,114,101,110,44,101,46,107,101,121,41,58,49,48,50,52,38,110,38,38,40,116,61,101,41,59,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,120,40,41,123,114,101,116,117,114,110,32,36,40,34,34,44,110,117,108,108,41,125,102,117,110,99,116,105,111,110,32,78,40,101,44,116,44,110,44,111,41,123,102,111,114,40,118,97,114,32,114,61,101,46,108,101,110,103,116,104,59,110,60,114,59,110,43,43,41,123,118,97,114,32,105,61,101,91,110,93,59,105,102,40,33,102,40,105,41,41,123,118,97,114,32,97,61,111,43,107,43,110,59,105,102,40,117,40,105,41,41,78,40,105,44,116,44,48,44,97,41,59,101,108,115,101,123,105,102,40,112,40,105,41,41,105,61,36,40,105,44,97,41,59,101,108,115,101,123,118,97,114,32,115,61,105,46,107,101,121,44,108,61,104,40,115,41,38,38,115,91,48,93,61,61,61,107,59,121,40,105,46,100,111,109,41,38,38,33,108,124,124,40,105,61,119,40,105,41,41,44,121,40,115,41,124,124,108,63,105,46,107,101,121,61,97,58,105,46,107,101,121,61,111,43,115,125,116,46,112,117,115,104,40,105,41,125,125,125,125,102,117,110,99,116,105,111,110,32,83,40,101,44,116,41,123,118,97,114,32,110,44,111,61,49,59,105,102,40,102,40,116,41,41,110,61,116,59,101,108,115,101,32,105,102,40,104,40,116,41,41,111,61,50,44,110,61,36,40,116,41,59,101,108,115,101,32,105,102,40,118,40,116,41,41,111,61,50,44,110,61,36,40,116,43,34,34,41,59,101,108,115,101,32,105,102,40,117,40,116,41,41,123,118,97,114,32,114,61,116,46,108,101,110,103,116,104,59,105,102,40,48,61,61,61,114,41,110,61,110,117,108,108,44,111,61,49,59,101,108,115,101,123,40,79,98,106,101,99,116,46,105,115,70,114,111,122,101,110,40,116,41,124,124,33,48,61,61,61,116,46,36,41,38,38,40,116,61,116,46,115,108,105,99,101,40,41,41,44,111,61,56,59,102,111,114,40,118,97,114,32,105,61,48,59,105,60,114,59,105,43,43,41,123,118,97,114,32,97,61,116,91,105,93,59,105,102,40,102,40,97,41,124,124,117,40,97,41,41,123,78,40,116,44,110,61,110,124,124,116,46,115,108,105,99,101,40,48,44,105,41,44,105,44,34,34,41,59,98,114,101,97,107,125,105,102,40,112,40,97,41,41,40,110,61,110,124,124,116,46,115,108,105,99,101,40,48,44,105,41,41,46,112,117,115,104,40,36,40,97,44,107,43,105,41,41,59,101,108,115,101,123,118,97,114,32,115,61,97,46,107,101,121,44,108,61,121,40,97,46,100,111,109,41,44,100,61,121,40,115,41,44,99,61,33,100,38,38,115,91,48,93,61,61,61,107,59,33,108,124,124,100,124,124,99,63,40,110,61,110,124,124,116,46,115,108,105,99,101,40,48,44,105,41,44,108,38,38,33,99,124,124,40,97,61,119,40,97,41,41,44,40,100,124,124,99,41,38,38,40,97,46,107,101,121,61,107,43,105,41,44,110,46,112,117,115,104,40,97,41,41,58,110,38,38,110,46,112,117,115,104,40,97,41,125,125,40,110,61,110,124,124,116,41,46,36,61,33,48,125,125,101,108,115,101,32,121,40,40,110,61,116,41,46,100,111,109,41,124,124,40,110,61,119,40,116,41,41,44,111,61,50,59,114,101,116,117,114,110,32,101,46,99,104,105,108,100,114,101,110,61,110,44,101,46,99,104,105,108,100,70,108,97,103,115,61,111,44,101,125,118,97,114,32,80,61,123,97,102,116,101,114,82,101,110,100,101,114,58,110,117,108,108,44,98,101,102,111,114,101,82,101,110,100,101,114,58,110,117,108,108,44,99,114,101,97,116,101,86,78,111,100,101,58,110,117,108,108,44,114,101,110,100,101,114,67,111,109,112,108,101,116,101,58,110,117,108,108,125,44,116,61,34,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,49,57,57,57,47,120,108,105,110,107,34,44,110,61,34,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,88,77,76,47,49,57,57,56,47,110,97,109,101,115,112,97,99,101,34,44,79,61,34,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,115,118,103,34,44,84,61,123,34,120,108,105,110,107,58,97,99,116,117,97,116,101,34,58,116,44,34,120,108,105,110,107,58,97,114,99,114,111,108,101,34,58,116,44,34,120,108,105,110,107,58,104,114,101,102,34,58,116,44,34,120,108,105,110,107,58,114,111,108,101,34,58,116,44,34,120,108,105,110,107,58,115,104,111,119,34,58,116,44,34,120,108,105,110,107,58,116,105,116,108,101,34,58,116,44,34,120,108,105,110,107,58,116,121,112,101,34,58,116,44,34,120,109,108,58,98,97,115,101,34,58,110,44,34,120,109,108,58,108,97,110,103,34,58,110,44,34,120,109,108,58,115,112,97,99,101,34,58,110,125,44,76,61,123,125,44,85,61,91,93,59,102,117,110,99,116,105,111,110,32,77,40,101,44,116,41,123,101,46,97,112,112,101,110,100,67,104,105,108,100,40,116,41,125,102,117,110,99,116,105,111,110,32,69,40,101,44,116,44,110,41,123,68,40,110,41,63,77,40,101,44,116,41,58,101,46,105,110,115,101,114,116,66,101,102,111,114,101,40,116,44,110,41,125,102,117,110,99,116,105,111,110,32,70,40,101,44,116,44,110,41,123,101,46,114,101,112,108,97,99,101,67,104,105,108,100,40,116,44,110,41,125,102,117,110,99,116,105,111,110,32,73,40,101,41,123,102,111,114,40,118,97,114,32,116,59,118,111,105,100,32,48,33,61,61,40,116,61,101,46,115,104,105,102,116,40,41,41,59,41,116,40,41,125,118,97,114,32,65,61,123,125,44,86,61,123,125,59,102,117,110,99,116,105,111,110,32,82,40,101,44,116,44,110,41,123,118,97,114,32,114,44,111,44,105,61,65,91,101,93,44,97,61,110,46,36,69,86,59,116,63,40,105,124,124,40,86,91,101,93,61,40,114,61,101,44,111,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,46,116,121,112,101,44,110,61,34,99,108,105,99,107,34,61,61,61,116,124,124,34,100,98,108,99,108,105,99,107,34,61,61,61,116,59,105,102,40,110,38,38,48,33,61,61,101,46,98,117,116,116,111,110,41,114,101,116,117,114,110,32,101,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,44,33,49,59,101,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,61,66,59,118,97,114,32,111,61,123,100,111,109,58,100,111,99,117,109,101,110,116,125,59,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,101,44,34,99,117,114,114,101,110,116,84,97,114,103,101,116,34,44,123,99,111,110,102,105,103,117,114,97,98,108,101,58,33,48,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,111,46,100,111,109,125,125,41,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,111,44,114,41,123,118,97,114,32,105,61,116,59,102,111,114,40,59,33,121,40,105,41,59,41,123,105,102,40,110,38,38,105,46,100,105,115,97,98,108,101,100,41,114,101,116,117,114,110,59,118,97,114,32,97,61,105,46,36,69,86,59,105,102,40,97,41,123,118,97,114,32,115,61,97,91,111,93,59,105,102,40,115,38,38,40,114,46,100,111,109,61,105,44,115,46,101,118,101,110,116,63,115,46,101,118,101,110,116,40,115,46,100,97,116,97,44,101,41,58,115,40,101,41,44,101,46,99,97,110,99,101,108,66,117,98,98,108,101,41,41,114,101,116,117,114,110,125,105,61,105,46,112,97,114,101,110,116,78,111,100,101,125,125,40,101,44,101,46,116,97,114,103,101,116,44,110,44,114,44,111,41,125,44,100,111,99,117,109,101,110,116,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,106,40,114,41,44,111,41,44,111,41,44,65,91,101,93,61,48,41,44,97,124,124,40,97,61,110,46,36,69,86,61,123,125,41,44,97,91,101,93,124,124,65,91,101,93,43,43,44,97,91,101,93,61,116,41,58,97,38,38,97,91,101,93,38,38,40,65,91,101,93,45,45,44,49,61,61,61,105,38,38,40,100,111,99,117,109,101,110,116,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,40,106,40,101,41,44,86,91,101,93,41,44,86,91,101,93,61,110,117,108,108,41,44,97,91,101,93,61,116,41,125,102,117,110,99,116,105,111,110,32,106,40,101,41,123,114,101,116,117,114,110,32,101,46,115,117,98,115,116,114,40,50,41,46,116,111,76,111,119,101,114,67,97,115,101,40,41,125,102,117,110,99,116,105,111,110,32,66,40,41,123,116,104,105,115,46,99,97,110,99,101,108,66,117,98,98,108,101,61,33,48,44,116,104,105,115,46,105,109,109,101,100,105,97,116,101,80,114,111,112,97,103,97,116,105,111,110,83,116,111,112,112,101,100,124,124,116,104,105,115,46,115,116,111,112,73,109,109,101,100,105,97,116,101,80,114,111,112,97,103,97,116,105,111,110,40,41,125,102,117,110,99,116,105,111,110,32,87,40,101,44,116,41,123,118,97,114,32,110,61,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,105,34,41,59,114,101,116,117,114,110,32,110,46,105,110,110,101,114,72,84,77,76,61,116,44,110,46,105,110,110,101,114,72,84,77,76,61,61,61,101,46,105,110,110,101,114,72,84,77,76,125,102,117,110,99,116,105,111,110,32,72,40,101,44,116,44,110,41,123,105,102,40,101,91,116,93,41,123,118,97,114,32,111,61,101,91,116,93,59,111,46,101,118,101,110,116,63,111,46,101,118,101,110,116,40,111,46,100,97,116,97,44,110,41,58,111,40,110,41,125,101,108,115,101,123,118,97,114,32,114,61,116,46,116,111,76,111,119,101,114,67,97,115,101,40,41,59,101,91,114,93,38,38,101,91,114,93,40,110,41,125,125,102,117,110,99,116,105,111,110,32,111,40,115,44,108,41,123,118,97,114,32,101,61,102,117,110,99,116,105,111,110,40,101,41,123,101,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,59,118,97,114,32,116,61,116,104,105,115,46,36,86,59,105,102,40,116,41,123,118,97,114,32,110,61,116,46,112,114,111,112,115,124,124,76,44,111,61,116,46,100,111,109,59,105,102,40,104,40,115,41,41,72,40,110,44,115,44,101,41,59,101,108,115,101,32,102,111,114,40,118,97,114,32,114,61,48,59,114,60,115,46,108,101,110,103,116,104,59,114,43,43,41,72,40,110,44,115,91,114,93,44,101,41,59,105,102,40,95,40,108,41,41,123,118,97,114,32,105,61,116,104,105,115,46,36,86,44,97,61,105,46,112,114,111,112,115,124,124,76,59,108,40,97,44,111,44,33,49,44,105,41,125,125,125,59,114,101,116,117,114,110,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,101,44,34,119,114,97,112,112,101,100,34,44,123,99,111,110,102,105,103,117,114,97,98,108,101,58,33,49,44,101,110,117,109,101,114,97,98,108,101,58,33,49,44,118,97,108,117,101,58,33,48,44,119,114,105,116,97,98,108,101,58,33,49,125,41,44,101,125,102,117,110,99,116,105,111,110,32,113,40,101,41,123,114,101,116,117,114,110,34,99,104,101,99,107,98,111,120,34,61,61,61,101,124,124,34,114,97,100,105,111,34,61,61,61,101,125,118,97,114,32,75,61,111,40,34,111,110,73,110,112,117,116,34,44,122,41,44,88,61,111,40,91,34,111,110,67,108,105,99,107,34,44,34,111,110,67,104,97,110,103,101,34,93,44,122,41,59,102,117,110,99,116,105,111,110,32,81,40,101,41,123,101,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,125,102,117,110,99,116,105,111,110,32,122,40,101,44,116,41,123,118,97,114,32,110,61,101,46,116,121,112,101,44,111,61,101,46,118,97,108,117,101,44,114,61,101,46,99,104,101,99,107,101,100,44,105,61,101,46,109,117,108,116,105,112,108,101,44,97,61,101,46,100,101,102,97,117,108,116,86,97,108,117,101,44,115,61,33,68,40,111,41,59,110,38,38,110,33,61,61,116,46,116,121,112,101,38,38,116,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,116,121,112,101,34,44,110,41,44,68,40,105,41,124,124,105,61,61,61,116,46,109,117,108,116,105,112,108,101,124,124,40,116,46,109,117,108,116,105,112,108,101,61,105,41,44,68,40,97,41,124,124,115,124,124,40,116,46,100,101,102,97,117,108,116,86,97,108,117,101,61,97,43,34,34,41,44,113,40,110,41,63,40,115,38,38,40,116,46,118,97,108,117,101,61,111,41,44,68,40,114,41,124,124,40,116,46,99,104,101,99,107,101,100,61,114,41,41,58,115,38,38,116,46,118,97,108,117,101,33,61,61,111,63,40,116,46,100,101,102,97,117,108,116,86,97,108,117,101,61,111,44,116,46,118,97,108,117,101,61,111,41,58,68,40,114,41,124,124,40,116,46,99,104,101,99,107,101,100,61,114,41,125,102,117,110,99,116,105,111,110,32,71,40,101,44,116,41,123,105,102,40,34,111,112,116,103,114,111,117,112,34,61,61,61,101,46,116,121,112,101,41,123,118,97,114,32,110,61,101,46,99,104,105,108,100,114,101,110,44,111,61,101,46,99,104,105,108,100,70,108,97,103,115,59,105,102,40,49,50,38,111,41,102,111,114,40,118,97,114,32,114,61,48,44,105,61,110,46,108,101,110,103,116,104,59,114,60,105,59,114,43,43,41,89,40,110,91,114,93,44,116,41,59,101,108,115,101,32,50,61,61,61,111,38,38,89,40,110,44,116,41,125,101,108,115,101,32,89,40,101,44,116,41,125,102,117,110,99,116,105,111,110,32,89,40,101,44,116,41,123,118,97,114,32,110,61,101,46,112,114,111,112,115,124,124,76,44,111,61,101,46,100,111,109,59,111,46,118,97,108,117,101,61,110,46,118,97,108,117,101,44,117,40,116,41,38,38,45,49,33,61,61,116,46,105,110,100,101,120,79,102,40,110,46,118,97,108,117,101,41,124,124,110,46,118,97,108,117,101,61,61,61,116,63,111,46,115,101,108,101,99,116,101,100,61,33,48,58,68,40,116,41,38,38,68,40,110,46,115,101,108,101,99,116,101,100,41,124,124,40,111,46,115,101,108,101,99,116,101,100,61,110,46,115,101,108,101,99,116,101,100,124,124,33,49,41,125,81,46,119,114,97,112,112,101,100,61,33,48,59,118,97,114,32,74,61,111,40,34,111,110,67,104,97,110,103,101,34,44,90,41,59,102,117,110,99,116,105,111,110,32,90,40,101,44,116,44,110,44,111,41,123,118,97,114,32,114,61,66,111,111,108,101,97,110,40,101,46,109,117,108,116,105,112,108,101,41,59,68,40,101,46,109,117,108,116,105,112,108,101,41,124,124,114,61,61,61,116,46,109,117,108,116,105,112,108,101,124,124,40,116,46,109,117,108,116,105,112,108,101,61,114,41,59,118,97,114,32,105,61,111,46,99,104,105,108,100,70,108,97,103,115,59,105,102,40,48,61,61,40,49,38,105,41,41,123,118,97,114,32,97,61,111,46,99,104,105,108,100,114,101,110,44,115,61,101,46,118,97,108,117,101,59,105,102,40,110,38,38,68,40,115,41,38,38,40,115,61,101,46,100,101,102,97,117,108,116,86,97,108,117,101,41,44,49,50,38,105,41,102,111,114,40,118,97,114,32,108,61,48,44,100,61,97,46,108,101,110,103,116,104,59,108,60,100,59,108,43,43,41,71,40,97,91,108,93,44,115,41,59,101,108,115,101,32,50,61,61,61,105,38,38,71,40,97,44,115,41,125,125,118,97,114,32,101,101,61,111,40,34,111,110,73,110,112,117,116,34,44,110,101,41,44,116,101,61,111,40,34,111,110,67,104,97,110,103,101,34,41,59,102,117,110,99,116,105,111,110,32,110,101,40,101,44,116,44,110,41,123,118,97,114,32,111,61,101,46,118,97,108,117,101,44,114,61,116,46,118,97,108,117,101,59,105,102,40,68,40,111,41,41,123,105,102,40,110,41,123,118,97,114,32,105,61,101,46,100,101,102,97,117,108,116,86,97,108,117,101,59,68,40,105,41,124,124,105,61,61,61,114,124,124,40,116,46,100,101,102,97,117,108,116,86,97,108,117,101,61,105,44,116,46,118,97,108,117,101,61,105,41,125,125,101,108,115,101,32,114,33,61,61,111,38,38,40,116,46,100,101,102,97,117,108,116,86,97,108,117,101,61,111,44,116,46,118,97,108,117,101,61,111,41,125,102,117,110,99,116,105,111,110,32,111,101,40,101,44,116,44,110,44,111,44,114,44,105,41,123,54,52,38,101,63,122,40,111,44,110,41,58,50,53,54,38,101,63,90,40,111,44,110,44,114,44,116,41,58,49,50,56,38,101,38,38,110,101,40,111,44,110,44,114,41,44,105,38,38,40,110,46,36,86,61,116,41,125,102,117,110,99,116,105,111,110,32,114,101,40,101,44,116,44,110,41,123,118,97,114,32,111,44,114,44,105,59,54,52,38,101,63,40,105,61,116,44,113,40,110,46,116,121,112,101,41,63,40,105,46,111,110,99,104,97,110,103,101,61,88,44,105,46,111,110,99,108,105,99,107,61,81,41,58,105,46,111,110,105,110,112,117,116,61,75,41,58,50,53,54,38,101,63,116,46,111,110,99,104,97,110,103,101,61,74,58,49,50,56,38,101,38,38,40,114,61,110,44,40,111,61,116,41,46,111,110,105,110,112,117,116,61,101,101,44,114,46,111,110,67,104,97,110,103,101,38,38,40,111,46,111,110,99,104,97,110,103,101,61,116,101,41,41,125,102,117,110,99,116,105,111,110,32,105,101,40,101,41,123,114,101,116,117,114,110,32,101,46,116,121,112,101,38,38,113,40,101,46,116,121,112,101,41,63,33,68,40,101,46,99,104,101,99,107,101,100,41,58,33,68,40,101,46,118,97,108,117,101,41,125,102,117,110,99,116,105,111,110,32,97,101,40,101,44,116,41,123,118,97,114,32,110,44,111,59,115,101,40,101,41,44,116,38,38,101,46,100,111,109,38,38,40,110,61,116,44,111,61,101,46,100,111,109,44,110,46,114,101,109,111,118,101,67,104,105,108,100,40,111,41,44,101,46,100,111,109,61,110,117,108,108,41,125,102,117,110,99,116,105,111,110,32,115,101,40,101,41,123,118,97,114,32,116,61,101,46,102,108,97,103,115,59,105,102,40,52,56,49,38,116,41,123,118,97,114,32,110,61,101,46,114,101,102,44,111,61,101,46,112,114,111,112,115,59,95,40,110,41,38,38,110,40,110,117,108,108,41,59,118,97,114,32,114,61,101,46,99,104,105,108,100,114,101,110,44,105,61,101,46,99,104,105,108,100,70,108,97,103,115,59,105,102,40,49,50,38,105,63,108,101,40,114,41,58,50,61,61,61,105,38,38,115,101,40,114,41,44,33,121,40,111,41,41,102,111,114,40,118,97,114,32,97,32,105,110,32,111,41,115,119,105,116,99,104,40,97,41,123,99,97,115,101,34,111,110,67,108,105,99,107,34,58,99,97,115,101,34,111,110,68,98,108,67,108,105,99,107,34,58,99,97,115,101,34,111,110,70,111,99,117,115,73,110,34,58,99,97,115,101,34,111,110,70,111,99,117,115,79,117,116,34,58,99,97,115,101,34,111,110,75,101,121,68,111,119,110,34,58,99,97,115,101,34,111,110,75,101,121,80,114,101,115,115,34,58,99,97,115,101,34,111,110,75,101,121,85,112,34,58,99,97,115,101,34,111,110,77,111,117,115,101,68,111,119,110,34,58,99,97,115,101,34,111,110,77,111,117,115,101,77,111,118,101,34,58,99,97,115,101,34,111,110,77,111,117,115,101,85,112,34,58,99,97,115,101,34,111,110,83,117,98,109,105,116,34,58,99,97,115,101,34,111,110,84,111,117,99,104,69,110,100,34,58,99,97,115,101,34,111,110,84,111,117,99,104,77,111,118,101,34,58,99,97,115,101,34,111,110,84,111,117,99,104,83,116,97,114,116,34,58,82,40,97,44,110,117,108,108,44,101,46,100,111,109,41,125,125,101,108,115,101,123,118,97,114,32,115,61,101,46,99,104,105,108,100,114,101,110,59,105,102,40,115,41,105,102,40,49,52,38,116,41,123,118,97,114,32,108,61,101,46,114,101,102,59,52,38,116,63,40,95,40,115,46,99,111,109,112,111,110,101,110,116,87,105,108,108,85,110,109,111,117,110,116,41,38,38,115,46,99,111,109,112,111,110,101,110,116,87,105,108,108,85,110,109,111,117,110,116,40,41,44,95,40,108,41,38,38,108,40,110,117,108,108,41,44,115,46,36,85,78,61,33,48,44,115,46,36,76,73,38,38,115,101,40,115,46,36,76,73,41,41,58,40,33,68,40,108,41,38,38,95,40,108,46,111,110,67,111,109,112,111,110,101,110,116,87,105,108,108,85,110,109,111,117,110,116,41,38,38,108,46,111,110,67,111,109,112,111,110,101,110,116,87,105,108,108,85,110,109,111,117,110,116,40,101,46,100,111,109,44,101,46,112,114,111,112,115,124,124,76,41,44,115,101,40,115,41,41,125,101,108,115,101,32,49,48,50,52,38,116,38,38,97,101,40,115,44,101,46,116,121,112,101,41,125,125,102,117,110,99,116,105,111,110,32,108,101,40,101,41,123,102,111,114,40,118,97,114,32,116,61,48,44,110,61,101,46,108,101,110,103,116,104,59,116,60,110,59,116,43,43,41,115,101,40,101,91,116,93,41,125,102,117,110,99,116,105,111,110,32,100,101,40,101,44,116,41,123,108,101,40,116,41,44,101,46,116,101,120,116,67,111,110,116,101,110,116,61,34,34,125,102,117,110,99,116,105,111,110,32,99,101,40,101,44,116,41,123,115,119,105,116,99,104,40,101,41,123,99,97,115,101,34,97,110,105,109,97,116,105,111,110,73,116,101,114,97,116,105,111,110,67,111,117,110,116,34,58,99,97,115,101,34,98,111,114,100,101,114,73,109,97,103,101,79,117,116,115,101,116,34,58,99,97,115,101,34,98,111,114,100,101,114,73,109,97,103,101,83,108,105,99,101,34,58,99,97,115,101,34,98,111,114,100,101,114,73,109,97,103,101,87,105,100,116,104,34,58,99,97,115,101,34,98,111,120,70,108,101,120,34,58,99,97,115,101,34,98,111,120,70,108,101,120,71,114,111,117,112,34,58,99,97,115,101,34,98,111,120,79,114,100,105,110,97,108,71,114,111,117,112,34,58,99,97,115,101,34,99,111,108,117,109,110,67,111,117,110,116,34,58,99,97,115,101,34,102,105,108,108,79,112,97,99,105,116,121,34,58,99,97,115,101,34,102,108,101,120,34,58,99,97,115,101,34,102,108,101,120,71,114,111,119,34,58,99,97,115,101,34,102,108,101,120,78,101,103,97,116,105,118,101,34,58,99,97,115,101,34,102,108,101,120,79,114,100,101,114,34,58,99,97,115,101,34,102,108,101,120,80,111,115,105,116,105,118,101,34,58,99,97,115,101,34,102,108,101,120,83,104,114,105,110,107,34,58,99,97,115,101,34,102,108,111,111,100,79,112,97,99,105,116,121,34,58,99,97,115,101,34,102,111,110,116,87,101,105,103,104,116,34,58,99,97,115,101,34,103,114,105,100,67,111,108,117,109,110,34,58,99,97,115,101,34,103,114,105,100,82,111,119,34,58,99,97,115,101,34,108,105,110,101,67,108,97,109,112,34,58,99,97,115,101,34,108,105,110,101,72,101,105,103,104,116,34,58,99,97,115,101,34,111,112,97,99,105,116,121,34,58,99,97,115,101,34,111,114,100,101,114,34,58,99,97,115,101,34,111,114,112,104,97,110,115,34,58,99,97,115,101,34,115,116,111,112,79,112,97,99,105,116,121,34,58,99,97,115,101,34,115,116,114,111,107,101,68,97,115,104,97,114,114,97,121,34,58,99,97,115,101,34,115,116,114,111,107,101,68,97,115,104,111,102,102,115,101,116,34,58,99,97,115,101,34,115,116,114,111,107,101,77,105,116,101,114,108,105,109,105,116,34,58,99,97,115,101,34,115,116,114,111,107,101,79,112,97,99,105,116,121,34,58,99,97,115,101,34,115,116,114,111,107,101,87,105,100,116,104,34,58,99,97,115,101,34,116,97,98,83,105,122,101,34,58,99,97,115,101,34,119,105,100,111,119,115,34,58,99,97,115,101,34,122,73,110,100,101,120,34,58,99,97,115,101,34,122,111,111,109,34,58,114,101,116,117,114,110,32,116,59,100,101,102,97,117,108,116,58,114,101,116,117,114,110,32,116,43,34,112,120,34,125,125,102,117,110,99,116,105,111,110,32,117,101,40,101,44,116,44,110,44,111,44,114,44,105,44,97,41,123,115,119,105,116,99,104,40,101,41,123,99,97,115,101,34,111,110,67,108,105,99,107,34,58,99,97,115,101,34,111,110,68,98,108,67,108,105,99,107,34,58,99,97,115,101,34,111,110,70,111,99,117,115,73,110,34,58,99,97,115,101,34,111,110,70,111,99,117,115,79,117,116,34,58,99,97,115,101,34,111,110,75,101,121,68,111,119,110,34,58,99,97,115,101,34,111,110,75,101,121,80,114,101,115,115,34,58,99,97,115,101,34,111,110,75,101,121,85,112,34,58,99,97,115,101,34,111,110,77,111,117,115,101,68,111,119,110,34,58,99,97,115,101,34,111,110,77,111,117,115,101,77,111,118,101,34,58,99,97,115,101,34,111,110,77,111,117,115,101,85,112,34,58,99,97,115,101,34,111,110,83,117,98,109,105,116,34,58,99,97,115,101,34,111,110,84,111,117,99,104,69,110,100,34,58,99,97,115,101,34,111,110,84,111,117,99,104,77,111,118,101,34,58,99,97,115,101,34,111,110,84,111,117,99,104,83,116,97,114,116,34,58,82,40,101,44,110,44,111,41,59,98,114,101,97,107,59,99,97,115,101,34,99,104,105,108,100,114,101,110,34,58,99,97,115,101,34,99,104,105,108,100,114,101,110,84,121,112,101,34,58,99,97,115,101,34,99,108,97,115,115,78,97,109,101,34,58,99,97,115,101,34,100,101,102,97,117,108,116,86,97,108,117,101,34,58,99,97,115,101,34,107,101,121,34,58,99,97,115,101,34,109,117,108,116,105,112,108,101,34,58,99,97,115,101,34,114,101,102,34,58,98,114,101,97,107,59,99,97,115,101,34,97,117,116,111,70,111,99,117,115,34,58,111,46,97,117,116,111,102,111,99,117,115,61,33,33,110,59,98,114,101,97,107,59,99,97,115,101,34,97,108,108,111,119,102,117,108,108,115,99,114,101,101,110,34,58,99,97,115,101,34,97,117,116,111,112,108,97,121,34,58,99,97,115,101,34,99,97,112,116,117,114,101,34,58,99,97,115,101,34,99,104,101,99,107,101,100,34,58,99,97,115,101,34,99,111,110,116,114,111,108,115,34,58,99,97,115,101,34,100,101,102,97,117,108,116,34,58,99,97,115,101,34,100,105,115,97,98,108,101,100,34,58,99,97,115,101,34,104,105,100,100,101,110,34,58,99,97,115,101,34,105,110,100,101,116,101,114,109,105,110,97,116,101,34,58,99,97,115,101,34,108,111,111,112,34,58,99,97,115,101,34,109,117,116,101,100,34,58,99,97,115,101,34,110,111,118,97,108,105,100,97,116,101,34,58,99,97,115,101,34,111,112,101,110,34,58,99,97,115,101,34,114,101,97,100,79,110,108,121,34,58,99,97,115,101,34,114,101,113,117,105,114,101,100,34,58,99,97,115,101,34,114,101,118,101,114,115,101,100,34,58,99,97,115,101,34,115,99,111,112,101,100,34,58,99,97,115,101,34,115,101,97,109,108,101,115,115,34,58,99,97,115,101,34,115,101,108,101,99,116,101,100,34,58,111,91,101,93,61,33,33,110,59,98,114,101,97,107,59,99,97,115,101,34,100,101,102,97,117,108,116,67,104,101,99,107,101,100,34,58,99,97,115,101,34,118,97,108,117,101,34,58,99,97,115,101,34,118,111,108,117,109,101,34,58,105,102,40,105,38,38,34,118,97,108,117,101,34,61,61,61,101,41,114,101,116,117,114,110,59,118,97,114,32,115,61,68,40,110,41,63,34,34,58,110,59,111,91,101,93,33,61,61,115,38,38,40,111,91,101,93,61,115,41,59,98,114,101,97,107,59,99,97,115,101,34,100,97,110,103,101,114,111,117,115,108,121,83,101,116,73,110,110,101,114,72,84,77,76,34,58,118,97,114,32,108,61,116,38,38,116,46,95,95,104,116,109,108,124,124,34,34,44,100,61,110,38,38,110,46,95,95,104,116,109,108,124,124,34,34,59,108,33,61,61,100,38,38,40,68,40,100,41,124,124,87,40,111,44,100,41,124,124,40,121,40,97,41,124,124,40,49,50,38,97,46,99,104,105,108,100,70,108,97,103,115,63,108,101,40,97,46,99,104,105,108,100,114,101,110,41,58,50,61,61,61,97,46,99,104,105,108,100,70,108,97,103,115,38,38,115,101,40,97,46,99,104,105,108,100,114,101,110,41,44,97,46,99,104,105,108,100,114,101,110,61,110,117,108,108,44,97,46,99,104,105,108,100,70,108,97,103,115,61,49,41,44,111,46,105,110,110,101,114,72,84,77,76,61,100,41,41,59,98,114,101,97,107,59,100,101,102,97,117,108,116,58,34,111,34,61,61,61,101,91,48,93,38,38,34,110,34,61,61,61,101,91,49,93,63,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,111,41,123,118,97,114,32,114,44,105,44,97,61,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,59,105,102,40,95,40,110,41,124,124,68,40,110,41,41,123,118,97,114,32,115,61,111,91,97,93,59,115,38,38,115,46,119,114,97,112,112,101,100,124,124,40,111,91,97,93,61,110,41,125,101,108,115,101,123,118,97,114,32,108,61,110,46,101,118,101,110,116,59,108,38,38,95,40,108,41,38,38,40,111,91,97,93,61,40,114,61,108,44,105,61,110,44,102,117,110,99,116,105,111,110,40,101,41,123,114,40,105,46,100,97,116,97,44,101,41,125,41,41,125,125,40,101,44,48,44,110,44,111,41,58,68,40,110,41,63,111,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,40,101,41,58,34,115,116,121,108,101,34,61,61,61,101,63,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,111,44,114,44,105,61,110,46,115,116,121,108,101,59,105,102,40,104,40,116,41,41,105,46,99,115,115,84,101,120,116,61,116,59,101,108,115,101,32,105,102,40,68,40,101,41,124,124,104,40,101,41,41,102,111,114,40,111,32,105,110,32,116,41,114,61,116,91,111,93,44,105,91,111,93,61,118,40,114,41,63,99,101,40,111,44,114,41,58,114,59,101,108,115,101,123,102,111,114,40,111,32,105,110,32,116,41,40,114,61,116,91,111,93,41,33,61,61,101,91,111,93,38,38,40,105,91,111,93,61,118,40,114,41,63,99,101,40,111,44,114,41,58,114,41,59,102,111,114,40,111,32,105,110,32,101,41,68,40,116,91,111,93,41,38,38,40,105,91,111,93,61,34,34,41,125,125,40,116,44,110,44,111,41,58,114,38,38,84,91,101,93,63,111,46,115,101,116,65,116,116,114,105,98,117,116,101,78,83,40,84,91,101,93,44,101,44,110,41,58,111,46,115,101,116,65,116,116,114,105,98,117,116,101,40,101,44,110,41,125,125,102,117,110,99,116,105,111,110,32,112,101,40,101,44,116,44,110,44,111,44,114,41,123,118,97,114,32,105,61,33,49,44,97,61,48,60,40,52,52,56,38,116,41,59,102,111,114,40,118,97,114,32,115,32,105,110,32,97,38,38,40,105,61,105,101,40,110,41,41,38,38,114,101,40,116,44,111,44,110,41,44,110,41,117,101,40,115,44,110,117,108,108,44,110,91,115,93,44,111,44,114,44,105,44,110,117,108,108,41,59,97,38,38,111,101,40,116,44,101,44,111,44,110,44,33,48,44,105,41,125,102,117,110,99,116,105,111,110,32,102,101,40,101,44,116,44,110,44,111,41,123,118,97,114,32,114,61,110,101,119,32,116,40,110,44,111,41,59,105,102,40,40,101,46,99,104,105,108,100,114,101,110,61,114,41,46,36,86,61,101,44,114,46,36,66,83,61,33,49,44,114,46,99,111,110,116,101,120,116,61,111,44,114,46,112,114,111,112,115,61,61,61,76,38,38,40,114,46,112,114,111,112,115,61,110,41,44,114,46,36,85,78,61,33,49,44,95,40,114,46,99,111,109,112,111,110,101,110,116,87,105,108,108,77,111,117,110,116,41,41,123,105,102,40,114,46,36,66,82,61,33,48,44,114,46,99,111,109,112,111,110,101,110,116,87,105,108,108,77,111,117,110,116,40,41,44,114,46,36,80,83,83,41,123,118,97,114,32,105,61,114,46,115,116,97,116,101,44,97,61,114,46,36,80,83,59,105,102,40,121,40,105,41,41,114,46,115,116,97,116,101,61,97,59,101,108,115,101,32,102,111,114,40,118,97,114,32,115,32,105,110,32,97,41,105,91,115,93,61,97,91,115,93,59,114,46,36,80,83,83,61,33,49,44,114,46,36,80,83,61,110,117,108,108,125,114,46,36,66,82,61,33,49,125,95,40,80,46,98,101,102,111,114,101,82,101,110,100,101,114,41,38,38,80,46,98,101,102,111,114,101,82,101,110,100,101,114,40,114,41,59,118,97,114,32,108,44,100,61,104,101,40,114,46,114,101,110,100,101,114,40,110,44,114,46,115,116,97,116,101,44,111,41,44,101,41,59,114,101,116,117,114,110,32,95,40,114,46,103,101,116,67,104,105,108,100,67,111,110,116,101,120,116,41,38,38,40,108,61,114,46,103,101,116,67,104,105,108,100,67,111,110,116,101,120,116,40,41,41,44,68,40,108,41,63,114,46,36,67,88,61,111,58,114,46,36,67,88,61,98,40,111,44,108,41,44,95,40,80,46,97,102,116,101,114,82,101,110,100,101,114,41,38,38,80,46,97,102,116,101,114,82,101,110,100,101,114,40,114,41,44,114,46,36,76,73,61,100,44,114,125,102,117,110,99,116,105,111,110,32,104,101,40,101,44,116,41,123,114,101,116,117,114,110,32,102,40,101,41,63,101,61,120,40,41,58,112,40,101,41,63,101,61,36,40,101,44,110,117,108,108,41,58,40,101,46,100,111,109,38,38,40,101,61,119,40,101,41,41,44,49,52,38,101,46,102,108,97,103,115,38,38,40,101,46,112,97,114,101,110,116,86,78,111,100,101,61,116,41,41,44,101,125,102,117,110,99,116,105,111,110,32,118,101,40,101,44,116,44,110,44,111,41,123,118,97,114,32,114,61,101,46,102,108,97,103,115,59,114,101,116,117,114,110,32,52,56,49,38,114,63,109,101,40,101,44,116,44,110,44,111,41,58,49,52,38,114,63,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,111,44,114,41,123,118,97,114,32,105,44,97,61,101,46,116,121,112,101,44,115,61,101,46,112,114,111,112,115,124,124,76,44,108,61,101,46,114,101,102,59,105,102,40,114,41,123,118,97,114,32,100,61,102,101,40,101,44,97,44,115,44,110,41,59,101,46,100,111,109,61,105,61,118,101,40,100,46,36,76,73,44,110,117,108,108,44,100,46,36,67,88,44,111,41,44,98,101,40,101,44,108,44,100,41,44,100,46,36,85,80,68,61,33,49,125,101,108,115,101,123,118,97,114,32,99,61,104,101,40,97,40,115,44,110,41,44,101,41,59,101,46,99,104,105,108,100,114,101,110,61,99,44,101,46,100,111,109,61,105,61,118,101,40,99,44,110,117,108,108,44,110,44,111,41,44,107,101,40,115,44,108,44,105,41,125,121,40,116,41,124,124,77,40,116,44,105,41,59,114,101,116,117,114,110,32,105,125,40,101,44,116,44,110,44,111,44,48,60,40,52,38,114,41,41,58,53,49,50,38,114,124,124,49,54,38,114,63,103,101,40,101,44,116,41,58,49,48,50,52,38,114,63,40,118,101,40,101,46,99,104,105,108,100,114,101,110,44,101,46,116,121,112,101,44,110,44,33,49,41,44,101,46,100,111,109,61,103,101,40,120,40,41,44,116,41,41,58,118,111,105,100,32,48,125,102,117,110,99,116,105,111,110,32,103,101,40,101,44,116,41,123,118,97,114,32,110,61,101,46,100,111,109,61,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,84,101,120,116,78,111,100,101,40,101,46,99,104,105,108,100,114,101,110,41,59,114,101,116,117,114,110,32,121,40,116,41,124,124,77,40,116,44,110,41,44,110,125,102,117,110,99,116,105,111,110,32,109,101,40,101,44,116,44,110,44,111,41,123,118,97,114,32,114,61,101,46,102,108,97,103,115,44,105,61,101,46,99,104,105,108,100,114,101,110,44,97,61,101,46,112,114,111,112,115,44,115,61,101,46,99,108,97,115,115,78,97,109,101,44,108,61,101,46,114,101,102,44,100,61,101,46,99,104,105,108,100,70,108,97,103,115,59,111,61,111,124,124,48,60,40,51,50,38,114,41,59,118,97,114,32,99,44,117,61,40,99,61,101,46,116,121,112,101,44,33,48,61,61,61,111,63,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,78,83,40,79,44,99,41,58,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,99,41,41,59,105,102,40,101,46,100,111,109,61,117,44,68,40,115,41,124,124,34,34,61,61,61,115,124,124,40,111,63,117,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,115,41,58,117,46,99,108,97,115,115,78,97,109,101,61,115,41,44,121,40,116,41,124,124,77,40,116,44,117,41,44,48,61,61,40,49,38,100,41,41,123,118,97,114,32,112,61,33,48,61,61,61,111,38,38,34,102,111,114,101,105,103,110,79,98,106,101,99,116,34,33,61,61,101,46,116,121,112,101,59,50,61,61,61,100,63,118,101,40,105,44,117,44,110,44,112,41,58,49,50,38,100,38,38,121,101,40,105,44,117,44,110,44,112,41,125,114,101,116,117,114,110,32,121,40,97,41,124,124,112,101,40,101,44,114,44,97,44,117,44,111,41,44,95,40,108,41,38,38,67,101,40,117,44,108,41,44,117,125,102,117,110,99,116,105,111,110,32,121,101,40,101,44,116,44,110,44,111,41,123,102,111,114,40,118,97,114,32,114,61,48,44,105,61,101,46,108,101,110,103,116,104,59,114,60,105,59,114,43,43,41,123,118,97,114,32,97,61,101,91,114,93,59,121,40,97,46,100,111,109,41,124,124,40,101,91,114,93,61,97,61,119,40,97,41,41,44,118,101,40,97,44,116,44,110,44,111,41,125,125,102,117,110,99,116,105,111,110,32,98,101,40,101,44,116,44,110,41,123,118,97,114,32,111,59,95,40,116,41,38,38,116,40,110,41,44,95,40,110,46,99,111,109,112,111,110,101,110,116,68,105,100,77,111,117,110,116,41,38,38,85,46,112,117,115,104,40,40,111,61,110,44,102,117,110,99,116,105,111,110,40,41,123,111,46,99,111,109,112,111,110,101,110,116,68,105,100,77,111,117,110,116,40,41,125,41,41,125,102,117,110,99,116,105,111,110,32,107,101,40,101,44,116,44,110,41,123,118,97,114,32,111,44,114,44,105,59,68,40,116,41,124,124,40,95,40,116,46,111,110,67,111,109,112,111,110,101,110,116,87,105,108,108,77,111,117,110,116,41,38,38,116,46,111,110,67,111,109,112,111,110,101,110,116,87,105,108,108,77,111,117,110,116,40,101,41,44,95,40,116,46,111,110,67,111,109,112,111,110,101,110,116,68,105,100,77,111,117,110,116,41,38,38,85,46,112,117,115,104,40,40,111,61,116,44,114,61,110,44,105,61,101,44,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,111,46,111,110,67,111,109,112,111,110,101,110,116,68,105,100,77,111,117,110,116,40,114,44,105,41,125,41,41,41,125,102,117,110,99,116,105,111,110,32,67,101,40,101,44,116,41,123,85,46,112,117,115,104,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,40,101,41,125,41,125,102,117,110,99,116,105,111,110,32,36,101,40,101,44,116,44,110,44,111,41,123,118,97,114,32,114,44,105,44,97,61,101,46,99,104,105,108,100,114,101,110,44,115,61,101,46,112,114,111,112,115,44,108,61,101,46,99,108,97,115,115,78,97,109,101,44,100,61,101,46,102,108,97,103,115,44,99,61,101,46,114,101,102,59,105,102,40,111,61,111,124,124,48,60,40,51,50,38,100,41,44,49,33,61,61,116,46,110,111,100,101,84,121,112,101,124,124,116,46,116,97,103,78,97,109,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,33,61,61,101,46,116,121,112,101,41,123,118,97,114,32,117,61,109,101,40,101,44,110,117,108,108,44,110,44,111,41,59,101,46,100,111,109,61,117,44,70,40,116,46,112,97,114,101,110,116,78,111,100,101,44,117,44,116,41,125,101,108,115,101,123,118,97,114,32,112,61,40,101,46,100,111,109,61,116,41,46,102,105,114,115,116,67,104,105,108,100,44,102,61,101,46,99,104,105,108,100,70,108,97,103,115,59,105,102,40,48,61,61,40,49,38,102,41,41,123,102,111,114,40,118,97,114,32,104,61,110,117,108,108,59,112,59,41,104,61,112,46,110,101,120,116,83,105,98,108,105,110,103,44,56,61,61,61,112,46,110,111,100,101,84,121,112,101,38,38,40,34,33,34,61,61,61,112,46,100,97,116,97,63,116,46,114,101,112,108,97,99,101,67,104,105,108,100,40,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,84,101,120,116,78,111,100,101,40,34,34,41,44,112,41,58,116,46,114,101,109,111,118,101,67,104,105,108,100,40,112,41,41,44,112,61,104,59,105,102,40,112,61,116,46,102,105,114,115,116,67,104,105,108,100,44,50,61,61,61,102,41,121,40,112,41,63,118,101,40,97,44,116,44,110,44,111,41,58,40,104,61,112,46,110,101,120,116,83,105,98,108,105,110,103,44,68,101,40,97,44,112,44,110,44,111,41,44,112,61,104,41,59,101,108,115,101,32,105,102,40,49,50,38,102,41,102,111,114,40,118,97,114,32,118,61,48,44,103,61,97,46,108,101,110,103,116,104,59,118,60,103,59,118,43,43,41,123,118,97,114,32,109,61,97,91,118,93,59,121,40,112,41,63,118,101,40,109,44,116,44,110,44,111,41,58,40,104,61,112,46,110,101,120,116,83,105,98,108,105,110,103,44,68,101,40,109,44,112,44,110,44,111,41,44,112,61,104,41,125,102,111,114,40,59,112,59,41,104,61,112,46,110,101,120,116,83,105,98,108,105,110,103,44,116,46,114,101,109,111,118,101,67,104,105,108,100,40,112,41,44,112,61,104,125,101,108,115,101,32,121,40,116,46,102,105,114,115,116,67,104,105,108,100,41,124,124,40,114,61,116,44,105,61,115,44,66,111,111,108,101,97,110,40,105,38,38,105,46,100,97,110,103,101,114,111,117,115,108,121,83,101,116,73,110,110,101,114,72,84,77,76,38,38,105,46,100,97,110,103,101,114,111,117,115,108,121,83,101,116,73,110,110,101,114,72,84,77,76,46,95,95,104,116,109,108,38,38,87,40,114,44,105,46,100,97,110,103,101,114,111,117,115,108,121,83,101,116,73,110,110,101,114,72,84,77,76,46,95,95,104,116,109,108,41,41,41,124,124,40,116,46,116,101,120,116,67,111,110,116,101,110,116,61,34,34,44,52,52,56,38,100,38,38,40,116,46,100,101,102,97,117,108,116,86,97,108,117,101,61,34,34,41,41,59,121,40,115,41,124,124,112,101,40,101,44,100,44,115,44,116,44,111,41,44,68,40,108,41,63,34,34,33,61,61,116,46,99,108,97,115,115,78,97,109,101,38,38,116,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,41,58,111,63,116,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,108,41,58,116,46,99,108,97,115,115,78,97,109,101,61,108,44,95,40,99,41,38,38,67,101,40,116,44,99,41,125,125,102,117,110,99,116,105,111,110,32,68,101,40,101,44,116,44,110,44,111,41,123,118,97,114,32,114,61,101,46,102,108,97,103,115,59,49,52,38,114,63,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,111,44,114,41,123,118,97,114,32,105,61,101,46,116,121,112,101,44,97,61,101,46,114,101,102,44,115,61,101,46,112,114,111,112,115,124,124,76,59,105,102,40,114,41,123,118,97,114,32,108,61,102,101,40,101,44,105,44,115,44,110,41,44,100,61,108,46,36,76,73,59,68,101,40,100,44,116,44,108,46,36,67,88,44,111,41,44,101,46,100,111,109,61,100,46,100,111,109,44,98,101,40,48,44,97,44,108,41,44,108,46,36,85,80,68,61,33,49,125,101,108,115,101,123,118,97,114,32,99,61,104,101,40,105,40,115,44,110,41,44,101,41,59,68,101,40,99,44,116,44,110,44,111,41,44,101,46,99,104,105,108,100,114,101,110,61,99,44,101,46,100,111,109,61,99,46,100,111,109,44,107,101,40,115,44,97,44,116,41,125,125,40,101,44,116,44,110,44,111,44,48,60,40,52,38,114,41,41,58,52,56,49,38,114,63,36,101,40,101,44,116,44,110,44,111,41,58,49,54,38,114,63,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,102,40,51,33,61,61,116,46,110,111,100,101,84,121,112,101,41,123,118,97,114,32,110,61,103,101,40,101,44,110,117,108,108,41,59,101,46,100,111,109,61,110,44,70,40,116,46,112,97,114,101,110,116,78,111,100,101,44,110,44,116,41,125,101,108,115,101,123,118,97,114,32,111,61,101,46,99,104,105,108,100,114,101,110,59,116,46,110,111,100,101,86,97,108,117,101,33,61,61,111,38,38,40,116,46,110,111,100,101,86,97,108,117,101,61,111,41,44,101,46,100,111,109,61,116,125,125,40,101,44,116,41,58,53,49,50,38,114,63,101,46,100,111,109,61,116,58,102,117,110,99,116,105,111,110,40,101,41,123,116,104,114,111,119,32,101,124,124,40,101,61,97,41,44,110,101,119,32,69,114,114,111,114,40,34,73,110,102,101,114,110,111,32,69,114,114,111,114,58,32,34,43,101,41,125,40,41,125,102,117,110,99,116,105,111,110,32,95,101,40,101,44,116,44,110,44,111,44,114,41,123,115,101,40,101,41,44,70,40,110,44,118,101,40,116,44,110,117,108,108,44,111,44,114,41,44,101,46,100,111,109,41,125,102,117,110,99,116,105,111,110,32,120,101,40,101,44,116,44,110,44,111,44,114,41,123,105,102,40,101,33,61,61,116,41,123,118,97,114,32,105,61,48,124,116,46,102,108,97,103,115,59,101,46,102,108,97,103,115,33,61,61,105,124,124,50,48,52,56,38,105,63,95,101,40,101,44,116,44,110,44,111,44,114,41,58,52,56,49,38,105,63,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,111,44,114,41,123,118,97,114,32,105,61,116,46,116,121,112,101,59,105,102,40,101,46,116,121,112,101,33,61,61,105,41,95,101,40,101,44,116,44,110,44,111,44,114,41,59,101,108,115,101,123,118,97,114,32,97,44,115,61,101,46,100,111,109,44,108,61,116,46,102,108,97,103,115,44,100,61,101,46,112,114,111,112,115,44,99,61,116,46,112,114,111,112,115,44,117,61,33,49,44,112,61,33,49,59,105,102,40,116,46,100,111,109,61,115,44,114,61,114,124,124,48,60,40,51,50,38,108,41,44,100,33,61,61,99,41,123,118,97,114,32,102,61,100,124,124,76,59,105,102,40,40,97,61,99,124,124,76,41,33,61,61,76,41,102,111,114,40,118,97,114,32,104,32,105,110,40,117,61,48,60,40,52,52,56,38,108,41,41,38,38,40,112,61,105,101,40,97,41,41,44,97,41,123,118,97,114,32,118,61,102,91,104,93,44,103,61,97,91,104,93,59,118,33,61,61,103,38,38,117,101,40,104,44,118,44,103,44,115,44,114,44,112,44,101,41,125,105,102,40,102,33,61,61,76,41,102,111,114,40,118,97,114,32,109,32,105,110,32,102,41,97,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,109,41,124,124,68,40,102,91,109,93,41,124,124,117,101,40,109,44,102,91,109,93,44,110,117,108,108,44,115,44,114,44,112,44,101,41,125,118,97,114,32,121,61,101,46,99,104,105,108,100,114,101,110,44,98,61,116,46,99,104,105,108,100,114,101,110,44,107,61,116,46,114,101,102,44,67,61,101,46,99,108,97,115,115,78,97,109,101,44,36,61,116,46,99,108,97,115,115,78,97,109,101,59,121,33,61,61,98,38,38,119,101,40,101,46,99,104,105,108,100,70,108,97,103,115,44,116,46,99,104,105,108,100,70,108,97,103,115,44,121,44,98,44,115,44,111,44,114,38,38,34,102,111,114,101,105,103,110,79,98,106,101,99,116,34,33,61,61,105,41,44,117,38,38,111,101,40,108,44,116,44,115,44,97,44,33,49,44,112,41,44,67,33,61,61,36,38,38,40,68,40,36,41,63,115,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,41,58,114,63,115,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,36,41,58,115,46,99,108,97,115,115,78,97,109,101,61,36,41,44,95,40,107,41,38,38,101,46,114,101,102,33,61,61,107,38,38,67,101,40,115,44,107,41,125,125,40,101,44,116,44,110,44,111,44,114,41,58,49,52,38,105,63,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,111,44,114,44,105,41,123,118,97,114,32,97,61,116,46,116,121,112,101,44,115,61,101,46,107,101,121,44,108,61,116,46,107,101,121,59,105,102,40,101,46,116,121,112,101,33,61,61,97,124,124,115,33,61,61,108,41,95,101,40,101,44,116,44,110,44,111,44,114,41,59,101,108,115,101,123,118,97,114,32,100,61,116,46,112,114,111,112,115,124,124,76,59,105,102,40,105,41,123,118,97,114,32,99,61,101,46,99,104,105,108,100,114,101,110,59,99,46,36,85,80,68,61,33,48,44,99,46,36,86,61,116,44,78,101,40,99,44,99,46,115,116,97,116,101,44,116,44,100,44,110,44,111,44,114,44,33,49,44,33,49,41,44,99,46,36,85,80,68,61,33,49,125,101,108,115,101,123,118,97,114,32,117,61,33,48,44,112,61,101,46,112,114,111,112,115,44,102,61,116,46,114,101,102,44,104,61,33,68,40,102,41,44,118,61,101,46,99,104,105,108,100,114,101,110,59,105,102,40,116,46,100,111,109,61,101,46,100,111,109,44,116,46,99,104,105,108,100,114,101,110,61,118,44,104,38,38,95,40,102,46,111,110,67,111,109,112,111,110,101,110,116,83,104,111,117,108,100,85,112,100,97,116,101,41,38,38,40,117,61,102,46,111,110,67,111,109,112,111,110,101,110,116,83,104,111,117,108,100,85,112,100,97,116,101,40,112,44,100,41,41,44,33,49,33,61,61,117,41,123,104,38,38,95,40,102,46,111,110,67,111,109,112,111,110,101,110,116,87,105,108,108,85,112,100,97,116,101,41,38,38,102,46,111,110,67,111,109,112,111,110,101,110,116,87,105,108,108,85,112,100,97,116,101,40,112,44,100,41,59,118,97,114,32,103,61,97,40,100,44,111,41,59,103,33,61,61,109,38,38,40,103,61,104,101,40,103,44,116,41,44,120,101,40,118,44,103,44,110,44,111,44,114,41,44,116,46,99,104,105,108,100,114,101,110,61,103,44,116,46,100,111,109,61,103,46,100,111,109,44,104,38,38,95,40,102,46,111,110,67,111,109,112,111,110,101,110,116,68,105,100,85,112,100,97,116,101,41,38,38,102,46,111,110,67,111,109,112,111,110,101,110,116,68,105,100,85,112,100,97,116,101,40,112,44,100,41,41,125,101,108,115,101,32,49,52,38,118,46,102,108,97,103,115,38,38,40,118,46,112,97,114,101,110,116,86,78,111,100,101,61,116,41,125,125,125,40,101,44,116,44,110,44,111,44,114,44,48,60,40,52,38,105,41,41,58,49,54,38,105,63,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,111,44,114,61,116,46,99,104,105,108,100,114,101,110,59,121,40,110,46,102,105,114,115,116,67,104,105,108,100,41,63,40,110,46,116,101,120,116,67,111,110,116,101,110,116,61,114,44,111,61,110,46,102,105,114,115,116,67,104,105,108,100,41,58,40,111,61,101,46,100,111,109,44,114,33,61,61,101,46,99,104,105,108,100,114,101,110,38,38,40,111,46,110,111,100,101,86,97,108,117,101,61,114,41,41,59,116,46,100,111,109,61,111,125,40,101,44,116,44,110,41,58,53,49,50,38,105,63,116,46,100,111,109,61,101,46,100,111,109,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,111,61,101,46,116,121,112,101,44,114,61,116,46,116,121,112,101,44,105,61,116,46,99,104,105,108,100,114,101,110,59,105,102,40,119,101,40,101,46,99,104,105,108,100,70,108,97,103,115,44,116,46,99,104,105,108,100,70,108,97,103,115,44,101,46,99,104,105,108,100,114,101,110,44,105,44,111,44,110,44,33,49,41,44,116,46,100,111,109,61,101,46,100,111,109,44,111,33,61,61,114,38,38,33,102,40,105,41,41,123,118,97,114,32,97,61,105,46,100,111,109,59,111,46,114,101,109,111,118,101,67,104,105,108,100,40,97,41,44,114,46,97,112,112,101,110,100,67,104,105,108,100,40,97,41,125,125,40,101,44,116,44,111,41,125,125,102,117,110,99,116,105,111,110,32,119,101,40,101,44,116,44,110,44,111,44,114,44,105,44,97,41,123,115,119,105,116,99,104,40,101,41,123,99,97,115,101,32,50,58,115,119,105,116,99,104,40,116,41,123,99,97,115,101,32,50,58,120,101,40,110,44,111,44,114,44,105,44,97,41,59,98,114,101,97,107,59,99,97,115,101,32,49,58,97,101,40,110,44,114,41,59,98,114,101,97,107,59,100,101,102,97,117,108,116,58,97,101,40,110,44,114,41,44,121,101,40,111,44,114,44,105,44,97,41,125,98,114,101,97,107,59,99,97,115,101,32,49,58,115,119,105,116,99,104,40,116,41,123,99,97,115,101,32,50,58,118,101,40,111,44,114,44,105,44,97,41,59,98,114,101,97,107,59,99,97,115,101,32,49,58,98,114,101,97,107,59,100,101,102,97,117,108,116,58,121,101,40,111,44,114,44,105,44,97,41,125,98,114,101,97,107,59,100,101,102,97,117,108,116,58,105,102,40,49,50,38,116,41,123,118,97,114,32,115,61,110,46,108,101,110,103,116,104,44,108,61,111,46,108,101,110,103,116,104,59,48,61,61,61,115,63,48,60,108,38,38,121,101,40,111,44,114,44,105,44,97,41,58,48,61,61,61,108,63,100,101,40,114,44,110,41,58,56,61,61,61,116,38,38,56,61,61,61,101,63,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,111,44,114,44,105,44,97,41,123,118,97,114,32,115,44,108,44,100,61,105,45,49,44,99,61,97,45,49,44,117,61,48,44,112,61,101,91,117,93,44,102,61,116,91,117,93,59,101,58,123,102,111,114,40,59,112,46,107,101,121,61,61,61,102,46,107,101,121,59,41,123,105,102,40,102,46,100,111,109,38,38,40,116,91,117,93,61,102,61,119,40,102,41,41,44,120,101,40,112,44,102,44,110,44,111,44,114,41,44,101,91,117,93,61,102,44,100,60,43,43,117,124,124,99,60,117,41,98,114,101,97,107,32,101,59,112,61,101,91,117,93,44,102,61,116,91,117,93,125,102,111,114,40,112,61,101,91,100,93,44,102,61,116,91,99,93,59,112,46,107,101,121,61,61,61,102,46,107,101,121,59,41,123,105,102,40,102,46,100,111,109,38,38,40,116,91,99,93,61,102,61,119,40,102,41,41,44,120,101,40,112,44,102,44,110,44,111,44,114,41,44,101,91,100,93,61,102,44,99,45,45,44,45,45,100,60,117,124,124,99,60,117,41,98,114,101,97,107,32,101,59,112,61,101,91,100,93,44,102,61,116,91,99,93,125,125,105,102,40,100,60,117,41,123,105,102,40,117,60,61,99,41,102,111,114,40,118,97,114,32,104,61,40,108,61,99,43,49,41,60,97,63,116,91,108,93,46,100,111,109,58,110,117,108,108,59,117,60,61,99,59,41,40,102,61,116,91,117,93,41,46,100,111,109,38,38,40,116,91,117,93,61,102,61,119,40,102,41,41,44,117,43,43,44,69,40,110,44,118,101,40,102,44,110,117,108,108,44,111,44,114,41,44,104,41,125,101,108,115,101,32,105,102,40,99,60,117,41,102,111,114,40,59,117,60,61,100,59,41,97,101,40,101,91,117,43,43,93,44,110,41,59,101,108,115,101,123,118,97,114,32,118,61,117,44,103,61,117,44,109,61,100,45,117,43,49,44,121,61,99,45,117,43,49,44,98,61,91,93,59,102,111,114,40,115,61,48,59,115,60,121,59,115,43,43,41,98,46,112,117,115,104,40,48,41,59,118,97,114,32,107,61,109,61,61,61,105,44,67,61,33,49,44,36,61,48,44,68,61,48,59,105,102,40,97,60,52,124,124,40,109,124,121,41,60,51,50,41,102,111,114,40,115,61,118,59,115,60,61,100,59,115,43,43,41,105,102,40,112,61,101,91,115,93,44,68,60,121,41,123,102,111,114,40,117,61,103,59,117,60,61,99,59,117,43,43,41,105,102,40,102,61,116,91,117,93,44,112,46,107,101,121,61,61,61,102,46,107,101,121,41,123,105,102,40,98,91,117,45,103,93,61,115,43,49,44,107,41,102,111,114,40,107,61,33,49,59,118,60,115,59,41,97,101,40,101,91,118,43,43,93,44,110,41,59,117,60,36,63,67,61,33,48,58,36,61,117,44,102,46,100,111,109,38,38,40,116,91,117,93,61,102,61,119,40,102,41,41,44,120,101,40,112,44,102,44,110,44,111,44,114,41,44,68,43,43,59,98,114,101,97,107,125,33,107,38,38,99,60,117,38,38,97,101,40,112,44,110,41,125,101,108,115,101,32,107,124,124,97,101,40,112,44,110,41,59,101,108,115,101,123,118,97,114,32,95,61,123,125,59,102,111,114,40,115,61,103,59,115,60,61,99,59,115,43,43,41,95,91,116,91,115,93,46,107,101,121,93,61,115,59,102,111,114,40,115,61,118,59,115,60,61,100,59,115,43,43,41,105,102,40,112,61,101,91,115,93,44,68,60,121,41,105,102,40,118,111,105,100,32,48,33,61,61,40,117,61,95,91,112,46,107,101,121,93,41,41,123,105,102,40,107,41,102,111,114,40,107,61,33,49,59,118,60,115,59,41,97,101,40,101,91,118,43,43,93,44,110,41,59,102,61,116,91,117,93,44,98,91,117,45,103,93,61,115,43,49,44,117,60,36,63,67,61,33,48,58,36,61,117,44,102,46,100,111,109,38,38,40,116,91,117,93,61,102,61,119,40,102,41,41,44,120,101,40,112,44,102,44,110,44,111,44,114,41,44,68,43,43,125,101,108,115,101,32,107,124,124,97,101,40,112,44,110,41,59,101,108,115,101,32,107,124,124,97,101,40,112,44,110,41,125,105,102,40,107,41,100,101,40,110,44,101,41,44,121,101,40,116,44,110,44,111,44,114,41,59,101,108,115,101,32,105,102,40,67,41,123,118,97,114,32,120,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,44,110,44,111,44,114,44,105,44,97,61,101,46,115,108,105,99,101,40,41,44,115,61,91,48,93,44,108,61,101,46,108,101,110,103,116,104,59,102,111,114,40,116,61,48,59,116,60,108,59,116,43,43,41,123,118,97,114,32,100,61,101,91,116,93,59,105,102,40,48,33,61,61,100,41,123,105,102,40,110,61,115,91,115,46,108,101,110,103,116,104,45,49,93,44,101,91,110,93,60,100,41,123,97,91,116,93,61,110,44,115,46,112,117,115,104,40,116,41,59,99,111,110,116,105,110,117,101,125,102,111,114,40,111,61,48,44,114,61,115,46,108,101,110,103,116,104,45,49,59,111,60,114,59,41,101,91,115,91,105,61,40,111,43,114,41,47,50,124,48,93,93,60,100,63,111,61,105,43,49,58,114,61,105,59,100,60,101,91,115,91,111,93,93,38,38,40,48,60,111,38,38,40,97,91,116,93,61,115,91,111,45,49,93,41,44,115,91,111,93,61,116,41,125,125,111,61,115,46,108,101,110,103,116,104,44,114,61,115,91,111,45,49,93,59,102,111,114,40,59,48,60,111,45,45,59,41,115,91,111,93,61,114,44,114,61,97,91,114,93,59,114,101,116,117,114,110,32,115,125,40,98,41,59,102,111,114,40,117,61,120,46,108,101,110,103,116,104,45,49,44,115,61,121,45,49,59,48,60,61,115,59,115,45,45,41,48,61,61,61,98,91,115,93,63,40,40,102,61,116,91,36,61,115,43,103,93,41,46,100,111,109,38,38,40,116,91,36,93,61,102,61,119,40,102,41,41,44,108,61,36,43,49,44,69,40,110,44,118,101,40,102,44,110,117,108,108,44,111,44,114,41,44,108,60,97,63,116,91,108,93,46,100,111,109,58,110,117,108,108,41,41,58,117,60,48,124,124,115,33,61,61,120,91,117,93,63,40,102,61,116,91,36,61,115,43,103,93,44,108,61,36,43,49,44,69,40,110,44,102,46,100,111,109,44,108,60,97,63,116,91,108,93,46,100,111,109,58,110,117,108,108,41,41,58,117,45,45,125,101,108,115,101,32,105,102,40,68,33,61,61,121,41,102,111,114,40,115,61,121,45,49,59,48,60,61,115,59,115,45,45,41,48,61,61,61,98,91,115,93,38,38,40,40,102,61,116,91,36,61,115,43,103,93,41,46,100,111,109,38,38,40,116,91,36,93,61,102,61,119,40,102,41,41,44,108,61,36,43,49,44,69,40,110,44,118,101,40,102,44,110,117,108,108,44,111,44,114,41,44,108,60,97,63,116,91,108,93,46,100,111,109,58,110,117,108,108,41,41,125,125,40,110,44,111,44,114,44,105,44,97,44,115,44,108,41,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,111,44,114,44,105,44,97,41,123,102,111,114,40,118,97,114,32,115,44,108,44,100,61,97,60,105,63,97,58,105,44,99,61,48,59,99,60,100,59,99,43,43,41,115,61,116,91,99,93,44,108,61,101,91,99,93,44,115,46,100,111,109,38,38,40,115,61,116,91,99,93,61,119,40,115,41,41,44,120,101,40,108,44,115,44,110,44,111,44,114,41,44,101,91,99,93,61,115,59,105,102,40,105,60,97,41,102,111,114,40,99,61,100,59,99,60,97,59,99,43,43,41,40,115,61,116,91,99,93,41,46,100,111,109,38,38,40,115,61,116,91,99,93,61,119,40,115,41,41,44,118,101,40,115,44,110,44,111,44,114,41,59,101,108,115,101,32,105,102,40,97,60,105,41,102,111,114,40,99,61,100,59,99,60,105,59,99,43,43,41,97,101,40,101,91,99,93,44,110,41,125,40,110,44,111,44,114,44,105,44,97,44,115,44,108,41,125,101,108,115,101,32,49,61,61,61,116,63,100,101,40,114,44,110,41,58,40,100,101,40,114,44,110,41,44,118,101,40,111,44,114,44,105,44,97,41,41,125,125,102,117,110,99,116,105,111,110,32,78,101,40,101,44,116,44,110,44,111,44,114,44,105,44,97,44,115,44,108,41,123,118,97,114,32,100,44,99,61,101,46,115,116,97,116,101,44,117,61,101,46,112,114,111,112,115,59,105,102,40,33,40,110,46,99,104,105,108,100,114,101,110,61,101,41,46,36,85,78,41,123,105,102,40,117,33,61,61,111,124,124,111,61,61,61,76,41,123,105,102,40,33,108,38,38,95,40,101,46,99,111,109,112,111,110,101,110,116,87,105,108,108,82,101,99,101,105,118,101,80,114,111,112,115,41,41,123,105,102,40,101,46,36,66,82,61,33,48,44,101,46,99,111,109,112,111,110,101,110,116,87,105,108,108,82,101,99,101,105,118,101,80,114,111,112,115,40,111,44,105,41,44,101,46,36,85,78,41,114,101,116,117,114,110,59,101,46,36,66,82,61,33,49,125,101,46,36,80,83,83,38,38,40,116,61,98,40,116,44,101,46,36,80,83,41,44,101,46,36,80,83,83,61,33,49,44,101,46,36,80,83,61,110,117,108,108,41,125,118,97,114,32,112,61,66,111,111,108,101,97,110,40,101,46,115,104,111,117,108,100,67,111,109,112,111,110,101,110,116,85,112,100,97,116,101,41,59,105,102,40,115,124,124,33,112,124,124,112,38,38,101,46,115,104,111,117,108,100,67,111,109,112,111,110,101,110,116,85,112,100,97,116,101,40,111,44,116,44,105,41,41,123,95,40,101,46,99,111,109,112,111,110,101,110,116,87,105,108,108,85,112,100,97,116,101,41,38,38,40,101,46,36,66,83,61,33,48,44,101,46,99,111,109,112,111,110,101,110,116,87,105,108,108,85,112,100,97,116,101,40,111,44,116,44,105,41,44,101,46,36,66,83,61,33,49,41,44,101,46,112,114,111,112,115,61,111,44,101,46,115,116,97,116,101,61,116,44,101,46,99,111,110,116,101,120,116,61,105,44,95,40,80,46,98,101,102,111,114,101,82,101,110,100,101,114,41,38,38,80,46,98,101,102,111,114,101,82,101,110,100,101,114,40,101,41,44,100,61,101,46,114,101,110,100,101,114,40,111,44,116,44,105,41,44,95,40,80,46,97,102,116,101,114,82,101,110,100,101,114,41,38,38,80,46,97,102,116,101,114,82,101,110,100,101,114,40,101,41,59,118,97,114,32,102,44,104,61,100,33,61,61,109,59,105,102,40,95,40,101,46,103,101,116,67,104,105,108,100,67,111,110,116,101,120,116,41,38,38,40,102,61,101,46,103,101,116,67,104,105,108,100,67,111,110,116,101,120,116,40,41,41,44,102,61,68,40,102,41,63,105,58,98,40,105,44,102,41,44,101,46,36,67,88,61,102,44,104,41,120,101,40,101,46,36,76,73,44,101,46,36,76,73,61,104,101,40,100,44,110,41,44,114,44,102,44,97,41,44,95,40,101,46,99,111,109,112,111,110,101,110,116,68,105,100,85,112,100,97,116,101,41,38,38,101,46,99,111,109,112,111,110,101,110,116,68,105,100,85,112,100,97,116,101,40,117,44,99,41,125,101,108,115,101,32,101,46,112,114,111,112,115,61,111,44,101,46,115,116,97,116,101,61,116,44,101,46,99,111,110,116,101,120,116,61,105,59,110,46,100,111,109,61,101,46,36,76,73,46,100,111,109,125,125,101,38,38,100,111,99,117,109,101,110,116,46,98,111,100,121,59,102,117,110,99,116,105,111,110,32,114,40,101,44,116,44,110,41,123,105,102,40,101,33,61,61,109,41,123,118,97,114,32,111,61,116,46,36,86,59,114,101,116,117,114,110,32,68,40,111,41,63,102,40,101,41,124,124,40,101,46,100,111,109,38,38,40,101,61,119,40,101,41,41,44,121,40,116,46,102,105,114,115,116,67,104,105,108,100,41,63,40,118,101,40,101,44,116,44,76,44,33,49,41,44,116,46,36,86,61,101,41,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,111,61,116,46,102,105,114,115,116,67,104,105,108,100,59,105,102,40,33,121,40,111,41,41,102,111,114,40,102,40,101,41,124,124,68,101,40,101,44,111,44,76,44,33,49,41,44,111,61,116,46,102,105,114,115,116,67,104,105,108,100,59,111,61,111,46,110,101,120,116,83,105,98,108,105,110,103,59,41,116,46,114,101,109,111,118,101,67,104,105,108,100,40,111,41,59,48,60,85,46,108,101,110,103,116,104,38,38,73,40,85,41,44,116,46,36,86,61,101,44,95,40,110,41,38,38,110,40,41,125,40,101,44,116,41,44,111,61,101,41,58,68,40,101,41,63,40,97,101,40,111,44,116,41,44,116,46,36,86,61,110,117,108,108,41,58,40,101,46,100,111,109,38,38,40,101,61,119,40,101,41,41,44,120,101,40,111,44,101,44,116,44,76,44,33,49,41,44,111,61,116,46,36,86,61,101,41,44,48,60,85,46,108,101,110,103,116,104,38,38,73,40,85,41,44,95,40,110,41,38,38,110,40,41,44,95,40,80,46,114,101,110,100,101,114,67,111,109,112,108,101,116,101,41,38,38,80,46,114,101,110,100,101,114,67,111,109,112,108,101,116,101,40,111,41,44,111,38,38,49,52,38,111,46,102,108,97,103,115,63,111,46,99,104,105,108,100,114,101,110,58,118,111,105,100,32,48,125,125,118,97,114,32,83,101,61,34,117,110,100,101,102,105,110,101,100,34,61,61,116,121,112,101,111,102,32,80,114,111,109,105,115,101,63,110,117,108,108,58,80,114,111,109,105,115,101,46,114,101,115,111,108,118,101,40,41,44,80,101,61,34,117,110,100,101,102,105,110,101,100,34,61,61,116,121,112,101,111,102,32,114,101,113,117,101,115,116,65,110,105,109,97,116,105,111,110,70,114,97,109,101,63,115,101,116,84,105,109,101,111,117,116,58,114,101,113,117,101,115,116,65,110,105,109,97,116,105,111,110,70,114,97,109,101,46,98,105,110,100,40,119,105,110,100,111,119,41,59,102,117,110,99,116,105,111,110,32,79,101,40,101,44,116,44,110,44,111,41,123,95,40,116,41,38,38,40,116,61,116,40,101,46,115,116,97,116,101,44,101,46,112,114,111,112,115,44,101,46,99,111,110,116,101,120,116,41,41,59,118,97,114,32,114,44,105,44,97,44,115,61,101,46,36,80,83,59,105,102,40,68,40,115,41,41,101,46,36,80,83,61,116,59,101,108,115,101,32,102,111,114,40,118,97,114,32,108,32,105,110,32,116,41,115,91,108,93,61,116,91,108,93,59,105,102,40,101,46,36,80,83,83,124,124,101,46,36,66,82,41,101,46,36,80,83,83,61,33,48,44,101,46,36,66,82,38,38,95,40,110,41,38,38,85,46,112,117,115,104,40,110,46,98,105,110,100,40,101,41,41,59,101,108,115,101,32,105,102,40,101,46,36,85,80,68,41,123,118,97,114,32,100,61,101,46,36,81,85,59,121,40,100,41,38,38,40,100,61,101,46,36,81,85,61,91,93,44,105,61,101,44,97,61,100,44,114,61,102,117,110,99,116,105,111,110,40,41,123,105,46,36,81,85,61,110,117,108,108,44,105,46,36,85,80,68,61,33,48,44,84,101,40,105,44,33,49,44,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,118,97,114,32,101,61,48,44,116,61,97,46,108,101,110,103,116,104,59,101,60,116,59,101,43,43,41,97,91,101,93,46,99,97,108,108,40,105,41,125,41,44,105,46,36,85,80,68,61,33,49,125,44,83,101,63,83,101,46,116,104,101,110,40,114,41,58,80,101,40,114,41,41,44,95,40,110,41,38,38,100,46,112,117,115,104,40,110,41,125,101,108,115,101,32,101,46,36,80,83,83,61,33,48,44,101,46,36,85,80,68,61,33,48,44,84,101,40,101,44,111,44,110,41,44,101,46,36,85,80,68,61,33,49,125,102,117,110,99,116,105,111,110,32,84,101,40,101,44,116,44,110,41,123,105,102,40,33,101,46,36,85,78,41,123,105,102,40,116,124,124,33,101,46,36,66,82,41,123,101,46,36,80,83,83,61,33,49,59,118,97,114,32,111,61,101,46,36,80,83,44,114,61,98,40,101,46,115,116,97,116,101,44,111,41,44,105,61,101,46,112,114,111,112,115,44,97,61,101,46,99,111,110,116,101,120,116,59,101,46,36,80,83,61,110,117,108,108,59,118,97,114,32,115,61,101,46,36,86,44,108,61,101,46,36,76,73,59,105,102,40,78,101,40,101,44,114,44,115,44,105,44,108,46,100,111,109,38,38,108,46,100,111,109,46,112,97,114,101,110,116,78,111,100,101,44,97,44,48,60,40,51,50,38,115,46,102,108,97,103,115,41,44,116,44,33,48,41,44,101,46,36,85,78,41,114,101,116,117,114,110,59,105,102,40,48,61,61,40,49,48,50,52,38,101,46,36,76,73,46,102,108,97,103,115,41,41,102,111,114,40,118,97,114,32,100,61,101,46,36,76,73,46,100,111,109,59,33,121,40,115,61,115,46,112,97,114,101,110,116,86,78,111,100,101,41,59,41,48,60,40,49,52,38,115,46,102,108,97,103,115,41,38,38,40,115,46,100,111,109,61,100,41,59,48,60,85,46,108,101,110,103,116,104,38,38,73,40,85,41,125,101,108,115,101,32,101,46,115,116,97,116,101,61,101,46,36,80,83,44,101,46,36,80,83,61,110,117,108,108,59,95,40,110,41,38,38,110,46,99,97,108,108,40,101,41,125,125,118,97,114,32,76,101,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,116,104,105,115,46,115,116,97,116,101,61,110,117,108,108,44,116,104,105,115,46,36,66,82,61,33,49,44,116,104,105,115,46,36,66,83,61,33,48,44,116,104,105,115,46,36,80,83,83,61,33,49,44,116,104,105,115,46,36,80,83,61,110,117,108,108,44,116,104,105,115,46,36,76,73,61,110,117,108,108,44,116,104,105,115,46,36,86,61,110,117,108,108,44,116,104,105,115,46,36,85,78,61,33,49,44,116,104,105,115,46,36,67,88,61,110,117,108,108,44,116,104,105,115,46,36,85,80,68,61,33,48,44,116,104,105,115,46,36,81,85,61,110,117,108,108,44,116,104,105,115,46,112,114,111,112,115,61,101,124,124,76,44,116,104,105,115,46,99,111,110,116,101,120,116,61,116,124,124,76,125,59,76,101,46,112,114,111,116,111,116,121,112,101,46,102,111,114,99,101,85,112,100,97,116,101,61,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,36,85,78,124,124,79,101,40,116,104,105,115,44,123,125,44,101,44,33,48,41,125,44,76,101,46,112,114,111,116,111,116,121,112,101,46,115,101,116,83,116,97,116,101,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,116,104,105,115,46,36,85,78,124,124,116,104,105,115,46,36,66,83,124,124,79,101,40,116,104,105,115,44,101,44,116,44,33,49,41,125,44,76,101,46,112,114,111,116,111,116,121,112,101,46,114,101,110,100,101,114,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,125,59,118,97,114,32,85,101,61,49,50,44,77,101,61,51,55,44,69,101,61,51,56,44,70,101,61,51,57,44,73,101,61,52,48,59,118,97,114,32,65,101,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,102,40,33,40,101,32,105,110,115,116,97,110,99,101,111,102,32,116,41,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,67,97,110,110,111,116,32,99,97,108,108,32,97,32,99,108,97,115,115,32,97,115,32,97,32,102,117,110,99,116,105,111,110,34,41,125,44,86,101,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,111,40,101,44,116,41,123,102,111,114,40,118,97,114,32,110,61,48,59,110,60,116,46,108,101,110,103,116,104,59,110,43,43,41,123,118,97,114,32,111,61,116,91,110,93,59,111,46,101,110,117,109,101,114,97,98,108,101,61,111,46,101,110,117,109,101,114,97,98,108,101,124,124,33,49,44,111,46,99,111,110,102,105,103,117,114,97,98,108,101,61,33,48,44,34,118,97,108,117,101,34,105,110,32,111,38,38,40,111,46,119,114,105,116,97,98,108,101,61,33,48,41,44,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,101,44,111,46,107,101,121,44,111,41,125,125,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,114,101,116,117,114,110,32,116,38,38,111,40,101,46,112,114,111,116,111,116,121,112,101,44,116,41,44,110,38,38,111,40,101,44,110,41,44,101,125,125,40,41,44,82,101,61,79,98,106,101,99,116,46,97,115,115,105,103,110,124,124,102,117,110,99,116,105,111,110,40,101,41,123,102,111,114,40,118,97,114,32,116,61,49,59,116,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,116,43,43,41,123,118,97,114,32,110,61,97,114,103,117,109,101,110,116,115,91,116,93,59,102,111,114,40,118,97,114,32,111,32,105,110,32,110,41,79,98,106,101,99,116,46,112,114,111,116,111,116,121,112,101,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,46,99,97,108,108,40,110,44,111,41,38,38,40,101,91,111,93,61,110,91,111,93,41,125,114,101,116,117,114,110,32,101,125,44,106,101,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,102,40,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,116,38,38,110,117,108,108,33,61,61,116,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,83,117,112,101,114,32,101,120,112,114,101,115,115,105,111,110,32,109,117,115,116,32,101,105,116,104,101,114,32,98,101,32,110,117,108,108,32,111,114,32,97,32,102,117,110,99,116,105,111,110,44,32,110,111,116,32,34,43,116,121,112,101,111,102,32,116,41,59,101,46,112,114,111,116,111,116,121,112,101,61,79,98,106,101,99,116,46,99,114,101,97,116,101,40,116,38,38,116,46,112,114,111,116,111,116,121,112,101,44,123,99,111,110,115,116,114,117,99,116,111,114,58,123,118,97,108,117,101,58,101,44,101,110,117,109,101,114,97,98,108,101,58,33,49,44,119,114,105,116,97,98,108,101,58,33,48,44,99,111,110,102,105,103,117,114,97,98,108,101,58,33,48,125,125,41,44,116,38,38,40,79,98,106,101,99,116,46,115,101,116,80,114,111,116,111,116,121,112,101,79,102,63,79,98,106,101,99,116,46,115,101,116,80,114,111,116,111,116,121,112,101,79,102,40,101,44,116,41,58,101,46,95,95,112,114,111,116,111,95,95,61,116,41,125,44,66,101,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,102,40,33,101,41,116,104,114,111,119,32,110,101,119,32,82,101,102,101,114,101,110,99,101,69,114,114,111,114,40,34,116,104,105,115,32,104,97,115,110,39,116,32,98,101,101,110,32,105,110,105,116,105,97,108,105,115,101,100,32,45,32,115,117,112,101,114,40,41,32,104,97,115,110,39,116,32,98,101,101,110,32,99,97,108,108,101,100,34,41,59,114,101,116,117,114,110,33,116,124,124,34,111,98,106,101,99,116,34,33,61,116,121,112,101,111,102,32,116,38,38,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,116,63,101,58,116,125,44,87,101,61,102,117,110,99,116,105,111,110,40,101,41,123,102,117,110,99,116,105,111,110,32,116,40,41,123,114,101,116,117,114,110,32,65,101,40,116,104,105,115,44,116,41,44,66,101,40,116,104,105,115,44,40,116,46,95,95,112,114,111,116,111,95,95,124,124,79,98,106,101,99,116,46,103,101,116,80,114,111,116,111,116,121,112,101,79,102,40,116,41,41,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,41,125,114,101,116,117,114,110,32,106,101,40,116,44,76,101,41,44,86,101,40,116,44,91,123,107,101,121,58,34,99,108,105,99,107,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,116,104,105,115,44,110,61,102,117,110,99,116,105,111,110,40,41,123,116,46,112,114,111,112,115,46,110,111,100,101,46,116,111,103,103,108,101,67,104,101,99,107,40,41,125,59,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,101,109,105,116,40,34,110,111,100,101,46,99,108,105,99,107,34,44,101,44,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,44,110,41,44,101,46,116,114,101,101,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,124,124,110,40,41,125,125,44,123,107,101,121,58,34,114,101,110,100,101,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,115,40,54,52,44,34,105,110,112,117,116,34,44,110,117,108,108,44,110,117,108,108,44,49,44,123,99,104,101,99,107,101,100,58,116,104,105,115,46,112,114,111,112,115,46,99,104,101,99,107,101,100,44,105,110,100,101,116,101,114,109,105,110,97,116,101,58,116,104,105,115,46,112,114,111,112,115,46,105,110,100,101,116,101,114,109,105,110,97,116,101,44,111,110,67,108,105,99,107,58,116,104,105,115,46,99,108,105,99,107,46,98,105,110,100,40,116,104,105,115,41,44,116,121,112,101,58,34,99,104,101,99,107,98,111,120,34,125,41,125,125,93,41,44,116,125,40,41,44,72,101,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,49,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,38,38,118,111,105,100,32,48,33,61,61,97,114,103,117,109,101,110,116,115,91,49,93,63,97,114,103,117,109,101,110,116,115,91,49,93,58,34,108,105,34,44,110,61,101,46,105,116,114,101,101,91,116,93,46,97,116,116,114,105,98,117,116,101,115,44,111,61,91,93,44,114,61,110,46,99,108,97,115,115,124,124,110,46,99,108,97,115,115,78,97,109,101,59,114,101,116,117,114,110,32,108,46,105,115,70,117,110,99,116,105,111,110,40,114,41,38,38,40,114,61,114,40,101,41,41,44,108,46,105,115,69,109,112,116,121,40,114,41,124,124,40,108,46,105,115,83,116,114,105,110,103,40,114,41,63,111,61,111,46,99,111,110,99,97,116,40,114,46,115,112,108,105,116,40,47,91,92,115,92,46,93,43,47,41,41,58,108,46,105,115,65,114,114,97,121,40,114,41,38,38,40,111,61,111,46,99,111,110,99,97,116,40,114,41,41,41,44,111,125,44,113,101,61,102,117,110,99,116,105,111,110,40,101,41,123,102,117,110,99,116,105,111,110,32,116,40,41,123,114,101,116,117,114,110,32,65,101,40,116,104,105,115,44,116,41,44,66,101,40,116,104,105,115,44,40,116,46,95,95,112,114,111,116,111,95,95,124,124,79,98,106,101,99,116,46,103,101,116,80,114,111,116,111,116,121,112,101,79,102,40,116,41,41,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,41,125,114,101,116,117,114,110,32,106,101,40,116,44,76,101,41,44,86,101,40,116,44,91,123,107,101,121,58,34,115,104,111,117,108,100,67,111,109,112,111,110,101,110,116,85,112,100,97,116,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,33,49,125,125,44,123,107,101,121,58,34,97,100,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,101,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,44,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,46,97,100,100,67,104,105,108,100,40,123,116,101,120,116,58,34,78,101,119,32,78,111,100,101,34,44,105,116,114,101,101,58,123,115,116,97,116,101,58,123,101,100,105,116,105,110,103,58,33,48,44,102,111,99,117,115,101,100,58,33,48,125,125,125,41,44,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,46,101,120,112,97,110,100,40,41,125,125,44,123,107,101,121,58,34,101,100,105,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,101,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,44,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,46,116,111,103,103,108,101,69,100,105,116,105,110,103,40,41,125,125,44,123,107,101,121,58,34,114,101,109,111,118,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,101,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,44,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,46,114,101,109,111,118,101,40,41,125,125,44,123,107,101,121,58,34,114,101,110,100,101,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,91,93,59,114,101,116,117,114,110,32,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,99,111,110,102,105,103,46,101,100,105,116,105,110,103,46,101,100,105,116,38,38,101,46,112,117,115,104,40,115,40,49,44,34,97,34,44,34,98,116,110,32,105,99,111,110,32,105,99,111,110,45,112,101,110,99,105,108,34,44,110,117,108,108,44,49,44,123,111,110,99,108,105,99,107,58,116,104,105,115,46,101,100,105,116,46,98,105,110,100,40,116,104,105,115,41,44,116,105,116,108,101,58,34,69,100,105,116,32,116,104,105,115,32,110,111,100,101,34,125,41,41,44,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,99,111,110,102,105,103,46,101,100,105,116,105,110,103,46,97,100,100,38,38,101,46,112,117,115,104,40,115,40,49,44,34,97,34,44,34,98,116,110,32,105,99,111,110,32,105,99,111,110,45,112,108,117,115,34,44,110,117,108,108,44,49,44,123,111,110,99,108,105,99,107,58,116,104,105,115,46,97,100,100,46,98,105,110,100,40,116,104,105,115,41,44,116,105,116,108,101,58,34,65,100,100,32,97,32,99,104,105,108,100,32,110,111,100,101,34,125,41,41,44,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,99,111,110,102,105,103,46,101,100,105,116,105,110,103,46,114,101,109,111,118,101,38,38,101,46,112,117,115,104,40,115,40,49,44,34,97,34,44,34,98,116,110,32,105,99,111,110,32,105,99,111,110,45,109,105,110,117,115,34,44,110,117,108,108,44,49,44,123,111,110,99,108,105,99,107,58,116,104,105,115,46,114,101,109,111,118,101,46,98,105,110,100,40,116,104,105,115,41,44,116,105,116,108,101,58,34,82,101,109,111,118,101,32,116,104,105,115,32,110,111,100,101,34,125,41,41,44,115,40,49,44,34,115,112,97,110,34,44,34,98,116,110,45,103,114,111,117,112,34,44,101,44,48,41,125,125,93,41,44,116,125,40,41,44,75,101,61,102,117,110,99,116,105,111,110,40,101,41,123,102,117,110,99,116,105,111,110,32,116,40,41,123,114,101,116,117,114,110,32,65,101,40,116,104,105,115,44,116,41,44,66,101,40,116,104,105,115,44,40,116,46,95,95,112,114,111,116,111,95,95,124,124,79,98,106,101,99,116,46,103,101,116,80,114,111,116,111,116,121,112,101,79,102,40,116,41,41,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,41,125,114,101,116,117,114,110,32,106,101,40,116,44,76,101,41,44,86,101,40,116,44,91,123,107,101,121,58,34,114,101,110,100,101,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,115,40,49,44,34,111,108,34,44,110,117,108,108,44,115,40,49,44,34,108,105,34,44,34,108,101,97,102,34,44,115,40,49,44,34,115,112,97,110,34,44,34,116,105,116,108,101,32,105,99,111,110,32,105,99,111,110,45,102,105,108,101,45,101,109,112,116,121,32,101,109,112,116,121,34,44,116,104,105,115,46,112,114,111,112,115,46,116,101,120,116,44,48,41,44,50,41,44,50,41,125,125,93,41,44,116,125,40,41,59,102,117,110,99,116,105,111,110,32,88,101,40,116,44,110,41,123,118,97,114,32,111,61,110,46,100,105,114,116,121,124,124,33,49,59,114,101,116,117,114,110,32,111,124,124,108,46,101,97,99,104,40,79,98,106,101,99,116,46,107,101,121,115,40,110,41,44,102,117,110,99,116,105,111,110,40,101,41,123,105,102,40,34,100,105,114,116,121,34,33,61,61,101,38,38,110,91,101,93,33,61,61,116,91,101,93,41,114,101,116,117,114,110,33,40,111,61,33,48,41,125,41,44,111,125,118,97,114,32,81,101,61,102,117,110,99,116,105,111,110,40,101,41,123,102,117,110,99,116,105,111,110,32,110,40,101,41,123,65,101,40,116,104,105,115,44,110,41,59,118,97,114,32,116,61,66,101,40,116,104,105,115,44,40,110,46,95,95,112,114,111,116,111,95,95,124,124,79,98,106,101,99,116,46,103,101,116,80,114,111,116,111,116,121,112,101,79,102,40,110,41,41,46,99,97,108,108,40,116,104,105,115,44,101,41,41,59,114,101,116,117,114,110,32,116,46,115,116,97,116,101,61,116,46,103,101,116,83,116,97,116,101,70,114,111,109,78,111,100,101,115,40,101,46,110,111,100,101,41,44,116,125,114,101,116,117,114,110,32,106,101,40,110,44,76,101,41,44,86,101,40,110,44,91,123,107,101,121,58,34,103,101,116,83,116,97,116,101,70,114,111,109,78,111,100,101,115,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,123,116,101,120,116,58,101,46,116,101,120,116,125,125,125,44,123,107,101,121,58,34,99,111,109,112,111,110,101,110,116,87,105,108,108,82,101,99,101,105,118,101,80,114,111,112,115,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,115,101,116,83,116,97,116,101,40,116,104,105,115,46,103,101,116,83,116,97,116,101,70,114,111,109,78,111,100,101,115,40,101,46,110,111,100,101,41,41,125,125,44,123,107,101,121,58,34,115,104,111,117,108,100,67,111,109,112,111,110,101,110,116,85,112,100,97,116,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,88,101,40,116,104,105,115,46,115,116,97,116,101,44,116,41,125,125,44,123,107,101,121,58,34,99,108,105,99,107,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,116,104,105,115,44,110,61,102,117,110,99,116,105,111,110,40,41,123,116,46,112,114,111,112,115,46,110,111,100,101,46,116,111,103,103,108,101,67,104,101,99,107,40,41,125,59,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,101,109,105,116,40,34,110,111,100,101,46,99,108,105,99,107,34,44,101,44,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,44,110,41,44,101,46,116,114,101,101,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,124,124,110,40,41,125,125,44,123,107,101,121,58,34,107,101,121,112,114,101,115,115,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,105,102,40,101,46,119,104,105,99,104,61,61,61,85,101,41,114,101,116,117,114,110,32,116,104,105,115,46,115,97,118,101,40,41,125,125,44,123,107,101,121,58,34,105,110,112,117,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,115,101,116,83,116,97,116,101,40,123,116,101,120,116,58,101,46,116,97,114,103,101,116,46,118,97,108,117,101,125,41,125,125,44,123,107,101,121,58,34,99,97,110,99,101,108,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,101,38,38,101,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,44,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,46,116,111,103,103,108,101,69,100,105,116,105,110,103,40,41,125,125,44,123,107,101,121,58,34,115,97,118,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,101,38,38,101,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,59,118,97,114,32,116,61,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,46,116,101,120,116,44,110,61,116,104,105,115,46,114,101,102,46,118,97,108,117,101,59,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,46,115,101,116,40,34,116,101,120,116,34,44,110,41,44,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,46,115,116,97,116,101,40,34,101,100,105,116,105,110,103,34,44,33,49,41,44,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,46,109,97,114,107,68,105,114,116,121,40,41,44,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,97,112,112,108,121,67,104,97,110,103,101,115,40,41,44,116,33,61,61,110,38,38,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,101,109,105,116,40,34,110,111,100,101,46,101,100,105,116,101,100,34,44,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,44,116,44,110,41,125,125,44,123,107,101,121,58,34,114,101,110,100,101,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,59,114,101,116,117,114,110,32,115,40,49,44,34,102,111,114,109,34,44,110,117,108,108,44,91,115,40,54,52,44,34,105,110,112,117,116,34,44,110,117,108,108,44,110,117,108,108,44,49,44,123,111,110,67,108,105,99,107,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,125,44,111,110,73,110,112,117,116,58,116,104,105,115,46,105,110,112,117,116,46,98,105,110,100,40,116,104,105,115,41,44,111,110,75,101,121,80,114,101,115,115,58,116,104,105,115,46,107,101,121,112,114,101,115,115,46,98,105,110,100,40,116,104,105,115,41,44,118,97,108,117,101,58,116,104,105,115,46,115,116,97,116,101,46,116,101,120,116,125,44,110,117,108,108,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,46,114,101,102,61,101,125,41,44,115,40,49,44,34,115,112,97,110,34,44,34,98,116,110,45,103,114,111,117,112,34,44,91,115,40,49,44,34,98,117,116,116,111,110,34,44,34,98,116,110,32,105,99,111,110,32,105,99,111,110,45,99,104,101,99,107,34,44,110,117,108,108,44,49,44,123,111,110,67,108,105,99,107,58,116,104,105,115,46,115,97,118,101,46,98,105,110,100,40,116,104,105,115,41,44,116,105,116,108,101,58,34,83,97,118,101,34,44,116,121,112,101,58,34,98,117,116,116,111,110,34,125,41,44,115,40,49,44,34,98,117,116,116,111,110,34,44,34,98,116,110,32,105,99,111,110,32,105,99,111,110,45,99,114,111,115,115,34,44,110,117,108,108,44,49,44,123,111,110,67,108,105,99,107,58,116,104,105,115,46,99,97,110,99,101,108,46,98,105,110,100,40,116,104,105,115,41,44,116,105,116,108,101,58,34,67,97,110,99,101,108,34,44,116,121,112,101,58,34,98,117,116,116,111,110,34,125,41,93,44,52,41,93,44,52,44,123,111,110,115,117,98,109,105,116,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,125,125,41,125,125,93,41,44,110,125,40,41,44,122,101,61,102,117,110,99,116,105,111,110,40,101,41,123,102,117,110,99,116,105,111,110,32,116,40,41,123,114,101,116,117,114,110,32,65,101,40,116,104,105,115,44,116,41,44,66,101,40,116,104,105,115,44,40,116,46,95,95,112,114,111,116,111,95,95,124,124,79,98,106,101,99,116,46,103,101,116,80,114,111,116,111,116,121,112,101,79,102,40,116,41,41,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,41,125,114,101,116,117,114,110,32,106,101,40,116,44,76,101,41,44,86,101,40,116,44,91,123,107,101,121,58,34,98,108,117,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,46,98,108,117,114,40,41,125,125,44,123,107,101,121,58,34,99,108,105,99,107,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,116,104,105,115,44,101,61,116,104,105,115,46,112,114,111,112,115,44,111,61,101,46,110,111,100,101,44,114,61,101,46,100,111,109,44,105,61,102,117,110,99,116,105,111,110,40,41,123,105,102,40,116,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,33,110,46,112,114,111,112,115,46,101,100,105,116,105,110,103,41,123,105,102,40,40,116,46,109,101,116,97,75,101,121,124,124,116,46,99,116,114,108,75,101,121,124,124,116,46,115,104,105,102,116,75,101,121,41,38,38,114,46,95,116,114,101,101,46,100,105,115,97,98,108,101,68,101,115,101,108,101,99,116,105,111,110,40,41,44,116,46,115,104,105,102,116,75,101,121,41,123,114,46,99,108,101,97,114,83,101,108,101,99,116,105,111,110,40,41,59,118,97,114,32,101,61,114,46,95,116,114,101,101,46,108,97,115,116,83,101,108,101,99,116,101,100,78,111,100,101,40,41,59,101,38,38,114,46,95,116,114,101,101,46,115,101,108,101,99,116,66,101,116,119,101,101,110,46,97,112,112,108,121,40,114,46,95,116,114,101,101,44,114,46,95,116,114,101,101,46,98,111,117,110,100,105,110,103,78,111,100,101,115,40,101,44,111,41,41,125,111,46,115,101,108,101,99,116,101,100,40,41,63,114,46,95,116,114,101,101,46,99,111,110,102,105,103,46,115,101,108,101,99,116,105,111,110,46,100,105,115,97,98,108,101,68,105,114,101,99,116,68,101,115,101,108,101,99,116,105,111,110,124,124,111,46,100,101,115,101,108,101,99,116,40,41,58,111,46,115,101,108,101,99,116,40,41,44,114,46,95,116,114,101,101,46,101,110,97,98,108,101,68,101,115,101,108,101,99,116,105,111,110,40,41,125,125,59,114,46,95,116,114,101,101,46,101,109,105,116,40,34,110,111,100,101,46,99,108,105,99,107,34,44,116,44,111,44,105,41,44,116,46,116,114,101,101,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,124,124,105,40,41,125,125,44,123,107,101,121,58,34,99,111,110,116,101,120,116,77,101,110,117,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,116,104,105,115,46,112,114,111,112,115,44,110,61,116,46,110,111,100,101,59,116,46,100,111,109,46,95,116,114,101,101,46,101,109,105,116,40,34,110,111,100,101,46,99,111,110,116,101,120,116,109,101,110,117,34,44,101,44,110,41,125,125,44,123,107,101,121,58,34,100,98,108,99,108,105,99,107,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,116,104,105,115,46,112,114,111,112,115,44,110,61,116,46,110,111,100,101,44,111,61,116,46,100,111,109,44,114,61,102,117,110,99,116,105,111,110,40,41,123,111,46,99,108,101,97,114,83,101,108,101,99,116,105,111,110,40,41,44,110,46,116,111,103,103,108,101,67,111,108,108,97,112,115,101,40,41,125,59,111,46,95,116,114,101,101,46,101,109,105,116,40,34,110,111,100,101,46,100,98,108,99,108,105,99,107,34,44,101,44,110,44,114,41,44,101,46,116,114,101,101,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,124,124,114,40,41,125,125,44,123,107,101,121,58,34,102,111,99,117,115,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,46,102,111,99,117,115,40,101,41,125,125,44,123,107,101,121,58,34,109,111,117,115,101,100,111,119,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,105,115,68,114,97,103,68,114,111,112,69,110,97,98,108,101,100,38,38,40,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,105,115,77,111,117,115,101,72,101,108,100,61,33,48,41,125,125,44,123,107,101,121,58,34,114,101,110,100,101,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,44,116,61,108,46,99,108,111,110,101,40,101,46,105,116,114,101,101,46,97,46,97,116,116,114,105,98,117,116,101,115,41,124,124,123,125,59,116,46,116,97,98,105,110,100,101,120,61,49,44,116,46,117,110,115,101,108,101,99,116,97,98,108,101,61,34,111,110,34,59,118,97,114,32,110,61,72,101,40,101,44,34,97,34,41,46,99,111,110,99,97,116,40,91,34,116,105,116,108,101,34,44,34,105,99,111,110,34,93,41,59,105,102,40,33,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,99,111,110,102,105,103,46,115,104,111,119,67,104,101,99,107,98,111,120,101,115,41,123,118,97,114,32,111,61,116,104,105,115,46,112,114,111,112,115,46,101,120,112,97,110,100,101,100,63,34,105,99,111,110,45,102,111,108,100,101,114,45,111,112,101,110,34,58,34,105,99,111,110,45,102,111,108,100,101,114,34,59,110,46,112,117,115,104,40,101,46,105,116,114,101,101,46,105,99,111,110,124,124,40,116,104,105,115,46,112,114,111,112,115,46,104,97,115,79,114,87,105,108,108,72,97,118,101,67,104,105,108,100,114,101,110,63,111,58,34,105,99,111,110,45,102,105,108,101,45,101,109,112,116,121,34,41,41,125,116,46,99,108,97,115,115,61,116,46,99,108,97,115,115,78,97,109,101,61,110,46,106,111,105,110,40,34,32,34,41,59,118,97,114,32,114,61,101,46,116,101,120,116,59,114,101,116,117,114,110,32,101,46,101,100,105,116,105,110,103,40,41,38,38,40,114,61,100,40,50,44,81,101,44,123,100,111,109,58,116,104,105,115,46,112,114,111,112,115,46,100,111,109,44,110,111,100,101,58,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,125,41,41,44,99,40,115,40,49,44,34,97,34,44,110,117,108,108,44,114,44,48,44,82,101,40,123,34,100,97,116,97,45,117,105,100,34,58,101,46,105,100,44,111,110,66,108,117,114,58,116,104,105,115,46,98,108,117,114,46,98,105,110,100,40,116,104,105,115,41,44,111,110,67,108,105,99,107,58,116,104,105,115,46,99,108,105,99,107,46,98,105,110,100,40,116,104,105,115,41,44,111,110,67,111,110,116,101,120,116,77,101,110,117,58,116,104,105,115,46,99,111,110,116,101,120,116,77,101,110,117,46,98,105,110,100,40,116,104,105,115,41,44,111,110,68,98,108,67,108,105,99,107,58,116,104,105,115,46,100,98,108,99,108,105,99,107,46,98,105,110,100,40,116,104,105,115,41,44,111,110,70,111,99,117,115,58,116,104,105,115,46,102,111,99,117,115,46,98,105,110,100,40,116,104,105,115,41,44,111,110,77,111,117,115,101,68,111,119,110,58,116,104,105,115,46,109,111,117,115,101,100,111,119,110,46,98,105,110,100,40,116,104,105,115,41,125,44,116,41,41,41,125,125,93,41,44,116,125,40,41,44,71,101,61,102,117,110,99,116,105,111,110,40,101,41,123,102,117,110,99,116,105,111,110,32,116,40,41,123,114,101,116,117,114,110,32,65,101,40,116,104,105,115,44,116,41,44,66,101,40,116,104,105,115,44,40,116,46,95,95,112,114,111,116,111,95,95,124,124,79,98,106,101,99,116,46,103,101,116,80,114,111,116,111,116,121,112,101,79,102,40,116,41,41,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,41,125,114,101,116,117,114,110,32,106,101,40,116,44,76,101,41,44,86,101,40,116,44,91,123,107,101,121,58,34,99,108,97,115,115,78,97,109,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,34,116,111,103,103,108,101,32,105,99,111,110,32,34,43,40,116,104,105,115,46,112,114,111,112,115,46,99,111,108,108,97,112,115,101,100,63,34,105,99,111,110,45,101,120,112,97,110,100,34,58,34,105,99,111,110,45,99,111,108,108,97,112,115,101,34,41,125,125,44,123,107,101,121,58,34,114,101,110,100,101,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,115,40,49,44,34,97,34,44,116,104,105,115,46,99,108,97,115,115,78,97,109,101,40,41,44,110,117,108,108,44,49,44,123,111,110,67,108,105,99,107,58,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,46,116,111,103,103,108,101,67,111,108,108,97,112,115,101,46,98,105,110,100,40,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,41,125,41,125,125,93,41,44,116,125,40,41,44,89,101,61,102,117,110,99,116,105,111,110,40,101,41,123,102,117,110,99,116,105,111,110,32,110,40,101,41,123,65,101,40,116,104,105,115,44,110,41,59,118,97,114,32,116,61,66,101,40,116,104,105,115,44,40,110,46,95,95,112,114,111,116,111,95,95,124,124,79,98,106,101,99,116,46,103,101,116,80,114,111,116,111,116,121,112,101,79,102,40,110,41,41,46,99,97,108,108,40,116,104,105,115,44,101,41,41,59,114,101,116,117,114,110,32,116,46,115,116,97,116,101,61,116,46,115,116,97,116,101,70,114,111,109,78,111,100,101,40,101,46,110,111,100,101,41,44,116,125,114,101,116,117,114,110,32,106,101,40,110,44,76,101,41,44,86,101,40,110,44,91,123,107,101,121,58,34,115,116,97,116,101,70,114,111,109,78,111,100,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,123,100,105,114,116,121,58,101,46,105,116,114,101,101,46,100,105,114,116,121,125,125,125,44,123,107,101,121,58,34,99,111,109,112,111,110,101,110,116,87,105,108,108,82,101,99,101,105,118,101,80,114,111,112,115,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,115,101,116,83,116,97,116,101,40,116,104,105,115,46,115,116,97,116,101,70,114,111,109,78,111,100,101,40,101,46,110,111,100,101,41,41,125,125,44,123,107,101,121,58,34,115,104,111,117,108,100,67,111,109,112,111,110,101,110,116,85,112,100,97,116,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,116,46,100,105,114,116,121,125,125,44,123,107,101,121,58,34,103,101,116,65,116,116,114,105,98,117,116,101,115,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,44,116,61,108,46,99,108,111,110,101,40,101,46,105,116,114,101,101,46,108,105,46,97,116,116,114,105,98,117,116,101,115,41,124,124,123,125,59,114,101,116,117,114,110,32,116,46,99,108,97,115,115,61,116,46,99,108,97,115,115,78,97,109,101,61,116,104,105,115,46,103,101,116,67,108,97,115,115,78,97,109,101,115,40,41,44,116,91,34,100,97,116,97,45,117,105,100,34,93,61,101,46,105,100,44,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,99,111,110,102,105,103,46,100,114,97,103,65,110,100,68,114,111,112,46,101,110,97,98,108,101,100,38,38,40,116,46,100,114,97,103,103,97,98,108,101,61,101,46,115,116,97,116,101,40,34,100,114,97,103,103,97,98,108,101,34,41,44,116,46,111,110,68,114,97,103,69,110,100,61,116,104,105,115,46,111,110,68,114,97,103,69,110,100,46,98,105,110,100,40,116,104,105,115,41,44,116,46,111,110,68,114,97,103,69,110,116,101,114,61,116,104,105,115,46,111,110,68,114,97,103,69,110,116,101,114,46,98,105,110,100,40,116,104,105,115,41,44,116,46,111,110,68,114,97,103,76,101,97,118,101,61,116,104,105,115,46,111,110,68,114,97,103,76,101,97,118,101,46,98,105,110,100,40,116,104,105,115,41,44,116,46,111,110,68,114,97,103,83,116,97,114,116,61,116,104,105,115,46,111,110,68,114,97,103,83,116,97,114,116,46,98,105,110,100,40,116,104,105,115,41,44,101,46,115,116,97,116,101,40,34,100,114,111,112,45,116,97,114,103,101,116,34,41,63,40,116,46,111,110,68,114,97,103,79,118,101,114,61,116,104,105,115,46,111,110,68,114,97,103,79,118,101,114,46,98,105,110,100,40,116,104,105,115,41,44,116,46,111,110,68,114,111,112,61,116,104,105,115,46,111,110,68,114,111,112,46,98,105,110,100,40,116,104,105,115,41,41,58,40,116,46,111,110,68,114,97,103,79,118,101,114,61,110,117,108,108,44,116,46,111,110,68,114,111,112,61,110,117,108,108,41,41,44,116,125,125,44,123,107,101,121,58,34,103,101,116,67,108,97,115,115,78,97,109,101,115,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,44,116,61,101,46,105,116,114,101,101,46,115,116,97,116,101,44,110,61,72,101,40,101,41,59,114,101,116,117,114,110,32,108,46,101,97,99,104,40,79,98,106,101,99,116,46,107,101,121,115,40,116,41,44,102,117,110,99,116,105,111,110,40,101,41,123,116,91,101,93,38,38,110,46,112,117,115,104,40,101,41,125,41,44,33,101,46,104,105,100,100,101,110,40,41,38,38,101,46,114,101,109,111,118,101,100,40,41,38,38,110,46,112,117,115,104,40,34,104,105,100,100,101,110,34,41,44,101,46,101,120,112,97,110,100,101,100,40,41,38,38,110,46,112,117,115,104,40,34,101,120,112,97,110,100,101,100,34,41,44,110,46,112,117,115,104,40,101,46,104,97,115,79,114,87,105,108,108,72,97,118,101,67,104,105,108,100,114,101,110,40,41,63,34,102,111,108,100,101,114,34,58,34,108,101,97,102,34,41,44,110,46,106,111,105,110,40,34,32,34,41,125,125,44,123,107,101,121,58,34,103,101,116,84,97,114,103,101,116,68,105,114,101,99,116,105,111,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,61,101,46,99,108,105,101,110,116,89,44,111,61,116,46,103,101,116,66,111,117,110,100,105,110,103,67,108,105,101,110,116,82,101,99,116,40,41,44,114,61,111,46,116,111,112,43,111,46,104,101,105,103,104,116,47,51,44,105,61,111,46,98,111,116,116,111,109,45,111,46,104,101,105,103,104,116,47,51,44,97,61,48,59,114,101,116,117,114,110,32,110,60,61,114,63,97,61,45,49,58,105,60,61,110,38,38,40,97,61,49,41,44,97,125,125,44,123,107,101,121,58,34,111,110,68,114,97,103,83,116,97,114,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,101,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,44,101,46,100,97,116,97,84,114,97,110,115,102,101,114,46,101,102,102,101,99,116,65,108,108,111,119,101,100,61,34,109,111,118,101,34,44,101,46,100,97,116,97,84,114,97,110,115,102,101,114,46,100,114,111,112,69,102,102,101,99,116,61,34,109,111,118,101,34,59,118,97,114,32,110,61,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,59,105,102,40,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,97,99,116,105,118,101,68,114,97,103,78,111,100,101,61,110,44,101,46,100,97,116,97,84,114,97,110,115,102,101,114,46,115,101,116,68,97,116,97,40,34,116,114,101,101,73,100,34,44,110,46,116,114,101,101,40,41,46,105,100,41,44,101,46,100,97,116,97,84,114,97,110,115,102,101,114,46,115,101,116,68,97,116,97,40,34,110,111,100,101,73,100,34,44,110,46,105,100,41,44,110,46,115,116,97,116,101,40,34,100,114,111,112,45,116,97,114,103,101,116,34,44,33,49,41,44,110,46,104,97,115,67,104,105,108,100,114,101,110,40,41,38,38,110,46,99,104,105,108,100,114,101,110,46,115,116,97,116,101,68,101,101,112,40,34,100,114,111,112,45,116,97,114,103,101,116,34,44,33,49,41,44,34,100,114,97,103,115,116,97,114,116,34,61,61,61,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,99,111,110,102,105,103,46,100,114,97,103,65,110,100,68,114,111,112,46,118,97,108,105,100,97,116,101,79,110,41,123,118,97,114,32,111,61,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,99,111,110,102,105,103,46,100,114,97,103,65,110,100,68,114,111,112,46,118,97,108,105,100,97,116,101,44,114,61,108,46,105,115,70,117,110,99,116,105,111,110,40,111,41,59,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,98,97,116,99,104,40,41,44,102,117,110,99,116,105,111,110,32,116,40,101,44,110,41,123,105,46,105,115,84,114,101,101,78,111,100,101,115,40,101,41,63,108,46,101,97,99,104,40,101,44,102,117,110,99,116,105,111,110,40,101,41,123,116,40,101,44,110,41,125,41,58,105,46,105,115,84,114,101,101,78,111,100,101,40,101,41,38,38,33,49,33,61,61,110,40,101,41,38,38,101,46,104,97,115,67,104,105,108,100,114,101,110,40,41,38,38,116,40,101,46,99,104,105,108,100,114,101,110,44,110,41,125,40,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,109,111,100,101,108,44,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,46,105,100,33,61,61,110,46,105,100,59,114,101,116,117,114,110,32,116,38,38,40,116,61,33,101,46,104,97,115,65,110,99,101,115,116,111,114,40,110,41,41,44,116,38,38,114,38,38,40,116,61,111,40,110,44,101,41,41,44,101,46,115,116,97,116,101,40,34,100,114,111,112,45,116,97,114,103,101,116,34,44,116,41,44,116,125,41,44,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,101,110,100,40,41,125,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,101,109,105,116,40,34,110,111,100,101,46,100,114,97,103,115,116,97,114,116,34,44,101,41,125,125,44,123,107,101,121,58,34,111,110,68,114,97,103,69,110,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,101,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,101,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,44,116,104,105,115,46,117,110,104,105,103,104,108,105,103,104,116,84,97,114,103,101,116,40,41,44,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,101,109,105,116,40,34,110,111,100,101,46,100,114,97,103,101,110,100,34,44,101,41,125,125,44,123,107,101,121,58,34,111,110,68,114,97,103,69,110,116,101,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,101,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,101,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,44,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,46,114,101,99,117,114,115,101,85,112,40,116,104,105,115,46,117,110,104,105,103,104,108,105,103,104,116,84,97,114,103,101,116,41,44,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,46,115,116,97,116,101,40,34,100,114,97,103,45,116,97,114,103,101,116,105,110,103,34,44,33,48,41,44,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,101,109,105,116,40,34,110,111,100,101,46,100,114,97,103,101,110,116,101,114,34,44,101,41,125,125,44,123,107,101,121,58,34,111,110,68,114,97,103,76,101,97,118,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,101,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,101,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,44,116,104,105,115,46,117,110,104,105,103,104,108,105,103,104,116,84,97,114,103,101,116,40,41,44,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,101,109,105,116,40,34,110,111,100,101,46,100,114,97,103,108,101,97,118,101,34,44,101,41,125,125,44,123,107,101,121,58,34,111,110,68,114,97,103,79,118,101,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,101,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,101,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,59,118,97,114,32,116,61,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,97,99,116,105,118,101,68,114,97,103,78,111,100,101,44,110,61,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,44,111,61,116,104,105,115,46,103,101,116,84,97,114,103,101,116,68,105,114,101,99,116,105,111,110,40,101,44,110,46,105,116,114,101,101,46,114,101,102,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,34,97,34,41,41,59,105,102,40,34,100,114,97,103,111,118,101,114,34,61,61,61,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,99,111,110,102,105,103,46,100,114,97,103,65,110,100,68,114,111,112,46,118,97,108,105,100,97,116,101,79,110,41,123,118,97,114,32,114,61,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,99,111,110,102,105,103,46,100,114,97,103,65,110,100,68,114,111,112,46,118,97,108,105,100,97,116,101,44,105,61,108,46,105,115,70,117,110,99,116,105,111,110,40,114,41,44,97,61,116,46,105,100,33,61,61,110,46,105,100,59,105,102,40,97,38,38,40,97,61,33,110,46,104,97,115,65,110,99,101,115,116,111,114,40,116,41,41,44,97,38,38,105,38,38,40,97,61,114,40,116,44,110,44,111,41,41,44,110,46,115,116,97,116,101,40,34,100,114,111,112,45,116,97,114,103,101,116,34,44,97,41,44,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,97,112,112,108,121,67,104,97,110,103,101,115,40,41,44,33,97,41,114,101,116,117,114,110,125,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,98,97,116,99,104,40,41,44,110,46,115,116,97,116,101,40,34,100,114,97,103,45,116,97,114,103,101,116,105,110,103,34,44,33,48,41,44,110,46,115,116,97,116,101,40,34,100,114,97,103,45,116,97,114,103,101,116,105,110,103,45,97,98,111,118,101,34,44,45,49,61,61,61,111,41,44,110,46,115,116,97,116,101,40,34,100,114,97,103,45,116,97,114,103,101,116,105,110,103,45,98,101,108,111,119,34,44,49,61,61,61,111,41,44,110,46,115,116,97,116,101,40,34,100,114,97,103,45,116,97,114,103,101,116,105,110,103,45,105,110,115,101,114,116,34,44,48,61,61,61,111,41,44,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,101,110,100,40,41,44,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,101,109,105,116,40,34,110,111,100,101,46,100,114,97,103,111,118,101,114,34,44,101,44,111,41,125,125,44,123,107,101,121,58,34,111,110,68,114,111,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,101,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,101,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,44,116,104,105,115,46,117,110,104,105,103,104,108,105,103,104,116,84,97,114,103,101,116,40,41,59,118,97,114,32,116,61,101,46,100,97,116,97,84,114,97,110,115,102,101,114,46,103,101,116,68,97,116,97,40,34,116,114,101,101,73,100,34,41,44,110,61,101,46,100,97,116,97,84,114,97,110,115,102,101,114,46,103,101,116,68,97,116,97,40,34,110,111,100,101,73,100,34,41,44,111,61,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,59,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,97,99,116,105,118,101,68,114,97,103,78,111,100,101,61,110,117,108,108,59,118,97,114,32,114,61,116,104,105,115,46,103,101,116,84,97,114,103,101,116,68,105,114,101,99,116,105,111,110,40,101,44,101,46,116,97,114,103,101,116,41,44,105,61,118,111,105,100,32,48,59,116,61,61,61,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,105,100,63,105,61,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,58,116,38,38,40,105,61,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,39,91,100,97,116,97,45,117,105,100,61,34,39,43,116,43,39,34,93,39,41,46,105,110,115,112,105,114,101,84,114,101,101,41,59,118,97,114,32,97,61,118,111,105,100,32,48,44,115,61,118,111,105,100,32,48,59,105,102,40,105,41,123,118,97,114,32,108,61,105,46,110,111,100,101,40,110,41,59,108,46,115,116,97,116,101,40,34,100,114,111,112,45,116,97,114,103,101,116,34,44,33,48,41,59,118,97,114,32,100,61,108,46,114,101,109,111,118,101,40,33,48,41,44,99,61,111,46,99,111,110,116,101,120,116,40,41,46,105,110,100,101,120,79,102,40,111,41,59,48,61,61,61,114,63,40,97,61,111,46,97,100,100,67,104,105,108,100,40,100,41,44,115,61,111,46,99,104,105,108,100,114,101,110,46,105,110,100,101,120,79,102,40,97,41,44,111,46,101,120,112,97,110,100,40,41,41,58,40,115,61,49,61,61,61,114,63,43,43,99,58,99,44,97,61,111,46,99,111,110,116,101,120,116,40,41,46,105,110,115,101,114,116,65,116,40,115,44,100,41,41,125,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,101,109,105,116,40,34,110,111,100,101,46,100,114,111,112,34,44,101,44,97,44,111,44,115,41,125,125,44,123,107,101,121,58,34,117,110,104,105,103,104,108,105,103,104,116,84,97,114,103,101,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,40,101,124,124,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,41,46,115,116,97,116,101,115,40,91,34,100,114,97,103,45,116,97,114,103,101,116,105,110,103,34,44,34,100,114,97,103,45,116,97,114,103,101,116,105,110,103,45,97,98,111,118,101,34,44,34,100,114,97,103,45,116,97,114,103,101,116,105,110,103,45,98,101,108,111,119,34,44,34,100,114,97,103,45,116,97,114,103,101,116,105,110,103,45,105,110,115,101,114,116,34,93,44,33,49,41,125,125,44,123,107,101,121,58,34,114,101,110,100,101,114,67,104,101,99,107,98,111,120,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,59,105,102,40,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,99,111,110,102,105,103,46,115,104,111,119,67,104,101,99,107,98,111,120,101,115,41,114,101,116,117,114,110,32,100,40,50,44,87,101,44,123,99,104,101,99,107,101,100,58,101,46,99,104,101,99,107,101,100,40,41,44,100,111,109,58,116,104,105,115,46,112,114,111,112,115,46,100,111,109,44,105,110,100,101,116,101,114,109,105,110,97,116,101,58,101,46,105,110,100,101,116,101,114,109,105,110,97,116,101,40,41,44,110,111,100,101,58,101,125,41,125,125,44,123,107,101,121,58,34,114,101,110,100,101,114,67,104,105,108,100,114,101,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,112,114,111,112,115,44,116,61,101,46,110,111,100,101,44,110,61,101,46,100,111,109,59,105,102,40,116,46,104,97,115,67,104,105,108,100,114,101,110,40,41,41,123,118,97,114,32,111,61,116,46,99,104,105,108,100,114,101,110,44,114,61,110,46,108,111,97,100,105,110,103,44,105,61,111,46,112,97,103,105,110,97,116,105,111,110,40,41,59,114,101,116,117,114,110,32,100,40,50,44,74,101,44,123,99,111,110,116,101,120,116,58,116,44,100,111,109,58,110,44,108,105,109,105,116,58,105,46,108,105,109,105,116,44,108,111,97,100,105,110,103,58,114,44,110,111,100,101,115,58,111,44,116,111,116,97,108,58,105,46,116,111,116,97,108,125,41,125,105,102,40,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,105,115,68,121,110,97,109,105,99,38,38,116,46,99,104,105,108,100,114,101,110,41,114,101,116,117,114,110,32,116,46,104,97,115,76,111,97,100,101,100,67,104,105,108,100,114,101,110,40,41,63,100,40,50,44,75,101,44,123,116,101,120,116,58,34,78,111,32,82,101,115,117,108,116,115,34,125,41,58,100,40,50,44,75,101,44,123,116,101,120,116,58,34,76,111,97,100,105,110,103,46,46,46,34,125,41,125,125,44,123,107,101,121,58,34,114,101,110,100,101,114,69,100,105,116,84,111,111,108,98,97,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,105,102,40,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,99,111,110,102,105,103,46,101,100,105,116,105,110,103,46,101,100,105,116,38,38,33,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,46,101,100,105,116,105,110,103,40,41,41,114,101,116,117,114,110,32,100,40,50,44,113,101,44,123,100,111,109,58,116,104,105,115,46,112,114,111,112,115,46,100,111,109,44,110,111,100,101,58,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,125,41,125,125,44,123,107,101,121,58,34,114,101,110,100,101,114,84,111,103,103,108,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,59,105,102,40,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,105,115,68,121,110,97,109,105,99,63,66,111,111,108,101,97,110,40,101,46,99,104,105,108,100,114,101,110,41,58,101,46,104,97,115,86,105,115,105,98,108,101,67,104,105,108,100,114,101,110,40,41,41,114,101,116,117,114,110,32,100,40,50,44,71,101,44,123,99,111,108,108,97,112,115,101,100,58,101,46,99,111,108,108,97,112,115,101,100,40,41,44,110,111,100,101,58,101,125,41,125,125,44,123,107,101,121,58,34,114,101,110,100,101,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,44,101,61,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,44,110,61,99,40,115,40,49,44,34,108,105,34,44,110,117,108,108,44,91,116,104,105,115,46,114,101,110,100,101,114,69,100,105,116,84,111,111,108,98,97,114,40,41,44,115,40,49,44,34,100,105,118,34,44,34,116,105,116,108,101,45,119,114,97,112,34,44,91,116,104,105,115,46,114,101,110,100,101,114,84,111,103,103,108,101,40,41,44,116,104,105,115,46,114,101,110,100,101,114,67,104,101,99,107,98,111,120,40,41,44,100,40,50,44,122,101,44,123,100,111,109,58,116,104,105,115,46,112,114,111,112,115,46,100,111,109,44,101,100,105,116,105,110,103,58,101,46,101,100,105,116,105,110,103,40,41,44,101,120,112,97,110,100,101,100,58,101,46,101,120,112,97,110,100,101,100,40,41,44,104,97,115,79,114,87,105,108,108,72,97,118,101,67,104,105,108,100,114,101,110,58,101,46,104,97,115,79,114,87,105,108,108,72,97,118,101,67,104,105,108,100,114,101,110,40,41,44,110,111,100,101,58,101,44,116,101,120,116,58,101,46,116,101,120,116,125,41,93,44,48,41,44,115,40,49,44,34,100,105,118,34,44,34,119,104,111,108,101,114,111,119,34,41,44,116,104,105,115,46,114,101,110,100,101,114,67,104,105,108,100,114,101,110,40,41,93,44,48,44,82,101,40,123,125,44,116,104,105,115,46,103,101,116,65,116,116,114,105,98,117,116,101,115,40,41,41,44,110,117,108,108,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,46,110,111,100,101,61,116,46,112,114,111,112,115,46,110,111,100,101,46,105,116,114,101,101,46,114,101,102,61,101,125,41,41,59,114,101,116,117,114,110,32,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,46,115,116,97,116,101,40,34,114,101,110,100,101,114,101,100,34,44,33,48,41,44,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,46,105,116,114,101,101,46,100,105,114,116,121,61,33,49,44,110,125,125,93,41,44,110,125,40,41,44,74,101,61,102,117,110,99,116,105,111,110,40,101,41,123,102,117,110,99,116,105,111,110,32,116,40,41,123,114,101,116,117,114,110,32,65,101,40,116,104,105,115,44,116,41,44,66,101,40,116,104,105,115,44,40,116,46,95,95,112,114,111,116,111,95,95,124,124,79,98,106,101,99,116,46,103,101,116,80,114,111,116,111,116,121,112,101,79,102,40,116,41,41,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,41,125,114,101,116,117,114,110,32,106,101,40,116,44,76,101,41,44,86,101,40,116,44,91,123,107,101,121,58,34,115,104,111,117,108,100,67,111,109,112,111,110,101,110,116,85,112,100,97,116,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,108,46,102,105,110,100,40,101,46,110,111,100,101,115,44,34,105,116,114,101,101,46,100,105,114,116,121,34,41,124,124,88,101,40,116,104,105,115,46,112,114,111,112,115,44,101,41,125,125,44,123,107,101,121,58,34,105,115,68,101,102,101,114,114,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,99,111,110,102,105,103,46,100,101,102,101,114,114,101,100,82,101,110,100,101,114,105,110,103,124,124,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,99,111,110,102,105,103,46,100,101,102,101,114,114,101,100,76,111,97,100,105,110,103,125,125,44,123,107,101,121,58,34,108,111,97,100,77,111,114,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,101,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,116,104,105,115,46,112,114,111,112,115,46,99,111,110,116,101,120,116,63,116,104,105,115,46,112,114,111,112,115,46,99,111,110,116,101,120,116,46,108,111,97,100,77,111,114,101,40,101,41,58,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,108,111,97,100,77,111,114,101,40,101,41,125,125,44,123,107,101,121,58,34,114,101,110,100,101,114,76,111,97,100,77,111,114,101,78,111,100,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,115,40,49,44,34,108,105,34,44,34,108,101,97,102,32,100,101,116,97,99,104,101,100,34,44,115,40,49,44,34,97,34,44,34,116,105,116,108,101,32,105,99,111,110,32,105,99,111,110,45,109,111,114,101,32,108,111,97,100,45,109,111,114,101,34,44,36,40,34,76,111,97,100,32,77,111,114,101,34,41,44,50,44,123,111,110,67,108,105,99,107,58,116,104,105,115,46,108,111,97,100,77,111,114,101,46,98,105,110,100,40,116,104,105,115,41,125,41,44,50,41,125,125,44,123,107,101,121,58,34,114,101,110,100,101,114,76,111,97,100,105,110,103,84,101,120,116,78,111,100,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,115,40,49,44,34,108,105,34,44,34,108,101,97,102,34,44,115,40,49,44,34,115,112,97,110,34,44,34,116,105,116,108,101,32,105,99,111,110,32,105,99,111,110,45,109,111,114,101,34,44,36,40,34,76,111,97,100,105,110,103,46,46,46,34,41,44,50,41,44,50,41,125,125,44,123,107,101,121,58,34,114,101,110,100,101,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,44,101,61,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,115,44,110,61,101,46,112,97,103,105,110,97,116,105,111,110,40,41,59,105,102,40,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,99,111,110,102,105,103,46,100,101,102,101,114,114,101,100,82,101,110,100,101,114,105,110,103,41,123,118,97,114,32,111,61,48,59,101,61,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,33,40,101,46,104,105,100,100,101,110,40,41,124,124,101,46,114,101,109,111,118,101,100,40,41,41,59,114,101,116,117,114,110,32,116,38,38,111,43,43,44,111,60,61,110,46,108,105,109,105,116,38,38,116,125,41,125,118,97,114,32,114,61,108,46,109,97,112,40,101,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,100,40,50,44,89,101,44,123,100,111,109,58,116,46,112,114,111,112,115,46,100,111,109,44,110,111,100,101,58,101,125,44,101,46,105,100,41,125,41,59,114,101,116,117,114,110,32,116,104,105,115,46,105,115,68,101,102,101,114,114,101,100,40,41,38,38,110,46,108,105,109,105,116,60,110,46,116,111,116,97,108,38,38,40,116,104,105,115,46,112,114,111,112,115,46,108,111,97,100,105,110,103,63,114,46,112,117,115,104,40,116,104,105,115,46,114,101,110,100,101,114,76,111,97,100,105,110,103,84,101,120,116,78,111,100,101,40,41,41,58,114,46,112,117,115,104,40,116,104,105,115,46,114,101,110,100,101,114,76,111,97,100,77,111,114,101,78,111,100,101,40,41,41,41,44,115,40,49,44,34,111,108,34,44,110,117,108,108,44,91,114,44,116,104,105,115,46,112,114,111,112,115,46,99,104,105,108,100,114,101,110,93,44,48,41,125,125,93,41,44,116,125,40,41,44,90,101,61,102,117,110,99,116,105,111,110,40,101,41,123,102,117,110,99,116,105,111,110,32,116,40,41,123,114,101,116,117,114,110,32,65,101,40,116,104,105,115,44,116,41,44,66,101,40,116,104,105,115,44,40,116,46,95,95,112,114,111,116,111,95,95,124,124,79,98,106,101,99,116,46,103,101,116,80,114,111,116,111,116,121,112,101,79,102,40,116,41,41,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,41,125,114,101,116,117,114,110,32,106,101,40,116,44,76,101,41,44,86,101,40,116,44,91,123,107,101,121,58,34,97,100,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,102,111,99,117,115,101,100,40,41,46,98,108,117,114,40,41,44,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,97,100,100,78,111,100,101,40,123,116,101,120,116,58,34,78,101,119,32,78,111,100,101,34,44,105,116,114,101,101,58,123,115,116,97,116,101,58,123,101,100,105,116,105,110,103,58,33,48,44,102,111,99,117,115,101,100,58,33,48,125,125,125,41,125,125,44,123,107,101,121,58,34,114,101,110,100,101,114,65,100,100,76,105,110,107,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,105,102,40,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,99,111,110,102,105,103,46,101,100,105,116,105,110,103,46,97,100,100,41,114,101,116,117,114,110,32,115,40,49,44,34,108,105,34,44,110,117,108,108,44,115,40,49,44,34,97,34,44,34,98,116,110,32,105,99,111,110,32,105,99,111,110,45,112,108,117,115,34,44,110,117,108,108,44,49,44,123,111,110,67,108,105,99,107,58,116,104,105,115,46,97,100,100,46,98,105,110,100,40,116,104,105,115,41,44,116,105,116,108,101,58,34,65,100,100,32,97,32,110,101,119,32,114,111,111,116,32,110,111,100,101,34,125,41,44,50,41,125,125,44,123,107,101,121,58,34,114,101,110,100,101,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,112,114,111,112,115,44,116,61,101,46,100,111,109,44,110,61,101,46,110,111,100,101,115,44,111,61,116,46,108,111,97,100,105,110,103,44,114,61,110,46,112,97,103,105,110,97,116,105,111,110,40,41,59,114,101,116,117,114,110,32,100,40,50,44,74,101,44,123,100,111,109,58,116,44,108,105,109,105,116,58,114,46,108,105,109,105,116,44,108,111,97,100,105,110,103,58,111,44,110,111,100,101,115,58,110,44,116,111,116,97,108,58,114,46,116,111,116,97,108,44,99,104,105,108,100,114,101,110,58,116,104,105,115,46,114,101,110,100,101,114,65,100,100,76,105,110,107,40,41,125,41,125,125,93,41,44,116,125,40,41,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,115,40,101,44,116,41,123,118,97,114,32,110,61,116,104,105,115,59,105,102,40,65,101,40,116,104,105,115,44,115,41,44,33,40,101,32,105,110,115,116,97,110,99,101,111,102,32,105,41,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,84,114,101,101,32,97,114,103,117,109,101,110,116,32,105,115,32,110,111,116,32,97,110,32,73,110,115,112,105,114,101,84,114,101,101,32,105,110,115,116,97,110,99,101,46,34,41,59,105,102,40,116,104,105,115,46,95,116,114,101,101,61,101,44,116,104,105,115,46,98,97,116,99,104,105,110,103,61,48,44,116,104,105,115,46,100,114,111,112,84,97,114,103,101,116,115,61,91,93,44,116,104,105,115,46,36,115,99,114,111,108,108,76,97,121,101,114,44,33,116,46,116,97,114,103,101,116,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,73,110,118,97,108,105,100,32,96,116,97,114,103,101,116,96,32,112,114,111,112,101,114,116,121,32,45,32,109,117,115,116,32,98,101,32,97,32,115,101,108,101,99,116,111,114,44,32,72,84,77,76,69,108,101,109,101,110,116,44,32,111,114,32,106,81,117,101,114,121,32,101,108,101,109,101,110,116,46,34,41,59,118,97,114,32,111,61,123,101,110,97,98,108,101,100,58,33,40,101,46,117,115,101,115,78,97,116,105,118,101,68,79,77,61,33,48,41,44,118,97,108,105,100,97,116,101,79,110,58,34,100,114,97,103,115,116,97,114,116,34,44,118,97,108,105,100,97,116,101,58,110,117,108,108,125,59,116,104,105,115,46,99,111,110,102,105,103,61,108,46,100,101,102,97,117,108,116,115,68,101,101,112,40,123,125,44,116,44,123,97,117,116,111,76,111,97,100,77,111,114,101,58,33,48,44,100,101,102,101,114,114,101,100,82,101,110,100,101,114,105,110,103,58,33,49,44,100,114,97,103,65,110,100,68,114,111,112,58,111,44,110,111,100,101,72,101,105,103,104,116,58,50,53,44,115,104,111,119,67,104,101,99,107,98,111,120,101,115,58,33,49,44,116,97,98,105,110,100,101,120,58,45,49,44,116,97,114,103,101,116,58,33,49,125,41,44,33,48,61,61,61,116,46,100,114,97,103,65,110,100,68,114,111,112,38,38,40,116,104,105,115,46,99,111,110,102,105,103,46,100,114,97,103,65,110,100,68,114,111,112,61,111,44,116,104,105,115,46,99,111,110,102,105,103,46,100,114,97,103,65,110,100,68,114,111,112,46,101,110,97,98,108,101,100,61,33,48,41,44,34,99,104,101,99,107,98,111,120,34,33,61,61,101,46,99,111,110,102,105,103,46,115,101,108,101,99,116,105,111,110,46,109,111,100,101,124,124,108,46,105,115,66,111,111,108,101,97,110,40,108,46,103,101,116,40,116,44,34,115,104,111,119,67,104,101,99,107,98,111,120,101,115,34,41,41,124,124,40,116,104,105,115,46,99,111,110,102,105,103,46,115,104,111,119,67,104,101,99,107,98,111,120,101,115,61,33,48,41,44,116,104,105,115,46,105,115,68,121,110,97,109,105,99,61,108,46,105,115,70,117,110,99,116,105,111,110,40,116,104,105,115,46,95,116,114,101,101,46,99,111,110,102,105,103,46,100,97,116,97,41,44,116,104,105,115,46,97,116,116,97,99,104,40,116,104,105,115,46,99,111,110,102,105,103,46,116,97,114,103,101,116,41,59,118,97,114,32,114,61,33,48,59,101,46,111,110,40,34,99,104,97,110,103,101,115,46,97,112,112,108,105,101,100,34,44,102,117,110,99,116,105,111,110,40,41,123,110,46,114,101,110,100,101,114,78,111,100,101,115,40,41,44,114,38,38,40,110,46,115,99,114,111,108,108,83,101,108,101,99,116,101,100,73,110,116,111,86,105,101,119,40,41,44,114,61,33,49,41,125,41,44,116,104,105,115,46,114,101,110,100,101,114,78,111,100,101,115,40,41,125,114,101,116,117,114,110,32,86,101,40,115,44,91,123,107,101,121,58,34,97,116,116,97,99,104,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,105,102,40,116,104,105,115,46,36,116,97,114,103,101,116,61,116,104,105,115,46,103,101,116,69,108,101,109,101,110,116,40,101,41,44,116,104,105,115,46,36,115,99,114,111,108,108,76,97,121,101,114,61,116,104,105,115,46,103,101,116,83,99,114,111,108,108,97,98,108,101,65,110,99,101,115,116,111,114,40,116,104,105,115,46,36,116,97,114,103,101,116,41,44,33,116,104,105,115,46,36,116,97,114,103,101,116,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,78,111,32,118,97,108,105,100,32,101,108,101,109,101,110,116,32,116,111,32,97,116,116,97,99,104,32,116,111,46,34,41,59,116,104,105,115,46,36,116,97,114,103,101,116,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,100,97,116,97,45,117,105,100,34,44,116,104,105,115,46,95,116,114,101,101,46,105,100,41,59,118,97,114,32,110,61,116,104,105,115,46,36,116,97,114,103,101,116,46,99,108,97,115,115,78,97,109,101,46,115,112,108,105,116,40,34,32,34,41,59,105,102,40,110,46,112,117,115,104,40,34,105,110,115,112,105,114,101,45,116,114,101,101,34,41,44,116,104,105,115,46,95,116,114,101,101,46,99,111,110,102,105,103,46,101,100,105,116,97,98,108,101,38,38,40,110,46,112,117,115,104,40,34,101,100,105,116,97,98,108,101,34,41,44,108,46,101,97,99,104,40,108,46,112,105,99,107,66,121,40,116,104,105,115,46,95,116,114,101,101,46,99,111,110,102,105,103,46,101,100,105,116,105,110,103,44,108,46,105,100,101,110,116,105,116,121,41,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,110,46,112,117,115,104,40,34,101,100,105,116,97,98,108,101,45,34,43,116,41,125,41,41,44,116,104,105,115,46,36,116,97,114,103,101,116,46,99,108,97,115,115,78,97,109,101,61,110,46,106,111,105,110,40,34,32,34,41,44,116,104,105,115,46,36,116,97,114,103,101,116,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,116,97,98,105,110,100,101,120,34,44,116,104,105,115,46,99,111,110,102,105,103,46,116,97,98,105,110,100,101,120,124,124,48,41,44,116,104,105,115,46,36,116,97,114,103,101,116,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,107,101,121,100,111,119,110,34,44,116,104,105,115,46,107,101,121,98,111,97,114,100,76,105,115,116,101,110,101,114,46,98,105,110,100,40,116,104,105,115,41,41,44,116,104,105,115,46,99,111,110,102,105,103,46,100,114,97,103,65,110,100,68,114,111,112,46,101,110,97,98,108,101,100,38,38,40,116,104,105,115,46,36,116,97,114,103,101,116,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,100,114,97,103,101,110,116,101,114,34,44,116,104,105,115,46,111,110,68,114,97,103,69,110,116,101,114,46,98,105,110,100,40,116,104,105,115,41,44,33,49,41,44,116,104,105,115,46,36,116,97,114,103,101,116,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,100,114,97,103,108,101,97,118,101,34,44,116,104,105,115,46,111,110,68,114,97,103,76,101,97,118,101,46,98,105,110,100,40,116,104,105,115,41,44,33,49,41,44,116,104,105,115,46,36,116,97,114,103,101,116,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,100,114,97,103,111,118,101,114,34,44,116,104,105,115,46,111,110,68,114,97,103,79,118,101,114,46,98,105,110,100,40,116,104,105,115,41,44,33,49,41,44,116,104,105,115,46,36,116,97,114,103,101,116,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,100,114,111,112,34,44,116,104,105,115,46,111,110,68,114,111,112,46,98,105,110,100,40,116,104,105,115,41,44,33,49,41,44,116,104,105,115,46,36,116,97,114,103,101,116,46,99,108,97,115,115,76,105,115,116,46,97,100,100,40,34,100,114,97,103,45,97,110,100,45,100,114,111,112,34,41,41,44,116,104,105,115,46,95,116,114,101,101,46,111,110,40,34,110,111,100,101,46,102,111,99,117,115,101,100,34,44,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,46,105,116,114,101,101,46,114,101,102,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,34,46,116,105,116,108,101,34,41,59,116,33,61,61,100,111,99,117,109,101,110,116,46,97,99,116,105,118,101,69,108,101,109,101,110,116,38,38,116,46,102,111,99,117,115,40,41,125,41,44,116,104,105,115,46,99,111,110,102,105,103,46,100,101,102,101,114,114,101,100,82,101,110,100,101,114,105,110,103,124,124,116,104,105,115,46,95,116,114,101,101,46,99,111,110,102,105,103,46,100,101,102,101,114,114,101,100,76,111,97,100,105,110,103,41,123,118,97,114,32,116,61,116,104,105,115,46,95,116,114,101,101,46,99,111,110,102,105,103,46,112,97,103,105,110,97,116,105,111,110,46,108,105,109,105,116,59,116,104,105,115,46,95,116,114,101,101,46,99,111,110,102,105,103,46,112,97,103,105,110,97,116,105,111,110,46,108,105,109,105,116,61,48,60,116,63,116,58,108,46,99,101,105,108,40,116,104,105,115,46,36,115,99,114,111,108,108,76,97,121,101,114,46,99,108,105,101,110,116,72,101,105,103,104,116,47,116,104,105,115,46,99,111,110,102,105,103,46,110,111,100,101,72,101,105,103,104,116,41,44,116,104,105,115,46,99,111,110,102,105,103,46,97,117,116,111,76,111,97,100,77,111,114,101,38,38,116,104,105,115,46,36,116,97,114,103,101,116,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,115,99,114,111,108,108,34,44,108,46,116,104,114,111,116,116,108,101,40,116,104,105,115,46,115,99,114,111,108,108,76,105,115,116,101,110,101,114,46,98,105,110,100,40,116,104,105,115,41,44,50,48,41,41,125,116,104,105,115,46,36,116,97,114,103,101,116,46,105,110,115,112,105,114,101,84,114,101,101,61,116,104,105,115,46,95,116,114,101,101,125,125,44,123,107,101,121,58,34,99,108,101,97,114,83,101,108,101,99,116,105,111,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,100,111,99,117,109,101,110,116,46,115,101,108,101,99,116,105,111,110,38,38,100,111,99,117,109,101,110,116,46,115,101,108,101,99,116,105,111,110,46,101,109,112,116,121,63,100,111,99,117,109,101,110,116,46,115,101,108,101,99,116,105,111,110,46,101,109,112,116,121,40,41,58,119,105,110,100,111,119,46,103,101,116,83,101,108,101,99,116,105,111,110,38,38,119,105,110,100,111,119,46,103,101,116,83,101,108,101,99,116,105,111,110,40,41,46,114,101,109,111,118,101,65,108,108,82,97,110,103,101,115,40,41,125,125,44,123,107,101,121,58,34,103,101,116,69,108,101,109,101,110,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,118,111,105,100,32,48,59,105,102,40,101,32,105,110,115,116,97,110,99,101,111,102,32,72,84,77,76,69,108,101,109,101,110,116,41,116,61,101,59,101,108,115,101,32,105,102,40,108,46,105,115,79,98,106,101,99,116,40,101,41,38,38,108,46,105,115,79,98,106,101,99,116,40,101,91,48,93,41,41,116,61,101,91,48,93,59,101,108,115,101,32,105,102,40,108,46,105,115,83,116,114,105,110,103,40,101,41,41,123,118,97,114,32,110,61,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,101,41,59,110,38,38,40,116,61,110,41,125,114,101,116,117,114,110,32,116,125,125,44,123,107,101,121,58,34,103,101,116,83,99,114,111,108,108,97,98,108,101,65,110,99,101,115,116,111,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,101,32,105,110,115,116,97,110,99,101,111,102,32,69,108,101,109,101,110,116,38,38,40,34,97,117,116,111,34,33,61,61,103,101,116,67,111,109,112,117,116,101,100,83,116,121,108,101,40,101,41,46,111,118,101,114,102,108,111,119,38,38,101,46,112,97,114,101,110,116,78,111,100,101,38,38,40,101,61,116,104,105,115,46,103,101,116,83,99,114,111,108,108,97,98,108,101,65,110,99,101,115,116,111,114,40,101,46,112,97,114,101,110,116,78,111,100,101,41,41,41,59,114,101,116,117,114,110,32,101,125,125,44,123,107,101,121,58,34,107,101,121,98,111,97,114,100,76,105,115,116,101,110,101,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,105,102,40,101,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,44,33,40,91,73,101,44,85,101,44,77,101,44,70,101,44,69,101,93,46,105,110,100,101,120,79,102,40,101,46,119,104,105,99,104,41,60,48,41,41,123,118,97,114,32,116,61,116,104,105,115,46,95,116,114,101,101,46,102,111,99,117,115,101,100,40,41,59,105,102,40,116,46,108,101,110,103,116,104,41,115,119,105,116,99,104,40,101,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,101,46,119,104,105,99,104,41,123,99,97,115,101,32,73,101,58,116,104,105,115,46,109,111,118,101,70,111,99,117,115,68,111,119,110,70,114,111,109,40,116,91,48,93,41,59,98,114,101,97,107,59,99,97,115,101,32,85,101,58,116,91,48,93,46,116,111,103,103,108,101,83,101,108,101,99,116,40,41,59,98,114,101,97,107,59,99,97,115,101,32,77,101,58,116,91,48,93,46,99,111,108,108,97,112,115,101,40,41,59,98,114,101,97,107,59,99,97,115,101,32,70,101,58,116,91,48,93,46,101,120,112,97,110,100,40,41,59,98,114,101,97,107,59,99,97,115,101,32,69,101,58,116,104,105,115,46,109,111,118,101,70,111,99,117,115,85,112,70,114,111,109,40,116,91,48,93,41,125,125,125,125,44,123,107,101,121,58,34,109,111,118,101,70,111,99,117,115,68,111,119,110,70,114,111,109,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,46,110,101,120,116,86,105,115,105,98,108,101,78,111,100,101,40,41,59,116,38,38,116,46,102,111,99,117,115,40,41,125,125,44,123,107,101,121,58,34,109,111,118,101,70,111,99,117,115,85,112,70,114,111,109,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,46,112,114,101,118,105,111,117,115,86,105,115,105,98,108,101,78,111,100,101,40,41,59,116,38,38,116,46,102,111,99,117,115,40,41,125,125,44,123,107,101,121,58,34,110,111,100,101,70,114,111,109,84,105,116,108,101,68,79,77,69,108,101,109,101,110,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,46,112,97,114,101,110,116,78,111,100,101,46,112,97,114,101,110,116,78,111,100,101,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,100,97,116,97,45,117,105,100,34,41,59,114,101,116,117,114,110,32,116,104,105,115,46,95,116,114,101,101,46,110,111,100,101,40,116,41,125,125,44,123,107,101,121,58,34,111,110,68,114,97,103,69,110,116,101,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,101,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,101,46,116,97,114,103,101,116,46,99,108,97,115,115,76,105,115,116,46,97,100,100,40,34,100,114,97,103,45,116,97,114,103,101,116,105,110,103,34,44,34,100,114,97,103,45,116,97,114,103,101,116,105,110,103,45,105,110,115,101,114,116,34,41,125,125,44,123,107,101,121,58,34,111,110,68,114,97,103,76,101,97,118,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,101,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,116,104,105,115,46,117,110,104,105,103,104,108,105,103,104,116,84,97,114,103,101,116,40,101,46,116,97,114,103,101,116,41,125,125,44,123,107,101,121,58,34,111,110,68,114,97,103,79,118,101,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,101,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,125,125,44,123,107,101,121,58,34,111,110,68,114,111,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,101,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,116,104,105,115,46,117,110,104,105,103,104,108,105,103,104,116,84,97,114,103,101,116,40,101,46,116,97,114,103,101,116,41,59,118,97,114,32,116,61,101,46,100,97,116,97,84,114,97,110,115,102,101,114,46,103,101,116,68,97,116,97,40,34,116,114,101,101,73,100,34,41,44,110,61,101,46,100,97,116,97,84,114,97,110,115,102,101,114,46,103,101,116,68,97,116,97,40,34,110,111,100,101,73,100,34,41,44,111,61,115,46,103,101,116,84,114,101,101,66,121,73,100,40,116,41,46,110,111,100,101,40,110,41,59,111,46,115,116,97,116,101,40,34,100,114,111,112,45,116,97,114,103,101,116,34,44,33,48,41,59,118,97,114,32,114,61,111,46,114,101,109,111,118,101,40,33,48,41,44,105,61,116,104,105,115,46,95,116,114,101,101,46,97,100,100,78,111,100,101,40,114,41,44,97,61,116,104,105,115,46,95,116,114,101,101,46,105,110,100,101,120,79,102,40,105,41,59,116,104,105,115,46,95,116,114,101,101,46,101,109,105,116,40,34,110,111,100,101,46,100,114,111,112,34,44,101,44,105,44,110,117,108,108,44,97,41,125,125,44,123,107,101,121,58,34,114,101,110,100,101,114,78,111,100,101,115,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,40,100,40,50,44,90,101,44,123,100,111,109,58,116,104,105,115,44,110,111,100,101,115,58,101,124,124,116,104,105,115,46,95,116,114,101,101,46,110,111,100,101,115,40,41,125,41,44,116,104,105,115,46,36,116,97,114,103,101,116,41,125,125,44,123,107,101,121,58,34,115,99,114,111,108,108,76,105,115,116,101,110,101,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,114,41,123,118,97,114,32,105,61,116,104,105,115,59,105,102,40,33,116,104,105,115,46,114,101,110,100,101,114,105,110,103,38,38,33,116,104,105,115,46,108,111,97,100,105,110,103,41,123,118,97,114,32,97,61,116,104,105,115,46,36,115,99,114,111,108,108,76,97,121,101,114,46,103,101,116,66,111,117,110,100,105,110,103,67,108,105,101,110,116,82,101,99,116,40,41,44,101,61,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,34,46,108,111,97,100,45,109,111,114,101,34,41,59,108,46,101,97,99,104,40,101,44,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,46,103,101,116,66,111,117,110,100,105,110,103,67,108,105,101,110,116,82,101,99,116,40,41,59,105,102,40,33,40,97,46,114,105,103,104,116,60,116,46,108,101,102,116,124,124,97,46,108,101,102,116,62,116,46,114,105,103,104,116,124,124,97,46,98,111,116,116,111,109,60,116,46,116,111,112,124,124,97,46,116,111,112,62,116,46,98,111,116,116,111,109,41,41,123,118,97,114,32,110,61,118,111,105,100,32,48,44,111,61,101,46,112,97,114,101,110,116,78,111,100,101,46,112,97,114,101,110,116,78,111,100,101,46,112,97,114,101,110,116,78,111,100,101,59,34,76,73,34,61,61,61,111,46,116,97,103,78,97,109,101,38,38,40,110,61,105,46,95,116,114,101,101,46,110,111,100,101,40,111,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,100,97,116,97,45,117,105,100,34,41,41,41,44,105,46,95,116,114,101,101,46,108,111,97,100,77,111,114,101,40,110,44,114,41,125,125,41,125,125,125,44,123,107,101,121,58,34,115,99,114,111,108,108,83,101,108,101,99,116,101,100,73,110,116,111,86,105,101,119,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,36,116,97,114,103,101,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,34,46,115,101,108,101,99,116,101,100,34,41,59,101,38,38,116,104,105,115,46,36,115,99,114,111,108,108,76,97,121,101,114,38,38,40,116,104,105,115,46,36,115,99,114,111,108,108,76,97,121,101,114,46,115,99,114,111,108,108,84,111,112,61,101,46,111,102,102,115,101,116,84,111,112,41,125,125,44,123,107,101,121,58,34,117,110,104,105,103,104,108,105,103,104,116,84,97,114,103,101,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,101,38,38,101,46,99,108,97,115,115,76,105,115,116,46,114,101,109,111,118,101,40,34,100,114,97,103,45,116,97,114,103,101,116,105,110,103,34,44,34,100,114,97,103,45,116,97,114,103,101,116,105,110,103,45,105,110,115,101,114,116,34,41,125,125,93,44,91,123,107,101,121,58,34,103,101,116,84,114,101,101,66,121,73,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,39,91,100,97,116,97,45,117,105,100,61,34,39,43,101,43,39,34,93,39,41,59,105,102,40,116,41,114,101,116,117,114,110,32,116,46,105,110,115,112,105,114,101,84,114,101,101,125,125,93,41,44,115,125,40,41,125,41,59,59,10,10,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,79,98,106,101,99,116,46,99,114,101,97,116,101,38,38,40,79,98,106,101,99,116,46,99,114,101,97,116,101,61,102,117,110,99,116,105,111,110,40,116,41,123,102,117,110,99,116,105,111,110,32,111,40,41,123,125,114,101,116,117,114,110,32,111,46,112,114,111,116,111,116,121,112,101,61,116,44,110,101,119,32,111,125,41,44,102,117,110,99,116,105,111,110,40,116,44,111,44,105,44,115,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,118,97,114,32,110,61,123,95,112,111,115,105,116,105,111,110,67,108,97,115,115,101,115,58,91,34,98,111,116,116,111,109,45,108,101,102,116,34,44,34,98,111,116,116,111,109,45,114,105,103,104,116,34,44,34,116,111,112,45,114,105,103,104,116,34,44,34,116,111,112,45,108,101,102,116,34,44,34,98,111,116,116,111,109,45,99,101,110,116,101,114,34,44,34,116,111,112,45,99,101,110,116,101,114,34,44,34,109,105,100,45,99,101,110,116,101,114,34,93,44,95,100,101,102,97,117,108,116,73,99,111,110,115,58,91,34,115,117,99,99,101,115,115,34,44,34,101,114,114,111,114,34,44,34,105,110,102,111,34,44,34,119,97,114,110,105,110,103,34,93,44,105,110,105,116,58,102,117,110,99,116,105,111,110,40,111,44,105,41,123,116,104,105,115,46,112,114,101,112,97,114,101,79,112,116,105,111,110,115,40,111,44,116,46,116,111,97,115,116,46,111,112,116,105,111,110,115,41,44,116,104,105,115,46,112,114,111,99,101,115,115,40,41,125,44,112,114,101,112,97,114,101,79,112,116,105,111,110,115,58,102,117,110,99,116,105,111,110,40,111,44,105,41,123,118,97,114,32,115,61,123,125,59,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,111,124,124,111,32,105,110,115,116,97,110,99,101,111,102,32,65,114,114,97,121,63,115,46,116,101,120,116,61,111,58,115,61,111,44,116,104,105,115,46,111,112,116,105,111,110,115,61,116,46,101,120,116,101,110,100,40,123,125,44,105,44,115,41,125,44,112,114,111,99,101,115,115,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,115,101,116,117,112,40,41,44,116,104,105,115,46,97,100,100,84,111,68,111,109,40,41,44,116,104,105,115,46,112,111,115,105,116,105,111,110,40,41,44,116,104,105,115,46,98,105,110,100,84,111,97,115,116,40,41,44,116,104,105,115,46,97,110,105,109,97,116,101,40,41,125,44,115,101,116,117,112,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,111,61,34,34,59,105,102,40,116,104,105,115,46,95,116,111,97,115,116,69,108,61,116,104,105,115,46,95,116,111,97,115,116,69,108,124,124,116,40,34,60,100,105,118,62,60,47,100,105,118,62,34,44,123,99,108,97,115,115,58,34,106,113,45,116,111,97,115,116,45,115,105,110,103,108,101,34,125,41,44,111,43,61,39,60,115,112,97,110,32,99,108,97,115,115,61,34,106,113,45,116,111,97,115,116,45,108,111,97,100,101,114,34,62,60,47,115,112,97,110,62,39,44,116,104,105,115,46,111,112,116,105,111,110,115,46,97,108,108,111,119,84,111,97,115,116,67,108,111,115,101,38,38,40,111,43,61,39,60,115,112,97,110,32,99,108,97,115,115,61,34,99,108,111,115,101,45,106,113,45,116,111,97,115,116,45,115,105,110,103,108,101,34,62,38,116,105,109,101,115,59,60,47,115,112,97,110,62,39,41,44,116,104,105,115,46,111,112,116,105,111,110,115,46,116,101,120,116,32,105,110,115,116,97,110,99,101,111,102,32,65,114,114,97,121,41,123,116,104,105,115,46,111,112,116,105,111,110,115,46,104,101,97,100,105,110,103,38,38,40,111,43,61,39,60,104,50,32,99,108,97,115,115,61,34,106,113,45,116,111,97,115,116,45,104,101,97,100,105,110,103,34,62,39,43,116,104,105,115,46,111,112,116,105,111,110,115,46,104,101,97,100,105,110,103,43,34,60,47,104,50,62,34,41,44,111,43,61,39,60,117,108,32,99,108,97,115,115,61,34,106,113,45,116,111,97,115,116,45,117,108,34,62,39,59,102,111,114,40,118,97,114,32,105,61,48,59,105,60,116,104,105,115,46,111,112,116,105,111,110,115,46,116,101,120,116,46,108,101,110,103,116,104,59,105,43,43,41,111,43,61,39,60,108,105,32,99,108,97,115,115,61,34,106,113,45,116,111,97,115,116,45,108,105,34,32,105,100,61,34,106,113,45,116,111,97,115,116,45,105,116,101,109,45,39,43,105,43,39,34,62,39,43,116,104,105,115,46,111,112,116,105,111,110,115,46,116,101,120,116,91,105,93,43,34,60,47,108,105,62,34,59,111,43,61,34,60,47,117,108,62,34,125,101,108,115,101,32,116,104,105,115,46,111,112,116,105,111,110,115,46,104,101,97,100,105,110,103,38,38,40,111,43,61,39,60,104,50,32,99,108,97,115,115,61,34,106,113,45,116,111,97,115,116,45,104,101,97,100,105,110,103,34,62,39,43,116,104,105,115,46,111,112,116,105,111,110,115,46,104,101,97,100,105,110,103,43,34,60,47,104,50,62,34,41,44,111,43,61,116,104,105,115,46,111,112,116,105,111,110,115,46,116,101,120,116,59,116,104,105,115,46,95,116,111,97,115,116,69,108,46,104,116,109,108,40,111,41,44,33,49,33,61,61,116,104,105,115,46,111,112,116,105,111,110,115,46,98,103,67,111,108,111,114,38,38,116,104,105,115,46,95,116,111,97,115,116,69,108,46,99,115,115,40,34,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,34,44,116,104,105,115,46,111,112,116,105,111,110,115,46,98,103,67,111,108,111,114,41,44,33,49,33,61,61,116,104,105,115,46,111,112,116,105,111,110,115,46,116,101,120,116,67,111,108,111,114,38,38,116,104,105,115,46,95,116,111,97,115,116,69,108,46,99,115,115,40,34,99,111,108,111,114,34,44,116,104,105,115,46,111,112,116,105,111,110,115,46,116,101,120,116,67,111,108,111,114,41,44,116,104,105,115,46,111,112,116,105,111,110,115,46,116,101,120,116,65,108,105,103,110,38,38,116,104,105,115,46,95,116,111,97,115,116,69,108,46,99,115,115,40,34,116,101,120,116,45,97,108,105,103,110,34,44,116,104,105,115,46,111,112,116,105,111,110,115,46,116,101,120,116,65,108,105,103,110,41,44,33,49,33,61,61,116,104,105,115,46,111,112,116,105,111,110,115,46,105,99,111,110,38,38,40,116,104,105,115,46,95,116,111,97,115,116,69,108,46,97,100,100,67,108,97,115,115,40,34,106,113,45,104,97,115,45,105,99,111,110,34,41,44,45,49,33,61,61,116,46,105,110,65,114,114,97,121,40,116,104,105,115,46,111,112,116,105,111,110,115,46,105,99,111,110,44,116,104,105,115,46,95,100,101,102,97,117,108,116,73,99,111,110,115,41,38,38,116,104,105,115,46,95,116,111,97,115,116,69,108,46,97,100,100,67,108,97,115,115,40,34,106,113,45,105,99,111,110,45,34,43,116,104,105,115,46,111,112,116,105,111,110,115,46,105,99,111,110,41,41,44,33,49,33,61,61,116,104,105,115,46,111,112,116,105,111,110,115,46,99,108,97,115,115,38,38,116,104,105,115,46,95,116,111,97,115,116,69,108,46,97,100,100,67,108,97,115,115,40,116,104,105,115,46,111,112,116,105,111,110,115,46,99,108,97,115,115,41,125,44,112,111,115,105,116,105,111,110,58,102,117,110,99,116,105,111,110,40,41,123,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,116,104,105,115,46,111,112,116,105,111,110,115,46,112,111,115,105,116,105,111,110,38,38,45,49,33,61,61,116,46,105,110,65,114,114,97,121,40,116,104,105,115,46,111,112,116,105,111,110,115,46,112,111,115,105,116,105,111,110,44,116,104,105,115,46,95,112,111,115,105,116,105,111,110,67,108,97,115,115,101,115,41,63,34,98,111,116,116,111,109,45,99,101,110,116,101,114,34,61,61,61,116,104,105,115,46,111,112,116,105,111,110,115,46,112,111,115,105,116,105,111,110,63,116,104,105,115,46,95,99,111,110,116,97,105,110,101,114,46,99,115,115,40,123,108,101,102,116,58,116,40,111,41,46,111,117,116,101,114,87,105,100,116,104,40,41,47,50,45,116,104,105,115,46,95,99,111,110,116,97,105,110,101,114,46,111,117,116,101,114,87,105,100,116,104,40,41,47,50,44,98,111,116,116,111,109,58,50,48,125,41,58,34,116,111,112,45,99,101,110,116,101,114,34,61,61,61,116,104,105,115,46,111,112,116,105,111,110,115,46,112,111,115,105,116,105,111,110,63,116,104,105,115,46,95,99,111,110,116,97,105,110,101,114,46,99,115,115,40,123,108,101,102,116,58,116,40,111,41,46,111,117,116,101,114,87,105,100,116,104,40,41,47,50,45,116,104,105,115,46,95,99,111,110,116,97,105,110,101,114,46,111,117,116,101,114,87,105,100,116,104,40,41,47,50,44,116,111,112,58,50,48,125,41,58,34,109,105,100,45,99,101,110,116,101,114,34,61,61,61,116,104,105,115,46,111,112,116,105,111,110,115,46,112,111,115,105,116,105,111,110,63,116,104,105,115,46,95,99,111,110,116,97,105,110,101,114,46,99,115,115,40,123,108,101,102,116,58,116,40,111,41,46,111,117,116,101,114,87,105,100,116,104,40,41,47,50,45,116,104,105,115,46,95,99,111,110,116,97,105,110,101,114,46,111,117,116,101,114,87,105,100,116,104,40,41,47,50,44,116,111,112,58,116,40,111,41,46,111,117,116,101,114,72,101,105,103,104,116,40,41,47,50,45,116,104,105,115,46,95,99,111,110,116,97,105,110,101,114,46,111,117,116,101,114,72,101,105,103,104,116,40,41,47,50,125,41,58,116,104,105,115,46,95,99,111,110,116,97,105,110,101,114,46,97,100,100,67,108,97,115,115,40,116,104,105,115,46,111,112,116,105,111,110,115,46,112,111,115,105,116,105,111,110,41,58,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,116,104,105,115,46,111,112,116,105,111,110,115,46,112,111,115,105,116,105,111,110,63,116,104,105,115,46,95,99,111,110,116,97,105,110,101,114,46,99,115,115,40,123,116,111,112,58,116,104,105,115,46,111,112,116,105,111,110,115,46,112,111,115,105,116,105,111,110,46,116,111,112,63,116,104,105,115,46,111,112,116,105,111,110,115,46,112,111,115,105,116,105,111,110,46,116,111,112,58,34,97,117,116,111,34,44,98,111,116,116,111,109,58,116,104,105,115,46,111,112,116,105,111,110,115,46,112,111,115,105,116,105,111,110,46,98,111,116,116,111,109,63,116,104,105,115,46,111,112,116,105,111,110,115,46,112,111,115,105,116,105,111,110,46,98,111,116,116,111,109,58,34,97,117,116,111,34,44,108,101,102,116,58,116,104,105,115,46,111,112,116,105,111,110,115,46,112,111,115,105,116,105,111,110,46,108,101,102,116,63,116,104,105,115,46,111,112,116,105,111,110,115,46,112,111,115,105,116,105,111,110,46,108,101,102,116,58,34,97,117,116,111,34,44,114,105,103,104,116,58,116,104,105,115,46,111,112,116,105,111,110,115,46,112,111,115,105,116,105,111,110,46,114,105,103,104,116,63,116,104,105,115,46,111,112,116,105,111,110,115,46,112,111,115,105,116,105,111,110,46,114,105,103,104,116,58,34,97,117,116,111,34,125,41,58,116,104,105,115,46,95,99,111,110,116,97,105,110,101,114,46,97,100,100,67,108,97,115,115,40,34,98,111,116,116,111,109,45,108,101,102,116,34,41,125,44,98,105,110,100,84,111,97,115,116,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,59,116,104,105,115,46,95,116,111,97,115,116,69,108,46,111,110,40,34,97,102,116,101,114,83,104,111,119,110,34,44,102,117,110,99,116,105,111,110,40,41,123,116,46,112,114,111,99,101,115,115,76,111,97,100,101,114,40,41,125,41,44,116,104,105,115,46,95,116,111,97,115,116,69,108,46,102,105,110,100,40,34,46,99,108,111,115,101,45,106,113,45,116,111,97,115,116,45,115,105,110,103,108,101,34,41,46,111,110,40,34,99,108,105,99,107,34,44,102,117,110,99,116,105,111,110,40,111,41,123,111,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,34,102,97,100,101,34,61,61,61,116,46,111,112,116,105,111,110,115,46,115,104,111,119,72,105,100,101,84,114,97,110,115,105,116,105,111,110,63,40,116,46,95,116,111,97,115,116,69,108,46,116,114,105,103,103,101,114,40,34,98,101,102,111,114,101,72,105,100,101,34,41,44,116,46,95,116,111,97,115,116,69,108,46,102,97,100,101,79,117,116,40,102,117,110,99,116,105,111,110,40,41,123,116,46,95,116,111,97,115,116,69,108,46,116,114,105,103,103,101,114,40,34,97,102,116,101,114,72,105,100,100,101,110,34,41,125,41,41,58,34,115,108,105,100,101,34,61,61,61,116,46,111,112,116,105,111,110,115,46,115,104,111,119,72,105,100,101,84,114,97,110,115,105,116,105,111,110,63,40,116,46,95,116,111,97,115,116,69,108,46,116,114,105,103,103,101,114,40,34,98,101,102,111,114,101,72,105,100,101,34,41,44,116,46,95,116,111,97,115,116,69,108,46,115,108,105,100,101,85,112,40,102,117,110,99,116,105,111,110,40,41,123,116,46,95,116,111,97,115,116,69,108,46,116,114,105,103,103,101,114,40,34,97,102,116,101,114,72,105,100,100,101,110,34,41,125,41,41,58,40,116,46,95,116,111,97,115,116,69,108,46,116,114,105,103,103,101,114,40,34,98,101,102,111,114,101,72,105,100,101,34,41,44,116,46,95,116,111,97,115,116,69,108,46,104,105,100,101,40,102,117,110,99,116,105,111,110,40,41,123,116,46,95,116,111,97,115,116,69,108,46,116,114,105,103,103,101,114,40,34,97,102,116,101,114,72,105,100,100,101,110,34,41,125,41,41,125,41,44,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,104,105,115,46,111,112,116,105,111,110,115,46,98,101,102,111,114,101,83,104,111,119,38,38,116,104,105,115,46,95,116,111,97,115,116,69,108,46,111,110,40,34,98,101,102,111,114,101,83,104,111,119,34,44,102,117,110,99,116,105,111,110,40,41,123,116,46,111,112,116,105,111,110,115,46,98,101,102,111,114,101,83,104,111,119,40,116,46,95,116,111,97,115,116,69,108,41,125,41,44,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,104,105,115,46,111,112,116,105,111,110,115,46,97,102,116,101,114,83,104,111,119,110,38,38,116,104,105,115,46,95,116,111,97,115,116,69,108,46,111,110,40,34,97,102,116,101,114,83,104,111,119,110,34,44,102,117,110,99,116,105,111,110,40,41,123,116,46,111,112,116,105,111,110,115,46,97,102,116,101,114,83,104,111,119,110,40,116,46,95,116,111,97,115,116,69,108,41,125,41,44,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,104,105,115,46,111,112,116,105,111,110,115,46,98,101,102,111,114,101,72,105,100,101,38,38,116,104,105,115,46,95,116,111,97,115,116,69,108,46,111,110,40,34,98,101,102,111,114,101,72,105,100,101,34,44,102,117,110,99,116,105,111,110,40,41,123,116,46,111,112,116,105,111,110,115,46,98,101,102,111,114,101,72,105,100,101,40,116,46,95,116,111,97,115,116,69,108,41,125,41,44,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,104,105,115,46,111,112,116,105,111,110,115,46,97,102,116,101,114,72,105,100,100,101,110,38,38,116,104,105,115,46,95,116,111,97,115,116,69,108,46,111,110,40,34,97,102,116,101,114,72,105,100,100,101,110,34,44,102,117,110,99,116,105,111,110,40,41,123,116,46,111,112,116,105,111,110,115,46,97,102,116,101,114,72,105,100,100,101,110,40,116,46,95,116,111,97,115,116,69,108,41,125,41,44,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,104,105,115,46,111,112,116,105,111,110,115,46,111,110,67,108,105,99,107,38,38,116,104,105,115,46,95,116,111,97,115,116,69,108,46,111,110,40,34,99,108,105,99,107,34,44,102,117,110,99,116,105,111,110,40,41,123,116,46,111,112,116,105,111,110,115,46,111,110,67,108,105,99,107,40,116,46,95,116,111,97,115,116,69,108,41,125,41,125,44,97,100,100,84,111,68,111,109,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,111,61,116,40,34,46,106,113,45,116,111,97,115,116,45,119,114,97,112,34,41,59,105,102,40,48,61,61,61,111,46,108,101,110,103,116,104,63,40,111,61,116,40,34,60,100,105,118,62,60,47,100,105,118,62,34,44,123,99,108,97,115,115,58,34,106,113,45,116,111,97,115,116,45,119,114,97,112,34,44,114,111,108,101,58,34,97,108,101,114,116,34,44,34,97,114,105,97,45,108,105,118,101,34,58,34,112,111,108,105,116,101,34,125,41,44,116,40,34,98,111,100,121,34,41,46,97,112,112,101,110,100,40,111,41,41,58,116,104,105,115,46,111,112,116,105,111,110,115,46,115,116,97,99,107,38,38,33,105,115,78,97,78,40,112,97,114,115,101,73,110,116,40,116,104,105,115,46,111,112,116,105,111,110,115,46,115,116,97,99,107,44,49,48,41,41,124,124,111,46,101,109,112,116,121,40,41,44,111,46,102,105,110,100,40,34,46,106,113,45,116,111,97,115,116,45,115,105,110,103,108,101,58,104,105,100,100,101,110,34,41,46,114,101,109,111,118,101,40,41,44,111,46,97,112,112,101,110,100,40,116,104,105,115,46,95,116,111,97,115,116,69,108,41,44,116,104,105,115,46,111,112,116,105,111,110,115,46,115,116,97,99,107,38,38,33,105,115,78,97,78,40,112,97,114,115,101,73,110,116,40,116,104,105,115,46,111,112,116,105,111,110,115,46,115,116,97,99,107,41,44,49,48,41,41,123,118,97,114,32,105,61,111,46,102,105,110,100,40,34,46,106,113,45,116,111,97,115,116,45,115,105,110,103,108,101,34,41,46,108,101,110,103,116,104,45,116,104,105,115,46,111,112,116,105,111,110,115,46,115,116,97,99,107,59,105,62,48,38,38,116,40,34,46,106,113,45,116,111,97,115,116,45,119,114,97,112,34,41,46,102,105,110,100,40,34,46,106,113,45,116,111,97,115,116,45,115,105,110,103,108,101,34,41,46,115,108,105,99,101,40,48,44,105,41,46,114,101,109,111,118,101,40,41,125,116,104,105,115,46,95,99,111,110,116,97,105,110,101,114,61,111,125,44,99,97,110,65,117,116,111,72,105,100,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,33,49,33,61,61,116,104,105,115,46,111,112,116,105,111,110,115,46,104,105,100,101,65,102,116,101,114,38,38,33,105,115,78,97,78,40,112,97,114,115,101,73,110,116,40,116,104,105,115,46,111,112,116,105,111,110,115,46,104,105,100,101,65,102,116,101,114,44,49,48,41,41,125,44,112,114,111,99,101,115,115,76,111,97,100,101,114,58,102,117,110,99,116,105,111,110,40,41,123,105,102,40,33,116,104,105,115,46,99,97,110,65,117,116,111,72,105,100,101,40,41,124,124,33,49,61,61,61,116,104,105,115,46,111,112,116,105,111,110,115,46,108,111,97,100,101,114,41,114,101,116,117,114,110,33,49,59,118,97,114,32,116,61,116,104,105,115,46,95,116,111,97,115,116,69,108,46,102,105,110,100,40,34,46,106,113,45,116,111,97,115,116,45,108,111,97,100,101,114,34,41,44,111,61,40,116,104,105,115,46,111,112,116,105,111,110,115,46,104,105,100,101,65,102,116,101,114,45,52,48,48,41,47,49,101,51,43,34,115,34,44,105,61,116,104,105,115,46,111,112,116,105,111,110,115,46,108,111,97,100,101,114,66,103,44,115,61,116,46,97,116,116,114,40,34,115,116,121,108,101,34,41,124,124,34,34,59,115,61,115,46,115,117,98,115,116,114,105,110,103,40,48,44,115,46,105,110,100,101,120,79,102,40,34,45,119,101,98,107,105,116,45,116,114,97,110,115,105,116,105,111,110,34,41,41,44,115,43,61,34,45,119,101,98,107,105,116,45,116,114,97,110,115,105,116,105,111,110,58,32,119,105,100,116,104,32,34,43,111,43,34,32,101,97,115,101,45,105,110,59,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,45,111,45,116,114,97,110,115,105,116,105,111,110,58,32,119,105,100,116,104,32,34,43,111,43,34,32,101,97,115,101,45,105,110,59,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,114,97,110,115,105,116,105,111,110,58,32,119,105,100,116,104,32,34,43,111,43,34,32,101,97,115,101,45,105,110,59,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,34,43,105,43,34,59,34,44,116,46,97,116,116,114,40,34,115,116,121,108,101,34,44,115,41,46,97,100,100,67,108,97,115,115,40,34,106,113,45,116,111,97,115,116,45,108,111,97,100,101,100,34,41,125,44,97,110,105,109,97,116,101,58,102,117,110,99,116,105,111,110,40,41,123,116,61,116,104,105,115,59,105,102,40,116,104,105,115,46,95,116,111,97,115,116,69,108,46,104,105,100,101,40,41,44,116,104,105,115,46,95,116,111,97,115,116,69,108,46,116,114,105,103,103,101,114,40,34,98,101,102,111,114,101,83,104,111,119,34,41,44,34,102,97,100,101,34,61,61,61,116,104,105,115,46,111,112,116,105,111,110,115,46,115,104,111,119,72,105,100,101,84,114,97,110,115,105,116,105,111,110,46,116,111,76,111,119,101,114,67,97,115,101,40,41,63,116,104,105,115,46,95,116,111,97,115,116,69,108,46,102,97,100,101,73,110,40,102,117,110,99,116,105,111,110,40,41,123,116,46,95,116,111,97,115,116,69,108,46,116,114,105,103,103,101,114,40,34,97,102,116,101,114,83,104,111,119,110,34,41,125,41,58,34,115,108,105,100,101,34,61,61,61,116,104,105,115,46,111,112,116,105,111,110,115,46,115,104,111,119,72,105,100,101,84,114,97,110,115,105,116,105,111,110,46,116,111,76,111,119,101,114,67,97,115,101,40,41,63,116,104,105,115,46,95,116,111,97,115,116,69,108,46,115,108,105,100,101,68,111,119,110,40,102,117,110,99,116,105,111,110,40,41,123,116,46,95,116,111,97,115,116,69,108,46,116,114,105,103,103,101,114,40,34,97,102,116,101,114,83,104,111,119,110,34,41,125,41,58,116,104,105,115,46,95,116,111,97,115,116,69,108,46,115,104,111,119,40,102,117,110,99,116,105,111,110,40,41,123,116,46,95,116,111,97,115,116,69,108,46,116,114,105,103,103,101,114,40,34,97,102,116,101,114,83,104,111,119,110,34,41,125,41,44,116,104,105,115,46,99,97,110,65,117,116,111,72,105,100,101,40,41,41,123,118,97,114,32,116,61,116,104,105,115,59,111,46,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,40,41,123,34,102,97,100,101,34,61,61,61,116,46,111,112,116,105,111,110,115,46,115,104,111,119,72,105,100,101,84,114,97,110,115,105,116,105,111,110,46,116,111,76,111,119,101,114,67,97,115,101,40,41,63,40,116,46,95,116,111,97,115,116,69,108,46,116,114,105,103,103,101,114,40,34,98,101,102,111,114,101,72,105,100,101,34,41,44,116,46,95,116,111,97,115,116,69,108,46,102,97,100,101,79,117,116,40,102,117,110,99,116,105,111,110,40,41,123,116,46,95,116,111,97,115,116,69,108,46,116,114,105,103,103,101,114,40,34,97,102,116,101,114,72,105,100,100,101,110,34,41,125,41,41,58,34,115,108,105,100,101,34,61,61,61,116,46,111,112,116,105,111,110,115,46,115,104,111,119,72,105,100,101,84,114,97,110,115,105,116,105,111,110,46,116,111,76,111,119,101,114,67,97,115,101,40,41,63,40,116,46,95,116,111,97,115,116,69,108,46,116,114,105,103,103,101,114,40,34,98,101,102,111,114,101,72,105,100,101,34,41,44,116,46,95,116,111,97,115,116,69,108,46,115,108,105,100,101,85,112,40,102,117,110,99,116,105,111,110,40,41,123,116,46,95,116,111,97,115,116,69,108,46,116,114,105,103,103,101,114,40,34,97,102,116,101,114,72,105,100,100,101,110,34,41,125,41,41,58,40,116,46,95,116,111,97,115,116,69,108,46,116,114,105,103,103,101,114,40,34,98,101,102,111,114,101,72,105,100,101,34,41,44,116,46,95,116,111,97,115,116,69,108,46,104,105,100,101,40,102,117,110,99,116,105,111,110,40,41,123,116,46,95,116,111,97,115,116,69,108,46,116,114,105,103,103,101,114,40,34,97,102,116,101,114,72,105,100,100,101,110,34,41,125,41,41,125,44,116,104,105,115,46,111,112,116,105,111,110,115,46,104,105,100,101,65,102,116,101,114,41,125,125,44,114,101,115,101,116,58,102,117,110,99,116,105,111,110,40,111,41,123,34,97,108,108,34,61,61,61,111,63,116,40,34,46,106,113,45,116,111,97,115,116,45,119,114,97,112,34,41,46,114,101,109,111,118,101,40,41,58,116,104,105,115,46,95,116,111,97,115,116,69,108,46,114,101,109,111,118,101,40,41,125,44,117,112,100,97,116,101,58,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,112,114,101,112,97,114,101,79,112,116,105,111,110,115,40,116,44,116,104,105,115,46,111,112,116,105,111,110,115,41,44,116,104,105,115,46,115,101,116,117,112,40,41,44,116,104,105,115,46,98,105,110,100,84,111,97,115,116,40,41,125,44,99,108,111,115,101,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,116,111,97,115,116,69,108,46,102,105,110,100,40,34,46,99,108,111,115,101,45,106,113,45,116,111,97,115,116,45,115,105,110,103,108,101,34,41,46,99,108,105,99,107,40,41,125,125,59,116,46,116,111,97,115,116,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,111,61,79,98,106,101,99,116,46,99,114,101,97,116,101,40,110,41,59,114,101,116,117,114,110,32,111,46,105,110,105,116,40,116,44,116,104,105,115,41,44,123,114,101,115,101,116,58,102,117,110,99,116,105,111,110,40,116,41,123,111,46,114,101,115,101,116,40,116,41,125,44,117,112,100,97,116,101,58,102,117,110,99,116,105,111,110,40,116,41,123,111,46,117,112,100,97,116,101,40,116,41,125,44,99,108,111,115,101,58,102,117,110,99,116,105,111,110,40,41,123,111,46,99,108,111,115,101,40,41,125,125,125,44,116,46,116,111,97,115,116,46,111,112,116,105,111,110,115,61,123,116,101,120,116,58,34,34,44,104,101,97,100,105,110,103,58,34,34,44,115,104,111,119,72,105,100,101,84,114,97,110,115,105,116,105,111,110,58,34,102,97,100,101,34,44,97,108,108,111,119,84,111,97,115,116,67,108,111,115,101,58,33,48,44,104,105,100,101,65,102,116,101,114,58,51,101,51,44,108,111,97,100,101,114,58,33,48,44,108,111,97,100,101,114,66,103,58,34,35,57,69,67,54,48,48,34,44,115,116,97,99,107,58,53,44,112,111,115,105,116,105,111,110,58,34,98,111,116,116,111,109,45,108,101,102,116,34,44,98,103,67,111,108,111,114,58,33,49,44,116,101,120,116,67,111,108,111,114,58,33,49,44,116,101,120,116,65,108,105,103,110,58,34,108,101,102,116,34,44,105,99,111,110,58,33,49,44,98,101,102,111,114,101,83,104,111,119,58,102,117,110,99,116,105,111,110,40,41,123,125,44,97,102,116,101,114,83,104,111,119,110,58,102,117,110,99,116,105,111,110,40,41,123,125,44,98,101,102,111,114,101,72,105,100,101,58,102,117,110,99,116,105,111,110,40,41,123,125,44,97,102,116,101,114,72,105,100,100,101,110,58,102,117,110,99,116,105,111,110,40,41,123,125,44,111,110,67,108,105,99,107,58,102,117,110,99,116,105,111,110,40,41,123,125,125,125,40,106,81,117,101,114,121,44,119,105,110,100,111,119,44,100,111,99,117,109,101,110,116,41,59,10,47,47,32,74,97,118,97,83,99,114,105,112,116,32,97,117,116,111,67,111,109,112,108,101,116,101,32,118,49,46,48,46,52,10,47,47,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,80,105,120,97,98,97,121,47,74,97,118,97,83,99,114,105,112,116,45,97,117,116,111,67,111,109,112,108,101,116,101,10,118,97,114,32,97,117,116,111,67,111,109,112,108,101,116,101,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,101,40,101,41,123,102,117,110,99,116,105,111,110,32,116,40,101,44,116,41,123,114,101,116,117,114,110,32,101,46,99,108,97,115,115,76,105,115,116,63,101,46,99,108,97,115,115,76,105,115,116,46,99,111,110,116,97,105,110,115,40,116,41,58,110,101,119,32,82,101,103,69,120,112,40,34,92,92,98,34,43,116,43,34,92,92,98,34,41,46,116,101,115,116,40,101,46,99,108,97,115,115,78,97,109,101,41,125,102,117,110,99,116,105,111,110,32,111,40,101,44,116,44,111,41,123,101,46,97,116,116,97,99,104,69,118,101,110,116,63,101,46,97,116,116,97,99,104,69,118,101,110,116,40,34,111,110,34,43,116,44,111,41,58,101,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,116,44,111,41,125,102,117,110,99,116,105,111,110,32,115,40,101,44,116,44,111,41,123,101,46,100,101,116,97,99,104,69,118,101,110,116,63,101,46,100,101,116,97,99,104,69,118,101,110,116,40,34,111,110,34,43,116,44,111,41,58,101,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,40,116,44,111,41,125,102,117,110,99,116,105,111,110,32,110,40,101,44,115,44,110,44,108,41,123,111,40,108,124,124,100,111,99,117,109,101,110,116,44,115,44,102,117,110,99,116,105,111,110,40,111,41,123,102,111,114,40,118,97,114,32,115,44,108,61,111,46,116,97,114,103,101,116,124,124,111,46,115,114,99,69,108,101,109,101,110,116,59,108,38,38,33,40,115,61,116,40,108,44,101,41,41,59,41,108,61,108,46,112,97,114,101,110,116,69,108,101,109,101,110,116,59,115,38,38,110,46,99,97,108,108,40,108,44,111,41,125,41,125,105,102,40,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,41,123,118,97,114,32,108,61,123,115,101,108,101,99,116,111,114,58,48,44,115,111,117,114,99,101,58,48,44,109,105,110,67,104,97,114,115,58,51,44,100,101,108,97,121,58,49,53,48,44,111,102,102,115,101,116,76,101,102,116,58,48,44,111,102,102,115,101,116,84,111,112,58,49,44,99,97,99,104,101,58,49,44,109,101,110,117,67,108,97,115,115,58,34,34,44,114,101,110,100,101,114,73,116,101,109,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,116,61,116,46,114,101,112,108,97,99,101,40,47,91,45,92,47,92,92,94,36,42,43,63,46,40,41,124,91,92,93,123,125,93,47,103,44,34,92,92,36,38,34,41,59,118,97,114,32,111,61,110,101,119,32,82,101,103,69,120,112,40,34,40,34,43,116,46,115,112,108,105,116,40,34,32,34,41,46,106,111,105,110,40,34,124,34,41,43,34,41,34,44,34,103,105,34,41,59,114,101,116,117,114,110,39,60,100,105,118,32,99,108,97,115,115,61,34,97,117,116,111,99,111,109,112,108,101,116,101,45,115,117,103,103,101,115,116,105,111,110,34,32,100,97,116,97,45,118,97,108,61,34,39,43,101,43,39,34,62,39,43,101,46,114,101,112,108,97,99,101,40,111,44,34,60,98,62,36,49,60,47,98,62,34,41,43,34,60,47,100,105,118,62,34,125,44,111,110,83,101,108,101,99,116,58,102,117,110,99,116,105,111,110,40,41,123,125,125,59,102,111,114,40,118,97,114,32,99,32,105,110,32,101,41,101,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,99,41,38,38,40,108,91,99,93,61,101,91,99,93,41,59,102,111,114,40,118,97,114,32,97,61,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,108,46,115,101,108,101,99,116,111,114,63,91,108,46,115,101,108,101,99,116,111,114,93,58,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,108,46,115,101,108,101,99,116,111,114,41,44,117,61,48,59,117,60,97,46,108,101,110,103,116,104,59,117,43,43,41,123,118,97,114,32,105,61,97,91,117,93,59,105,46,115,99,61,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,44,105,46,115,99,46,99,108,97,115,115,78,97,109,101,61,34,97,117,116,111,99,111,109,112,108,101,116,101,45,115,117,103,103,101,115,116,105,111,110,115,32,34,43,108,46,109,101,110,117,67,108,97,115,115,44,105,46,97,117,116,111,99,111,109,112,108,101,116,101,65,116,116,114,61,105,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,97,117,116,111,99,111,109,112,108,101,116,101,34,41,44,105,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,97,117,116,111,99,111,109,112,108,101,116,101,34,44,34,111,102,102,34,41,44,105,46,99,97,99,104,101,61,123,125,44,105,46,108,97,115,116,95,118,97,108,61,34,34,44,105,46,117,112,100,97,116,101,83,67,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,111,61,105,46,103,101,116,66,111,117,110,100,105,110,103,67,108,105,101,110,116,82,101,99,116,40,41,59,105,102,40,105,46,115,99,46,115,116,121,108,101,46,108,101,102,116,61,77,97,116,104,46,114,111,117,110,100,40,111,46,108,101,102,116,43,40,119,105,110,100,111,119,46,112,97,103,101,88,79,102,102,115,101,116,124,124,100,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,46,115,99,114,111,108,108,76,101,102,116,41,43,108,46,111,102,102,115,101,116,76,101,102,116,41,43,34,112,120,34,44,105,46,115,99,46,115,116,121,108,101,46,116,111,112,61,77,97,116,104,46,114,111,117,110,100,40,111,46,98,111,116,116,111,109,43,40,119,105,110,100,111,119,46,112,97,103,101,89,79,102,102,115,101,116,124,124,100,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,46,115,99,114,111,108,108,84,111,112,41,43,108,46,111,102,102,115,101,116,84,111,112,41,43,34,112,120,34,44,105,46,115,99,46,115,116,121,108,101,46,119,105,100,116,104,61,77,97,116,104,46,114,111,117,110,100,40,111,46,114,105,103,104,116,45,111,46,108,101,102,116,41,43,34,112,120,34,44,33,101,38,38,40,105,46,115,99,46,115,116,121,108,101,46,100,105,115,112,108,97,121,61,34,98,108,111,99,107,34,44,105,46,115,99,46,109,97,120,72,101,105,103,104,116,124,124,40,105,46,115,99,46,109,97,120,72,101,105,103,104,116,61,112,97,114,115,101,73,110,116,40,40,119,105,110,100,111,119,46,103,101,116,67,111,109,112,117,116,101,100,83,116,121,108,101,63,103,101,116,67,111,109,112,117,116,101,100,83,116,121,108,101,40,105,46,115,99,44,110,117,108,108,41,58,105,46,115,99,46,99,117,114,114,101,110,116,83,116,121,108,101,41,46,109,97,120,72,101,105,103,104,116,41,41,44,105,46,115,99,46,115,117,103,103,101,115,116,105,111,110,72,101,105,103,104,116,124,124,40,105,46,115,99,46,115,117,103,103,101,115,116,105,111,110,72,101,105,103,104,116,61,105,46,115,99,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,34,46,97,117,116,111,99,111,109,112,108,101,116,101,45,115,117,103,103,101,115,116,105,111,110,34,41,46,111,102,102,115,101,116,72,101,105,103,104,116,41,44,105,46,115,99,46,115,117,103,103,101,115,116,105,111,110,72,101,105,103,104,116,41,41,105,102,40,116,41,123,118,97,114,32,115,61,105,46,115,99,46,115,99,114,111,108,108,84,111,112,44,110,61,116,46,103,101,116,66,111,117,110,100,105,110,103,67,108,105,101,110,116,82,101,99,116,40,41,46,116,111,112,45,105,46,115,99,46,103,101,116,66,111,117,110,100,105,110,103,67,108,105,101,110,116,82,101,99,116,40,41,46,116,111,112,59,110,43,105,46,115,99,46,115,117,103,103,101,115,116,105,111,110,72,101,105,103,104,116,45,105,46,115,99,46,109,97,120,72,101,105,103,104,116,62,48,63,105,46,115,99,46,115,99,114,111,108,108,84,111,112,61,110,43,105,46,115,99,46,115,117,103,103,101,115,116,105,111,110,72,101,105,103,104,116,43,115,45,105,46,115,99,46,109,97,120,72,101,105,103,104,116,58,48,62,110,38,38,40,105,46,115,99,46,115,99,114,111,108,108,84,111,112,61,110,43,115,41,125,101,108,115,101,32,105,46,115,99,46,115,99,114,111,108,108,84,111,112,61,48,125,44,111,40,119,105,110,100,111,119,44,34,114,101,115,105,122,101,34,44,105,46,117,112,100,97,116,101,83,67,41,44,100,111,99,117,109,101,110,116,46,98,111,100,121,46,97,112,112,101,110,100,67,104,105,108,100,40,105,46,115,99,41,44,110,40,34,97,117,116,111,99,111,109,112,108,101,116,101,45,115,117,103,103,101,115,116,105,111,110,34,44,34,109,111,117,115,101,108,101,97,118,101,34,44,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,105,46,115,99,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,34,46,97,117,116,111,99,111,109,112,108,101,116,101,45,115,117,103,103,101,115,116,105,111,110,46,115,101,108,101,99,116,101,100,34,41,59,101,38,38,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,40,41,123,101,46,99,108,97,115,115,78,97,109,101,61,101,46,99,108,97,115,115,78,97,109,101,46,114,101,112,108,97,99,101,40,34,115,101,108,101,99,116,101,100,34,44,34,34,41,125,44,50,48,41,125,44,105,46,115,99,41,44,110,40,34,97,117,116,111,99,111,109,112,108,101,116,101,45,115,117,103,103,101,115,116,105,111,110,34,44,34,109,111,117,115,101,111,118,101,114,34,44,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,105,46,115,99,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,34,46,97,117,116,111,99,111,109,112,108,101,116,101,45,115,117,103,103,101,115,116,105,111,110,46,115,101,108,101,99,116,101,100,34,41,59,101,38,38,40,101,46,99,108,97,115,115,78,97,109,101,61,101,46,99,108,97,115,115,78,97,109,101,46,114,101,112,108,97,99,101,40,34,115,101,108,101,99,116,101,100,34,44,34,34,41,41,44,116,104,105,115,46,99,108,97,115,115,78,97,109,101,43,61,34,32,115,101,108,101,99,116,101,100,34,125,44,105,46,115,99,41,44,110,40,34,97,117,116,111,99,111,109,112,108,101,116,101,45,115,117,103,103,101,115,116,105,111,110,34,44,34,109,111,117,115,101,100,111,119,110,34,44,102,117,110,99,116,105,111,110,40,101,41,123,105,102,40,116,40,116,104,105,115,44,34,97,117,116,111,99,111,109,112,108,101,116,101,45,115,117,103,103,101,115,116,105,111,110,34,41,41,123,118,97,114,32,111,61,116,104,105,115,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,100,97,116,97,45,118,97,108,34,41,59,105,46,118,97,108,117,101,61,111,44,108,46,111,110,83,101,108,101,99,116,40,101,44,111,44,116,104,105,115,41,44,105,46,115,99,46,115,116,121,108,101,46,100,105,115,112,108,97,121,61,34,110,111,110,101,34,125,125,44,105,46,115,99,41,44,105,46,98,108,117,114,72,97,110,100,108,101,114,61,102,117,110,99,116,105,111,110,40,41,123,116,114,121,123,118,97,114,32,101,61,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,34,46,97,117,116,111,99,111,109,112,108,101,116,101,45,115,117,103,103,101,115,116,105,111,110,115,58,104,111,118,101,114,34,41,125,99,97,116,99,104,40,116,41,123,118,97,114,32,101,61,48,125,101,63,105,33,61,61,100,111,99,117,109,101,110,116,46,97,99,116,105,118,101,69,108,101,109,101,110,116,38,38,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,40,41,123,105,46,102,111,99,117,115,40,41,125,44,50,48,41,58,40,105,46,108,97,115,116,95,118,97,108,61,105,46,118,97,108,117,101,44,105,46,115,99,46,115,116,121,108,101,46,100,105,115,112,108,97,121,61,34,110,111,110,101,34,44,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,40,41,123,105,46,115,99,46,115,116,121,108,101,46,100,105,115,112,108,97,121,61,34,110,111,110,101,34,125,44,51,53,48,41,41,125,44,111,40,105,44,34,98,108,117,114,34,44,105,46,98,108,117,114,72,97,110,100,108,101,114,41,59,118,97,114,32,114,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,105,46,118,97,108,117,101,59,105,102,40,105,46,99,97,99,104,101,91,116,93,61,101,44,101,46,108,101,110,103,116,104,38,38,116,46,108,101,110,103,116,104,62,61,108,46,109,105,110,67,104,97,114,115,41,123,102,111,114,40,118,97,114,32,111,61,34,34,44,115,61,48,59,115,60,101,46,108,101,110,103,116,104,59,115,43,43,41,111,43,61,108,46,114,101,110,100,101,114,73,116,101,109,40,101,91,115,93,44,116,41,59,105,46,115,99,46,105,110,110,101,114,72,84,77,76,61,111,44,105,46,117,112,100,97,116,101,83,67,40,48,41,125,101,108,115,101,32,105,46,115,99,46,115,116,121,108,101,46,100,105,115,112,108,97,121,61,34,110,111,110,101,34,125,59,105,46,107,101,121,100,111,119,110,72,97,110,100,108,101,114,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,119,105,110,100,111,119,46,101,118,101,110,116,63,101,46,107,101,121,67,111,100,101,58,101,46,119,104,105,99,104,59,105,102,40,40,52,48,61,61,116,124,124,51,56,61,61,116,41,38,38,105,46,115,99,46,105,110,110,101,114,72,84,77,76,41,123,118,97,114,32,111,44,115,61,105,46,115,99,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,34,46,97,117,116,111,99,111,109,112,108,101,116,101,45,115,117,103,103,101,115,116,105,111,110,46,115,101,108,101,99,116,101,100,34,41,59,114,101,116,117,114,110,32,115,63,40,111,61,52,48,61,61,116,63,115,46,110,101,120,116,83,105,98,108,105,110,103,58,115,46,112,114,101,118,105,111,117,115,83,105,98,108,105,110,103,44,111,63,40,115,46,99,108,97,115,115,78,97,109,101,61,115,46,99,108,97,115,115,78,97,109,101,46,114,101,112,108,97,99,101,40,34,115,101,108,101,99,116,101,100,34,44,34,34,41,44,111,46,99,108,97,115,115,78,97,109,101,43,61,34,32,115,101,108,101,99,116,101,100,34,44,105,46,118,97,108,117,101,61,111,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,100,97,116,97,45,118,97,108,34,41,41,58,40,115,46,99,108,97,115,115,78,97,109,101,61,115,46,99,108,97,115,115,78,97,109,101,46,114,101,112,108,97,99,101,40,34,115,101,108,101,99,116,101,100,34,44,34,34,41,44,105,46,118,97,108,117,101,61,105,46,108,97,115,116,95,118,97,108,44,111,61,48,41,41,58,40,111,61,52,48,61,61,116,63,105,46,115,99,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,34,46,97,117,116,111,99,111,109,112,108,101,116,101,45,115,117,103,103,101,115,116,105,111,110,34,41,58,105,46,115,99,46,99,104,105,108,100,78,111,100,101,115,91,105,46,115,99,46,99,104,105,108,100,78,111,100,101,115,46,108,101,110,103,116,104,45,49,93,44,111,46,99,108,97,115,115,78,97,109,101,43,61,34,32,115,101,108,101,99,116,101,100,34,44,105,46,118,97,108,117,101,61,111,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,100,97,116,97,45,118,97,108,34,41,41,44,105,46,117,112,100,97,116,101,83,67,40,48,44,111,41,44,33,49,125,105,102,40,50,55,61,61,116,41,105,46,118,97,108,117,101,61,105,46,108,97,115,116,95,118,97,108,44,105,46,115,99,46,115,116,121,108,101,46,100,105,115,112,108,97,121,61,34,110,111,110,101,34,59,101,108,115,101,32,105,102,40,49,51,61,61,116,124,124,57,61,61,116,41,123,118,97,114,32,115,61,105,46,115,99,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,34,46,97,117,116,111,99,111,109,112,108,101,116,101,45,115,117,103,103,101,115,116,105,111,110,46,115,101,108,101,99,116,101,100,34,41,59,115,38,38,34,110,111,110,101,34,33,61,105,46,115,99,46,115,116,121,108,101,46,100,105,115,112,108,97,121,38,38,40,108,46,111,110,83,101,108,101,99,116,40,101,44,115,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,100,97,116,97,45,118,97,108,34,41,44,115,41,44,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,40,41,123,105,46,115,99,46,115,116,121,108,101,46,100,105,115,112,108,97,121,61,34,110,111,110,101,34,125,44,50,48,41,41,125,125,44,111,40,105,44,34,107,101,121,100,111,119,110,34,44,105,46,107,101,121,100,111,119,110,72,97,110,100,108,101,114,41,44,105,46,107,101,121,117,112,72,97,110,100,108,101,114,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,119,105,110,100,111,119,46,101,118,101,110,116,63,101,46,107,101,121,67,111,100,101,58,101,46,119,104,105,99,104,59,105,102,40,33,116,124,124,40,51,53,62,116,124,124,116,62,52,48,41,38,38,49,51,33,61,116,38,38,50,55,33,61,116,41,123,118,97,114,32,111,61,105,46,118,97,108,117,101,59,105,102,40,111,46,108,101,110,103,116,104,62,61,108,46,109,105,110,67,104,97,114,115,41,123,105,102,40,111,33,61,105,46,108,97,115,116,95,118,97,108,41,123,105,102,40,105,46,108,97,115,116,95,118,97,108,61,111,44,99,108,101,97,114,84,105,109,101,111,117,116,40,105,46,116,105,109,101,114,41,44,108,46,99,97,99,104,101,41,123,105,102,40,111,32,105,110,32,105,46,99,97,99,104,101,41,114,101,116,117,114,110,32,118,111,105,100,32,114,40,105,46,99,97,99,104,101,91,111,93,41,59,102,111,114,40,118,97,114,32,115,61,49,59,115,60,111,46,108,101,110,103,116,104,45,108,46,109,105,110,67,104,97,114,115,59,115,43,43,41,123,118,97,114,32,110,61,111,46,115,108,105,99,101,40,48,44,111,46,108,101,110,103,116,104,45,115,41,59,105,102,40,110,32,105,110,32,105,46,99,97,99,104,101,38,38,33,105,46,99,97,99,104,101,91,110,93,46,108,101,110,103,116,104,41,114,101,116,117,114,110,32,118,111,105,100,32,114,40,91,93,41,125,125,105,46,116,105,109,101,114,61,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,40,41,123,108,46,115,111,117,114,99,101,40,111,44,114,41,125,44,108,46,100,101,108,97,121,41,125,125,101,108,115,101,32,105,46,108,97,115,116,95,118,97,108,61,111,44,105,46,115,99,46,115,116,121,108,101,46,100,105,115,112,108,97,121,61,34,110,111,110,101,34,125,125,44,111,40,105,44,34,107,101,121,117,112,34,44,105,46,107,101,121,117,112,72,97,110,100,108,101,114,41,44,105,46,102,111,99,117,115,72,97,110,100,108,101,114,61,102,117,110,99,116,105,111,110,40,101,41,123,105,46,108,97,115,116,95,118,97,108,61,34,92,110,34,44,105,46,107,101,121,117,112,72,97,110,100,108,101,114,40,101,41,125,44,108,46,109,105,110,67,104,97,114,115,124,124,111,40,105,44,34,102,111,99,117,115,34,44,105,46,102,111,99,117,115,72,97,110,100,108,101,114,41,125,116,104,105,115,46,100,101,115,116,114,111,121,61,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,118,97,114,32,101,61,48,59,101,60,97,46,108,101,110,103,116,104,59,101,43,43,41,123,118,97,114,32,116,61,97,91,101,93,59,115,40,119,105,110,100,111,119,44,34,114,101,115,105,122,101,34,44,116,46,117,112,100,97,116,101,83,67,41,44,115,40,116,44,34,98,108,117,114,34,44,116,46,98,108,117,114,72,97,110,100,108,101,114,41,44,115,40,116,44,34,102,111,99,117,115,34,44,116,46,102,111,99,117,115,72,97,110,100,108,101,114,41,44,115,40,116,44,34,107,101,121,100,111,119,110,34,44,116,46,107,101,121,100,111,119,110,72,97,110,100,108,101,114,41,44,115,40,116,44,34,107,101,121,117,112,34,44,116,46,107,101,121,117,112,72,97,110,100,108,101,114,41,44,116,46,97,117,116,111,99,111,109,112,108,101,116,101,65,116,116,114,63,116,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,97,117,116,111,99,111,109,112,108,101,116,101,34,44,116,46,97,117,116,111,99,111,109,112,108,101,116,101,65,116,116,114,41,58,116,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,40,34,97,117,116,111,99,111,109,112,108,101,116,101,34,41,44,100,111,99,117,109,101,110,116,46,98,111,100,121,46,114,101,109,111,118,101,67,104,105,108,100,40,116,46,115,99,41,44,116,61,110,117,108,108,125,125,125,125,114,101,116,117,114,110,32,101,125,40,41,59,33,102,117,110,99,116,105,111,110,40,41,123,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,100,101,102,105,110,101,38,38,100,101,102,105,110,101,46,97,109,100,63,100,101,102,105,110,101,40,34,97,117,116,111,67,111,109,112,108,101,116,101,34,44,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,97,117,116,111,67,111,109,112,108,101,116,101,125,41,58,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,109,111,100,117,108,101,38,38,109,111,100,117,108,101,46,101,120,112,111,114,116,115,63,109,111,100,117,108,101,46,101,120,112,111,114,116,115,61,97,117,116,111,67,111,109,112,108,101,116,101,58,119,105,110,100,111,119,46,97,117,116,111,67,111,109,112,108,101,116,101,61,97,117,116,111,67,111,109,112,108,101,116,101,125,40,41,59,47,42,33,10,32,42,32,66,111,111,116,115,116,114,97,112,32,67,111,108,111,114,112,105,99,107,101,114,32,45,32,66,111,111,116,115,116,114,97,112,32,67,111,108,111,114,112,105,99,107,101,114,32,105,115,32,97,32,109,111,100,117,108,97,114,32,99,111,108,111,114,32,112,105,99,107,101,114,32,112,108,117,103,105,110,32,102,111,114,32,66,111,111,116,115,116,114,97,112,32,52,46,10,32,42,32,64,112,97,99,107,97,103,101,32,98,111,111,116,115,116,114,97,112,45,99,111,108,111,114,112,105,99,107,101,114,10,32,42,32,64,118,101,114,115,105,111,110,32,118,51,46,49,46,50,10,32,42,32,64,108,105,99,101,110,115,101,32,77,73,84,10,32,42,32,64,108,105,110,107,32,104,116,116,112,115,58,47,47,102,97,114,98,101,108,111,117,115,46,103,105,116,104,117,98,46,105,111,47,98,111,111,116,115,116,114,97,112,45,99,111,108,111,114,112,105,99,107,101,114,47,10,32,42,32,64,108,105,110,107,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,102,97,114,98,101,108,111,117,115,47,98,111,111,116,115,116,114,97,112,45,99,111,108,111,114,112,105,99,107,101,114,46,103,105,116,10,32,42,47,10,33,102,117,110,99,116,105,111,110,40,101,44,116,41,123,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,101,120,112,111,114,116,115,38,38,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,109,111,100,117,108,101,63,109,111,100,117,108,101,46,101,120,112,111,114,116,115,61,116,40,114,101,113,117,105,114,101,40,34,106,113,117,101,114,121,34,41,41,58,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,100,101,102,105,110,101,38,38,100,101,102,105,110,101,46,97,109,100,63,100,101,102,105,110,101,40,34,98,111,111,116,115,116,114,97,112,45,99,111,108,111,114,112,105,99,107,101,114,34,44,91,34,106,113,117,101,114,121,34,93,44,116,41,58,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,101,120,112,111,114,116,115,63,101,120,112,111,114,116,115,91,34,98,111,111,116,115,116,114,97,112,45,99,111,108,111,114,112,105,99,107,101,114,34,93,61,116,40,114,101,113,117,105,114,101,40,34,106,113,117,101,114,121,34,41,41,58,101,91,34,98,111,111,116,115,116,114,97,112,45,99,111,108,111,114,112,105,99,107,101,114,34,93,61,116,40,101,46,106,81,117,101,114,121,41,125,40,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,115,101,108,102,63,115,101,108,102,58,116,104,105,115,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,101,41,123,102,117,110,99,116,105,111,110,32,116,40,114,41,123,105,102,40,111,91,114,93,41,114,101,116,117,114,110,32,111,91,114,93,46,101,120,112,111,114,116,115,59,118,97,114,32,110,61,111,91,114,93,61,123,105,58,114,44,108,58,33,49,44,101,120,112,111,114,116,115,58,123,125,125,59,114,101,116,117,114,110,32,101,91,114,93,46,99,97,108,108,40,110,46,101,120,112,111,114,116,115,44,110,44,110,46,101,120,112,111,114,116,115,44,116,41,44,110,46,108,61,33,48,44,110,46,101,120,112,111,114,116,115,125,118,97,114,32,111,61,123,125,59,114,101,116,117,114,110,32,116,46,109,61,101,44,116,46,99,61,111,44,116,46,100,61,102,117,110,99,116,105,111,110,40,101,44,111,44,114,41,123,116,46,111,40,101,44,111,41,124,124,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,101,44,111,44,123,99,111,110,102,105,103,117,114,97,98,108,101,58,33,49,44,101,110,117,109,101,114,97,98,108,101,58,33,48,44,103,101,116,58,114,125,41,125,44,116,46,110,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,111,61,101,38,38,101,46,95,95,101,115,77,111,100,117,108,101,63,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,101,46,100,101,102,97,117,108,116,125,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,101,125,59,114,101,116,117,114,110,32,116,46,100,40,111,44,34,97,34,44,111,41,44,111,125,44,116,46,111,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,79,98,106,101,99,116,46,112,114,111,116,111,116,121,112,101,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,46,99,97,108,108,40,101,44,116,41,125,44,116,46,112,61,34,34,44,116,40,116,46,115,61,55,41,125,40,91,102,117,110,99,116,105,111,110,40,116,44,111,41,123,116,46,101,120,112,111,114,116,115,61,101,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,111,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,102,117,110,99,116,105,111,110,32,114,40,101,44,116,41,123,105,102,40,33,40,101,32,105,110,115,116,97,110,99,101,111,102,32,116,41,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,67,97,110,110,111,116,32,99,97,108,108,32,97,32,99,108,97,115,115,32,97,115,32,97,32,102,117,110,99,116,105,111,110,34,41,125,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,44,34,95,95,101,115,77,111,100,117,108,101,34,44,123,118,97,108,117,101,58,33,48,125,41,59,118,97,114,32,110,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,101,40,101,44,116,41,123,102,111,114,40,118,97,114,32,111,61,48,59,111,60,116,46,108,101,110,103,116,104,59,111,43,43,41,123,118,97,114,32,114,61,116,91,111,93,59,114,46,101,110,117,109,101,114,97,98,108,101,61,114,46,101,110,117,109,101,114,97,98,108,101,124,124,33,49,44,114,46,99,111,110,102,105,103,117,114,97,98,108,101,61,33,48,44,34,118,97,108,117,101,34,105,110,32,114,38,38,40,114,46,119,114,105,116,97,98,108,101,61,33,48,41,44,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,101,44,114,46,107,101,121,44,114,41,125,125,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,44,111,44,114,41,123,114,101,116,117,114,110,32,111,38,38,101,40,116,46,112,114,111,116,111,116,121,112,101,44,111,41,44,114,38,38,101,40,116,44,114,41,44,116,125,125,40,41,44,105,61,111,40,48,41,44,97,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,38,38,101,46,95,95,101,115,77,111,100,117,108,101,63,101,58,123,100,101,102,97,117,108,116,58,101,125,125,40,105,41,44,108,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,101,40,116,41,123,118,97,114,32,111,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,62,49,38,38,118,111,105,100,32,48,33,61,61,97,114,103,117,109,101,110,116,115,91,49,93,63,97,114,103,117,109,101,110,116,115,91,49,93,58,123,125,59,105,102,40,114,40,116,104,105,115,44,101,41,44,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,61,116,44,116,104,105,115,46,111,112,116,105,111,110,115,61,111,44,33,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,101,108,101,109,101,110,116,124,124,33,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,101,108,101,109,101,110,116,46,108,101,110,103,116,104,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,69,120,116,101,110,115,105,111,110,58,32,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,101,108,101,109,101,110,116,32,105,115,32,110,111,116,32,118,97,108,105,100,34,41,59,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,101,108,101,109,101,110,116,46,111,110,40,34,99,111,108,111,114,112,105,99,107,101,114,67,114,101,97,116,101,46,99,111,108,111,114,112,105,99,107,101,114,45,101,120,116,34,44,97,46,100,101,102,97,117,108,116,46,112,114,111,120,121,40,116,104,105,115,46,111,110,67,114,101,97,116,101,44,116,104,105,115,41,41,44,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,101,108,101,109,101,110,116,46,111,110,40,34,99,111,108,111,114,112,105,99,107,101,114,68,101,115,116,114,111,121,46,99,111,108,111,114,112,105,99,107,101,114,45,101,120,116,34,44,97,46,100,101,102,97,117,108,116,46,112,114,111,120,121,40,116,104,105,115,46,111,110,68,101,115,116,114,111,121,44,116,104,105,115,41,41,44,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,101,108,101,109,101,110,116,46,111,110,40,34,99,111,108,111,114,112,105,99,107,101,114,85,112,100,97,116,101,46,99,111,108,111,114,112,105,99,107,101,114,45,101,120,116,34,44,97,46,100,101,102,97,117,108,116,46,112,114,111,120,121,40,116,104,105,115,46,111,110,85,112,100,97,116,101,44,116,104,105,115,41,41,44,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,101,108,101,109,101,110,116,46,111,110,40,34,99,111,108,111,114,112,105,99,107,101,114,67,104,97,110,103,101,46,99,111,108,111,114,112,105,99,107,101,114,45,101,120,116,34,44,97,46,100,101,102,97,117,108,116,46,112,114,111,120,121,40,116,104,105,115,46,111,110,67,104,97,110,103,101,44,116,104,105,115,41,41,44,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,101,108,101,109,101,110,116,46,111,110,40,34,99,111,108,111,114,112,105,99,107,101,114,73,110,118,97,108,105,100,46,99,111,108,111,114,112,105,99,107,101,114,45,101,120,116,34,44,97,46,100,101,102,97,117,108,116,46,112,114,111,120,121,40,116,104,105,115,46,111,110,73,110,118,97,108,105,100,44,116,104,105,115,41,41,44,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,101,108,101,109,101,110,116,46,111,110,40,34,99,111,108,111,114,112,105,99,107,101,114,83,104,111,119,46,99,111,108,111,114,112,105,99,107,101,114,45,101,120,116,34,44,97,46,100,101,102,97,117,108,116,46,112,114,111,120,121,40,116,104,105,115,46,111,110,83,104,111,119,44,116,104,105,115,41,41,44,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,101,108,101,109,101,110,116,46,111,110,40,34,99,111,108,111,114,112,105,99,107,101,114,72,105,100,101,46,99,111,108,111,114,112,105,99,107,101,114,45,101,120,116,34,44,97,46,100,101,102,97,117,108,116,46,112,114,111,120,121,40,116,104,105,115,46,111,110,72,105,100,101,44,116,104,105,115,41,41,44,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,101,108,101,109,101,110,116,46,111,110,40,34,99,111,108,111,114,112,105,99,107,101,114,69,110,97,98,108,101,46,99,111,108,111,114,112,105,99,107,101,114,45,101,120,116,34,44,97,46,100,101,102,97,117,108,116,46,112,114,111,120,121,40,116,104,105,115,46,111,110,69,110,97,98,108,101,44,116,104,105,115,41,41,44,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,101,108,101,109,101,110,116,46,111,110,40,34,99,111,108,111,114,112,105,99,107,101,114,68,105,115,97,98,108,101,46,99,111,108,111,114,112,105,99,107,101,114,45,101,120,116,34,44,97,46,100,101,102,97,117,108,116,46,112,114,111,120,121,40,116,104,105,115,46,111,110,68,105,115,97,98,108,101,44,116,104,105,115,41,41,125,114,101,116,117,114,110,32,110,40,101,44,91,123,107,101,121,58,34,114,101,115,111,108,118,101,67,111,108,111,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,33,40,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,62,49,38,38,118,111,105,100,32,48,33,61,61,97,114,103,117,109,101,110,116,115,91,49,93,41,124,124,97,114,103,117,109,101,110,116,115,91,49,93,59,114,101,116,117,114,110,33,49,125,125,44,123,107,101,121,58,34,111,110,67,114,101,97,116,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,125,125,44,123,107,101,121,58,34,111,110,68,101,115,116,114,111,121,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,101,108,101,109,101,110,116,46,111,102,102,40,34,46,99,111,108,111,114,112,105,99,107,101,114,45,101,120,116,34,41,125,125,44,123,107,101,121,58,34,111,110,85,112,100,97,116,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,125,125,44,123,107,101,121,58,34,111,110,67,104,97,110,103,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,125,125,44,123,107,101,121,58,34,111,110,73,110,118,97,108,105,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,125,125,44,123,107,101,121,58,34,111,110,72,105,100,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,125,125,44,123,107,101,121,58,34,111,110,83,104,111,119,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,125,125,44,123,107,101,121,58,34,111,110,68,105,115,97,98,108,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,125,125,44,123,107,101,121,58,34,111,110,69,110,97,98,108,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,125,125,93,41,44,101,125,40,41,59,116,46,100,101,102,97,117,108,116,61,108,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,111,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,102,117,110,99,116,105,111,110,32,114,40,101,44,116,41,123,105,102,40,33,40,101,32,105,110,115,116,97,110,99,101,111,102,32,116,41,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,67,97,110,110,111,116,32,99,97,108,108,32,97,32,99,108,97,115,115,32,97,115,32,97,32,102,117,110,99,116,105,111,110,34,41,125,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,44,34,95,95,101,115,77,111,100,117,108,101,34,44,123,118,97,108,117,101,58,33,48,125,41,44,116,46,67,111,108,111,114,73,116,101,109,61,116,46,72,83,86,65,67,111,108,111,114,61,118,111,105,100,32,48,59,118,97,114,32,110,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,101,40,101,44,116,41,123,102,111,114,40,118,97,114,32,111,61,48,59,111,60,116,46,108,101,110,103,116,104,59,111,43,43,41,123,118,97,114,32,114,61,116,91,111,93,59,114,46,101,110,117,109,101,114,97,98,108,101,61,114,46,101,110,117,109,101,114,97,98,108,101,124,124,33,49,44,114,46,99,111,110,102,105,103,117,114,97,98,108,101,61,33,48,44,34,118,97,108,117,101,34,105,110,32,114,38,38,40,114,46,119,114,105,116,97,98,108,101,61,33,48,41,44,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,101,44,114,46,107,101,121,44,114,41,125,125,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,44,111,44,114,41,123,114,101,116,117,114,110,32,111,38,38,101,40,116,46,112,114,111,116,111,116,121,112,101,44,111,41,44,114,38,38,101,40,116,44,114,41,44,116,125,125,40,41,44,105,61,111,40,49,54,41,44,97,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,38,38,101,46,95,95,101,115,77,111,100,117,108,101,63,101,58,123,100,101,102,97,117,108,116,58,101,125,125,40,105,41,44,108,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,101,40,116,44,111,44,110,44,105,41,123,114,40,116,104,105,115,44,101,41,44,116,104,105,115,46,104,61,105,115,78,97,78,40,116,41,63,48,58,116,44,116,104,105,115,46,115,61,105,115,78,97,78,40,111,41,63,48,58,111,44,116,104,105,115,46,118,61,105,115,78,97,78,40,110,41,63,48,58,110,44,116,104,105,115,46,97,61,105,115,78,97,78,40,116,41,63,49,58,105,125,114,101,116,117,114,110,32,110,40,101,44,91,123,107,101,121,58,34,116,111,83,116,114,105,110,103,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,104,43,34,44,32,34,43,116,104,105,115,46,115,43,34,37,44,32,34,43,116,104,105,115,46,118,43,34,37,44,32,34,43,116,104,105,115,46,97,125,125,93,41,44,101,125,40,41,44,115,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,101,40,41,123,118,97,114,32,116,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,62,48,38,38,118,111,105,100,32,48,33,61,61,97,114,103,117,109,101,110,116,115,91,48,93,63,97,114,103,117,109,101,110,116,115,91,48,93,58,110,117,108,108,44,111,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,62,49,38,38,118,111,105,100,32,48,33,61,61,97,114,103,117,109,101,110,116,115,91,49,93,63,97,114,103,117,109,101,110,116,115,91,49,93,58,110,117,108,108,59,114,40,116,104,105,115,44,101,41,44,116,104,105,115,46,114,101,112,108,97,99,101,40,116,44,111,41,125,114,101,116,117,114,110,32,110,40,101,44,91,123,107,101,121,58,34,97,112,105,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,116,41,123,102,111,114,40,118,97,114,32,111,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,44,114,61,65,114,114,97,121,40,111,62,49,63,111,45,49,58,48,41,44,110,61,49,59,110,60,111,59,110,43,43,41,114,91,110,45,49,93,61,97,114,103,117,109,101,110,116,115,91,110,93,59,105,102,40,48,61,61,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,114,101,116,117,114,110,32,116,104,105,115,46,95,99,111,108,111,114,59,118,97,114,32,105,61,116,104,105,115,46,95,99,111,108,111,114,91,116,93,46,97,112,112,108,121,40,116,104,105,115,46,95,99,111,108,111,114,44,114,41,59,114,101,116,117,114,110,32,105,32,105,110,115,116,97,110,99,101,111,102,32,97,46,100,101,102,97,117,108,116,63,110,101,119,32,101,40,105,44,116,104,105,115,46,102,111,114,109,97,116,41,58,105,125,125,44,123,107,101,121,58,34,111,114,105,103,105,110,97,108,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,111,114,105,103,105,110,97,108,125,125,93,44,91,123,107,101,121,58,34,72,83,86,65,67,111,108,111,114,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,108,125,125,93,41,44,110,40,101,44,91,123,107,101,121,58,34,114,101,112,108,97,99,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,111,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,62,49,38,38,118,111,105,100,32,48,33,61,61,97,114,103,117,109,101,110,116,115,91,49,93,63,97,114,103,117,109,101,110,116,115,91,49,93,58,110,117,108,108,59,105,102,40,111,61,101,46,115,97,110,105,116,105,122,101,70,111,114,109,97,116,40,111,41,44,116,104,105,115,46,95,111,114,105,103,105,110,97,108,61,123,99,111,108,111,114,58,116,44,102,111,114,109,97,116,58,111,44,118,97,108,105,100,58,33,48,125,44,116,104,105,115,46,95,99,111,108,111,114,61,101,46,112,97,114,115,101,40,116,41,44,110,117,108,108,61,61,61,116,104,105,115,46,95,99,111,108,111,114,41,114,101,116,117,114,110,32,116,104,105,115,46,95,99,111,108,111,114,61,40,48,44,97,46,100,101,102,97,117,108,116,41,40,41,44,118,111,105,100,40,116,104,105,115,46,95,111,114,105,103,105,110,97,108,46,118,97,108,105,100,61,33,49,41,59,116,104,105,115,46,95,102,111,114,109,97,116,61,111,124,124,40,101,46,105,115,72,101,120,40,116,41,63,34,104,101,120,34,58,116,104,105,115,46,95,99,111,108,111,114,46,109,111,100,101,108,41,125,125,44,123,107,101,121,58,34,105,115,86,97,108,105,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,33,48,61,61,61,116,104,105,115,46,95,111,114,105,103,105,110,97,108,46,118,97,108,105,100,125,125,44,123,107,101,121,58,34,115,101,116,72,117,101,82,97,116,105,111,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,104,117,101,61,51,54,48,42,40,49,45,101,41,125,125,44,123,107,101,121,58,34,115,101,116,83,97,116,117,114,97,116,105,111,110,82,97,116,105,111,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,115,97,116,117,114,97,116,105,111,110,61,49,48,48,42,101,125,125,44,123,107,101,121,58,34,115,101,116,86,97,108,117,101,82,97,116,105,111,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,118,97,108,117,101,61,49,48,48,42,40,49,45,101,41,125,125,44,123,107,101,121,58,34,115,101,116,65,108,112,104,97,82,97,116,105,111,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,97,108,112,104,97,61,49,45,101,125,125,44,123,107,101,121,58,34,105,115,68,101,115,97,116,117,114,97,116,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,48,61,61,61,116,104,105,115,46,115,97,116,117,114,97,116,105,111,110,125,125,44,123,107,101,121,58,34,105,115,84,114,97,110,115,112,97,114,101,110,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,48,61,61,61,116,104,105,115,46,97,108,112,104,97,125,125,44,123,107,101,121,58,34,104,97,115,84,114,97,110,115,112,97,114,101,110,99,121,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,104,97,115,65,108,112,104,97,40,41,38,38,116,104,105,115,46,97,108,112,104,97,60,49,125,125,44,123,107,101,121,58,34,104,97,115,65,108,112,104,97,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,33,105,115,78,97,78,40,116,104,105,115,46,97,108,112,104,97,41,125,125,44,123,107,101,121,58,34,116,111,79,98,106,101,99,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,110,101,119,32,108,40,116,104,105,115,46,104,117,101,44,116,104,105,115,46,115,97,116,117,114,97,116,105,111,110,44,116,104,105,115,46,118,97,108,117,101,44,116,104,105,115,46,97,108,112,104,97,41,125,125,44,123,107,101,121,58,34,116,111,72,115,118,97,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,116,111,79,98,106,101,99,116,40,41,125,125,44,123,107,101,121,58,34,116,111,72,115,118,97,82,97,116,105,111,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,110,101,119,32,108,40,116,104,105,115,46,104,117,101,47,51,54,48,44,116,104,105,115,46,115,97,116,117,114,97,116,105,111,110,47,49,48,48,44,116,104,105,115,46,118,97,108,117,101,47,49,48,48,44,116,104,105,115,46,97,108,112,104,97,41,125,125,44,123,107,101,121,58,34,116,111,83,116,114,105,110,103,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,115,116,114,105,110,103,40,41,125,125,44,123,107,101,121,58,34,115,116,114,105,110,103,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,62,48,38,38,118,111,105,100,32,48,33,61,61,97,114,103,117,109,101,110,116,115,91,48,93,63,97,114,103,117,109,101,110,116,115,91,48,93,58,110,117,108,108,59,105,102,40,33,40,116,61,101,46,115,97,110,105,116,105,122,101,70,111,114,109,97,116,40,116,124,124,116,104,105,115,46,102,111,114,109,97,116,41,41,41,114,101,116,117,114,110,32,116,104,105,115,46,95,99,111,108,111,114,46,114,111,117,110,100,40,41,46,115,116,114,105,110,103,40,41,59,105,102,40,118,111,105,100,32,48,61,61,61,116,104,105,115,46,95,99,111,108,111,114,91,116,93,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,85,110,115,117,112,112,111,114,116,101,100,32,99,111,108,111,114,32,102,111,114,109,97,116,58,32,39,34,43,116,43,34,39,34,41,59,118,97,114,32,111,61,116,104,105,115,46,95,99,111,108,111,114,91,116,93,40,41,59,114,101,116,117,114,110,32,111,46,114,111,117,110,100,63,111,46,114,111,117,110,100,40,41,46,115,116,114,105,110,103,40,41,58,111,125,125,44,123,107,101,121,58,34,101,113,117,97,108,115,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,61,116,32,105,110,115,116,97,110,99,101,111,102,32,101,63,116,58,110,101,119,32,101,40,116,41,44,33,40,33,116,46,105,115,86,97,108,105,100,40,41,124,124,33,116,104,105,115,46,105,115,86,97,108,105,100,40,41,41,38,38,40,116,104,105,115,46,104,117,101,61,61,61,116,46,104,117,101,38,38,116,104,105,115,46,115,97,116,117,114,97,116,105,111,110,61,61,61,116,46,115,97,116,117,114,97,116,105,111,110,38,38,116,104,105,115,46,118,97,108,117,101,61,61,61,116,46,118,97,108,117,101,38,38,116,104,105,115,46,97,108,112,104,97,61,61,61,116,46,97,108,112,104,97,41,125,125,44,123,107,101,121,58,34,103,101,116,67,108,111,110,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,110,101,119,32,101,40,116,104,105,115,46,95,99,111,108,111,114,44,116,104,105,115,46,102,111,114,109,97,116,41,125,125,44,123,107,101,121,58,34,103,101,116,67,108,111,110,101,72,117,101,79,110,108,121,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,110,101,119,32,101,40,91,116,104,105,115,46,104,117,101,44,49,48,48,44,49,48,48,44,49,93,44,116,104,105,115,46,102,111,114,109,97,116,41,125,125,44,123,107,101,121,58,34,103,101,116,67,108,111,110,101,79,112,97,113,117,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,110,101,119,32,101,40,116,104,105,115,46,95,99,111,108,111,114,46,97,108,112,104,97,40,49,41,44,116,104,105,115,46,102,111,114,109,97,116,41,125,125,44,123,107,101,121,58,34,116,111,82,103,98,83,116,114,105,110,103,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,115,116,114,105,110,103,40,34,114,103,98,34,41,125,125,44,123,107,101,121,58,34,116,111,72,101,120,83,116,114,105,110,103,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,115,116,114,105,110,103,40,34,104,101,120,34,41,125,125,44,123,107,101,121,58,34,116,111,72,115,108,83,116,114,105,110,103,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,115,116,114,105,110,103,40,34,104,115,108,34,41,125,125,44,123,107,101,121,58,34,105,115,68,97,114,107,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,99,111,108,111,114,46,105,115,68,97,114,107,40,41,125,125,44,123,107,101,121,58,34,105,115,76,105,103,104,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,99,111,108,111,114,46,105,115,76,105,103,104,116,40,41,125,125,44,123,107,101,121,58,34,103,101,110,101,114,97,116,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,111,61,91,93,59,105,102,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,116,41,41,111,61,116,59,101,108,115,101,123,105,102,40,33,101,46,99,111,108,111,114,70,111,114,109,117,108,97,115,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,116,41,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,78,111,32,99,111,108,111,114,32,102,111,114,109,117,108,97,32,102,111,117,110,100,32,119,105,116,104,32,116,104,101,32,110,97,109,101,32,39,34,43,116,43,34,39,46,34,41,59,111,61,101,46,99,111,108,111,114,70,111,114,109,117,108,97,115,91,116,93,125,118,97,114,32,114,61,91,93,44,110,61,116,104,105,115,46,95,99,111,108,111,114,44,105,61,116,104,105,115,46,102,111,114,109,97,116,59,114,101,116,117,114,110,32,111,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,111,61,91,116,63,40,110,46,104,117,101,40,41,43,116,41,37,51,54,48,58,110,46,104,117,101,40,41,44,110,46,115,97,116,117,114,97,116,105,111,110,118,40,41,44,110,46,118,97,108,117,101,40,41,44,110,46,97,108,112,104,97,40,41,93,59,114,46,112,117,115,104,40,110,101,119,32,101,40,111,44,105,41,41,125,41,44,114,125,125,44,123,107,101,121,58,34,104,117,101,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,99,111,108,111,114,46,104,117,101,40,41,125,44,115,101,116,58,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,95,99,111,108,111,114,61,116,104,105,115,46,95,99,111,108,111,114,46,104,117,101,40,101,41,125,125,44,123,107,101,121,58,34,115,97,116,117,114,97,116,105,111,110,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,99,111,108,111,114,46,115,97,116,117,114,97,116,105,111,110,118,40,41,125,44,115,101,116,58,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,95,99,111,108,111,114,61,116,104,105,115,46,95,99,111,108,111,114,46,115,97,116,117,114,97,116,105,111,110,118,40,101,41,125,125,44,123,107,101,121,58,34,118,97,108,117,101,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,99,111,108,111,114,46,118,97,108,117,101,40,41,125,44,115,101,116,58,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,95,99,111,108,111,114,61,116,104,105,115,46,95,99,111,108,111,114,46,118,97,108,117,101,40,101,41,125,125,44,123,107,101,121,58,34,97,108,112,104,97,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,95,99,111,108,111,114,46,97,108,112,104,97,40,41,59,114,101,116,117,114,110,32,105,115,78,97,78,40,101,41,63,49,58,101,125,44,115,101,116,58,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,95,99,111,108,111,114,61,116,104,105,115,46,95,99,111,108,111,114,46,97,108,112,104,97,40,77,97,116,104,46,114,111,117,110,100,40,49,48,48,42,101,41,47,49,48,48,41,125,125,44,123,107,101,121,58,34,102,111,114,109,97,116,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,102,111,114,109,97,116,63,116,104,105,115,46,95,102,111,114,109,97,116,58,116,104,105,115,46,95,99,111,108,111,114,46,109,111,100,101,108,125,44,115,101,116,58,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,95,102,111,114,109,97,116,61,101,46,115,97,110,105,116,105,122,101,70,111,114,109,97,116,40,116,41,125,125,93,44,91,123,107,101,121,58,34,112,97,114,115,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,116,32,105,110,115,116,97,110,99,101,111,102,32,97,46,100,101,102,97,117,108,116,41,114,101,116,117,114,110,32,116,59,105,102,40,116,32,105,110,115,116,97,110,99,101,111,102,32,101,41,114,101,116,117,114,110,32,116,46,95,99,111,108,111,114,59,118,97,114,32,111,61,110,117,108,108,59,105,102,40,110,117,108,108,61,61,61,40,116,61,116,32,105,110,115,116,97,110,99,101,111,102,32,108,63,91,116,46,104,44,116,46,115,44,116,46,118,44,105,115,78,97,78,40,116,46,97,41,63,49,58,116,46,97,93,58,101,46,115,97,110,105,116,105,122,101,83,116,114,105,110,103,40,116,41,41,41,114,101,116,117,114,110,32,110,117,108,108,59,65,114,114,97,121,46,105,115,65,114,114,97,121,40,116,41,38,38,40,111,61,34,104,115,118,34,41,59,116,114,121,123,114,101,116,117,114,110,40,48,44,97,46,100,101,102,97,117,108,116,41,40,116,44,111,41,125,99,97,116,99,104,40,101,41,123,114,101,116,117,114,110,32,110,117,108,108,125,125,125,44,123,107,101,121,58,34,115,97,110,105,116,105,122,101,83,116,114,105,110,103,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,101,124,124,101,32,105,110,115,116,97,110,99,101,111,102,32,83,116,114,105,110,103,63,101,46,109,97,116,99,104,40,47,94,91,48,45,57,97,45,102,93,123,50,44,125,36,47,105,41,63,34,35,34,43,101,58,34,116,114,97,110,115,112,97,114,101,110,116,34,61,61,61,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,63,34,35,70,70,70,70,70,70,48,48,34,58,101,58,101,125,125,44,123,107,101,121,58,34,105,115,72,101,120,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,40,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,101,124,124,101,32,105,110,115,116,97,110,99,101,111,102,32,83,116,114,105,110,103,41,38,38,33,33,101,46,109,97,116,99,104,40,47,94,35,63,91,48,45,57,97,45,102,93,123,50,44,125,36,47,105,41,125,125,44,123,107,101,121,58,34,115,97,110,105,116,105,122,101,70,111,114,109,97,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,115,119,105,116,99,104,40,101,41,123,99,97,115,101,34,104,101,120,34,58,99,97,115,101,34,104,101,120,51,34,58,99,97,115,101,34,104,101,120,52,34,58,99,97,115,101,34,104,101,120,54,34,58,99,97,115,101,34,104,101,120,56,34,58,114,101,116,117,114,110,34,104,101,120,34,59,99,97,115,101,34,114,103,98,34,58,99,97,115,101,34,114,103,98,97,34,58,99,97,115,101,34,107,101,121,119,111,114,100,34,58,99,97,115,101,34,110,97,109,101,34,58,114,101,116,117,114,110,34,114,103,98,34,59,99,97,115,101,34,104,115,108,34,58,99,97,115,101,34,104,115,108,97,34,58,99,97,115,101,34,104,115,118,34,58,99,97,115,101,34,104,115,118,97,34,58,99,97,115,101,34,104,119,98,34,58,99,97,115,101,34,104,119,98,97,34,58,114,101,116,117,114,110,34,104,115,108,34,59,100,101,102,97,117,108,116,58,114,101,116,117,114,110,34,34,125,125,125,93,41,44,101,125,40,41,59,115,46,99,111,108,111,114,70,111,114,109,117,108,97,115,61,123,99,111,109,112,108,101,109,101,110,116,97,114,121,58,91,49,56,48,93,44,116,114,105,97,100,58,91,48,44,49,50,48,44,50,52,48,93,44,116,101,116,114,97,100,58,91,48,44,57,48,44,49,56,48,44,50,55,48,93,44,115,112,108,105,116,99,111,109,112,108,101,109,101,110,116,58,91,48,44,55,50,44,50,49,54,93,125,44,116,46,100,101,102,97,117,108,116,61,115,44,116,46,72,83,86,65,67,111,108,111,114,61,108,44,116,46,67,111,108,111,114,73,116,101,109,61,115,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,111,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,44,34,95,95,101,115,77,111,100,117,108,101,34,44,123,118,97,108,117,101,58,33,48,125,41,59,118,97,114,32,114,61,123,98,97,114,95,115,105,122,101,95,115,104,111,114,116,58,49,54,44,98,97,115,101,95,109,97,114,103,105,110,58,54,44,99,111,108,117,109,110,115,58,54,125,44,110,61,114,46,98,97,114,95,115,105,122,101,95,115,104,111,114,116,42,114,46,99,111,108,117,109,110,115,43,114,46,98,97,115,101,95,109,97,114,103,105,110,42,40,114,46,99,111,108,117,109,110,115,45,49,41,59,116,46,100,101,102,97,117,108,116,61,123,99,117,115,116,111,109,67,108,97,115,115,58,110,117,108,108,44,99,111,108,111,114,58,33,49,44,102,97,108,108,98,97,99,107,67,111,108,111,114,58,33,49,44,102,111,114,109,97,116,58,34,97,117,116,111,34,44,104,111,114,105,122,111,110,116,97,108,58,33,49,44,105,110,108,105,110,101,58,33,49,44,99,111,110,116,97,105,110,101,114,58,33,49,44,112,111,112,111,118,101,114,58,123,97,110,105,109,97,116,105,111,110,58,33,48,44,112,108,97,99,101,109,101,110,116,58,34,98,111,116,116,111,109,34,44,102,97,108,108,98,97,99,107,80,108,97,99,101,109,101,110,116,58,34,102,108,105,112,34,125,44,100,101,98,117,103,58,33,49,44,105,110,112,117,116,58,34,105,110,112,117,116,34,44,97,100,100,111,110,58,34,46,99,111,108,111,114,112,105,99,107,101,114,45,105,110,112,117,116,45,97,100,100,111,110,34,44,97,117,116,111,73,110,112,117,116,70,97,108,108,98,97,99,107,58,33,48,44,117,115,101,72,97,115,104,80,114,101,102,105,120,58,33,48,44,117,115,101,65,108,112,104,97,58,33,48,44,116,101,109,112,108,97,116,101,58,39,60,100,105,118,32,99,108,97,115,115,61,34,99,111,108,111,114,112,105,99,107,101,114,34,62,92,110,32,32,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,99,111,108,111,114,112,105,99,107,101,114,45,115,97,116,117,114,97,116,105,111,110,34,62,60,105,32,99,108,97,115,115,61,34,99,111,108,111,114,112,105,99,107,101,114,45,103,117,105,100,101,34,62,60,47,105,62,60,47,100,105,118,62,92,110,32,32,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,99,111,108,111,114,112,105,99,107,101,114,45,104,117,101,34,62,60,105,32,99,108,97,115,115,61,34,99,111,108,111,114,112,105,99,107,101,114,45,103,117,105,100,101,34,62,60,47,105,62,60,47,100,105,118,62,92,110,32,32,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,99,111,108,111,114,112,105,99,107,101,114,45,97,108,112,104,97,34,62,92,110,32,32,32,32,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,99,111,108,111,114,112,105,99,107,101,114,45,97,108,112,104,97,45,99,111,108,111,114,34,62,60,47,100,105,118,62,92,110,32,32,32,32,32,32,32,32,60,105,32,99,108,97,115,115,61,34,99,111,108,111,114,112,105,99,107,101,114,45,103,117,105,100,101,34,62,60,47,105,62,92,110,32,32,32,32,32,32,60,47,100,105,118,62,92,110,32,32,32,32,60,47,100,105,118,62,39,44,101,120,116,101,110,115,105,111,110,115,58,91,123,110,97,109,101,58,34,112,114,101,118,105,101,119,34,44,111,112,116,105,111,110,115,58,123,115,104,111,119,84,101,120,116,58,33,48,125,125,93,44,115,108,105,100,101,114,115,58,123,115,97,116,117,114,97,116,105,111,110,58,123,115,101,108,101,99,116,111,114,58,34,46,99,111,108,111,114,112,105,99,107,101,114,45,115,97,116,117,114,97,116,105,111,110,34,44,109,97,120,76,101,102,116,58,110,44,109,97,120,84,111,112,58,110,44,99,97,108,108,76,101,102,116,58,34,115,101,116,83,97,116,117,114,97,116,105,111,110,82,97,116,105,111,34,44,99,97,108,108,84,111,112,58,34,115,101,116,86,97,108,117,101,82,97,116,105,111,34,125,44,104,117,101,58,123,115,101,108,101,99,116,111,114,58,34,46,99,111,108,111,114,112,105,99,107,101,114,45,104,117,101,34,44,109,97,120,76,101,102,116,58,48,44,109,97,120,84,111,112,58,110,44,99,97,108,108,76,101,102,116,58,33,49,44,99,97,108,108,84,111,112,58,34,115,101,116,72,117,101,82,97,116,105,111,34,125,44,97,108,112,104,97,58,123,115,101,108,101,99,116,111,114,58,34,46,99,111,108,111,114,112,105,99,107,101,114,45,97,108,112,104,97,34,44,99,104,105,108,100,83,101,108,101,99,116,111,114,58,34,46,99,111,108,111,114,112,105,99,107,101,114,45,97,108,112,104,97,45,99,111,108,111,114,34,44,109,97,120,76,101,102,116,58,48,44,109,97,120,84,111,112,58,110,44,99,97,108,108,76,101,102,116,58,33,49,44,99,97,108,108,84,111,112,58,34,115,101,116,65,108,112,104,97,82,97,116,105,111,34,125,125,44,115,108,105,100,101,114,115,72,111,114,122,58,123,115,97,116,117,114,97,116,105,111,110,58,123,115,101,108,101,99,116,111,114,58,34,46,99,111,108,111,114,112,105,99,107,101,114,45,115,97,116,117,114,97,116,105,111,110,34,44,109,97,120,76,101,102,116,58,110,44,109,97,120,84,111,112,58,110,44,99,97,108,108,76,101,102,116,58,34,115,101,116,83,97,116,117,114,97,116,105,111,110,82,97,116,105,111,34,44,99,97,108,108,84,111,112,58,34,115,101,116,86,97,108,117,101,82,97,116,105,111,34,125,44,104,117,101,58,123,115,101,108,101,99,116,111,114,58,34,46,99,111,108,111,114,112,105,99,107,101,114,45,104,117,101,34,44,109,97,120,76,101,102,116,58,110,44,109,97,120,84,111,112,58,48,44,99,97,108,108,76,101,102,116,58,34,115,101,116,72,117,101,82,97,116,105,111,34,44,99,97,108,108,84,111,112,58,33,49,125,44,97,108,112,104,97,58,123,115,101,108,101,99,116,111,114,58,34,46,99,111,108,111,114,112,105,99,107,101,114,45,97,108,112,104,97,34,44,99,104,105,108,100,83,101,108,101,99,116,111,114,58,34,46,99,111,108,111,114,112,105,99,107,101,114,45,97,108,112,104,97,45,99,111,108,111,114,34,44,109,97,120,76,101,102,116,58,110,44,109,97,120,84,111,112,58,48,44,99,97,108,108,76,101,102,116,58,34,115,101,116,65,108,112,104,97,82,97,116,105,111,34,44,99,97,108,108,84,111,112,58,33,49,125,125,125,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,111,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,102,117,110,99,116,105,111,110,32,114,40,101,41,123,114,101,116,117,114,110,32,101,38,38,101,46,95,95,101,115,77,111,100,117,108,101,63,101,58,123,100,101,102,97,117,108,116,58,101,125,125,102,117,110,99,116,105,111,110,32,110,40,101,44,116,41,123,105,102,40,33,40,101,32,105,110,115,116,97,110,99,101,111,102,32,116,41,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,67,97,110,110,111,116,32,99,97,108,108,32,97,32,99,108,97,115,115,32,97,115,32,97,32,102,117,110,99,116,105,111,110,34,41,125,102,117,110,99,116,105,111,110,32,105,40,101,44,116,41,123,105,102,40,33,101,41,116,104,114,111,119,32,110,101,119,32,82,101,102,101,114,101,110,99,101,69,114,114,111,114,40,34,116,104,105,115,32,104,97,115,110,39,116,32,98,101,101,110,32,105,110,105,116,105,97,108,105,115,101,100,32,45,32,115,117,112,101,114,40,41,32,104,97,115,110,39,116,32,98,101,101,110,32,99,97,108,108,101,100,34,41,59,114,101,116,117,114,110,33,116,124,124,34,111,98,106,101,99,116,34,33,61,116,121,112,101,111,102,32,116,38,38,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,116,63,101,58,116,125,102,117,110,99,116,105,111,110,32,97,40,101,44,116,41,123,105,102,40,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,116,38,38,110,117,108,108,33,61,61,116,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,83,117,112,101,114,32,101,120,112,114,101,115,115,105,111,110,32,109,117,115,116,32,101,105,116,104,101,114,32,98,101,32,110,117,108,108,32,111,114,32,97,32,102,117,110,99,116,105,111,110,44,32,110,111,116,32,34,43,116,121,112,101,111,102,32,116,41,59,101,46,112,114,111,116,111,116,121,112,101,61,79,98,106,101,99,116,46,99,114,101,97,116,101,40,116,38,38,116,46,112,114,111,116,111,116,121,112,101,44,123,99,111,110,115,116,114,117,99,116,111,114,58,123,118,97,108,117,101,58,101,44,101,110,117,109,101,114,97,98,108,101,58,33,49,44,119,114,105,116,97,98,108,101,58,33,48,44,99,111,110,102,105,103,117,114,97,98,108,101,58,33,48,125,125,41,44,116,38,38,40,79,98,106,101,99,116,46,115,101,116,80,114,111,116,111,116,121,112,101,79,102,63,79,98,106,101,99,116,46,115,101,116,80,114,111,116,111,116,121,112,101,79,102,40,101,44,116,41,58,101,46,95,95,112,114,111,116,111,95,95,61,116,41,125,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,44,34,95,95,101,115,77,111,100,117,108,101,34,44,123,118,97,108,117,101,58,33,48,125,41,59,118,97,114,32,108,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,83,121,109,98,111,108,38,38,34,115,121,109,98,111,108,34,61,61,116,121,112,101,111,102,32,83,121,109,98,111,108,46,105,116,101,114,97,116,111,114,63,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,121,112,101,111,102,32,101,125,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,38,38,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,83,121,109,98,111,108,38,38,101,46,99,111,110,115,116,114,117,99,116,111,114,61,61,61,83,121,109,98,111,108,38,38,101,33,61,61,83,121,109,98,111,108,46,112,114,111,116,111,116,121,112,101,63,34,115,121,109,98,111,108,34,58,116,121,112,101,111,102,32,101,125,44,115,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,101,40,101,44,116,41,123,102,111,114,40,118,97,114,32,111,61,48,59,111,60,116,46,108,101,110,103,116,104,59,111,43,43,41,123,118,97,114,32,114,61,116,91,111,93,59,114,46,101,110,117,109,101,114,97,98,108,101,61,114,46,101,110,117,109,101,114,97,98,108,101,124,124,33,49,44,114,46,99,111,110,102,105,103,117,114,97,98,108,101,61,33,48,44,34,118,97,108,117,101,34,105,110,32,114,38,38,40,114,46,119,114,105,116,97,98,108,101,61,33,48,41,44,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,101,44,114,46,107,101,121,44,114,41,125,125,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,44,111,44,114,41,123,114,101,116,117,114,110,32,111,38,38,101,40,116,46,112,114,111,116,111,116,121,112,101,44,111,41,44,114,38,38,101,40,116,44,114,41,44,116,125,125,40,41,44,99,61,111,40,49,41,44,117,61,114,40,99,41,44,104,61,111,40,48,41,44,112,61,114,40,104,41,44,102,61,123,99,111,108,111,114,115,58,110,117,108,108,44,110,97,109,101,115,65,115,86,97,108,117,101,115,58,33,48,125,44,100,61,102,117,110,99,116,105,111,110,40,101,41,123,102,117,110,99,116,105,111,110,32,116,40,101,41,123,118,97,114,32,111,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,62,49,38,38,118,111,105,100,32,48,33,61,61,97,114,103,117,109,101,110,116,115,91,49,93,63,97,114,103,117,109,101,110,116,115,91,49,93,58,123,125,59,110,40,116,104,105,115,44,116,41,59,118,97,114,32,114,61,105,40,116,104,105,115,44,40,116,46,95,95,112,114,111,116,111,95,95,124,124,79,98,106,101,99,116,46,103,101,116,80,114,111,116,111,116,121,112,101,79,102,40,116,41,41,46,99,97,108,108,40,116,104,105,115,44,101,44,112,46,100,101,102,97,117,108,116,46,101,120,116,101,110,100,40,33,48,44,123,125,44,102,44,111,41,41,41,59,114,101,116,117,114,110,32,65,114,114,97,121,46,105,115,65,114,114,97,121,40,114,46,111,112,116,105,111,110,115,46,99,111,108,111,114,115,41,124,124,34,111,98,106,101,99,116,34,61,61,61,108,40,114,46,111,112,116,105,111,110,115,46,99,111,108,111,114,115,41,124,124,40,114,46,111,112,116,105,111,110,115,46,99,111,108,111,114,115,61,110,117,108,108,41,44,114,125,114,101,116,117,114,110,32,97,40,116,44,101,41,44,115,40,116,44,91,123,107,101,121,58,34,99,111,108,111,114,115,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,111,112,116,105,111,110,115,46,99,111,108,111,114,115,125,125,93,41,44,115,40,116,44,91,123,107,101,121,58,34,103,101,116,76,101,110,103,116,104,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,111,112,116,105,111,110,115,46,99,111,108,111,114,115,63,65,114,114,97,121,46,105,115,65,114,114,97,121,40,116,104,105,115,46,111,112,116,105,111,110,115,46,99,111,108,111,114,115,41,63,116,104,105,115,46,111,112,116,105,111,110,115,46,99,111,108,111,114,115,46,108,101,110,103,116,104,58,34,111,98,106,101,99,116,34,61,61,61,108,40,116,104,105,115,46,111,112,116,105,111,110,115,46,99,111,108,111,114,115,41,63,79,98,106,101,99,116,46,107,101,121,115,40,116,104,105,115,46,111,112,116,105,111,110,115,46,99,111,108,111,114,115,41,46,108,101,110,103,116,104,58,48,58,48,125,125,44,123,107,101,121,58,34,114,101,115,111,108,118,101,67,111,108,111,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,33,40,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,62,49,38,38,118,111,105,100,32,48,33,61,61,97,114,103,117,109,101,110,116,115,91,49,93,41,124,124,97,114,103,117,109,101,110,116,115,91,49,93,59,114,101,116,117,114,110,33,40,116,104,105,115,46,103,101,116,76,101,110,103,116,104,40,41,60,61,48,41,38,38,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,116,104,105,115,46,111,112,116,105,111,110,115,46,99,111,108,111,114,115,41,63,116,104,105,115,46,111,112,116,105,111,110,115,46,99,111,108,111,114,115,46,105,110,100,101,120,79,102,40,101,41,62,61,48,63,101,58,116,104,105,115,46,111,112,116,105,111,110,115,46,99,111,108,111,114,115,46,105,110,100,101,120,79,102,40,101,46,116,111,85,112,112,101,114,67,97,115,101,40,41,41,62,61,48,63,101,46,116,111,85,112,112,101,114,67,97,115,101,40,41,58,116,104,105,115,46,111,112,116,105,111,110,115,46,99,111,108,111,114,115,46,105,110,100,101,120,79,102,40,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,41,62,61,48,38,38,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,58,34,111,98,106,101,99,116,34,61,61,61,108,40,116,104,105,115,46,111,112,116,105,111,110,115,46,99,111,108,111,114,115,41,38,38,40,33,116,104,105,115,46,111,112,116,105,111,110,115,46,110,97,109,101,115,65,115,86,97,108,117,101,115,124,124,116,63,116,104,105,115,46,103,101,116,86,97,108,117,101,40,101,44,33,49,41,58,116,104,105,115,46,103,101,116,78,97,109,101,40,101,44,116,104,105,115,46,103,101,116,78,97,109,101,40,34,35,34,43,101,41,41,41,41,125,125,44,123,107,101,121,58,34,103,101,116,78,97,109,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,62,49,38,38,118,111,105,100,32,48,33,61,61,97,114,103,117,109,101,110,116,115,91,49,93,38,38,97,114,103,117,109,101,110,116,115,91,49,93,59,105,102,40,34,115,116,114,105,110,103,34,33,61,116,121,112,101,111,102,32,101,124,124,33,116,104,105,115,46,111,112,116,105,111,110,115,46,99,111,108,111,114,115,41,114,101,116,117,114,110,32,116,59,102,111,114,40,118,97,114,32,111,32,105,110,32,116,104,105,115,46,111,112,116,105,111,110,115,46,99,111,108,111,114,115,41,105,102,40,116,104,105,115,46,111,112,116,105,111,110,115,46,99,111,108,111,114,115,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,111,41,38,38,116,104,105,115,46,111,112,116,105,111,110,115,46,99,111,108,111,114,115,91,111,93,46,116,111,76,111,119,101,114,67,97,115,101,40,41,61,61,61,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,41,114,101,116,117,114,110,32,111,59,114,101,116,117,114,110,32,116,125,125,44,123,107,101,121,58,34,103,101,116,86,97,108,117,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,62,49,38,38,118,111,105,100,32,48,33,61,61,97,114,103,117,109,101,110,116,115,91,49,93,38,38,97,114,103,117,109,101,110,116,115,91,49,93,59,114,101,116,117,114,110,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,101,38,38,116,104,105,115,46,111,112,116,105,111,110,115,46,99,111,108,111,114,115,38,38,116,104,105,115,46,111,112,116,105,111,110,115,46,99,111,108,111,114,115,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,101,41,63,116,104,105,115,46,111,112,116,105,111,110,115,46,99,111,108,111,114,115,91,101,93,58,116,125,125,93,41,44,116,125,40,117,46,100,101,102,97,117,108,116,41,59,116,46,100,101,102,97,117,108,116,61,100,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,111,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,101,46,101,120,112,111,114,116,115,61,123,97,108,105,99,101,98,108,117,101,58,91,50,52,48,44,50,52,56,44,50,53,53,93,44,97,110,116,105,113,117,101,119,104,105,116,101,58,91,50,53,48,44,50,51,53,44,50,49,53,93,44,97,113,117,97,58,91,48,44,50,53,53,44,50,53,53,93,44,97,113,117,97,109,97,114,105,110,101,58,91,49,50,55,44,50,53,53,44,50,49,50,93,44,97,122,117,114,101,58,91,50,52,48,44,50,53,53,44,50,53,53,93,44,98,101,105,103,101,58,91,50,52,53,44,50,52,53,44,50,50,48,93,44,98,105,115,113,117,101,58,91,50,53,53,44,50,50,56,44,49,57,54,93,44,98,108,97,99,107,58,91,48,44,48,44,48,93,44,98,108,97,110,99,104,101,100,97,108,109,111,110,100,58,91,50,53,53,44,50,51,53,44,50,48,53,93,44,98,108,117,101,58,91,48,44,48,44,50,53,53,93,44,98,108,117,101,118,105,111,108,101,116,58,91,49,51,56,44,52,51,44,50,50,54,93,44,98,114,111,119,110,58,91,49,54,53,44,52,50,44,52,50,93,44,98,117,114,108,121,119,111,111,100,58,91,50,50,50,44,49,56,52,44,49,51,53,93,44,99,97,100,101,116,98,108,117,101,58,91,57,53,44,49,53,56,44,49,54,48,93,44,99,104,97,114,116,114,101,117,115,101,58,91,49,50,55,44,50,53,53,44,48,93,44,99,104,111,99,111,108,97,116,101,58,91,50,49,48,44,49,48,53,44,51,48,93,44,99,111,114,97,108,58,91,50,53,53,44,49,50,55,44,56,48,93,44,99,111,114,110,102,108,111,119,101,114,98,108,117,101,58,91,49,48,48,44,49,52,57,44,50,51,55,93,44,99,111,114,110,115,105,108,107,58,91,50,53,53,44,50,52,56,44,50,50,48,93,44,99,114,105,109,115,111,110,58,91,50,50,48,44,50,48,44,54,48,93,44,99,121,97,110,58,91,48,44,50,53,53,44,50,53,53,93,44,100,97,114,107,98,108,117,101,58,91,48,44,48,44,49,51,57,93,44,100,97,114,107,99,121,97,110,58,91,48,44,49,51,57,44,49,51,57,93,44,100,97,114,107,103,111,108,100,101,110,114,111,100,58,91,49,56,52,44,49,51,52,44,49,49,93,44,100,97,114,107,103,114,97,121,58,91,49,54,57,44,49,54,57,44,49,54,57,93,44,100,97,114,107,103,114,101,101,110,58,91,48,44,49,48,48,44,48,93,44,100,97,114,107,103,114,101,121,58,91,49,54,57,44,49,54,57,44,49,54,57,93,44,100,97,114,107,107,104,97,107,105,58,91,49,56,57,44,49,56,51,44,49,48,55,93,44,100,97,114,107,109,97,103,101,110,116,97,58,91,49,51,57,44,48,44,49,51,57,93,44,100,97,114,107,111,108,105,118,101,103,114,101,101,110,58,91,56,53,44,49,48,55,44,52,55,93,44,100,97,114,107,111,114,97,110,103,101,58,91,50,53,53,44,49,52,48,44,48,93,44,100,97,114,107,111,114,99,104,105,100,58,91,49,53,51,44,53,48,44,50,48,52,93,44,100,97,114,107,114,101,100,58,91,49,51,57,44,48,44,48,93,44,100,97,114,107,115,97,108,109,111,110,58,91,50,51,51,44,49,53,48,44,49,50,50,93,44,100,97,114,107,115,101,97,103,114,101,101,110,58,91,49,52,51,44,49,56,56,44,49,52,51,93,44,100,97,114,107,115,108,97,116,101,98,108,117,101,58,91,55,50,44,54,49,44,49,51,57,93,44,100,97,114,107,115,108,97,116,101,103,114,97,121,58,91,52,55,44,55,57,44,55,57,93,44,100,97,114,107,115,108,97,116,101,103,114,101,121,58,91,52,55,44,55,57,44,55,57,93,44,100,97,114,107,116,117,114,113,117,111,105,115,101,58,91,48,44,50,48,54,44,50,48,57,93,44,100,97,114,107,118,105,111,108,101,116,58,91,49,52,56,44,48,44,50,49,49,93,44,100,101,101,112,112,105,110,107,58,91,50,53,53,44,50,48,44,49,52,55,93,44,100,101,101,112,115,107,121,98,108,117,101,58,91,48,44,49,57,49,44,50,53,53,93,44,100,105,109,103,114,97,121,58,91,49,48,53,44,49,48,53,44,49,48,53,93,44,100,105,109,103,114,101,121,58,91,49,48,53,44,49,48,53,44,49,48,53,93,44,100,111,100,103,101,114,98,108,117,101,58,91,51,48,44,49,52,52,44,50,53,53,93,44,102,105,114,101,98,114,105,99,107,58,91,49,55,56,44,51,52,44,51,52,93,44,102,108,111,114,97,108,119,104,105,116,101,58,91,50,53,53,44,50,53,48,44,50,52,48,93,44,102,111,114,101,115,116,103,114,101,101,110,58,91,51,52,44,49,51,57,44,51,52,93,44,102,117,99,104,115,105,97,58,91,50,53,53,44,48,44,50,53,53,93,44,103,97,105,110,115,98,111,114,111,58,91,50,50,48,44,50,50,48,44,50,50,48,93,44,103,104,111,115,116,119,104,105,116,101,58,91,50,52,56,44,50,52,56,44,50,53,53,93,44,103,111,108,100,58,91,50,53,53,44,50,49,53,44,48,93,44,103,111,108,100,101,110,114,111,100,58,91,50,49,56,44,49,54,53,44,51,50,93,44,103,114,97,121,58,91,49,50,56,44,49,50,56,44,49,50,56,93,44,103,114,101,101,110,58,91,48,44,49,50,56,44,48,93,44,103,114,101,101,110,121,101,108,108,111,119,58,91,49,55,51,44,50,53,53,44,52,55,93,44,103,114,101,121,58,91,49,50,56,44,49,50,56,44,49,50,56,93,44,104,111,110,101,121,100,101,119,58,91,50,52,48,44,50,53,53,44,50,52,48,93,44,104,111,116,112,105,110,107,58,91,50,53,53,44,49,48,53,44,49,56,48,93,44,105,110,100,105,97,110,114,101,100,58,91,50,48,53,44,57,50,44,57,50,93,44,105,110,100,105,103,111,58,91,55,53,44,48,44,49,51,48,93,44,105,118,111,114,121,58,91,50,53,53,44,50,53,53,44,50,52,48,93,44,107,104,97,107,105,58,91,50,52,48,44,50,51,48,44,49,52,48,93,44,108,97,118,101,110,100,101,114,58,91,50,51,48,44,50,51,48,44,50,53,48,93,44,108,97,118,101,110,100,101,114,98,108,117,115,104,58,91,50,53,53,44,50,52,48,44,50,52,53,93,44,108,97,119,110,103,114,101,101,110,58,91,49,50,52,44,50,53,50,44,48,93,44,108,101,109,111,110,99,104,105,102,102,111,110,58,91,50,53,53,44,50,53,48,44,50,48,53,93,44,108,105,103,104,116,98,108,117,101,58,91,49,55,51,44,50,49,54,44,50,51,48,93,44,108,105,103,104,116,99,111,114,97,108,58,91,50,52,48,44,49,50,56,44,49,50,56,93,44,108,105,103,104,116,99,121,97,110,58,91,50,50,52,44,50,53,53,44,50,53,53,93,44,108,105,103,104,116,103,111,108,100,101,110,114,111,100,121,101,108,108,111,119,58,91,50,53,48,44,50,53,48,44,50,49,48,93,44,108,105,103,104,116,103,114,97,121,58,91,50,49,49,44,50,49,49,44,50,49,49,93,44,108,105,103,104,116,103,114,101,101,110,58,91,49,52,52,44,50,51,56,44,49,52,52,93,44,108,105,103,104,116,103,114,101,121,58,91,50,49,49,44,50,49,49,44,50,49,49,93,44,108,105,103,104,116,112,105,110,107,58,91,50,53,53,44,49,56,50,44,49,57,51,93,44,108,105,103,104,116,115,97,108,109,111,110,58,91,50,53,53,44,49,54,48,44,49,50,50,93,44,108,105,103,104,116,115,101,97,103,114,101,101,110,58,91,51,50,44,49,55,56,44,49,55,48,93,44,108,105,103,104,116,115,107,121,98,108,117,101,58,91,49,51,53,44,50,48,54,44,50,53,48,93,44,108,105,103,104,116,115,108,97,116,101,103,114,97,121,58,91,49,49,57,44,49,51,54,44,49,53,51,93,44,108,105,103,104,116,115,108,97,116,101,103,114,101,121,58,91,49,49,57,44,49,51,54,44,49,53,51,93,44,108,105,103,104,116,115,116,101,101,108,98,108,117,101,58,91,49,55,54,44,49,57,54,44,50,50,50,93,44,108,105,103,104,116,121,101,108,108,111,119,58,91,50,53,53,44,50,53,53,44,50,50,52,93,44,108,105,109,101,58,91,48,44,50,53,53,44,48,93,44,108,105,109,101,103,114,101,101,110,58,91,53,48,44,50,48,53,44,53,48,93,44,108,105,110,101,110,58,91,50,53,48,44,50,52,48,44,50,51,48,93,44,109,97,103,101,110,116,97,58,91,50,53,53,44,48,44,50,53,53,93,44,109,97,114,111,111,110,58,91,49,50,56,44,48,44,48,93,44,109,101,100,105,117,109,97,113,117,97,109,97,114,105,110,101,58,91,49,48,50,44,50,48,53,44,49,55,48,93,44,109,101,100,105,117,109,98,108,117,101,58,91,48,44,48,44,50,48,53,93,44,109,101,100,105,117,109,111,114,99,104,105,100,58,91,49,56,54,44,56,53,44,50,49,49,93,44,109,101,100,105,117,109,112,117,114,112,108,101,58,91,49,52,55,44,49,49,50,44,50,49,57,93,44,109,101,100,105,117,109,115,101,97,103,114,101,101,110,58,91,54,48,44,49,55,57,44,49,49,51,93,44,109,101,100,105,117,109,115,108,97,116,101,98,108,117,101,58,91,49,50,51,44,49,48,52,44,50,51,56,93,44,109,101,100,105,117,109,115,112,114,105,110,103,103,114,101,101,110,58,91,48,44,50,53,48,44,49,53,52,93,44,109,101,100,105,117,109,116,117,114,113,117,111,105,115,101,58,91,55,50,44,50,48,57,44,50,48,52,93,44,109,101,100,105,117,109,118,105,111,108,101,116,114,101,100,58,91,49,57,57,44,50,49,44,49,51,51,93,44,109,105,100,110,105,103,104,116,98,108,117,101,58,91,50,53,44,50,53,44,49,49,50,93,44,109,105,110,116,99,114,101,97,109,58,91,50,52,53,44,50,53,53,44,50,53,48,93,44,109,105,115,116,121,114,111,115,101,58,91,50,53,53,44,50,50,56,44,50,50,53,93,44,109,111,99,99,97,115,105,110,58,91,50,53,53,44,50,50,56,44,49,56,49,93,44,110,97,118,97,106,111,119,104,105,116,101,58,91,50,53,53,44,50,50,50,44,49,55,51,93,44,110,97,118,121,58,91,48,44,48,44,49,50,56,93,44,111,108,100,108,97,99,101,58,91,50,53,51,44,50,52,53,44,50,51,48,93,44,111,108,105,118,101,58,91,49,50,56,44,49,50,56,44,48,93,44,111,108,105,118,101,100,114,97,98,58,91,49,48,55,44,49,52,50,44,51,53,93,44,111,114,97,110,103,101,58,91,50,53,53,44,49,54,53,44,48,93,44,111,114,97,110,103,101,114,101,100,58,91,50,53,53,44,54,57,44,48,93,44,111,114,99,104,105,100,58,91,50,49,56,44,49,49,50,44,50,49,52,93,44,112,97,108,101,103,111,108,100,101,110,114,111,100,58,91,50,51,56,44,50,51,50,44,49,55,48,93,44,112,97,108,101,103,114,101,101,110,58,91,49,53,50,44,50,53,49,44,49,53,50,93,44,112,97,108,101,116,117,114,113,117,111,105,115,101,58,91,49,55,53,44,50,51,56,44,50,51,56,93,44,112,97,108,101,118,105,111,108,101,116,114,101,100,58,91,50,49,57,44,49,49,50,44,49,52,55,93,44,112,97,112,97,121,97,119,104,105,112,58,91,50,53,53,44,50,51,57,44,50,49,51,93,44,112,101,97,99,104,112,117,102,102,58,91,50,53,53,44,50,49,56,44,49,56,53,93,44,112,101,114,117,58,91,50,48,53,44,49,51,51,44,54,51,93,44,112,105,110,107,58,91,50,53,53,44,49,57,50,44,50,48,51,93,44,112,108,117,109,58,91,50,50,49,44,49,54,48,44,50,50,49,93,44,112,111,119,100,101,114,98,108,117,101,58,91,49,55,54,44,50,50,52,44,50,51,48,93,44,112,117,114,112,108,101,58,91,49,50,56,44,48,44,49,50,56,93,44,114,101,98,101,99,99,97,112,117,114,112,108,101,58,91,49,48,50,44,53,49,44,49,53,51,93,44,114,101,100,58,91,50,53,53,44,48,44,48,93,44,114,111,115,121,98,114,111,119,110,58,91,49,56,56,44,49,52,51,44,49,52,51,93,44,114,111,121,97,108,98,108,117,101,58,91,54,53,44,49,48,53,44,50,50,53,93,44,115,97,100,100,108,101,98,114,111,119,110,58,91,49,51,57,44,54,57,44,49,57,93,44,115,97,108,109,111,110,58,91,50,53,48,44,49,50,56,44,49,49,52,93,44,115,97,110,100,121,98,114,111,119,110,58,91,50,52,52,44,49,54,52,44,57,54,93,44,115,101,97,103,114,101,101,110,58,91,52,54,44,49,51,57,44,56,55,93,44,115,101,97,115,104,101,108,108,58,91,50,53,53,44,50,52,53,44,50,51,56,93,44,115,105,101,110,110,97,58,91,49,54,48,44,56,50,44,52,53,93,44,115,105,108,118,101,114,58,91,49,57,50,44,49,57,50,44,49,57,50,93,44,115,107,121,98,108,117,101,58,91,49,51,53,44,50,48,54,44,50,51,53,93,44,115,108,97,116,101,98,108,117,101,58,91,49,48,54,44,57,48,44,50,48,53,93,44,115,108,97,116,101,103,114,97,121,58,91,49,49,50,44,49,50,56,44,49,52,52,93,44,115,108,97,116,101,103,114,101,121,58,91,49,49,50,44,49,50,56,44,49,52,52,93,44,115,110,111,119,58,91,50,53,53,44,50,53,48,44,50,53,48,93,44,115,112,114,105,110,103,103,114,101,101,110,58,91,48,44,50,53,53,44,49,50,55,93,44,115,116,101,101,108,98,108,117,101,58,91,55,48,44,49,51,48,44,49,56,48,93,44,116,97,110,58,91,50,49,48,44,49,56,48,44,49,52,48,93,44,116,101,97,108,58,91,48,44,49,50,56,44,49,50,56,93,44,116,104,105,115,116,108,101,58,91,50,49,54,44,49,57,49,44,50,49,54,93,44,116,111,109,97,116,111,58,91,50,53,53,44,57,57,44,55,49,93,44,116,117,114,113,117,111,105,115,101,58,91,54,52,44,50,50,52,44,50,48,56,93,44,118,105,111,108,101,116,58,91,50,51,56,44,49,51,48,44,50,51,56,93,44,119,104,101,97,116,58,91,50,52,53,44,50,50,50,44,49,55,57,93,44,119,104,105,116,101,58,91,50,53,53,44,50,53,53,44,50,53,53,93,44,119,104,105,116,101,115,109,111,107,101,58,91,50,52,53,44,50,52,53,44,50,52,53,93,44,121,101,108,108,111,119,58,91,50,53,53,44,50,53,53,44,48,93,44,121,101,108,108,111,119,103,114,101,101,110,58,91,49,53,52,44,50,48,53,44,53,48,93,125,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,111,41,123,102,117,110,99,116,105,111,110,32,114,40,101,44,116,41,123,114,101,116,117,114,110,32,77,97,116,104,46,112,111,119,40,101,91,48,93,45,116,91,48,93,44,50,41,43,77,97,116,104,46,112,111,119,40,101,91,49,93,45,116,91,49,93,44,50,41,43,77,97,116,104,46,112,111,119,40,101,91,50,93,45,116,91,50,93,44,50,41,125,118,97,114,32,110,61,111,40,53,41,44,105,61,123,125,59,102,111,114,40,118,97,114,32,97,32,105,110,32,110,41,110,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,97,41,38,38,40,105,91,110,91,97,93,93,61,97,41,59,118,97,114,32,108,61,101,46,101,120,112,111,114,116,115,61,123,114,103,98,58,123,99,104,97,110,110,101,108,115,58,51,44,108,97,98,101,108,115,58,34,114,103,98,34,125,44,104,115,108,58,123,99,104,97,110,110,101,108,115,58,51,44,108,97,98,101,108,115,58,34,104,115,108,34,125,44,104,115,118,58,123,99,104,97,110,110,101,108,115,58,51,44,108,97,98,101,108,115,58,34,104,115,118,34,125,44,104,119,98,58,123,99,104,97,110,110,101,108,115,58,51,44,108,97,98,101,108,115,58,34,104,119,98,34,125,44,99,109,121,107,58,123,99,104,97,110,110,101,108,115,58,52,44,108,97,98,101,108,115,58,34,99,109,121,107,34,125,44,120,121,122,58,123,99,104,97,110,110,101,108,115,58,51,44,108,97,98,101,108,115,58,34,120,121,122,34,125,44,108,97,98,58,123,99,104,97,110,110,101,108,115,58,51,44,108,97,98,101,108,115,58,34,108,97,98,34,125,44,108,99,104,58,123,99,104,97,110,110,101,108,115,58,51,44,108,97,98,101,108,115,58,34,108,99,104,34,125,44,104,101,120,58,123,99,104,97,110,110,101,108,115,58,49,44,108,97,98,101,108,115,58,91,34,104,101,120,34,93,125,44,107,101,121,119,111,114,100,58,123,99,104,97,110,110,101,108,115,58,49,44,108,97,98,101,108,115,58,91,34,107,101,121,119,111,114,100,34,93,125,44,97,110,115,105,49,54,58,123,99,104,97,110,110,101,108,115,58,49,44,108,97,98,101,108,115,58,91,34,97,110,115,105,49,54,34,93,125,44,97,110,115,105,50,53,54,58,123,99,104,97,110,110,101,108,115,58,49,44,108,97,98,101,108,115,58,91,34,97,110,115,105,50,53,54,34,93,125,44,104,99,103,58,123,99,104,97,110,110,101,108,115,58,51,44,108,97,98,101,108,115,58,91,34,104,34,44,34,99,34,44,34,103,34,93,125,44,97,112,112,108,101,58,123,99,104,97,110,110,101,108,115,58,51,44,108,97,98,101,108,115,58,91,34,114,49,54,34,44,34,103,49,54,34,44,34,98,49,54,34,93,125,44,103,114,97,121,58,123,99,104,97,110,110,101,108,115,58,49,44,108,97,98,101,108,115,58,91,34,103,114,97,121,34,93,125,125,59,102,111,114,40,118,97,114,32,115,32,105,110,32,108,41,105,102,40,108,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,115,41,41,123,105,102,40,33,40,34,99,104,97,110,110,101,108,115,34,105,110,32,108,91,115,93,41,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,109,105,115,115,105,110,103,32,99,104,97,110,110,101,108,115,32,112,114,111,112,101,114,116,121,58,32,34,43,115,41,59,105,102,40,33,40,34,108,97,98,101,108,115,34,105,110,32,108,91,115,93,41,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,109,105,115,115,105,110,103,32,99,104,97,110,110,101,108,32,108,97,98,101,108,115,32,112,114,111,112,101,114,116,121,58,32,34,43,115,41,59,105,102,40,108,91,115,93,46,108,97,98,101,108,115,46,108,101,110,103,116,104,33,61,61,108,91,115,93,46,99,104,97,110,110,101,108,115,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,99,104,97,110,110,101,108,32,97,110,100,32,108,97,98,101,108,32,99,111,117,110,116,115,32,109,105,115,109,97,116,99,104,58,32,34,43,115,41,59,118,97,114,32,99,61,108,91,115,93,46,99,104,97,110,110,101,108,115,44,117,61,108,91,115,93,46,108,97,98,101,108,115,59,100,101,108,101,116,101,32,108,91,115,93,46,99,104,97,110,110,101,108,115,44,100,101,108,101,116,101,32,108,91,115,93,46,108,97,98,101,108,115,44,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,108,91,115,93,44,34,99,104,97,110,110,101,108,115,34,44,123,118,97,108,117,101,58,99,125,41,44,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,108,91,115,93,44,34,108,97,98,101,108,115,34,44,123,118,97,108,117,101,58,117,125,41,125,108,46,114,103,98,46,104,115,108,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,44,111,44,114,44,110,61,101,91,48,93,47,50,53,53,44,105,61,101,91,49,93,47,50,53,53,44,97,61,101,91,50,93,47,50,53,53,44,108,61,77,97,116,104,46,109,105,110,40,110,44,105,44,97,41,44,115,61,77,97,116,104,46,109,97,120,40,110,44,105,44,97,41,44,99,61,115,45,108,59,114,101,116,117,114,110,32,115,61,61,61,108,63,116,61,48,58,110,61,61,61,115,63,116,61,40,105,45,97,41,47,99,58,105,61,61,61,115,63,116,61,50,43,40,97,45,110,41,47,99,58,97,61,61,61,115,38,38,40,116,61,52,43,40,110,45,105,41,47,99,41,44,116,61,77,97,116,104,46,109,105,110,40,54,48,42,116,44,51,54,48,41,44,116,60,48,38,38,40,116,43,61,51,54,48,41,44,114,61,40,108,43,115,41,47,50,44,111,61,115,61,61,61,108,63,48,58,114,60,61,46,53,63,99,47,40,115,43,108,41,58,99,47,40,50,45,115,45,108,41,44,91,116,44,49,48,48,42,111,44,49,48,48,42,114,93,125,44,108,46,114,103,98,46,104,115,118,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,44,111,44,114,44,110,44,105,44,97,61,101,91,48,93,47,50,53,53,44,108,61,101,91,49,93,47,50,53,53,44,115,61,101,91,50,93,47,50,53,53,44,99,61,77,97,116,104,46,109,97,120,40,97,44,108,44,115,41,44,117,61,99,45,77,97,116,104,46,109,105,110,40,97,44,108,44,115,41,44,104,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,40,99,45,101,41,47,54,47,117,43,46,53,125,59,114,101,116,117,114,110,32,48,61,61,61,117,63,110,61,105,61,48,58,40,105,61,117,47,99,44,116,61,104,40,97,41,44,111,61,104,40,108,41,44,114,61,104,40,115,41,44,97,61,61,61,99,63,110,61,114,45,111,58,108,61,61,61,99,63,110,61,49,47,51,43,116,45,114,58,115,61,61,61,99,38,38,40,110,61,50,47,51,43,111,45,116,41,44,110,60,48,63,110,43,61,49,58,110,62,49,38,38,40,110,45,61,49,41,41,44,91,51,54,48,42,110,44,49,48,48,42,105,44,49,48,48,42,99,93,125,44,108,46,114,103,98,46,104,119,98,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,91,48,93,44,111,61,101,91,49,93,44,114,61,101,91,50,93,44,110,61,108,46,114,103,98,46,104,115,108,40,101,41,91,48,93,44,105,61,49,47,50,53,53,42,77,97,116,104,46,109,105,110,40,116,44,77,97,116,104,46,109,105,110,40,111,44,114,41,41,59,114,101,116,117,114,110,32,114,61,49,45,49,47,50,53,53,42,77,97,116,104,46,109,97,120,40,116,44,77,97,116,104,46,109,97,120,40,111,44,114,41,41,44,91,110,44,49,48,48,42,105,44,49,48,48,42,114,93,125,44,108,46,114,103,98,46,99,109,121,107,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,44,111,44,114,44,110,44,105,61,101,91,48,93,47,50,53,53,44,97,61,101,91,49,93,47,50,53,53,44,108,61,101,91,50,93,47,50,53,53,59,114,101,116,117,114,110,32,110,61,77,97,116,104,46,109,105,110,40,49,45,105,44,49,45,97,44,49,45,108,41,44,116,61,40,49,45,105,45,110,41,47,40,49,45,110,41,124,124,48,44,111,61,40,49,45,97,45,110,41,47,40,49,45,110,41,124,124,48,44,114,61,40,49,45,108,45,110,41,47,40,49,45,110,41,124,124,48,44,91,49,48,48,42,116,44,49,48,48,42,111,44,49,48,48,42,114,44,49,48,48,42,110,93,125,44,108,46,114,103,98,46,107,101,121,119,111,114,100,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,105,91,101,93,59,105,102,40,116,41,114,101,116,117,114,110,32,116,59,118,97,114,32,111,44,97,61,49,47,48,59,102,111,114,40,118,97,114,32,108,32,105,110,32,110,41,105,102,40,110,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,108,41,41,123,118,97,114,32,115,61,110,91,108,93,44,99,61,114,40,101,44,115,41,59,99,60,97,38,38,40,97,61,99,44,111,61,108,41,125,114,101,116,117,114,110,32,111,125,44,108,46,107,101,121,119,111,114,100,46,114,103,98,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,110,91,101,93,125,44,108,46,114,103,98,46,120,121,122,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,91,48,93,47,50,53,53,44,111,61,101,91,49,93,47,50,53,53,44,114,61,101,91,50,93,47,50,53,53,59,114,101,116,117,114,110,32,116,61,116,62,46,48,52,48,52,53,63,77,97,116,104,46,112,111,119,40,40,116,43,46,48,53,53,41,47,49,46,48,53,53,44,50,46,52,41,58,116,47,49,50,46,57,50,44,111,61,111,62,46,48,52,48,52,53,63,77,97,116,104,46,112,111,119,40,40,111,43,46,48,53,53,41,47,49,46,48,53,53,44,50,46,52,41,58,111,47,49,50,46,57,50,44,114,61,114,62,46,48,52,48,52,53,63,77,97,116,104,46,112,111,119,40,40,114,43,46,48,53,53,41,47,49,46,48,53,53,44,50,46,52,41,58,114,47,49,50,46,57,50,44,91,49,48,48,42,40,46,52,49,50,52,42,116,43,46,51,53,55,54,42,111,43,46,49,56,48,53,42,114,41,44,49,48,48,42,40,46,50,49,50,54,42,116,43,46,55,49,53,50,42,111,43,46,48,55,50,50,42,114,41,44,49,48,48,42,40,46,48,49,57,51,42,116,43,46,49,49,57,50,42,111,43,46,57,53,48,53,42,114,41,93,125,44,108,46,114,103,98,46,108,97,98,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,44,111,44,114,44,110,61,108,46,114,103,98,46,120,121,122,40,101,41,44,105,61,110,91,48,93,44,97,61,110,91,49,93,44,115,61,110,91,50,93,59,114,101,116,117,114,110,32,105,47,61,57,53,46,48,52,55,44,97,47,61,49,48,48,44,115,47,61,49,48,56,46,56,56,51,44,105,61,105,62,46,48,48,56,56,53,54,63,77,97,116,104,46,112,111,119,40,105,44,49,47,51,41,58,55,46,55,56,55,42,105,43,49,54,47,49,49,54,44,97,61,97,62,46,48,48,56,56,53,54,63,77,97,116,104,46,112,111,119,40,97,44,49,47,51,41,58,55,46,55,56,55,42,97,43,49,54,47,49,49,54,44,115,61,115,62,46,48,48,56,56,53,54,63,77,97,116,104,46,112,111,119,40,115,44,49,47,51,41,58,55,46,55,56,55,42,115,43,49,54,47,49,49,54,44,116,61,49,49,54,42,97,45,49,54,44,111,61,53,48,48,42,40,105,45,97,41,44,114,61,50,48,48,42,40,97,45,115,41,44,91,116,44,111,44,114,93,125,44,108,46,104,115,108,46,114,103,98,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,44,111,44,114,44,110,44,105,44,97,61,101,91,48,93,47,51,54,48,44,108,61,101,91,49,93,47,49,48,48,44,115,61,101,91,50,93,47,49,48,48,59,105,102,40,48,61,61,61,108,41,114,101,116,117,114,110,32,105,61,50,53,53,42,115,44,91,105,44,105,44,105,93,59,111,61,115,60,46,53,63,115,42,40,49,43,108,41,58,115,43,108,45,115,42,108,44,116,61,50,42,115,45,111,44,110,61,91,48,44,48,44,48,93,59,102,111,114,40,118,97,114,32,99,61,48,59,99,60,51,59,99,43,43,41,114,61,97,43,49,47,51,42,45,40,99,45,49,41,44,114,60,48,38,38,114,43,43,44,114,62,49,38,38,114,45,45,44,105,61,54,42,114,60,49,63,116,43,54,42,40,111,45,116,41,42,114,58,50,42,114,60,49,63,111,58,51,42,114,60,50,63,116,43,40,111,45,116,41,42,40,50,47,51,45,114,41,42,54,58,116,44,110,91,99,93,61,50,53,53,42,105,59,114,101,116,117,114,110,32,110,125,44,108,46,104,115,108,46,104,115,118,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,44,111,44,114,61,101,91,48,93,44,110,61,101,91,49,93,47,49,48,48,44,105,61,101,91,50,93,47,49,48,48,44,97,61,110,44,108,61,77,97,116,104,46,109,97,120,40,105,44,46,48,49,41,59,114,101,116,117,114,110,32,105,42,61,50,44,110,42,61,105,60,61,49,63,105,58,50,45,105,44,97,42,61,108,60,61,49,63,108,58,50,45,108,44,111,61,40,105,43,110,41,47,50,44,116,61,48,61,61,61,105,63,50,42,97,47,40,108,43,97,41,58,50,42,110,47,40,105,43,110,41,44,91,114,44,49,48,48,42,116,44,49,48,48,42,111,93,125,44,108,46,104,115,118,46,114,103,98,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,91,48,93,47,54,48,44,111,61,101,91,49,93,47,49,48,48,44,114,61,101,91,50,93,47,49,48,48,44,110,61,77,97,116,104,46,102,108,111,111,114,40,116,41,37,54,44,105,61,116,45,77,97,116,104,46,102,108,111,111,114,40,116,41,44,97,61,50,53,53,42,114,42,40,49,45,111,41,44,108,61,50,53,53,42,114,42,40,49,45,111,42,105,41,44,115,61,50,53,53,42,114,42,40,49,45,111,42,40,49,45,105,41,41,59,115,119,105,116,99,104,40,114,42,61,50,53,53,44,110,41,123,99,97,115,101,32,48,58,114,101,116,117,114,110,91,114,44,115,44,97,93,59,99,97,115,101,32,49,58,114,101,116,117,114,110,91,108,44,114,44,97,93,59,99,97,115,101,32,50,58,114,101,116,117,114,110,91,97,44,114,44,115,93,59,99,97,115,101,32,51,58,114,101,116,117,114,110,91,97,44,108,44,114,93,59,99,97,115,101,32,52,58,114,101,116,117,114,110,91,115,44,97,44,114,93,59,99,97,115,101,32,53,58,114,101,116,117,114,110,91,114,44,97,44,108,93,125,125,44,108,46,104,115,118,46,104,115,108,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,44,111,44,114,44,110,61,101,91,48,93,44,105,61,101,91,49,93,47,49,48,48,44,97,61,101,91,50,93,47,49,48,48,44,108,61,77,97,116,104,46,109,97,120,40,97,44,46,48,49,41,59,114,101,116,117,114,110,32,114,61,40,50,45,105,41,42,97,44,116,61,40,50,45,105,41,42,108,44,111,61,105,42,108,44,111,47,61,116,60,61,49,63,116,58,50,45,116,44,111,61,111,124,124,48,44,114,47,61,50,44,91,110,44,49,48,48,42,111,44,49,48,48,42,114,93,125,44,108,46,104,119,98,46,114,103,98,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,44,111,44,114,44,110,44,105,61,101,91,48,93,47,51,54,48,44,97,61,101,91,49,93,47,49,48,48,44,108,61,101,91,50,93,47,49,48,48,44,115,61,97,43,108,59,115,62,49,38,38,40,97,47,61,115,44,108,47,61,115,41,44,116,61,77,97,116,104,46,102,108,111,111,114,40,54,42,105,41,44,111,61,49,45,108,44,114,61,54,42,105,45,116,44,48,33,61,40,49,38,116,41,38,38,40,114,61,49,45,114,41,44,110,61,97,43,114,42,40,111,45,97,41,59,118,97,114,32,99,44,117,44,104,59,115,119,105,116,99,104,40,116,41,123,100,101,102,97,117,108,116,58,99,97,115,101,32,54,58,99,97,115,101,32,48,58,99,61,111,44,117,61,110,44,104,61,97,59,98,114,101,97,107,59,99,97,115,101,32,49,58,99,61,110,44,117,61,111,44,104,61,97,59,98,114,101,97,107,59,99,97,115,101,32,50,58,99,61,97,44,117,61,111,44,104,61,110,59,98,114,101,97,107,59,99,97,115,101,32,51,58,99,61,97,44,117,61,110,44,104,61,111,59,98,114,101,97,107,59,99,97,115,101,32,52,58,99,61,110,44,117,61,97,44,104,61,111,59,98,114,101,97,107,59,99,97,115,101,32,53,58,99,61,111,44,117,61,97,44,104,61,110,125,114,101,116,117,114,110,91,50,53,53,42,99,44,50,53,53,42,117,44,50,53,53,42,104,93,125,44,108,46,99,109,121,107,46,114,103,98,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,44,111,44,114,44,110,61,101,91,48,93,47,49,48,48,44,105,61,101,91,49,93,47,49,48,48,44,97,61,101,91,50,93,47,49,48,48,44,108,61,101,91,51,93,47,49,48,48,59,114,101,116,117,114,110,32,116,61,49,45,77,97,116,104,46,109,105,110,40,49,44,110,42,40,49,45,108,41,43,108,41,44,111,61,49,45,77,97,116,104,46,109,105,110,40,49,44,105,42,40,49,45,108,41,43,108,41,44,114,61,49,45,77,97,116,104,46,109,105,110,40,49,44,97,42,40,49,45,108,41,43,108,41,44,91,50,53,53,42,116,44,50,53,53,42,111,44,50,53,53,42,114,93,125,44,108,46,120,121,122,46,114,103,98,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,44,111,44,114,44,110,61,101,91,48,93,47,49,48,48,44,105,61,101,91,49,93,47,49,48,48,44,97,61,101,91,50,93,47,49,48,48,59,114,101,116,117,114,110,32,116,61,51,46,50,52,48,54,42,110,43,45,49,46,53,51,55,50,42,105,43,45,46,52,57,56,54,42,97,44,111,61,45,46,57,54,56,57,42,110,43,49,46,56,55,53,56,42,105,43,46,48,52,49,53,42,97,44,114,61,46,48,53,53,55,42,110,43,45,46,50,48,52,42,105,43,49,46,48,53,55,42,97,44,116,61,116,62,46,48,48,51,49,51,48,56,63,49,46,48,53,53,42,77,97,116,104,46,112,111,119,40,116,44,49,47,50,46,52,41,45,46,48,53,53,58,49,50,46,57,50,42,116,44,111,61,111,62,46,48,48,51,49,51,48,56,63,49,46,48,53,53,42,77,97,116,104,46,112,111,119,40,111,44,49,47,50,46,52,41,45,46,48,53,53,58,49,50,46,57,50,42,111,44,114,61,114,62,46,48,48,51,49,51,48,56,63,49,46,48,53,53,42,77,97,116,104,46,112,111,119,40,114,44,49,47,50,46,52,41,45,46,48,53,53,58,49,50,46,57,50,42,114,44,116,61,77,97,116,104,46,109,105,110,40,77,97,116,104,46,109,97,120,40,48,44,116,41,44,49,41,44,111,61,77,97,116,104,46,109,105,110,40,77,97,116,104,46,109,97,120,40,48,44,111,41,44,49,41,44,114,61,77,97,116,104,46,109,105,110,40,77,97,116,104,46,109,97,120,40,48,44,114,41,44,49,41,44,91,50,53,53,42,116,44,50,53,53,42,111,44,50,53,53,42,114,93,125,44,108,46,120,121,122,46,108,97,98,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,44,111,44,114,44,110,61,101,91,48,93,44,105,61,101,91,49,93,44,97,61,101,91,50,93,59,114,101,116,117,114,110,32,110,47,61,57,53,46,48,52,55,44,105,47,61,49,48,48,44,97,47,61,49,48,56,46,56,56,51,44,110,61,110,62,46,48,48,56,56,53,54,63,77,97,116,104,46,112,111,119,40,110,44,49,47,51,41,58,55,46,55,56,55,42,110,43,49,54,47,49,49,54,44,105,61,105,62,46,48,48,56,56,53,54,63,77,97,116,104,46,112,111,119,40,105,44,49,47,51,41,58,55,46,55,56,55,42,105,43,49,54,47,49,49,54,44,97,61,97,62,46,48,48,56,56,53,54,63,77,97,116,104,46,112,111,119,40,97,44,49,47,51,41,58,55,46,55,56,55,42,97,43,49,54,47,49,49,54,44,116,61,49,49,54,42,105,45,49,54,44,111,61,53,48,48,42,40,110,45,105,41,44,114,61,50,48,48,42,40,105,45,97,41,44,91,116,44,111,44,114,93,125,44,108,46,108,97,98,46,120,121,122,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,44,111,44,114,44,110,61,101,91,48,93,44,105,61,101,91,49,93,44,97,61,101,91,50,93,59,111,61,40,110,43,49,54,41,47,49,49,54,44,116,61,105,47,53,48,48,43,111,44,114,61,111,45,97,47,50,48,48,59,118,97,114,32,108,61,77,97,116,104,46,112,111,119,40,111,44,51,41,44,115,61,77,97,116,104,46,112,111,119,40,116,44,51,41,44,99,61,77,97,116,104,46,112,111,119,40,114,44,51,41,59,114,101,116,117,114,110,32,111,61,108,62,46,48,48,56,56,53,54,63,108,58,40,111,45,49,54,47,49,49,54,41,47,55,46,55,56,55,44,116,61,115,62,46,48,48,56,56,53,54,63,115,58,40,116,45,49,54,47,49,49,54,41,47,55,46,55,56,55,44,114,61,99,62,46,48,48,56,56,53,54,63,99,58,40,114,45,49,54,47,49,49,54,41,47,55,46,55,56,55,44,116,42,61,57,53,46,48,52,55,44,111,42,61,49,48,48,44,114,42,61,49,48,56,46,56,56,51,44,91,116,44,111,44,114,93,125,44,108,46,108,97,98,46,108,99,104,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,44,111,44,114,44,110,61,101,91,48,93,44,105,61,101,91,49,93,44,97,61,101,91,50,93,59,114,101,116,117,114,110,32,116,61,77,97,116,104,46,97,116,97,110,50,40,97,44,105,41,44,111,61,51,54,48,42,116,47,50,47,77,97,116,104,46,80,73,44,111,60,48,38,38,40,111,43,61,51,54,48,41,44,114,61,77,97,116,104,46,115,113,114,116,40,105,42,105,43,97,42,97,41,44,91,110,44,114,44,111,93,125,44,108,46,108,99,104,46,108,97,98,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,44,111,44,114,44,110,61,101,91,48,93,44,105,61,101,91,49,93,44,97,61,101,91,50,93,59,114,101,116,117,114,110,32,114,61,97,47,51,54,48,42,50,42,77,97,116,104,46,80,73,44,116,61,105,42,77,97,116,104,46,99,111,115,40,114,41,44,111,61,105,42,77,97,116,104,46,115,105,110,40,114,41,44,91,110,44,116,44,111,93,125,44,108,46,114,103,98,46,97,110,115,105,49,54,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,91,48,93,44,111,61,101,91,49,93,44,114,61,101,91,50,93,44,110,61,49,32,105,110,32,97,114,103,117,109,101,110,116,115,63,97,114,103,117,109,101,110,116,115,91,49,93,58,108,46,114,103,98,46,104,115,118,40,101,41,91,50,93,59,105,102,40,48,61,61,61,40,110,61,77,97,116,104,46,114,111,117,110,100,40,110,47,53,48,41,41,41,114,101,116,117,114,110,32,51,48,59,118,97,114,32,105,61,51,48,43,40,77,97,116,104,46,114,111,117,110,100,40,114,47,50,53,53,41,60,60,50,124,77,97,116,104,46,114,111,117,110,100,40,111,47,50,53,53,41,60,60,49,124,77,97,116,104,46,114,111,117,110,100,40,116,47,50,53,53,41,41,59,114,101,116,117,114,110,32,50,61,61,61,110,38,38,40,105,43,61,54,48,41,44,105,125,44,108,46,104,115,118,46,97,110,115,105,49,54,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,108,46,114,103,98,46,97,110,115,105,49,54,40,108,46,104,115,118,46,114,103,98,40,101,41,44,101,91,50,93,41,125,44,108,46,114,103,98,46,97,110,115,105,50,53,54,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,91,48,93,44,111,61,101,91,49,93,44,114,61,101,91,50,93,59,114,101,116,117,114,110,32,116,61,61,61,111,38,38,111,61,61,61,114,63,116,60,56,63,49,54,58,116,62,50,52,56,63,50,51,49,58,77,97,116,104,46,114,111,117,110,100,40,40,116,45,56,41,47,50,52,55,42,50,52,41,43,50,51,50,58,49,54,43,51,54,42,77,97,116,104,46,114,111,117,110,100,40,116,47,50,53,53,42,53,41,43,54,42,77,97,116,104,46,114,111,117,110,100,40,111,47,50,53,53,42,53,41,43,77,97,116,104,46,114,111,117,110,100,40,114,47,50,53,53,42,53,41,125,44,108,46,97,110,115,105,49,54,46,114,103,98,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,37,49,48,59,105,102,40,48,61,61,61,116,124,124,55,61,61,61,116,41,114,101,116,117,114,110,32,101,62,53,48,38,38,40,116,43,61,51,46,53,41,44,116,61,116,47,49,48,46,53,42,50,53,53,44,91,116,44,116,44,116,93,59,118,97,114,32,111,61,46,53,42,40,49,43,126,126,40,101,62,53,48,41,41,59,114,101,116,117,114,110,91,40,49,38,116,41,42,111,42,50,53,53,44,40,116,62,62,49,38,49,41,42,111,42,50,53,53,44,40,116,62,62,50,38,49,41,42,111,42,50,53,53,93,125,44,108,46,97,110,115,105,50,53,54,46,114,103,98,61,102,117,110,99,116,105,111,110,40,101,41,123,105,102,40,101,62,61,50,51,50,41,123,118,97,114,32,116,61,49,48,42,40,101,45,50,51,50,41,43,56,59,114,101,116,117,114,110,91,116,44,116,44,116,93,125,101,45,61,49,54,59,118,97,114,32,111,59,114,101,116,117,114,110,91,77,97,116,104,46,102,108,111,111,114,40,101,47,51,54,41,47,53,42,50,53,53,44,77,97,116,104,46,102,108,111,111,114,40,40,111,61,101,37,51,54,41,47,54,41,47,53,42,50,53,53,44,111,37,54,47,53,42,50,53,53,93,125,44,108,46,114,103,98,46,104,101,120,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,40,40,50,53,53,38,77,97,116,104,46,114,111,117,110,100,40,101,91,48,93,41,41,60,60,49,54,41,43,40,40,50,53,53,38,77,97,116,104,46,114,111,117,110,100,40,101,91,49,93,41,41,60,60,56,41,43,40,50,53,53,38,77,97,116,104,46,114,111,117,110,100,40,101,91,50,93,41,41,44,111,61,116,46,116,111,83,116,114,105,110,103,40,49,54,41,46,116,111,85,112,112,101,114,67,97,115,101,40,41,59,114,101,116,117,114,110,34,48,48,48,48,48,48,34,46,115,117,98,115,116,114,105,110,103,40,111,46,108,101,110,103,116,104,41,43,111,125,44,108,46,104,101,120,46,114,103,98,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,46,116,111,83,116,114,105,110,103,40,49,54,41,46,109,97,116,99,104,40,47,91,97,45,102,48,45,57,93,123,54,125,124,91,97,45,102,48,45,57,93,123,51,125,47,105,41,59,105,102,40,33,116,41,114,101,116,117,114,110,91,48,44,48,44,48,93,59,118,97,114,32,111,61,116,91,48,93,59,51,61,61,61,116,91,48,93,46,108,101,110,103,116,104,38,38,40,111,61,111,46,115,112,108,105,116,40,34,34,41,46,109,97,112,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,43,101,125,41,46,106,111,105,110,40,34,34,41,41,59,118,97,114,32,114,61,112,97,114,115,101,73,110,116,40,111,44,49,54,41,59,114,101,116,117,114,110,91,114,62,62,49,54,38,50,53,53,44,114,62,62,56,38,50,53,53,44,50,53,53,38,114,93,125,44,108,46,114,103,98,46,104,99,103,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,44,111,44,114,61,101,91,48,93,47,50,53,53,44,110,61,101,91,49,93,47,50,53,53,44,105,61,101,91,50,93,47,50,53,53,44,97,61,77,97,116,104,46,109,97,120,40,77,97,116,104,46,109,97,120,40,114,44,110,41,44,105,41,44,108,61,77,97,116,104,46,109,105,110,40,77,97,116,104,46,109,105,110,40,114,44,110,41,44,105,41,44,115,61,97,45,108,59,114,101,116,117,114,110,32,116,61,115,60,49,63,108,47,40,49,45,115,41,58,48,44,111,61,115,60,61,48,63,48,58,97,61,61,61,114,63,40,110,45,105,41,47,115,37,54,58,97,61,61,61,110,63,50,43,40,105,45,114,41,47,115,58,52,43,40,114,45,110,41,47,115,43,52,44,111,47,61,54,44,111,37,61,49,44,91,51,54,48,42,111,44,49,48,48,42,115,44,49,48,48,42,116,93,125,44,108,46,104,115,108,46,104,99,103,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,91,49,93,47,49,48,48,44,111,61,101,91,50,93,47,49,48,48,44,114,61,49,44,110,61,48,59,114,101,116,117,114,110,32,114,61,111,60,46,53,63,50,42,116,42,111,58,50,42,116,42,40,49,45,111,41,44,114,60,49,38,38,40,110,61,40,111,45,46,53,42,114,41,47,40,49,45,114,41,41,44,91,101,91,48,93,44,49,48,48,42,114,44,49,48,48,42,110,93,125,44,108,46,104,115,118,46,104,99,103,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,91,49,93,47,49,48,48,44,111,61,101,91,50,93,47,49,48,48,44,114,61,116,42,111,44,110,61,48,59,114,101,116,117,114,110,32,114,60,49,38,38,40,110,61,40,111,45,114,41,47,40,49,45,114,41,41,44,91,101,91,48,93,44,49,48,48,42,114,44,49,48,48,42,110,93,125,44,108,46,104,99,103,46,114,103,98,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,91,48,93,47,51,54,48,44,111,61,101,91,49,93,47,49,48,48,44,114,61,101,91,50,93,47,49,48,48,59,105,102,40,48,61,61,61,111,41,114,101,116,117,114,110,91,50,53,53,42,114,44,50,53,53,42,114,44,50,53,53,42,114,93,59,118,97,114,32,110,61,91,48,44,48,44,48,93,44,105,61,116,37,49,42,54,44,97,61,105,37,49,44,108,61,49,45,97,44,115,61,48,59,115,119,105,116,99,104,40,77,97,116,104,46,102,108,111,111,114,40,105,41,41,123,99,97,115,101,32,48,58,110,91,48,93,61,49,44,110,91,49,93,61,97,44,110,91,50,93,61,48,59,98,114,101,97,107,59,99,97,115,101,32,49,58,110,91,48,93,61,108,44,110,91,49,93,61,49,44,110,91,50,93,61,48,59,98,114,101,97,107,59,99,97,115,101,32,50,58,110,91,48,93,61,48,44,110,91,49,93,61,49,44,110,91,50,93,61,97,59,98,114,101,97,107,59,99,97,115,101,32,51,58,110,91,48,93,61,48,44,110,91,49,93,61,108,44,110,91,50,93,61,49,59,98,114,101,97,107,59,99,97,115,101,32,52,58,110,91,48,93,61,97,44,110,91,49,93,61,48,44,110,91,50,93,61,49,59,98,114,101,97,107,59,100,101,102,97,117,108,116,58,110,91,48,93,61,49,44,110,91,49,93,61,48,44,110,91,50,93,61,108,125,114,101,116,117,114,110,32,115,61,40,49,45,111,41,42,114,44,91,50,53,53,42,40,111,42,110,91,48,93,43,115,41,44,50,53,53,42,40,111,42,110,91,49,93,43,115,41,44,50,53,53,42,40,111,42,110,91,50,93,43,115,41,93,125,44,108,46,104,99,103,46,104,115,118,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,91,49,93,47,49,48,48,44,111,61,101,91,50,93,47,49,48,48,44,114,61,116,43,111,42,40,49,45,116,41,44,110,61,48,59,114,101,116,117,114,110,32,114,62,48,38,38,40,110,61,116,47,114,41,44,91,101,91,48,93,44,49,48,48,42,110,44,49,48,48,42,114,93,125,44,108,46,104,99,103,46,104,115,108,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,91,49,93,47,49,48,48,44,111,61,101,91,50,93,47,49,48,48,44,114,61,111,42,40,49,45,116,41,43,46,53,42,116,44,110,61,48,59,114,101,116,117,114,110,32,114,62,48,38,38,114,60,46,53,63,110,61,116,47,40,50,42,114,41,58,114,62,61,46,53,38,38,114,60,49,38,38,40,110,61,116,47,40,50,42,40,49,45,114,41,41,41,44,91,101,91,48,93,44,49,48,48,42,110,44,49,48,48,42,114,93,125,44,108,46,104,99,103,46,104,119,98,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,91,49,93,47,49,48,48,44,111,61,101,91,50,93,47,49,48,48,44,114,61,116,43,111,42,40,49,45,116,41,59,114,101,116,117,114,110,91,101,91,48,93,44,49,48,48,42,40,114,45,116,41,44,49,48,48,42,40,49,45,114,41,93,125,44,108,46,104,119,98,46,104,99,103,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,91,49,93,47,49,48,48,44,111,61,101,91,50,93,47,49,48,48,44,114,61,49,45,111,44,110,61,114,45,116,44,105,61,48,59,114,101,116,117,114,110,32,110,60,49,38,38,40,105,61,40,114,45,110,41,47,40,49,45,110,41,41,44,91,101,91,48,93,44,49,48,48,42,110,44,49,48,48,42,105,93,125,44,108,46,97,112,112,108,101,46,114,103,98,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,91,101,91,48,93,47,54,53,53,51,53,42,50,53,53,44,101,91,49,93,47,54,53,53,51,53,42,50,53,53,44,101,91,50,93,47,54,53,53,51,53,42,50,53,53,93,125,44,108,46,114,103,98,46,97,112,112,108,101,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,91,101,91,48,93,47,50,53,53,42,54,53,53,51,53,44,101,91,49,93,47,50,53,53,42,54,53,53,51,53,44,101,91,50,93,47,50,53,53,42,54,53,53,51,53,93,125,44,108,46,103,114,97,121,46,114,103,98,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,91,101,91,48,93,47,49,48,48,42,50,53,53,44,101,91,48,93,47,49,48,48,42,50,53,53,44,101,91,48,93,47,49,48,48,42,50,53,53,93,125,44,108,46,103,114,97,121,46,104,115,108,61,108,46,103,114,97,121,46,104,115,118,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,91,48,44,48,44,101,91,48,93,93,125,44,108,46,103,114,97,121,46,104,119,98,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,91,48,44,49,48,48,44,101,91,48,93,93,125,44,108,46,103,114,97,121,46,99,109,121,107,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,91,48,44,48,44,48,44,101,91,48,93,93,125,44,108,46,103,114,97,121,46,108,97,98,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,91,101,91,48,93,44,48,44,48,93,125,44,108,46,103,114,97,121,46,104,101,120,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,50,53,53,38,77,97,116,104,46,114,111,117,110,100,40,101,91,48,93,47,49,48,48,42,50,53,53,41,44,111,61,40,116,60,60,49,54,41,43,40,116,60,60,56,41,43,116,44,114,61,111,46,116,111,83,116,114,105,110,103,40,49,54,41,46,116,111,85,112,112,101,114,67,97,115,101,40,41,59,114,101,116,117,114,110,34,48,48,48,48,48,48,34,46,115,117,98,115,116,114,105,110,103,40,114,46,108,101,110,103,116,104,41,43,114,125,44,108,46,114,103,98,46,103,114,97,121,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,91,40,101,91,48,93,43,101,91,49,93,43,101,91,50,93,41,47,51,47,50,53,53,42,49,48,48,93,125,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,111,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,102,117,110,99,116,105,111,110,32,114,40,101,41,123,114,101,116,117,114,110,32,101,38,38,101,46,95,95,101,115,77,111,100,117,108,101,63,101,58,123,100,101,102,97,117,108,116,58,101,125,125,118,97,114,32,110,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,83,121,109,98,111,108,38,38,34,115,121,109,98,111,108,34,61,61,116,121,112,101,111,102,32,83,121,109,98,111,108,46,105,116,101,114,97,116,111,114,63,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,121,112,101,111,102,32,101,125,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,38,38,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,83,121,109,98,111,108,38,38,101,46,99,111,110,115,116,114,117,99,116,111,114,61,61,61,83,121,109,98,111,108,38,38,101,33,61,61,83,121,109,98,111,108,46,112,114,111,116,111,116,121,112,101,63,34,115,121,109,98,111,108,34,58,116,121,112,101,111,102,32,101,125,44,105,61,111,40,56,41,44,97,61,114,40,105,41,44,108,61,111,40,48,41,44,115,61,114,40,108,41,44,99,61,34,99,111,108,111,114,112,105,99,107,101,114,34,59,115,46,100,101,102,97,117,108,116,91,99,93,61,97,46,100,101,102,97,117,108,116,44,115,46,100,101,102,97,117,108,116,46,102,110,91,99,93,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,115,108,105,99,101,46,99,97,108,108,40,97,114,103,117,109,101,110,116,115,44,49,41,44,111,61,49,61,61,61,116,104,105,115,46,108,101,110,103,116,104,44,114,61,110,117,108,108,44,105,61,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,105,61,40,48,44,115,46,100,101,102,97,117,108,116,41,40,116,104,105,115,41,44,108,61,105,46,100,97,116,97,40,99,41,44,117,61,34,111,98,106,101,99,116,34,61,61,61,40,118,111,105,100,32,48,61,61,61,101,63,34,117,110,100,101,102,105,110,101,100,34,58,110,40,101,41,41,63,101,58,123,125,59,108,124,124,40,108,61,110,101,119,32,97,46,100,101,102,97,117,108,116,40,116,104,105,115,44,117,41,44,105,46,100,97,116,97,40,99,44,108,41,41,44,111,38,38,40,114,61,105,44,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,101,38,38,40,114,61,34,99,111,108,111,114,112,105,99,107,101,114,34,61,61,61,101,63,108,58,115,46,100,101,102,97,117,108,116,46,105,115,70,117,110,99,116,105,111,110,40,108,91,101,93,41,63,108,91,101,93,46,97,112,112,108,121,40,108,44,116,41,58,108,91,101,93,41,41,125,41,59,114,101,116,117,114,110,32,111,63,114,58,105,125,44,115,46,100,101,102,97,117,108,116,46,102,110,91,99,93,46,99,111,110,115,116,114,117,99,116,111,114,61,97,46,100,101,102,97,117,108,116,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,111,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,102,117,110,99,116,105,111,110,32,114,40,101,41,123,114,101,116,117,114,110,32,101,38,38,101,46,95,95,101,115,77,111,100,117,108,101,63,101,58,123,100,101,102,97,117,108,116,58,101,125,125,102,117,110,99,116,105,111,110,32,110,40,101,44,116,41,123,105,102,40,33,40,101,32,105,110,115,116,97,110,99,101,111,102,32,116,41,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,67,97,110,110,111,116,32,99,97,108,108,32,97,32,99,108,97,115,115,32,97,115,32,97,32,102,117,110,99,116,105,111,110,34,41,125,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,44,34,95,95,101,115,77,111,100,117,108,101,34,44,123,118,97,108,117,101,58,33,48,125,41,59,118,97,114,32,105,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,101,40,101,44,116,41,123,102,111,114,40,118,97,114,32,111,61,48,59,111,60,116,46,108,101,110,103,116,104,59,111,43,43,41,123,118,97,114,32,114,61,116,91,111,93,59,114,46,101,110,117,109,101,114,97,98,108,101,61,114,46,101,110,117,109,101,114,97,98,108,101,124,124,33,49,44,114,46,99,111,110,102,105,103,117,114,97,98,108,101,61,33,48,44,34,118,97,108,117,101,34,105,110,32,114,38,38,40,114,46,119,114,105,116,97,98,108,101,61,33,48,41,44,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,101,44,114,46,107,101,121,44,114,41,125,125,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,44,111,44,114,41,123,114,101,116,117,114,110,32,111,38,38,101,40,116,46,112,114,111,116,111,116,121,112,101,44,111,41,44,114,38,38,101,40,116,44,114,41,44,116,125,125,40,41,44,97,61,111,40,49,41,44,108,61,114,40,97,41,44,115,61,111,40,51,41,44,99,61,114,40,115,41,44,117,61,111,40,57,41,44,104,61,114,40,117,41,44,112,61,111,40,48,41,44,102,61,114,40,112,41,44,100,61,111,40,49,51,41,44,118,61,114,40,100,41,44,107,61,111,40,49,52,41,44,103,61,114,40,107,41,44,121,61,111,40,49,53,41,44,98,61,114,40,121,41,44,109,61,111,40,50,50,41,44,119,61,114,40,109,41,44,120,61,111,40,50,51,41,44,95,61,114,40,120,41,44,67,61,111,40,50,52,41,44,77,61,114,40,67,41,44,79,61,111,40,50,41,44,106,61,114,40,79,41,44,72,61,48,44,80,61,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,115,101,108,102,63,115,101,108,102,58,118,111,105,100,32,48,44,69,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,101,40,116,44,111,41,123,110,40,116,104,105,115,44,101,41,44,72,43,61,49,44,116,104,105,115,46,105,100,61,72,44,116,104,105,115,46,108,97,115,116,69,118,101,110,116,61,123,97,108,105,97,115,58,110,117,108,108,44,101,58,110,117,108,108,125,44,116,104,105,115,46,101,108,101,109,101,110,116,61,40,48,44,102,46,100,101,102,97,117,108,116,41,40,116,41,46,97,100,100,67,108,97,115,115,40,34,99,111,108,111,114,112,105,99,107,101,114,45,101,108,101,109,101,110,116,34,41,46,97,116,116,114,40,34,100,97,116,97,45,99,111,108,111,114,112,105,99,107,101,114,45,105,100,34,44,116,104,105,115,46,105,100,41,44,116,104,105,115,46,111,112,116,105,111,110,115,61,102,46,100,101,102,97,117,108,116,46,101,120,116,101,110,100,40,33,48,44,123,125,44,99,46,100,101,102,97,117,108,116,44,111,44,116,104,105,115,46,101,108,101,109,101,110,116,46,100,97,116,97,40,41,41,44,116,104,105,115,46,100,105,115,97,98,108,101,100,61,33,49,44,116,104,105,115,46,101,120,116,101,110,115,105,111,110,115,61,91,93,44,116,104,105,115,46,99,111,110,116,97,105,110,101,114,61,33,48,61,61,61,116,104,105,115,46,111,112,116,105,111,110,115,46,99,111,110,116,97,105,110,101,114,124,124,33,48,33,61,61,116,104,105,115,46,111,112,116,105,111,110,115,46,99,111,110,116,97,105,110,101,114,38,38,33,48,61,61,61,116,104,105,115,46,111,112,116,105,111,110,115,46,105,110,108,105,110,101,63,116,104,105,115,46,101,108,101,109,101,110,116,58,116,104,105,115,46,111,112,116,105,111,110,115,46,99,111,110,116,97,105,110,101,114,44,116,104,105,115,46,99,111,110,116,97,105,110,101,114,61,33,49,33,61,61,116,104,105,115,46,99,111,110,116,97,105,110,101,114,38,38,40,48,44,102,46,100,101,102,97,117,108,116,41,40,116,104,105,115,46,99,111,110,116,97,105,110,101,114,41,44,116,104,105,115,46,105,110,112,117,116,72,97,110,100,108,101,114,61,110,101,119,32,98,46,100,101,102,97,117,108,116,40,116,104,105,115,41,44,116,104,105,115,46,99,111,108,111,114,72,97,110,100,108,101,114,61,110,101,119,32,119,46,100,101,102,97,117,108,116,40,116,104,105,115,41,44,116,104,105,115,46,115,108,105,100,101,114,72,97,110,100,108,101,114,61,110,101,119,32,118,46,100,101,102,97,117,108,116,40,116,104,105,115,41,44,116,104,105,115,46,112,111,112,117,112,72,97,110,100,108,101,114,61,110,101,119,32,103,46,100,101,102,97,117,108,116,40,116,104,105,115,44,80,41,44,116,104,105,115,46,112,105,99,107,101,114,72,97,110,100,108,101,114,61,110,101,119,32,95,46,100,101,102,97,117,108,116,40,116,104,105,115,41,44,116,104,105,115,46,97,100,100,111,110,72,97,110,100,108,101,114,61,110,101,119,32,77,46,100,101,102,97,117,108,116,40,116,104,105,115,41,44,116,104,105,115,46,105,110,105,116,40,41,44,40,48,44,102,46,100,101,102,97,117,108,116,41,40,102,46,100,101,102,97,117,108,116,46,112,114,111,120,121,40,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,116,114,105,103,103,101,114,40,34,99,111,108,111,114,112,105,99,107,101,114,67,114,101,97,116,101,34,41,125,44,116,104,105,115,41,41,125,114,101,116,117,114,110,32,105,40,101,44,91,123,107,101,121,58,34,99,111,108,111,114,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,99,111,108,111,114,72,97,110,100,108,101,114,46,99,111,108,111,114,125,125,44,123,107,101,121,58,34,102,111,114,109,97,116,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,99,111,108,111,114,72,97,110,100,108,101,114,46,102,111,114,109,97,116,125,125,44,123,107,101,121,58,34,112,105,99,107,101,114,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,112,105,99,107,101,114,72,97,110,100,108,101,114,46,112,105,99,107,101,114,125,125,93,44,91,123,107,101,121,58,34,67,111,108,111,114,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,106,46,100,101,102,97,117,108,116,125,125,44,123,107,101,121,58,34,69,120,116,101,110,115,105,111,110,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,108,46,100,101,102,97,117,108,116,125,125,93,41,44,105,40,101,44,91,123,107,101,121,58,34,105,110,105,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,97,100,100,111,110,72,97,110,100,108,101,114,46,98,105,110,100,40,41,44,116,104,105,115,46,105,110,112,117,116,72,97,110,100,108,101,114,46,98,105,110,100,40,41,44,116,104,105,115,46,105,110,105,116,69,120,116,101,110,115,105,111,110,115,40,41,44,116,104,105,115,46,99,111,108,111,114,72,97,110,100,108,101,114,46,98,105,110,100,40,41,44,116,104,105,115,46,112,105,99,107,101,114,72,97,110,100,108,101,114,46,98,105,110,100,40,41,44,116,104,105,115,46,115,108,105,100,101,114,72,97,110,100,108,101,114,46,98,105,110,100,40,41,44,116,104,105,115,46,112,111,112,117,112,72,97,110,100,108,101,114,46,98,105,110,100,40,41,44,116,104,105,115,46,112,105,99,107,101,114,72,97,110,100,108,101,114,46,97,116,116,97,99,104,40,41,44,116,104,105,115,46,117,112,100,97,116,101,40,41,44,116,104,105,115,46,105,110,112,117,116,72,97,110,100,108,101,114,46,105,115,68,105,115,97,98,108,101,100,40,41,38,38,116,104,105,115,46,100,105,115,97,98,108,101,40,41,125,125,44,123,107,101,121,58,34,105,110,105,116,69,120,116,101,110,115,105,111,110,115,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,59,65,114,114,97,121,46,105,115,65,114,114,97,121,40,116,104,105,115,46,111,112,116,105,111,110,115,46,101,120,116,101,110,115,105,111,110,115,41,124,124,40,116,104,105,115,46,111,112,116,105,111,110,115,46,101,120,116,101,110,115,105,111,110,115,61,91,93,41,44,116,104,105,115,46,111,112,116,105,111,110,115,46,100,101,98,117,103,38,38,116,104,105,115,46,111,112,116,105,111,110,115,46,101,120,116,101,110,115,105,111,110,115,46,112,117,115,104,40,123,110,97,109,101,58,34,100,101,98,117,103,103,101,114,34,125,41,44,116,104,105,115,46,111,112,116,105,111,110,115,46,101,120,116,101,110,115,105,111,110,115,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,111,41,123,116,46,114,101,103,105,115,116,101,114,69,120,116,101,110,115,105,111,110,40,101,46,101,120,116,101,110,115,105,111,110,115,91,111,46,110,97,109,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,93,44,111,46,111,112,116,105,111,110,115,124,124,123,125,41,125,41,125,125,44,123,107,101,121,58,34,114,101,103,105,115,116,101,114,69,120,116,101,110,115,105,111,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,62,49,38,38,118,111,105,100,32,48,33,61,61,97,114,103,117,109,101,110,116,115,91,49,93,63,97,114,103,117,109,101,110,116,115,91,49,93,58,123,125,44,111,61,110,101,119,32,101,40,116,104,105,115,44,116,41,59,114,101,116,117,114,110,32,116,104,105,115,46,101,120,116,101,110,115,105,111,110,115,46,112,117,115,104,40,111,41,44,111,125,125,44,123,107,101,121,58,34,100,101,115,116,114,111,121,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,99,111,108,111,114,59,116,104,105,115,46,115,108,105,100,101,114,72,97,110,100,108,101,114,46,117,110,98,105,110,100,40,41,44,116,104,105,115,46,105,110,112,117,116,72,97,110,100,108,101,114,46,117,110,98,105,110,100,40,41,44,116,104,105,115,46,112,111,112,117,112,72,97,110,100,108,101,114,46,117,110,98,105,110,100,40,41,44,116,104,105,115,46,99,111,108,111,114,72,97,110,100,108,101,114,46,117,110,98,105,110,100,40,41,44,116,104,105,115,46,97,100,100,111,110,72,97,110,100,108,101,114,46,117,110,98,105,110,100,40,41,44,116,104,105,115,46,112,105,99,107,101,114,72,97,110,100,108,101,114,46,117,110,98,105,110,100,40,41,44,116,104,105,115,46,101,108,101,109,101,110,116,46,114,101,109,111,118,101,67,108,97,115,115,40,34,99,111,108,111,114,112,105,99,107,101,114,45,101,108,101,109,101,110,116,34,41,46,114,101,109,111,118,101,68,97,116,97,40,34,99,111,108,111,114,112,105,99,107,101,114,34,44,34,99,111,108,111,114,34,41,46,111,102,102,40,34,46,99,111,108,111,114,112,105,99,107,101,114,34,41,44,116,104,105,115,46,116,114,105,103,103,101,114,40,34,99,111,108,111,114,112,105,99,107,101,114,68,101,115,116,114,111,121,34,44,101,41,125,125,44,123,107,101,121,58,34,115,104,111,119,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,112,111,112,117,112,72,97,110,100,108,101,114,46,115,104,111,119,40,101,41,125,125,44,123,107,101,121,58,34,104,105,100,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,112,111,112,117,112,72,97,110,100,108,101,114,46,104,105,100,101,40,101,41,125,125,44,123,107,101,121,58,34,116,111,103,103,108,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,112,111,112,117,112,72,97,110,100,108,101,114,46,116,111,103,103,108,101,40,101,41,125,125,44,123,107,101,121,58,34,103,101,116,86,97,108,117,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,62,48,38,38,118,111,105,100,32,48,33,61,61,97,114,103,117,109,101,110,116,115,91,48,93,63,97,114,103,117,109,101,110,116,115,91,48,93,58,110,117,108,108,44,116,61,116,104,105,115,46,99,111,108,111,114,72,97,110,100,108,101,114,46,99,111,108,111,114,59,114,101,116,117,114,110,32,116,61,116,32,105,110,115,116,97,110,99,101,111,102,32,106,46,100,101,102,97,117,108,116,63,116,58,101,44,116,32,105,110,115,116,97,110,99,101,111,102,32,106,46,100,101,102,97,117,108,116,63,116,46,115,116,114,105,110,103,40,116,104,105,115,46,102,111,114,109,97,116,41,58,116,125,125,44,123,107,101,121,58,34,115,101,116,86,97,108,117,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,105,102,40,33,116,104,105,115,46,105,115,68,105,115,97,98,108,101,100,40,41,41,123,118,97,114,32,116,61,116,104,105,115,46,99,111,108,111,114,72,97,110,100,108,101,114,59,116,46,104,97,115,67,111,108,111,114,40,41,38,38,101,38,38,116,46,99,111,108,111,114,46,101,113,117,97,108,115,40,101,41,124,124,33,116,46,104,97,115,67,111,108,111,114,40,41,38,38,33,101,124,124,40,116,46,99,111,108,111,114,61,101,63,116,46,99,114,101,97,116,101,67,111,108,111,114,40,101,44,116,104,105,115,46,111,112,116,105,111,110,115,46,97,117,116,111,73,110,112,117,116,70,97,108,108,98,97,99,107,41,58,110,117,108,108,44,116,104,105,115,46,116,114,105,103,103,101,114,40,34,99,111,108,111,114,112,105,99,107,101,114,67,104,97,110,103,101,34,44,116,46,99,111,108,111,114,44,101,41,44,116,104,105,115,46,117,112,100,97,116,101,40,41,41,125,125,125,44,123,107,101,121,58,34,117,112,100,97,116,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,99,111,108,111,114,72,97,110,100,108,101,114,46,104,97,115,67,111,108,111,114,40,41,63,116,104,105,115,46,105,110,112,117,116,72,97,110,100,108,101,114,46,117,112,100,97,116,101,40,41,58,116,104,105,115,46,99,111,108,111,114,72,97,110,100,108,101,114,46,97,115,115,117,114,101,67,111,108,111,114,40,41,44,116,104,105,115,46,97,100,100,111,110,72,97,110,100,108,101,114,46,117,112,100,97,116,101,40,41,44,116,104,105,115,46,112,105,99,107,101,114,72,97,110,100,108,101,114,46,117,112,100,97,116,101,40,41,44,116,104,105,115,46,116,114,105,103,103,101,114,40,34,99,111,108,111,114,112,105,99,107,101,114,85,112,100,97,116,101,34,41,125,125,44,123,107,101,121,58,34,101,110,97,98,108,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,110,112,117,116,72,97,110,100,108,101,114,46,101,110,97,98,108,101,40,41,44,116,104,105,115,46,100,105,115,97,98,108,101,100,61,33,49,44,116,104,105,115,46,112,105,99,107,101,114,46,114,101,109,111,118,101,67,108,97,115,115,40,34,99,111,108,111,114,112,105,99,107,101,114,45,100,105,115,97,98,108,101,100,34,41,44,116,104,105,115,46,116,114,105,103,103,101,114,40,34,99,111,108,111,114,112,105,99,107,101,114,69,110,97,98,108,101,34,41,44,33,48,125,125,44,123,107,101,121,58,34,100,105,115,97,98,108,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,110,112,117,116,72,97,110,100,108,101,114,46,100,105,115,97,98,108,101,40,41,44,116,104,105,115,46,100,105,115,97,98,108,101,100,61,33,48,44,116,104,105,115,46,112,105,99,107,101,114,46,97,100,100,67,108,97,115,115,40,34,99,111,108,111,114,112,105,99,107,101,114,45,100,105,115,97,98,108,101,100,34,41,44,116,104,105,115,46,116,114,105,103,103,101,114,40,34,99,111,108,111,114,112,105,99,107,101,114,68,105,115,97,98,108,101,34,41,44,33,48,125,125,44,123,107,101,121,58,34,105,115,69,110,97,98,108,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,33,116,104,105,115,46,105,115,68,105,115,97,98,108,101,100,40,41,125,125,44,123,107,101,121,58,34,105,115,68,105,115,97,98,108,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,33,48,61,61,61,116,104,105,115,46,100,105,115,97,98,108,101,100,125,125,44,123,107,101,121,58,34,116,114,105,103,103,101,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,62,49,38,38,118,111,105,100,32,48,33,61,61,97,114,103,117,109,101,110,116,115,91,49,93,63,97,114,103,117,109,101,110,116,115,91,49,93,58,110,117,108,108,44,111,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,62,50,38,38,118,111,105,100,32,48,33,61,61,97,114,103,117,109,101,110,116,115,91,50,93,63,97,114,103,117,109,101,110,116,115,91,50,93,58,110,117,108,108,59,116,104,105,115,46,101,108,101,109,101,110,116,46,116,114,105,103,103,101,114,40,123,116,121,112,101,58,101,44,99,111,108,111,114,112,105,99,107,101,114,58,116,104,105,115,44,99,111,108,111,114,58,116,124,124,116,104,105,115,46,99,111,108,111,114,44,118,97,108,117,101,58,111,124,124,116,104,105,115,46,103,101,116,86,97,108,117,101,40,41,125,41,125,125,93,41,44,101,125,40,41,59,69,46,101,120,116,101,110,115,105,111,110,115,61,104,46,100,101,102,97,117,108,116,44,116,46,100,101,102,97,117,108,116,61,69,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,111,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,102,117,110,99,116,105,111,110,32,114,40,101,41,123,114,101,116,117,114,110,32,101,38,38,101,46,95,95,101,115,77,111,100,117,108,101,63,101,58,123,100,101,102,97,117,108,116,58,101,125,125,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,44,34,95,95,101,115,77,111,100,117,108,101,34,44,123,118,97,108,117,101,58,33,48,125,41,44,116,46,80,97,108,101,116,116,101,61,116,46,83,119,97,116,99,104,101,115,61,116,46,80,114,101,118,105,101,119,61,116,46,68,101,98,117,103,103,101,114,61,118,111,105,100,32,48,59,118,97,114,32,110,61,111,40,49,48,41,44,105,61,114,40,110,41,44,97,61,111,40,49,49,41,44,108,61,114,40,97,41,44,115,61,111,40,49,50,41,44,99,61,114,40,115,41,44,117,61,111,40,52,41,44,104,61,114,40,117,41,59,116,46,68,101,98,117,103,103,101,114,61,105,46,100,101,102,97,117,108,116,44,116,46,80,114,101,118,105,101,119,61,108,46,100,101,102,97,117,108,116,44,116,46,83,119,97,116,99,104,101,115,61,99,46,100,101,102,97,117,108,116,44,116,46,80,97,108,101,116,116,101,61,104,46,100,101,102,97,117,108,116,44,116,46,100,101,102,97,117,108,116,61,123,100,101,98,117,103,103,101,114,58,105,46,100,101,102,97,117,108,116,44,112,114,101,118,105,101,119,58,108,46,100,101,102,97,117,108,116,44,115,119,97,116,99,104,101,115,58,99,46,100,101,102,97,117,108,116,44,112,97,108,101,116,116,101,58,104,46,100,101,102,97,117,108,116,125,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,111,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,102,117,110,99,116,105,111,110,32,114,40,101,41,123,114,101,116,117,114,110,32,101,38,38,101,46,95,95,101,115,77,111,100,117,108,101,63,101,58,123,100,101,102,97,117,108,116,58,101,125,125,102,117,110,99,116,105,111,110,32,110,40,101,44,116,41,123,105,102,40,33,40,101,32,105,110,115,116,97,110,99,101,111,102,32,116,41,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,67,97,110,110,111,116,32,99,97,108,108,32,97,32,99,108,97,115,115,32,97,115,32,97,32,102,117,110,99,116,105,111,110,34,41,125,102,117,110,99,116,105,111,110,32,105,40,101,44,116,41,123,105,102,40,33,101,41,116,104,114,111,119,32,110,101,119,32,82,101,102,101,114,101,110,99,101,69,114,114,111,114,40,34,116,104,105,115,32,104,97,115,110,39,116,32,98,101,101,110,32,105,110,105,116,105,97,108,105,115,101,100,32,45,32,115,117,112,101,114,40,41,32,104,97,115,110,39,116,32,98,101,101,110,32,99,97,108,108,101,100,34,41,59,114,101,116,117,114,110,33,116,124,124,34,111,98,106,101,99,116,34,33,61,116,121,112,101,111,102,32,116,38,38,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,116,63,101,58,116,125,102,117,110,99,116,105,111,110,32,97,40,101,44,116,41,123,105,102,40,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,116,38,38,110,117,108,108,33,61,61,116,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,83,117,112,101,114,32,101,120,112,114,101,115,115,105,111,110,32,109,117,115,116,32,101,105,116,104,101,114,32,98,101,32,110,117,108,108,32,111,114,32,97,32,102,117,110,99,116,105,111,110,44,32,110,111,116,32,34,43,116,121,112,101,111,102,32,116,41,59,101,46,112,114,111,116,111,116,121,112,101,61,79,98,106,101,99,116,46,99,114,101,97,116,101,40,116,38,38,116,46,112,114,111,116,111,116,121,112,101,44,123,99,111,110,115,116,114,117,99,116,111,114,58,123,118,97,108,117,101,58,101,44,101,110,117,109,101,114,97,98,108,101,58,33,49,44,119,114,105,116,97,98,108,101,58,33,48,44,99,111,110,102,105,103,117,114,97,98,108,101,58,33,48,125,125,41,44,116,38,38,40,79,98,106,101,99,116,46,115,101,116,80,114,111,116,111,116,121,112,101,79,102,63,79,98,106,101,99,116,46,115,101,116,80,114,111,116,111,116,121,112,101,79,102,40,101,44,116,41,58,101,46,95,95,112,114,111,116,111,95,95,61,116,41,125,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,44,34,95,95,101,115,77,111,100,117,108,101,34,44,123,118,97,108,117,101,58,33,48,125,41,59,118,97,114,32,108,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,101,40,101,44,116,41,123,102,111,114,40,118,97,114,32,111,61,48,59,111,60,116,46,108,101,110,103,116,104,59,111,43,43,41,123,118,97,114,32,114,61,116,91,111,93,59,114,46,101,110,117,109,101,114,97,98,108,101,61,114,46,101,110,117,109,101,114,97,98,108,101,124,124,33,49,44,114,46,99,111,110,102,105,103,117,114,97,98,108,101,61,33,48,44,34,118,97,108,117,101,34,105,110,32,114,38,38,40,114,46,119,114,105,116,97,98,108,101,61,33,48,41,44,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,101,44,114,46,107,101,121,44,114,41,125,125,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,44,111,44,114,41,123,114,101,116,117,114,110,32,111,38,38,101,40,116,46,112,114,111,116,111,116,121,112,101,44,111,41,44,114,38,38,101,40,116,44,114,41,44,116,125,125,40,41,44,115,61,102,117,110,99,116,105,111,110,32,101,40,116,44,111,44,114,41,123,110,117,108,108,61,61,61,116,38,38,40,116,61,70,117,110,99,116,105,111,110,46,112,114,111,116,111,116,121,112,101,41,59,118,97,114,32,110,61,79,98,106,101,99,116,46,103,101,116,79,119,110,80,114,111,112,101,114,116,121,68,101,115,99,114,105,112,116,111,114,40,116,44,111,41,59,105,102,40,118,111,105,100,32,48,61,61,61,110,41,123,118,97,114,32,105,61,79,98,106,101,99,116,46,103,101,116,80,114,111,116,111,116,121,112,101,79,102,40,116,41,59,114,101,116,117,114,110,32,110,117,108,108,61,61,61,105,63,118,111,105,100,32,48,58,101,40,105,44,111,44,114,41,125,105,102,40,34,118,97,108,117,101,34,105,110,32,110,41,114,101,116,117,114,110,32,110,46,118,97,108,117,101,59,118,97,114,32,97,61,110,46,103,101,116,59,105,102,40,118,111,105,100,32,48,33,61,61,97,41,114,101,116,117,114,110,32,97,46,99,97,108,108,40,114,41,125,44,99,61,111,40,49,41,44,117,61,114,40,99,41,44,104,61,111,40,48,41,44,112,61,114,40,104,41,44,102,61,102,117,110,99,116,105,111,110,40,101,41,123,102,117,110,99,116,105,111,110,32,116,40,101,41,123,118,97,114,32,111,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,62,49,38,38,118,111,105,100,32,48,33,61,61,97,114,103,117,109,101,110,116,115,91,49,93,63,97,114,103,117,109,101,110,116,115,91,49,93,58,123,125,59,110,40,116,104,105,115,44,116,41,59,118,97,114,32,114,61,105,40,116,104,105,115,44,40,116,46,95,95,112,114,111,116,111,95,95,124,124,79,98,106,101,99,116,46,103,101,116,80,114,111,116,111,116,121,112,101,79,102,40,116,41,41,46,99,97,108,108,40,116,104,105,115,44,101,44,111,41,41,59,114,101,116,117,114,110,32,114,46,101,118,101,110,116,67,111,117,110,116,101,114,61,48,44,114,46,99,111,108,111,114,112,105,99,107,101,114,46,105,110,112,117,116,72,97,110,100,108,101,114,46,104,97,115,73,110,112,117,116,40,41,38,38,114,46,99,111,108,111,114,112,105,99,107,101,114,46,105,110,112,117,116,72,97,110,100,108,101,114,46,105,110,112,117,116,46,111,110,40,34,99,104,97,110,103,101,46,99,111,108,111,114,112,105,99,107,101,114,45,101,120,116,34,44,112,46,100,101,102,97,117,108,116,46,112,114,111,120,121,40,114,46,111,110,67,104,97,110,103,101,73,110,112,117,116,44,114,41,41,44,114,125,114,101,116,117,114,110,32,97,40,116,44,101,41,44,108,40,116,44,91,123,107,101,121,58,34,108,111,103,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,102,111,114,40,118,97,114,32,116,44,111,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,44,114,61,65,114,114,97,121,40,111,62,49,63,111,45,49,58,48,41,44,110,61,49,59,110,60,111,59,110,43,43,41,114,91,110,45,49,93,61,97,114,103,117,109,101,110,116,115,91,110,93,59,116,104,105,115,46,101,118,101,110,116,67,111,117,110,116,101,114,43,61,49,59,118,97,114,32,105,61,34,35,34,43,116,104,105,115,46,101,118,101,110,116,67,111,117,110,116,101,114,43,34,58,32,67,111,108,111,114,112,105,99,107,101,114,35,34,43,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,105,100,43,34,32,91,34,43,101,43,34,93,34,59,40,116,61,99,111,110,115,111,108,101,41,46,100,101,98,117,103,46,97,112,112,108,121,40,116,44,91,105,93,46,99,111,110,99,97,116,40,114,41,41,44,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,101,108,101,109,101,110,116,46,116,114,105,103,103,101,114,40,123,116,121,112,101,58,34,99,111,108,111,114,112,105,99,107,101,114,68,101,98,117,103,34,44,99,111,108,111,114,112,105,99,107,101,114,58,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,44,99,111,108,111,114,58,116,104,105,115,46,99,111,108,111,114,44,118,97,108,117,101,58,110,117,108,108,44,100,101,98,117,103,58,123,100,101,98,117,103,103,101,114,58,116,104,105,115,44,101,118,101,110,116,78,97,109,101,58,101,44,108,111,103,65,114,103,115,58,114,44,108,111,103,77,101,115,115,97,103,101,58,105,125,125,41,125,125,44,123,107,101,121,58,34,114,101,115,111,108,118,101,67,111,108,111,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,33,40,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,62,49,38,38,118,111,105,100,32,48,33,61,61,97,114,103,117,109,101,110,116,115,91,49,93,41,124,124,97,114,103,117,109,101,110,116,115,91,49,93,59,114,101,116,117,114,110,32,116,104,105,115,46,108,111,103,40,34,114,101,115,111,108,118,101,67,111,108,111,114,40,41,34,44,101,44,116,41,44,33,49,125,125,44,123,107,101,121,58,34,111,110,67,114,101,97,116,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,108,111,103,40,34,99,111,108,111,114,112,105,99,107,101,114,67,114,101,97,116,101,34,41,44,115,40,116,46,112,114,111,116,111,116,121,112,101,46,95,95,112,114,111,116,111,95,95,124,124,79,98,106,101,99,116,46,103,101,116,80,114,111,116,111,116,121,112,101,79,102,40,116,46,112,114,111,116,111,116,121,112,101,41,44,34,111,110,67,114,101,97,116,101,34,44,116,104,105,115,41,46,99,97,108,108,40,116,104,105,115,44,101,41,125,125,44,123,107,101,121,58,34,111,110,68,101,115,116,114,111,121,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,108,111,103,40,34,99,111,108,111,114,112,105,99,107,101,114,68,101,115,116,114,111,121,34,41,44,116,104,105,115,46,101,118,101,110,116,67,111,117,110,116,101,114,61,48,44,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,105,110,112,117,116,72,97,110,100,108,101,114,46,104,97,115,73,110,112,117,116,40,41,38,38,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,105,110,112,117,116,72,97,110,100,108,101,114,46,105,110,112,117,116,46,111,102,102,40,34,46,99,111,108,111,114,112,105,99,107,101,114,45,101,120,116,34,41,44,115,40,116,46,112,114,111,116,111,116,121,112,101,46,95,95,112,114,111,116,111,95,95,124,124,79,98,106,101,99,116,46,103,101,116,80,114,111,116,111,116,121,112,101,79,102,40,116,46,112,114,111,116,111,116,121,112,101,41,44,34,111,110,68,101,115,116,114,111,121,34,44,116,104,105,115,41,46,99,97,108,108,40,116,104,105,115,44,101,41,125,125,44,123,107,101,121,58,34,111,110,85,112,100,97,116,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,108,111,103,40,34,99,111,108,111,114,112,105,99,107,101,114,85,112,100,97,116,101,34,41,125,125,44,123,107,101,121,58,34,111,110,67,104,97,110,103,101,73,110,112,117,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,108,111,103,40,34,105,110,112,117,116,58,99,104,97,110,103,101,46,99,111,108,111,114,112,105,99,107,101,114,34,44,101,46,118,97,108,117,101,44,101,46,99,111,108,111,114,41,125,125,44,123,107,101,121,58,34,111,110,67,104,97,110,103,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,108,111,103,40,34,99,111,108,111,114,112,105,99,107,101,114,67,104,97,110,103,101,34,44,101,46,118,97,108,117,101,44,101,46,99,111,108,111,114,41,125,125,44,123,107,101,121,58,34,111,110,73,110,118,97,108,105,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,108,111,103,40,34,99,111,108,111,114,112,105,99,107,101,114,73,110,118,97,108,105,100,34,44,101,46,118,97,108,117,101,44,101,46,99,111,108,111,114,41,125,125,44,123,107,101,121,58,34,111,110,72,105,100,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,108,111,103,40,34,99,111,108,111,114,112,105,99,107,101,114,72,105,100,101,34,41,44,116,104,105,115,46,101,118,101,110,116,67,111,117,110,116,101,114,61,48,125,125,44,123,107,101,121,58,34,111,110,83,104,111,119,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,108,111,103,40,34,99,111,108,111,114,112,105,99,107,101,114,83,104,111,119,34,41,125,125,44,123,107,101,121,58,34,111,110,68,105,115,97,98,108,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,108,111,103,40,34,99,111,108,111,114,112,105,99,107,101,114,68,105,115,97,98,108,101,34,41,125,125,44,123,107,101,121,58,34,111,110,69,110,97,98,108,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,108,111,103,40,34,99,111,108,111,114,112,105,99,107,101,114,69,110,97,98,108,101,34,41,125,125,93,41,44,116,125,40,117,46,100,101,102,97,117,108,116,41,59,116,46,100,101,102,97,117,108,116,61,102,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,111,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,102,117,110,99,116,105,111,110,32,114,40,101,41,123,114,101,116,117,114,110,32,101,38,38,101,46,95,95,101,115,77,111,100,117,108,101,63,101,58,123,100,101,102,97,117,108,116,58,101,125,125,102,117,110,99,116,105,111,110,32,110,40,101,44,116,41,123,105,102,40,33,40,101,32,105,110,115,116,97,110,99,101,111,102,32,116,41,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,67,97,110,110,111,116,32,99,97,108,108,32,97,32,99,108,97,115,115,32,97,115,32,97,32,102,117,110,99,116,105,111,110,34,41,125,102,117,110,99,116,105,111,110,32,105,40,101,44,116,41,123,105,102,40,33,101,41,116,104,114,111,119,32,110,101,119,32,82,101,102,101,114,101,110,99,101,69,114,114,111,114,40,34,116,104,105,115,32,104,97,115,110,39,116,32,98,101,101,110,32,105,110,105,116,105,97,108,105,115,101,100,32,45,32,115,117,112,101,114,40,41,32,104,97,115,110,39,116,32,98,101,101,110,32,99,97,108,108,101,100,34,41,59,114,101,116,117,114,110,33,116,124,124,34,111,98,106,101,99,116,34,33,61,116,121,112,101,111,102,32,116,38,38,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,116,63,101,58,116,125,102,117,110,99,116,105,111,110,32,97,40,101,44,116,41,123,105,102,40,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,116,38,38,110,117,108,108,33,61,61,116,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,83,117,112,101,114,32,101,120,112,114,101,115,115,105,111,110,32,109,117,115,116,32,101,105,116,104,101,114,32,98,101,32,110,117,108,108,32,111,114,32,97,32,102,117,110,99,116,105,111,110,44,32,110,111,116,32,34,43,116,121,112,101,111,102,32,116,41,59,101,46,112,114,111,116,111,116,121,112,101,61,79,98,106,101,99,116,46,99,114,101,97,116,101,40,116,38,38,116,46,112,114,111,116,111,116,121,112,101,44,123,99,111,110,115,116,114,117,99,116,111,114,58,123,118,97,108,117,101,58,101,44,101,110,117,109,101,114,97,98,108,101,58,33,49,44,119,114,105,116,97,98,108,101,58,33,48,44,99,111,110,102,105,103,117,114,97,98,108,101,58,33,48,125,125,41,44,116,38,38,40,79,98,106,101,99,116,46,115,101,116,80,114,111,116,111,116,121,112,101,79,102,63,79,98,106,101,99,116,46,115,101,116,80,114,111,116,111,116,121,112,101,79,102,40,101,44,116,41,58,101,46,95,95,112,114,111,116,111,95,95,61,116,41,125,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,44,34,95,95,101,115,77,111,100,117,108,101,34,44,123,118,97,108,117,101,58,33,48,125,41,59,118,97,114,32,108,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,101,40,101,44,116,41,123,102,111,114,40,118,97,114,32,111,61,48,59,111,60,116,46,108,101,110,103,116,104,59,111,43,43,41,123,118,97,114,32,114,61,116,91,111,93,59,114,46,101,110,117,109,101,114,97,98,108,101,61,114,46,101,110,117,109,101,114,97,98,108,101,124,124,33,49,44,114,46,99,111,110,102,105,103,117,114,97,98,108,101,61,33,48,44,34,118,97,108,117,101,34,105,110,32,114,38,38,40,114,46,119,114,105,116,97,98,108,101,61,33,48,41,44,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,101,44,114,46,107,101,121,44,114,41,125,125,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,44,111,44,114,41,123,114,101,116,117,114,110,32,111,38,38,101,40,116,46,112,114,111,116,111,116,121,112,101,44,111,41,44,114,38,38,101,40,116,44,114,41,44,116,125,125,40,41,44,115,61,102,117,110,99,116,105,111,110,32,101,40,116,44,111,44,114,41,123,110,117,108,108,61,61,61,116,38,38,40,116,61,70,117,110,99,116,105,111,110,46,112,114,111,116,111,116,121,112,101,41,59,118,97,114,32,110,61,79,98,106,101,99,116,46,103,101,116,79,119,110,80,114,111,112,101,114,116,121,68,101,115,99,114,105,112,116,111,114,40,116,44,111,41,59,105,102,40,118,111,105,100,32,48,61,61,61,110,41,123,118,97,114,32,105,61,79,98,106,101,99,116,46,103,101,116,80,114,111,116,111,116,121,112,101,79,102,40,116,41,59,114,101,116,117,114,110,32,110,117,108,108,61,61,61,105,63,118,111,105,100,32,48,58,101,40,105,44,111,44,114,41,125,105,102,40,34,118,97,108,117,101,34,105,110,32,110,41,114,101,116,117,114,110,32,110,46,118,97,108,117,101,59,118,97,114,32,97,61,110,46,103,101,116,59,105,102,40,118,111,105,100,32,48,33,61,61,97,41,114,101,116,117,114,110,32,97,46,99,97,108,108,40,114,41,125,44,99,61,111,40,49,41,44,117,61,114,40,99,41,44,104,61,111,40,48,41,44,112,61,114,40,104,41,44,102,61,102,117,110,99,116,105,111,110,40,101,41,123,102,117,110,99,116,105,111,110,32,116,40,101,41,123,118,97,114,32,111,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,62,49,38,38,118,111,105,100,32,48,33,61,61,97,114,103,117,109,101,110,116,115,91,49,93,63,97,114,103,117,109,101,110,116,115,91,49,93,58,123,125,59,110,40,116,104,105,115,44,116,41,59,118,97,114,32,114,61,105,40,116,104,105,115,44,40,116,46,95,95,112,114,111,116,111,95,95,124,124,79,98,106,101,99,116,46,103,101,116,80,114,111,116,111,116,121,112,101,79,102,40,116,41,41,46,99,97,108,108,40,116,104,105,115,44,101,44,112,46,100,101,102,97,117,108,116,46,101,120,116,101,110,100,40,33,48,44,123,125,44,123,116,101,109,112,108,97,116,101,58,39,60,100,105,118,32,99,108,97,115,115,61,34,99,111,108,111,114,112,105,99,107,101,114,45,98,97,114,32,99,111,108,111,114,112,105,99,107,101,114,45,112,114,101,118,105,101,119,34,62,60,100,105,118,32,47,62,60,47,100,105,118,62,39,44,115,104,111,119,84,101,120,116,58,33,48,44,102,111,114,109,97,116,58,101,46,102,111,114,109,97,116,125,44,111,41,41,41,59,114,101,116,117,114,110,32,114,46,101,108,101,109,101,110,116,61,40,48,44,112,46,100,101,102,97,117,108,116,41,40,114,46,111,112,116,105,111,110,115,46,116,101,109,112,108,97,116,101,41,44,114,46,101,108,101,109,101,110,116,73,110,110,101,114,61,114,46,101,108,101,109,101,110,116,46,102,105,110,100,40,34,100,105,118,34,41,44,114,125,114,101,116,117,114,110,32,97,40,116,44,101,41,44,108,40,116,44,91,123,107,101,121,58,34,111,110,67,114,101,97,116,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,115,40,116,46,112,114,111,116,111,116,121,112,101,46,95,95,112,114,111,116,111,95,95,124,124,79,98,106,101,99,116,46,103,101,116,80,114,111,116,111,116,121,112,101,79,102,40,116,46,112,114,111,116,111,116,121,112,101,41,44,34,111,110,67,114,101,97,116,101,34,44,116,104,105,115,41,46,99,97,108,108,40,116,104,105,115,44,101,41,44,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,112,105,99,107,101,114,46,97,112,112,101,110,100,40,116,104,105,115,46,101,108,101,109,101,110,116,41,125,125,44,123,107,101,121,58,34,111,110,85,112,100,97,116,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,105,102,40,115,40,116,46,112,114,111,116,111,116,121,112,101,46,95,95,112,114,111,116,111,95,95,124,124,79,98,106,101,99,116,46,103,101,116,80,114,111,116,111,116,121,112,101,79,102,40,116,46,112,114,111,116,111,116,121,112,101,41,44,34,111,110,85,112,100,97,116,101,34,44,116,104,105,115,41,46,99,97,108,108,40,116,104,105,115,44,101,41,44,33,101,46,99,111,108,111,114,41,114,101,116,117,114,110,32,118,111,105,100,32,116,104,105,115,46,101,108,101,109,101,110,116,73,110,110,101,114,46,99,115,115,40,34,98,97,99,107,103,114,111,117,110,100,67,111,108,111,114,34,44,110,117,108,108,41,46,99,115,115,40,34,99,111,108,111,114,34,44,110,117,108,108,41,46,104,116,109,108,40,34,34,41,59,116,104,105,115,46,101,108,101,109,101,110,116,73,110,110,101,114,46,99,115,115,40,34,98,97,99,107,103,114,111,117,110,100,67,111,108,111,114,34,44,101,46,99,111,108,111,114,46,116,111,82,103,98,83,116,114,105,110,103,40,41,41,44,116,104,105,115,46,111,112,116,105,111,110,115,46,115,104,111,119,84,101,120,116,38,38,40,116,104,105,115,46,101,108,101,109,101,110,116,73,110,110,101,114,46,104,116,109,108,40,101,46,99,111,108,111,114,46,115,116,114,105,110,103,40,116,104,105,115,46,111,112,116,105,111,110,115,46,102,111,114,109,97,116,124,124,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,102,111,114,109,97,116,41,41,44,101,46,99,111,108,111,114,46,105,115,68,97,114,107,40,41,38,38,101,46,99,111,108,111,114,46,97,108,112,104,97,62,46,53,63,116,104,105,115,46,101,108,101,109,101,110,116,73,110,110,101,114,46,99,115,115,40,34,99,111,108,111,114,34,44,34,119,104,105,116,101,34,41,58,116,104,105,115,46,101,108,101,109,101,110,116,73,110,110,101,114,46,99,115,115,40,34,99,111,108,111,114,34,44,34,98,108,97,99,107,34,41,41,125,125,93,41,44,116,125,40,117,46,100,101,102,97,117,108,116,41,59,116,46,100,101,102,97,117,108,116,61,102,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,111,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,102,117,110,99,116,105,111,110,32,114,40,101,41,123,114,101,116,117,114,110,32,101,38,38,101,46,95,95,101,115,77,111,100,117,108,101,63,101,58,123,100,101,102,97,117,108,116,58,101,125,125,102,117,110,99,116,105,111,110,32,110,40,101,44,116,41,123,105,102,40,33,40,101,32,105,110,115,116,97,110,99,101,111,102,32,116,41,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,67,97,110,110,111,116,32,99,97,108,108,32,97,32,99,108,97,115,115,32,97,115,32,97,32,102,117,110,99,116,105,111,110,34,41,125,102,117,110,99,116,105,111,110,32,105,40,101,44,116,41,123,105,102,40,33,101,41,116,104,114,111,119,32,110,101,119,32,82,101,102,101,114,101,110,99,101,69,114,114,111,114,40,34,116,104,105,115,32,104,97,115,110,39,116,32,98,101,101,110,32,105,110,105,116,105,97,108,105,115,101,100,32,45,32,115,117,112,101,114,40,41,32,104,97,115,110,39,116,32,98,101,101,110,32,99,97,108,108,101,100,34,41,59,114,101,116,117,114,110,33,116,124,124,34,111,98,106,101,99,116,34,33,61,116,121,112,101,111,102,32,116,38,38,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,116,63,101,58,116,125,102,117,110,99,116,105,111,110,32,97,40,101,44,116,41,123,105,102,40,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,116,38,38,110,117,108,108,33,61,61,116,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,83,117,112,101,114,32,101,120,112,114,101,115,115,105,111,110,32,109,117,115,116,32,101,105,116,104,101,114,32,98,101,32,110,117,108,108,32,111,114,32,97,32,102,117,110,99,116,105,111,110,44,32,110,111,116,32,34,43,116,121,112,101,111,102,32,116,41,59,101,46,112,114,111,116,111,116,121,112,101,61,79,98,106,101,99,116,46,99,114,101,97,116,101,40,116,38,38,116,46,112,114,111,116,111,116,121,112,101,44,123,99,111,110,115,116,114,117,99,116,111,114,58,123,118,97,108,117,101,58,101,44,101,110,117,109,101,114,97,98,108,101,58,33,49,44,119,114,105,116,97,98,108,101,58,33,48,44,99,111,110,102,105,103,117,114,97,98,108,101,58,33,48,125,125,41,44,116,38,38,40,79,98,106,101,99,116,46,115,101,116,80,114,111,116,111,116,121,112,101,79,102,63,79,98,106,101,99,116,46,115,101,116,80,114,111,116,111,116,121,112,101,79,102,40,101,44,116,41,58,101,46,95,95,112,114,111,116,111,95,95,61,116,41,125,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,44,34,95,95,101,115,77,111,100,117,108,101,34,44,123,118,97,108,117,101,58,33,48,125,41,59,118,97,114,32,108,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,101,40,101,44,116,41,123,102,111,114,40,118,97,114,32,111,61,48,59,111,60,116,46,108,101,110,103,116,104,59,111,43,43,41,123,118,97,114,32,114,61,116,91,111,93,59,114,46,101,110,117,109,101,114,97,98,108,101,61,114,46,101,110,117,109,101,114,97,98,108,101,124,124,33,49,44,114,46,99,111,110,102,105,103,117,114,97,98,108,101,61,33,48,44,34,118,97,108,117,101,34,105,110,32,114,38,38,40,114,46,119,114,105,116,97,98,108,101,61,33,48,41,44,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,101,44,114,46,107,101,121,44,114,41,125,125,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,44,111,44,114,41,123,114,101,116,117,114,110,32,111,38,38,101,40,116,46,112,114,111,116,111,116,121,112,101,44,111,41,44,114,38,38,101,40,116,44,114,41,44,116,125,125,40,41,44,115,61,102,117,110,99,116,105,111,110,32,101,40,116,44,111,44,114,41,123,110,117,108,108,61,61,61,116,38,38,40,116,61,70,117,110,99,116,105,111,110,46,112,114,111,116,111,116,121,112,101,41,59,118,97,114,32,110,61,79,98,106,101,99,116,46,103,101,116,79,119,110,80,114,111,112,101,114,116,121,68,101,115,99,114,105,112,116,111,114,40,116,44,111,41,59,105,102,40,118,111,105,100,32,48,61,61,61,110,41,123,118,97,114,32,105,61,79,98,106,101,99,116,46,103,101,116,80,114,111,116,111,116,121,112,101,79,102,40,116,41,59,114,101,116,117,114,110,32,110,117,108,108,61,61,61,105,63,118,111,105,100,32,48,58,101,40,105,44,111,44,114,41,125,105,102,40,34,118,97,108,117,101,34,105,110,32,110,41,114,101,116,117,114,110,32,110,46,118,97,108,117,101,59,118,97,114,32,97,61,110,46,103,101,116,59,105,102,40,118,111,105,100,32,48,33,61,61,97,41,114,101,116,117,114,110,32,97,46,99,97,108,108,40,114,41,125,44,99,61,111,40,52,41,44,117,61,114,40,99,41,44,104,61,111,40,48,41,44,112,61,114,40,104,41,44,102,61,123,98,97,114,84,101,109,112,108,97,116,101,58,39,60,100,105,118,32,99,108,97,115,115,61,34,99,111,108,111,114,112,105,99,107,101,114,45,98,97,114,32,99,111,108,111,114,112,105,99,107,101,114,45,115,119,97,116,99,104,101,115,34,62,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,99,111,108,111,114,112,105,99,107,101,114,45,115,119,97,116,99,104,101,115,45,45,105,110,110,101,114,34,62,60,47,100,105,118,62,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,100,105,118,62,39,44,115,119,97,116,99,104,84,101,109,112,108,97,116,101,58,39,60,105,32,99,108,97,115,115,61,34,99,111,108,111,114,112,105,99,107,101,114,45,115,119,97,116,99,104,34,62,60,105,32,99,108,97,115,115,61,34,99,111,108,111,114,112,105,99,107,101,114,45,115,119,97,116,99,104,45,45,105,110,110,101,114,34,62,60,47,105,62,60,47,105,62,39,125,44,100,61,102,117,110,99,116,105,111,110,40,101,41,123,102,117,110,99,116,105,111,110,32,116,40,101,41,123,118,97,114,32,111,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,62,49,38,38,118,111,105,100,32,48,33,61,61,97,114,103,117,109,101,110,116,115,91,49,93,63,97,114,103,117,109,101,110,116,115,91,49,93,58,123,125,59,110,40,116,104,105,115,44,116,41,59,118,97,114,32,114,61,105,40,116,104,105,115,44,40,116,46,95,95,112,114,111,116,111,95,95,124,124,79,98,106,101,99,116,46,103,101,116,80,114,111,116,111,116,121,112,101,79,102,40,116,41,41,46,99,97,108,108,40,116,104,105,115,44,101,44,112,46,100,101,102,97,117,108,116,46,101,120,116,101,110,100,40,33,48,44,123,125,44,102,44,111,41,41,41,59,114,101,116,117,114,110,32,114,46,101,108,101,109,101,110,116,61,110,117,108,108,44,114,125,114,101,116,117,114,110,32,97,40,116,44,101,41,44,108,40,116,44,91,123,107,101,121,58,34,105,115,69,110,97,98,108,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,103,101,116,76,101,110,103,116,104,40,41,62,48,125,125,44,123,107,101,121,58,34,111,110,67,114,101,97,116,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,115,40,116,46,112,114,111,116,111,116,121,112,101,46,95,95,112,114,111,116,111,95,95,124,124,79,98,106,101,99,116,46,103,101,116,80,114,111,116,111,116,121,112,101,79,102,40,116,46,112,114,111,116,111,116,121,112,101,41,44,34,111,110,67,114,101,97,116,101,34,44,116,104,105,115,41,46,99,97,108,108,40,116,104,105,115,44,101,41,44,116,104,105,115,46,105,115,69,110,97,98,108,101,100,40,41,38,38,40,116,104,105,115,46,101,108,101,109,101,110,116,61,40,48,44,112,46,100,101,102,97,117,108,116,41,40,116,104,105,115,46,111,112,116,105,111,110,115,46,98,97,114,84,101,109,112,108,97,116,101,41,44,116,104,105,115,46,108,111,97,100,40,41,44,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,112,105,99,107,101,114,46,97,112,112,101,110,100,40,116,104,105,115,46,101,108,101,109,101,110,116,41,41,125,125,44,123,107,101,121,58,34,108,111,97,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,44,116,61,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,44,111,61,116,104,105,115,46,101,108,101,109,101,110,116,46,102,105,110,100,40,34,46,99,111,108,111,114,112,105,99,107,101,114,45,115,119,97,116,99,104,101,115,45,45,105,110,110,101,114,34,41,44,114,61,33,48,61,61,61,116,104,105,115,46,111,112,116,105,111,110,115,46,110,97,109,101,115,65,115,86,97,108,117,101,115,38,38,33,65,114,114,97,121,46,105,115,65,114,114,97,121,40,116,104,105,115,46,99,111,108,111,114,115,41,59,111,46,101,109,112,116,121,40,41,44,112,46,100,101,102,97,117,108,116,46,101,97,99,104,40,116,104,105,115,46,99,111,108,111,114,115,44,102,117,110,99,116,105,111,110,40,110,44,105,41,123,118,97,114,32,97,61,40,48,44,112,46,100,101,102,97,117,108,116,41,40,101,46,111,112,116,105,111,110,115,46,115,119,97,116,99,104,84,101,109,112,108,97,116,101,41,46,97,116,116,114,40,34,100,97,116,97,45,110,97,109,101,34,44,110,41,46,97,116,116,114,40,34,100,97,116,97,45,118,97,108,117,101,34,44,105,41,46,97,116,116,114,40,34,116,105,116,108,101,34,44,114,63,110,43,34,58,32,34,43,105,58,105,41,46,111,110,40,34,109,111,117,115,101,100,111,119,110,46,99,111,108,111,114,112,105,99,107,101,114,32,116,111,117,99,104,115,116,97,114,116,46,99,111,108,111,114,112,105,99,107,101,114,34,44,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,111,61,40,48,44,112,46,100,101,102,97,117,108,116,41,40,116,104,105,115,41,59,116,46,115,101,116,86,97,108,117,101,40,114,63,111,46,97,116,116,114,40,34,100,97,116,97,45,110,97,109,101,34,41,58,111,46,97,116,116,114,40,34,100,97,116,97,45,118,97,108,117,101,34,41,41,125,41,59,97,46,102,105,110,100,40,34,46,99,111,108,111,114,112,105,99,107,101,114,45,115,119,97,116,99,104,45,45,105,110,110,101,114,34,41,46,99,115,115,40,34,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,34,44,105,41,44,111,46,97,112,112,101,110,100,40,97,41,125,41,44,111,46,97,112,112,101,110,100,40,40,48,44,112,46,100,101,102,97,117,108,116,41,40,39,60,105,32,99,108,97,115,115,61,34,99,111,108,111,114,112,105,99,107,101,114,45,99,108,101,97,114,34,62,60,47,105,62,39,41,41,125,125,93,41,44,116,125,40,117,46,100,101,102,97,117,108,116,41,59,116,46,100,101,102,97,117,108,116,61,100,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,111,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,102,117,110,99,116,105,111,110,32,114,40,101,44,116,41,123,105,102,40,33,40,101,32,105,110,115,116,97,110,99,101,111,102,32,116,41,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,67,97,110,110,111,116,32,99,97,108,108,32,97,32,99,108,97,115,115,32,97,115,32,97,32,102,117,110,99,116,105,111,110,34,41,125,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,44,34,95,95,101,115,77,111,100,117,108,101,34,44,123,118,97,108,117,101,58,33,48,125,41,59,118,97,114,32,110,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,101,40,101,44,116,41,123,102,111,114,40,118,97,114,32,111,61,48,59,111,60,116,46,108,101,110,103,116,104,59,111,43,43,41,123,118,97,114,32,114,61,116,91,111,93,59,114,46,101,110,117,109,101,114,97,98,108,101,61,114,46,101,110,117,109,101,114,97,98,108,101,124,124,33,49,44,114,46,99,111,110,102,105,103,117,114,97,98,108,101,61,33,48,44,34,118,97,108,117,101,34,105,110,32,114,38,38,40,114,46,119,114,105,116,97,98,108,101,61,33,48,41,44,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,101,44,114,46,107,101,121,44,114,41,125,125,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,44,111,44,114,41,123,114,101,116,117,114,110,32,111,38,38,101,40,116,46,112,114,111,116,111,116,121,112,101,44,111,41,44,114,38,38,101,40,116,44,114,41,44,116,125,125,40,41,44,105,61,111,40,48,41,44,97,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,38,38,101,46,95,95,101,115,77,111,100,117,108,101,63,101,58,123,100,101,102,97,117,108,116,58,101,125,125,40,105,41,44,108,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,101,40,116,41,123,114,40,116,104,105,115,44,101,41,44,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,61,116,44,116,104,105,115,46,99,117,114,114,101,110,116,83,108,105,100,101,114,61,110,117,108,108,44,116,104,105,115,46,109,111,117,115,101,80,111,105,110,116,101,114,61,123,108,101,102,116,58,48,44,116,111,112,58,48,125,44,116,104,105,115,46,111,110,77,111,118,101,61,97,46,100,101,102,97,117,108,116,46,112,114,111,120,121,40,116,104,105,115,46,100,101,102,97,117,108,116,79,110,77,111,118,101,44,116,104,105,115,41,125,114,101,116,117,114,110,32,110,40,101,44,91,123,107,101,121,58,34,100,101,102,97,117,108,116,79,110,77,111,118,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,102,40,116,104,105,115,46,99,117,114,114,101,110,116,83,108,105,100,101,114,41,123,118,97,114,32,111,61,116,104,105,115,46,99,117,114,114,101,110,116,83,108,105,100,101,114,44,114,61,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,44,110,61,114,46,99,111,108,111,114,72,97,110,100,108,101,114,44,105,61,110,46,104,97,115,67,111,108,111,114,40,41,63,110,46,99,111,108,111,114,46,103,101,116,67,108,111,110,101,40,41,58,110,46,103,101,116,70,97,108,108,98,97,99,107,67,111,108,111,114,40,41,59,111,46,103,117,105,100,101,83,116,121,108,101,46,108,101,102,116,61,116,43,34,112,120,34,44,111,46,103,117,105,100,101,83,116,121,108,101,46,116,111,112,61,101,43,34,112,120,34,44,111,46,99,97,108,108,76,101,102,116,38,38,105,91,111,46,99,97,108,108,76,101,102,116,93,40,116,47,111,46,109,97,120,76,101,102,116,41,44,111,46,99,97,108,108,84,111,112,38,38,105,91,111,46,99,97,108,108,84,111,112,93,40,101,47,111,46,109,97,120,84,111,112,41,44,114,46,115,101,116,86,97,108,117,101,40,105,41,44,114,46,112,111,112,117,112,72,97,110,100,108,101,114,46,102,111,99,117,115,40,41,125,125,125,44,123,107,101,121,58,34,98,105,110,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,111,112,116,105,111,110,115,46,104,111,114,105,122,111,110,116,97,108,63,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,111,112,116,105,111,110,115,46,115,108,105,100,101,114,115,72,111,114,122,58,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,111,112,116,105,111,110,115,46,115,108,105,100,101,114,115,44,116,61,91,93,59,102,111,114,40,118,97,114,32,111,32,105,110,32,101,41,101,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,111,41,38,38,116,46,112,117,115,104,40,101,91,111,93,46,115,101,108,101,99,116,111,114,41,59,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,112,105,99,107,101,114,46,102,105,110,100,40,116,46,106,111,105,110,40,34,44,32,34,41,41,46,111,110,40,34,109,111,117,115,101,100,111,119,110,46,99,111,108,111,114,112,105,99,107,101,114,32,116,111,117,99,104,115,116,97,114,116,46,99,111,108,111,114,112,105,99,107,101,114,34,44,97,46,100,101,102,97,117,108,116,46,112,114,111,120,121,40,116,104,105,115,46,112,114,101,115,115,101,100,44,116,104,105,115,41,41,125,125,44,123,107,101,121,58,34,117,110,98,105,110,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,40,48,44,97,46,100,101,102,97,117,108,116,41,40,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,112,105,99,107,101,114,41,46,111,102,102,40,123,34,109,111,117,115,101,109,111,118,101,46,99,111,108,111,114,112,105,99,107,101,114,34,58,97,46,100,101,102,97,117,108,116,46,112,114,111,120,121,40,116,104,105,115,46,109,111,118,101,100,44,116,104,105,115,41,44,34,116,111,117,99,104,109,111,118,101,46,99,111,108,111,114,112,105,99,107,101,114,34,58,97,46,100,101,102,97,117,108,116,46,112,114,111,120,121,40,116,104,105,115,46,109,111,118,101,100,44,116,104,105,115,41,44,34,109,111,117,115,101,117,112,46,99,111,108,111,114,112,105,99,107,101,114,34,58,97,46,100,101,102,97,117,108,116,46,112,114,111,120,121,40,116,104,105,115,46,114,101,108,101,97,115,101,100,44,116,104,105,115,41,44,34,116,111,117,99,104,101,110,100,46,99,111,108,111,114,112,105,99,107,101,114,34,58,97,46,100,101,102,97,117,108,116,46,112,114,111,120,121,40,116,104,105,115,46,114,101,108,101,97,115,101,100,44,116,104,105,115,41,125,41,125,125,44,123,107,101,121,58,34,112,114,101,115,115,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,105,102,40,33,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,105,115,68,105,115,97,98,108,101,100,40,41,41,123,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,108,97,115,116,69,118,101,110,116,46,97,108,105,97,115,61,34,112,114,101,115,115,101,100,34,44,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,108,97,115,116,69,118,101,110,116,46,101,61,101,44,33,101,46,112,97,103,101,88,38,38,33,101,46,112,97,103,101,89,38,38,101,46,111,114,105,103,105,110,97,108,69,118,101,110,116,38,38,101,46,111,114,105,103,105,110,97,108,69,118,101,110,116,46,116,111,117,99,104,101,115,38,38,40,101,46,112,97,103,101,88,61,101,46,111,114,105,103,105,110,97,108,69,118,101,110,116,46,116,111,117,99,104,101,115,91,48,93,46,112,97,103,101,88,44,101,46,112,97,103,101,89,61,101,46,111,114,105,103,105,110,97,108,69,118,101,110,116,46,116,111,117,99,104,101,115,91,48,93,46,112,97,103,101,89,41,59,118,97,114,32,116,61,40,48,44,97,46,100,101,102,97,117,108,116,41,40,101,46,116,97,114,103,101,116,41,44,111,61,116,46,99,108,111,115,101,115,116,40,34,100,105,118,34,41,44,114,61,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,111,112,116,105,111,110,115,46,104,111,114,105,122,111,110,116,97,108,63,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,111,112,116,105,111,110,115,46,115,108,105,100,101,114,115,72,111,114,122,58,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,111,112,116,105,111,110,115,46,115,108,105,100,101,114,115,59,105,102,40,33,111,46,105,115,40,34,46,99,111,108,111,114,112,105,99,107,101,114,34,41,41,123,116,104,105,115,46,99,117,114,114,101,110,116,83,108,105,100,101,114,61,110,117,108,108,59,102,111,114,40,118,97,114,32,110,32,105,110,32,114,41,105,102,40,114,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,110,41,41,123,118,97,114,32,105,61,114,91,110,93,59,105,102,40,111,46,105,115,40,105,46,115,101,108,101,99,116,111,114,41,41,123,116,104,105,115,46,99,117,114,114,101,110,116,83,108,105,100,101,114,61,97,46,100,101,102,97,117,108,116,46,101,120,116,101,110,100,40,123,125,44,105,44,123,110,97,109,101,58,110,125,41,59,98,114,101,97,107,125,105,102,40,118,111,105,100,32,48,33,61,61,105,46,99,104,105,108,100,83,101,108,101,99,116,111,114,38,38,111,46,105,115,40,105,46,99,104,105,108,100,83,101,108,101,99,116,111,114,41,41,123,116,104,105,115,46,99,117,114,114,101,110,116,83,108,105,100,101,114,61,97,46,100,101,102,97,117,108,116,46,101,120,116,101,110,100,40,123,125,44,105,44,123,110,97,109,101,58,110,125,41,44,111,61,111,46,112,97,114,101,110,116,40,41,59,98,114,101,97,107,125,125,118,97,114,32,108,61,111,46,102,105,110,100,40,34,46,99,111,108,111,114,112,105,99,107,101,114,45,103,117,105,100,101,34,41,46,103,101,116,40,48,41,59,105,102,40,110,117,108,108,33,61,61,116,104,105,115,46,99,117,114,114,101,110,116,83,108,105,100,101,114,38,38,110,117,108,108,33,61,61,108,41,123,118,97,114,32,115,61,111,46,111,102,102,115,101,116,40,41,59,116,104,105,115,46,99,117,114,114,101,110,116,83,108,105,100,101,114,46,103,117,105,100,101,83,116,121,108,101,61,108,46,115,116,121,108,101,44,116,104,105,115,46,99,117,114,114,101,110,116,83,108,105,100,101,114,46,108,101,102,116,61,101,46,112,97,103,101,88,45,115,46,108,101,102,116,44,116,104,105,115,46,99,117,114,114,101,110,116,83,108,105,100,101,114,46,116,111,112,61,101,46,112,97,103,101,89,45,115,46,116,111,112,44,116,104,105,115,46,109,111,117,115,101,80,111,105,110,116,101,114,61,123,108,101,102,116,58,101,46,112,97,103,101,88,44,116,111,112,58,101,46,112,97,103,101,89,125,44,40,48,44,97,46,100,101,102,97,117,108,116,41,40,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,112,105,99,107,101,114,41,46,111,110,40,123,34,109,111,117,115,101,109,111,118,101,46,99,111,108,111,114,112,105,99,107,101,114,34,58,97,46,100,101,102,97,117,108,116,46,112,114,111,120,121,40,116,104,105,115,46,109,111,118,101,100,44,116,104,105,115,41,44,34,116,111,117,99,104,109,111,118,101,46,99,111,108,111,114,112,105,99,107,101,114,34,58,97,46,100,101,102,97,117,108,116,46,112,114,111,120,121,40,116,104,105,115,46,109,111,118,101,100,44,116,104,105,115,41,44,34,109,111,117,115,101,117,112,46,99,111,108,111,114,112,105,99,107,101,114,34,58,97,46,100,101,102,97,117,108,116,46,112,114,111,120,121,40,116,104,105,115,46,114,101,108,101,97,115,101,100,44,116,104,105,115,41,44,34,116,111,117,99,104,101,110,100,46,99,111,108,111,114,112,105,99,107,101,114,34,58,97,46,100,101,102,97,117,108,116,46,112,114,111,120,121,40,116,104,105,115,46,114,101,108,101,97,115,101,100,44,116,104,105,115,41,125,41,46,116,114,105,103,103,101,114,40,34,109,111,117,115,101,109,111,118,101,34,41,125,125,125,125,125,44,123,107,101,121,58,34,109,111,118,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,108,97,115,116,69,118,101,110,116,46,97,108,105,97,115,61,34,109,111,118,101,100,34,44,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,108,97,115,116,69,118,101,110,116,46,101,61,101,44,33,101,46,112,97,103,101,88,38,38,33,101,46,112,97,103,101,89,38,38,101,46,111,114,105,103,105,110,97,108,69,118,101,110,116,38,38,101,46,111,114,105,103,105,110,97,108,69,118,101,110,116,46,116,111,117,99,104,101,115,38,38,40,101,46,112,97,103,101,88,61,101,46,111,114,105,103,105,110,97,108,69,118,101,110,116,46,116,111,117,99,104,101,115,91,48,93,46,112,97,103,101,88,44,101,46,112,97,103,101,89,61,101,46,111,114,105,103,105,110,97,108,69,118,101,110,116,46,116,111,117,99,104,101,115,91,48,93,46,112,97,103,101,89,41,44,101,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,59,118,97,114,32,116,61,77,97,116,104,46,109,97,120,40,48,44,77,97,116,104,46,109,105,110,40,116,104,105,115,46,99,117,114,114,101,110,116,83,108,105,100,101,114,46,109,97,120,76,101,102,116,44,116,104,105,115,46,99,117,114,114,101,110,116,83,108,105,100,101,114,46,108,101,102,116,43,40,40,101,46,112,97,103,101,88,124,124,116,104,105,115,46,109,111,117,115,101,80,111,105,110,116,101,114,46,108,101,102,116,41,45,116,104,105,115,46,109,111,117,115,101,80,111,105,110,116,101,114,46,108,101,102,116,41,41,41,44,111,61,77,97,116,104,46,109,97,120,40,48,44,77,97,116,104,46,109,105,110,40,116,104,105,115,46,99,117,114,114,101,110,116,83,108,105,100,101,114,46,109,97,120,84,111,112,44,116,104,105,115,46,99,117,114,114,101,110,116,83,108,105,100,101,114,46,116,111,112,43,40,40,101,46,112,97,103,101,89,124,124,116,104,105,115,46,109,111,117,115,101,80,111,105,110,116,101,114,46,116,111,112,41,45,116,104,105,115,46,109,111,117,115,101,80,111,105,110,116,101,114,46,116,111,112,41,41,41,59,116,104,105,115,46,111,110,77,111,118,101,40,111,44,116,41,125,125,44,123,107,101,121,58,34,114,101,108,101,97,115,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,108,97,115,116,69,118,101,110,116,46,97,108,105,97,115,61,34,114,101,108,101,97,115,101,100,34,44,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,108,97,115,116,69,118,101,110,116,46,101,61,101,44,40,48,44,97,46,100,101,102,97,117,108,116,41,40,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,112,105,99,107,101,114,41,46,111,102,102,40,123,34,109,111,117,115,101,109,111,118,101,46,99,111,108,111,114,112,105,99,107,101,114,34,58,116,104,105,115,46,109,111,118,101,100,44,34,116,111,117,99,104,109,111,118,101,46,99,111,108,111,114,112,105,99,107,101,114,34,58,116,104,105,115,46,109,111,118,101,100,44,34,109,111,117,115,101,117,112,46,99,111,108,111,114,112,105,99,107,101,114,34,58,116,104,105,115,46,114,101,108,101,97,115,101,100,44,34,116,111,117,99,104,101,110,100,46,99,111,108,111,114,112,105,99,107,101,114,34,58,116,104,105,115,46,114,101,108,101,97,115,101,100,125,41,125,125,93,41,44,101,125,40,41,59,116,46,100,101,102,97,117,108,116,61,108,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,111,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,102,117,110,99,116,105,111,110,32,114,40,101,41,123,114,101,116,117,114,110,32,101,38,38,101,46,95,95,101,115,77,111,100,117,108,101,63,101,58,123,100,101,102,97,117,108,116,58,101,125,125,102,117,110,99,116,105,111,110,32,110,40,101,44,116,41,123,105,102,40,33,40,101,32,105,110,115,116,97,110,99,101,111,102,32,116,41,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,67,97,110,110,111,116,32,99,97,108,108,32,97,32,99,108,97,115,115,32,97,115,32,97,32,102,117,110,99,116,105,111,110,34,41,125,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,44,34,95,95,101,115,77,111,100,117,108,101,34,44,123,118,97,108,117,101,58,33,48,125,41,59,118,97,114,32,105,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,101,40,101,44,116,41,123,102,111,114,40,118,97,114,32,111,61,48,59,111,60,116,46,108,101,110,103,116,104,59,111,43,43,41,123,118,97,114,32,114,61,116,91,111,93,59,114,46,101,110,117,109,101,114,97,98,108,101,61,114,46,101,110,117,109,101,114,97,98,108,101,124,124,33,49,44,114,46,99,111,110,102,105,103,117,114,97,98,108,101,61,33,48,44,34,118,97,108,117,101,34,105,110,32,114,38,38,40,114,46,119,114,105,116,97,98,108,101,61,33,48,41,44,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,101,44,114,46,107,101,121,44,114,41,125,125,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,44,111,44,114,41,123,114,101,116,117,114,110,32,111,38,38,101,40,116,46,112,114,111,116,111,116,121,112,101,44,111,41,44,114,38,38,101,40,116,44,114,41,44,116,125,125,40,41,44,97,61,111,40,48,41,44,108,61,114,40,97,41,44,115,61,111,40,51,41,44,99,61,114,40,115,41,44,117,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,101,40,116,44,111,41,123,110,40,116,104,105,115,44,101,41,44,116,104,105,115,46,114,111,111,116,61,111,44,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,61,116,44,116,104,105,115,46,112,111,112,111,118,101,114,84,97,114,103,101,116,61,110,117,108,108,44,116,104,105,115,46,112,111,112,111,118,101,114,84,105,112,61,110,117,108,108,44,116,104,105,115,46,99,108,105,99,107,105,110,103,61,33,49,44,116,104,105,115,46,104,105,100,100,105,110,103,61,33,49,44,116,104,105,115,46,115,104,111,119,105,110,103,61,33,49,125,114,101,116,117,114,110,32,105,40,101,44,91,123,107,101,121,58,34,98,105,110,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,59,105,102,40,101,46,111,112,116,105,111,110,115,46,105,110,108,105,110,101,41,114,101,116,117,114,110,32,118,111,105,100,32,101,46,112,105,99,107,101,114,46,97,100,100,67,108,97,115,115,40,34,99,111,108,111,114,112,105,99,107,101,114,45,105,110,108,105,110,101,32,99,111,108,111,114,112,105,99,107,101,114,45,118,105,115,105,98,108,101,34,41,59,101,46,112,105,99,107,101,114,46,97,100,100,67,108,97,115,115,40,34,99,111,108,111,114,112,105,99,107,101,114,45,112,111,112,117,112,32,99,111,108,111,114,112,105,99,107,101,114,45,104,105,100,100,101,110,34,41,44,40,116,104,105,115,46,104,97,115,73,110,112,117,116,124,124,116,104,105,115,46,104,97,115,65,100,100,111,110,41,38,38,40,101,46,111,112,116,105,111,110,115,46,112,111,112,111,118,101,114,38,38,116,104,105,115,46,99,114,101,97,116,101,80,111,112,111,118,101,114,40,41,44,116,104,105,115,46,104,97,115,65,100,100,111,110,38,38,40,116,104,105,115,46,97,100,100,111,110,46,97,116,116,114,40,34,116,97,98,105,110,100,101,120,34,41,124,124,116,104,105,115,46,97,100,100,111,110,46,97,116,116,114,40,34,116,97,98,105,110,100,101,120,34,44,48,41,44,116,104,105,115,46,97,100,100,111,110,46,111,110,40,123,34,109,111,117,115,101,100,111,119,110,46,99,111,108,111,114,112,105,99,107,101,114,32,116,111,117,99,104,115,116,97,114,116,46,99,111,108,111,114,112,105,99,107,101,114,34,58,108,46,100,101,102,97,117,108,116,46,112,114,111,120,121,40,116,104,105,115,46,116,111,103,103,108,101,44,116,104,105,115,41,125,41,44,116,104,105,115,46,97,100,100,111,110,46,111,110,40,123,34,102,111,99,117,115,46,99,111,108,111,114,112,105,99,107,101,114,34,58,108,46,100,101,102,97,117,108,116,46,112,114,111,120,121,40,116,104,105,115,46,115,104,111,119,44,116,104,105,115,41,125,41,44,116,104,105,115,46,97,100,100,111,110,46,111,110,40,123,34,102,111,99,117,115,111,117,116,46,99,111,108,111,114,112,105,99,107,101,114,34,58,108,46,100,101,102,97,117,108,116,46,112,114,111,120,121,40,116,104,105,115,46,104,105,100,101,44,116,104,105,115,41,125,41,41,44,116,104,105,115,46,104,97,115,73,110,112,117,116,38,38,33,116,104,105,115,46,104,97,115,65,100,100,111,110,38,38,40,116,104,105,115,46,105,110,112,117,116,46,111,110,40,123,34,109,111,117,115,101,100,111,119,110,46,99,111,108,111,114,112,105,99,107,101,114,32,116,111,117,99,104,115,116,97,114,116,46,99,111,108,111,114,112,105,99,107,101,114,34,58,108,46,100,101,102,97,117,108,116,46,112,114,111,120,121,40,116,104,105,115,46,115,104,111,119,44,116,104,105,115,41,44,34,102,111,99,117,115,46,99,111,108,111,114,112,105,99,107,101,114,34,58,108,46,100,101,102,97,117,108,116,46,112,114,111,120,121,40,116,104,105,115,46,115,104,111,119,44,116,104,105,115,41,125,41,44,116,104,105,115,46,105,110,112,117,116,46,111,110,40,123,34,102,111,99,117,115,111,117,116,46,99,111,108,111,114,112,105,99,107,101,114,34,58,108,46,100,101,102,97,117,108,116,46,112,114,111,120,121,40,116,104,105,115,46,104,105,100,101,44,116,104,105,115,41,125,41,41,44,40,48,44,108,46,100,101,102,97,117,108,116,41,40,116,104,105,115,46,114,111,111,116,41,46,111,110,40,34,114,101,115,105,122,101,46,99,111,108,111,114,112,105,99,107,101,114,34,44,108,46,100,101,102,97,117,108,116,46,112,114,111,120,121,40,116,104,105,115,46,114,101,112,111,115,105,116,105,111,110,44,116,104,105,115,41,41,41,125,125,44,123,107,101,121,58,34,117,110,98,105,110,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,104,97,115,73,110,112,117,116,38,38,40,116,104,105,115,46,105,110,112,117,116,46,111,102,102,40,123,34,109,111,117,115,101,100,111,119,110,46,99,111,108,111,114,112,105,99,107,101,114,32,116,111,117,99,104,115,116,97,114,116,46,99,111,108,111,114,112,105,99,107,101,114,34,58,108,46,100,101,102,97,117,108,116,46,112,114,111,120,121,40,116,104,105,115,46,115,104,111,119,44,116,104,105,115,41,44,34,102,111,99,117,115,46,99,111,108,111,114,112,105,99,107,101,114,34,58,108,46,100,101,102,97,117,108,116,46,112,114,111,120,121,40,116,104,105,115,46,115,104,111,119,44,116,104,105,115,41,125,41,44,116,104,105,115,46,105,110,112,117,116,46,111,102,102,40,123,34,102,111,99,117,115,111,117,116,46,99,111,108,111,114,112,105,99,107,101,114,34,58,108,46,100,101,102,97,117,108,116,46,112,114,111,120,121,40,116,104,105,115,46,104,105,100,101,44,116,104,105,115,41,125,41,41,44,116,104,105,115,46,104,97,115,65,100,100,111,110,38,38,40,116,104,105,115,46,97,100,100,111,110,46,111,102,102,40,123,34,109,111,117,115,101,100,111,119,110,46,99,111,108,111,114,112,105,99,107,101,114,32,116,111,117,99,104,115,116,97,114,116,46,99,111,108,111,114,112,105,99,107,101,114,34,58,108,46,100,101,102,97,117,108,116,46,112,114,111,120,121,40,116,104,105,115,46,116,111,103,103,108,101,44,116,104,105,115,41,125,41,44,116,104,105,115,46,97,100,100,111,110,46,111,102,102,40,123,34,102,111,99,117,115,46,99,111,108,111,114,112,105,99,107,101,114,34,58,108,46,100,101,102,97,117,108,116,46,112,114,111,120,121,40,116,104,105,115,46,115,104,111,119,44,116,104,105,115,41,125,41,44,116,104,105,115,46,97,100,100,111,110,46,111,102,102,40,123,34,102,111,99,117,115,111,117,116,46,99,111,108,111,114,112,105,99,107,101,114,34,58,108,46,100,101,102,97,117,108,116,46,112,114,111,120,121,40,116,104,105,115,46,104,105,100,101,44,116,104,105,115,41,125,41,41,44,116,104,105,115,46,112,111,112,111,118,101,114,84,97,114,103,101,116,38,38,116,104,105,115,46,112,111,112,111,118,101,114,84,97,114,103,101,116,46,112,111,112,111,118,101,114,40,34,100,105,115,112,111,115,101,34,41,44,40,48,44,108,46,100,101,102,97,117,108,116,41,40,116,104,105,115,46,114,111,111,116,41,46,111,102,102,40,34,114,101,115,105,122,101,46,99,111,108,111,114,112,105,99,107,101,114,34,44,108,46,100,101,102,97,117,108,116,46,112,114,111,120,121,40,116,104,105,115,46,114,101,112,111,115,105,116,105,111,110,44,116,104,105,115,41,41,44,40,48,44,108,46,100,101,102,97,117,108,116,41,40,116,104,105,115,46,114,111,111,116,46,100,111,99,117,109,101,110,116,41,46,111,102,102,40,34,109,111,117,115,101,100,111,119,110,46,99,111,108,111,114,112,105,99,107,101,114,32,116,111,117,99,104,115,116,97,114,116,46,99,111,108,111,114,112,105,99,107,101,114,34,44,108,46,100,101,102,97,117,108,116,46,112,114,111,120,121,40,116,104,105,115,46,104,105,100,101,44,116,104,105,115,41,41,44,40,48,44,108,46,100,101,102,97,117,108,116,41,40,116,104,105,115,46,114,111,111,116,46,100,111,99,117,109,101,110,116,41,46,111,102,102,40,34,109,111,117,115,101,100,111,119,110,46,99,111,108,111,114,112,105,99,107,101,114,32,116,111,117,99,104,115,116,97,114,116,46,99,111,108,111,114,112,105,99,107,101,114,34,44,108,46,100,101,102,97,117,108,116,46,112,114,111,120,121,40,116,104,105,115,46,111,110,67,108,105,99,107,105,110,103,73,110,115,105,100,101,44,116,104,105,115,41,41,125,125,44,123,107,101,121,58,34,105,115,67,108,105,99,107,105,110,103,73,110,115,105,100,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,33,33,101,38,38,40,116,104,105,115,46,105,115,79,114,73,115,73,110,115,105,100,101,40,116,104,105,115,46,112,111,112,111,118,101,114,84,105,112,44,101,46,99,117,114,114,101,110,116,84,97,114,103,101,116,41,124,124,116,104,105,115,46,105,115,79,114,73,115,73,110,115,105,100,101,40,116,104,105,115,46,112,111,112,111,118,101,114,84,105,112,44,101,46,116,97,114,103,101,116,41,124,124,116,104,105,115,46,105,115,79,114,73,115,73,110,115,105,100,101,40,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,112,105,99,107,101,114,44,101,46,99,117,114,114,101,110,116,84,97,114,103,101,116,41,124,124,116,104,105,115,46,105,115,79,114,73,115,73,110,115,105,100,101,40,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,112,105,99,107,101,114,44,101,46,116,97,114,103,101,116,41,41,125,125,44,123,107,101,121,58,34,105,115,79,114,73,115,73,110,115,105,100,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,33,40,33,101,124,124,33,116,41,38,38,40,116,61,40,48,44,108,46,100,101,102,97,117,108,116,41,40,116,41,44,116,46,105,115,40,101,41,124,124,101,46,102,105,110,100,40,116,41,46,108,101,110,103,116,104,62,48,41,125,125,44,123,107,101,121,58,34,111,110,67,108,105,99,107,105,110,103,73,110,115,105,100,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,99,108,105,99,107,105,110,103,61,116,104,105,115,46,105,115,67,108,105,99,107,105,110,103,73,110,115,105,100,101,40,101,41,125,125,44,123,107,101,121,58,34,99,114,101,97,116,101,80,111,112,111,118,101,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,59,116,104,105,115,46,112,111,112,111,118,101,114,84,97,114,103,101,116,61,116,104,105,115,46,104,97,115,65,100,100,111,110,63,116,104,105,115,46,97,100,100,111,110,58,116,104,105,115,46,105,110,112,117,116,44,101,46,112,105,99,107,101,114,46,97,100,100,67,108,97,115,115,40,34,99,111,108,111,114,112,105,99,107,101,114,45,98,115,45,112,111,112,111,118,101,114,45,99,111,110,116,101,110,116,34,41,44,116,104,105,115,46,112,111,112,111,118,101,114,84,97,114,103,101,116,46,112,111,112,111,118,101,114,40,108,46,100,101,102,97,117,108,116,46,101,120,116,101,110,100,40,33,48,44,123,125,44,99,46,100,101,102,97,117,108,116,46,112,111,112,111,118,101,114,44,101,46,111,112,116,105,111,110,115,46,112,111,112,111,118,101,114,44,123,116,114,105,103,103,101,114,58,34,109,97,110,117,97,108,34,44,99,111,110,116,101,110,116,58,101,46,112,105,99,107,101,114,44,104,116,109,108,58,33,48,125,41,41,44,116,104,105,115,46,112,111,112,111,118,101,114,84,105,112,61,40,48,44,108,46,100,101,102,97,117,108,116,41,40,116,104,105,115,46,112,111,112,111,118,101,114,84,97,114,103,101,116,46,112,111,112,111,118,101,114,40,34,103,101,116,84,105,112,69,108,101,109,101,110,116,34,41,46,100,97,116,97,40,34,98,115,46,112,111,112,111,118,101,114,34,41,46,116,105,112,41,44,116,104,105,115,46,112,111,112,111,118,101,114,84,105,112,46,97,100,100,67,108,97,115,115,40,34,99,111,108,111,114,112,105,99,107,101,114,45,98,115,45,112,111,112,111,118,101,114,34,41,44,116,104,105,115,46,112,111,112,111,118,101,114,84,97,114,103,101,116,46,111,110,40,34,115,104,111,119,110,46,98,115,46,112,111,112,111,118,101,114,34,44,108,46,100,101,102,97,117,108,116,46,112,114,111,120,121,40,116,104,105,115,46,102,105,114,101,83,104,111,119,44,116,104,105,115,41,41,44,116,104,105,115,46,112,111,112,111,118,101,114,84,97,114,103,101,116,46,111,110,40,34,104,105,100,100,101,110,46,98,115,46,112,111,112,111,118,101,114,34,44,108,46,100,101,102,97,117,108,116,46,112,114,111,120,121,40,116,104,105,115,46,102,105,114,101,72,105,100,101,44,116,104,105,115,41,41,125,125,44,123,107,101,121,58,34,114,101,112,111,115,105,116,105,111,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,112,111,112,111,118,101,114,84,97,114,103,101,116,38,38,116,104,105,115,46,105,115,86,105,115,105,98,108,101,40,41,38,38,116,104,105,115,46,112,111,112,111,118,101,114,84,97,114,103,101,116,46,112,111,112,111,118,101,114,40,34,117,112,100,97,116,101,34,41,125,125,44,123,107,101,121,58,34,116,111,103,103,108,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,105,115,86,105,115,105,98,108,101,40,41,63,116,104,105,115,46,104,105,100,101,40,101,41,58,116,104,105,115,46,115,104,111,119,40,101,41,125,125,44,123,107,101,121,58,34,115,104,111,119,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,105,102,40,33,40,116,104,105,115,46,105,115,86,105,115,105,98,108,101,40,41,124,124,116,104,105,115,46,115,104,111,119,105,110,103,124,124,116,104,105,115,46,104,105,100,100,105,110,103,41,41,123,116,104,105,115,46,115,104,111,119,105,110,103,61,33,48,44,116,104,105,115,46,104,105,100,100,105,110,103,61,33,49,44,116,104,105,115,46,99,108,105,99,107,105,110,103,61,33,49,59,118,97,114,32,116,61,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,59,116,46,108,97,115,116,69,118,101,110,116,46,97,108,105,97,115,61,34,115,104,111,119,34,44,116,46,108,97,115,116,69,118,101,110,116,46,101,61,101,44,101,38,38,40,33,116,104,105,115,46,104,97,115,73,110,112,117,116,124,124,34,99,111,108,111,114,34,61,61,61,116,104,105,115,46,105,110,112,117,116,46,97,116,116,114,40,34,116,121,112,101,34,41,41,38,38,101,38,38,101,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,38,38,40,101,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,44,101,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,41,44,116,104,105,115,46,105,115,80,111,112,111,118,101,114,38,38,40,48,44,108,46,100,101,102,97,117,108,116,41,40,116,104,105,115,46,114,111,111,116,41,46,111,110,40,34,114,101,115,105,122,101,46,99,111,108,111,114,112,105,99,107,101,114,34,44,108,46,100,101,102,97,117,108,116,46,112,114,111,120,121,40,116,104,105,115,46,114,101,112,111,115,105,116,105,111,110,44,116,104,105,115,41,41,44,116,46,112,105,99,107,101,114,46,97,100,100,67,108,97,115,115,40,34,99,111,108,111,114,112,105,99,107,101,114,45,118,105,115,105,98,108,101,34,41,46,114,101,109,111,118,101,67,108,97,115,115,40,34,99,111,108,111,114,112,105,99,107,101,114,45,104,105,100,100,101,110,34,41,44,116,104,105,115,46,112,111,112,111,118,101,114,84,97,114,103,101,116,63,116,104,105,115,46,112,111,112,111,118,101,114,84,97,114,103,101,116,46,112,111,112,111,118,101,114,40,34,115,104,111,119,34,41,58,116,104,105,115,46,102,105,114,101,83,104,111,119,40,41,125,125,125,44,123,107,101,121,58,34,102,105,114,101,83,104,111,119,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,104,105,100,100,105,110,103,61,33,49,44,116,104,105,115,46,115,104,111,119,105,110,103,61,33,49,44,116,104,105,115,46,105,115,80,111,112,111,118,101,114,38,38,40,40,48,44,108,46,100,101,102,97,117,108,116,41,40,116,104,105,115,46,114,111,111,116,46,100,111,99,117,109,101,110,116,41,46,111,110,40,34,109,111,117,115,101,100,111,119,110,46,99,111,108,111,114,112,105,99,107,101,114,32,116,111,117,99,104,115,116,97,114,116,46,99,111,108,111,114,112,105,99,107,101,114,34,44,108,46,100,101,102,97,117,108,116,46,112,114,111,120,121,40,116,104,105,115,46,104,105,100,101,44,116,104,105,115,41,41,44,40,48,44,108,46,100,101,102,97,117,108,116,41,40,116,104,105,115,46,114,111,111,116,46,100,111,99,117,109,101,110,116,41,46,111,110,40,34,109,111,117,115,101,100,111,119,110,46,99,111,108,111,114,112,105,99,107,101,114,32,116,111,117,99,104,115,116,97,114,116,46,99,111,108,111,114,112,105,99,107,101,114,34,44,108,46,100,101,102,97,117,108,116,46,112,114,111,120,121,40,116,104,105,115,46,111,110,67,108,105,99,107,105,110,103,73,110,115,105,100,101,44,116,104,105,115,41,41,41,44,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,116,114,105,103,103,101,114,40,34,99,111,108,111,114,112,105,99,107,101,114,83,104,111,119,34,41,125,125,44,123,107,101,121,58,34,104,105,100,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,105,102,40,33,40,116,104,105,115,46,105,115,72,105,100,100,101,110,40,41,124,124,116,104,105,115,46,115,104,111,119,105,110,103,124,124,116,104,105,115,46,104,105,100,100,105,110,103,41,41,123,118,97,114,32,116,61,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,44,111,61,116,104,105,115,46,99,108,105,99,107,105,110,103,124,124,116,104,105,115,46,105,115,67,108,105,99,107,105,110,103,73,110,115,105,100,101,40,101,41,59,105,102,40,116,104,105,115,46,104,105,100,100,105,110,103,61,33,48,44,116,104,105,115,46,115,104,111,119,105,110,103,61,33,49,44,116,104,105,115,46,99,108,105,99,107,105,110,103,61,33,49,44,116,46,108,97,115,116,69,118,101,110,116,46,97,108,105,97,115,61,34,104,105,100,101,34,44,116,46,108,97,115,116,69,118,101,110,116,46,101,61,101,44,111,41,114,101,116,117,114,110,32,118,111,105,100,40,116,104,105,115,46,104,105,100,100,105,110,103,61,33,49,41,59,116,104,105,115,46,112,111,112,111,118,101,114,84,97,114,103,101,116,63,116,104,105,115,46,112,111,112,111,118,101,114,84,97,114,103,101,116,46,112,111,112,111,118,101,114,40,34,104,105,100,101,34,41,58,116,104,105,115,46,102,105,114,101,72,105,100,101,40,41,125,125,125,44,123,107,101,121,58,34,102,105,114,101,72,105,100,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,104,105,100,100,105,110,103,61,33,49,44,116,104,105,115,46,115,104,111,119,105,110,103,61,33,49,59,118,97,114,32,101,61,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,59,101,46,112,105,99,107,101,114,46,97,100,100,67,108,97,115,115,40,34,99,111,108,111,114,112,105,99,107,101,114,45,104,105,100,100,101,110,34,41,46,114,101,109,111,118,101,67,108,97,115,115,40,34,99,111,108,111,114,112,105,99,107,101,114,45,118,105,115,105,98,108,101,34,41,44,40,48,44,108,46,100,101,102,97,117,108,116,41,40,116,104,105,115,46,114,111,111,116,41,46,111,102,102,40,34,114,101,115,105,122,101,46,99,111,108,111,114,112,105,99,107,101,114,34,44,108,46,100,101,102,97,117,108,116,46,112,114,111,120,121,40,116,104,105,115,46,114,101,112,111,115,105,116,105,111,110,44,116,104,105,115,41,41,44,40,48,44,108,46,100,101,102,97,117,108,116,41,40,116,104,105,115,46,114,111,111,116,46,100,111,99,117,109,101,110,116,41,46,111,102,102,40,34,109,111,117,115,101,100,111,119,110,46,99,111,108,111,114,112,105,99,107,101,114,32,116,111,117,99,104,115,116,97,114,116,46,99,111,108,111,114,112,105,99,107,101,114,34,44,108,46,100,101,102,97,117,108,116,46,112,114,111,120,121,40,116,104,105,115,46,104,105,100,101,44,116,104,105,115,41,41,44,40,48,44,108,46,100,101,102,97,117,108,116,41,40,116,104,105,115,46,114,111,111,116,46,100,111,99,117,109,101,110,116,41,46,111,102,102,40,34,109,111,117,115,101,100,111,119,110,46,99,111,108,111,114,112,105,99,107,101,114,32,116,111,117,99,104,115,116,97,114,116,46,99,111,108,111,114,112,105,99,107,101,114,34,44,108,46,100,101,102,97,117,108,116,46,112,114,111,120,121,40,116,104,105,115,46,111,110,67,108,105,99,107,105,110,103,73,110,115,105,100,101,44,116,104,105,115,41,41,44,101,46,116,114,105,103,103,101,114,40,34,99,111,108,111,114,112,105,99,107,101,114,72,105,100,101,34,41,125,125,44,123,107,101,121,58,34,102,111,99,117,115,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,104,97,115,65,100,100,111,110,63,116,104,105,115,46,97,100,100,111,110,46,102,111,99,117,115,40,41,58,33,33,116,104,105,115,46,104,97,115,73,110,112,117,116,38,38,116,104,105,115,46,105,110,112,117,116,46,102,111,99,117,115,40,41,125,125,44,123,107,101,121,58,34,105,115,86,105,115,105,98,108,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,112,105,99,107,101,114,46,104,97,115,67,108,97,115,115,40,34,99,111,108,111,114,112,105,99,107,101,114,45,118,105,115,105,98,108,101,34,41,38,38,33,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,112,105,99,107,101,114,46,104,97,115,67,108,97,115,115,40,34,99,111,108,111,114,112,105,99,107,101,114,45,104,105,100,100,101,110,34,41,125,125,44,123,107,101,121,58,34,105,115,72,105,100,100,101,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,112,105,99,107,101,114,46,104,97,115,67,108,97,115,115,40,34,99,111,108,111,114,112,105,99,107,101,114,45,104,105,100,100,101,110,34,41,38,38,33,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,112,105,99,107,101,114,46,104,97,115,67,108,97,115,115,40,34,99,111,108,111,114,112,105,99,107,101,114,45,118,105,115,105,98,108,101,34,41,125,125,44,123,107,101,121,58,34,105,110,112,117,116,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,105,110,112,117,116,72,97,110,100,108,101,114,46,105,110,112,117,116,125,125,44,123,107,101,121,58,34,104,97,115,73,110,112,117,116,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,105,110,112,117,116,72,97,110,100,108,101,114,46,104,97,115,73,110,112,117,116,40,41,125,125,44,123,107,101,121,58,34,97,100,100,111,110,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,97,100,100,111,110,72,97,110,100,108,101,114,46,97,100,100,111,110,125,125,44,123,107,101,121,58,34,104,97,115,65,100,100,111,110,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,97,100,100,111,110,72,97,110,100,108,101,114,46,104,97,115,65,100,100,111,110,40,41,125,125,44,123,107,101,121,58,34,105,115,80,111,112,111,118,101,114,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,33,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,111,112,116,105,111,110,115,46,105,110,108,105,110,101,38,38,33,33,116,104,105,115,46,112,111,112,111,118,101,114,84,105,112,125,125,93,41,44,101,125,40,41,59,116,46,100,101,102,97,117,108,116,61,117,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,111,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,102,117,110,99,116,105,111,110,32,114,40,101,41,123,114,101,116,117,114,110,32,101,38,38,101,46,95,95,101,115,77,111,100,117,108,101,63,101,58,123,100,101,102,97,117,108,116,58,101,125,125,102,117,110,99,116,105,111,110,32,110,40,101,44,116,41,123,105,102,40,33,40,101,32,105,110,115,116,97,110,99,101,111,102,32,116,41,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,67,97,110,110,111,116,32,99,97,108,108,32,97,32,99,108,97,115,115,32,97,115,32,97,32,102,117,110,99,116,105,111,110,34,41,125,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,44,34,95,95,101,115,77,111,100,117,108,101,34,44,123,118,97,108,117,101,58,33,48,125,41,59,118,97,114,32,105,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,101,40,101,44,116,41,123,102,111,114,40,118,97,114,32,111,61,48,59,111,60,116,46,108,101,110,103,116,104,59,111,43,43,41,123,118,97,114,32,114,61,116,91,111,93,59,114,46,101,110,117,109,101,114,97,98,108,101,61,114,46,101,110,117,109,101,114,97,98,108,101,124,124,33,49,44,114,46,99,111,110,102,105,103,117,114,97,98,108,101,61,33,48,44,34,118,97,108,117,101,34,105,110,32,114,38,38,40,114,46,119,114,105,116,97,98,108,101,61,33,48,41,44,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,101,44,114,46,107,101,121,44,114,41,125,125,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,44,111,44,114,41,123,114,101,116,117,114,110,32,111,38,38,101,40,116,46,112,114,111,116,111,116,121,112,101,44,111,41,44,114,38,38,101,40,116,44,114,41,44,116,125,125,40,41,44,97,61,111,40,48,41,44,108,61,114,40,97,41,44,115,61,111,40,50,41,44,99,61,114,40,115,41,44,117,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,101,40,116,41,123,110,40,116,104,105,115,44,101,41,44,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,61,116,44,116,104,105,115,46,105,110,112,117,116,61,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,101,108,101,109,101,110,116,46,105,115,40,34,105,110,112,117,116,34,41,63,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,101,108,101,109,101,110,116,58,33,33,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,111,112,116,105,111,110,115,46,105,110,112,117,116,38,38,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,101,108,101,109,101,110,116,46,102,105,110,100,40,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,111,112,116,105,111,110,115,46,105,110,112,117,116,41,44,116,104,105,115,46,105,110,112,117,116,38,38,48,61,61,61,116,104,105,115,46,105,110,112,117,116,46,108,101,110,103,116,104,38,38,40,116,104,105,115,46,105,110,112,117,116,61,33,49,41,44,116,104,105,115,46,95,105,110,105,116,86,97,108,117,101,40,41,125,114,101,116,117,114,110,32,105,40,101,44,91,123,107,101,121,58,34,98,105,110,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,104,97,115,73,110,112,117,116,40,41,38,38,40,116,104,105,115,46,105,110,112,117,116,46,111,110,40,123,34,107,101,121,117,112,46,99,111,108,111,114,112,105,99,107,101,114,34,58,108,46,100,101,102,97,117,108,116,46,112,114,111,120,121,40,116,104,105,115,46,111,110,107,101,121,117,112,44,116,104,105,115,41,125,41,44,116,104,105,115,46,105,110,112,117,116,46,111,110,40,123,34,99,104,97,110,103,101,46,99,111,108,111,114,112,105,99,107,101,114,34,58,108,46,100,101,102,97,117,108,116,46,112,114,111,120,121,40,116,104,105,115,46,111,110,99,104,97,110,103,101,44,116,104,105,115,41,125,41,41,125,125,44,123,107,101,121,58,34,117,110,98,105,110,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,104,97,115,73,110,112,117,116,40,41,38,38,116,104,105,115,46,105,110,112,117,116,46,111,102,102,40,34,46,99,111,108,111,114,112,105,99,107,101,114,34,41,125,125,44,123,107,101,121,58,34,95,105,110,105,116,86,97,108,117,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,105,102,40,116,104,105,115,46,104,97,115,73,110,112,117,116,40,41,41,123,118,97,114,32,101,61,34,34,59,91,116,104,105,115,46,105,110,112,117,116,46,118,97,108,40,41,44,116,104,105,115,46,105,110,112,117,116,46,100,97,116,97,40,34,99,111,108,111,114,34,41,44,116,104,105,115,46,105,110,112,117,116,46,97,116,116,114,40,34,100,97,116,97,45,99,111,108,111,114,34,41,93,46,109,97,112,40,102,117,110,99,116,105,111,110,40,116,41,123,116,38,38,34,34,61,61,61,101,38,38,40,101,61,116,41,125,41,44,101,32,105,110,115,116,97,110,99,101,111,102,32,99,46,100,101,102,97,117,108,116,63,101,61,116,104,105,115,46,103,101,116,70,111,114,109,97,116,116,101,100,67,111,108,111,114,40,101,46,115,116,114,105,110,103,40,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,102,111,114,109,97,116,41,41,58,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,101,124,124,101,32,105,110,115,116,97,110,99,101,111,102,32,83,116,114,105,110,103,124,124,40,101,61,34,34,41,44,116,104,105,115,46,105,110,112,117,116,46,112,114,111,112,40,34,118,97,108,117,101,34,44,101,41,125,125,125,44,123,107,101,121,58,34,103,101,116,86,97,108,117,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,33,33,116,104,105,115,46,104,97,115,73,110,112,117,116,40,41,38,38,116,104,105,115,46,105,110,112,117,116,46,118,97,108,40,41,125,125,44,123,107,101,121,58,34,115,101,116,86,97,108,117,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,105,102,40,116,104,105,115,46,104,97,115,73,110,112,117,116,40,41,41,123,118,97,114,32,116,61,116,104,105,115,46,105,110,112,117,116,46,112,114,111,112,40,34,118,97,108,117,101,34,41,59,101,61,101,124,124,34,34,44,101,33,61,61,40,116,124,124,34,34,41,38,38,40,116,104,105,115,46,105,110,112,117,116,46,112,114,111,112,40,34,118,97,108,117,101,34,44,101,41,44,116,104,105,115,46,105,110,112,117,116,46,116,114,105,103,103,101,114,40,123,116,121,112,101,58,34,99,104,97,110,103,101,34,44,99,111,108,111,114,112,105,99,107,101,114,58,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,44,99,111,108,111,114,58,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,99,111,108,111,114,44,118,97,108,117,101,58,101,125,41,41,125,125,125,44,123,107,101,121,58,34,103,101,116,70,111,114,109,97,116,116,101,100,67,111,108,111,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,62,48,38,38,118,111,105,100,32,48,33,61,61,97,114,103,117,109,101,110,116,115,91,48,93,63,97,114,103,117,109,101,110,116,115,91,48,93,58,110,117,108,108,59,114,101,116,117,114,110,40,101,61,101,124,124,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,99,111,108,111,114,72,97,110,100,108,101,114,46,103,101,116,67,111,108,111,114,83,116,114,105,110,103,40,41,41,63,40,101,61,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,99,111,108,111,114,72,97,110,100,108,101,114,46,114,101,115,111,108,118,101,67,111,108,111,114,68,101,108,101,103,97,116,101,40,101,44,33,49,41,44,33,49,61,61,61,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,111,112,116,105,111,110,115,46,117,115,101,72,97,115,104,80,114,101,102,105,120,38,38,40,101,61,101,46,114,101,112,108,97,99,101,40,47,94,35,47,103,44,34,34,41,41,44,101,41,58,34,34,125,125,44,123,107,101,121,58,34,104,97,115,73,110,112,117,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,33,49,33,61,61,116,104,105,115,46,105,110,112,117,116,125,125,44,123,107,101,121,58,34,105,115,69,110,97,98,108,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,104,97,115,73,110,112,117,116,40,41,38,38,33,116,104,105,115,46,105,115,68,105,115,97,98,108,101,100,40,41,125,125,44,123,107,101,121,58,34,105,115,68,105,115,97,98,108,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,104,97,115,73,110,112,117,116,40,41,38,38,33,48,61,61,61,116,104,105,115,46,105,110,112,117,116,46,112,114,111,112,40,34,100,105,115,97,98,108,101,100,34,41,125,125,44,123,107,101,121,58,34,100,105,115,97,98,108,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,104,97,115,73,110,112,117,116,40,41,38,38,116,104,105,115,46,105,110,112,117,116,46,112,114,111,112,40,34,100,105,115,97,98,108,101,100,34,44,33,48,41,125,125,44,123,107,101,121,58,34,101,110,97,98,108,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,104,97,115,73,110,112,117,116,40,41,38,38,116,104,105,115,46,105,110,112,117,116,46,112,114,111,112,40,34,100,105,115,97,98,108,101,100,34,44,33,49,41,125,125,44,123,107,101,121,58,34,117,112,100,97,116,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,104,97,115,73,110,112,117,116,40,41,38,38,40,33,49,61,61,61,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,111,112,116,105,111,110,115,46,97,117,116,111,73,110,112,117,116,70,97,108,108,98,97,99,107,38,38,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,99,111,108,111,114,72,97,110,100,108,101,114,46,105,115,73,110,118,97,108,105,100,67,111,108,111,114,40,41,124,124,116,104,105,115,46,115,101,116,86,97,108,117,101,40,116,104,105,115,46,103,101,116,70,111,114,109,97,116,116,101,100,67,111,108,111,114,40,41,41,41,125,125,44,123,107,101,121,58,34,111,110,99,104,97,110,103,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,108,97,115,116,69,118,101,110,116,46,97,108,105,97,115,61,34,105,110,112,117,116,46,99,104,97,110,103,101,34,44,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,108,97,115,116,69,118,101,110,116,46,101,61,101,59,118,97,114,32,116,61,116,104,105,115,46,103,101,116,86,97,108,117,101,40,41,59,116,33,61,61,101,46,118,97,108,117,101,38,38,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,115,101,116,86,97,108,117,101,40,116,41,125,125,44,123,107,101,121,58,34,111,110,107,101,121,117,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,108,97,115,116,69,118,101,110,116,46,97,108,105,97,115,61,34,105,110,112,117,116,46,107,101,121,117,112,34,44,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,108,97,115,116,69,118,101,110,116,46,101,61,101,59,118,97,114,32,116,61,116,104,105,115,46,103,101,116,86,97,108,117,101,40,41,59,116,33,61,61,101,46,118,97,108,117,101,38,38,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,115,101,116,86,97,108,117,101,40,116,41,125,125,93,41,44,101,125,40,41,59,116,46,100,101,102,97,117,108,116,61,117,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,111,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,102,117,110,99,116,105,111,110,32,114,40,101,44,116,41,123,105,102,40,33,40,116,104,105,115,32,105,110,115,116,97,110,99,101,111,102,32,114,41,41,114,101,116,117,114,110,32,110,101,119,32,114,40,101,44,116,41,59,105,102,40,116,38,38,116,32,105,110,32,102,38,38,40,116,61,110,117,108,108,41,44,116,38,38,33,40,116,32,105,110,32,104,41,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,85,110,107,110,111,119,110,32,109,111,100,101,108,58,32,34,43,116,41,59,118,97,114,32,111,44,110,59,105,102,40,118,111,105,100,32,48,61,61,61,101,41,116,104,105,115,46,109,111,100,101,108,61,34,114,103,98,34,44,116,104,105,115,46,99,111,108,111,114,61,91,48,44,48,44,48,93,44,116,104,105,115,46,118,97,108,112,104,97,61,49,59,101,108,115,101,32,105,102,40,101,32,105,110,115,116,97,110,99,101,111,102,32,114,41,116,104,105,115,46,109,111,100,101,108,61,101,46,109,111,100,101,108,44,116,104,105,115,46,99,111,108,111,114,61,101,46,99,111,108,111,114,46,115,108,105,99,101,40,41,44,116,104,105,115,46,118,97,108,112,104,97,61,101,46,118,97,108,112,104,97,59,101,108,115,101,32,105,102,40,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,101,41,123,118,97,114,32,105,61,117,46,103,101,116,40,101,41,59,105,102,40,110,117,108,108,61,61,61,105,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,85,110,97,98,108,101,32,116,111,32,112,97,114,115,101,32,99,111,108,111,114,32,102,114,111,109,32,115,116,114,105,110,103,58,32,34,43,101,41,59,116,104,105,115,46,109,111,100,101,108,61,105,46,109,111,100,101,108,44,110,61,104,91,116,104,105,115,46,109,111,100,101,108,93,46,99,104,97,110,110,101,108,115,44,116,104,105,115,46,99,111,108,111,114,61,105,46,118,97,108,117,101,46,115,108,105,99,101,40,48,44,110,41,44,116,104,105,115,46,118,97,108,112,104,97,61,34,110,117,109,98,101,114,34,61,61,116,121,112,101,111,102,32,105,46,118,97,108,117,101,91,110,93,63,105,46,118,97,108,117,101,91,110,93,58,49,125,101,108,115,101,32,105,102,40,101,46,108,101,110,103,116,104,41,123,116,104,105,115,46,109,111,100,101,108,61,116,124,124,34,114,103,98,34,44,110,61,104,91,116,104,105,115,46,109,111,100,101,108,93,46,99,104,97,110,110,101,108,115,59,118,97,114,32,97,61,112,46,99,97,108,108,40,101,44,48,44,110,41,59,116,104,105,115,46,99,111,108,111,114,61,99,40,97,44,110,41,44,116,104,105,115,46,118,97,108,112,104,97,61,34,110,117,109,98,101,114,34,61,61,116,121,112,101,111,102,32,101,91,110,93,63,101,91,110,93,58,49,125,101,108,115,101,32,105,102,40,34,110,117,109,98,101,114,34,61,61,116,121,112,101,111,102,32,101,41,101,38,61,49,54,55,55,55,50,49,53,44,116,104,105,115,46,109,111,100,101,108,61,34,114,103,98,34,44,116,104,105,115,46,99,111,108,111,114,61,91,101,62,62,49,54,38,50,53,53,44,101,62,62,56,38,50,53,53,44,50,53,53,38,101,93,44,116,104,105,115,46,118,97,108,112,104,97,61,49,59,101,108,115,101,123,116,104,105,115,46,118,97,108,112,104,97,61,49,59,118,97,114,32,108,61,79,98,106,101,99,116,46,107,101,121,115,40,101,41,59,34,97,108,112,104,97,34,105,110,32,101,38,38,40,108,46,115,112,108,105,99,101,40,108,46,105,110,100,101,120,79,102,40,34,97,108,112,104,97,34,41,44,49,41,44,116,104,105,115,46,118,97,108,112,104,97,61,34,110,117,109,98,101,114,34,61,61,116,121,112,101,111,102,32,101,46,97,108,112,104,97,63,101,46,97,108,112,104,97,58,48,41,59,118,97,114,32,115,61,108,46,115,111,114,116,40,41,46,106,111,105,110,40,34,34,41,59,105,102,40,33,40,115,32,105,110,32,100,41,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,85,110,97,98,108,101,32,116,111,32,112,97,114,115,101,32,99,111,108,111,114,32,102,114,111,109,32,111,98,106,101,99,116,58,32,34,43,74,83,79,78,46,115,116,114,105,110,103,105,102,121,40,101,41,41,59,116,104,105,115,46,109,111,100,101,108,61,100,91,115,93,59,118,97,114,32,107,61,104,91,116,104,105,115,46,109,111,100,101,108,93,46,108,97,98,101,108,115,44,103,61,91,93,59,102,111,114,40,111,61,48,59,111,60,107,46,108,101,110,103,116,104,59,111,43,43,41,103,46,112,117,115,104,40,101,91,107,91,111,93,93,41,59,116,104,105,115,46,99,111,108,111,114,61,99,40,103,41,125,105,102,40,118,91,116,104,105,115,46,109,111,100,101,108,93,41,102,111,114,40,110,61,104,91,116,104,105,115,46,109,111,100,101,108,93,46,99,104,97,110,110,101,108,115,44,111,61,48,59,111,60,110,59,111,43,43,41,123,118,97,114,32,121,61,118,91,116,104,105,115,46,109,111,100,101,108,93,91,111,93,59,121,38,38,40,116,104,105,115,46,99,111,108,111,114,91,111,93,61,121,40,116,104,105,115,46,99,111,108,111,114,91,111,93,41,41,125,116,104,105,115,46,118,97,108,112,104,97,61,77,97,116,104,46,109,97,120,40,48,44,77,97,116,104,46,109,105,110,40,49,44,116,104,105,115,46,118,97,108,112,104,97,41,41,44,79,98,106,101,99,116,46,102,114,101,101,122,101,38,38,79,98,106,101,99,116,46,102,114,101,101,122,101,40,116,104,105,115,41,125,102,117,110,99,116,105,111,110,32,110,40,101,44,116,41,123,114,101,116,117,114,110,32,78,117,109,98,101,114,40,101,46,116,111,70,105,120,101,100,40,116,41,41,125,102,117,110,99,116,105,111,110,32,105,40,101,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,40,116,44,101,41,125,125,102,117,110,99,116,105,111,110,32,97,40,101,44,116,44,111,41,123,114,101,116,117,114,110,32,101,61,65,114,114,97,121,46,105,115,65,114,114,97,121,40,101,41,63,101,58,91,101,93,44,101,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,101,41,123,40,118,91,101,93,124,124,40,118,91,101,93,61,91,93,41,41,91,116,93,61,111,125,41,44,101,61,101,91,48,93,44,102,117,110,99,116,105,111,110,40,114,41,123,118,97,114,32,110,59,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,111,38,38,40,114,61,111,40,114,41,41,44,110,61,116,104,105,115,91,101,93,40,41,44,110,46,99,111,108,111,114,91,116,93,61,114,44,110,41,58,40,110,61,116,104,105,115,91,101,93,40,41,46,99,111,108,111,114,91,116,93,44,111,38,38,40,110,61,111,40,110,41,41,44,110,41,125,125,102,117,110,99,116,105,111,110,32,108,40,101,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,77,97,116,104,46,109,97,120,40,48,44,77,97,116,104,46,109,105,110,40,101,44,116,41,41,125,125,102,117,110,99,116,105,111,110,32,115,40,101,41,123,114,101,116,117,114,110,32,65,114,114,97,121,46,105,115,65,114,114,97,121,40,101,41,63,101,58,91,101,93,125,102,117,110,99,116,105,111,110,32,99,40,101,44,116,41,123,102,111,114,40,118,97,114,32,111,61,48,59,111,60,116,59,111,43,43,41,34,110,117,109,98,101,114,34,33,61,116,121,112,101,111,102,32,101,91,111,93,38,38,40,101,91,111,93,61,48,41,59,114,101,116,117,114,110,32,101,125,118,97,114,32,117,61,111,40,49,55,41,44,104,61,111,40,50,48,41,44,112,61,91,93,46,115,108,105,99,101,44,102,61,91,34,107,101,121,119,111,114,100,34,44,34,103,114,97,121,34,44,34,104,101,120,34,93,44,100,61,123,125,59,79,98,106,101,99,116,46,107,101,121,115,40,104,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,101,41,123,100,91,112,46,99,97,108,108,40,104,91,101,93,46,108,97,98,101,108,115,41,46,115,111,114,116,40,41,46,106,111,105,110,40,34,34,41,93,61,101,125,41,59,118,97,114,32,118,61,123,125,59,114,46,112,114,111,116,111,116,121,112,101,61,123,116,111,83,116,114,105,110,103,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,115,116,114,105,110,103,40,41,125,44,116,111,74,83,79,78,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,91,116,104,105,115,46,109,111,100,101,108,93,40,41,125,44,115,116,114,105,110,103,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,116,104,105,115,46,109,111,100,101,108,32,105,110,32,117,46,116,111,63,116,104,105,115,58,116,104,105,115,46,114,103,98,40,41,59,116,61,116,46,114,111,117,110,100,40,34,110,117,109,98,101,114,34,61,61,116,121,112,101,111,102,32,101,63,101,58,49,41,59,118,97,114,32,111,61,49,61,61,61,116,46,118,97,108,112,104,97,63,116,46,99,111,108,111,114,58,116,46,99,111,108,111,114,46,99,111,110,99,97,116,40,116,104,105,115,46,118,97,108,112,104,97,41,59,114,101,116,117,114,110,32,117,46,116,111,91,116,46,109,111,100,101,108,93,40,111,41,125,44,112,101,114,99,101,110,116,83,116,114,105,110,103,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,116,104,105,115,46,114,103,98,40,41,46,114,111,117,110,100,40,34,110,117,109,98,101,114,34,61,61,116,121,112,101,111,102,32,101,63,101,58,49,41,44,111,61,49,61,61,61,116,46,118,97,108,112,104,97,63,116,46,99,111,108,111,114,58,116,46,99,111,108,111,114,46,99,111,110,99,97,116,40,116,104,105,115,46,118,97,108,112,104,97,41,59,114,101,116,117,114,110,32,117,46,116,111,46,114,103,98,46,112,101,114,99,101,110,116,40,111,41,125,44,97,114,114,97,121,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,49,61,61,61,116,104,105,115,46,118,97,108,112,104,97,63,116,104,105,115,46,99,111,108,111,114,46,115,108,105,99,101,40,41,58,116,104,105,115,46,99,111,108,111,114,46,99,111,110,99,97,116,40,116,104,105,115,46,118,97,108,112,104,97,41,125,44,111,98,106,101,99,116,58,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,118,97,114,32,101,61,123,125,44,116,61,104,91,116,104,105,115,46,109,111,100,101,108,93,46,99,104,97,110,110,101,108,115,44,111,61,104,91,116,104,105,115,46,109,111,100,101,108,93,46,108,97,98,101,108,115,44,114,61,48,59,114,60,116,59,114,43,43,41,101,91,111,91,114,93,93,61,116,104,105,115,46,99,111,108,111,114,91,114,93,59,114,101,116,117,114,110,32,49,33,61,61,116,104,105,115,46,118,97,108,112,104,97,38,38,40,101,46,97,108,112,104,97,61,116,104,105,115,46,118,97,108,112,104,97,41,44,101,125,44,117,110,105,116,65,114,114,97,121,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,114,103,98,40,41,46,99,111,108,111,114,59,114,101,116,117,114,110,32,101,91,48,93,47,61,50,53,53,44,101,91,49,93,47,61,50,53,53,44,101,91,50,93,47,61,50,53,53,44,49,33,61,61,116,104,105,115,46,118,97,108,112,104,97,38,38,101,46,112,117,115,104,40,116,104,105,115,46,118,97,108,112,104,97,41,44,101,125,44,117,110,105,116,79,98,106,101,99,116,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,114,103,98,40,41,46,111,98,106,101,99,116,40,41,59,114,101,116,117,114,110,32,101,46,114,47,61,50,53,53,44,101,46,103,47,61,50,53,53,44,101,46,98,47,61,50,53,53,44,49,33,61,61,116,104,105,115,46,118,97,108,112,104,97,38,38,40,101,46,97,108,112,104,97,61,116,104,105,115,46,118,97,108,112,104,97,41,44,101,125,44,114,111,117,110,100,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,61,77,97,116,104,46,109,97,120,40,101,124,124,48,44,48,41,44,110,101,119,32,114,40,116,104,105,115,46,99,111,108,111,114,46,109,97,112,40,105,40,101,41,41,46,99,111,110,99,97,116,40,116,104,105,115,46,118,97,108,112,104,97,41,44,116,104,105,115,46,109,111,100,101,108,41,125,44,97,108,112,104,97,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,110,101,119,32,114,40,116,104,105,115,46,99,111,108,111,114,46,99,111,110,99,97,116,40,77,97,116,104,46,109,97,120,40,48,44,77,97,116,104,46,109,105,110,40,49,44,101,41,41,41,44,116,104,105,115,46,109,111,100,101,108,41,58,116,104,105,115,46,118,97,108,112,104,97,125,44,114,101,100,58,97,40,34,114,103,98,34,44,48,44,108,40,50,53,53,41,41,44,103,114,101,101,110,58,97,40,34,114,103,98,34,44,49,44,108,40,50,53,53,41,41,44,98,108,117,101,58,97,40,34,114,103,98,34,44,50,44,108,40,50,53,53,41,41,44,104,117,101,58,97,40,91,34,104,115,108,34,44,34,104,115,118,34,44,34,104,115,108,34,44,34,104,119,98,34,44,34,104,99,103,34,93,44,48,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,40,101,37,51,54,48,43,51,54,48,41,37,51,54,48,125,41,44,115,97,116,117,114,97,116,105,111,110,108,58,97,40,34,104,115,108,34,44,49,44,108,40,49,48,48,41,41,44,108,105,103,104,116,110,101,115,115,58,97,40,34,104,115,108,34,44,50,44,108,40,49,48,48,41,41,44,115,97,116,117,114,97,116,105,111,110,118,58,97,40,34,104,115,118,34,44,49,44,108,40,49,48,48,41,41,44,118,97,108,117,101,58,97,40,34,104,115,118,34,44,50,44,108,40,49,48,48,41,41,44,99,104,114,111,109,97,58,97,40,34,104,99,103,34,44,49,44,108,40,49,48,48,41,41,44,103,114,97,121,58,97,40,34,104,99,103,34,44,50,44,108,40,49,48,48,41,41,44,119,104,105,116,101,58,97,40,34,104,119,98,34,44,49,44,108,40,49,48,48,41,41,44,119,98,108,97,99,107,58,97,40,34,104,119,98,34,44,50,44,108,40,49,48,48,41,41,44,99,121,97,110,58,97,40,34,99,109,121,107,34,44,48,44,108,40,49,48,48,41,41,44,109,97,103,101,110,116,97,58,97,40,34,99,109,121,107,34,44,49,44,108,40,49,48,48,41,41,44,121,101,108,108,111,119,58,97,40,34,99,109,121,107,34,44,50,44,108,40,49,48,48,41,41,44,98,108,97,99,107,58,97,40,34,99,109,121,107,34,44,51,44,108,40,49,48,48,41,41,44,120,58,97,40,34,120,121,122,34,44,48,44,108,40,49,48,48,41,41,44,121,58,97,40,34,120,121,122,34,44,49,44,108,40,49,48,48,41,41,44,122,58,97,40,34,120,121,122,34,44,50,44,108,40,49,48,48,41,41,44,108,58,97,40,34,108,97,98,34,44,48,44,108,40,49,48,48,41,41,44,97,58,97,40,34,108,97,98,34,44,49,41,44,98,58,97,40,34,108,97,98,34,44,50,41,44,107,101,121,119,111,114,100,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,110,101,119,32,114,40,101,41,58,104,91,116,104,105,115,46,109,111,100,101,108,93,46,107,101,121,119,111,114,100,40,116,104,105,115,46,99,111,108,111,114,41,125,44,104,101,120,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,110,101,119,32,114,40,101,41,58,117,46,116,111,46,104,101,120,40,116,104,105,115,46,114,103,98,40,41,46,114,111,117,110,100,40,41,46,99,111,108,111,114,41,125,44,114,103,98,78,117,109,98,101,114,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,114,103,98,40,41,46,99,111,108,111,114,59,114,101,116,117,114,110,40,50,53,53,38,101,91,48,93,41,60,60,49,54,124,40,50,53,53,38,101,91,49,93,41,60,60,56,124,50,53,53,38,101,91,50,93,125,44,108,117,109,105,110,111,115,105,116,121,58,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,118,97,114,32,101,61,116,104,105,115,46,114,103,98,40,41,46,99,111,108,111,114,44,116,61,91,93,44,111,61,48,59,111,60,101,46,108,101,110,103,116,104,59,111,43,43,41,123,118,97,114,32,114,61,101,91,111,93,47,50,53,53,59,116,91,111,93,61,114,60,61,46,48,51,57,50,56,63,114,47,49,50,46,57,50,58,77,97,116,104,46,112,111,119,40,40,114,43,46,48,53,53,41,47,49,46,48,53,53,44,50,46,52,41,125,114,101,116,117,114,110,46,50,49,50,54,42,116,91,48,93,43,46,55,49,53,50,42,116,91,49,93,43,46,48,55,50,50,42,116,91,50,93,125,44,99,111,110,116,114,97,115,116,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,116,104,105,115,46,108,117,109,105,110,111,115,105,116,121,40,41,44,111,61,101,46,108,117,109,105,110,111,115,105,116,121,40,41,59,114,101,116,117,114,110,32,116,62,111,63,40,116,43,46,48,53,41,47,40,111,43,46,48,53,41,58,40,111,43,46,48,53,41,47,40,116,43,46,48,53,41,125,44,108,101,118,101,108,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,116,104,105,115,46,99,111,110,116,114,97,115,116,40,101,41,59,114,101,116,117,114,110,32,116,62,61,55,46,49,63,34,65,65,65,34,58,116,62,61,52,46,53,63,34,65,65,34,58,34,34,125,44,105,115,68,97,114,107,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,114,103,98,40,41,46,99,111,108,111,114,59,114,101,116,117,114,110,40,50,57,57,42,101,91,48,93,43,53,56,55,42,101,91,49,93,43,49,49,52,42,101,91,50,93,41,47,49,101,51,60,49,50,56,125,44,105,115,76,105,103,104,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,33,116,104,105,115,46,105,115,68,97,114,107,40,41,125,44,110,101,103,97,116,101,58,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,118,97,114,32,101,61,116,104,105,115,46,114,103,98,40,41,44,116,61,48,59,116,60,51,59,116,43,43,41,101,46,99,111,108,111,114,91,116,93,61,50,53,53,45,101,46,99,111,108,111,114,91,116,93,59,114,101,116,117,114,110,32,101,125,44,108,105,103,104,116,101,110,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,116,104,105,115,46,104,115,108,40,41,59,114,101,116,117,114,110,32,116,46,99,111,108,111,114,91,50,93,43,61,116,46,99,111,108,111,114,91,50,93,42,101,44,116,125,44,100,97,114,107,101,110,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,116,104,105,115,46,104,115,108,40,41,59,114,101,116,117,114,110,32,116,46,99,111,108,111,114,91,50,93,45,61,116,46,99,111,108,111,114,91,50,93,42,101,44,116,125,44,115,97,116,117,114,97,116,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,116,104,105,115,46,104,115,108,40,41,59,114,101,116,117,114,110,32,116,46,99,111,108,111,114,91,49,93,43,61,116,46,99,111,108,111,114,91,49,93,42,101,44,116,125,44,100,101,115,97,116,117,114,97,116,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,116,104,105,115,46,104,115,108,40,41,59,114,101,116,117,114,110,32,116,46,99,111,108,111,114,91,49,93,45,61,116,46,99,111,108,111,114,91,49,93,42,101,44,116,125,44,119,104,105,116,101,110,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,116,104,105,115,46,104,119,98,40,41,59,114,101,116,117,114,110,32,116,46,99,111,108,111,114,91,49,93,43,61,116,46,99,111,108,111,114,91,49,93,42,101,44,116,125,44,98,108,97,99,107,101,110,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,116,104,105,115,46,104,119,98,40,41,59,114,101,116,117,114,110,32,116,46,99,111,108,111,114,91,50,93,43,61,116,46,99,111,108,111,114,91,50,93,42,101,44,116,125,44,103,114,97,121,115,99,97,108,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,114,103,98,40,41,46,99,111,108,111,114,44,116,61,46,51,42,101,91,48,93,43,46,53,57,42,101,91,49,93,43,46,49,49,42,101,91,50,93,59,114,101,116,117,114,110,32,114,46,114,103,98,40,116,44,116,44,116,41,125,44,102,97,100,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,97,108,112,104,97,40,116,104,105,115,46,118,97,108,112,104,97,45,116,104,105,115,46,118,97,108,112,104,97,42,101,41,125,44,111,112,97,113,117,101,114,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,97,108,112,104,97,40,116,104,105,115,46,118,97,108,112,104,97,43,116,104,105,115,46,118,97,108,112,104,97,42,101,41,125,44,114,111,116,97,116,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,116,104,105,115,46,104,115,108,40,41,44,111,61,116,46,99,111,108,111,114,91,48,93,59,114,101,116,117,114,110,32,111,61,40,111,43,101,41,37,51,54,48,44,111,61,111,60,48,63,51,54,48,43,111,58,111,44,116,46,99,111,108,111,114,91,48,93,61,111,44,116,125,44,109,105,120,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,102,40,33,101,124,124,33,101,46,114,103,98,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,39,65,114,103,117,109,101,110,116,32,116,111,32,34,109,105,120,34,32,119,97,115,32,110,111,116,32,97,32,67,111,108,111,114,32,105,110,115,116,97,110,99,101,44,32,98,117,116,32,114,97,116,104,101,114,32,97,110,32,105,110,115,116,97,110,99,101,32,111,102,32,39,43,116,121,112,101,111,102,32,101,41,59,118,97,114,32,111,61,101,46,114,103,98,40,41,44,110,61,116,104,105,115,46,114,103,98,40,41,44,105,61,118,111,105,100,32,48,61,61,61,116,63,46,53,58,116,44,97,61,50,42,105,45,49,44,108,61,111,46,97,108,112,104,97,40,41,45,110,46,97,108,112,104,97,40,41,44,115,61,40,40,97,42,108,61,61,45,49,63,97,58,40,97,43,108,41,47,40,49,43,97,42,108,41,41,43,49,41,47,50,44,99,61,49,45,115,59,114,101,116,117,114,110,32,114,46,114,103,98,40,115,42,111,46,114,101,100,40,41,43,99,42,110,46,114,101,100,40,41,44,115,42,111,46,103,114,101,101,110,40,41,43,99,42,110,46,103,114,101,101,110,40,41,44,115,42,111,46,98,108,117,101,40,41,43,99,42,110,46,98,108,117,101,40,41,44,111,46,97,108,112,104,97,40,41,42,105,43,110,46,97,108,112,104,97,40,41,42,40,49,45,105,41,41,125,125,44,79,98,106,101,99,116,46,107,101,121,115,40,104,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,101,41,123,105,102,40,45,49,61,61,61,102,46,105,110,100,101,120,79,102,40,101,41,41,123,118,97,114,32,116,61,104,91,101,93,46,99,104,97,110,110,101,108,115,59,114,46,112,114,111,116,111,116,121,112,101,91,101,93,61,102,117,110,99,116,105,111,110,40,41,123,105,102,40,116,104,105,115,46,109,111,100,101,108,61,61,61,101,41,114,101,116,117,114,110,32,110,101,119,32,114,40,116,104,105,115,41,59,105,102,40,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,114,101,116,117,114,110,32,110,101,119,32,114,40,97,114,103,117,109,101,110,116,115,44,101,41,59,118,97,114,32,111,61,34,110,117,109,98,101,114,34,61,61,116,121,112,101,111,102,32,97,114,103,117,109,101,110,116,115,91,116,93,63,116,58,116,104,105,115,46,118,97,108,112,104,97,59,114,101,116,117,114,110,32,110,101,119,32,114,40,115,40,104,91,116,104,105,115,46,109,111,100,101,108,93,91,101,93,46,114,97,119,40,116,104,105,115,46,99,111,108,111,114,41,41,46,99,111,110,99,97,116,40,111,41,44,101,41,125,44,114,91,101,93,61,102,117,110,99,116,105,111,110,40,111,41,123,114,101,116,117,114,110,34,110,117,109,98,101,114,34,61,61,116,121,112,101,111,102,32,111,38,38,40,111,61,99,40,112,46,99,97,108,108,40,97,114,103,117,109,101,110,116,115,41,44,116,41,41,44,110,101,119,32,114,40,111,44,101,41,125,125,125,41,44,101,46,101,120,112,111,114,116,115,61,114,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,111,41,123,102,117,110,99,116,105,111,110,32,114,40,101,44,116,44,111,41,123,114,101,116,117,114,110,32,77,97,116,104,46,109,105,110,40,77,97,116,104,46,109,97,120,40,116,44,101,41,44,111,41,125,102,117,110,99,116,105,111,110,32,110,40,101,41,123,118,97,114,32,116,61,101,46,116,111,83,116,114,105,110,103,40,49,54,41,46,116,111,85,112,112,101,114,67,97,115,101,40,41,59,114,101,116,117,114,110,32,116,46,108,101,110,103,116,104,60,50,63,34,48,34,43,116,58,116,125,118,97,114,32,105,61,111,40,53,41,44,97,61,111,40,49,56,41,44,108,61,123,125,59,102,111,114,40,118,97,114,32,115,32,105,110,32,105,41,105,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,115,41,38,38,40,108,91,105,91,115,93,93,61,115,41,59,118,97,114,32,99,61,101,46,101,120,112,111,114,116,115,61,123,116,111,58,123,125,44,103,101,116,58,123,125,125,59,99,46,103,101,116,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,44,111,44,114,61,101,46,115,117,98,115,116,114,105,110,103,40,48,44,51,41,46,116,111,76,111,119,101,114,67,97,115,101,40,41,59,115,119,105,116,99,104,40,114,41,123,99,97,115,101,34,104,115,108,34,58,116,61,99,46,103,101,116,46,104,115,108,40,101,41,44,111,61,34,104,115,108,34,59,98,114,101,97,107,59,99,97,115,101,34,104,119,98,34,58,116,61,99,46,103,101,116,46,104,119,98,40,101,41,44,111,61,34,104,119,98,34,59,98,114,101,97,107,59,100,101,102,97,117,108,116,58,116,61,99,46,103,101,116,46,114,103,98,40,101,41,44,111,61,34,114,103,98,34,125,114,101,116,117,114,110,32,116,63,123,109,111,100,101,108,58,111,44,118,97,108,117,101,58,116,125,58,110,117,108,108,125,44,99,46,103,101,116,46,114,103,98,61,102,117,110,99,116,105,111,110,40,101,41,123,105,102,40,33,101,41,114,101,116,117,114,110,32,110,117,108,108,59,118,97,114,32,116,44,111,44,110,44,97,61,47,94,35,40,91,97,45,102,48,45,57,93,123,51,44,52,125,41,36,47,105,44,108,61,47,94,35,40,91,97,45,102,48,45,57,93,123,54,125,41,40,91,97,45,102,48,45,57,93,123,50,125,41,63,36,47,105,44,115,61,47,94,114,103,98,97,63,92,40,92,115,42,40,91,43,45,93,63,92,100,43,41,92,115,42,44,92,115,42,40,91,43,45,93,63,92,100,43,41,92,115,42,44,92,115,42,40,91,43,45,93,63,92,100,43,41,92,115,42,40,63,58,44,92,115,42,40,91,43,45,93,63,91,92,100,92,46,93,43,41,92,115,42,41,63,92,41,36,47,44,99,61,47,94,114,103,98,97,63,92,40,92,115,42,40,91,43,45,93,63,91,92,100,92,46,93,43,41,92,37,92,115,42,44,92,115,42,40,91,43,45,93,63,91,92,100,92,46,93,43,41,92,37,92,115,42,44,92,115,42,40,91,43,45,93,63,91,92,100,92,46,93,43,41,92,37,92,115,42,40,63,58,44,92,115,42,40,91,43,45,93,63,91,92,100,92,46,93,43,41,92,115,42,41,63,92,41,36,47,44,117,61,47,40,92,68,43,41,47,44,104,61,91,48,44,48,44,48,44,49,93,59,105,102,40,116,61,101,46,109,97,116,99,104,40,108,41,41,123,102,111,114,40,110,61,116,91,50,93,44,116,61,116,91,49,93,44,111,61,48,59,111,60,51,59,111,43,43,41,123,118,97,114,32,112,61,50,42,111,59,104,91,111,93,61,112,97,114,115,101,73,110,116,40,116,46,115,108,105,99,101,40,112,44,112,43,50,41,44,49,54,41,125,110,38,38,40,104,91,51,93,61,77,97,116,104,46,114,111,117,110,100,40,112,97,114,115,101,73,110,116,40,110,44,49,54,41,47,50,53,53,42,49,48,48,41,47,49,48,48,41,125,101,108,115,101,32,105,102,40,116,61,101,46,109,97,116,99,104,40,97,41,41,123,102,111,114,40,116,61,116,91,49,93,44,110,61,116,91,51,93,44,111,61,48,59,111,60,51,59,111,43,43,41,104,91,111,93,61,112,97,114,115,101,73,110,116,40,116,91,111,93,43,116,91,111,93,44,49,54,41,59,110,38,38,40,104,91,51,93,61,77,97,116,104,46,114,111,117,110,100,40,112,97,114,115,101,73,110,116,40,110,43,110,44,49,54,41,47,50,53,53,42,49,48,48,41,47,49,48,48,41,125,101,108,115,101,32,105,102,40,116,61,101,46,109,97,116,99,104,40,115,41,41,123,102,111,114,40,111,61,48,59,111,60,51,59,111,43,43,41,104,91,111,93,61,112,97,114,115,101,73,110,116,40,116,91,111,43,49,93,44,48,41,59,116,91,52,93,38,38,40,104,91,51,93,61,112,97,114,115,101,70,108,111,97,116,40,116,91,52,93,41,41,125,101,108,115,101,123,105,102,40,33,40,116,61,101,46,109,97,116,99,104,40,99,41,41,41,114,101,116,117,114,110,40,116,61,101,46,109,97,116,99,104,40,117,41,41,63,34,116,114,97,110,115,112,97,114,101,110,116,34,61,61,61,116,91,49,93,63,91,48,44,48,44,48,44,48,93,58,40,104,61,105,91,116,91,49,93,93,41,63,40,104,91,51,93,61,49,44,104,41,58,110,117,108,108,58,110,117,108,108,59,102,111,114,40,111,61,48,59,111,60,51,59,111,43,43,41,104,91,111,93,61,77,97,116,104,46,114,111,117,110,100,40,50,46,53,53,42,112,97,114,115,101,70,108,111,97,116,40,116,91,111,43,49,93,41,41,59,116,91,52,93,38,38,40,104,91,51,93,61,112,97,114,115,101,70,108,111,97,116,40,116,91,52,93,41,41,125,102,111,114,40,111,61,48,59,111,60,51,59,111,43,43,41,104,91,111,93,61,114,40,104,91,111,93,44,48,44,50,53,53,41,59,114,101,116,117,114,110,32,104,91,51,93,61,114,40,104,91,51,93,44,48,44,49,41,44,104,125,44,99,46,103,101,116,46,104,115,108,61,102,117,110,99,116,105,111,110,40,101,41,123,105,102,40,33,101,41,114,101,116,117,114,110,32,110,117,108,108,59,118,97,114,32,116,61,47,94,104,115,108,97,63,92,40,92,115,42,40,91,43,45,93,63,40,63,58,92,100,42,92,46,41,63,92,100,43,41,40,63,58,100,101,103,41,63,92,115,42,44,92,115,42,40,91,43,45,93,63,91,92,100,92,46,93,43,41,37,92,115,42,44,92,115,42,40,91,43,45,93,63,91,92,100,92,46,93,43,41,37,92,115,42,40,63,58,44,92,115,42,40,91,43,45,93,63,91,92,100,92,46,93,43,41,92,115,42,41,63,92,41,36,47,44,111,61,101,46,109,97,116,99,104,40,116,41,59,105,102,40,111,41,123,118,97,114,32,110,61,112,97,114,115,101,70,108,111,97,116,40,111,91,52,93,41,59,114,101,116,117,114,110,91,40,112,97,114,115,101,70,108,111,97,116,40,111,91,49,93,41,43,51,54,48,41,37,51,54,48,44,114,40,112,97,114,115,101,70,108,111,97,116,40,111,91,50,93,41,44,48,44,49,48,48,41,44,114,40,112,97,114,115,101,70,108,111,97,116,40,111,91,51,93,41,44,48,44,49,48,48,41,44,114,40,105,115,78,97,78,40,110,41,63,49,58,110,44,48,44,49,41,93,125,114,101,116,117,114,110,32,110,117,108,108,125,44,99,46,103,101,116,46,104,119,98,61,102,117,110,99,116,105,111,110,40,101,41,123,105,102,40,33,101,41,114,101,116,117,114,110,32,110,117,108,108,59,118,97,114,32,116,61,47,94,104,119,98,92,40,92,115,42,40,91,43,45,93,63,92,100,42,91,92,46,93,63,92,100,43,41,40,63,58,100,101,103,41,63,92,115,42,44,92,115,42,40,91,43,45,93,63,91,92,100,92,46,93,43,41,37,92,115,42,44,92,115,42,40,91,43,45,93,63,91,92,100,92,46,93,43,41,37,92,115,42,40,63,58,44,92,115,42,40,91,43,45,93,63,91,92,100,92,46,93,43,41,92,115,42,41,63,92,41,36,47,44,111,61,101,46,109,97,116,99,104,40,116,41,59,105,102,40,111,41,123,118,97,114,32,110,61,112,97,114,115,101,70,108,111,97,116,40,111,91,52,93,41,59,114,101,116,117,114,110,91,40,112,97,114,115,101,70,108,111,97,116,40,111,91,49,93,41,37,51,54,48,43,51,54,48,41,37,51,54,48,44,114,40,112,97,114,115,101,70,108,111,97,116,40,111,91,50,93,41,44,48,44,49,48,48,41,44,114,40,112,97,114,115,101,70,108,111,97,116,40,111,91,51,93,41,44,48,44,49,48,48,41,44,114,40,105,115,78,97,78,40,110,41,63,49,58,110,44,48,44,49,41,93,125,114,101,116,117,114,110,32,110,117,108,108,125,44,99,46,116,111,46,104,101,120,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,97,40,97,114,103,117,109,101,110,116,115,41,59,114,101,116,117,114,110,34,35,34,43,110,40,101,91,48,93,41,43,110,40,101,91,49,93,41,43,110,40,101,91,50,93,41,43,40,101,91,51,93,60,49,63,110,40,77,97,116,104,46,114,111,117,110,100,40,50,53,53,42,101,91,51,93,41,41,58,34,34,41,125,44,99,46,116,111,46,114,103,98,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,97,40,97,114,103,117,109,101,110,116,115,41,59,114,101,116,117,114,110,32,101,46,108,101,110,103,116,104,60,52,124,124,49,61,61,61,101,91,51,93,63,34,114,103,98,40,34,43,77,97,116,104,46,114,111,117,110,100,40,101,91,48,93,41,43,34,44,32,34,43,77,97,116,104,46,114,111,117,110,100,40,101,91,49,93,41,43,34,44,32,34,43,77,97,116,104,46,114,111,117,110,100,40,101,91,50,93,41,43,34,41,34,58,34,114,103,98,97,40,34,43,77,97,116,104,46,114,111,117,110,100,40,101,91,48,93,41,43,34,44,32,34,43,77,97,116,104,46,114,111,117,110,100,40,101,91,49,93,41,43,34,44,32,34,43,77,97,116,104,46,114,111,117,110,100,40,101,91,50,93,41,43,34,44,32,34,43,101,91,51,93,43,34,41,34,125,44,99,46,116,111,46,114,103,98,46,112,101,114,99,101,110,116,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,97,40,97,114,103,117,109,101,110,116,115,41,44,116,61,77,97,116,104,46,114,111,117,110,100,40,101,91,48,93,47,50,53,53,42,49,48,48,41,44,111,61,77,97,116,104,46,114,111,117,110,100,40,101,91,49,93,47,50,53,53,42,49,48,48,41,44,114,61,77,97,116,104,46,114,111,117,110,100,40,101,91,50,93,47,50,53,53,42,49,48,48,41,59,114,101,116,117,114,110,32,101,46,108,101,110,103,116,104,60,52,124,124,49,61,61,61,101,91,51,93,63,34,114,103,98,40,34,43,116,43,34,37,44,32,34,43,111,43,34,37,44,32,34,43,114,43,34,37,41,34,58,34,114,103,98,97,40,34,43,116,43,34,37,44,32,34,43,111,43,34,37,44,32,34,43,114,43,34,37,44,32,34,43,101,91,51,93,43,34,41,34,125,44,99,46,116,111,46,104,115,108,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,97,40,97,114,103,117,109,101,110,116,115,41,59,114,101,116,117,114,110,32,101,46,108,101,110,103,116,104,60,52,124,124,49,61,61,61,101,91,51,93,63,34,104,115,108,40,34,43,101,91,48,93,43,34,44,32,34,43,101,91,49,93,43,34,37,44,32,34,43,101,91,50,93,43,34,37,41,34,58,34,104,115,108,97,40,34,43,101,91,48,93,43,34,44,32,34,43,101,91,49,93,43,34,37,44,32,34,43,101,91,50,93,43,34,37,44,32,34,43,101,91,51,93,43,34,41,34,125,44,99,46,116,111,46,104,119,98,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,97,40,97,114,103,117,109,101,110,116,115,41,44,116,61,34,34,59,114,101,116,117,114,110,32,101,46,108,101,110,103,116,104,62,61,52,38,38,49,33,61,61,101,91,51,93,38,38,40,116,61,34,44,32,34,43,101,91,51,93,41,44,34,104,119,98,40,34,43,101,91,48,93,43,34,44,32,34,43,101,91,49,93,43,34,37,44,32,34,43,101,91,50,93,43,34,37,34,43,116,43,34,41,34,125,44,99,46,116,111,46,107,101,121,119,111,114,100,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,108,91,101,46,115,108,105,99,101,40,48,44,51,41,93,125,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,111,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,118,97,114,32,114,61,111,40,49,57,41,44,110,61,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,99,111,110,99,97,116,44,105,61,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,115,108,105,99,101,44,97,61,101,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,101,41,123,102,111,114,40,118,97,114,32,116,61,91,93,44,111,61,48,44,97,61,101,46,108,101,110,103,116,104,59,111,60,97,59,111,43,43,41,123,118,97,114,32,108,61,101,91,111,93,59,114,40,108,41,63,116,61,110,46,99,97,108,108,40,116,44,105,46,99,97,108,108,40,108,41,41,58,116,46,112,117,115,104,40,108,41,125,114,101,116,117,114,110,32,116,125,59,97,46,119,114,97,112,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,101,40,97,40,97,114,103,117,109,101,110,116,115,41,41,125,125,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,111,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,101,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,33,33,101,38,38,40,101,32,105,110,115,116,97,110,99,101,111,102,32,65,114,114,97,121,124,124,65,114,114,97,121,46,105,115,65,114,114,97,121,40,101,41,124,124,101,46,108,101,110,103,116,104,62,61,48,38,38,101,46,115,112,108,105,99,101,32,105,110,115,116,97,110,99,101,111,102,32,70,117,110,99,116,105,111,110,41,125,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,111,41,123,102,117,110,99,116,105,111,110,32,114,40,101,41,123,118,97,114,32,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,118,111,105,100,32,48,61,61,61,116,124,124,110,117,108,108,61,61,61,116,63,116,58,40,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,62,49,38,38,40,116,61,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,115,108,105,99,101,46,99,97,108,108,40,97,114,103,117,109,101,110,116,115,41,41,44,101,40,116,41,41,125,59,114,101,116,117,114,110,34,99,111,110,118,101,114,115,105,111,110,34,105,110,32,101,38,38,40,116,46,99,111,110,118,101,114,115,105,111,110,61,101,46,99,111,110,118,101,114,115,105,111,110,41,44,116,125,102,117,110,99,116,105,111,110,32,110,40,101,41,123,118,97,114,32,116,61,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,118,111,105,100,32,48,61,61,61,116,124,124,110,117,108,108,61,61,61,116,41,114,101,116,117,114,110,32,116,59,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,62,49,38,38,40,116,61,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,115,108,105,99,101,46,99,97,108,108,40,97,114,103,117,109,101,110,116,115,41,41,59,118,97,114,32,111,61,101,40,116,41,59,105,102,40,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,111,41,102,111,114,40,118,97,114,32,114,61,111,46,108,101,110,103,116,104,44,110,61,48,59,110,60,114,59,110,43,43,41,111,91,110,93,61,77,97,116,104,46,114,111,117,110,100,40,111,91,110,93,41,59,114,101,116,117,114,110,32,111,125,59,114,101,116,117,114,110,34,99,111,110,118,101,114,115,105,111,110,34,105,110,32,101,38,38,40,116,46,99,111,110,118,101,114,115,105,111,110,61,101,46,99,111,110,118,101,114,115,105,111,110,41,44,116,125,118,97,114,32,105,61,111,40,54,41,44,97,61,111,40,50,49,41,44,108,61,123,125,59,79,98,106,101,99,116,46,107,101,121,115,40,105,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,101,41,123,108,91,101,93,61,123,125,44,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,108,91,101,93,44,34,99,104,97,110,110,101,108,115,34,44,123,118,97,108,117,101,58,105,91,101,93,46,99,104,97,110,110,101,108,115,125,41,44,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,108,91,101,93,44,34,108,97,98,101,108,115,34,44,123,118,97,108,117,101,58,105,91,101,93,46,108,97,98,101,108,115,125,41,59,118,97,114,32,116,61,97,40,101,41,59,79,98,106,101,99,116,46,107,101,121,115,40,116,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,111,41,123,118,97,114,32,105,61,116,91,111,93,59,108,91,101,93,91,111,93,61,110,40,105,41,44,108,91,101,93,91,111,93,46,114,97,119,61,114,40,105,41,125,41,125,41,44,101,46,101,120,112,111,114,116,115,61,108,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,111,41,123,102,117,110,99,116,105,111,110,32,114,40,41,123,102,111,114,40,118,97,114,32,101,61,123,125,44,116,61,79,98,106,101,99,116,46,107,101,121,115,40,108,41,44,111,61,116,46,108,101,110,103,116,104,44,114,61,48,59,114,60,111,59,114,43,43,41,101,91,116,91,114,93,93,61,123,100,105,115,116,97,110,99,101,58,45,49,44,112,97,114,101,110,116,58,110,117,108,108,125,59,114,101,116,117,114,110,32,101,125,102,117,110,99,116,105,111,110,32,110,40,101,41,123,118,97,114,32,116,61,114,40,41,44,111,61,91,101,93,59,102,111,114,40,116,91,101,93,46,100,105,115,116,97,110,99,101,61,48,59,111,46,108,101,110,103,116,104,59,41,102,111,114,40,118,97,114,32,110,61,111,46,112,111,112,40,41,44,105,61,79,98,106,101,99,116,46,107,101,121,115,40,108,91,110,93,41,44,97,61,105,46,108,101,110,103,116,104,44,115,61,48,59,115,60,97,59,115,43,43,41,123,118,97,114,32,99,61,105,91,115,93,44,117,61,116,91,99,93,59,45,49,61,61,61,117,46,100,105,115,116,97,110,99,101,38,38,40,117,46,100,105,115,116,97,110,99,101,61,116,91,110,93,46,100,105,115,116,97,110,99,101,43,49,44,117,46,112,97,114,101,110,116,61,110,44,111,46,117,110,115,104,105,102,116,40,99,41,41,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,105,40,101,44,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,111,41,123,114,101,116,117,114,110,32,116,40,101,40,111,41,41,125,125,102,117,110,99,116,105,111,110,32,97,40,101,44,116,41,123,102,111,114,40,118,97,114,32,111,61,91,116,91,101,93,46,112,97,114,101,110,116,44,101,93,44,114,61,108,91,116,91,101,93,46,112,97,114,101,110,116,93,91,101,93,44,110,61,116,91,101,93,46,112,97,114,101,110,116,59,116,91,110,93,46,112,97,114,101,110,116,59,41,111,46,117,110,115,104,105,102,116,40,116,91,110,93,46,112,97,114,101,110,116,41,44,114,61,105,40,108,91,116,91,110,93,46,112,97,114,101,110,116,93,91,110,93,44,114,41,44,110,61,116,91,110,93,46,112,97,114,101,110,116,59,114,101,116,117,114,110,32,114,46,99,111,110,118,101,114,115,105,111,110,61,111,44,114,125,118,97,114,32,108,61,111,40,54,41,59,101,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,101,41,123,102,111,114,40,118,97,114,32,116,61,110,40,101,41,44,111,61,123,125,44,114,61,79,98,106,101,99,116,46,107,101,121,115,40,116,41,44,105,61,114,46,108,101,110,103,116,104,44,108,61,48,59,108,60,105,59,108,43,43,41,123,118,97,114,32,115,61,114,91,108,93,59,110,117,108,108,33,61,61,116,91,115,93,46,112,97,114,101,110,116,38,38,40,111,91,115,93,61,97,40,115,44,116,41,41,125,114,101,116,117,114,110,32,111,125,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,111,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,102,117,110,99,116,105,111,110,32,114,40,101,41,123,114,101,116,117,114,110,32,101,38,38,101,46,95,95,101,115,77,111,100,117,108,101,63,101,58,123,100,101,102,97,117,108,116,58,101,125,125,102,117,110,99,116,105,111,110,32,110,40,101,44,116,41,123,105,102,40,33,40,101,32,105,110,115,116,97,110,99,101,111,102,32,116,41,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,67,97,110,110,111,116,32,99,97,108,108,32,97,32,99,108,97,115,115,32,97,115,32,97,32,102,117,110,99,116,105,111,110,34,41,125,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,44,34,95,95,101,115,77,111,100,117,108,101,34,44,123,118,97,108,117,101,58,33,48,125,41,59,118,97,114,32,105,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,101,40,101,44,116,41,123,102,111,114,40,118,97,114,32,111,61,48,59,111,60,116,46,108,101,110,103,116,104,59,111,43,43,41,123,118,97,114,32,114,61,116,91,111,93,59,114,46,101,110,117,109,101,114,97,98,108,101,61,114,46,101,110,117,109,101,114,97,98,108,101,124,124,33,49,44,114,46,99,111,110,102,105,103,117,114,97,98,108,101,61,33,48,44,34,118,97,108,117,101,34,105,110,32,114,38,38,40,114,46,119,114,105,116,97,98,108,101,61,33,48,41,44,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,101,44,114,46,107,101,121,44,114,41,125,125,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,44,111,44,114,41,123,114,101,116,117,114,110,32,111,38,38,101,40,116,46,112,114,111,116,111,116,121,112,101,44,111,41,44,114,38,38,101,40,116,44,114,41,44,116,125,125,40,41,44,97,61,111,40,48,41,44,108,61,114,40,97,41,44,115,61,111,40,50,41,44,99,61,114,40,115,41,44,117,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,101,40,116,41,123,110,40,116,104,105,115,44,101,41,44,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,61,116,125,114,101,116,117,114,110,32,105,40,101,44,91,123,107,101,121,58,34,98,105,110,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,105,102,40,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,111,112,116,105,111,110,115,46,99,111,108,111,114,41,114,101,116,117,114,110,32,118,111,105,100,40,116,104,105,115,46,99,111,108,111,114,61,116,104,105,115,46,99,114,101,97,116,101,67,111,108,111,114,40,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,111,112,116,105,111,110,115,46,99,111,108,111,114,41,41,59,33,116,104,105,115,46,99,111,108,111,114,38,38,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,105,110,112,117,116,72,97,110,100,108,101,114,46,103,101,116,86,97,108,117,101,40,41,38,38,40,116,104,105,115,46,99,111,108,111,114,61,116,104,105,115,46,99,114,101,97,116,101,67,111,108,111,114,40,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,105,110,112,117,116,72,97,110,100,108,101,114,46,103,101,116,86,97,108,117,101,40,41,44,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,111,112,116,105,111,110,115,46,97,117,116,111,73,110,112,117,116,70,97,108,108,98,97,99,107,41,41,125,125,44,123,107,101,121,58,34,117,110,98,105,110,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,101,108,101,109,101,110,116,46,114,101,109,111,118,101,68,97,116,97,40,34,99,111,108,111,114,34,41,125,125,44,123,107,101,121,58,34,103,101,116,67,111,108,111,114,83,116,114,105,110,103,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,104,97,115,67,111,108,111,114,40,41,63,116,104,105,115,46,99,111,108,111,114,46,115,116,114,105,110,103,40,116,104,105,115,46,102,111,114,109,97,116,41,58,34,34,125,125,44,123,107,101,121,58,34,115,101,116,67,111,108,111,114,83,116,114,105,110,103,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,63,116,104,105,115,46,99,114,101,97,116,101,67,111,108,111,114,40,101,41,58,110,117,108,108,59,116,104,105,115,46,99,111,108,111,114,61,116,124,124,110,117,108,108,125,125,44,123,107,101,121,58,34,99,114,101,97,116,101,67,111,108,111,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,33,40,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,62,49,38,38,118,111,105,100,32,48,33,61,61,97,114,103,117,109,101,110,116,115,91,49,93,41,124,124,97,114,103,117,109,101,110,116,115,91,49,93,44,111,61,110,101,119,32,99,46,100,101,102,97,117,108,116,40,116,104,105,115,46,114,101,115,111,108,118,101,67,111,108,111,114,68,101,108,101,103,97,116,101,40,101,41,44,116,104,105,115,46,102,111,114,109,97,116,41,59,114,101,116,117,114,110,32,111,46,105,115,86,97,108,105,100,40,41,124,124,40,116,38,38,40,111,61,116,104,105,115,46,103,101,116,70,97,108,108,98,97,99,107,67,111,108,111,114,40,41,41,44,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,116,114,105,103,103,101,114,40,34,99,111,108,111,114,112,105,99,107,101,114,73,110,118,97,108,105,100,34,44,111,44,101,41,41,44,116,104,105,115,46,105,115,65,108,112,104,97,69,110,97,98,108,101,100,40,41,124,124,40,111,46,97,108,112,104,97,61,49,41,44,111,125,125,44,123,107,101,121,58,34,103,101,116,70,97,108,108,98,97,99,107,67,111,108,111,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,105,102,40,116,104,105,115,46,102,97,108,108,98,97,99,107,38,38,116,104,105,115,46,102,97,108,108,98,97,99,107,61,61,61,116,104,105,115,46,99,111,108,111,114,41,114,101,116,117,114,110,32,116,104,105,115,46,99,111,108,111,114,59,118,97,114,32,101,61,116,104,105,115,46,114,101,115,111,108,118,101,67,111,108,111,114,68,101,108,101,103,97,116,101,40,116,104,105,115,46,102,97,108,108,98,97,99,107,41,44,116,61,110,101,119,32,99,46,100,101,102,97,117,108,116,40,101,44,116,104,105,115,46,102,111,114,109,97,116,41,59,114,101,116,117,114,110,32,116,46,105,115,86,97,108,105,100,40,41,63,116,58,40,99,111,110,115,111,108,101,46,119,97,114,110,40,34,84,104,101,32,102,97,108,108,98,97,99,107,32,99,111,108,111,114,32,105,115,32,105,110,118,97,108,105,100,46,32,70,97,108,108,105,110,103,32,98,97,99,107,32,116,111,32,116,104,101,32,112,114,101,118,105,111,117,115,32,99,111,108,111,114,32,111,114,32,98,108,97,99,107,32,105,102,32,97,110,121,46,34,41,44,116,104,105,115,46,99,111,108,111,114,63,116,104,105,115,46,99,111,108,111,114,58,110,101,119,32,99,46,100,101,102,97,117,108,116,40,34,35,48,48,48,48,48,48,34,44,116,104,105,115,46,102,111,114,109,97,116,41,41,125,125,44,123,107,101,121,58,34,97,115,115,117,114,101,67,111,108,111,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,104,97,115,67,111,108,111,114,40,41,124,124,40,116,104,105,115,46,99,111,108,111,114,61,116,104,105,115,46,103,101,116,70,97,108,108,98,97,99,107,67,111,108,111,114,40,41,41,44,116,104,105,115,46,99,111,108,111,114,125,125,44,123,107,101,121,58,34,114,101,115,111,108,118,101,67,111,108,111,114,68,101,108,101,103,97,116,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,33,40,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,62,49,38,38,118,111,105,100,32,48,33,61,61,97,114,103,117,109,101,110,116,115,91,49,93,41,124,124,97,114,103,117,109,101,110,116,115,91,49,93,44,111,61,33,49,59,114,101,116,117,114,110,32,108,46,100,101,102,97,117,108,116,46,101,97,99,104,40,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,101,120,116,101,110,115,105,111,110,115,44,102,117,110,99,116,105,111,110,40,114,44,110,41,123,33,49,61,61,61,111,38,38,40,111,61,110,46,114,101,115,111,108,118,101,67,111,108,111,114,40,101,44,116,41,41,125,41,44,111,124,124,101,125,125,44,123,107,101,121,58,34,105,115,73,110,118,97,108,105,100,67,111,108,111,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,33,116,104,105,115,46,104,97,115,67,111,108,111,114,40,41,124,124,33,116,104,105,115,46,99,111,108,111,114,46,105,115,86,97,108,105,100,40,41,125,125,44,123,107,101,121,58,34,105,115,65,108,112,104,97,69,110,97,98,108,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,33,49,33,61,61,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,111,112,116,105,111,110,115,46,117,115,101,65,108,112,104,97,125,125,44,123,107,101,121,58,34,104,97,115,67,111,108,111,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,99,111,108,111,114,32,105,110,115,116,97,110,99,101,111,102,32,99,46,100,101,102,97,117,108,116,125,125,44,123,107,101,121,58,34,102,97,108,108,98,97,99,107,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,111,112,116,105,111,110,115,46,102,97,108,108,98,97,99,107,67,111,108,111,114,63,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,111,112,116,105,111,110,115,46,102,97,108,108,98,97,99,107,67,111,108,111,114,58,116,104,105,115,46,104,97,115,67,111,108,111,114,40,41,63,116,104,105,115,46,99,111,108,111,114,58,110,117,108,108,125,125,44,123,107,101,121,58,34,102,111,114,109,97,116,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,111,112,116,105,111,110,115,46,102,111,114,109,97,116,63,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,111,112,116,105,111,110,115,46,102,111,114,109,97,116,58,116,104,105,115,46,104,97,115,67,111,108,111,114,40,41,38,38,116,104,105,115,46,99,111,108,111,114,46,104,97,115,84,114,97,110,115,112,97,114,101,110,99,121,40,41,38,38,116,104,105,115,46,99,111,108,111,114,46,102,111,114,109,97,116,46,109,97,116,99,104,40,47,94,104,101,120,47,41,63,116,104,105,115,46,105,115,65,108,112,104,97,69,110,97,98,108,101,100,40,41,63,34,114,103,98,97,34,58,34,104,101,120,34,58,116,104,105,115,46,104,97,115,67,111,108,111,114,40,41,63,116,104,105,115,46,99,111,108,111,114,46,102,111,114,109,97,116,58,34,114,103,98,34,125,125,44,123,107,101,121,58,34,99,111,108,111,114,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,101,108,101,109,101,110,116,46,100,97,116,97,40,34,99,111,108,111,114,34,41,125,44,115,101,116,58,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,101,108,101,109,101,110,116,46,100,97,116,97,40,34,99,111,108,111,114,34,44,101,41,44,101,32,105,110,115,116,97,110,99,101,111,102,32,99,46,100,101,102,97,117,108,116,38,38,34,97,117,116,111,34,61,61,61,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,111,112,116,105,111,110,115,46,102,111,114,109,97,116,38,38,40,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,111,112,116,105,111,110,115,46,102,111,114,109,97,116,61,116,104,105,115,46,99,111,108,111,114,46,102,111,114,109,97,116,41,125,125,93,41,44,101,125,40,41,59,116,46,100,101,102,97,117,108,116,61,117,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,111,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,102,117,110,99,116,105,111,110,32,114,40,101,44,116,41,123,105,102,40,33,40,101,32,105,110,115,116,97,110,99,101,111,102,32,116,41,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,67,97,110,110,111,116,32,99,97,108,108,32,97,32,99,108,97,115,115,32,97,115,32,97,32,102,117,110,99,116,105,111,110,34,41,125,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,44,34,95,95,101,115,77,111,100,117,108,101,34,44,123,118,97,108,117,101,58,33,48,125,41,59,118,97,114,32,110,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,101,40,101,44,116,41,123,102,111,114,40,118,97,114,32,111,61,48,59,111,60,116,46,108,101,110,103,116,104,59,111,43,43,41,123,118,97,114,32,114,61,116,91,111,93,59,114,46,101,110,117,109,101,114,97,98,108,101,61,114,46,101,110,117,109,101,114,97,98,108,101,124,124,33,49,44,114,46,99,111,110,102,105,103,117,114,97,98,108,101,61,33,48,44,34,118,97,108,117,101,34,105,110,32,114,38,38,40,114,46,119,114,105,116,97,98,108,101,61,33,48,41,44,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,101,44,114,46,107,101,121,44,114,41,125,125,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,44,111,44,114,41,123,114,101,116,117,114,110,32,111,38,38,101,40,116,46,112,114,111,116,111,116,121,112,101,44,111,41,44,114,38,38,101,40,116,44,114,41,44,116,125,125,40,41,44,105,61,111,40,48,41,44,97,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,38,38,101,46,95,95,101,115,77,111,100,117,108,101,63,101,58,123,100,101,102,97,117,108,116,58,101,125,125,40,105,41,44,108,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,101,40,116,41,123,114,40,116,104,105,115,44,101,41,44,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,61,116,44,116,104,105,115,46,112,105,99,107,101,114,61,110,117,108,108,125,114,101,116,117,114,110,32,110,40,101,44,91,123,107,101,121,58,34,98,105,110,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,112,105,99,107,101,114,61,40,48,44,97,46,100,101,102,97,117,108,116,41,40,116,104,105,115,46,111,112,116,105,111,110,115,46,116,101,109,112,108,97,116,101,41,59,116,104,105,115,46,111,112,116,105,111,110,115,46,99,117,115,116,111,109,67,108,97,115,115,38,38,101,46,97,100,100,67,108,97,115,115,40,116,104,105,115,46,111,112,116,105,111,110,115,46,99,117,115,116,111,109,67,108,97,115,115,41,44,116,104,105,115,46,111,112,116,105,111,110,115,46,104,111,114,105,122,111,110,116,97,108,38,38,101,46,97,100,100,67,108,97,115,115,40,34,99,111,108,111,114,112,105,99,107,101,114,45,104,111,114,105,122,111,110,116,97,108,34,41,44,116,104,105,115,46,95,115,117,112,112,111,114,116,115,65,108,112,104,97,66,97,114,40,41,63,40,116,104,105,115,46,111,112,116,105,111,110,115,46,117,115,101,65,108,112,104,97,61,33,48,44,101,46,97,100,100,67,108,97,115,115,40,34,99,111,108,111,114,112,105,99,107,101,114,45,119,105,116,104,45,97,108,112,104,97,34,41,41,58,116,104,105,115,46,111,112,116,105,111,110,115,46,117,115,101,65,108,112,104,97,61,33,49,125,125,44,123,107,101,121,58,34,97,116,116,97,99,104,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,99,111,110,116,97,105,110,101,114,63,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,99,111,110,116,97,105,110,101,114,58,110,117,108,108,59,101,38,38,116,104,105,115,46,112,105,99,107,101,114,46,97,112,112,101,110,100,84,111,40,101,41,125,125,44,123,107,101,121,58,34,117,110,98,105,110,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,112,105,99,107,101,114,46,114,101,109,111,118,101,40,41,125,125,44,123,107,101,121,58,34,95,115,117,112,112,111,114,116,115,65,108,112,104,97,66,97,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,40,116,104,105,115,46,111,112,116,105,111,110,115,46,117,115,101,65,108,112,104,97,124,124,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,99,111,108,111,114,72,97,110,100,108,101,114,46,104,97,115,67,111,108,111,114,40,41,38,38,116,104,105,115,46,99,111,108,111,114,46,104,97,115,84,114,97,110,115,112,97,114,101,110,99,121,40,41,41,38,38,33,49,33,61,61,116,104,105,115,46,111,112,116,105,111,110,115,46,117,115,101,65,108,112,104,97,38,38,40,33,116,104,105,115,46,111,112,116,105,111,110,115,46,102,111,114,109,97,116,124,124,116,104,105,115,46,111,112,116,105,111,110,115,46,102,111,114,109,97,116,38,38,33,116,104,105,115,46,111,112,116,105,111,110,115,46,102,111,114,109,97,116,46,109,97,116,99,104,40,47,94,104,101,120,40,91,51,54,93,41,63,36,47,105,41,41,125,125,44,123,107,101,121,58,34,117,112,100,97,116,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,105,102,40,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,99,111,108,111,114,72,97,110,100,108,101,114,46,104,97,115,67,111,108,111,114,40,41,41,123,118,97,114,32,101,61,33,48,33,61,61,116,104,105,115,46,111,112,116,105,111,110,115,46,104,111,114,105,122,111,110,116,97,108,44,116,61,101,63,116,104,105,115,46,111,112,116,105,111,110,115,46,115,108,105,100,101,114,115,58,116,104,105,115,46,111,112,116,105,111,110,115,46,115,108,105,100,101,114,115,72,111,114,122,44,111,61,116,104,105,115,46,112,105,99,107,101,114,46,102,105,110,100,40,34,46,99,111,108,111,114,112,105,99,107,101,114,45,115,97,116,117,114,97,116,105,111,110,32,46,99,111,108,111,114,112,105,99,107,101,114,45,103,117,105,100,101,34,41,44,114,61,116,104,105,115,46,112,105,99,107,101,114,46,102,105,110,100,40,34,46,99,111,108,111,114,112,105,99,107,101,114,45,104,117,101,32,46,99,111,108,111,114,112,105,99,107,101,114,45,103,117,105,100,101,34,41,44,110,61,116,104,105,115,46,112,105,99,107,101,114,46,102,105,110,100,40,34,46,99,111,108,111,114,112,105,99,107,101,114,45,97,108,112,104,97,32,46,99,111,108,111,114,112,105,99,107,101,114,45,103,117,105,100,101,34,41,44,105,61,116,104,105,115,46,99,111,108,111,114,46,116,111,72,115,118,97,82,97,116,105,111,40,41,59,114,46,108,101,110,103,116,104,38,38,114,46,99,115,115,40,101,63,34,116,111,112,34,58,34,108,101,102,116,34,44,40,101,63,116,46,104,117,101,46,109,97,120,84,111,112,58,116,46,104,117,101,46,109,97,120,76,101,102,116,41,42,40,49,45,105,46,104,41,41,44,110,46,108,101,110,103,116,104,38,38,110,46,99,115,115,40,101,63,34,116,111,112,34,58,34,108,101,102,116,34,44,40,101,63,116,46,97,108,112,104,97,46,109,97,120,84,111,112,58,116,46,97,108,112,104,97,46,109,97,120,76,101,102,116,41,42,40,49,45,105,46,97,41,41,44,111,46,108,101,110,103,116,104,38,38,111,46,99,115,115,40,123,116,111,112,58,116,46,115,97,116,117,114,97,116,105,111,110,46,109,97,120,84,111,112,45,105,46,118,42,116,46,115,97,116,117,114,97,116,105,111,110,46,109,97,120,84,111,112,44,108,101,102,116,58,105,46,115,42,116,46,115,97,116,117,114,97,116,105,111,110,46,109,97,120,76,101,102,116,125,41,44,116,104,105,115,46,112,105,99,107,101,114,46,102,105,110,100,40,34,46,99,111,108,111,114,112,105,99,107,101,114,45,115,97,116,117,114,97,116,105,111,110,34,41,46,99,115,115,40,34,98,97,99,107,103,114,111,117,110,100,67,111,108,111,114,34,44,116,104,105,115,46,99,111,108,111,114,46,103,101,116,67,108,111,110,101,72,117,101,79,110,108,121,40,41,46,116,111,72,101,120,83,116,114,105,110,103,40,41,41,59,118,97,114,32,97,61,116,104,105,115,46,99,111,108,111,114,46,116,111,72,101,120,83,116,114,105,110,103,40,41,44,108,61,34,34,59,108,61,116,104,105,115,46,111,112,116,105,111,110,115,46,104,111,114,105,122,111,110,116,97,108,63,34,108,105,110,101,97,114,45,103,114,97,100,105,101,110,116,40,116,111,32,114,105,103,104,116,44,32,34,43,97,43,34,32,48,37,44,32,116,114,97,110,115,112,97,114,101,110,116,32,49,48,48,37,41,34,58,34,108,105,110,101,97,114,45,103,114,97,100,105,101,110,116,40,116,111,32,98,111,116,116,111,109,44,32,34,43,97,43,34,32,48,37,44,32,116,114,97,110,115,112,97,114,101,110,116,32,49,48,48,37,41,34,44,116,104,105,115,46,112,105,99,107,101,114,46,102,105,110,100,40,34,46,99,111,108,111,114,112,105,99,107,101,114,45,97,108,112,104,97,45,99,111,108,111,114,34,41,46,99,115,115,40,34,98,97,99,107,103,114,111,117,110,100,34,44,108,41,125,125,125,44,123,107,101,121,58,34,111,112,116,105,111,110,115,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,111,112,116,105,111,110,115,125,125,44,123,107,101,121,58,34,99,111,108,111,114,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,99,111,108,111,114,72,97,110,100,108,101,114,46,99,111,108,111,114,125,125,93,41,44,101,125,40,41,59,116,46,100,101,102,97,117,108,116,61,108,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,111,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,102,117,110,99,116,105,111,110,32,114,40,101,44,116,41,123,105,102,40,33,40,101,32,105,110,115,116,97,110,99,101,111,102,32,116,41,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,67,97,110,110,111,116,32,99,97,108,108,32,97,32,99,108,97,115,115,32,97,115,32,97,32,102,117,110,99,116,105,111,110,34,41,125,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,44,34,95,95,101,115,77,111,100,117,108,101,34,44,123,118,97,108,117,101,58,33,48,125,41,59,118,97,114,32,110,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,101,40,101,44,116,41,123,102,111,114,40,118,97,114,32,111,61,48,59,111,60,116,46,108,101,110,103,116,104,59,111,43,43,41,123,118,97,114,32,114,61,116,91,111,93,59,114,46,101,110,117,109,101,114,97,98,108,101,61,114,46,101,110,117,109,101,114,97,98,108,101,124,124,33,49,44,114,46,99,111,110,102,105,103,117,114,97,98,108,101,61,33,48,44,34,118,97,108,117,101,34,105,110,32,114,38,38,40,114,46,119,114,105,116,97,98,108,101,61,33,48,41,44,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,101,44,114,46,107,101,121,44,114,41,125,125,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,44,111,44,114,41,123,114,101,116,117,114,110,32,111,38,38,101,40,116,46,112,114,111,116,111,116,121,112,101,44,111,41,44,114,38,38,101,40,116,44,114,41,44,116,125,125,40,41,44,105,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,101,40,116,41,123,114,40,116,104,105,115,44,101,41,44,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,61,116,44,116,104,105,115,46,97,100,100,111,110,61,110,117,108,108,125,114,101,116,117,114,110,32,110,40,101,44,91,123,107,101,121,58,34,104,97,115,65,100,100,111,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,33,33,116,104,105,115,46,97,100,100,111,110,125,125,44,123,107,101,121,58,34,98,105,110,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,97,100,100,111,110,61,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,111,112,116,105,111,110,115,46,97,100,100,111,110,63,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,101,108,101,109,101,110,116,46,102,105,110,100,40,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,111,112,116,105,111,110,115,46,97,100,100,111,110,41,58,110,117,108,108,44,116,104,105,115,46,97,100,100,111,110,38,38,48,61,61,61,116,104,105,115,46,97,100,100,111,110,46,108,101,110,103,116,104,38,38,40,116,104,105,115,46,97,100,100,111,110,61,110,117,108,108,41,125,125,44,123,107,101,121,58,34,117,110,98,105,110,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,104,97,115,65,100,100,111,110,40,41,38,38,116,104,105,115,46,97,100,100,111,110,46,111,102,102,40,34,46,99,111,108,111,114,112,105,99,107,101,114,34,41,125,125,44,123,107,101,121,58,34,117,112,100,97,116,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,105,102,40,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,99,111,108,111,114,72,97,110,100,108,101,114,46,104,97,115,67,111,108,111,114,40,41,38,38,116,104,105,115,46,104,97,115,65,100,100,111,110,40,41,41,123,118,97,114,32,101,61,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,99,111,108,111,114,72,97,110,100,108,101,114,46,103,101,116,67,111,108,111,114,83,116,114,105,110,103,40,41,44,116,61,123,98,97,99,107,103,114,111,117,110,100,58,101,125,44,111,61,116,104,105,115,46,97,100,100,111,110,46,102,105,110,100,40,34,105,34,41,46,101,113,40,48,41,59,111,46,108,101,110,103,116,104,62,48,63,111,46,99,115,115,40,116,41,58,116,104,105,115,46,97,100,100,111,110,46,99,115,115,40,116,41,125,125,125,93,41,44,101,125,40,41,59,116,46,100,101,102,97,117,108,116,61,105,125,93,41,125,41,59,33,102,117,110,99,116,105,111,110,32,116,40,101,44,110,44,114,41,123,102,117,110,99,116,105,111,110,32,111,40,115,44,117,41,123,105,102,40,33,110,91,115,93,41,123,105,102,40,33,101,91,115,93,41,123,118,97,114,32,108,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,114,101,113,117,105,114,101,38,38,114,101,113,117,105,114,101,59,105,102,40,33,117,38,38,108,41,114,101,116,117,114,110,32,108,40,115,44,33,48,41,59,105,102,40,105,41,114,101,116,117,114,110,32,105,40,115,44,33,48,41,59,118,97,114,32,97,61,110,101,119,32,69,114,114,111,114,40,34,67,97,110,110,111,116,32,102,105,110,100,32,109,111,100,117,108,101,32,39,34,43,115,43,34,39,34,41,59,116,104,114,111,119,32,97,46,99,111,100,101,61,34,77,79,68,85,76,69,95,78,79,84,95,70,79,85,78,68,34,44,97,125,118,97,114,32,112,61,110,91,115,93,61,123,101,120,112,111,114,116,115,58,123,125,125,59,101,91,115,93,91,48,93,46,99,97,108,108,40,112,46,101,120,112,111,114,116,115,44,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,101,91,115,93,91,49,93,91,116,93,59,114,101,116,117,114,110,32,111,40,110,63,110,58,116,41,125,44,112,44,112,46,101,120,112,111,114,116,115,44,116,44,101,44,110,44,114,41,125,114,101,116,117,114,110,32,110,91,115,93,46,101,120,112,111,114,116,115,125,102,111,114,40,118,97,114,32,105,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,114,101,113,117,105,114,101,38,38,114,101,113,117,105,114,101,44,115,61,48,59,115,60,114,46,108,101,110,103,116,104,59,115,43,43,41,111,40,114,91,115,93,41,59,114,101,116,117,114,110,32,111,125,40,123,49,58,91,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,44,111,61,116,104,105,115,38,38,116,104,105,115,46,95,95,101,120,116,101,110,100,115,124,124,102,117,110,99,116,105,111,110,40,116,44,101,41,123,102,117,110,99,116,105,111,110,32,110,40,41,123,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,61,116,125,102,111,114,40,118,97,114,32,114,32,105,110,32,101,41,101,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,114,41,38,38,40,116,91,114,93,61,101,91,114,93,41,59,116,46,112,114,111,116,111,116,121,112,101,61,110,117,108,108,61,61,61,101,63,79,98,106,101,99,116,46,99,114,101,97,116,101,40,101,41,58,40,110,46,112,114,111,116,111,116,121,112,101,61,101,46,112,114,111,116,111,116,121,112,101,44,110,101,119,32,110,41,125,59,33,102,117,110,99,116,105,111,110,40,116,41,123,102,117,110,99,116,105,111,110,32,101,40,116,41,123,114,101,116,117,114,110,91,93,46,115,108,105,99,101,46,99,97,108,108,40,116,41,125,102,117,110,99,116,105,111,110,32,110,40,116,44,101,44,110,41,123,105,102,40,119,105,110,100,111,119,46,67,117,115,116,111,109,69,118,101,110,116,41,118,97,114,32,114,61,110,101,119,32,67,117,115,116,111,109,69,118,101,110,116,40,101,44,123,100,101,116,97,105,108,58,110,125,41,59,101,108,115,101,123,118,97,114,32,114,61,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,118,101,110,116,40,34,67,117,115,116,111,109,69,118,101,110,116,34,41,59,114,46,105,110,105,116,67,117,115,116,111,109,69,118,101,110,116,40,101,44,33,48,44,33,48,44,110,41,125,114,101,116,117,114,110,32,116,46,100,105,115,112,97,116,99,104,69,118,101,110,116,40,114,41,125,118,97,114,32,114,61,123,114,117,108,101,114,67,108,97,115,115,78,97,109,101,58,34,98,114,105,99,107,108,97,121,101,114,45,99,111,108,117,109,110,45,115,105,122,101,114,34,44,99,111,108,117,109,110,67,108,97,115,115,78,97,109,101,58,34,98,114,105,99,107,108,97,121,101,114,45,99,111,108,117,109,110,34,125,44,105,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,116,40,116,41,123,116,104,105,115,46,101,108,101,109,101,110,116,61,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,44,116,104,105,115,46,101,108,101,109,101,110,116,46,99,108,97,115,115,78,97,109,101,61,116,125,114,101,116,117,114,110,32,116,46,112,114,111,116,111,116,121,112,101,46,100,101,115,116,114,111,121,61,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,101,108,101,109,101,110,116,46,112,97,114,101,110,116,78,111,100,101,46,114,101,109,111,118,101,67,104,105,108,100,40,116,104,105,115,46,101,108,101,109,101,110,116,41,125,44,116,125,40,41,44,115,61,102,117,110,99,116,105,111,110,40,116,41,123,102,117,110,99,116,105,111,110,32,101,40,41,123,116,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,125,114,101,116,117,114,110,32,111,40,101,44,116,41,44,101,46,112,114,111,116,111,116,121,112,101,46,103,101,116,87,105,100,116,104,61,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,101,108,101,109,101,110,116,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,115,116,121,108,101,34,44,34,92,110,32,32,32,32,32,32,32,32,100,105,115,112,108,97,121,58,32,98,108,111,99,107,59,92,110,32,32,32,32,32,32,32,32,118,105,115,105,98,105,108,105,116,121,58,32,104,105,100,100,101,110,32,33,105,109,112,111,114,116,97,110,116,59,92,110,32,32,32,32,32,32,32,32,116,111,112,58,32,45,49,48,48,48,112,120,32,33,105,109,112,111,114,116,97,110,116,59,92,110,32,32,32,32,32,32,34,41,59,118,97,114,32,116,61,116,104,105,115,46,101,108,101,109,101,110,116,46,111,102,102,115,101,116,87,105,100,116,104,59,114,101,116,117,114,110,32,116,104,105,115,46,101,108,101,109,101,110,116,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,40,34,115,116,121,108,101,34,41,44,116,125,44,101,125,40,105,41,44,117,61,102,117,110,99,116,105,111,110,40,116,41,123,102,117,110,99,116,105,111,110,32,101,40,41,123,116,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,125,114,101,116,117,114,110,32,111,40,101,44,116,41,44,101,125,40,105,41,44,108,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,116,40,116,44,101,41,123,118,111,105,100,32,48,61,61,61,101,38,38,40,101,61,114,41,44,116,104,105,115,46,101,108,101,109,101,110,116,61,116,44,116,104,105,115,46,111,112,116,105,111,110,115,61,101,44,116,104,105,115,46,98,117,105,108,100,40,41,44,116,104,105,115,46,98,117,105,108,100,82,101,115,112,111,110,115,105,118,101,40,41,125,114,101,116,117,114,110,32,116,46,112,114,111,116,111,116,121,112,101,46,97,112,112,101,110,100,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,116,104,105,115,59,105,102,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,116,41,41,114,101,116,117,114,110,32,118,111,105,100,32,116,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,46,97,112,112,101,110,100,40,116,41,125,41,59,118,97,114,32,114,61,116,104,105,115,46,102,105,110,100,77,105,110,72,101,105,103,104,116,67,111,108,117,109,110,40,41,59,116,104,105,115,46,101,108,101,109,101,110,116,115,61,101,40,116,104,105,115,46,101,108,101,109,101,110,116,115,41,46,99,111,110,99,97,116,40,91,116,93,41,44,116,104,105,115,46,97,112,112,108,121,80,111,115,105,116,105,111,110,40,34,97,112,112,101,110,100,34,44,114,44,116,41,125,44,116,46,112,114,111,116,111,116,121,112,101,46,112,114,101,112,101,110,100,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,116,104,105,115,59,105,102,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,116,41,41,114,101,116,117,114,110,32,118,111,105,100,32,116,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,46,112,114,101,112,101,110,100,40,116,41,125,41,59,118,97,114,32,114,61,116,104,105,115,46,102,105,110,100,77,105,110,72,101,105,103,104,116,67,111,108,117,109,110,40,41,59,116,104,105,115,46,101,108,101,109,101,110,116,115,61,91,116,93,46,99,111,110,99,97,116,40,101,40,116,104,105,115,46,101,108,101,109,101,110,116,115,41,41,44,116,104,105,115,46,97,112,112,108,121,80,111,115,105,116,105,111,110,40,34,112,114,101,112,101,110,100,34,44,114,44,116,41,125,44,116,46,112,114,111,116,111,116,121,112,101,46,111,110,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,108,101,109,101,110,116,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,98,114,105,99,107,108,97,121,101,114,46,34,43,116,44,101,41,44,116,104,105,115,125,44,116,46,112,114,111,116,111,116,121,112,101,46,114,101,100,114,97,119,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,99,111,108,117,109,110,67,111,117,110,116,59,116,104,105,115,46,99,104,101,99,107,67,111,108,117,109,110,67,111,117,110,116,40,33,49,41,44,116,104,105,115,46,114,101,111,114,100,101,114,69,108,101,109,101,110,116,115,40,116,41,44,110,40,116,104,105,115,46,101,108,101,109,101,110,116,44,34,98,114,105,99,107,108,97,121,101,114,46,114,101,100,114,97,119,34,44,123,99,111,108,117,109,110,67,111,117,110,116,58,116,125,41,125,44,116,46,112,114,111,116,111,116,121,112,101,46,100,101,115,116,114,111,121,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,59,116,104,105,115,46,114,117,108,101,114,46,100,101,115,116,114,111,121,40,41,44,101,40,116,104,105,115,46,101,108,101,109,101,110,116,115,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,46,101,108,101,109,101,110,116,46,97,112,112,101,110,100,67,104,105,108,100,40,101,41,125,41,44,101,40,116,104,105,115,46,103,101,116,67,111,108,117,109,110,115,40,41,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,112,97,114,101,110,116,78,111,100,101,46,114,101,109,111,118,101,67,104,105,108,100,40,116,41,125,41,44,110,40,116,104,105,115,46,101,108,101,109,101,110,116,44,34,98,114,105,99,107,108,97,121,101,114,46,100,101,115,116,114,111,121,34,44,123,125,41,125,44,116,46,112,114,111,116,111,116,121,112,101,46,98,117,105,108,100,61,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,114,117,108,101,114,61,110,101,119,32,115,40,116,104,105,115,46,111,112,116,105,111,110,115,46,114,117,108,101,114,67,108,97,115,115,78,97,109,101,41,44,116,104,105,115,46,101,108,101,109,101,110,116,115,61,116,104,105,115,46,103,101,116,69,108,101,109,101,110,116,115,73,110,79,114,100,101,114,40,41,44,116,104,105,115,46,101,108,101,109,101,110,116,46,105,110,115,101,114,116,66,101,102,111,114,101,40,116,104,105,115,46,114,117,108,101,114,46,101,108,101,109,101,110,116,44,116,104,105,115,46,101,108,101,109,101,110,116,46,102,105,114,115,116,67,104,105,108,100,41,125,44,116,46,112,114,111,116,111,116,121,112,101,46,98,117,105,108,100,82,101,115,112,111,110,115,105,118,101,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,59,119,105,110,100,111,119,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,114,101,115,105,122,101,34,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,46,99,104,101,99,107,67,111,108,117,109,110,67,111,117,110,116,40,41,125,41,44,116,104,105,115,46,99,104,101,99,107,67,111,108,117,109,110,67,111,117,110,116,40,41,44,116,104,105,115,46,111,110,40,34,98,114,101,97,107,112,111,105,110,116,34,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,46,114,101,111,114,100,101,114,69,108,101,109,101,110,116,115,40,101,46,100,101,116,97,105,108,46,99,111,108,117,109,110,67,111,117,110,116,41,125,41,44,116,104,105,115,46,99,111,108,117,109,110,67,111,117,110,116,62,61,49,38,38,116,104,105,115,46,114,101,111,114,100,101,114,69,108,101,109,101,110,116,115,40,116,104,105,115,46,99,111,108,117,109,110,67,111,117,110,116,41,125,44,116,46,112,114,111,116,111,116,121,112,101,46,103,101,116,67,111,108,117,109,110,115,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,108,101,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,34,58,115,99,111,112,101,32,62,32,46,34,43,116,104,105,115,46,111,112,116,105,111,110,115,46,99,111,108,117,109,110,67,108,97,115,115,78,97,109,101,41,125,44,116,46,112,114,111,116,111,116,121,112,101,46,102,105,110,100,77,105,110,72,101,105,103,104,116,67,111,108,117,109,110,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,101,40,116,104,105,115,46,103,101,116,67,111,108,117,109,110,115,40,41,41,44,110,61,116,46,109,97,112,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,111,102,102,115,101,116,72,101,105,103,104,116,125,41,44,114,61,77,97,116,104,46,109,105,110,46,97,112,112,108,121,40,110,117,108,108,44,110,41,59,114,101,116,117,114,110,32,116,91,110,46,105,110,100,101,120,79,102,40,114,41,93,125,44,116,46,112,114,111,116,111,116,121,112,101,46,103,101,116,69,108,101,109,101,110,116,115,73,110,79,114,100,101,114,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,108,101,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,34,58,115,99,111,112,101,32,62,32,42,58,110,111,116,40,46,34,43,116,104,105,115,46,111,112,116,105,111,110,115,46,99,111,108,117,109,110,67,108,97,115,115,78,97,109,101,43,34,41,58,110,111,116,40,46,34,43,116,104,105,115,46,111,112,116,105,111,110,115,46,114,117,108,101,114,67,108,97,115,115,78,97,109,101,43,34,41,34,41,125,44,116,46,112,114,111,116,111,116,121,112,101,46,99,104,101,99,107,67,111,108,117,109,110,67,111,117,110,116,61,102,117,110,99,116,105,111,110,40,116,41,123,118,111,105,100,32,48,61,61,61,116,38,38,40,116,61,33,48,41,59,118,97,114,32,101,61,116,104,105,115,46,103,101,116,67,111,108,117,109,110,67,111,117,110,116,40,41,59,116,104,105,115,46,99,111,108,117,109,110,67,111,117,110,116,33,61,61,101,38,38,40,116,38,38,110,40,116,104,105,115,46,101,108,101,109,101,110,116,44,34,98,114,105,99,107,108,97,121,101,114,46,98,114,101,97,107,112,111,105,110,116,34,44,123,99,111,108,117,109,110,67,111,117,110,116,58,101,125,41,44,116,104,105,115,46,99,111,108,117,109,110,67,111,117,110,116,61,101,41,125,44,116,46,112,114,111,116,111,116,121,112,101,46,114,101,111,114,100,101,114,69,108,101,109,101,110,116,115,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,116,104,105,115,59,118,111,105,100,32,48,61,61,61,116,38,38,40,116,61,49,41,44,40,116,61,61,49,47,48,124,124,49,62,116,41,38,38,40,116,61,49,41,59,102,111,114,40,118,97,114,32,114,61,101,40,116,104,105,115,46,101,108,101,109,101,110,116,115,41,46,109,97,112,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,46,112,97,114,101,110,116,78,111,100,101,63,116,46,112,97,114,101,110,116,78,111,100,101,46,114,101,109,111,118,101,67,104,105,108,100,40,116,41,58,116,59,114,101,116,117,114,110,32,101,125,41,44,111,61,116,104,105,115,46,103,101,116,67,111,108,117,109,110,115,40,41,44,105,61,48,59,105,60,111,46,108,101,110,103,116,104,59,105,43,43,41,111,91,105,93,46,112,97,114,101,110,116,78,111,100,101,46,114,101,109,111,118,101,67,104,105,108,100,40,111,91,105,93,41,59,102,111,114,40,118,97,114,32,105,61,48,59,116,62,105,59,105,43,43,41,123,118,97,114,32,115,61,110,101,119,32,117,40,116,104,105,115,46,111,112,116,105,111,110,115,46,99,111,108,117,109,110,67,108,97,115,115,78,97,109,101,41,46,101,108,101,109,101,110,116,59,116,104,105,115,46,101,108,101,109,101,110,116,46,97,112,112,101,110,100,67,104,105,108,100,40,115,41,125,114,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,110,46,102,105,110,100,77,105,110,72,101,105,103,104,116,67,111,108,117,109,110,40,41,59,101,46,97,112,112,101,110,100,67,104,105,108,100,40,116,41,125,41,125,44,116,46,112,114,111,116,111,116,121,112,101,46,103,101,116,67,111,108,117,109,110,67,111,117,110,116,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,101,108,101,109,101,110,116,46,111,102,102,115,101,116,87,105,100,116,104,44,101,61,116,104,105,115,46,114,117,108,101,114,46,103,101,116,87,105,100,116,104,40,41,59,114,101,116,117,114,110,32,77,97,116,104,46,114,111,117,110,100,40,116,47,101,41,125,44,116,46,112,114,111,116,111,116,121,112,101,46,97,112,112,108,121,80,111,115,105,116,105,111,110,61,102,117,110,99,116,105,111,110,40,116,44,101,44,114,41,123,118,97,114,32,111,61,116,104,105,115,44,105,61,102,117,110,99,116,105,111,110,40,105,41,123,118,97,114,32,115,61,105,43,116,46,99,104,97,114,65,116,40,48,41,46,116,111,85,112,112,101,114,67,97,115,101,40,41,43,116,46,115,117,98,115,116,114,40,49,41,59,110,40,111,46,101,108,101,109,101,110,116,44,34,98,114,105,99,107,108,97,121,101,114,46,34,43,115,44,123,105,116,101,109,58,114,44,99,111,108,117,109,110,58,101,125,41,125,59,115,119,105,116,99,104,40,105,40,34,98,101,102,111,114,101,34,41,44,116,41,123,99,97,115,101,34,97,112,112,101,110,100,34,58,101,46,97,112,112,101,110,100,67,104,105,108,100,40,114,41,59,98,114,101,97,107,59,99,97,115,101,34,112,114,101,112,101,110,100,34,58,101,46,105,110,115,101,114,116,66,101,102,111,114,101,40,114,44,101,46,102,105,114,115,116,67,104,105,108,100,41,125,105,40,34,97,102,116,101,114,34,41,125,44,116,125,40,41,59,116,46,67,111,110,116,97,105,110,101,114,61,108,125,40,114,124,124,40,114,61,123,125,41,41,44,102,117,110,99,116,105,111,110,40,116,44,110,41,123,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,100,101,102,105,110,101,38,38,100,101,102,105,110,101,46,97,109,100,63,100,101,102,105,110,101,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,110,40,41,125,41,58,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,119,105,110,100,111,119,38,38,116,61,61,61,119,105,110,100,111,119,63,116,46,66,114,105,99,107,108,97,121,101,114,61,110,40,41,58,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,101,38,38,101,46,101,120,112,111,114,116,115,38,38,40,101,46,101,120,112,111,114,116,115,61,110,40,41,41,125,40,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,119,105,110,100,111,119,63,119,105,110,100,111,119,58,116,104,105,115,44,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,114,46,67,111,110,116,97,105,110,101,114,125,41,125,44,123,125,93,125,44,123,125,44,91,49,93,41,59,47,47,32,104,116,116,112,115,58,47,47,100,51,106,115,46,111,114,103,32,118,53,46,49,54,46,48,32,67,111,112,121,114,105,103,104,116,32,50,48,50,48,32,77,105,107,101,32,66,111,115,116,111,99,107,10,33,102,117,110,99,116,105,111,110,40,116,44,110,41,123,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,101,120,112,111,114,116,115,38,38,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,109,111,100,117,108,101,63,110,40,101,120,112,111,114,116,115,41,58,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,100,101,102,105,110,101,38,38,100,101,102,105,110,101,46,97,109,100,63,100,101,102,105,110,101,40,91,34,101,120,112,111,114,116,115,34,93,44,110,41,58,110,40,40,116,61,116,124,124,115,101,108,102,41,46,100,51,61,116,46,100,51,124,124,123,125,41,125,40,116,104,105,115,44,102,117,110,99,116,105,111,110,40,116,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,102,117,110,99,116,105,111,110,32,110,40,116,44,110,41,123,114,101,116,117,114,110,32,116,60,110,63,45,49,58,116,62,110,63,49,58,116,62,61,110,63,48,58,78,97,78,125,102,117,110,99,116,105,111,110,32,101,40,116,41,123,118,97,114,32,101,59,114,101,116,117,114,110,32,49,61,61,61,116,46,108,101,110,103,116,104,38,38,40,101,61,116,44,116,61,102,117,110,99,116,105,111,110,40,116,44,114,41,123,114,101,116,117,114,110,32,110,40,101,40,116,41,44,114,41,125,41,44,123,108,101,102,116,58,102,117,110,99,116,105,111,110,40,110,44,101,44,114,44,105,41,123,102,111,114,40,110,117,108,108,61,61,114,38,38,40,114,61,48,41,44,110,117,108,108,61,61,105,38,38,40,105,61,110,46,108,101,110,103,116,104,41,59,114,60,105,59,41,123,118,97,114,32,111,61,114,43,105,62,62,62,49,59,116,40,110,91,111,93,44,101,41,60,48,63,114,61,111,43,49,58,105,61,111,125,114,101,116,117,114,110,32,114,125,44,114,105,103,104,116,58,102,117,110,99,116,105,111,110,40,110,44,101,44,114,44,105,41,123,102,111,114,40,110,117,108,108,61,61,114,38,38,40,114,61,48,41,44,110,117,108,108,61,61,105,38,38,40,105,61,110,46,108,101,110,103,116,104,41,59,114,60,105,59,41,123,118,97,114,32,111,61,114,43,105,62,62,62,49,59,116,40,110,91,111,93,44,101,41,62,48,63,105,61,111,58,114,61,111,43,49,125,114,101,116,117,114,110,32,114,125,125,125,118,97,114,32,114,61,101,40,110,41,44,105,61,114,46,114,105,103,104,116,44,111,61,114,46,108,101,102,116,59,102,117,110,99,116,105,111,110,32,97,40,116,44,110,41,123,114,101,116,117,114,110,91,116,44,110,93,125,102,117,110,99,116,105,111,110,32,117,40,116,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,61,116,63,78,97,78,58,43,116,125,102,117,110,99,116,105,111,110,32,99,40,116,44,110,41,123,118,97,114,32,101,44,114,44,105,61,116,46,108,101,110,103,116,104,44,111,61,48,44,97,61,45,49,44,99,61,48,44,102,61,48,59,105,102,40,110,117,108,108,61,61,110,41,102,111,114,40,59,43,43,97,60,105,59,41,105,115,78,97,78,40,101,61,117,40,116,91,97,93,41,41,124,124,40,102,43,61,40,114,61,101,45,99,41,42,40,101,45,40,99,43,61,114,47,43,43,111,41,41,41,59,101,108,115,101,32,102,111,114,40,59,43,43,97,60,105,59,41,105,115,78,97,78,40,101,61,117,40,110,40,116,91,97,93,44,97,44,116,41,41,41,124,124,40,102,43,61,40,114,61,101,45,99,41,42,40,101,45,40,99,43,61,114,47,43,43,111,41,41,41,59,105,102,40,111,62,49,41,114,101,116,117,114,110,32,102,47,40,111,45,49,41,125,102,117,110,99,116,105,111,110,32,102,40,116,44,110,41,123,118,97,114,32,101,61,99,40,116,44,110,41,59,114,101,116,117,114,110,32,101,63,77,97,116,104,46,115,113,114,116,40,101,41,58,101,125,102,117,110,99,116,105,111,110,32,115,40,116,44,110,41,123,118,97,114,32,101,44,114,44,105,44,111,61,116,46,108,101,110,103,116,104,44,97,61,45,49,59,105,102,40,110,117,108,108,61,61,110,41,123,102,111,114,40,59,43,43,97,60,111,59,41,105,102,40,110,117,108,108,33,61,40,101,61,116,91,97,93,41,38,38,101,62,61,101,41,102,111,114,40,114,61,105,61,101,59,43,43,97,60,111,59,41,110,117,108,108,33,61,40,101,61,116,91,97,93,41,38,38,40,114,62,101,38,38,40,114,61,101,41,44,105,60,101,38,38,40,105,61,101,41,41,125,101,108,115,101,32,102,111,114,40,59,43,43,97,60,111,59,41,105,102,40,110,117,108,108,33,61,40,101,61,110,40,116,91,97,93,44,97,44,116,41,41,38,38,101,62,61,101,41,102,111,114,40,114,61,105,61,101,59,43,43,97,60,111,59,41,110,117,108,108,33,61,40,101,61,110,40,116,91,97,93,44,97,44,116,41,41,38,38,40,114,62,101,38,38,40,114,61,101,41,44,105,60,101,38,38,40,105,61,101,41,41,59,114,101,116,117,114,110,91,114,44,105,93,125,118,97,114,32,108,61,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,44,104,61,108,46,115,108,105,99,101,44,100,61,108,46,109,97,112,59,102,117,110,99,116,105,111,110,32,112,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,125,125,102,117,110,99,116,105,111,110,32,118,40,116,41,123,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,103,40,116,44,110,44,101,41,123,116,61,43,116,44,110,61,43,110,44,101,61,40,105,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,60,50,63,40,110,61,116,44,116,61,48,44,49,41,58,105,60,51,63,49,58,43,101,59,102,111,114,40,118,97,114,32,114,61,45,49,44,105,61,48,124,77,97,116,104,46,109,97,120,40,48,44,77,97,116,104,46,99,101,105,108,40,40,110,45,116,41,47,101,41,41,44,111,61,110,101,119,32,65,114,114,97,121,40,105,41,59,43,43,114,60,105,59,41,111,91,114,93,61,116,43,114,42,101,59,114,101,116,117,114,110,32,111,125,118,97,114,32,121,61,77,97,116,104,46,115,113,114,116,40,53,48,41,44,95,61,77,97,116,104,46,115,113,114,116,40,49,48,41,44,98,61,77,97,116,104,46,115,113,114,116,40,50,41,59,102,117,110,99,116,105,111,110,32,109,40,116,44,110,44,101,41,123,118,97,114,32,114,44,105,44,111,44,97,44,117,61,45,49,59,105,102,40,101,61,43,101,44,40,116,61,43,116,41,61,61,61,40,110,61,43,110,41,38,38,101,62,48,41,114,101,116,117,114,110,91,116,93,59,105,102,40,40,114,61,110,60,116,41,38,38,40,105,61,116,44,116,61,110,44,110,61,105,41,44,48,61,61,61,40,97,61,120,40,116,44,110,44,101,41,41,124,124,33,105,115,70,105,110,105,116,101,40,97,41,41,114,101,116,117,114,110,91,93,59,105,102,40,97,62,48,41,102,111,114,40,116,61,77,97,116,104,46,99,101,105,108,40,116,47,97,41,44,110,61,77,97,116,104,46,102,108,111,111,114,40,110,47,97,41,44,111,61,110,101,119,32,65,114,114,97,121,40,105,61,77,97,116,104,46,99,101,105,108,40,110,45,116,43,49,41,41,59,43,43,117,60,105,59,41,111,91,117,93,61,40,116,43,117,41,42,97,59,101,108,115,101,32,102,111,114,40,116,61,77,97,116,104,46,102,108,111,111,114,40,116,42,97,41,44,110,61,77,97,116,104,46,99,101,105,108,40,110,42,97,41,44,111,61,110,101,119,32,65,114,114,97,121,40,105,61,77,97,116,104,46,99,101,105,108,40,116,45,110,43,49,41,41,59,43,43,117,60,105,59,41,111,91,117,93,61,40,116,45,117,41,47,97,59,114,101,116,117,114,110,32,114,38,38,111,46,114,101,118,101,114,115,101,40,41,44,111,125,102,117,110,99,116,105,111,110,32,120,40,116,44,110,44,101,41,123,118,97,114,32,114,61,40,110,45,116,41,47,77,97,116,104,46,109,97,120,40,48,44,101,41,44,105,61,77,97,116,104,46,102,108,111,111,114,40,77,97,116,104,46,108,111,103,40,114,41,47,77,97,116,104,46,76,78,49,48,41,44,111,61,114,47,77,97,116,104,46,112,111,119,40,49,48,44,105,41,59,114,101,116,117,114,110,32,105,62,61,48,63,40,111,62,61,121,63,49,48,58,111,62,61,95,63,53,58,111,62,61,98,63,50,58,49,41,42,77,97,116,104,46,112,111,119,40,49,48,44,105,41,58,45,77,97,116,104,46,112,111,119,40,49,48,44,45,105,41,47,40,111,62,61,121,63,49,48,58,111,62,61,95,63,53,58,111,62,61,98,63,50,58,49,41,125,102,117,110,99,116,105,111,110,32,119,40,116,44,110,44,101,41,123,118,97,114,32,114,61,77,97,116,104,46,97,98,115,40,110,45,116,41,47,77,97,116,104,46,109,97,120,40,48,44,101,41,44,105,61,77,97,116,104,46,112,111,119,40,49,48,44,77,97,116,104,46,102,108,111,111,114,40,77,97,116,104,46,108,111,103,40,114,41,47,77,97,116,104,46,76,78,49,48,41,41,44,111,61,114,47,105,59,114,101,116,117,114,110,32,111,62,61,121,63,105,42,61,49,48,58,111,62,61,95,63,105,42,61,53,58,111,62,61,98,38,38,40,105,42,61,50,41,44,110,60,116,63,45,105,58,105,125,102,117,110,99,116,105,111,110,32,77,40,116,41,123,114,101,116,117,114,110,32,77,97,116,104,46,99,101,105,108,40,77,97,116,104,46,108,111,103,40,116,46,108,101,110,103,116,104,41,47,77,97,116,104,46,76,78,50,41,43,49,125,102,117,110,99,116,105,111,110,32,78,40,116,44,110,44,101,41,123,105,102,40,110,117,108,108,61,61,101,38,38,40,101,61,117,41,44,114,61,116,46,108,101,110,103,116,104,41,123,105,102,40,40,110,61,43,110,41,60,61,48,124,124,114,60,50,41,114,101,116,117,114,110,43,101,40,116,91,48,93,44,48,44,116,41,59,105,102,40,110,62,61,49,41,114,101,116,117,114,110,43,101,40,116,91,114,45,49,93,44,114,45,49,44,116,41,59,118,97,114,32,114,44,105,61,40,114,45,49,41,42,110,44,111,61,77,97,116,104,46,102,108,111,111,114,40,105,41,44,97,61,43,101,40,116,91,111,93,44,111,44,116,41,59,114,101,116,117,114,110,32,97,43,40,43,101,40,116,91,111,43,49,93,44,111,43,49,44,116,41,45,97,41,42,40,105,45,111,41,125,125,102,117,110,99,116,105,111,110,32,84,40,116,44,110,41,123,118,97,114,32,101,44,114,44,105,61,116,46,108,101,110,103,116,104,44,111,61,45,49,59,105,102,40,110,117,108,108,61,61,110,41,123,102,111,114,40,59,43,43,111,60,105,59,41,105,102,40,110,117,108,108,33,61,40,101,61,116,91,111,93,41,38,38,101,62,61,101,41,102,111,114,40,114,61,101,59,43,43,111,60,105,59,41,110,117,108,108,33,61,40,101,61,116,91,111,93,41,38,38,101,62,114,38,38,40,114,61,101,41,125,101,108,115,101,32,102,111,114,40,59,43,43,111,60,105,59,41,105,102,40,110,117,108,108,33,61,40,101,61,110,40,116,91,111,93,44,111,44,116,41,41,38,38,101,62,61,101,41,102,111,114,40,114,61,101,59,43,43,111,60,105,59,41,110,117,108,108,33,61,40,101,61,110,40,116,91,111,93,44,111,44,116,41,41,38,38,101,62,114,38,38,40,114,61,101,41,59,114,101,116,117,114,110,32,114,125,102,117,110,99,116,105,111,110,32,65,40,116,41,123,102,111,114,40,118,97,114,32,110,44,101,44,114,44,105,61,116,46,108,101,110,103,116,104,44,111,61,45,49,44,97,61,48,59,43,43,111,60,105,59,41,97,43,61,116,91,111,93,46,108,101,110,103,116,104,59,102,111,114,40,101,61,110,101,119,32,65,114,114,97,121,40,97,41,59,45,45,105,62,61,48,59,41,102,111,114,40,110,61,40,114,61,116,91,105,93,41,46,108,101,110,103,116,104,59,45,45,110,62,61,48,59,41,101,91,45,45,97,93,61,114,91,110,93,59,114,101,116,117,114,110,32,101,125,102,117,110,99,116,105,111,110,32,83,40,116,44,110,41,123,118,97,114,32,101,44,114,44,105,61,116,46,108,101,110,103,116,104,44,111,61,45,49,59,105,102,40,110,117,108,108,61,61,110,41,123,102,111,114,40,59,43,43,111,60,105,59,41,105,102,40,110,117,108,108,33,61,40,101,61,116,91,111,93,41,38,38,101,62,61,101,41,102,111,114,40,114,61,101,59,43,43,111,60,105,59,41,110,117,108,108,33,61,40,101,61,116,91,111,93,41,38,38,114,62,101,38,38,40,114,61,101,41,125,101,108,115,101,32,102,111,114,40,59,43,43,111,60,105,59,41,105,102,40,110,117,108,108,33,61,40,101,61,110,40,116,91,111,93,44,111,44,116,41,41,38,38,101,62,61,101,41,102,111,114,40,114,61,101,59,43,43,111,60,105,59,41,110,117,108,108,33,61,40,101,61,110,40,116,91,111,93,44,111,44,116,41,41,38,38,114,62,101,38,38,40,114,61,101,41,59,114,101,116,117,114,110,32,114,125,102,117,110,99,116,105,111,110,32,107,40,116,41,123,105,102,40,33,40,105,61,116,46,108,101,110,103,116,104,41,41,114,101,116,117,114,110,91,93,59,102,111,114,40,118,97,114,32,110,61,45,49,44,101,61,83,40,116,44,69,41,44,114,61,110,101,119,32,65,114,114,97,121,40,101,41,59,43,43,110,60,101,59,41,102,111,114,40,118,97,114,32,105,44,111,61,45,49,44,97,61,114,91,110,93,61,110,101,119,32,65,114,114,97,121,40,105,41,59,43,43,111,60,105,59,41,97,91,111,93,61,116,91,111,93,91,110,93,59,114,101,116,117,114,110,32,114,125,102,117,110,99,116,105,111,110,32,69,40,116,41,123,114,101,116,117,114,110,32,116,46,108,101,110,103,116,104,125,118,97,114,32,67,61,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,115,108,105,99,101,59,102,117,110,99,116,105,111,110,32,80,40,116,41,123,114,101,116,117,114,110,32,116,125,118,97,114,32,122,61,49,44,82,61,50,44,68,61,51,44,113,61,52,44,76,61,49,101,45,54,59,102,117,110,99,116,105,111,110,32,85,40,116,41,123,114,101,116,117,114,110,34,116,114,97,110,115,108,97,116,101,40,34,43,40,116,43,46,53,41,43,34,44,48,41,34,125,102,117,110,99,116,105,111,110,32,79,40,116,41,123,114,101,116,117,114,110,34,116,114,97,110,115,108,97,116,101,40,48,44,34,43,40,116,43,46,53,41,43,34,41,34,125,102,117,110,99,116,105,111,110,32,66,40,41,123,114,101,116,117,114,110,33,116,104,105,115,46,95,95,97,120,105,115,125,102,117,110,99,116,105,111,110,32,70,40,116,44,110,41,123,118,97,114,32,101,61,91,93,44,114,61,110,117,108,108,44,105,61,110,117,108,108,44,111,61,54,44,97,61,54,44,117,61,51,44,99,61,116,61,61,61,122,124,124,116,61,61,61,113,63,45,49,58,49,44,102,61,116,61,61,61,113,124,124,116,61,61,61,82,63,34,120,34,58,34,121,34,44,115,61,116,61,61,61,122,124,124,116,61,61,61,68,63,85,58,79,59,102,117,110,99,116,105,111,110,32,108,40,108,41,123,118,97,114,32,104,61,110,117,108,108,61,61,114,63,110,46,116,105,99,107,115,63,110,46,116,105,99,107,115,46,97,112,112,108,121,40,110,44,101,41,58,110,46,100,111,109,97,105,110,40,41,58,114,44,100,61,110,117,108,108,61,61,105,63,110,46,116,105,99,107,70,111,114,109,97,116,63,110,46,116,105,99,107,70,111,114,109,97,116,46,97,112,112,108,121,40,110,44,101,41,58,80,58,105,44,112,61,77,97,116,104,46,109,97,120,40,111,44,48,41,43,117,44,118,61,110,46,114,97,110,103,101,40,41,44,103,61,43,118,91,48,93,43,46,53,44,121,61,43,118,91,118,46,108,101,110,103,116,104,45,49,93,43,46,53,44,95,61,40,110,46,98,97,110,100,119,105,100,116,104,63,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,77,97,116,104,46,109,97,120,40,48,44,116,46,98,97,110,100,119,105,100,116,104,40,41,45,49,41,47,50,59,114,101,116,117,114,110,32,116,46,114,111,117,110,100,40,41,38,38,40,110,61,77,97,116,104,46,114,111,117,110,100,40,110,41,41,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,43,116,40,101,41,43,110,125,125,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,43,116,40,110,41,125,125,41,40,110,46,99,111,112,121,40,41,41,44,98,61,108,46,115,101,108,101,99,116,105,111,110,63,108,46,115,101,108,101,99,116,105,111,110,40,41,58,108,44,109,61,98,46,115,101,108,101,99,116,65,108,108,40,34,46,100,111,109,97,105,110,34,41,46,100,97,116,97,40,91,110,117,108,108,93,41,44,120,61,98,46,115,101,108,101,99,116,65,108,108,40,34,46,116,105,99,107,34,41,46,100,97,116,97,40,104,44,110,41,46,111,114,100,101,114,40,41,44,119,61,120,46,101,120,105,116,40,41,44,77,61,120,46,101,110,116,101,114,40,41,46,97,112,112,101,110,100,40,34,103,34,41,46,97,116,116,114,40,34,99,108,97,115,115,34,44,34,116,105,99,107,34,41,44,78,61,120,46,115,101,108,101,99,116,40,34,108,105,110,101,34,41,44,84,61,120,46,115,101,108,101,99,116,40,34,116,101,120,116,34,41,59,109,61,109,46,109,101,114,103,101,40,109,46,101,110,116,101,114,40,41,46,105,110,115,101,114,116,40,34,112,97,116,104,34,44,34,46,116,105,99,107,34,41,46,97,116,116,114,40,34,99,108,97,115,115,34,44,34,100,111,109,97,105,110,34,41,46,97,116,116,114,40,34,115,116,114,111,107,101,34,44,34,99,117,114,114,101,110,116,67,111,108,111,114,34,41,41,44,120,61,120,46,109,101,114,103,101,40,77,41,44,78,61,78,46,109,101,114,103,101,40,77,46,97,112,112,101,110,100,40,34,108,105,110,101,34,41,46,97,116,116,114,40,34,115,116,114,111,107,101,34,44,34,99,117,114,114,101,110,116,67,111,108,111,114,34,41,46,97,116,116,114,40,102,43,34,50,34,44,99,42,111,41,41,44,84,61,84,46,109,101,114,103,101,40,77,46,97,112,112,101,110,100,40,34,116,101,120,116,34,41,46,97,116,116,114,40,34,102,105,108,108,34,44,34,99,117,114,114,101,110,116,67,111,108,111,114,34,41,46,97,116,116,114,40,102,44,99,42,112,41,46,97,116,116,114,40,34,100,121,34,44,116,61,61,61,122,63,34,48,101,109,34,58,116,61,61,61,68,63,34,48,46,55,49,101,109,34,58,34,48,46,51,50,101,109,34,41,41,44,108,33,61,61,98,38,38,40,109,61,109,46,116,114,97,110,115,105,116,105,111,110,40,108,41,44,120,61,120,46,116,114,97,110,115,105,116,105,111,110,40,108,41,44,78,61,78,46,116,114,97,110,115,105,116,105,111,110,40,108,41,44,84,61,84,46,116,114,97,110,115,105,116,105,111,110,40,108,41,44,119,61,119,46,116,114,97,110,115,105,116,105,111,110,40,108,41,46,97,116,116,114,40,34,111,112,97,99,105,116,121,34,44,76,41,46,97,116,116,114,40,34,116,114,97,110,115,102,111,114,109,34,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,105,115,70,105,110,105,116,101,40,116,61,95,40,116,41,41,63,115,40,116,41,58,116,104,105,115,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,116,114,97,110,115,102,111,114,109,34,41,125,41,44,77,46,97,116,116,114,40,34,111,112,97,99,105,116,121,34,44,76,41,46,97,116,116,114,40,34,116,114,97,110,115,102,111,114,109,34,44,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,116,104,105,115,46,112,97,114,101,110,116,78,111,100,101,46,95,95,97,120,105,115,59,114,101,116,117,114,110,32,115,40,110,38,38,105,115,70,105,110,105,116,101,40,110,61,110,40,116,41,41,63,110,58,95,40,116,41,41,125,41,41,44,119,46,114,101,109,111,118,101,40,41,44,109,46,97,116,116,114,40,34,100,34,44,116,61,61,61,113,124,124,116,61,61,82,63,97,63,34,77,34,43,99,42,97,43,34,44,34,43,103,43,34,72,48,46,53,86,34,43,121,43,34,72,34,43,99,42,97,58,34,77,48,46,53,44,34,43,103,43,34,86,34,43,121,58,97,63,34,77,34,43,103,43,34,44,34,43,99,42,97,43,34,86,48,46,53,72,34,43,121,43,34,86,34,43,99,42,97,58,34,77,34,43,103,43,34,44,48,46,53,72,34,43,121,41,44,120,46,97,116,116,114,40,34,111,112,97,99,105,116,121,34,44,49,41,46,97,116,116,114,40,34,116,114,97,110,115,102,111,114,109,34,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,115,40,95,40,116,41,41,125,41,44,78,46,97,116,116,114,40,102,43,34,50,34,44,99,42,111,41,44,84,46,97,116,116,114,40,102,44,99,42,112,41,46,116,101,120,116,40,100,41,44,98,46,102,105,108,116,101,114,40,66,41,46,97,116,116,114,40,34,102,105,108,108,34,44,34,110,111,110,101,34,41,46,97,116,116,114,40,34,102,111,110,116,45,115,105,122,101,34,44,49,48,41,46,97,116,116,114,40,34,102,111,110,116,45,102,97,109,105,108,121,34,44,34,115,97,110,115,45,115,101,114,105,102,34,41,46,97,116,116,114,40,34,116,101,120,116,45,97,110,99,104,111,114,34,44,116,61,61,61,82,63,34,115,116,97,114,116,34,58,116,61,61,61,113,63,34,101,110,100,34,58,34,109,105,100,100,108,101,34,41,44,98,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,95,97,120,105,115,61,95,125,41,125,114,101,116,117,114,110,32,108,46,115,99,97,108,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,110,61,116,44,108,41,58,110,125,44,108,46,116,105,99,107,115,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,101,61,67,46,99,97,108,108,40,97,114,103,117,109,101,110,116,115,41,44,108,125,44,108,46,116,105,99,107,65,114,103,117,109,101,110,116,115,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,101,61,110,117,108,108,61,61,116,63,91,93,58,67,46,99,97,108,108,40,116,41,44,108,41,58,101,46,115,108,105,99,101,40,41,125,44,108,46,116,105,99,107,86,97,108,117,101,115,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,114,61,110,117,108,108,61,61,116,63,110,117,108,108,58,67,46,99,97,108,108,40,116,41,44,108,41,58,114,38,38,114,46,115,108,105,99,101,40,41,125,44,108,46,116,105,99,107,70,111,114,109,97,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,105,61,116,44,108,41,58,105,125,44,108,46,116,105,99,107,83,105,122,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,111,61,97,61,43,116,44,108,41,58,111,125,44,108,46,116,105,99,107,83,105,122,101,73,110,110,101,114,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,111,61,43,116,44,108,41,58,111,125,44,108,46,116,105,99,107,83,105,122,101,79,117,116,101,114,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,97,61,43,116,44,108,41,58,97,125,44,108,46,116,105,99,107,80,97,100,100,105,110,103,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,117,61,43,116,44,108,41,58,117,125,44,108,125,118,97,114,32,89,61,123,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,125,125,59,102,117,110,99,116,105,111,110,32,73,40,41,123,102,111,114,40,118,97,114,32,116,44,110,61,48,44,101,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,44,114,61,123,125,59,110,60,101,59,43,43,110,41,123,105,102,40,33,40,116,61,97,114,103,117,109,101,110,116,115,91,110,93,43,34,34,41,124,124,116,32,105,110,32,114,124,124,47,91,92,115,46,93,47,46,116,101,115,116,40,116,41,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,105,108,108,101,103,97,108,32,116,121,112,101,58,32,34,43,116,41,59,114,91,116,93,61,91,93,125,114,101,116,117,114,110,32,110,101,119,32,72,40,114,41,125,102,117,110,99,116,105,111,110,32,72,40,116,41,123,116,104,105,115,46,95,61,116,125,102,117,110,99,116,105,111,110,32,106,40,116,44,110,41,123,114,101,116,117,114,110,32,116,46,116,114,105,109,40,41,46,115,112,108,105,116,40,47,94,124,92,115,43,47,41,46,109,97,112,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,34,34,44,114,61,116,46,105,110,100,101,120,79,102,40,34,46,34,41,59,105,102,40,114,62,61,48,38,38,40,101,61,116,46,115,108,105,99,101,40,114,43,49,41,44,116,61,116,46,115,108,105,99,101,40,48,44,114,41,41,44,116,38,38,33,110,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,116,41,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,117,110,107,110,111,119,110,32,116,121,112,101,58,32,34,43,116,41,59,114,101,116,117,114,110,123,116,121,112,101,58,116,44,110,97,109,101,58,101,125,125,41,125,102,117,110,99,116,105,111,110,32,88,40,116,44,110,41,123,102,111,114,40,118,97,114,32,101,44,114,61,48,44,105,61,116,46,108,101,110,103,116,104,59,114,60,105,59,43,43,114,41,105,102,40,40,101,61,116,91,114,93,41,46,110,97,109,101,61,61,61,110,41,114,101,116,117,114,110,32,101,46,118,97,108,117,101,125,102,117,110,99,116,105,111,110,32,86,40,116,44,110,44,101,41,123,102,111,114,40,118,97,114,32,114,61,48,44,105,61,116,46,108,101,110,103,116,104,59,114,60,105,59,43,43,114,41,105,102,40,116,91,114,93,46,110,97,109,101,61,61,61,110,41,123,116,91,114,93,61,89,44,116,61,116,46,115,108,105,99,101,40,48,44,114,41,46,99,111,110,99,97,116,40,116,46,115,108,105,99,101,40,114,43,49,41,41,59,98,114,101,97,107,125,114,101,116,117,114,110,32,110,117,108,108,33,61,101,38,38,116,46,112,117,115,104,40,123,110,97,109,101,58,110,44,118,97,108,117,101,58,101,125,41,44,116,125,72,46,112,114,111,116,111,116,121,112,101,61,73,46,112,114,111,116,111,116,121,112,101,61,123,99,111,110,115,116,114,117,99,116,111,114,58,72,44,111,110,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,44,114,61,116,104,105,115,46,95,44,105,61,106,40,116,43,34,34,44,114,41,44,111,61,45,49,44,97,61,105,46,108,101,110,103,116,104,59,105,102,40,33,40,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,60,50,41,41,123,105,102,40,110,117,108,108,33,61,110,38,38,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,110,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,105,110,118,97,108,105,100,32,99,97,108,108,98,97,99,107,58,32,34,43,110,41,59,102,111,114,40,59,43,43,111,60,97,59,41,105,102,40,101,61,40,116,61,105,91,111,93,41,46,116,121,112,101,41,114,91,101,93,61,86,40,114,91,101,93,44,116,46,110,97,109,101,44,110,41,59,101,108,115,101,32,105,102,40,110,117,108,108,61,61,110,41,102,111,114,40,101,32,105,110,32,114,41,114,91,101,93,61,86,40,114,91,101,93,44,116,46,110,97,109,101,44,110,117,108,108,41,59,114,101,116,117,114,110,32,116,104,105,115,125,102,111,114,40,59,43,43,111,60,97,59,41,105,102,40,40,101,61,40,116,61,105,91,111,93,41,46,116,121,112,101,41,38,38,40,101,61,88,40,114,91,101,93,44,116,46,110,97,109,101,41,41,41,114,101,116,117,114,110,32,101,125,44,99,111,112,121,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,123,125,44,110,61,116,104,105,115,46,95,59,102,111,114,40,118,97,114,32,101,32,105,110,32,110,41,116,91,101,93,61,110,91,101,93,46,115,108,105,99,101,40,41,59,114,101,116,117,114,110,32,110,101,119,32,72,40,116,41,125,44,99,97,108,108,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,105,102,40,40,101,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,45,50,41,62,48,41,102,111,114,40,118,97,114,32,101,44,114,44,105,61,110,101,119,32,65,114,114,97,121,40,101,41,44,111,61,48,59,111,60,101,59,43,43,111,41,105,91,111,93,61,97,114,103,117,109,101,110,116,115,91,111,43,50,93,59,105,102,40,33,116,104,105,115,46,95,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,116,41,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,117,110,107,110,111,119,110,32,116,121,112,101,58,32,34,43,116,41,59,102,111,114,40,111,61,48,44,101,61,40,114,61,116,104,105,115,46,95,91,116,93,41,46,108,101,110,103,116,104,59,111,60,101,59,43,43,111,41,114,91,111,93,46,118,97,108,117,101,46,97,112,112,108,121,40,110,44,105,41,125,44,97,112,112,108,121,58,102,117,110,99,116,105,111,110,40,116,44,110,44,101,41,123,105,102,40,33,116,104,105,115,46,95,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,116,41,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,117,110,107,110,111,119,110,32,116,121,112,101,58,32,34,43,116,41,59,102,111,114,40,118,97,114,32,114,61,116,104,105,115,46,95,91,116,93,44,105,61,48,44,111,61,114,46,108,101,110,103,116,104,59,105,60,111,59,43,43,105,41,114,91,105,93,46,118,97,108,117,101,46,97,112,112,108,121,40,110,44,101,41,125,125,59,118,97,114,32,71,61,34,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,49,57,57,57,47,120,104,116,109,108,34,44,36,61,123,115,118,103,58,34,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,115,118,103,34,44,120,104,116,109,108,58,71,44,120,108,105,110,107,58,34,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,49,57,57,57,47,120,108,105,110,107,34,44,120,109,108,58,34,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,88,77,76,47,49,57,57,56,47,110,97,109,101,115,112,97,99,101,34,44,120,109,108,110,115,58,34,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,120,109,108,110,115,47,34,125,59,102,117,110,99,116,105,111,110,32,87,40,116,41,123,118,97,114,32,110,61,116,43,61,34,34,44,101,61,110,46,105,110,100,101,120,79,102,40,34,58,34,41,59,114,101,116,117,114,110,32,101,62,61,48,38,38,34,120,109,108,110,115,34,33,61,61,40,110,61,116,46,115,108,105,99,101,40,48,44,101,41,41,38,38,40,116,61,116,46,115,108,105,99,101,40,101,43,49,41,41,44,36,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,110,41,63,123,115,112,97,99,101,58,36,91,110,93,44,108,111,99,97,108,58,116,125,58,116,125,102,117,110,99,116,105,111,110,32,90,40,116,41,123,118,97,114,32,110,61,87,40,116,41,59,114,101,116,117,114,110,40,110,46,108,111,99,97,108,63,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,111,119,110,101,114,68,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,78,83,40,116,46,115,112,97,99,101,44,116,46,108,111,99,97,108,41,125,125,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,110,61,116,104,105,115,46,111,119,110,101,114,68,111,99,117,109,101,110,116,44,101,61,116,104,105,115,46,110,97,109,101,115,112,97,99,101,85,82,73,59,114,101,116,117,114,110,32,101,61,61,61,71,38,38,110,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,46,110,97,109,101,115,112,97,99,101,85,82,73,61,61,61,71,63,110,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,116,41,58,110,46,99,114,101,97,116,101,69,108,101,109,101,110,116,78,83,40,101,44,116,41,125,125,41,40,110,41,125,102,117,110,99,116,105,111,110,32,81,40,41,123,125,102,117,110,99,116,105,111,110,32,75,40,116,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,116,63,81,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,116,41,125,125,102,117,110,99,116,105,111,110,32,74,40,41,123,114,101,116,117,114,110,91,93,125,102,117,110,99,116,105,111,110,32,116,116,40,116,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,116,63,74,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,116,41,125,125,102,117,110,99,116,105,111,110,32,110,116,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,109,97,116,99,104,101,115,40,116,41,125,125,102,117,110,99,116,105,111,110,32,101,116,40,116,41,123,114,101,116,117,114,110,32,110,101,119,32,65,114,114,97,121,40,116,46,108,101,110,103,116,104,41,125,102,117,110,99,116,105,111,110,32,114,116,40,116,44,110,41,123,116,104,105,115,46,111,119,110,101,114,68,111,99,117,109,101,110,116,61,116,46,111,119,110,101,114,68,111,99,117,109,101,110,116,44,116,104,105,115,46,110,97,109,101,115,112,97,99,101,85,82,73,61,116,46,110,97,109,101,115,112,97,99,101,85,82,73,44,116,104,105,115,46,95,110,101,120,116,61,110,117,108,108,44,116,104,105,115,46,95,112,97,114,101,110,116,61,116,44,116,104,105,115,46,95,95,100,97,116,97,95,95,61,110,125,114,116,46,112,114,111,116,111,116,121,112,101,61,123,99,111,110,115,116,114,117,99,116,111,114,58,114,116,44,97,112,112,101,110,100,67,104,105,108,100,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,112,97,114,101,110,116,46,105,110,115,101,114,116,66,101,102,111,114,101,40,116,44,116,104,105,115,46,95,110,101,120,116,41,125,44,105,110,115,101,114,116,66,101,102,111,114,101,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,112,97,114,101,110,116,46,105,110,115,101,114,116,66,101,102,111,114,101,40,116,44,110,41,125,44,113,117,101,114,121,83,101,108,101,99,116,111,114,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,112,97,114,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,116,41,125,44,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,112,97,114,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,116,41,125,125,59,118,97,114,32,105,116,61,34,36,34,59,102,117,110,99,116,105,111,110,32,111,116,40,116,44,110,44,101,44,114,44,105,44,111,41,123,102,111,114,40,118,97,114,32,97,44,117,61,48,44,99,61,110,46,108,101,110,103,116,104,44,102,61,111,46,108,101,110,103,116,104,59,117,60,102,59,43,43,117,41,40,97,61,110,91,117,93,41,63,40,97,46,95,95,100,97,116,97,95,95,61,111,91,117,93,44,114,91,117,93,61,97,41,58,101,91,117,93,61,110,101,119,32,114,116,40,116,44,111,91,117,93,41,59,102,111,114,40,59,117,60,99,59,43,43,117,41,40,97,61,110,91,117,93,41,38,38,40,105,91,117,93,61,97,41,125,102,117,110,99,116,105,111,110,32,97,116,40,116,44,110,44,101,44,114,44,105,44,111,44,97,41,123,118,97,114,32,117,44,99,44,102,44,115,61,123,125,44,108,61,110,46,108,101,110,103,116,104,44,104,61,111,46,108,101,110,103,116,104,44,100,61,110,101,119,32,65,114,114,97,121,40,108,41,59,102,111,114,40,117,61,48,59,117,60,108,59,43,43,117,41,40,99,61,110,91,117,93,41,38,38,40,100,91,117,93,61,102,61,105,116,43,97,46,99,97,108,108,40,99,44,99,46,95,95,100,97,116,97,95,95,44,117,44,110,41,44,102,32,105,110,32,115,63,105,91,117,93,61,99,58,115,91,102,93,61,99,41,59,102,111,114,40,117,61,48,59,117,60,104,59,43,43,117,41,40,99,61,115,91,102,61,105,116,43,97,46,99,97,108,108,40,116,44,111,91,117,93,44,117,44,111,41,93,41,63,40,114,91,117,93,61,99,44,99,46,95,95,100,97,116,97,95,95,61,111,91,117,93,44,115,91,102,93,61,110,117,108,108,41,58,101,91,117,93,61,110,101,119,32,114,116,40,116,44,111,91,117,93,41,59,102,111,114,40,117,61,48,59,117,60,108,59,43,43,117,41,40,99,61,110,91,117,93,41,38,38,115,91,100,91,117,93,93,61,61,61,99,38,38,40,105,91,117,93,61,99,41,125,102,117,110,99,116,105,111,110,32,117,116,40,116,44,110,41,123,114,101,116,117,114,110,32,116,60,110,63,45,49,58,116,62,110,63,49,58,116,62,61,110,63,48,58,78,97,78,125,102,117,110,99,116,105,111,110,32,99,116,40,116,41,123,114,101,116,117,114,110,32,116,46,111,119,110,101,114,68,111,99,117,109,101,110,116,38,38,116,46,111,119,110,101,114,68,111,99,117,109,101,110,116,46,100,101,102,97,117,108,116,86,105,101,119,124,124,116,46,100,111,99,117,109,101,110,116,38,38,116,124,124,116,46,100,101,102,97,117,108,116,86,105,101,119,125,102,117,110,99,116,105,111,110,32,102,116,40,116,44,110,41,123,114,101,116,117,114,110,32,116,46,115,116,121,108,101,46,103,101,116,80,114,111,112,101,114,116,121,86,97,108,117,101,40,110,41,124,124,99,116,40,116,41,46,103,101,116,67,111,109,112,117,116,101,100,83,116,121,108,101,40,116,44,110,117,108,108,41,46,103,101,116,80,114,111,112,101,114,116,121,86,97,108,117,101,40,110,41,125,102,117,110,99,116,105,111,110,32,115,116,40,116,41,123,114,101,116,117,114,110,32,116,46,116,114,105,109,40,41,46,115,112,108,105,116,40,47,94,124,92,115,43,47,41,125,102,117,110,99,116,105,111,110,32,108,116,40,116,41,123,114,101,116,117,114,110,32,116,46,99,108,97,115,115,76,105,115,116,124,124,110,101,119,32,104,116,40,116,41,125,102,117,110,99,116,105,111,110,32,104,116,40,116,41,123,116,104,105,115,46,95,110,111,100,101,61,116,44,116,104,105,115,46,95,110,97,109,101,115,61,115,116,40,116,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,41,124,124,34,34,41,125,102,117,110,99,116,105,111,110,32,100,116,40,116,44,110,41,123,102,111,114,40,118,97,114,32,101,61,108,116,40,116,41,44,114,61,45,49,44,105,61,110,46,108,101,110,103,116,104,59,43,43,114,60,105,59,41,101,46,97,100,100,40,110,91,114,93,41,125,102,117,110,99,116,105,111,110,32,112,116,40,116,44,110,41,123,102,111,114,40,118,97,114,32,101,61,108,116,40,116,41,44,114,61,45,49,44,105,61,110,46,108,101,110,103,116,104,59,43,43,114,60,105,59,41,101,46,114,101,109,111,118,101,40,110,91,114,93,41,125,102,117,110,99,116,105,111,110,32,118,116,40,41,123,116,104,105,115,46,116,101,120,116,67,111,110,116,101,110,116,61,34,34,125,102,117,110,99,116,105,111,110,32,103,116,40,41,123,116,104,105,115,46,105,110,110,101,114,72,84,77,76,61,34,34,125,102,117,110,99,116,105,111,110,32,121,116,40,41,123,116,104,105,115,46,110,101,120,116,83,105,98,108,105,110,103,38,38,116,104,105,115,46,112,97,114,101,110,116,78,111,100,101,46,97,112,112,101,110,100,67,104,105,108,100,40,116,104,105,115,41,125,102,117,110,99,116,105,111,110,32,95,116,40,41,123,116,104,105,115,46,112,114,101,118,105,111,117,115,83,105,98,108,105,110,103,38,38,116,104,105,115,46,112,97,114,101,110,116,78,111,100,101,46,105,110,115,101,114,116,66,101,102,111,114,101,40,116,104,105,115,44,116,104,105,115,46,112,97,114,101,110,116,78,111,100,101,46,102,105,114,115,116,67,104,105,108,100,41,125,102,117,110,99,116,105,111,110,32,98,116,40,41,123,114,101,116,117,114,110,32,110,117,108,108,125,102,117,110,99,116,105,111,110,32,109,116,40,41,123,118,97,114,32,116,61,116,104,105,115,46,112,97,114,101,110,116,78,111,100,101,59,116,38,38,116,46,114,101,109,111,118,101,67,104,105,108,100,40,116,104,105,115,41,125,102,117,110,99,116,105,111,110,32,120,116,40,41,123,118,97,114,32,116,61,116,104,105,115,46,99,108,111,110,101,78,111,100,101,40,33,49,41,44,110,61,116,104,105,115,46,112,97,114,101,110,116,78,111,100,101,59,114,101,116,117,114,110,32,110,63,110,46,105,110,115,101,114,116,66,101,102,111,114,101,40,116,44,116,104,105,115,46,110,101,120,116,83,105,98,108,105,110,103,41,58,116,125,102,117,110,99,116,105,111,110,32,119,116,40,41,123,118,97,114,32,116,61,116,104,105,115,46,99,108,111,110,101,78,111,100,101,40,33,48,41,44,110,61,116,104,105,115,46,112,97,114,101,110,116,78,111,100,101,59,114,101,116,117,114,110,32,110,63,110,46,105,110,115,101,114,116,66,101,102,111,114,101,40,116,44,116,104,105,115,46,110,101,120,116,83,105,98,108,105,110,103,41,58,116,125,104,116,46,112,114,111,116,111,116,121,112,101,61,123,97,100,100,58,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,95,110,97,109,101,115,46,105,110,100,101,120,79,102,40,116,41,60,48,38,38,40,116,104,105,115,46,95,110,97,109,101,115,46,112,117,115,104,40,116,41,44,116,104,105,115,46,95,110,111,100,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,116,104,105,115,46,95,110,97,109,101,115,46,106,111,105,110,40,34,32,34,41,41,41,125,44,114,101,109,111,118,101,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,116,104,105,115,46,95,110,97,109,101,115,46,105,110,100,101,120,79,102,40,116,41,59,110,62,61,48,38,38,40,116,104,105,115,46,95,110,97,109,101,115,46,115,112,108,105,99,101,40,110,44,49,41,44,116,104,105,115,46,95,110,111,100,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,116,104,105,115,46,95,110,97,109,101,115,46,106,111,105,110,40,34,32,34,41,41,41,125,44,99,111,110,116,97,105,110,115,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,110,97,109,101,115,46,105,110,100,101,120,79,102,40,116,41,62,61,48,125,125,59,118,97,114,32,77,116,61,123,125,59,40,116,46,101,118,101,110,116,61,110,117,108,108,44,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,100,111,99,117,109,101,110,116,41,38,38,40,34,111,110,109,111,117,115,101,101,110,116,101,114,34,105,110,32,100,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,124,124,40,77,116,61,123,109,111,117,115,101,101,110,116,101,114,58,34,109,111,117,115,101,111,118,101,114,34,44,109,111,117,115,101,108,101,97,118,101,58,34,109,111,117,115,101,111,117,116,34,125,41,41,59,102,117,110,99,116,105,111,110,32,78,116,40,116,44,110,44,101,41,123,114,101,116,117,114,110,32,116,61,84,116,40,116,44,110,44,101,41,44,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,101,61,110,46,114,101,108,97,116,101,100,84,97,114,103,101,116,59,101,38,38,40,101,61,61,61,116,104,105,115,124,124,56,38,101,46,99,111,109,112,97,114,101,68,111,99,117,109,101,110,116,80,111,115,105,116,105,111,110,40,116,104,105,115,41,41,124,124,116,46,99,97,108,108,40,116,104,105,115,44,110,41,125,125,102,117,110,99,116,105,111,110,32,84,116,40,110,44,101,44,114,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,105,41,123,118,97,114,32,111,61,116,46,101,118,101,110,116,59,116,46,101,118,101,110,116,61,105,59,116,114,121,123,110,46,99,97,108,108,40,116,104,105,115,44,116,104,105,115,46,95,95,100,97,116,97,95,95,44,101,44,114,41,125,102,105,110,97,108,108,121,123,116,46,101,118,101,110,116,61,111,125,125,125,102,117,110,99,116,105,111,110,32,65,116,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,110,61,116,104,105,115,46,95,95,111,110,59,105,102,40,110,41,123,102,111,114,40,118,97,114,32,101,44,114,61,48,44,105,61,45,49,44,111,61,110,46,108,101,110,103,116,104,59,114,60,111,59,43,43,114,41,101,61,110,91,114,93,44,116,46,116,121,112,101,38,38,101,46,116,121,112,101,33,61,61,116,46,116,121,112,101,124,124,101,46,110,97,109,101,33,61,61,116,46,110,97,109,101,63,110,91,43,43,105,93,61,101,58,116,104,105,115,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,40,101,46,116,121,112,101,44,101,46,108,105,115,116,101,110,101,114,44,101,46,99,97,112,116,117,114,101,41,59,43,43,105,63,110,46,108,101,110,103,116,104,61,105,58,100,101,108,101,116,101,32,116,104,105,115,46,95,95,111,110,125,125,125,102,117,110,99,116,105,111,110,32,83,116,40,116,44,110,44,101,41,123,118,97,114,32,114,61,77,116,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,116,46,116,121,112,101,41,63,78,116,58,84,116,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,105,44,111,44,97,41,123,118,97,114,32,117,44,99,61,116,104,105,115,46,95,95,111,110,44,102,61,114,40,110,44,111,44,97,41,59,105,102,40,99,41,102,111,114,40,118,97,114,32,115,61,48,44,108,61,99,46,108,101,110,103,116,104,59,115,60,108,59,43,43,115,41,105,102,40,40,117,61,99,91,115,93,41,46,116,121,112,101,61,61,61,116,46,116,121,112,101,38,38,117,46,110,97,109,101,61,61,61,116,46,110,97,109,101,41,114,101,116,117,114,110,32,116,104,105,115,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,40,117,46,116,121,112,101,44,117,46,108,105,115,116,101,110,101,114,44,117,46,99,97,112,116,117,114,101,41,44,116,104,105,115,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,117,46,116,121,112,101,44,117,46,108,105,115,116,101,110,101,114,61,102,44,117,46,99,97,112,116,117,114,101,61,101,41,44,118,111,105,100,40,117,46,118,97,108,117,101,61,110,41,59,116,104,105,115,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,116,46,116,121,112,101,44,102,44,101,41,44,117,61,123,116,121,112,101,58,116,46,116,121,112,101,44,110,97,109,101,58,116,46,110,97,109,101,44,118,97,108,117,101,58,110,44,108,105,115,116,101,110,101,114,58,102,44,99,97,112,116,117,114,101,58,101,125,44,99,63,99,46,112,117,115,104,40,117,41,58,116,104,105,115,46,95,95,111,110,61,91,117,93,125,125,102,117,110,99,116,105,111,110,32,107,116,40,110,44,101,44,114,44,105,41,123,118,97,114,32,111,61,116,46,101,118,101,110,116,59,110,46,115,111,117,114,99,101,69,118,101,110,116,61,116,46,101,118,101,110,116,44,116,46,101,118,101,110,116,61,110,59,116,114,121,123,114,101,116,117,114,110,32,101,46,97,112,112,108,121,40,114,44,105,41,125,102,105,110,97,108,108,121,123,116,46,101,118,101,110,116,61,111,125,125,102,117,110,99,116,105,111,110,32,69,116,40,116,44,110,44,101,41,123,118,97,114,32,114,61,99,116,40,116,41,44,105,61,114,46,67,117,115,116,111,109,69,118,101,110,116,59,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,105,63,105,61,110,101,119,32,105,40,110,44,101,41,58,40,105,61,114,46,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,118,101,110,116,40,34,69,118,101,110,116,34,41,44,101,63,40,105,46,105,110,105,116,69,118,101,110,116,40,110,44,101,46,98,117,98,98,108,101,115,44,101,46,99,97,110,99,101,108,97,98,108,101,41,44,105,46,100,101,116,97,105,108,61,101,46,100,101,116,97,105,108,41,58,105,46,105,110,105,116,69,118,101,110,116,40,110,44,33,49,44,33,49,41,41,44,116,46,100,105,115,112,97,116,99,104,69,118,101,110,116,40,105,41,125,118,97,114,32,67,116,61,91,110,117,108,108,93,59,102,117,110,99,116,105,111,110,32,80,116,40,116,44,110,41,123,116,104,105,115,46,95,103,114,111,117,112,115,61,116,44,116,104,105,115,46,95,112,97,114,101,110,116,115,61,110,125,102,117,110,99,116,105,111,110,32,122,116,40,41,123,114,101,116,117,114,110,32,110,101,119,32,80,116,40,91,91,100,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,93,93,44,67,116,41,125,102,117,110,99,116,105,111,110,32,82,116,40,116,41,123,114,101,116,117,114,110,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,116,63,110,101,119,32,80,116,40,91,91,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,116,41,93,93,44,91,100,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,93,41,58,110,101,119,32,80,116,40,91,91,116,93,93,44,67,116,41,125,80,116,46,112,114,111,116,111,116,121,112,101,61,122,116,46,112,114,111,116,111,116,121,112,101,61,123,99,111,110,115,116,114,117,99,116,111,114,58,80,116,44,115,101,108,101,99,116,58,102,117,110,99,116,105,111,110,40,116,41,123,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,116,38,38,40,116,61,75,40,116,41,41,59,102,111,114,40,118,97,114,32,110,61,116,104,105,115,46,95,103,114,111,117,112,115,44,101,61,110,46,108,101,110,103,116,104,44,114,61,110,101,119,32,65,114,114,97,121,40,101,41,44,105,61,48,59,105,60,101,59,43,43,105,41,102,111,114,40,118,97,114,32,111,44,97,44,117,61,110,91,105,93,44,99,61,117,46,108,101,110,103,116,104,44,102,61,114,91,105,93,61,110,101,119,32,65,114,114,97,121,40,99,41,44,115,61,48,59,115,60,99,59,43,43,115,41,40,111,61,117,91,115,93,41,38,38,40,97,61,116,46,99,97,108,108,40,111,44,111,46,95,95,100,97,116,97,95,95,44,115,44,117,41,41,38,38,40,34,95,95,100,97,116,97,95,95,34,105,110,32,111,38,38,40,97,46,95,95,100,97,116,97,95,95,61,111,46,95,95,100,97,116,97,95,95,41,44,102,91,115,93,61,97,41,59,114,101,116,117,114,110,32,110,101,119,32,80,116,40,114,44,116,104,105,115,46,95,112,97,114,101,110,116,115,41,125,44,115,101,108,101,99,116,65,108,108,58,102,117,110,99,116,105,111,110,40,116,41,123,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,116,38,38,40,116,61,116,116,40,116,41,41,59,102,111,114,40,118,97,114,32,110,61,116,104,105,115,46,95,103,114,111,117,112,115,44,101,61,110,46,108,101,110,103,116,104,44,114,61,91,93,44,105,61,91,93,44,111,61,48,59,111,60,101,59,43,43,111,41,102,111,114,40,118,97,114,32,97,44,117,61,110,91,111,93,44,99,61,117,46,108,101,110,103,116,104,44,102,61,48,59,102,60,99,59,43,43,102,41,40,97,61,117,91,102,93,41,38,38,40,114,46,112,117,115,104,40,116,46,99,97,108,108,40,97,44,97,46,95,95,100,97,116,97,95,95,44,102,44,117,41,41,44,105,46,112,117,115,104,40,97,41,41,59,114,101,116,117,114,110,32,110,101,119,32,80,116,40,114,44,105,41,125,44,102,105,108,116,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,116,38,38,40,116,61,110,116,40,116,41,41,59,102,111,114,40,118,97,114,32,110,61,116,104,105,115,46,95,103,114,111,117,112,115,44,101,61,110,46,108,101,110,103,116,104,44,114,61,110,101,119,32,65,114,114,97,121,40,101,41,44,105,61,48,59,105,60,101,59,43,43,105,41,102,111,114,40,118,97,114,32,111,44,97,61,110,91,105,93,44,117,61,97,46,108,101,110,103,116,104,44,99,61,114,91,105,93,61,91,93,44,102,61,48,59,102,60,117,59,43,43,102,41,40,111,61,97,91,102,93,41,38,38,116,46,99,97,108,108,40,111,44,111,46,95,95,100,97,116,97,95,95,44,102,44,97,41,38,38,99,46,112,117,115,104,40,111,41,59,114,101,116,117,114,110,32,110,101,119,32,80,116,40,114,44,116,104,105,115,46,95,112,97,114,101,110,116,115,41,125,44,100,97,116,97,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,105,102,40,33,116,41,114,101,116,117,114,110,32,100,61,110,101,119,32,65,114,114,97,121,40,116,104,105,115,46,115,105,122,101,40,41,41,44,102,61,45,49,44,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,116,41,123,100,91,43,43,102,93,61,116,125,41,44,100,59,118,97,114,32,101,61,110,63,97,116,58,111,116,44,114,61,116,104,105,115,46,95,112,97,114,101,110,116,115,44,105,61,116,104,105,115,46,95,103,114,111,117,112,115,59,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,116,38,38,40,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,125,125,40,116,41,41,59,102,111,114,40,118,97,114,32,111,61,105,46,108,101,110,103,116,104,44,97,61,110,101,119,32,65,114,114,97,121,40,111,41,44,117,61,110,101,119,32,65,114,114,97,121,40,111,41,44,99,61,110,101,119,32,65,114,114,97,121,40,111,41,44,102,61,48,59,102,60,111,59,43,43,102,41,123,118,97,114,32,115,61,114,91,102,93,44,108,61,105,91,102,93,44,104,61,108,46,108,101,110,103,116,104,44,100,61,116,46,99,97,108,108,40,115,44,115,38,38,115,46,95,95,100,97,116,97,95,95,44,102,44,114,41,44,112,61,100,46,108,101,110,103,116,104,44,118,61,117,91,102,93,61,110,101,119,32,65,114,114,97,121,40,112,41,44,103,61,97,91,102,93,61,110,101,119,32,65,114,114,97,121,40,112,41,59,101,40,115,44,108,44,118,44,103,44,99,91,102,93,61,110,101,119,32,65,114,114,97,121,40,104,41,44,100,44,110,41,59,102,111,114,40,118,97,114,32,121,44,95,44,98,61,48,44,109,61,48,59,98,60,112,59,43,43,98,41,105,102,40,121,61,118,91,98,93,41,123,102,111,114,40,98,62,61,109,38,38,40,109,61,98,43,49,41,59,33,40,95,61,103,91,109,93,41,38,38,43,43,109,60,112,59,41,59,121,46,95,110,101,120,116,61,95,124,124,110,117,108,108,125,125,114,101,116,117,114,110,40,97,61,110,101,119,32,80,116,40,97,44,114,41,41,46,95,101,110,116,101,114,61,117,44,97,46,95,101,120,105,116,61,99,44,97,125,44,101,110,116,101,114,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,110,101,119,32,80,116,40,116,104,105,115,46,95,101,110,116,101,114,124,124,116,104,105,115,46,95,103,114,111,117,112,115,46,109,97,112,40,101,116,41,44,116,104,105,115,46,95,112,97,114,101,110,116,115,41,125,44,101,120,105,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,110,101,119,32,80,116,40,116,104,105,115,46,95,101,120,105,116,124,124,116,104,105,115,46,95,103,114,111,117,112,115,46,109,97,112,40,101,116,41,44,116,104,105,115,46,95,112,97,114,101,110,116,115,41,125,44,106,111,105,110,58,102,117,110,99,116,105,111,110,40,116,44,110,44,101,41,123,118,97,114,32,114,61,116,104,105,115,46,101,110,116,101,114,40,41,44,105,61,116,104,105,115,44,111,61,116,104,105,115,46,101,120,105,116,40,41,59,114,101,116,117,114,110,32,114,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,40,114,41,58,114,46,97,112,112,101,110,100,40,116,43,34,34,41,44,110,117,108,108,33,61,110,38,38,40,105,61,110,40,105,41,41,44,110,117,108,108,61,61,101,63,111,46,114,101,109,111,118,101,40,41,58,101,40,111,41,44,114,38,38,105,63,114,46,109,101,114,103,101,40,105,41,46,111,114,100,101,114,40,41,58,105,125,44,109,101,114,103,101,58,102,117,110,99,116,105,111,110,40,116,41,123,102,111,114,40,118,97,114,32,110,61,116,104,105,115,46,95,103,114,111,117,112,115,44,101,61,116,46,95,103,114,111,117,112,115,44,114,61,110,46,108,101,110,103,116,104,44,105,61,101,46,108,101,110,103,116,104,44,111,61,77,97,116,104,46,109,105,110,40,114,44,105,41,44,97,61,110,101,119,32,65,114,114,97,121,40,114,41,44,117,61,48,59,117,60,111,59,43,43,117,41,102,111,114,40,118,97,114,32,99,44,102,61,110,91,117,93,44,115,61,101,91,117,93,44,108,61,102,46,108,101,110,103,116,104,44,104,61,97,91,117,93,61,110,101,119,32,65,114,114,97,121,40,108,41,44,100,61,48,59,100,60,108,59,43,43,100,41,40,99,61,102,91,100,93,124,124,115,91,100,93,41,38,38,40,104,91,100,93,61,99,41,59,102,111,114,40,59,117,60,114,59,43,43,117,41,97,91,117,93,61,110,91,117,93,59,114,101,116,117,114,110,32,110,101,119,32,80,116,40,97,44,116,104,105,115,46,95,112,97,114,101,110,116,115,41,125,44,111,114,100,101,114,58,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,118,97,114,32,116,61,116,104,105,115,46,95,103,114,111,117,112,115,44,110,61,45,49,44,101,61,116,46,108,101,110,103,116,104,59,43,43,110,60,101,59,41,102,111,114,40,118,97,114,32,114,44,105,61,116,91,110,93,44,111,61,105,46,108,101,110,103,116,104,45,49,44,97,61,105,91,111,93,59,45,45,111,62,61,48,59,41,40,114,61,105,91,111,93,41,38,38,40,97,38,38,52,94,114,46,99,111,109,112,97,114,101,68,111,99,117,109,101,110,116,80,111,115,105,116,105,111,110,40,97,41,38,38,97,46,112,97,114,101,110,116,78,111,100,101,46,105,110,115,101,114,116,66,101,102,111,114,101,40,114,44,97,41,44,97,61,114,41,59,114,101,116,117,114,110,32,116,104,105,115,125,44,115,111,114,116,58,102,117,110,99,116,105,111,110,40,116,41,123,102,117,110,99,116,105,111,110,32,110,40,110,44,101,41,123,114,101,116,117,114,110,32,110,38,38,101,63,116,40,110,46,95,95,100,97,116,97,95,95,44,101,46,95,95,100,97,116,97,95,95,41,58,33,110,45,33,101,125,116,124,124,40,116,61,117,116,41,59,102,111,114,40,118,97,114,32,101,61,116,104,105,115,46,95,103,114,111,117,112,115,44,114,61,101,46,108,101,110,103,116,104,44,105,61,110,101,119,32,65,114,114,97,121,40,114,41,44,111,61,48,59,111,60,114,59,43,43,111,41,123,102,111,114,40,118,97,114,32,97,44,117,61,101,91,111,93,44,99,61,117,46,108,101,110,103,116,104,44,102,61,105,91,111,93,61,110,101,119,32,65,114,114,97,121,40,99,41,44,115,61,48,59,115,60,99,59,43,43,115,41,40,97,61,117,91,115,93,41,38,38,40,102,91,115,93,61,97,41,59,102,46,115,111,114,116,40,110,41,125,114,101,116,117,114,110,32,110,101,119,32,80,116,40,105,44,116,104,105,115,46,95,112,97,114,101,110,116,115,41,46,111,114,100,101,114,40,41,125,44,99,97,108,108,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,97,114,103,117,109,101,110,116,115,91,48,93,59,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,91,48,93,61,116,104,105,115,44,116,46,97,112,112,108,121,40,110,117,108,108,44,97,114,103,117,109,101,110,116,115,41,44,116,104,105,115,125,44,110,111,100,101,115,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,110,101,119,32,65,114,114,97,121,40,116,104,105,115,46,115,105,122,101,40,41,41,44,110,61,45,49,59,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,116,91,43,43,110,93,61,116,104,105,115,125,41,44,116,125,44,110,111,100,101,58,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,118,97,114,32,116,61,116,104,105,115,46,95,103,114,111,117,112,115,44,110,61,48,44,101,61,116,46,108,101,110,103,116,104,59,110,60,101,59,43,43,110,41,102,111,114,40,118,97,114,32,114,61,116,91,110,93,44,105,61,48,44,111,61,114,46,108,101,110,103,116,104,59,105,60,111,59,43,43,105,41,123,118,97,114,32,97,61,114,91,105,93,59,105,102,40,97,41,114,101,116,117,114,110,32,97,125,114,101,116,117,114,110,32,110,117,108,108,125,44,115,105,122,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,48,59,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,43,43,116,125,41,44,116,125,44,101,109,112,116,121,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,33,116,104,105,115,46,110,111,100,101,40,41,125,44,101,97,99,104,58,102,117,110,99,116,105,111,110,40,116,41,123,102,111,114,40,118,97,114,32,110,61,116,104,105,115,46,95,103,114,111,117,112,115,44,101,61,48,44,114,61,110,46,108,101,110,103,116,104,59,101,60,114,59,43,43,101,41,102,111,114,40,118,97,114,32,105,44,111,61,110,91,101,93,44,97,61,48,44,117,61,111,46,108,101,110,103,116,104,59,97,60,117,59,43,43,97,41,40,105,61,111,91,97,93,41,38,38,116,46,99,97,108,108,40,105,44,105,46,95,95,100,97,116,97,95,95,44,97,44,111,41,59,114,101,116,117,114,110,32,116,104,105,115,125,44,97,116,116,114,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,61,87,40,116,41,59,105,102,40,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,60,50,41,123,118,97,114,32,114,61,116,104,105,115,46,110,111,100,101,40,41,59,114,101,116,117,114,110,32,101,46,108,111,99,97,108,63,114,46,103,101,116,65,116,116,114,105,98,117,116,101,78,83,40,101,46,115,112,97,99,101,44,101,46,108,111,99,97,108,41,58,114,46,103,101,116,65,116,116,114,105,98,117,116,101,40,101,41,125,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,40,110,117,108,108,61,61,110,63,101,46,108,111,99,97,108,63,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,78,83,40,116,46,115,112,97,99,101,44,116,46,108,111,99,97,108,41,125,125,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,40,116,41,125,125,58,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,110,63,101,46,108,111,99,97,108,63,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,110,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,59,110,117,108,108,61,61,101,63,116,104,105,115,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,78,83,40,116,46,115,112,97,99,101,44,116,46,108,111,99,97,108,41,58,116,104,105,115,46,115,101,116,65,116,116,114,105,98,117,116,101,78,83,40,116,46,115,112,97,99,101,44,116,46,108,111,99,97,108,44,101,41,125,125,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,110,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,59,110,117,108,108,61,61,101,63,116,104,105,115,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,40,116,41,58,116,104,105,115,46,115,101,116,65,116,116,114,105,98,117,116,101,40,116,44,101,41,125,125,58,101,46,108,111,99,97,108,63,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,115,101,116,65,116,116,114,105,98,117,116,101,78,83,40,116,46,115,112,97,99,101,44,116,46,108,111,99,97,108,44,110,41,125,125,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,115,101,116,65,116,116,114,105,98,117,116,101,40,116,44,110,41,125,125,41,40,101,44,110,41,41,125,44,115,116,121,108,101,58,102,117,110,99,116,105,111,110,40,116,44,110,44,101,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,62,49,63,116,104,105,115,46,101,97,99,104,40,40,110,117,108,108,61,61,110,63,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,115,116,121,108,101,46,114,101,109,111,118,101,80,114,111,112,101,114,116,121,40,116,41,125,125,58,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,110,63,102,117,110,99,116,105,111,110,40,116,44,110,44,101,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,114,61,110,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,59,110,117,108,108,61,61,114,63,116,104,105,115,46,115,116,121,108,101,46,114,101,109,111,118,101,80,114,111,112,101,114,116,121,40,116,41,58,116,104,105,115,46,115,116,121,108,101,46,115,101,116,80,114,111,112,101,114,116,121,40,116,44,114,44,101,41,125,125,58,102,117,110,99,116,105,111,110,40,116,44,110,44,101,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,115,116,121,108,101,46,115,101,116,80,114,111,112,101,114,116,121,40,116,44,110,44,101,41,125,125,41,40,116,44,110,44,110,117,108,108,61,61,101,63,34,34,58,101,41,41,58,102,116,40,116,104,105,115,46,110,111,100,101,40,41,44,116,41,125,44,112,114,111,112,101,114,116,121,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,62,49,63,116,104,105,115,46,101,97,99,104,40,40,110,117,108,108,61,61,110,63,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,100,101,108,101,116,101,32,116,104,105,115,91,116,93,125,125,58,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,110,63,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,110,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,59,110,117,108,108,61,61,101,63,100,101,108,101,116,101,32,116,104,105,115,91,116,93,58,116,104,105,115,91,116,93,61,101,125,125,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,91,116,93,61,110,125,125,41,40,116,44,110,41,41,58,116,104,105,115,46,110,111,100,101,40,41,91,116,93,125,44,99,108,97,115,115,101,100,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,61,115,116,40,116,43,34,34,41,59,105,102,40,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,60,50,41,123,102,111,114,40,118,97,114,32,114,61,108,116,40,116,104,105,115,46,110,111,100,101,40,41,41,44,105,61,45,49,44,111,61,101,46,108,101,110,103,116,104,59,43,43,105,60,111,59,41,105,102,40,33,114,46,99,111,110,116,97,105,110,115,40,101,91,105,93,41,41,114,101,116,117,114,110,33,49,59,114,101,116,117,114,110,33,48,125,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,40,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,110,63,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,40,110,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,63,100,116,58,112,116,41,40,116,104,105,115,44,116,41,125,125,58,110,63,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,100,116,40,116,104,105,115,44,116,41,125,125,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,112,116,40,116,104,105,115,44,116,41,125,125,41,40,101,44,110,41,41,125,44,116,101,120,116,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,116,104,105,115,46,101,97,99,104,40,110,117,108,108,61,61,116,63,118,116,58,40,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,110,61,116,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,59,116,104,105,115,46,116,101,120,116,67,111,110,116,101,110,116,61,110,117,108,108,61,61,110,63,34,34,58,110,125,125,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,116,101,120,116,67,111,110,116,101,110,116,61,116,125,125,41,40,116,41,41,58,116,104,105,115,46,110,111,100,101,40,41,46,116,101,120,116,67,111,110,116,101,110,116,125,44,104,116,109,108,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,116,104,105,115,46,101,97,99,104,40,110,117,108,108,61,61,116,63,103,116,58,40,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,110,61,116,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,59,116,104,105,115,46,105,110,110,101,114,72,84,77,76,61,110,117,108,108,61,61,110,63,34,34,58,110,125,125,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,105,110,110,101,114,72,84,77,76,61,116,125,125,41,40,116,41,41,58,116,104,105,115,46,110,111,100,101,40,41,46,105,110,110,101,114,72,84,77,76,125,44,114,97,105,115,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,121,116,41,125,44,108,111,119,101,114,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,95,116,41,125,44,97,112,112,101,110,100,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,90,40,116,41,59,114,101,116,117,114,110,32,116,104,105,115,46,115,101,108,101,99,116,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,97,112,112,101,110,100,67,104,105,108,100,40,110,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,41,125,41,125,44,105,110,115,101,114,116,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,90,40,116,41,44,114,61,110,117,108,108,61,61,110,63,98,116,58,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,110,63,110,58,75,40,110,41,59,114,101,116,117,114,110,32,116,104,105,115,46,115,101,108,101,99,116,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,110,115,101,114,116,66,101,102,111,114,101,40,101,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,44,114,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,124,124,110,117,108,108,41,125,41,125,44,114,101,109,111,118,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,109,116,41,125,44,99,108,111,110,101,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,104,105,115,46,115,101,108,101,99,116,40,116,63,119,116,58,120,116,41,125,44,100,97,116,117,109,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,116,104,105,115,46,112,114,111,112,101,114,116,121,40,34,95,95,100,97,116,97,95,95,34,44,116,41,58,116,104,105,115,46,110,111,100,101,40,41,46,95,95,100,97,116,97,95,95,125,44,111,110,58,102,117,110,99,116,105,111,110,40,116,44,110,44,101,41,123,118,97,114,32,114,44,105,44,111,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,116,114,105,109,40,41,46,115,112,108,105,116,40,47,94,124,92,115,43,47,41,46,109,97,112,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,34,34,44,101,61,116,46,105,110,100,101,120,79,102,40,34,46,34,41,59,114,101,116,117,114,110,32,101,62,61,48,38,38,40,110,61,116,46,115,108,105,99,101,40,101,43,49,41,44,116,61,116,46,115,108,105,99,101,40,48,44,101,41,41,44,123,116,121,112,101,58,116,44,110,97,109,101,58,110,125,125,41,125,40,116,43,34,34,41,44,97,61,111,46,108,101,110,103,116,104,59,105,102,40,33,40,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,60,50,41,41,123,102,111,114,40,117,61,110,63,83,116,58,65,116,44,110,117,108,108,61,61,101,38,38,40,101,61,33,49,41,44,114,61,48,59,114,60,97,59,43,43,114,41,116,104,105,115,46,101,97,99,104,40,117,40,111,91,114,93,44,110,44,101,41,41,59,114,101,116,117,114,110,32,116,104,105,115,125,118,97,114,32,117,61,116,104,105,115,46,110,111,100,101,40,41,46,95,95,111,110,59,105,102,40,117,41,102,111,114,40,118,97,114,32,99,44,102,61,48,44,115,61,117,46,108,101,110,103,116,104,59,102,60,115,59,43,43,102,41,102,111,114,40,114,61,48,44,99,61,117,91,102,93,59,114,60,97,59,43,43,114,41,105,102,40,40,105,61,111,91,114,93,41,46,116,121,112,101,61,61,61,99,46,116,121,112,101,38,38,105,46,110,97,109,101,61,61,61,99,46,110,97,109,101,41,114,101,116,117,114,110,32,99,46,118,97,108,117,101,125,44,100,105,115,112,97,116,99,104,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,40,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,110,63,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,69,116,40,116,104,105,115,44,116,44,110,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,41,125,125,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,69,116,40,116,104,105,115,44,116,44,110,41,125,125,41,40,116,44,110,41,41,125,125,59,118,97,114,32,68,116,61,48,59,102,117,110,99,116,105,111,110,32,113,116,40,41,123,114,101,116,117,114,110,32,110,101,119,32,76,116,125,102,117,110,99,116,105,111,110,32,76,116,40,41,123,116,104,105,115,46,95,61,34,64,34,43,40,43,43,68,116,41,46,116,111,83,116,114,105,110,103,40,51,54,41,125,102,117,110,99,116,105,111,110,32,85,116,40,41,123,102,111,114,40,118,97,114,32,110,44,101,61,116,46,101,118,101,110,116,59,110,61,101,46,115,111,117,114,99,101,69,118,101,110,116,59,41,101,61,110,59,114,101,116,117,114,110,32,101,125,102,117,110,99,116,105,111,110,32,79,116,40,116,44,110,41,123,118,97,114,32,101,61,116,46,111,119,110,101,114,83,86,71,69,108,101,109,101,110,116,124,124,116,59,105,102,40,101,46,99,114,101,97,116,101,83,86,71,80,111,105,110,116,41,123,118,97,114,32,114,61,101,46,99,114,101,97,116,101,83,86,71,80,111,105,110,116,40,41,59,114,101,116,117,114,110,32,114,46,120,61,110,46,99,108,105,101,110,116,88,44,114,46,121,61,110,46,99,108,105,101,110,116,89,44,91,40,114,61,114,46,109,97,116,114,105,120,84,114,97,110,115,102,111,114,109,40,116,46,103,101,116,83,99,114,101,101,110,67,84,77,40,41,46,105,110,118,101,114,115,101,40,41,41,41,46,120,44,114,46,121,93,125,118,97,114,32,105,61,116,46,103,101,116,66,111,117,110,100,105,110,103,67,108,105,101,110,116,82,101,99,116,40,41,59,114,101,116,117,114,110,91,110,46,99,108,105,101,110,116,88,45,105,46,108,101,102,116,45,116,46,99,108,105,101,110,116,76,101,102,116,44,110,46,99,108,105,101,110,116,89,45,105,46,116,111,112,45,116,46,99,108,105,101,110,116,84,111,112,93,125,102,117,110,99,116,105,111,110,32,66,116,40,116,41,123,118,97,114,32,110,61,85,116,40,41,59,114,101,116,117,114,110,32,110,46,99,104,97,110,103,101,100,84,111,117,99,104,101,115,38,38,40,110,61,110,46,99,104,97,110,103,101,100,84,111,117,99,104,101,115,91,48,93,41,44,79,116,40,116,44,110,41,125,102,117,110,99,116,105,111,110,32,70,116,40,116,44,110,44,101,41,123,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,60,51,38,38,40,101,61,110,44,110,61,85,116,40,41,46,99,104,97,110,103,101,100,84,111,117,99,104,101,115,41,59,102,111,114,40,118,97,114,32,114,44,105,61,48,44,111,61,110,63,110,46,108,101,110,103,116,104,58,48,59,105,60,111,59,43,43,105,41,105,102,40,40,114,61,110,91,105,93,41,46,105,100,101,110,116,105,102,105,101,114,61,61,61,101,41,114,101,116,117,114,110,32,79,116,40,116,44,114,41,59,114,101,116,117,114,110,32,110,117,108,108,125,102,117,110,99,116,105,111,110,32,89,116,40,41,123,116,46,101,118,101,110,116,46,115,116,111,112,73,109,109,101,100,105,97,116,101,80,114,111,112,97,103,97,116,105,111,110,40,41,125,102,117,110,99,116,105,111,110,32,73,116,40,41,123,116,46,101,118,101,110,116,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,116,46,101,118,101,110,116,46,115,116,111,112,73,109,109,101,100,105,97,116,101,80,114,111,112,97,103,97,116,105,111,110,40,41,125,102,117,110,99,116,105,111,110,32,72,116,40,116,41,123,118,97,114,32,110,61,116,46,100,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,44,101,61,82,116,40,116,41,46,111,110,40,34,100,114,97,103,115,116,97,114,116,46,100,114,97,103,34,44,73,116,44,33,48,41,59,34,111,110,115,101,108,101,99,116,115,116,97,114,116,34,105,110,32,110,63,101,46,111,110,40,34,115,101,108,101,99,116,115,116,97,114,116,46,100,114,97,103,34,44,73,116,44,33,48,41,58,40,110,46,95,95,110,111,115,101,108,101,99,116,61,110,46,115,116,121,108,101,46,77,111,122,85,115,101,114,83,101,108,101,99,116,44,110,46,115,116,121,108,101,46,77,111,122,85,115,101,114,83,101,108,101,99,116,61,34,110,111,110,101,34,41,125,102,117,110,99,116,105,111,110,32,106,116,40,116,44,110,41,123,118,97,114,32,101,61,116,46,100,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,44,114,61,82,116,40,116,41,46,111,110,40,34,100,114,97,103,115,116,97,114,116,46,100,114,97,103,34,44,110,117,108,108,41,59,110,38,38,40,114,46,111,110,40,34,99,108,105,99,107,46,100,114,97,103,34,44,73,116,44,33,48,41,44,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,40,41,123,114,46,111,110,40,34,99,108,105,99,107,46,100,114,97,103,34,44,110,117,108,108,41,125,44,48,41,41,44,34,111,110,115,101,108,101,99,116,115,116,97,114,116,34,105,110,32,101,63,114,46,111,110,40,34,115,101,108,101,99,116,115,116,97,114,116,46,100,114,97,103,34,44,110,117,108,108,41,58,40,101,46,115,116,121,108,101,46,77,111,122,85,115,101,114,83,101,108,101,99,116,61,101,46,95,95,110,111,115,101,108,101,99,116,44,100,101,108,101,116,101,32,101,46,95,95,110,111,115,101,108,101,99,116,41,125,102,117,110,99,116,105,111,110,32,88,116,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,125,125,102,117,110,99,116,105,111,110,32,86,116,40,116,44,110,44,101,44,114,44,105,44,111,44,97,44,117,44,99,44,102,41,123,116,104,105,115,46,116,97,114,103,101,116,61,116,44,116,104,105,115,46,116,121,112,101,61,110,44,116,104,105,115,46,115,117,98,106,101,99,116,61,101,44,116,104,105,115,46,105,100,101,110,116,105,102,105,101,114,61,114,44,116,104,105,115,46,97,99,116,105,118,101,61,105,44,116,104,105,115,46,120,61,111,44,116,104,105,115,46,121,61,97,44,116,104,105,115,46,100,120,61,117,44,116,104,105,115,46,100,121,61,99,44,116,104,105,115,46,95,61,102,125,102,117,110,99,116,105,111,110,32,71,116,40,41,123,114,101,116,117,114,110,33,116,46,101,118,101,110,116,46,99,116,114,108,75,101,121,38,38,33,116,46,101,118,101,110,116,46,98,117,116,116,111,110,125,102,117,110,99,116,105,111,110,32,36,116,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,112,97,114,101,110,116,78,111,100,101,125,102,117,110,99,116,105,111,110,32,87,116,40,110,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,110,63,123,120,58,116,46,101,118,101,110,116,46,120,44,121,58,116,46,101,118,101,110,116,46,121,125,58,110,125,102,117,110,99,116,105,111,110,32,90,116,40,41,123,114,101,116,117,114,110,32,110,97,118,105,103,97,116,111,114,46,109,97,120,84,111,117,99,104,80,111,105,110,116,115,124,124,34,111,110,116,111,117,99,104,115,116,97,114,116,34,105,110,32,116,104,105,115,125,102,117,110,99,116,105,111,110,32,81,116,40,116,44,110,44,101,41,123,116,46,112,114,111,116,111,116,121,112,101,61,110,46,112,114,111,116,111,116,121,112,101,61,101,44,101,46,99,111,110,115,116,114,117,99,116,111,114,61,116,125,102,117,110,99,116,105,111,110,32,75,116,40,116,44,110,41,123,118,97,114,32,101,61,79,98,106,101,99,116,46,99,114,101,97,116,101,40,116,46,112,114,111,116,111,116,121,112,101,41,59,102,111,114,40,118,97,114,32,114,32,105,110,32,110,41,101,91,114,93,61,110,91,114,93,59,114,101,116,117,114,110,32,101,125,102,117,110,99,116,105,111,110,32,74,116,40,41,123,125,76,116,46,112,114,111,116,111,116,121,112,101,61,113,116,46,112,114,111,116,111,116,121,112,101,61,123,99,111,110,115,116,114,117,99,116,111,114,58,76,116,44,103,101,116,58,102,117,110,99,116,105,111,110,40,116,41,123,102,111,114,40,118,97,114,32,110,61,116,104,105,115,46,95,59,33,40,110,32,105,110,32,116,41,59,41,105,102,40,33,40,116,61,116,46,112,97,114,101,110,116,78,111,100,101,41,41,114,101,116,117,114,110,59,114,101,116,117,114,110,32,116,91,110,93,125,44,115,101,116,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,116,91,116,104,105,115,46,95,93,61,110,125,44,114,101,109,111,118,101,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,32,105,110,32,116,38,38,100,101,108,101,116,101,32,116,91,116,104,105,115,46,95,93,125,44,116,111,83,116,114,105,110,103,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,125,125,44,86,116,46,112,114,111,116,111,116,121,112,101,46,111,110,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,95,46,111,110,46,97,112,112,108,121,40,116,104,105,115,46,95,44,97,114,103,117,109,101,110,116,115,41,59,114,101,116,117,114,110,32,116,61,61,61,116,104,105,115,46,95,63,116,104,105,115,58,116,125,59,118,97,114,32,116,110,61,34,92,92,115,42,40,91,43,45,93,63,92,92,100,43,41,92,92,115,42,34,44,110,110,61,34,92,92,115,42,40,91,43,45,93,63,92,92,100,42,92,92,46,63,92,92,100,43,40,63,58,91,101,69,93,91,43,45,93,63,92,92,100,43,41,63,41,92,92,115,42,34,44,101,110,61,34,92,92,115,42,40,91,43,45,93,63,92,92,100,42,92,92,46,63,92,92,100,43,40,63,58,91,101,69,93,91,43,45,93,63,92,92,100,43,41,63,41,37,92,92,115,42,34,44,114,110,61,47,94,35,40,91,48,45,57,97,45,102,93,123,51,44,56,125,41,36,47,44,111,110,61,110,101,119,32,82,101,103,69,120,112,40,34,94,114,103,98,92,92,40,34,43,91,116,110,44,116,110,44,116,110,93,43,34,92,92,41,36,34,41,44,97,110,61,110,101,119,32,82,101,103,69,120,112,40,34,94,114,103,98,92,92,40,34,43,91,101,110,44,101,110,44,101,110,93,43,34,92,92,41,36,34,41,44,117,110,61,110,101,119,32,82,101,103,69,120,112,40,34,94,114,103,98,97,92,92,40,34,43,91,116,110,44,116,110,44,116,110,44,110,110,93,43,34,92,92,41,36,34,41,44,99,110,61,110,101,119,32,82,101,103,69,120,112,40,34,94,114,103,98,97,92,92,40,34,43,91,101,110,44,101,110,44,101,110,44,110,110,93,43,34,92,92,41,36,34,41,44,102,110,61,110,101,119,32,82,101,103,69,120,112,40,34,94,104,115,108,92,92,40,34,43,91,110,110,44,101,110,44,101,110,93,43,34,92,92,41,36,34,41,44,115,110,61,110,101,119,32,82,101,103,69,120,112,40,34,94,104,115,108,97,92,92,40,34,43,91,110,110,44,101,110,44,101,110,44,110,110,93,43,34,92,92,41,36,34,41,44,108,110,61,123,97,108,105,99,101,98,108,117,101,58,49,53,55,57,50,51,56,51,44,97,110,116,105,113,117,101,119,104,105,116,101,58,49,54,52,52,52,51,55,53,44,97,113,117,97,58,54,53,53,51,53,44,97,113,117,97,109,97,114,105,110,101,58,56,51,56,56,53,54,52,44,97,122,117,114,101,58,49,53,55,57,52,49,55,53,44,98,101,105,103,101,58,49,54,49,49,57,50,54,48,44,98,105,115,113,117,101,58,49,54,55,55,48,50,52,52,44,98,108,97,99,107,58,48,44,98,108,97,110,99,104,101,100,97,108,109,111,110,100,58,49,54,55,55,50,48,52,53,44,98,108,117,101,58,50,53,53,44,98,108,117,101,118,105,111,108,101,116,58,57,48,53,53,50,48,50,44,98,114,111,119,110,58,49,48,56,50,52,50,51,52,44,98,117,114,108,121,119,111,111,100,58,49,52,53,57,54,50,51,49,44,99,97,100,101,116,98,108,117,101,58,54,50,54,54,53,50,56,44,99,104,97,114,116,114,101,117,115,101,58,56,51,56,56,51,53,50,44,99,104,111,99,111,108,97,116,101,58,49,51,55,56,57,52,55,48,44,99,111,114,97,108,58,49,54,55,52,52,50,55,50,44,99,111,114,110,102,108,111,119,101,114,98,108,117,101,58,54,53,57,49,57,56,49,44,99,111,114,110,115,105,108,107,58,49,54,55,55,53,51,56,56,44,99,114,105,109,115,111,110,58,49,52,52,50,51,49,48,48,44,99,121,97,110,58,54,53,53,51,53,44,100,97,114,107,98,108,117,101,58,49,51,57,44,100,97,114,107,99,121,97,110,58,51,53,55,50,51,44,100,97,114,107,103,111,108,100,101,110,114,111,100,58,49,50,48,57,50,57,51,57,44,100,97,114,107,103,114,97,121,58,49,49,49,49,57,48,49,55,44,100,97,114,107,103,114,101,101,110,58,50,53,54,48,48,44,100,97,114,107,103,114,101,121,58,49,49,49,49,57,48,49,55,44,100,97,114,107,107,104,97,107,105,58,49,50,52,51,51,50,53,57,44,100,97,114,107,109,97,103,101,110,116,97,58,57,49,48,57,54,52,51,44,100,97,114,107,111,108,105,118,101,103,114,101,101,110,58,53,53,57,55,57,57,57,44,100,97,114,107,111,114,97,110,103,101,58,49,54,55,52,55,53,50,48,44,100,97,114,107,111,114,99,104,105,100,58,49,48,48,52,48,48,49,50,44,100,97,114,107,114,101,100,58,57,49,48,57,53,48,52,44,100,97,114,107,115,97,108,109,111,110,58,49,53,51,48,56,52,49,48,44,100,97,114,107,115,101,97,103,114,101,101,110,58,57,52,49,57,57,49,57,44,100,97,114,107,115,108,97,116,101,98,108,117,101,58,52,55,51,52,51,52,55,44,100,97,114,107,115,108,97,116,101,103,114,97,121,58,51,49,48,48,52,57,53,44,100,97,114,107,115,108,97,116,101,103,114,101,121,58,51,49,48,48,52,57,53,44,100,97,114,107,116,117,114,113,117,111,105,115,101,58,53,50,57,52,53,44,100,97,114,107,118,105,111,108,101,116,58,57,54,57,57,53,51,57,44,100,101,101,112,112,105,110,107,58,49,54,55,49,54,57,52,55,44,100,101,101,112,115,107,121,98,108,117,101,58,52,57,49,53,49,44,100,105,109,103,114,97,121,58,54,57,48,56,50,54,53,44,100,105,109,103,114,101,121,58,54,57,48,56,50,54,53,44,100,111,100,103,101,114,98,108,117,101,58,50,48,48,51,49,57,57,44,102,105,114,101,98,114,105,99,107,58,49,49,54,55,52,49,52,54,44,102,108,111,114,97,108,119,104,105,116,101,58,49,54,55,55,53,57,50,48,44,102,111,114,101,115,116,103,114,101,101,110,58,50,50,54,51,56,52,50,44,102,117,99,104,115,105,97,58,49,54,55,49,49,57,51,53,44,103,97,105,110,115,98,111,114,111,58,49,52,52,55,52,52,54,48,44,103,104,111,115,116,119,104,105,116,101,58,49,54,51,49,54,54,55,49,44,103,111,108,100,58,49,54,55,54,54,55,50,48,44,103,111,108,100,101,110,114,111,100,58,49,52,51,50,57,49,50,48,44,103,114,97,121,58,56,52,50,49,53,48,52,44,103,114,101,101,110,58,51,50,55,54,56,44,103,114,101,101,110,121,101,108,108,111,119,58,49,49,52,48,51,48,53,53,44,103,114,101,121,58,56,52,50,49,53,48,52,44,104,111,110,101,121,100,101,119,58,49,53,55,57,52,49,54,48,44,104,111,116,112,105,110,107,58,49,54,55,51,56,55,52,48,44,105,110,100,105,97,110,114,101,100,58,49,51,52,53,56,53,50,52,44,105,110,100,105,103,111,58,52,57,49,53,51,51,48,44,105,118,111,114,121,58,49,54,55,55,55,50,48,48,44,107,104,97,107,105,58,49,53,55,56,55,54,54,48,44,108,97,118,101,110,100,101,114,58,49,53,49,51,50,52,49,48,44,108,97,118,101,110,100,101,114,98,108,117,115,104,58,49,54,55,55,51,51,54,53,44,108,97,119,110,103,114,101,101,110,58,56,49,57,48,57,55,54,44,108,101,109,111,110,99,104,105,102,102,111,110,58,49,54,55,55,53,56,56,53,44,108,105,103,104,116,98,108,117,101,58,49,49,51,57,51,50,53,52,44,108,105,103,104,116,99,111,114,97,108,58,49,53,55,54,49,53,51,54,44,108,105,103,104,116,99,121,97,110,58,49,52,55,52,53,53,57,57,44,108,105,103,104,116,103,111,108,100,101,110,114,111,100,121,101,108,108,111,119,58,49,54,52,52,56,50,49,48,44,108,105,103,104,116,103,114,97,121,58,49,51,56,56,50,51,50,51,44,108,105,103,104,116,103,114,101,101,110,58,57,52,57,56,50,53,54,44,108,105,103,104,116,103,114,101,121,58,49,51,56,56,50,51,50,51,44,108,105,103,104,116,112,105,110,107,58,49,54,55,53,56,52,54,53,44,108,105,103,104,116,115,97,108,109,111,110,58,49,54,55,53,50,55,54,50,44,108,105,103,104,116,115,101,97,103,114,101,101,110,58,50,49,52,50,56,57,48,44,108,105,103,104,116,115,107,121,98,108,117,101,58,56,57,48,48,51,52,54,44,108,105,103,104,116,115,108,97,116,101,103,114,97,121,58,55,56,51,51,55,53,51,44,108,105,103,104,116,115,108,97,116,101,103,114,101,121,58,55,56,51,51,55,53,51,44,108,105,103,104,116,115,116,101,101,108,98,108,117,101,58,49,49,53,56,52,55,51,52,44,108,105,103,104,116,121,101,108,108,111,119,58,49,54,55,55,55,49,56,52,44,108,105,109,101,58,54,53,50,56,48,44,108,105,109,101,103,114,101,101,110,58,51,51,50,57,51,51,48,44,108,105,110,101,110,58,49,54,52,52,53,54,55,48,44,109,97,103,101,110,116,97,58,49,54,55,49,49,57,51,53,44,109,97,114,111,111,110,58,56,51,56,56,54,48,56,44,109,101,100,105,117,109,97,113,117,97,109,97,114,105,110,101,58,54,55,51,55,51,50,50,44,109,101,100,105,117,109,98,108,117,101,58,50,48,53,44,109,101,100,105,117,109,111,114,99,104,105,100,58,49,50,50,49,49,54,54,55,44,109,101,100,105,117,109,112,117,114,112,108,101,58,57,54,54,50,54,56,51,44,109,101,100,105,117,109,115,101,97,103,114,101,101,110,58,51,57,55,56,48,57,55,44,109,101,100,105,117,109,115,108,97,116,101,98,108,117,101,58,56,48,56,55,55,57,48,44,109,101,100,105,117,109,115,112,114,105,110,103,103,114,101,101,110,58,54,52,49,53,52,44,109,101,100,105,117,109,116,117,114,113,117,111,105,115,101,58,52,55,55,50,51,48,48,44,109,101,100,105,117,109,118,105,111,108,101,116,114,101,100,58,49,51,48,52,55,49,55,51,44,109,105,100,110,105,103,104,116,98,108,117,101,58,49,54,52,52,57,49,50,44,109,105,110,116,99,114,101,97,109,58,49,54,49,50,49,56,53,48,44,109,105,115,116,121,114,111,115,101,58,49,54,55,55,48,50,55,51,44,109,111,99,99,97,115,105,110,58,49,54,55,55,48,50,50,57,44,110,97,118,97,106,111,119,104,105,116,101,58,49,54,55,54,56,54,56,53,44,110,97,118,121,58,49,50,56,44,111,108,100,108,97,99,101,58,49,54,54,52,51,53,53,56,44,111,108,105,118,101,58,56,52,50,49,51,55,54,44,111,108,105,118,101,100,114,97,98,58,55,48,52,56,55,51,57,44,111,114,97,110,103,101,58,49,54,55,53,51,57,50,48,44,111,114,97,110,103,101,114,101,100,58,49,54,55,50,57,51,52,52,44,111,114,99,104,105,100,58,49,52,51,49,53,55,51,52,44,112,97,108,101,103,111,108,100,101,110,114,111,100,58,49,53,54,53,55,49,51,48,44,112,97,108,101,103,114,101,101,110,58,49,48,48,50,53,56,56,48,44,112,97,108,101,116,117,114,113,117,111,105,115,101,58,49,49,53,50,57,57,54,54,44,112,97,108,101,118,105,111,108,101,116,114,101,100,58,49,52,51,56,49,50,48,51,44,112,97,112,97,121,97,119,104,105,112,58,49,54,55,55,51,48,55,55,44,112,101,97,99,104,112,117,102,102,58,49,54,55,54,55,54,55,51,44,112,101,114,117,58,49,51,52,54,56,57,57,49,44,112,105,110,107,58,49,54,55,54,49,48,51,53,44,112,108,117,109,58,49,52,53,50,52,54,51,55,44,112,111,119,100,101,114,98,108,117,101,58,49,49,53,57,49,57,49,48,44,112,117,114,112,108,101,58,56,51,56,56,55,51,54,44,114,101,98,101,99,99,97,112,117,114,112,108,101,58,54,54,57,55,56,56,49,44,114,101,100,58,49,54,55,49,49,54,56,48,44,114,111,115,121,98,114,111,119,110,58,49,50,51,53,55,53,49,57,44,114,111,121,97,108,98,108,117,101,58,52,50,56,54,57,52,53,44,115,97,100,100,108,101,98,114,111,119,110,58,57,49,50,55,49,56,55,44,115,97,108,109,111,110,58,49,54,52,49,54,56,56,50,44,115,97,110,100,121,98,114,111,119,110,58,49,54,48,51,50,56,54,52,44,115,101,97,103,114,101,101,110,58,51,48,53,48,51,50,55,44,115,101,97,115,104,101,108,108,58,49,54,55,55,52,54,51,56,44,115,105,101,110,110,97,58,49,48,53,48,54,55,57,55,44,115,105,108,118,101,114,58,49,50,54,51,50,50,53,54,44,115,107,121,98,108,117,101,58,56,57,48,48,51,51,49,44,115,108,97,116,101,98,108,117,101,58,54,57,55,48,48,54,49,44,115,108,97,116,101,103,114,97,121,58,55,51,55,50,57,52,52,44,115,108,97,116,101,103,114,101,121,58,55,51,55,50,57,52,52,44,115,110,111,119,58,49,54,55,55,53,57,51,48,44,115,112,114,105,110,103,103,114,101,101,110,58,54,53,52,48,55,44,115,116,101,101,108,98,108,117,101,58,52,54,50,48,57,56,48,44,116,97,110,58,49,51,56,48,56,55,56,48,44,116,101,97,108,58,51,50,56,57,54,44,116,104,105,115,116,108,101,58,49,52,50,48,52,56,56,56,44,116,111,109,97,116,111,58,49,54,55,51,55,48,57,53,44,116,117,114,113,117,111,105,115,101,58,52,50,53,49,56,53,54,44,118,105,111,108,101,116,58,49,53,54,51,49,48,56,54,44,119,104,101,97,116,58,49,54,49,49,51,51,51,49,44,119,104,105,116,101,58,49,54,55,55,55,50,49,53,44,119,104,105,116,101,115,109,111,107,101,58,49,54,49,49,57,50,56,53,44,121,101,108,108,111,119,58,49,54,55,55,54,57,54,48,44,121,101,108,108,111,119,103,114,101,101,110,58,49,48,49,52,53,48,55,52,125,59,102,117,110,99,116,105,111,110,32,104,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,114,103,98,40,41,46,102,111,114,109,97,116,72,101,120,40,41,125,102,117,110,99,116,105,111,110,32,100,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,114,103,98,40,41,46,102,111,114,109,97,116,82,103,98,40,41,125,102,117,110,99,116,105,111,110,32,112,110,40,116,41,123,118,97,114,32,110,44,101,59,114,101,116,117,114,110,32,116,61,40,116,43,34,34,41,46,116,114,105,109,40,41,46,116,111,76,111,119,101,114,67,97,115,101,40,41,44,40,110,61,114,110,46,101,120,101,99,40,116,41,41,63,40,101,61,110,91,49,93,46,108,101,110,103,116,104,44,110,61,112,97,114,115,101,73,110,116,40,110,91,49,93,44,49,54,41,44,54,61,61,61,101,63,118,110,40,110,41,58,51,61,61,61,101,63,110,101,119,32,98,110,40,110,62,62,56,38,49,53,124,110,62,62,52,38,50,52,48,44,110,62,62,52,38,49,53,124,50,52,48,38,110,44,40,49,53,38,110,41,60,60,52,124,49,53,38,110,44,49,41,58,56,61,61,61,101,63,103,110,40,110,62,62,50,52,38,50,53,53,44,110,62,62,49,54,38,50,53,53,44,110,62,62,56,38,50,53,53,44,40,50,53,53,38,110,41,47,50,53,53,41,58,52,61,61,61,101,63,103,110,40,110,62,62,49,50,38,49,53,124,110,62,62,56,38,50,52,48,44,110,62,62,56,38,49,53,124,110,62,62,52,38,50,52,48,44,110,62,62,52,38,49,53,124,50,52,48,38,110,44,40,40,49,53,38,110,41,60,60,52,124,49,53,38,110,41,47,50,53,53,41,58,110,117,108,108,41,58,40,110,61,111,110,46,101,120,101,99,40,116,41,41,63,110,101,119,32,98,110,40,110,91,49,93,44,110,91,50,93,44,110,91,51,93,44,49,41,58,40,110,61,97,110,46,101,120,101,99,40,116,41,41,63,110,101,119,32,98,110,40,50,53,53,42,110,91,49,93,47,49,48,48,44,50,53,53,42,110,91,50,93,47,49,48,48,44,50,53,53,42,110,91,51,93,47,49,48,48,44,49,41,58,40,110,61,117,110,46,101,120,101,99,40,116,41,41,63,103,110,40,110,91,49,93,44,110,91,50,93,44,110,91,51,93,44,110,91,52,93,41,58,40,110,61,99,110,46,101,120,101,99,40,116,41,41,63,103,110,40,50,53,53,42,110,91,49,93,47,49,48,48,44,50,53,53,42,110,91,50,93,47,49,48,48,44,50,53,53,42,110,91,51,93,47,49,48,48,44,110,91,52,93,41,58,40,110,61,102,110,46,101,120,101,99,40,116,41,41,63,77,110,40,110,91,49,93,44,110,91,50,93,47,49,48,48,44,110,91,51,93,47,49,48,48,44,49,41,58,40,110,61,115,110,46,101,120,101,99,40,116,41,41,63,77,110,40,110,91,49,93,44,110,91,50,93,47,49,48,48,44,110,91,51,93,47,49,48,48,44,110,91,52,93,41,58,108,110,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,116,41,63,118,110,40,108,110,91,116,93,41,58,34,116,114,97,110,115,112,97,114,101,110,116,34,61,61,61,116,63,110,101,119,32,98,110,40,78,97,78,44,78,97,78,44,78,97,78,44,48,41,58,110,117,108,108,125,102,117,110,99,116,105,111,110,32,118,110,40,116,41,123,114,101,116,117,114,110,32,110,101,119,32,98,110,40,116,62,62,49,54,38,50,53,53,44,116,62,62,56,38,50,53,53,44,50,53,53,38,116,44,49,41,125,102,117,110,99,116,105,111,110,32,103,110,40,116,44,110,44,101,44,114,41,123,114,101,116,117,114,110,32,114,60,61,48,38,38,40,116,61,110,61,101,61,78,97,78,41,44,110,101,119,32,98,110,40,116,44,110,44,101,44,114,41,125,102,117,110,99,116,105,111,110,32,121,110,40,116,41,123,114,101,116,117,114,110,32,116,32,105,110,115,116,97,110,99,101,111,102,32,74,116,124,124,40,116,61,112,110,40,116,41,41,44,116,63,110,101,119,32,98,110,40,40,116,61,116,46,114,103,98,40,41,41,46,114,44,116,46,103,44,116,46,98,44,116,46,111,112,97,99,105,116,121,41,58,110,101,119,32,98,110,125,102,117,110,99,116,105,111,110,32,95,110,40,116,44,110,44,101,44,114,41,123,114,101,116,117,114,110,32,49,61,61,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,121,110,40,116,41,58,110,101,119,32,98,110,40,116,44,110,44,101,44,110,117,108,108,61,61,114,63,49,58,114,41,125,102,117,110,99,116,105,111,110,32,98,110,40,116,44,110,44,101,44,114,41,123,116,104,105,115,46,114,61,43,116,44,116,104,105,115,46,103,61,43,110,44,116,104,105,115,46,98,61,43,101,44,116,104,105,115,46,111,112,97,99,105,116,121,61,43,114,125,102,117,110,99,116,105,111,110,32,109,110,40,41,123,114,101,116,117,114,110,34,35,34,43,119,110,40,116,104,105,115,46,114,41,43,119,110,40,116,104,105,115,46,103,41,43,119,110,40,116,104,105,115,46,98,41,125,102,117,110,99,116,105,111,110,32,120,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,111,112,97,99,105,116,121,59,114,101,116,117,114,110,40,49,61,61,61,40,116,61,105,115,78,97,78,40,116,41,63,49,58,77,97,116,104,46,109,97,120,40,48,44,77,97,116,104,46,109,105,110,40,49,44,116,41,41,41,63,34,114,103,98,40,34,58,34,114,103,98,97,40,34,41,43,77,97,116,104,46,109,97,120,40,48,44,77,97,116,104,46,109,105,110,40,50,53,53,44,77,97,116,104,46,114,111,117,110,100,40,116,104,105,115,46,114,41,124,124,48,41,41,43,34,44,32,34,43,77,97,116,104,46,109,97,120,40,48,44,77,97,116,104,46,109,105,110,40,50,53,53,44,77,97,116,104,46,114,111,117,110,100,40,116,104,105,115,46,103,41,124,124,48,41,41,43,34,44,32,34,43,77,97,116,104,46,109,97,120,40,48,44,77,97,116,104,46,109,105,110,40,50,53,53,44,77,97,116,104,46,114,111,117,110,100,40,116,104,105,115,46,98,41,124,124,48,41,41,43,40,49,61,61,61,116,63,34,41,34,58,34,44,32,34,43,116,43,34,41,34,41,125,102,117,110,99,116,105,111,110,32,119,110,40,116,41,123,114,101,116,117,114,110,40,40,116,61,77,97,116,104,46,109,97,120,40,48,44,77,97,116,104,46,109,105,110,40,50,53,53,44,77,97,116,104,46,114,111,117,110,100,40,116,41,124,124,48,41,41,41,60,49,54,63,34,48,34,58,34,34,41,43,116,46,116,111,83,116,114,105,110,103,40,49,54,41,125,102,117,110,99,116,105,111,110,32,77,110,40,116,44,110,44,101,44,114,41,123,114,101,116,117,114,110,32,114,60,61,48,63,116,61,110,61,101,61,78,97,78,58,101,60,61,48,124,124,101,62,61,49,63,116,61,110,61,78,97,78,58,110,60,61,48,38,38,40,116,61,78,97,78,41,44,110,101,119,32,65,110,40,116,44,110,44,101,44,114,41,125,102,117,110,99,116,105,111,110,32,78,110,40,116,41,123,105,102,40,116,32,105,110,115,116,97,110,99,101,111,102,32,65,110,41,114,101,116,117,114,110,32,110,101,119,32,65,110,40,116,46,104,44,116,46,115,44,116,46,108,44,116,46,111,112,97,99,105,116,121,41,59,105,102,40,116,32,105,110,115,116,97,110,99,101,111,102,32,74,116,124,124,40,116,61,112,110,40,116,41,41,44,33,116,41,114,101,116,117,114,110,32,110,101,119,32,65,110,59,105,102,40,116,32,105,110,115,116,97,110,99,101,111,102,32,65,110,41,114,101,116,117,114,110,32,116,59,118,97,114,32,110,61,40,116,61,116,46,114,103,98,40,41,41,46,114,47,50,53,53,44,101,61,116,46,103,47,50,53,53,44,114,61,116,46,98,47,50,53,53,44,105,61,77,97,116,104,46,109,105,110,40,110,44,101,44,114,41,44,111,61,77,97,116,104,46,109,97,120,40,110,44,101,44,114,41,44,97,61,78,97,78,44,117,61,111,45,105,44,99,61,40,111,43,105,41,47,50,59,114,101,116,117,114,110,32,117,63,40,97,61,110,61,61,61,111,63,40,101,45,114,41,47,117,43,54,42,40,101,60,114,41,58,101,61,61,61,111,63,40,114,45,110,41,47,117,43,50,58,40,110,45,101,41,47,117,43,52,44,117,47,61,99,60,46,53,63,111,43,105,58,50,45,111,45,105,44,97,42,61,54,48,41,58,117,61,99,62,48,38,38,99,60,49,63,48,58,97,44,110,101,119,32,65,110,40,97,44,117,44,99,44,116,46,111,112,97,99,105,116,121,41,125,102,117,110,99,116,105,111,110,32,84,110,40,116,44,110,44,101,44,114,41,123,114,101,116,117,114,110,32,49,61,61,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,78,110,40,116,41,58,110,101,119,32,65,110,40,116,44,110,44,101,44,110,117,108,108,61,61,114,63,49,58,114,41,125,102,117,110,99,116,105,111,110,32,65,110,40,116,44,110,44,101,44,114,41,123,116,104,105,115,46,104,61,43,116,44,116,104,105,115,46,115,61,43,110,44,116,104,105,115,46,108,61,43,101,44,116,104,105,115,46,111,112,97,99,105,116,121,61,43,114,125,102,117,110,99,116,105,111,110,32,83,110,40,116,44,110,44,101,41,123,114,101,116,117,114,110,32,50,53,53,42,40,116,60,54,48,63,110,43,40,101,45,110,41,42,116,47,54,48,58,116,60,49,56,48,63,101,58,116,60,50,52,48,63,110,43,40,101,45,110,41,42,40,50,52,48,45,116,41,47,54,48,58,110,41,125,81,116,40,74,116,44,112,110,44,123,99,111,112,121,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,79,98,106,101,99,116,46,97,115,115,105,103,110,40,110,101,119,32,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,44,116,104,105,115,44,116,41,125,44,100,105,115,112,108,97,121,97,98,108,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,114,103,98,40,41,46,100,105,115,112,108,97,121,97,98,108,101,40,41,125,44,104,101,120,58,104,110,44,102,111,114,109,97,116,72,101,120,58,104,110,44,102,111,114,109,97,116,72,115,108,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,110,40,116,104,105,115,41,46,102,111,114,109,97,116,72,115,108,40,41,125,44,102,111,114,109,97,116,82,103,98,58,100,110,44,116,111,83,116,114,105,110,103,58,100,110,125,41,44,81,116,40,98,110,44,95,110,44,75,116,40,74,116,44,123,98,114,105,103,104,116,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,61,110,117,108,108,61,61,116,63,49,47,46,55,58,77,97,116,104,46,112,111,119,40,49,47,46,55,44,116,41,44,110,101,119,32,98,110,40,116,104,105,115,46,114,42,116,44,116,104,105,115,46,103,42,116,44,116,104,105,115,46,98,42,116,44,116,104,105,115,46,111,112,97,99,105,116,121,41,125,44,100,97,114,107,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,61,110,117,108,108,61,61,116,63,46,55,58,77,97,116,104,46,112,111,119,40,46,55,44,116,41,44,110,101,119,32,98,110,40,116,104,105,115,46,114,42,116,44,116,104,105,115,46,103,42,116,44,116,104,105,115,46,98,42,116,44,116,104,105,115,46,111,112,97,99,105,116,121,41,125,44,114,103,98,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,125,44,100,105,115,112,108,97,121,97,98,108,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,45,46,53,60,61,116,104,105,115,46,114,38,38,116,104,105,115,46,114,60,50,53,53,46,53,38,38,45,46,53,60,61,116,104,105,115,46,103,38,38,116,104,105,115,46,103,60,50,53,53,46,53,38,38,45,46,53,60,61,116,104,105,115,46,98,38,38,116,104,105,115,46,98,60,50,53,53,46,53,38,38,48,60,61,116,104,105,115,46,111,112,97,99,105,116,121,38,38,116,104,105,115,46,111,112,97,99,105,116,121,60,61,49,125,44,104,101,120,58,109,110,44,102,111,114,109,97,116,72,101,120,58,109,110,44,102,111,114,109,97,116,82,103,98,58,120,110,44,116,111,83,116,114,105,110,103,58,120,110,125,41,41,44,81,116,40,65,110,44,84,110,44,75,116,40,74,116,44,123,98,114,105,103,104,116,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,61,110,117,108,108,61,61,116,63,49,47,46,55,58,77,97,116,104,46,112,111,119,40,49,47,46,55,44,116,41,44,110,101,119,32,65,110,40,116,104,105,115,46,104,44,116,104,105,115,46,115,44,116,104,105,115,46,108,42,116,44,116,104,105,115,46,111,112,97,99,105,116,121,41,125,44,100,97,114,107,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,61,110,117,108,108,61,61,116,63,46,55,58,77,97,116,104,46,112,111,119,40,46,55,44,116,41,44,110,101,119,32,65,110,40,116,104,105,115,46,104,44,116,104,105,115,46,115,44,116,104,105,115,46,108,42,116,44,116,104,105,115,46,111,112,97,99,105,116,121,41,125,44,114,103,98,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,104,37,51,54,48,43,51,54,48,42,40,116,104,105,115,46,104,60,48,41,44,110,61,105,115,78,97,78,40,116,41,124,124,105,115,78,97,78,40,116,104,105,115,46,115,41,63,48,58,116,104,105,115,46,115,44,101,61,116,104,105,115,46,108,44,114,61,101,43,40,101,60,46,53,63,101,58,49,45,101,41,42,110,44,105,61,50,42,101,45,114,59,114,101,116,117,114,110,32,110,101,119,32,98,110,40,83,110,40,116,62,61,50,52,48,63,116,45,50,52,48,58,116,43,49,50,48,44,105,44,114,41,44,83,110,40,116,44,105,44,114,41,44,83,110,40,116,60,49,50,48,63,116,43,50,52,48,58,116,45,49,50,48,44,105,44,114,41,44,116,104,105,115,46,111,112,97,99,105,116,121,41,125,44,100,105,115,112,108,97,121,97,98,108,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,40,48,60,61,116,104,105,115,46,115,38,38,116,104,105,115,46,115,60,61,49,124,124,105,115,78,97,78,40,116,104,105,115,46,115,41,41,38,38,48,60,61,116,104,105,115,46,108,38,38,116,104,105,115,46,108,60,61,49,38,38,48,60,61,116,104,105,115,46,111,112,97,99,105,116,121,38,38,116,104,105,115,46,111,112,97,99,105,116,121,60,61,49,125,44,102,111,114,109,97,116,72,115,108,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,111,112,97,99,105,116,121,59,114,101,116,117,114,110,40,49,61,61,61,40,116,61,105,115,78,97,78,40,116,41,63,49,58,77,97,116,104,46,109,97,120,40,48,44,77,97,116,104,46,109,105,110,40,49,44,116,41,41,41,63,34,104,115,108,40,34,58,34,104,115,108,97,40,34,41,43,40,116,104,105,115,46,104,124,124,48,41,43,34,44,32,34,43,49,48,48,42,40,116,104,105,115,46,115,124,124,48,41,43,34,37,44,32,34,43,49,48,48,42,40,116,104,105,115,46,108,124,124,48,41,43,34,37,34,43,40,49,61,61,61,116,63,34,41,34,58,34,44,32,34,43,116,43,34,41,34,41,125,125,41,41,59,118,97,114,32,107,110,61,77,97,116,104,46,80,73,47,49,56,48,44,69,110,61,49,56,48,47,77,97,116,104,46,80,73,44,67,110,61,46,57,54,52,50,50,44,80,110,61,49,44,122,110,61,46,56,50,53,50,49,44,82,110,61,52,47,50,57,44,68,110,61,54,47,50,57,44,113,110,61,51,42,68,110,42,68,110,44,76,110,61,68,110,42,68,110,42,68,110,59,102,117,110,99,116,105,111,110,32,85,110,40,116,41,123,105,102,40,116,32,105,110,115,116,97,110,99,101,111,102,32,66,110,41,114,101,116,117,114,110,32,110,101,119,32,66,110,40,116,46,108,44,116,46,97,44,116,46,98,44,116,46,111,112,97,99,105,116,121,41,59,105,102,40,116,32,105,110,115,116,97,110,99,101,111,102,32,86,110,41,114,101,116,117,114,110,32,71,110,40,116,41,59,116,32,105,110,115,116,97,110,99,101,111,102,32,98,110,124,124,40,116,61,121,110,40,116,41,41,59,118,97,114,32,110,44,101,44,114,61,72,110,40,116,46,114,41,44,105,61,72,110,40,116,46,103,41,44,111,61,72,110,40,116,46,98,41,44,97,61,70,110,40,40,46,50,50,50,53,48,52,53,42,114,43,46,55,49,54,56,55,56,54,42,105,43,46,48,54,48,54,49,54,57,42,111,41,47,80,110,41,59,114,101,116,117,114,110,32,114,61,61,61,105,38,38,105,61,61,61,111,63,110,61,101,61,97,58,40,110,61,70,110,40,40,46,52,51,54,48,55,52,55,42,114,43,46,51,56,53,48,54,52,57,42,105,43,46,49,52,51,48,56,48,52,42,111,41,47,67,110,41,44,101,61,70,110,40,40,46,48,49,51,57,51,50,50,42,114,43,46,48,57,55,49,48,52,53,42,105,43,46,55,49,52,49,55,51,51,42,111,41,47,122,110,41,41,44,110,101,119,32,66,110,40,49,49,54,42,97,45,49,54,44,53,48,48,42,40,110,45,97,41,44,50,48,48,42,40,97,45,101,41,44,116,46,111,112,97,99,105,116,121,41,125,102,117,110,99,116,105,111,110,32,79,110,40,116,44,110,44,101,44,114,41,123,114,101,116,117,114,110,32,49,61,61,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,85,110,40,116,41,58,110,101,119,32,66,110,40,116,44,110,44,101,44,110,117,108,108,61,61,114,63,49,58,114,41,125,102,117,110,99,116,105,111,110,32,66,110,40,116,44,110,44,101,44,114,41,123,116,104,105,115,46,108,61,43,116,44,116,104,105,115,46,97,61,43,110,44,116,104,105,115,46,98,61,43,101,44,116,104,105,115,46,111,112,97,99,105,116,121,61,43,114,125,102,117,110,99,116,105,111,110,32,70,110,40,116,41,123,114,101,116,117,114,110,32,116,62,76,110,63,77,97,116,104,46,112,111,119,40,116,44,49,47,51,41,58,116,47,113,110,43,82,110,125,102,117,110,99,116,105,111,110,32,89,110,40,116,41,123,114,101,116,117,114,110,32,116,62,68,110,63,116,42,116,42,116,58,113,110,42,40,116,45,82,110,41,125,102,117,110,99,116,105,111,110,32,73,110,40,116,41,123,114,101,116,117,114,110,32,50,53,53,42,40,116,60,61,46,48,48,51,49,51,48,56,63,49,50,46,57,50,42,116,58,49,46,48,53,53,42,77,97,116,104,46,112,111,119,40,116,44,49,47,50,46,52,41,45,46,48,53,53,41,125,102,117,110,99,116,105,111,110,32,72,110,40,116,41,123,114,101,116,117,114,110,40,116,47,61,50,53,53,41,60,61,46,48,52,48,52,53,63,116,47,49,50,46,57,50,58,77,97,116,104,46,112,111,119,40,40,116,43,46,48,53,53,41,47,49,46,48,53,53,44,50,46,52,41,125,102,117,110,99,116,105,111,110,32,106,110,40,116,41,123,105,102,40,116,32,105,110,115,116,97,110,99,101,111,102,32,86,110,41,114,101,116,117,114,110,32,110,101,119,32,86,110,40,116,46,104,44,116,46,99,44,116,46,108,44,116,46,111,112,97,99,105,116,121,41,59,105,102,40,116,32,105,110,115,116,97,110,99,101,111,102,32,66,110,124,124,40,116,61,85,110,40,116,41,41,44,48,61,61,61,116,46,97,38,38,48,61,61,61,116,46,98,41,114,101,116,117,114,110,32,110,101,119,32,86,110,40,78,97,78,44,48,60,116,46,108,38,38,116,46,108,60,49,48,48,63,48,58,78,97,78,44,116,46,108,44,116,46,111,112,97,99,105,116,121,41,59,118,97,114,32,110,61,77,97,116,104,46,97,116,97,110,50,40,116,46,98,44,116,46,97,41,42,69,110,59,114,101,116,117,114,110,32,110,101,119,32,86,110,40,110,60,48,63,110,43,51,54,48,58,110,44,77,97,116,104,46,115,113,114,116,40,116,46,97,42,116,46,97,43,116,46,98,42,116,46,98,41,44,116,46,108,44,116,46,111,112,97,99,105,116,121,41,125,102,117,110,99,116,105,111,110,32,88,110,40,116,44,110,44,101,44,114,41,123,114,101,116,117,114,110,32,49,61,61,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,106,110,40,116,41,58,110,101,119,32,86,110,40,116,44,110,44,101,44,110,117,108,108,61,61,114,63,49,58,114,41,125,102,117,110,99,116,105,111,110,32,86,110,40,116,44,110,44,101,44,114,41,123,116,104,105,115,46,104,61,43,116,44,116,104,105,115,46,99,61,43,110,44,116,104,105,115,46,108,61,43,101,44,116,104,105,115,46,111,112,97,99,105,116,121,61,43,114,125,102,117,110,99,116,105,111,110,32,71,110,40,116,41,123,105,102,40,105,115,78,97,78,40,116,46,104,41,41,114,101,116,117,114,110,32,110,101,119,32,66,110,40,116,46,108,44,48,44,48,44,116,46,111,112,97,99,105,116,121,41,59,118,97,114,32,110,61,116,46,104,42,107,110,59,114,101,116,117,114,110,32,110,101,119,32,66,110,40,116,46,108,44,77,97,116,104,46,99,111,115,40,110,41,42,116,46,99,44,77,97,116,104,46,115,105,110,40,110,41,42,116,46,99,44,116,46,111,112,97,99,105,116,121,41,125,81,116,40,66,110,44,79,110,44,75,116,40,74,116,44,123,98,114,105,103,104,116,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,101,119,32,66,110,40,116,104,105,115,46,108,43,49,56,42,40,110,117,108,108,61,61,116,63,49,58,116,41,44,116,104,105,115,46,97,44,116,104,105,115,46,98,44,116,104,105,115,46,111,112,97,99,105,116,121,41,125,44,100,97,114,107,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,101,119,32,66,110,40,116,104,105,115,46,108,45,49,56,42,40,110,117,108,108,61,61,116,63,49,58,116,41,44,116,104,105,115,46,97,44,116,104,105,115,46,98,44,116,104,105,115,46,111,112,97,99,105,116,121,41,125,44,114,103,98,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,40,116,104,105,115,46,108,43,49,54,41,47,49,49,54,44,110,61,105,115,78,97,78,40,116,104,105,115,46,97,41,63,116,58,116,43,116,104,105,115,46,97,47,53,48,48,44,101,61,105,115,78,97,78,40,116,104,105,115,46,98,41,63,116,58,116,45,116,104,105,115,46,98,47,50,48,48,59,114,101,116,117,114,110,32,110,101,119,32,98,110,40,73,110,40,51,46,49,51,51,56,53,54,49,42,40,110,61,67,110,42,89,110,40,110,41,41,45,49,46,54,49,54,56,54,54,55,42,40,116,61,80,110,42,89,110,40,116,41,41,45,46,52,57,48,54,49,52,54,42,40,101,61,122,110,42,89,110,40,101,41,41,41,44,73,110,40,45,46,57,55,56,55,54,56,52,42,110,43,49,46,57,49,54,49,52,49,53,42,116,43,46,48,51,51,52,53,52,42,101,41,44,73,110,40,46,48,55,49,57,52,53,51,42,110,45,46,50,50,56,57,57,49,52,42,116,43,49,46,52,48,53,50,52,50,55,42,101,41,44,116,104,105,115,46,111,112,97,99,105,116,121,41,125,125,41,41,44,81,116,40,86,110,44,88,110,44,75,116,40,74,116,44,123,98,114,105,103,104,116,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,101,119,32,86,110,40,116,104,105,115,46,104,44,116,104,105,115,46,99,44,116,104,105,115,46,108,43,49,56,42,40,110,117,108,108,61,61,116,63,49,58,116,41,44,116,104,105,115,46,111,112,97,99,105,116,121,41,125,44,100,97,114,107,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,101,119,32,86,110,40,116,104,105,115,46,104,44,116,104,105,115,46,99,44,116,104,105,115,46,108,45,49,56,42,40,110,117,108,108,61,61,116,63,49,58,116,41,44,116,104,105,115,46,111,112,97,99,105,116,121,41,125,44,114,103,98,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,71,110,40,116,104,105,115,41,46,114,103,98,40,41,125,125,41,41,59,118,97,114,32,36,110,61,45,46,49,52,56,54,49,44,87,110,61,49,46,55,56,50,55,55,44,90,110,61,45,46,50,57,50,50,55,44,81,110,61,45,46,57,48,54,52,57,44,75,110,61,49,46,57,55,50,57,52,44,74,110,61,75,110,42,81,110,44,116,101,61,75,110,42,87,110,44,110,101,61,87,110,42,90,110,45,81,110,42,36,110,59,102,117,110,99,116,105,111,110,32,101,101,40,116,44,110,44,101,44,114,41,123,114,101,116,117,114,110,32,49,61,61,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,116,32,105,110,115,116,97,110,99,101,111,102,32,114,101,41,114,101,116,117,114,110,32,110,101,119,32,114,101,40,116,46,104,44,116,46,115,44,116,46,108,44,116,46,111,112,97,99,105,116,121,41,59,116,32,105,110,115,116,97,110,99,101,111,102,32,98,110,124,124,40,116,61,121,110,40,116,41,41,59,118,97,114,32,110,61,116,46,114,47,50,53,53,44,101,61,116,46,103,47,50,53,53,44,114,61,116,46,98,47,50,53,53,44,105,61,40,110,101,42,114,43,74,110,42,110,45,116,101,42,101,41,47,40,110,101,43,74,110,45,116,101,41,44,111,61,114,45,105,44,97,61,40,75,110,42,40,101,45,105,41,45,90,110,42,111,41,47,81,110,44,117,61,77,97,116,104,46,115,113,114,116,40,97,42,97,43,111,42,111,41,47,40,75,110,42,105,42,40,49,45,105,41,41,44,99,61,117,63,77,97,116,104,46,97,116,97,110,50,40,97,44,111,41,42,69,110,45,49,50,48,58,78,97,78,59,114,101,116,117,114,110,32,110,101,119,32,114,101,40,99,60,48,63,99,43,51,54,48,58,99,44,117,44,105,44,116,46,111,112,97,99,105,116,121,41,125,40,116,41,58,110,101,119,32,114,101,40,116,44,110,44,101,44,110,117,108,108,61,61,114,63,49,58,114,41,125,102,117,110,99,116,105,111,110,32,114,101,40,116,44,110,44,101,44,114,41,123,116,104,105,115,46,104,61,43,116,44,116,104,105,115,46,115,61,43,110,44,116,104,105,115,46,108,61,43,101,44,116,104,105,115,46,111,112,97,99,105,116,121,61,43,114,125,102,117,110,99,116,105,111,110,32,105,101,40,116,44,110,44,101,44,114,44,105,41,123,118,97,114,32,111,61,116,42,116,44,97,61,111,42,116,59,114,101,116,117,114,110,40,40,49,45,51,42,116,43,51,42,111,45,97,41,42,110,43,40,52,45,54,42,111,43,51,42,97,41,42,101,43,40,49,43,51,42,116,43,51,42,111,45,51,42,97,41,42,114,43,97,42,105,41,47,54,125,102,117,110,99,116,105,111,110,32,111,101,40,116,41,123,118,97,114,32,110,61,116,46,108,101,110,103,116,104,45,49,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,114,61,101,60,61,48,63,101,61,48,58,101,62,61,49,63,40,101,61,49,44,110,45,49,41,58,77,97,116,104,46,102,108,111,111,114,40,101,42,110,41,44,105,61,116,91,114,93,44,111,61,116,91,114,43,49,93,44,97,61,114,62,48,63,116,91,114,45,49,93,58,50,42,105,45,111,44,117,61,114,60,110,45,49,63,116,91,114,43,50,93,58,50,42,111,45,105,59,114,101,116,117,114,110,32,105,101,40,40,101,45,114,47,110,41,42,110,44,97,44,105,44,111,44,117,41,125,125,102,117,110,99,116,105,111,110,32,97,101,40,116,41,123,118,97,114,32,110,61,116,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,114,61,77,97,116,104,46,102,108,111,111,114,40,40,40,101,37,61,49,41,60,48,63,43,43,101,58,101,41,42,110,41,44,105,61,116,91,40,114,43,110,45,49,41,37,110,93,44,111,61,116,91,114,37,110,93,44,97,61,116,91,40,114,43,49,41,37,110,93,44,117,61,116,91,40,114,43,50,41,37,110,93,59,114,101,116,117,114,110,32,105,101,40,40,101,45,114,47,110,41,42,110,44,105,44,111,44,97,44,117,41,125,125,102,117,110,99,116,105,111,110,32,117,101,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,125,125,102,117,110,99,116,105,111,110,32,99,101,40,116,44,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,43,101,42,110,125,125,102,117,110,99,116,105,111,110,32,102,101,40,116,44,110,41,123,118,97,114,32,101,61,110,45,116,59,114,101,116,117,114,110,32,101,63,99,101,40,116,44,101,62,49,56,48,124,124,101,60,45,49,56,48,63,101,45,51,54,48,42,77,97,116,104,46,114,111,117,110,100,40,101,47,51,54,48,41,58,101,41,58,117,101,40,105,115,78,97,78,40,116,41,63,110,58,116,41,125,102,117,110,99,116,105,111,110,32,115,101,40,116,41,123,114,101,116,117,114,110,32,49,61,61,40,116,61,43,116,41,63,108,101,58,102,117,110,99,116,105,111,110,40,110,44,101,41,123,114,101,116,117,114,110,32,101,45,110,63,102,117,110,99,116,105,111,110,40,116,44,110,44,101,41,123,114,101,116,117,114,110,32,116,61,77,97,116,104,46,112,111,119,40,116,44,101,41,44,110,61,77,97,116,104,46,112,111,119,40,110,44,101,41,45,116,44,101,61,49,47,101,44,102,117,110,99,116,105,111,110,40,114,41,123,114,101,116,117,114,110,32,77,97,116,104,46,112,111,119,40,116,43,114,42,110,44,101,41,125,125,40,110,44,101,44,116,41,58,117,101,40,105,115,78,97,78,40,110,41,63,101,58,110,41,125,125,102,117,110,99,116,105,111,110,32,108,101,40,116,44,110,41,123,118,97,114,32,101,61,110,45,116,59,114,101,116,117,114,110,32,101,63,99,101,40,116,44,101,41,58,117,101,40,105,115,78,97,78,40,116,41,63,110,58,116,41,125,81,116,40,114,101,44,101,101,44,75,116,40,74,116,44,123,98,114,105,103,104,116,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,61,110,117,108,108,61,61,116,63,49,47,46,55,58,77,97,116,104,46,112,111,119,40,49,47,46,55,44,116,41,44,110,101,119,32,114,101,40,116,104,105,115,46,104,44,116,104,105,115,46,115,44,116,104,105,115,46,108,42,116,44,116,104,105,115,46,111,112,97,99,105,116,121,41,125,44,100,97,114,107,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,61,110,117,108,108,61,61,116,63,46,55,58,77,97,116,104,46,112,111,119,40,46,55,44,116,41,44,110,101,119,32,114,101,40,116,104,105,115,46,104,44,116,104,105,115,46,115,44,116,104,105,115,46,108,42,116,44,116,104,105,115,46,111,112,97,99,105,116,121,41,125,44,114,103,98,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,105,115,78,97,78,40,116,104,105,115,46,104,41,63,48,58,40,116,104,105,115,46,104,43,49,50,48,41,42,107,110,44,110,61,43,116,104,105,115,46,108,44,101,61,105,115,78,97,78,40,116,104,105,115,46,115,41,63,48,58,116,104,105,115,46,115,42,110,42,40,49,45,110,41,44,114,61,77,97,116,104,46,99,111,115,40,116,41,44,105,61,77,97,116,104,46,115,105,110,40,116,41,59,114,101,116,117,114,110,32,110,101,119,32,98,110,40,50,53,53,42,40,110,43,101,42,40,36,110,42,114,43,87,110,42,105,41,41,44,50,53,53,42,40,110,43,101,42,40,90,110,42,114,43,81,110,42,105,41,41,44,50,53,53,42,40,110,43,101,42,40,75,110,42,114,41,41,44,116,104,105,115,46,111,112,97,99,105,116,121,41,125,125,41,41,59,118,97,114,32,104,101,61,102,117,110,99,116,105,111,110,32,116,40,110,41,123,118,97,114,32,101,61,115,101,40,110,41,59,102,117,110,99,116,105,111,110,32,114,40,116,44,110,41,123,118,97,114,32,114,61,101,40,40,116,61,95,110,40,116,41,41,46,114,44,40,110,61,95,110,40,110,41,41,46,114,41,44,105,61,101,40,116,46,103,44,110,46,103,41,44,111,61,101,40,116,46,98,44,110,46,98,41,44,97,61,108,101,40,116,46,111,112,97,99,105,116,121,44,110,46,111,112,97,99,105,116,121,41,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,46,114,61,114,40,110,41,44,116,46,103,61,105,40,110,41,44,116,46,98,61,111,40,110,41,44,116,46,111,112,97,99,105,116,121,61,97,40,110,41,44,116,43,34,34,125,125,114,101,116,117,114,110,32,114,46,103,97,109,109,97,61,116,44,114,125,40,49,41,59,102,117,110,99,116,105,111,110,32,100,101,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,101,44,114,44,105,61,110,46,108,101,110,103,116,104,44,111,61,110,101,119,32,65,114,114,97,121,40,105,41,44,97,61,110,101,119,32,65,114,114,97,121,40,105,41,44,117,61,110,101,119,32,65,114,114,97,121,40,105,41,59,102,111,114,40,101,61,48,59,101,60,105,59,43,43,101,41,114,61,95,110,40,110,91,101,93,41,44,111,91,101,93,61,114,46,114,124,124,48,44,97,91,101,93,61,114,46,103,124,124,48,44,117,91,101,93,61,114,46,98,124,124,48,59,114,101,116,117,114,110,32,111,61,116,40,111,41,44,97,61,116,40,97,41,44,117,61,116,40,117,41,44,114,46,111,112,97,99,105,116,121,61,49,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,114,46,114,61,111,40,116,41,44,114,46,103,61,97,40,116,41,44,114,46,98,61,117,40,116,41,44,114,43,34,34,125,125,125,118,97,114,32,112,101,61,100,101,40,111,101,41,44,118,101,61,100,101,40,97,101,41,59,102,117,110,99,116,105,111,110,32,103,101,40,116,44,110,41,123,110,124,124,40,110,61,91,93,41,59,118,97,114,32,101,44,114,61,116,63,77,97,116,104,46,109,105,110,40,110,46,108,101,110,103,116,104,44,116,46,108,101,110,103,116,104,41,58,48,44,105,61,110,46,115,108,105,99,101,40,41,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,111,41,123,102,111,114,40,101,61,48,59,101,60,114,59,43,43,101,41,105,91,101,93,61,116,91,101,93,42,40,49,45,111,41,43,110,91,101,93,42,111,59,114,101,116,117,114,110,32,105,125,125,102,117,110,99,116,105,111,110,32,121,101,40,116,41,123,114,101,116,117,114,110,32,65,114,114,97,121,66,117,102,102,101,114,46,105,115,86,105,101,119,40,116,41,38,38,33,40,116,32,105,110,115,116,97,110,99,101,111,102,32,68,97,116,97,86,105,101,119,41,125,102,117,110,99,116,105,111,110,32,95,101,40,116,44,110,41,123,118,97,114,32,101,44,114,61,110,63,110,46,108,101,110,103,116,104,58,48,44,105,61,116,63,77,97,116,104,46,109,105,110,40,114,44,116,46,108,101,110,103,116,104,41,58,48,44,111,61,110,101,119,32,65,114,114,97,121,40,105,41,44,97,61,110,101,119,32,65,114,114,97,121,40,114,41,59,102,111,114,40,101,61,48,59,101,60,105,59,43,43,101,41,111,91,101,93,61,84,101,40,116,91,101,93,44,110,91,101,93,41,59,102,111,114,40,59,101,60,114,59,43,43,101,41,97,91,101,93,61,110,91,101,93,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,41,123,102,111,114,40,101,61,48,59,101,60,105,59,43,43,101,41,97,91,101,93,61,111,91,101,93,40,116,41,59,114,101,116,117,114,110,32,97,125,125,102,117,110,99,116,105,111,110,32,98,101,40,116,44,110,41,123,118,97,114,32,101,61,110,101,119,32,68,97,116,101,59,114,101,116,117,114,110,32,116,61,43,116,44,110,61,43,110,44,102,117,110,99,116,105,111,110,40,114,41,123,114,101,116,117,114,110,32,101,46,115,101,116,84,105,109,101,40,116,42,40,49,45,114,41,43,110,42,114,41,44,101,125,125,102,117,110,99,116,105,111,110,32,109,101,40,116,44,110,41,123,114,101,116,117,114,110,32,116,61,43,116,44,110,61,43,110,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,42,40,49,45,101,41,43,110,42,101,125,125,102,117,110,99,116,105,111,110,32,120,101,40,116,44,110,41,123,118,97,114,32,101,44,114,61,123,125,44,105,61,123,125,59,102,111,114,40,101,32,105,110,32,110,117,108,108,33,61,61,116,38,38,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,116,124,124,40,116,61,123,125,41,44,110,117,108,108,33,61,61,110,38,38,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,110,124,124,40,110,61,123,125,41,44,110,41,101,32,105,110,32,116,63,114,91,101,93,61,84,101,40,116,91,101,93,44,110,91,101,93,41,58,105,91,101,93,61,110,91,101,93,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,41,123,102,111,114,40,101,32,105,110,32,114,41,105,91,101,93,61,114,91,101,93,40,116,41,59,114,101,116,117,114,110,32,105,125,125,118,97,114,32,119,101,61,47,91,45,43,93,63,40,63,58,92,100,43,92,46,63,92,100,42,124,92,46,63,92,100,43,41,40,63,58,91,101,69,93,91,45,43,93,63,92,100,43,41,63,47,103,44,77,101,61,110,101,119,32,82,101,103,69,120,112,40,119,101,46,115,111,117,114,99,101,44,34,103,34,41,59,102,117,110,99,116,105,111,110,32,78,101,40,116,44,110,41,123,118,97,114,32,101,44,114,44,105,44,111,61,119,101,46,108,97,115,116,73,110,100,101,120,61,77,101,46,108,97,115,116,73,110,100,101,120,61,48,44,97,61,45,49,44,117,61,91,93,44,99,61,91,93,59,102,111,114,40,116,43,61,34,34,44,110,43,61,34,34,59,40,101,61,119,101,46,101,120,101,99,40,116,41,41,38,38,40,114,61,77,101,46,101,120,101,99,40,110,41,41,59,41,40,105,61,114,46,105,110,100,101,120,41,62,111,38,38,40,105,61,110,46,115,108,105,99,101,40,111,44,105,41,44,117,91,97,93,63,117,91,97,93,43,61,105,58,117,91,43,43,97,93,61,105,41,44,40,101,61,101,91,48,93,41,61,61,61,40,114,61,114,91,48,93,41,63,117,91,97,93,63,117,91,97,93,43,61,114,58,117,91,43,43,97,93,61,114,58,40,117,91,43,43,97,93,61,110,117,108,108,44,99,46,112,117,115,104,40,123,105,58,97,44,120,58,109,101,40,101,44,114,41,125,41,41,44,111,61,77,101,46,108,97,115,116,73,110,100,101,120,59,114,101,116,117,114,110,32,111,60,110,46,108,101,110,103,116,104,38,38,40,105,61,110,46,115,108,105,99,101,40,111,41,44,117,91,97,93,63,117,91,97,93,43,61,105,58,117,91,43,43,97,93,61,105,41,44,117,46,108,101,110,103,116,104,60,50,63,99,91,48,93,63,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,40,110,41,43,34,34,125,125,40,99,91,48,93,46,120,41,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,125,125,40,110,41,58,40,110,61,99,46,108,101,110,103,116,104,44,102,117,110,99,116,105,111,110,40,116,41,123,102,111,114,40,118,97,114,32,101,44,114,61,48,59,114,60,110,59,43,43,114,41,117,91,40,101,61,99,91,114,93,41,46,105,93,61,101,46,120,40,116,41,59,114,101,116,117,114,110,32,117,46,106,111,105,110,40,34,34,41,125,41,125,102,117,110,99,116,105,111,110,32,84,101,40,116,44,110,41,123,118,97,114,32,101,44,114,61,116,121,112,101,111,102,32,110,59,114,101,116,117,114,110,32,110,117,108,108,61,61,110,124,124,34,98,111,111,108,101,97,110,34,61,61,61,114,63,117,101,40,110,41,58,40,34,110,117,109,98,101,114,34,61,61,61,114,63,109,101,58,34,115,116,114,105,110,103,34,61,61,61,114,63,40,101,61,112,110,40,110,41,41,63,40,110,61,101,44,104,101,41,58,78,101,58,110,32,105,110,115,116,97,110,99,101,111,102,32,112,110,63,104,101,58,110,32,105,110,115,116,97,110,99,101,111,102,32,68,97,116,101,63,98,101,58,121,101,40,110,41,63,103,101,58,65,114,114,97,121,46,105,115,65,114,114,97,121,40,110,41,63,95,101,58,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,110,46,118,97,108,117,101,79,102,38,38,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,110,46,116,111,83,116,114,105,110,103,124,124,105,115,78,97,78,40,110,41,63,120,101,58,109,101,41,40,116,44,110,41,125,102,117,110,99,116,105,111,110,32,65,101,40,116,44,110,41,123,114,101,116,117,114,110,32,116,61,43,116,44,110,61,43,110,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,77,97,116,104,46,114,111,117,110,100,40,116,42,40,49,45,101,41,43,110,42,101,41,125,125,118,97,114,32,83,101,44,107,101,44,69,101,44,67,101,44,80,101,61,49,56,48,47,77,97,116,104,46,80,73,44,122,101,61,123,116,114,97,110,115,108,97,116,101,88,58,48,44,116,114,97,110,115,108,97,116,101,89,58,48,44,114,111,116,97,116,101,58,48,44,115,107,101,119,88,58,48,44,115,99,97,108,101,88,58,49,44,115,99,97,108,101,89,58,49,125,59,102,117,110,99,116,105,111,110,32,82,101,40,116,44,110,44,101,44,114,44,105,44,111,41,123,118,97,114,32,97,44,117,44,99,59,114,101,116,117,114,110,40,97,61,77,97,116,104,46,115,113,114,116,40,116,42,116,43,110,42,110,41,41,38,38,40,116,47,61,97,44,110,47,61,97,41,44,40,99,61,116,42,101,43,110,42,114,41,38,38,40,101,45,61,116,42,99,44,114,45,61,110,42,99,41,44,40,117,61,77,97,116,104,46,115,113,114,116,40,101,42,101,43,114,42,114,41,41,38,38,40,101,47,61,117,44,114,47,61,117,44,99,47,61,117,41,44,116,42,114,60,110,42,101,38,38,40,116,61,45,116,44,110,61,45,110,44,99,61,45,99,44,97,61,45,97,41,44,123,116,114,97,110,115,108,97,116,101,88,58,105,44,116,114,97,110,115,108,97,116,101,89,58,111,44,114,111,116,97,116,101,58,77,97,116,104,46,97,116,97,110,50,40,110,44,116,41,42,80,101,44,115,107,101,119,88,58,77,97,116,104,46,97,116,97,110,40,99,41,42,80,101,44,115,99,97,108,101,88,58,97,44,115,99,97,108,101,89,58,117,125,125,102,117,110,99,116,105,111,110,32,68,101,40,116,44,110,44,101,44,114,41,123,102,117,110,99,116,105,111,110,32,105,40,116,41,123,114,101,116,117,114,110,32,116,46,108,101,110,103,116,104,63,116,46,112,111,112,40,41,43,34,32,34,58,34,34,125,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,111,44,97,41,123,118,97,114,32,117,61,91,93,44,99,61,91,93,59,114,101,116,117,114,110,32,111,61,116,40,111,41,44,97,61,116,40,97,41,44,102,117,110,99,116,105,111,110,40,116,44,114,44,105,44,111,44,97,44,117,41,123,105,102,40,116,33,61,61,105,124,124,114,33,61,61,111,41,123,118,97,114,32,99,61,97,46,112,117,115,104,40,34,116,114,97,110,115,108,97,116,101,40,34,44,110,117,108,108,44,110,44,110,117,108,108,44,101,41,59,117,46,112,117,115,104,40,123,105,58,99,45,52,44,120,58,109,101,40,116,44,105,41,125,44,123,105,58,99,45,50,44,120,58,109,101,40,114,44,111,41,125,41,125,101,108,115,101,40,105,124,124,111,41,38,38,97,46,112,117,115,104,40,34,116,114,97,110,115,108,97,116,101,40,34,43,105,43,110,43,111,43,101,41,125,40,111,46,116,114,97,110,115,108,97,116,101,88,44,111,46,116,114,97,110,115,108,97,116,101,89,44,97,46,116,114,97,110,115,108,97,116,101,88,44,97,46,116,114,97,110,115,108,97,116,101,89,44,117,44,99,41,44,102,117,110,99,116,105,111,110,40,116,44,110,44,101,44,111,41,123,116,33,61,61,110,63,40,116,45,110,62,49,56,48,63,110,43,61,51,54,48,58,110,45,116,62,49,56,48,38,38,40,116,43,61,51,54,48,41,44,111,46,112,117,115,104,40,123,105,58,101,46,112,117,115,104,40,105,40,101,41,43,34,114,111,116,97,116,101,40,34,44,110,117,108,108,44,114,41,45,50,44,120,58,109,101,40,116,44,110,41,125,41,41,58,110,38,38,101,46,112,117,115,104,40,105,40,101,41,43,34,114,111,116,97,116,101,40,34,43,110,43,114,41,125,40,111,46,114,111,116,97,116,101,44,97,46,114,111,116,97,116,101,44,117,44,99,41,44,102,117,110,99,116,105,111,110,40,116,44,110,44,101,44,111,41,123,116,33,61,61,110,63,111,46,112,117,115,104,40,123,105,58,101,46,112,117,115,104,40,105,40,101,41,43,34,115,107,101,119,88,40,34,44,110,117,108,108,44,114,41,45,50,44,120,58,109,101,40,116,44,110,41,125,41,58,110,38,38,101,46,112,117,115,104,40,105,40,101,41,43,34,115,107,101,119,88,40,34,43,110,43,114,41,125,40,111,46,115,107,101,119,88,44,97,46,115,107,101,119,88,44,117,44,99,41,44,102,117,110,99,116,105,111,110,40,116,44,110,44,101,44,114,44,111,44,97,41,123,105,102,40,116,33,61,61,101,124,124,110,33,61,61,114,41,123,118,97,114,32,117,61,111,46,112,117,115,104,40,105,40,111,41,43,34,115,99,97,108,101,40,34,44,110,117,108,108,44,34,44,34,44,110,117,108,108,44,34,41,34,41,59,97,46,112,117,115,104,40,123,105,58,117,45,52,44,120,58,109,101,40,116,44,101,41,125,44,123,105,58,117,45,50,44,120,58,109,101,40,110,44,114,41,125,41,125,101,108,115,101,32,49,61,61,61,101,38,38,49,61,61,61,114,124,124,111,46,112,117,115,104,40,105,40,111,41,43,34,115,99,97,108,101,40,34,43,101,43,34,44,34,43,114,43,34,41,34,41,125,40,111,46,115,99,97,108,101,88,44,111,46,115,99,97,108,101,89,44,97,46,115,99,97,108,101,88,44,97,46,115,99,97,108,101,89,44,117,44,99,41,44,111,61,97,61,110,117,108,108,44,102,117,110,99,116,105,111,110,40,116,41,123,102,111,114,40,118,97,114,32,110,44,101,61,45,49,44,114,61,99,46,108,101,110,103,116,104,59,43,43,101,60,114,59,41,117,91,40,110,61,99,91,101,93,41,46,105,93,61,110,46,120,40,116,41,59,114,101,116,117,114,110,32,117,46,106,111,105,110,40,34,34,41,125,125,125,118,97,114,32,113,101,61,68,101,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,34,110,111,110,101,34,61,61,61,116,63,122,101,58,40,83,101,124,124,40,83,101,61,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,68,73,86,34,41,44,107,101,61,100,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,44,69,101,61,100,111,99,117,109,101,110,116,46,100,101,102,97,117,108,116,86,105,101,119,41,44,83,101,46,115,116,121,108,101,46,116,114,97,110,115,102,111,114,109,61,116,44,116,61,69,101,46,103,101,116,67,111,109,112,117,116,101,100,83,116,121,108,101,40,107,101,46,97,112,112,101,110,100,67,104,105,108,100,40,83,101,41,44,110,117,108,108,41,46,103,101,116,80,114,111,112,101,114,116,121,86,97,108,117,101,40,34,116,114,97,110,115,102,111,114,109,34,41,44,107,101,46,114,101,109,111,118,101,67,104,105,108,100,40,83,101,41,44,82,101,40,43,40,116,61,116,46,115,108,105,99,101,40,55,44,45,49,41,46,115,112,108,105,116,40,34,44,34,41,41,91,48,93,44,43,116,91,49,93,44,43,116,91,50,93,44,43,116,91,51,93,44,43,116,91,52,93,44,43,116,91,53,93,41,41,125,44,34,112,120,44,32,34,44,34,112,120,41,34,44,34,100,101,103,41,34,41,44,76,101,61,68,101,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,116,63,122,101,58,40,67,101,124,124,40,67,101,61,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,78,83,40,34,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,115,118,103,34,44,34,103,34,41,41,44,67,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,116,114,97,110,115,102,111,114,109,34,44,116,41,44,40,116,61,67,101,46,116,114,97,110,115,102,111,114,109,46,98,97,115,101,86,97,108,46,99,111,110,115,111,108,105,100,97,116,101,40,41,41,63,82,101,40,40,116,61,116,46,109,97,116,114,105,120,41,46,97,44,116,46,98,44,116,46,99,44,116,46,100,44,116,46,101,44,116,46,102,41,58,122,101,41,125,44,34,44,32,34,44,34,41,34,44,34,41,34,41,44,85,101,61,77,97,116,104,46,83,81,82,84,50,44,79,101,61,50,44,66,101,61,52,44,70,101,61,49,101,45,49,50,59,102,117,110,99,116,105,111,110,32,89,101,40,116,41,123,114,101,116,117,114,110,40,40,116,61,77,97,116,104,46,101,120,112,40,116,41,41,43,49,47,116,41,47,50,125,102,117,110,99,116,105,111,110,32,73,101,40,116,44,110,41,123,118,97,114,32,101,44,114,44,105,61,116,91,48,93,44,111,61,116,91,49,93,44,97,61,116,91,50,93,44,117,61,110,91,48,93,44,99,61,110,91,49,93,44,102,61,110,91,50,93,44,115,61,117,45,105,44,108,61,99,45,111,44,104,61,115,42,115,43,108,42,108,59,105,102,40,104,60,70,101,41,114,61,77,97,116,104,46,108,111,103,40,102,47,97,41,47,85,101,44,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,91,105,43,116,42,115,44,111,43,116,42,108,44,97,42,77,97,116,104,46,101,120,112,40,85,101,42,116,42,114,41,93,125,59,101,108,115,101,123,118,97,114,32,100,61,77,97,116,104,46,115,113,114,116,40,104,41,44,112,61,40,102,42,102,45,97,42,97,43,66,101,42,104,41,47,40,50,42,97,42,79,101,42,100,41,44,118,61,40,102,42,102,45,97,42,97,45,66,101,42,104,41,47,40,50,42,102,42,79,101,42,100,41,44,103,61,77,97,116,104,46,108,111,103,40,77,97,116,104,46,115,113,114,116,40,112,42,112,43,49,41,45,112,41,44,121,61,77,97,116,104,46,108,111,103,40,77,97,116,104,46,115,113,114,116,40,118,42,118,43,49,41,45,118,41,59,114,61,40,121,45,103,41,47,85,101,44,101,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,116,42,114,44,101,61,89,101,40,103,41,44,117,61,97,47,40,79,101,42,100,41,42,40,101,42,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,40,40,116,61,77,97,116,104,46,101,120,112,40,50,42,116,41,41,45,49,41,47,40,116,43,49,41,125,40,85,101,42,110,43,103,41,45,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,40,40,116,61,77,97,116,104,46,101,120,112,40,116,41,41,45,49,47,116,41,47,50,125,40,103,41,41,59,114,101,116,117,114,110,91,105,43,117,42,115,44,111,43,117,42,108,44,97,42,101,47,89,101,40,85,101,42,110,43,103,41,93,125,125,114,101,116,117,114,110,32,101,46,100,117,114,97,116,105,111,110,61,49,101,51,42,114,44,101,125,102,117,110,99,116,105,111,110,32,72,101,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,110,44,101,41,123,118,97,114,32,114,61,116,40,40,110,61,84,110,40,110,41,41,46,104,44,40,101,61,84,110,40,101,41,41,46,104,41,44,105,61,108,101,40,110,46,115,44,101,46,115,41,44,111,61,108,101,40,110,46,108,44,101,46,108,41,44,97,61,108,101,40,110,46,111,112,97,99,105,116,121,44,101,46,111,112,97,99,105,116,121,41,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,46,104,61,114,40,116,41,44,110,46,115,61,105,40,116,41,44,110,46,108,61,111,40,116,41,44,110,46,111,112,97,99,105,116,121,61,97,40,116,41,44,110,43,34,34,125,125,125,118,97,114,32,106,101,61,72,101,40,102,101,41,44,88,101,61,72,101,40,108,101,41,59,102,117,110,99,116,105,111,110,32,86,101,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,110,44,101,41,123,118,97,114,32,114,61,116,40,40,110,61,88,110,40,110,41,41,46,104,44,40,101,61,88,110,40,101,41,41,46,104,41,44,105,61,108,101,40,110,46,99,44,101,46,99,41,44,111,61,108,101,40,110,46,108,44,101,46,108,41,44,97,61,108,101,40,110,46,111,112,97,99,105,116,121,44,101,46,111,112,97,99,105,116,121,41,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,46,104,61,114,40,116,41,44,110,46,99,61,105,40,116,41,44,110,46,108,61,111,40,116,41,44,110,46,111,112,97,99,105,116,121,61,97,40,116,41,44,110,43,34,34,125,125,125,118,97,114,32,71,101,61,86,101,40,102,101,41,44,36,101,61,86,101,40,108,101,41,59,102,117,110,99,116,105,111,110,32,87,101,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,110,40,101,41,123,102,117,110,99,116,105,111,110,32,114,40,110,44,114,41,123,118,97,114,32,105,61,116,40,40,110,61,101,101,40,110,41,41,46,104,44,40,114,61,101,101,40,114,41,41,46,104,41,44,111,61,108,101,40,110,46,115,44,114,46,115,41,44,97,61,108,101,40,110,46,108,44,114,46,108,41,44,117,61,108,101,40,110,46,111,112,97,99,105,116,121,44,114,46,111,112,97,99,105,116,121,41,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,46,104,61,105,40,116,41,44,110,46,115,61,111,40,116,41,44,110,46,108,61,97,40,77,97,116,104,46,112,111,119,40,116,44,101,41,41,44,110,46,111,112,97,99,105,116,121,61,117,40,116,41,44,110,43,34,34,125,125,114,101,116,117,114,110,32,101,61,43,101,44,114,46,103,97,109,109,97,61,110,44,114,125,40,49,41,125,118,97,114,32,90,101,61,87,101,40,102,101,41,44,81,101,61,87,101,40,108,101,41,59,118,97,114,32,75,101,44,74,101,44,116,114,61,48,44,110,114,61,48,44,101,114,61,48,44,114,114,61,49,101,51,44,105,114,61,48,44,111,114,61,48,44,97,114,61,48,44,117,114,61,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,112,101,114,102,111,114,109,97,110,99,101,38,38,112,101,114,102,111,114,109,97,110,99,101,46,110,111,119,63,112,101,114,102,111,114,109,97,110,99,101,58,68,97,116,101,44,99,114,61,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,119,105,110,100,111,119,38,38,119,105,110,100,111,119,46,114,101,113,117,101,115,116,65,110,105,109,97,116,105,111,110,70,114,97,109,101,63,119,105,110,100,111,119,46,114,101,113,117,101,115,116,65,110,105,109,97,116,105,111,110,70,114,97,109,101,46,98,105,110,100,40,119,105,110,100,111,119,41,58,102,117,110,99,116,105,111,110,40,116,41,123,115,101,116,84,105,109,101,111,117,116,40,116,44,49,55,41,125,59,102,117,110,99,116,105,111,110,32,102,114,40,41,123,114,101,116,117,114,110,32,111,114,124,124,40,99,114,40,115,114,41,44,111,114,61,117,114,46,110,111,119,40,41,43,97,114,41,125,102,117,110,99,116,105,111,110,32,115,114,40,41,123,111,114,61,48,125,102,117,110,99,116,105,111,110,32,108,114,40,41,123,116,104,105,115,46,95,99,97,108,108,61,116,104,105,115,46,95,116,105,109,101,61,116,104,105,115,46,95,110,101,120,116,61,110,117,108,108,125,102,117,110,99,116,105,111,110,32,104,114,40,116,44,110,44,101,41,123,118,97,114,32,114,61,110,101,119,32,108,114,59,114,101,116,117,114,110,32,114,46,114,101,115,116,97,114,116,40,116,44,110,44,101,41,44,114,125,102,117,110,99,116,105,111,110,32,100,114,40,41,123,102,114,40,41,44,43,43,116,114,59,102,111,114,40,118,97,114,32,116,44,110,61,75,101,59,110,59,41,40,116,61,111,114,45,110,46,95,116,105,109,101,41,62,61,48,38,38,110,46,95,99,97,108,108,46,99,97,108,108,40,110,117,108,108,44,116,41,44,110,61,110,46,95,110,101,120,116,59,45,45,116,114,125,102,117,110,99,116,105,111,110,32,112,114,40,41,123,111,114,61,40,105,114,61,117,114,46,110,111,119,40,41,41,43,97,114,44,116,114,61,110,114,61,48,59,116,114,121,123,100,114,40,41,125,102,105,110,97,108,108,121,123,116,114,61,48,44,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,44,110,44,101,61,75,101,44,114,61,49,47,48,59,102,111,114,40,59,101,59,41,101,46,95,99,97,108,108,63,40,114,62,101,46,95,116,105,109,101,38,38,40,114,61,101,46,95,116,105,109,101,41,44,116,61,101,44,101,61,101,46,95,110,101,120,116,41,58,40,110,61,101,46,95,110,101,120,116,44,101,46,95,110,101,120,116,61,110,117,108,108,44,101,61,116,63,116,46,95,110,101,120,116,61,110,58,75,101,61,110,41,59,74,101,61,116,44,103,114,40,114,41,125,40,41,44,111,114,61,48,125,125,102,117,110,99,116,105,111,110,32,118,114,40,41,123,118,97,114,32,116,61,117,114,46,110,111,119,40,41,44,110,61,116,45,105,114,59,110,62,114,114,38,38,40,97,114,45,61,110,44,105,114,61,116,41,125,102,117,110,99,116,105,111,110,32,103,114,40,116,41,123,116,114,124,124,40,110,114,38,38,40,110,114,61,99,108,101,97,114,84,105,109,101,111,117,116,40,110,114,41,41,44,116,45,111,114,62,50,52,63,40,116,60,49,47,48,38,38,40,110,114,61,115,101,116,84,105,109,101,111,117,116,40,112,114,44,116,45,117,114,46,110,111,119,40,41,45,97,114,41,41,44,101,114,38,38,40,101,114,61,99,108,101,97,114,73,110,116,101,114,118,97,108,40,101,114,41,41,41,58,40,101,114,124,124,40,105,114,61,117,114,46,110,111,119,40,41,44,101,114,61,115,101,116,73,110,116,101,114,118,97,108,40,118,114,44,114,114,41,41,44,116,114,61,49,44,99,114,40,112,114,41,41,41,125,102,117,110,99,116,105,111,110,32,121,114,40,116,44,110,44,101,41,123,118,97,114,32,114,61,110,101,119,32,108,114,59,114,101,116,117,114,110,32,110,61,110,117,108,108,61,61,110,63,48,58,43,110,44,114,46,114,101,115,116,97,114,116,40,102,117,110,99,116,105,111,110,40,101,41,123,114,46,115,116,111,112,40,41,44,116,40,101,43,110,41,125,44,110,44,101,41,44,114,125,108,114,46,112,114,111,116,111,116,121,112,101,61,104,114,46,112,114,111,116,111,116,121,112,101,61,123,99,111,110,115,116,114,117,99,116,111,114,58,108,114,44,114,101,115,116,97,114,116,58,102,117,110,99,116,105,111,110,40,116,44,110,44,101,41,123,105,102,40,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,116,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,99,97,108,108,98,97,99,107,32,105,115,32,110,111,116,32,97,32,102,117,110,99,116,105,111,110,34,41,59,101,61,40,110,117,108,108,61,61,101,63,102,114,40,41,58,43,101,41,43,40,110,117,108,108,61,61,110,63,48,58,43,110,41,44,116,104,105,115,46,95,110,101,120,116,124,124,74,101,61,61,61,116,104,105,115,124,124,40,74,101,63,74,101,46,95,110,101,120,116,61,116,104,105,115,58,75,101,61,116,104,105,115,44,74,101,61,116,104,105,115,41,44,116,104,105,115,46,95,99,97,108,108,61,116,44,116,104,105,115,46,95,116,105,109,101,61,101,44,103,114,40,41,125,44,115,116,111,112,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,99,97,108,108,38,38,40,116,104,105,115,46,95,99,97,108,108,61,110,117,108,108,44,116,104,105,115,46,95,116,105,109,101,61,49,47,48,44,103,114,40,41,41,125,125,59,118,97,114,32,95,114,61,73,40,34,115,116,97,114,116,34,44,34,101,110,100,34,44,34,99,97,110,99,101,108,34,44,34,105,110,116,101,114,114,117,112,116,34,41,44,98,114,61,91,93,44,109,114,61,48,44,120,114,61,49,44,119,114,61,50,44,77,114,61,51,44,78,114,61,52,44,84,114,61,53,44,65,114,61,54,59,102,117,110,99,116,105,111,110,32,83,114,40,116,44,110,44,101,44,114,44,105,44,111,41,123,118,97,114,32,97,61,116,46,95,95,116,114,97,110,115,105,116,105,111,110,59,105,102,40,97,41,123,105,102,40,101,32,105,110,32,97,41,114,101,116,117,114,110,125,101,108,115,101,32,116,46,95,95,116,114,97,110,115,105,116,105,111,110,61,123,125,59,33,102,117,110,99,116,105,111,110,40,116,44,110,44,101,41,123,118,97,114,32,114,44,105,61,116,46,95,95,116,114,97,110,115,105,116,105,111,110,59,102,117,110,99,116,105,111,110,32,111,40,99,41,123,118,97,114,32,102,44,115,44,108,44,104,59,105,102,40,101,46,115,116,97,116,101,33,61,61,120,114,41,114,101,116,117,114,110,32,117,40,41,59,102,111,114,40,102,32,105,110,32,105,41,105,102,40,40,104,61,105,91,102,93,41,46,110,97,109,101,61,61,61,101,46,110,97,109,101,41,123,105,102,40,104,46,115,116,97,116,101,61,61,61,77,114,41,114,101,116,117,114,110,32,121,114,40,111,41,59,104,46,115,116,97,116,101,61,61,61,78,114,63,40,104,46,115,116,97,116,101,61,65,114,44,104,46,116,105,109,101,114,46,115,116,111,112,40,41,44,104,46,111,110,46,99,97,108,108,40,34,105,110,116,101,114,114,117,112,116,34,44,116,44,116,46,95,95,100,97,116,97,95,95,44,104,46,105,110,100,101,120,44,104,46,103,114,111,117,112,41,44,100,101,108,101,116,101,32,105,91,102,93,41,58,43,102,60,110,38,38,40,104,46,115,116,97,116,101,61,65,114,44,104,46,116,105,109,101,114,46,115,116,111,112,40,41,44,104,46,111,110,46,99,97,108,108,40,34,99,97,110,99,101,108,34,44,116,44,116,46,95,95,100,97,116,97,95,95,44,104,46,105,110,100,101,120,44,104,46,103,114,111,117,112,41,44,100,101,108,101,116,101,32,105,91,102,93,41,125,105,102,40,121,114,40,102,117,110,99,116,105,111,110,40,41,123,101,46,115,116,97,116,101,61,61,61,77,114,38,38,40,101,46,115,116,97,116,101,61,78,114,44,101,46,116,105,109,101,114,46,114,101,115,116,97,114,116,40,97,44,101,46,100,101,108,97,121,44,101,46,116,105,109,101,41,44,97,40,99,41,41,125,41,44,101,46,115,116,97,116,101,61,119,114,44,101,46,111,110,46,99,97,108,108,40,34,115,116,97,114,116,34,44,116,44,116,46,95,95,100,97,116,97,95,95,44,101,46,105,110,100,101,120,44,101,46,103,114,111,117,112,41,44,101,46,115,116,97,116,101,61,61,61,119,114,41,123,102,111,114,40,101,46,115,116,97,116,101,61,77,114,44,114,61,110,101,119,32,65,114,114,97,121,40,108,61,101,46,116,119,101,101,110,46,108,101,110,103,116,104,41,44,102,61,48,44,115,61,45,49,59,102,60,108,59,43,43,102,41,40,104,61,101,46,116,119,101,101,110,91,102,93,46,118,97,108,117,101,46,99,97,108,108,40,116,44,116,46,95,95,100,97,116,97,95,95,44,101,46,105,110,100,101,120,44,101,46,103,114,111,117,112,41,41,38,38,40,114,91,43,43,115,93,61,104,41,59,114,46,108,101,110,103,116,104,61,115,43,49,125,125,102,117,110,99,116,105,111,110,32,97,40,110,41,123,102,111,114,40,118,97,114,32,105,61,110,60,101,46,100,117,114,97,116,105,111,110,63,101,46,101,97,115,101,46,99,97,108,108,40,110,117,108,108,44,110,47,101,46,100,117,114,97,116,105,111,110,41,58,40,101,46,116,105,109,101,114,46,114,101,115,116,97,114,116,40,117,41,44,101,46,115,116,97,116,101,61,84,114,44,49,41,44,111,61,45,49,44,97,61,114,46,108,101,110,103,116,104,59,43,43,111,60,97,59,41,114,91,111,93,46,99,97,108,108,40,116,44,105,41,59,101,46,115,116,97,116,101,61,61,61,84,114,38,38,40,101,46,111,110,46,99,97,108,108,40,34,101,110,100,34,44,116,44,116,46,95,95,100,97,116,97,95,95,44,101,46,105,110,100,101,120,44,101,46,103,114,111,117,112,41,44,117,40,41,41,125,102,117,110,99,116,105,111,110,32,117,40,41,123,102,111,114,40,118,97,114,32,114,32,105,110,32,101,46,115,116,97,116,101,61,65,114,44,101,46,116,105,109,101,114,46,115,116,111,112,40,41,44,100,101,108,101,116,101,32,105,91,110,93,44,105,41,114,101,116,117,114,110,59,100,101,108,101,116,101,32,116,46,95,95,116,114,97,110,115,105,116,105,111,110,125,105,91,110,93,61,101,44,101,46,116,105,109,101,114,61,104,114,40,102,117,110,99,116,105,111,110,40,116,41,123,101,46,115,116,97,116,101,61,120,114,44,101,46,116,105,109,101,114,46,114,101,115,116,97,114,116,40,111,44,101,46,100,101,108,97,121,44,101,46,116,105,109,101,41,44,101,46,100,101,108,97,121,60,61,116,38,38,111,40,116,45,101,46,100,101,108,97,121,41,125,44,48,44,101,46,116,105,109,101,41,125,40,116,44,101,44,123,110,97,109,101,58,110,44,105,110,100,101,120,58,114,44,103,114,111,117,112,58,105,44,111,110,58,95,114,44,116,119,101,101,110,58,98,114,44,116,105,109,101,58,111,46,116,105,109,101,44,100,101,108,97,121,58,111,46,100,101,108,97,121,44,100,117,114,97,116,105,111,110,58,111,46,100,117,114,97,116,105,111,110,44,101,97,115,101,58,111,46,101,97,115,101,44,116,105,109,101,114,58,110,117,108,108,44,115,116,97,116,101,58,109,114,125,41,125,102,117,110,99,116,105,111,110,32,107,114,40,116,44,110,41,123,118,97,114,32,101,61,67,114,40,116,44,110,41,59,105,102,40,101,46,115,116,97,116,101,62,109,114,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,116,111,111,32,108,97,116,101,59,32,97,108,114,101,97,100,121,32,115,99,104,101,100,117,108,101,100,34,41,59,114,101,116,117,114,110,32,101,125,102,117,110,99,116,105,111,110,32,69,114,40,116,44,110,41,123,118,97,114,32,101,61,67,114,40,116,44,110,41,59,105,102,40,101,46,115,116,97,116,101,62,77,114,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,116,111,111,32,108,97,116,101,59,32,97,108,114,101,97,100,121,32,114,117,110,110,105,110,103,34,41,59,114,101,116,117,114,110,32,101,125,102,117,110,99,116,105,111,110,32,67,114,40,116,44,110,41,123,118,97,114,32,101,61,116,46,95,95,116,114,97,110,115,105,116,105,111,110,59,105,102,40,33,101,124,124,33,40,101,61,101,91,110,93,41,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,116,114,97,110,115,105,116,105,111,110,32,110,111,116,32,102,111,117,110,100,34,41,59,114,101,116,117,114,110,32,101,125,102,117,110,99,116,105,111,110,32,80,114,40,116,44,110,41,123,118,97,114,32,101,44,114,44,105,44,111,61,116,46,95,95,116,114,97,110,115,105,116,105,111,110,44,97,61,33,48,59,105,102,40,111,41,123,102,111,114,40,105,32,105,110,32,110,61,110,117,108,108,61,61,110,63,110,117,108,108,58,110,43,34,34,44,111,41,40,101,61,111,91,105,93,41,46,110,97,109,101,61,61,61,110,63,40,114,61,101,46,115,116,97,116,101,62,119,114,38,38,101,46,115,116,97,116,101,60,84,114,44,101,46,115,116,97,116,101,61,65,114,44,101,46,116,105,109,101,114,46,115,116,111,112,40,41,44,101,46,111,110,46,99,97,108,108,40,114,63,34,105,110,116,101,114,114,117,112,116,34,58,34,99,97,110,99,101,108,34,44,116,44,116,46,95,95,100,97,116,97,95,95,44,101,46,105,110,100,101,120,44,101,46,103,114,111,117,112,41,44,100,101,108,101,116,101,32,111,91,105,93,41,58,97,61,33,49,59,97,38,38,100,101,108,101,116,101,32,116,46,95,95,116,114,97,110,115,105,116,105,111,110,125,125,102,117,110,99,116,105,111,110,32,122,114,40,116,44,110,44,101,41,123,118,97,114,32,114,61,116,46,95,105,100,59,114,101,116,117,114,110,32,116,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,69,114,40,116,104,105,115,44,114,41,59,40,116,46,118,97,108,117,101,124,124,40,116,46,118,97,108,117,101,61,123,125,41,41,91,110,93,61,101,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,125,41,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,67,114,40,116,44,114,41,46,118,97,108,117,101,91,110,93,125,125,102,117,110,99,116,105,111,110,32,82,114,40,116,44,110,41,123,118,97,114,32,101,59,114,101,116,117,114,110,40,34,110,117,109,98,101,114,34,61,61,116,121,112,101,111,102,32,110,63,109,101,58,110,32,105,110,115,116,97,110,99,101,111,102,32,112,110,63,104,101,58,40,101,61,112,110,40,110,41,41,63,40,110,61,101,44,104,101,41,58,78,101,41,40,116,44,110,41,125,118,97,114,32,68,114,61,122,116,46,112,114,111,116,111,116,121,112,101,46,99,111,110,115,116,114,117,99,116,111,114,59,102,117,110,99,116,105,111,110,32,113,114,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,115,116,121,108,101,46,114,101,109,111,118,101,80,114,111,112,101,114,116,121,40,116,41,125,125,118,97,114,32,76,114,61,48,59,102,117,110,99,116,105,111,110,32,85,114,40,116,44,110,44,101,44,114,41,123,116,104,105,115,46,95,103,114,111,117,112,115,61,116,44,116,104,105,115,46,95,112,97,114,101,110,116,115,61,110,44,116,104,105,115,46,95,110,97,109,101,61,101,44,116,104,105,115,46,95,105,100,61,114,125,102,117,110,99,116,105,111,110,32,79,114,40,116,41,123,114,101,116,117,114,110,32,122,116,40,41,46,116,114,97,110,115,105,116,105,111,110,40,116,41,125,102,117,110,99,116,105,111,110,32,66,114,40,41,123,114,101,116,117,114,110,43,43,76,114,125,118,97,114,32,70,114,61,122,116,46,112,114,111,116,111,116,121,112,101,59,102,117,110,99,116,105,111,110,32,89,114,40,116,41,123,114,101,116,117,114,110,40,40,116,42,61,50,41,60,61,49,63,116,42,116,58,45,45,116,42,40,50,45,116,41,43,49,41,47,50,125,102,117,110,99,116,105,111,110,32,73,114,40,116,41,123,114,101,116,117,114,110,40,40,116,42,61,50,41,60,61,49,63,116,42,116,42,116,58,40,116,45,61,50,41,42,116,42,116,43,50,41,47,50,125,85,114,46,112,114,111,116,111,116,121,112,101,61,79,114,46,112,114,111,116,111,116,121,112,101,61,123,99,111,110,115,116,114,117,99,116,111,114,58,85,114,44,115,101,108,101,99,116,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,116,104,105,115,46,95,110,97,109,101,44,101,61,116,104,105,115,46,95,105,100,59,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,116,38,38,40,116,61,75,40,116,41,41,59,102,111,114,40,118,97,114,32,114,61,116,104,105,115,46,95,103,114,111,117,112,115,44,105,61,114,46,108,101,110,103,116,104,44,111,61,110,101,119,32,65,114,114,97,121,40,105,41,44,97,61,48,59,97,60,105,59,43,43,97,41,102,111,114,40,118,97,114,32,117,44,99,44,102,61,114,91,97,93,44,115,61,102,46,108,101,110,103,116,104,44,108,61,111,91,97,93,61,110,101,119,32,65,114,114,97,121,40,115,41,44,104,61,48,59,104,60,115,59,43,43,104,41,40,117,61,102,91,104,93,41,38,38,40,99,61,116,46,99,97,108,108,40,117,44,117,46,95,95,100,97,116,97,95,95,44,104,44,102,41,41,38,38,40,34,95,95,100,97,116,97,95,95,34,105,110,32,117,38,38,40,99,46,95,95,100,97,116,97,95,95,61,117,46,95,95,100,97,116,97,95,95,41,44,108,91,104,93,61,99,44,83,114,40,108,91,104,93,44,110,44,101,44,104,44,108,44,67,114,40,117,44,101,41,41,41,59,114,101,116,117,114,110,32,110,101,119,32,85,114,40,111,44,116,104,105,115,46,95,112,97,114,101,110,116,115,44,110,44,101,41,125,44,115,101,108,101,99,116,65,108,108,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,116,104,105,115,46,95,110,97,109,101,44,101,61,116,104,105,115,46,95,105,100,59,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,116,38,38,40,116,61,116,116,40,116,41,41,59,102,111,114,40,118,97,114,32,114,61,116,104,105,115,46,95,103,114,111,117,112,115,44,105,61,114,46,108,101,110,103,116,104,44,111,61,91,93,44,97,61,91,93,44,117,61,48,59,117,60,105,59,43,43,117,41,102,111,114,40,118,97,114,32,99,44,102,61,114,91,117,93,44,115,61,102,46,108,101,110,103,116,104,44,108,61,48,59,108,60,115,59,43,43,108,41,105,102,40,99,61,102,91,108,93,41,123,102,111,114,40,118,97,114,32,104,44,100,61,116,46,99,97,108,108,40,99,44,99,46,95,95,100,97,116,97,95,95,44,108,44,102,41,44,112,61,67,114,40,99,44,101,41,44,118,61,48,44,103,61,100,46,108,101,110,103,116,104,59,118,60,103,59,43,43,118,41,40,104,61,100,91,118,93,41,38,38,83,114,40,104,44,110,44,101,44,118,44,100,44,112,41,59,111,46,112,117,115,104,40,100,41,44,97,46,112,117,115,104,40,99,41,125,114,101,116,117,114,110,32,110,101,119,32,85,114,40,111,44,97,44,110,44,101,41,125,44,102,105,108,116,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,116,38,38,40,116,61,110,116,40,116,41,41,59,102,111,114,40,118,97,114,32,110,61,116,104,105,115,46,95,103,114,111,117,112,115,44,101,61,110,46,108,101,110,103,116,104,44,114,61,110,101,119,32,65,114,114,97,121,40,101,41,44,105,61,48,59,105,60,101,59,43,43,105,41,102,111,114,40,118,97,114,32,111,44,97,61,110,91,105,93,44,117,61,97,46,108,101,110,103,116,104,44,99,61,114,91,105,93,61,91,93,44,102,61,48,59,102,60,117,59,43,43,102,41,40,111,61,97,91,102,93,41,38,38,116,46,99,97,108,108,40,111,44,111,46,95,95,100,97,116,97,95,95,44,102,44,97,41,38,38,99,46,112,117,115,104,40,111,41,59,114,101,116,117,114,110,32,110,101,119,32,85,114,40,114,44,116,104,105,115,46,95,112,97,114,101,110,116,115,44,116,104,105,115,46,95,110,97,109,101,44,116,104,105,115,46,95,105,100,41,125,44,109,101,114,103,101,58,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,116,46,95,105,100,33,61,61,116,104,105,115,46,95,105,100,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,59,102,111,114,40,118,97,114,32,110,61,116,104,105,115,46,95,103,114,111,117,112,115,44,101,61,116,46,95,103,114,111,117,112,115,44,114,61,110,46,108,101,110,103,116,104,44,105,61,101,46,108,101,110,103,116,104,44,111,61,77,97,116,104,46,109,105,110,40,114,44,105,41,44,97,61,110,101,119,32,65,114,114,97,121,40,114,41,44,117,61,48,59,117,60,111,59,43,43,117,41,102,111,114,40,118,97,114,32,99,44,102,61,110,91,117,93,44,115,61,101,91,117,93,44,108,61,102,46,108,101,110,103,116,104,44,104,61,97,91,117,93,61,110,101,119,32,65,114,114,97,121,40,108,41,44,100,61,48,59,100,60,108,59,43,43,100,41,40,99,61,102,91,100,93,124,124,115,91,100,93,41,38,38,40,104,91,100,93,61,99,41,59,102,111,114,40,59,117,60,114,59,43,43,117,41,97,91,117,93,61,110,91,117,93,59,114,101,116,117,114,110,32,110,101,119,32,85,114,40,97,44,116,104,105,115,46,95,112,97,114,101,110,116,115,44,116,104,105,115,46,95,110,97,109,101,44,116,104,105,115,46,95,105,100,41,125,44,115,101,108,101,99,116,105,111,110,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,110,101,119,32,68,114,40,116,104,105,115,46,95,103,114,111,117,112,115,44,116,104,105,115,46,95,112,97,114,101,110,116,115,41,125,44,116,114,97,110,115,105,116,105,111,110,58,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,118,97,114,32,116,61,116,104,105,115,46,95,110,97,109,101,44,110,61,116,104,105,115,46,95,105,100,44,101,61,66,114,40,41,44,114,61,116,104,105,115,46,95,103,114,111,117,112,115,44,105,61,114,46,108,101,110,103,116,104,44,111,61,48,59,111,60,105,59,43,43,111,41,102,111,114,40,118,97,114,32,97,44,117,61,114,91,111,93,44,99,61,117,46,108,101,110,103,116,104,44,102,61,48,59,102,60,99,59,43,43,102,41,105,102,40,97,61,117,91,102,93,41,123,118,97,114,32,115,61,67,114,40,97,44,110,41,59,83,114,40,97,44,116,44,101,44,102,44,117,44,123,116,105,109,101,58,115,46,116,105,109,101,43,115,46,100,101,108,97,121,43,115,46,100,117,114,97,116,105,111,110,44,100,101,108,97,121,58,48,44,100,117,114,97,116,105,111,110,58,115,46,100,117,114,97,116,105,111,110,44,101,97,115,101,58,115,46,101,97,115,101,125,41,125,114,101,116,117,114,110,32,110,101,119,32,85,114,40,114,44,116,104,105,115,46,95,112,97,114,101,110,116,115,44,116,44,101,41,125,44,99,97,108,108,58,70,114,46,99,97,108,108,44,110,111,100,101,115,58,70,114,46,110,111,100,101,115,44,110,111,100,101,58,70,114,46,110,111,100,101,44,115,105,122,101,58,70,114,46,115,105,122,101,44,101,109,112,116,121,58,70,114,46,101,109,112,116,121,44,101,97,99,104,58,70,114,46,101,97,99,104,44,111,110,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,61,116,104,105,115,46,95,105,100,59,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,60,50,63,67,114,40,116,104,105,115,46,110,111,100,101,40,41,44,101,41,46,111,110,46,111,110,40,116,41,58,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,116,44,110,44,101,41,123,118,97,114,32,114,44,105,44,111,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,40,116,43,34,34,41,46,116,114,105,109,40,41,46,115,112,108,105,116,40,47,94,124,92,115,43,47,41,46,101,118,101,114,121,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,116,46,105,110,100,101,120,79,102,40,34,46,34,41,59,114,101,116,117,114,110,32,110,62,61,48,38,38,40,116,61,116,46,115,108,105,99,101,40,48,44,110,41,41,44,33,116,124,124,34,115,116,97,114,116,34,61,61,61,116,125,41,125,40,110,41,63,107,114,58,69,114,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,97,61,111,40,116,104,105,115,44,116,41,44,117,61,97,46,111,110,59,117,33,61,61,114,38,38,40,105,61,40,114,61,117,41,46,99,111,112,121,40,41,41,46,111,110,40,110,44,101,41,44,97,46,111,110,61,105,125,125,40,101,44,116,44,110,41,41,125,44,97,116,116,114,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,61,87,40,116,41,44,114,61,34,116,114,97,110,115,102,111,114,109,34,61,61,61,101,63,76,101,58,82,114,59,114,101,116,117,114,110,32,116,104,105,115,46,97,116,116,114,84,119,101,101,110,40,116,44,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,110,63,40,101,46,108,111,99,97,108,63,102,117,110,99,116,105,111,110,40,116,44,110,44,101,41,123,118,97,114,32,114,44,105,44,111,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,97,44,117,44,99,61,101,40,116,104,105,115,41,59,105,102,40,110,117,108,108,33,61,99,41,114,101,116,117,114,110,40,97,61,116,104,105,115,46,103,101,116,65,116,116,114,105,98,117,116,101,78,83,40,116,46,115,112,97,99,101,44,116,46,108,111,99,97,108,41,41,61,61,61,40,117,61,99,43,34,34,41,63,110,117,108,108,58,97,61,61,61,114,38,38,117,61,61,61,105,63,111,58,40,105,61,117,44,111,61,110,40,114,61,97,44,99,41,41,59,116,104,105,115,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,78,83,40,116,46,115,112,97,99,101,44,116,46,108,111,99,97,108,41,125,125,58,102,117,110,99,116,105,111,110,40,116,44,110,44,101,41,123,118,97,114,32,114,44,105,44,111,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,97,44,117,44,99,61,101,40,116,104,105,115,41,59,105,102,40,110,117,108,108,33,61,99,41,114,101,116,117,114,110,40,97,61,116,104,105,115,46,103,101,116,65,116,116,114,105,98,117,116,101,40,116,41,41,61,61,61,40,117,61,99,43,34,34,41,63,110,117,108,108,58,97,61,61,61,114,38,38,117,61,61,61,105,63,111,58,40,105,61,117,44,111,61,110,40,114,61,97,44,99,41,41,59,116,104,105,115,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,40,116,41,125,125,41,40,101,44,114,44,122,114,40,116,104,105,115,44,34,97,116,116,114,46,34,43,116,44,110,41,41,58,110,117,108,108,61,61,110,63,40,101,46,108,111,99,97,108,63,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,78,83,40,116,46,115,112,97,99,101,44,116,46,108,111,99,97,108,41,125,125,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,40,116,41,125,125,41,40,101,41,58,40,101,46,108,111,99,97,108,63,102,117,110,99,116,105,111,110,40,116,44,110,44,101,41,123,118,97,114,32,114,44,105,44,111,61,101,43,34,34,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,97,61,116,104,105,115,46,103,101,116,65,116,116,114,105,98,117,116,101,78,83,40,116,46,115,112,97,99,101,44,116,46,108,111,99,97,108,41,59,114,101,116,117,114,110,32,97,61,61,61,111,63,110,117,108,108,58,97,61,61,61,114,63,105,58,105,61,110,40,114,61,97,44,101,41,125,125,58,102,117,110,99,116,105,111,110,40,116,44,110,44,101,41,123,118,97,114,32,114,44,105,44,111,61,101,43,34,34,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,97,61,116,104,105,115,46,103,101,116,65,116,116,114,105,98,117,116,101,40,116,41,59,114,101,116,117,114,110,32,97,61,61,61,111,63,110,117,108,108,58,97,61,61,61,114,63,105,58,105,61,110,40,114,61,97,44,101,41,125,125,41,40,101,44,114,44,110,41,41,125,44,97,116,116,114,84,119,101,101,110,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,61,34,97,116,116,114,46,34,43,116,59,105,102,40,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,60,50,41,114,101,116,117,114,110,40,101,61,116,104,105,115,46,116,119,101,101,110,40,101,41,41,38,38,101,46,95,118,97,108,117,101,59,105,102,40,110,117,108,108,61,61,110,41,114,101,116,117,114,110,32,116,104,105,115,46,116,119,101,101,110,40,101,44,110,117,108,108,41,59,105,102,40,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,110,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,59,118,97,114,32,114,61,87,40,116,41,59,114,101,116,117,114,110,32,116,104,105,115,46,116,119,101,101,110,40,101,44,40,114,46,108,111,99,97,108,63,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,44,114,59,102,117,110,99,116,105,111,110,32,105,40,41,123,118,97,114,32,105,61,110,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,59,114,101,116,117,114,110,32,105,33,61,61,114,38,38,40,101,61,40,114,61,105,41,38,38,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,115,101,116,65,116,116,114,105,98,117,116,101,78,83,40,116,46,115,112,97,99,101,44,116,46,108,111,99,97,108,44,110,46,99,97,108,108,40,116,104,105,115,44,101,41,41,125,125,40,116,44,105,41,41,44,101,125,114,101,116,117,114,110,32,105,46,95,118,97,108,117,101,61,110,44,105,125,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,44,114,59,102,117,110,99,116,105,111,110,32,105,40,41,123,118,97,114,32,105,61,110,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,59,114,101,116,117,114,110,32,105,33,61,61,114,38,38,40,101,61,40,114,61,105,41,38,38,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,115,101,116,65,116,116,114,105,98,117,116,101,40,116,44,110,46,99,97,108,108,40,116,104,105,115,44,101,41,41,125,125,40,116,44,105,41,41,44,101,125,114,101,116,117,114,110,32,105,46,95,118,97,108,117,101,61,110,44,105,125,41,40,114,44,110,41,41,125,44,115,116,121,108,101,58,102,117,110,99,116,105,111,110,40,116,44,110,44,101,41,123,118,97,114,32,114,61,34,116,114,97,110,115,102,111,114,109,34,61,61,40,116,43,61,34,34,41,63,113,101,58,82,114,59,114,101,116,117,114,110,32,110,117,108,108,61,61,110,63,116,104,105,115,46,115,116,121,108,101,84,119,101,101,110,40,116,44,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,44,114,44,105,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,111,61,102,116,40,116,104,105,115,44,116,41,44,97,61,40,116,104,105,115,46,115,116,121,108,101,46,114,101,109,111,118,101,80,114,111,112,101,114,116,121,40,116,41,44,102,116,40,116,104,105,115,44,116,41,41,59,114,101,116,117,114,110,32,111,61,61,61,97,63,110,117,108,108,58,111,61,61,61,101,38,38,97,61,61,61,114,63,105,58,105,61,110,40,101,61,111,44,114,61,97,41,125,125,40,116,44,114,41,41,46,111,110,40,34,101,110,100,46,115,116,121,108,101,46,34,43,116,44,113,114,40,116,41,41,58,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,110,63,116,104,105,115,46,115,116,121,108,101,84,119,101,101,110,40,116,44,102,117,110,99,116,105,111,110,40,116,44,110,44,101,41,123,118,97,114,32,114,44,105,44,111,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,97,61,102,116,40,116,104,105,115,44,116,41,44,117,61,101,40,116,104,105,115,41,44,99,61,117,43,34,34,59,114,101,116,117,114,110,32,110,117,108,108,61,61,117,38,38,40,116,104,105,115,46,115,116,121,108,101,46,114,101,109,111,118,101,80,114,111,112,101,114,116,121,40,116,41,44,99,61,117,61,102,116,40,116,104,105,115,44,116,41,41,44,97,61,61,61,99,63,110,117,108,108,58,97,61,61,61,114,38,38,99,61,61,61,105,63,111,58,40,105,61,99,44,111,61,110,40,114,61,97,44,117,41,41,125,125,40,116,44,114,44,122,114,40,116,104,105,115,44,34,115,116,121,108,101,46,34,43,116,44,110,41,41,41,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,44,114,44,105,44,111,44,97,61,34,115,116,121,108,101,46,34,43,110,44,117,61,34,101,110,100,46,34,43,97,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,99,61,69,114,40,116,104,105,115,44,116,41,44,102,61,99,46,111,110,44,115,61,110,117,108,108,61,61,99,46,118,97,108,117,101,91,97,93,63,111,124,124,40,111,61,113,114,40,110,41,41,58,118,111,105,100,32,48,59,102,61,61,61,101,38,38,105,61,61,61,115,124,124,40,114,61,40,101,61,102,41,46,99,111,112,121,40,41,41,46,111,110,40,117,44,105,61,115,41,44,99,46,111,110,61,114,125,125,40,116,104,105,115,46,95,105,100,44,116,41,41,58,116,104,105,115,46,115,116,121,108,101,84,119,101,101,110,40,116,44,102,117,110,99,116,105,111,110,40,116,44,110,44,101,41,123,118,97,114,32,114,44,105,44,111,61,101,43,34,34,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,97,61,102,116,40,116,104,105,115,44,116,41,59,114,101,116,117,114,110,32,97,61,61,61,111,63,110,117,108,108,58,97,61,61,61,114,63,105,58,105,61,110,40,114,61,97,44,101,41,125,125,40,116,44,114,44,110,41,44,101,41,46,111,110,40,34,101,110,100,46,115,116,121,108,101,46,34,43,116,44,110,117,108,108,41,125,44,115,116,121,108,101,84,119,101,101,110,58,102,117,110,99,116,105,111,110,40,116,44,110,44,101,41,123,118,97,114,32,114,61,34,115,116,121,108,101,46,34,43,40,116,43,61,34,34,41,59,105,102,40,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,60,50,41,114,101,116,117,114,110,40,114,61,116,104,105,115,46,116,119,101,101,110,40,114,41,41,38,38,114,46,95,118,97,108,117,101,59,105,102,40,110,117,108,108,61,61,110,41,114,101,116,117,114,110,32,116,104,105,115,46,116,119,101,101,110,40,114,44,110,117,108,108,41,59,105,102,40,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,110,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,59,114,101,116,117,114,110,32,116,104,105,115,46,116,119,101,101,110,40,114,44,102,117,110,99,116,105,111,110,40,116,44,110,44,101,41,123,118,97,114,32,114,44,105,59,102,117,110,99,116,105,111,110,32,111,40,41,123,118,97,114,32,111,61,110,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,59,114,101,116,117,114,110,32,111,33,61,61,105,38,38,40,114,61,40,105,61,111,41,38,38,102,117,110,99,116,105,111,110,40,116,44,110,44,101,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,114,41,123,116,104,105,115,46,115,116,121,108,101,46,115,101,116,80,114,111,112,101,114,116,121,40,116,44,110,46,99,97,108,108,40,116,104,105,115,44,114,41,44,101,41,125,125,40,116,44,111,44,101,41,41,44,114,125,114,101,116,117,114,110,32,111,46,95,118,97,108,117,101,61,110,44,111,125,40,116,44,110,44,110,117,108,108,61,61,101,63,34,34,58,101,41,41,125,44,116,101,120,116,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,104,105,115,46,116,119,101,101,110,40,34,116,101,120,116,34,44,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,110,61,116,40,116,104,105,115,41,59,116,104,105,115,46,116,101,120,116,67,111,110,116,101,110,116,61,110,117,108,108,61,61,110,63,34,34,58,110,125,125,40,122,114,40,116,104,105,115,44,34,116,101,120,116,34,44,116,41,41,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,116,101,120,116,67,111,110,116,101,110,116,61,116,125,125,40,110,117,108,108,61,61,116,63,34,34,58,116,43,34,34,41,41,125,44,116,101,120,116,84,119,101,101,110,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,34,116,101,120,116,34,59,105,102,40,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,60,49,41,114,101,116,117,114,110,40,110,61,116,104,105,115,46,116,119,101,101,110,40,110,41,41,38,38,110,46,95,118,97,108,117,101,59,105,102,40,110,117,108,108,61,61,116,41,114,101,116,117,114,110,32,116,104,105,115,46,116,119,101,101,110,40,110,44,110,117,108,108,41,59,105,102,40,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,116,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,59,114,101,116,117,114,110,32,116,104,105,115,46,116,119,101,101,110,40,110,44,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,44,101,59,102,117,110,99,116,105,111,110,32,114,40,41,123,118,97,114,32,114,61,116,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,59,114,101,116,117,114,110,32,114,33,61,61,101,38,38,40,110,61,40,101,61,114,41,38,38,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,110,41,123,116,104,105,115,46,116,101,120,116,67,111,110,116,101,110,116,61,116,46,99,97,108,108,40,116,104,105,115,44,110,41,125,125,40,114,41,41,44,110,125,114,101,116,117,114,110,32,114,46,95,118,97,108,117,101,61,116,44,114,125,40,116,41,41,125,44,114,101,109,111,118,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,111,110,40,34,101,110,100,46,114,101,109,111,118,101,34,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,110,61,116,104,105,115,46,112,97,114,101,110,116,78,111,100,101,59,102,111,114,40,118,97,114,32,101,32,105,110,32,116,104,105,115,46,95,95,116,114,97,110,115,105,116,105,111,110,41,105,102,40,43,101,33,61,61,116,41,114,101,116,117,114,110,59,110,38,38,110,46,114,101,109,111,118,101,67,104,105,108,100,40,116,104,105,115,41,125,125,40,116,104,105,115,46,95,105,100,41,41,125,44,116,119,101,101,110,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,61,116,104,105,115,46,95,105,100,59,105,102,40,116,43,61,34,34,44,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,60,50,41,123,102,111,114,40,118,97,114,32,114,44,105,61,67,114,40,116,104,105,115,46,110,111,100,101,40,41,44,101,41,46,116,119,101,101,110,44,111,61,48,44,97,61,105,46,108,101,110,103,116,104,59,111,60,97,59,43,43,111,41,105,102,40,40,114,61,105,91,111,93,41,46,110,97,109,101,61,61,61,116,41,114,101,116,117,114,110,32,114,46,118,97,108,117,101,59,114,101,116,117,114,110,32,110,117,108,108,125,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,40,110,117,108,108,61,61,110,63,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,44,114,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,105,61,69,114,40,116,104,105,115,44,116,41,44,111,61,105,46,116,119,101,101,110,59,105,102,40,111,33,61,61,101,41,102,111,114,40,118,97,114,32,97,61,48,44,117,61,40,114,61,101,61,111,41,46,108,101,110,103,116,104,59,97,60,117,59,43,43,97,41,105,102,40,114,91,97,93,46,110,97,109,101,61,61,61,110,41,123,40,114,61,114,46,115,108,105,99,101,40,41,41,46,115,112,108,105,99,101,40,97,44,49,41,59,98,114,101,97,107,125,105,46,116,119,101,101,110,61,114,125,125,58,102,117,110,99,116,105,111,110,40,116,44,110,44,101,41,123,118,97,114,32,114,44,105,59,105,102,40,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,101,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,111,61,69,114,40,116,104,105,115,44,116,41,44,97,61,111,46,116,119,101,101,110,59,105,102,40,97,33,61,61,114,41,123,105,61,40,114,61,97,41,46,115,108,105,99,101,40,41,59,102,111,114,40,118,97,114,32,117,61,123,110,97,109,101,58,110,44,118,97,108,117,101,58,101,125,44,99,61,48,44,102,61,105,46,108,101,110,103,116,104,59,99,60,102,59,43,43,99,41,105,102,40,105,91,99,93,46,110,97,109,101,61,61,61,110,41,123,105,91,99,93,61,117,59,98,114,101,97,107,125,99,61,61,61,102,38,38,105,46,112,117,115,104,40,117,41,125,111,46,116,119,101,101,110,61,105,125,125,41,40,101,44,116,44,110,41,41,125,44,100,101,108,97,121,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,116,104,105,115,46,95,105,100,59,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,116,104,105,115,46,101,97,99,104,40,40,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,107,114,40,116,104,105,115,44,116,41,46,100,101,108,97,121,61,43,110,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,125,125,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,110,61,43,110,44,102,117,110,99,116,105,111,110,40,41,123,107,114,40,116,104,105,115,44,116,41,46,100,101,108,97,121,61,110,125,125,41,40,110,44,116,41,41,58,67,114,40,116,104,105,115,46,110,111,100,101,40,41,44,110,41,46,100,101,108,97,121,125,44,100,117,114,97,116,105,111,110,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,116,104,105,115,46,95,105,100,59,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,116,104,105,115,46,101,97,99,104,40,40,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,69,114,40,116,104,105,115,44,116,41,46,100,117,114,97,116,105,111,110,61,43,110,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,125,125,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,110,61,43,110,44,102,117,110,99,116,105,111,110,40,41,123,69,114,40,116,104,105,115,44,116,41,46,100,117,114,97,116,105,111,110,61,110,125,125,41,40,110,44,116,41,41,58,67,114,40,116,104,105,115,46,110,111,100,101,40,41,44,110,41,46,100,117,114,97,116,105,111,110,125,44,101,97,115,101,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,116,104,105,115,46,95,105,100,59,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,116,44,110,41,123,105,102,40,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,110,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,69,114,40,116,104,105,115,44,116,41,46,101,97,115,101,61,110,125,125,40,110,44,116,41,41,58,67,114,40,116,104,105,115,46,110,111,100,101,40,41,44,110,41,46,101,97,115,101,125,44,101,110,100,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,44,110,44,101,61,116,104,105,115,44,114,61,101,46,95,105,100,44,105,61,101,46,115,105,122,101,40,41,59,114,101,116,117,114,110,32,110,101,119,32,80,114,111,109,105,115,101,40,102,117,110,99,116,105,111,110,40,111,44,97,41,123,118,97,114,32,117,61,123,118,97,108,117,101,58,97,125,44,99,61,123,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,48,61,61,45,45,105,38,38,111,40,41,125,125,59,101,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,69,114,40,116,104,105,115,44,114,41,44,105,61,101,46,111,110,59,105,33,61,61,116,38,38,40,40,110,61,40,116,61,105,41,46,99,111,112,121,40,41,41,46,95,46,99,97,110,99,101,108,46,112,117,115,104,40,117,41,44,110,46,95,46,105,110,116,101,114,114,117,112,116,46,112,117,115,104,40,117,41,44,110,46,95,46,101,110,100,46,112,117,115,104,40,99,41,41,44,101,46,111,110,61,110,125,41,125,41,125,125,59,118,97,114,32,72,114,61,102,117,110,99,116,105,111,110,32,116,40,110,41,123,102,117,110,99,116,105,111,110,32,101,40,116,41,123,114,101,116,117,114,110,32,77,97,116,104,46,112,111,119,40,116,44,110,41,125,114,101,116,117,114,110,32,110,61,43,110,44,101,46,101,120,112,111,110,101,110,116,61,116,44,101,125,40,51,41,44,106,114,61,102,117,110,99,116,105,111,110,32,116,40,110,41,123,102,117,110,99,116,105,111,110,32,101,40,116,41,123,114,101,116,117,114,110,32,49,45,77,97,116,104,46,112,111,119,40,49,45,116,44,110,41,125,114,101,116,117,114,110,32,110,61,43,110,44,101,46,101,120,112,111,110,101,110,116,61,116,44,101,125,40,51,41,44,88,114,61,102,117,110,99,116,105,111,110,32,116,40,110,41,123,102,117,110,99,116,105,111,110,32,101,40,116,41,123,114,101,116,117,114,110,40,40,116,42,61,50,41,60,61,49,63,77,97,116,104,46,112,111,119,40,116,44,110,41,58,50,45,77,97,116,104,46,112,111,119,40,50,45,116,44,110,41,41,47,50,125,114,101,116,117,114,110,32,110,61,43,110,44,101,46,101,120,112,111,110,101,110,116,61,116,44,101,125,40,51,41,44,86,114,61,77,97,116,104,46,80,73,44,71,114,61,86,114,47,50,59,102,117,110,99,116,105,111,110,32,36,114,40,116,41,123,114,101,116,117,114,110,40,49,45,77,97,116,104,46,99,111,115,40,86,114,42,116,41,41,47,50,125,102,117,110,99,116,105,111,110,32,87,114,40,116,41,123,114,101,116,117,114,110,40,40,116,42,61,50,41,60,61,49,63,77,97,116,104,46,112,111,119,40,50,44,49,48,42,116,45,49,48,41,58,50,45,77,97,116,104,46,112,111,119,40,50,44,49,48,45,49,48,42,116,41,41,47,50,125,102,117,110,99,116,105,111,110,32,90,114,40,116,41,123,114,101,116,117,114,110,40,40,116,42,61,50,41,60,61,49,63,49,45,77,97,116,104,46,115,113,114,116,40,49,45,116,42,116,41,58,77,97,116,104,46,115,113,114,116,40,49,45,40,116,45,61,50,41,42,116,41,43,49,41,47,50,125,118,97,114,32,81,114,61,52,47,49,49,44,75,114,61,54,47,49,49,44,74,114,61,56,47,49,49,44,116,105,61,46,55,53,44,110,105,61,57,47,49,49,44,101,105,61,49,48,47,49,49,44,114,105,61,46,57,51,55,53,44,105,105,61,50,49,47,50,50,44,111,105,61,54,51,47,54,52,44,97,105,61,49,47,81,114,47,81,114,59,102,117,110,99,116,105,111,110,32,117,105,40,116,41,123,114,101,116,117,114,110,40,116,61,43,116,41,60,81,114,63,97,105,42,116,42,116,58,116,60,74,114,63,97,105,42,40,116,45,61,75,114,41,42,116,43,116,105,58,116,60,101,105,63,97,105,42,40,116,45,61,110,105,41,42,116,43,114,105,58,97,105,42,40,116,45,61,105,105,41,42,116,43,111,105,125,118,97,114,32,99,105,61,102,117,110,99,116,105,111,110,32,116,40,110,41,123,102,117,110,99,116,105,111,110,32,101,40,116,41,123,114,101,116,117,114,110,32,116,42,116,42,40,40,110,43,49,41,42,116,45,110,41,125,114,101,116,117,114,110,32,110,61,43,110,44,101,46,111,118,101,114,115,104,111,111,116,61,116,44,101,125,40,49,46,55,48,49,53,56,41,44,102,105,61,102,117,110,99,116,105,111,110,32,116,40,110,41,123,102,117,110,99,116,105,111,110,32,101,40,116,41,123,114,101,116,117,114,110,45,45,116,42,116,42,40,40,110,43,49,41,42,116,43,110,41,43,49,125,114,101,116,117,114,110,32,110,61,43,110,44,101,46,111,118,101,114,115,104,111,111,116,61,116,44,101,125,40,49,46,55,48,49,53,56,41,44,115,105,61,102,117,110,99,116,105,111,110,32,116,40,110,41,123,102,117,110,99,116,105,111,110,32,101,40,116,41,123,114,101,116,117,114,110,40,40,116,42,61,50,41,60,49,63,116,42,116,42,40,40,110,43,49,41,42,116,45,110,41,58,40,116,45,61,50,41,42,116,42,40,40,110,43,49,41,42,116,43,110,41,43,50,41,47,50,125,114,101,116,117,114,110,32,110,61,43,110,44,101,46,111,118,101,114,115,104,111,111,116,61,116,44,101,125,40,49,46,55,48,49,53,56,41,44,108,105,61,50,42,77,97,116,104,46,80,73,44,104,105,61,102,117,110,99,116,105,111,110,32,116,40,110,44,101,41,123,118,97,114,32,114,61,77,97,116,104,46,97,115,105,110,40,49,47,40,110,61,77,97,116,104,46,109,97,120,40,49,44,110,41,41,41,42,40,101,47,61,108,105,41,59,102,117,110,99,116,105,111,110,32,105,40,116,41,123,114,101,116,117,114,110,32,110,42,77,97,116,104,46,112,111,119,40,50,44,49,48,42,45,45,116,41,42,77,97,116,104,46,115,105,110,40,40,114,45,116,41,47,101,41,125,114,101,116,117,114,110,32,105,46,97,109,112,108,105,116,117,100,101,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,40,110,44,101,42,108,105,41,125,44,105,46,112,101,114,105,111,100,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,40,110,44,101,41,125,44,105,125,40,49,44,46,51,41,44,100,105,61,102,117,110,99,116,105,111,110,32,116,40,110,44,101,41,123,118,97,114,32,114,61,77,97,116,104,46,97,115,105,110,40,49,47,40,110,61,77,97,116,104,46,109,97,120,40,49,44,110,41,41,41,42,40,101,47,61,108,105,41,59,102,117,110,99,116,105,111,110,32,105,40,116,41,123,114,101,116,117,114,110,32,49,45,110,42,77,97,116,104,46,112,111,119,40,50,44,45,49,48,42,40,116,61,43,116,41,41,42,77,97,116,104,46,115,105,110,40,40,116,43,114,41,47,101,41,125,114,101,116,117,114,110,32,105,46,97,109,112,108,105,116,117,100,101,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,40,110,44,101,42,108,105,41,125,44,105,46,112,101,114,105,111,100,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,40,110,44,101,41,125,44,105,125,40,49,44,46,51,41,44,112,105,61,102,117,110,99,116,105,111,110,32,116,40,110,44,101,41,123,118,97,114,32,114,61,77,97,116,104,46,97,115,105,110,40,49,47,40,110,61,77,97,116,104,46,109,97,120,40,49,44,110,41,41,41,42,40,101,47,61,108,105,41,59,102,117,110,99,116,105,111,110,32,105,40,116,41,123,114,101,116,117,114,110,40,40,116,61,50,42,116,45,49,41,60,48,63,110,42,77,97,116,104,46,112,111,119,40,50,44,49,48,42,116,41,42,77,97,116,104,46,115,105,110,40,40,114,45,116,41,47,101,41,58,50,45,110,42,77,97,116,104,46,112,111,119,40,50,44,45,49,48,42,116,41,42,77,97,116,104,46,115,105,110,40,40,114,43,116,41,47,101,41,41,47,50,125,114,101,116,117,114,110,32,105,46,97,109,112,108,105,116,117,100,101,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,40,110,44,101,42,108,105,41,125,44,105,46,112,101,114,105,111,100,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,40,110,44,101,41,125,44,105,125,40,49,44,46,51,41,44,118,105,61,123,116,105,109,101,58,110,117,108,108,44,100,101,108,97,121,58,48,44,100,117,114,97,116,105,111,110,58,50,53,48,44,101,97,115,101,58,73,114,125,59,102,117,110,99,116,105,111,110,32,103,105,40,116,44,110,41,123,102,111,114,40,118,97,114,32,101,59,33,40,101,61,116,46,95,95,116,114,97,110,115,105,116,105,111,110,41,124,124,33,40,101,61,101,91,110,93,41,59,41,105,102,40,33,40,116,61,116,46,112,97,114,101,110,116,78,111,100,101,41,41,114,101,116,117,114,110,32,118,105,46,116,105,109,101,61,102,114,40,41,44,118,105,59,114,101,116,117,114,110,32,101,125,122,116,46,112,114,111,116,111,116,121,112,101,46,105,110,116,101,114,114,117,112,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,80,114,40,116,104,105,115,44,116,41,125,41,125,44,122,116,46,112,114,111,116,111,116,121,112,101,46,116,114,97,110,115,105,116,105,111,110,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,44,101,59,116,32,105,110,115,116,97,110,99,101,111,102,32,85,114,63,40,110,61,116,46,95,105,100,44,116,61,116,46,95,110,97,109,101,41,58,40,110,61,66,114,40,41,44,40,101,61,118,105,41,46,116,105,109,101,61,102,114,40,41,44,116,61,110,117,108,108,61,61,116,63,110,117,108,108,58,116,43,34,34,41,59,102,111,114,40,118,97,114,32,114,61,116,104,105,115,46,95,103,114,111,117,112,115,44,105,61,114,46,108,101,110,103,116,104,44,111,61,48,59,111,60,105,59,43,43,111,41,102,111,114,40,118,97,114,32,97,44,117,61,114,91,111,93,44,99,61,117,46,108,101,110,103,116,104,44,102,61,48,59,102,60,99,59,43,43,102,41,40,97,61,117,91,102,93,41,38,38,83,114,40,97,44,116,44,110,44,102,44,117,44,101,124,124,103,105,40,97,44,110,41,41,59,114,101,116,117,114,110,32,110,101,119,32,85,114,40,114,44,116,104,105,115,46,95,112,97,114,101,110,116,115,44,116,44,110,41,125,59,118,97,114,32,121,105,61,91,110,117,108,108,93,59,102,117,110,99,116,105,111,110,32,95,105,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,125,125,102,117,110,99,116,105,111,110,32,98,105,40,116,44,110,44,101,41,123,116,104,105,115,46,116,97,114,103,101,116,61,116,44,116,104,105,115,46,116,121,112,101,61,110,44,116,104,105,115,46,115,101,108,101,99,116,105,111,110,61,101,125,102,117,110,99,116,105,111,110,32,109,105,40,41,123,116,46,101,118,101,110,116,46,115,116,111,112,73,109,109,101,100,105,97,116,101,80,114,111,112,97,103,97,116,105,111,110,40,41,125,102,117,110,99,116,105,111,110,32,120,105,40,41,123,116,46,101,118,101,110,116,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,116,46,101,118,101,110,116,46,115,116,111,112,73,109,109,101,100,105,97,116,101,80,114,111,112,97,103,97,116,105,111,110,40,41,125,118,97,114,32,119,105,61,123,110,97,109,101,58,34,100,114,97,103,34,125,44,77,105,61,123,110,97,109,101,58,34,115,112,97,99,101,34,125,44,78,105,61,123,110,97,109,101,58,34,104,97,110,100,108,101,34,125,44,84,105,61,123,110,97,109,101,58,34,99,101,110,116,101,114,34,125,59,102,117,110,99,116,105,111,110,32,65,105,40,116,41,123,114,101,116,117,114,110,91,43,116,91,48,93,44,43,116,91,49,93,93,125,102,117,110,99,116,105,111,110,32,83,105,40,116,41,123,114,101,116,117,114,110,91,65,105,40,116,91,48,93,41,44,65,105,40,116,91,49,93,41,93,125,118,97,114,32,107,105,61,123,110,97,109,101,58,34,120,34,44,104,97,110,100,108,101,115,58,91,34,119,34,44,34,101,34,93,46,109,97,112,40,76,105,41,44,105,110,112,117,116,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,116,63,110,117,108,108,58,91,91,43,116,91,48,93,44,110,91,48,93,91,49,93,93,44,91,43,116,91,49,93,44,110,91,49,93,91,49,93,93,93,125,44,111,117,116,112,117,116,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,38,38,91,116,91,48,93,91,48,93,44,116,91,49,93,91,48,93,93,125,125,44,69,105,61,123,110,97,109,101,58,34,121,34,44,104,97,110,100,108,101,115,58,91,34,110,34,44,34,115,34,93,46,109,97,112,40,76,105,41,44,105,110,112,117,116,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,116,63,110,117,108,108,58,91,91,110,91,48,93,91,48,93,44,43,116,91,48,93,93,44,91,110,91,49,93,91,48,93,44,43,116,91,49,93,93,93,125,44,111,117,116,112,117,116,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,38,38,91,116,91,48,93,91,49,93,44,116,91,49,93,91,49,93,93,125,125,44,67,105,61,123,110,97,109,101,58,34,120,121,34,44,104,97,110,100,108,101,115,58,91,34,110,34,44,34,119,34,44,34,101,34,44,34,115,34,44,34,110,119,34,44,34,110,101,34,44,34,115,119,34,44,34,115,101,34,93,46,109,97,112,40,76,105,41,44,105,110,112,117,116,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,116,63,110,117,108,108,58,83,105,40,116,41,125,44,111,117,116,112,117,116,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,125,125,44,80,105,61,123,111,118,101,114,108,97,121,58,34,99,114,111,115,115,104,97,105,114,34,44,115,101,108,101,99,116,105,111,110,58,34,109,111,118,101,34,44,110,58,34,110,115,45,114,101,115,105,122,101,34,44,101,58,34,101,119,45,114,101,115,105,122,101,34,44,115,58,34,110,115,45,114,101,115,105,122,101,34,44,119,58,34,101,119,45,114,101,115,105,122,101,34,44,110,119,58,34,110,119,115,101,45,114,101,115,105,122,101,34,44,110,101,58,34,110,101,115,119,45,114,101,115,105,122,101,34,44,115,101,58,34,110,119,115,101,45,114,101,115,105,122,101,34,44,115,119,58,34,110,101,115,119,45,114,101,115,105,122,101,34,125,44,122,105,61,123,101,58,34,119,34,44,119,58,34,101,34,44,110,119,58,34,110,101,34,44,110,101,58,34,110,119,34,44,115,101,58,34,115,119,34,44,115,119,58,34,115,101,34,125,44,82,105,61,123,110,58,34,115,34,44,115,58,34,110,34,44,110,119,58,34,115,119,34,44,110,101,58,34,115,101,34,44,115,101,58,34,110,101,34,44,115,119,58,34,110,119,34,125,44,68,105,61,123,111,118,101,114,108,97,121,58,49,44,115,101,108,101,99,116,105,111,110,58,49,44,110,58,110,117,108,108,44,101,58,49,44,115,58,110,117,108,108,44,119,58,45,49,44,110,119,58,45,49,44,110,101,58,49,44,115,101,58,49,44,115,119,58,45,49,125,44,113,105,61,123,111,118,101,114,108,97,121,58,49,44,115,101,108,101,99,116,105,111,110,58,49,44,110,58,45,49,44,101,58,110,117,108,108,44,115,58,49,44,119,58,110,117,108,108,44,110,119,58,45,49,44,110,101,58,45,49,44,115,101,58,49,44,115,119,58,49,125,59,102,117,110,99,116,105,111,110,32,76,105,40,116,41,123,114,101,116,117,114,110,123,116,121,112,101,58,116,125,125,102,117,110,99,116,105,111,110,32,85,105,40,41,123,114,101,116,117,114,110,33,116,46,101,118,101,110,116,46,99,116,114,108,75,101,121,38,38,33,116,46,101,118,101,110,116,46,98,117,116,116,111,110,125,102,117,110,99,116,105,111,110,32,79,105,40,41,123,118,97,114,32,116,61,116,104,105,115,46,111,119,110,101,114,83,86,71,69,108,101,109,101,110,116,124,124,116,104,105,115,59,114,101,116,117,114,110,32,116,46,104,97,115,65,116,116,114,105,98,117,116,101,40,34,118,105,101,119,66,111,120,34,41,63,91,91,40,116,61,116,46,118,105,101,119,66,111,120,46,98,97,115,101,86,97,108,41,46,120,44,116,46,121,93,44,91,116,46,120,43,116,46,119,105,100,116,104,44,116,46,121,43,116,46,104,101,105,103,104,116,93,93,58,91,91,48,44,48,93,44,91,116,46,119,105,100,116,104,46,98,97,115,101,86,97,108,46,118,97,108,117,101,44,116,46,104,101,105,103,104,116,46,98,97,115,101,86,97,108,46,118,97,108,117,101,93,93,125,102,117,110,99,116,105,111,110,32,66,105,40,41,123,114,101,116,117,114,110,32,110,97,118,105,103,97,116,111,114,46,109,97,120,84,111,117,99,104,80,111,105,110,116,115,124,124,34,111,110,116,111,117,99,104,115,116,97,114,116,34,105,110,32,116,104,105,115,125,102,117,110,99,116,105,111,110,32,70,105,40,116,41,123,102,111,114,40,59,33,116,46,95,95,98,114,117,115,104,59,41,105,102,40,33,40,116,61,116,46,112,97,114,101,110,116,78,111,100,101,41,41,114,101,116,117,114,110,59,114,101,116,117,114,110,32,116,46,95,95,98,114,117,115,104,125,102,117,110,99,116,105,111,110,32,89,105,40,110,41,123,118,97,114,32,101,44,114,61,79,105,44,105,61,85,105,44,111,61,66,105,44,97,61,33,48,44,117,61,73,40,34,115,116,97,114,116,34,44,34,98,114,117,115,104,34,44,34,101,110,100,34,41,44,99,61,54,59,102,117,110,99,116,105,111,110,32,102,40,116,41,123,118,97,114,32,101,61,116,46,112,114,111,112,101,114,116,121,40,34,95,95,98,114,117,115,104,34,44,103,41,46,115,101,108,101,99,116,65,108,108,40,34,46,111,118,101,114,108,97,121,34,41,46,100,97,116,97,40,91,76,105,40,34,111,118,101,114,108,97,121,34,41,93,41,59,101,46,101,110,116,101,114,40,41,46,97,112,112,101,110,100,40,34,114,101,99,116,34,41,46,97,116,116,114,40,34,99,108,97,115,115,34,44,34,111,118,101,114,108,97,121,34,41,46,97,116,116,114,40,34,112,111,105,110,116,101,114,45,101,118,101,110,116,115,34,44,34,97,108,108,34,41,46,97,116,116,114,40,34,99,117,114,115,111,114,34,44,80,105,46,111,118,101,114,108,97,121,41,46,109,101,114,103,101,40,101,41,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,70,105,40,116,104,105,115,41,46,101,120,116,101,110,116,59,82,116,40,116,104,105,115,41,46,97,116,116,114,40,34,120,34,44,116,91,48,93,91,48,93,41,46,97,116,116,114,40,34,121,34,44,116,91,48,93,91,49,93,41,46,97,116,116,114,40,34,119,105,100,116,104,34,44,116,91,49,93,91,48,93,45,116,91,48,93,91,48,93,41,46,97,116,116,114,40,34,104,101,105,103,104,116,34,44,116,91,49,93,91,49,93,45,116,91,48,93,91,49,93,41,125,41,44,116,46,115,101,108,101,99,116,65,108,108,40,34,46,115,101,108,101,99,116,105,111,110,34,41,46,100,97,116,97,40,91,76,105,40,34,115,101,108,101,99,116,105,111,110,34,41,93,41,46,101,110,116,101,114,40,41,46,97,112,112,101,110,100,40,34,114,101,99,116,34,41,46,97,116,116,114,40,34,99,108,97,115,115,34,44,34,115,101,108,101,99,116,105,111,110,34,41,46,97,116,116,114,40,34,99,117,114,115,111,114,34,44,80,105,46,115,101,108,101,99,116,105,111,110,41,46,97,116,116,114,40,34,102,105,108,108,34,44,34,35,55,55,55,34,41,46,97,116,116,114,40,34,102,105,108,108,45,111,112,97,99,105,116,121,34,44,46,51,41,46,97,116,116,114,40,34,115,116,114,111,107,101,34,44,34,35,102,102,102,34,41,46,97,116,116,114,40,34,115,104,97,112,101,45,114,101,110,100,101,114,105,110,103,34,44,34,99,114,105,115,112,69,100,103,101,115,34,41,59,118,97,114,32,114,61,116,46,115,101,108,101,99,116,65,108,108,40,34,46,104,97,110,100,108,101,34,41,46,100,97,116,97,40,110,46,104,97,110,100,108,101,115,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,116,121,112,101,125,41,59,114,46,101,120,105,116,40,41,46,114,101,109,111,118,101,40,41,44,114,46,101,110,116,101,114,40,41,46,97,112,112,101,110,100,40,34,114,101,99,116,34,41,46,97,116,116,114,40,34,99,108,97,115,115,34,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,34,104,97,110,100,108,101,32,104,97,110,100,108,101,45,45,34,43,116,46,116,121,112,101,125,41,46,97,116,116,114,40,34,99,117,114,115,111,114,34,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,80,105,91,116,46,116,121,112,101,93,125,41,44,116,46,101,97,99,104,40,115,41,46,97,116,116,114,40,34,102,105,108,108,34,44,34,110,111,110,101,34,41,46,97,116,116,114,40,34,112,111,105,110,116,101,114,45,101,118,101,110,116,115,34,44,34,97,108,108,34,41,46,111,110,40,34,109,111,117,115,101,100,111,119,110,46,98,114,117,115,104,34,44,100,41,46,102,105,108,116,101,114,40,111,41,46,111,110,40,34,116,111,117,99,104,115,116,97,114,116,46,98,114,117,115,104,34,44,100,41,46,111,110,40,34,116,111,117,99,104,109,111,118,101,46,98,114,117,115,104,34,44,112,41,46,111,110,40,34,116,111,117,99,104,101,110,100,46,98,114,117,115,104,32,116,111,117,99,104,99,97,110,99,101,108,46,98,114,117,115,104,34,44,118,41,46,115,116,121,108,101,40,34,116,111,117,99,104,45,97,99,116,105,111,110,34,44,34,110,111,110,101,34,41,46,115,116,121,108,101,40,34,45,119,101,98,107,105,116,45,116,97,112,45,104,105,103,104,108,105,103,104,116,45,99,111,108,111,114,34,44,34,114,103,98,97,40,48,44,48,44,48,44,48,41,34,41,125,102,117,110,99,116,105,111,110,32,115,40,41,123,118,97,114,32,116,61,82,116,40,116,104,105,115,41,44,110,61,70,105,40,116,104,105,115,41,46,115,101,108,101,99,116,105,111,110,59,110,63,40,116,46,115,101,108,101,99,116,65,108,108,40,34,46,115,101,108,101,99,116,105,111,110,34,41,46,115,116,121,108,101,40,34,100,105,115,112,108,97,121,34,44,110,117,108,108,41,46,97,116,116,114,40,34,120,34,44,110,91,48,93,91,48,93,41,46,97,116,116,114,40,34,121,34,44,110,91,48,93,91,49,93,41,46,97,116,116,114,40,34,119,105,100,116,104,34,44,110,91,49,93,91,48,93,45,110,91,48,93,91,48,93,41,46,97,116,116,114,40,34,104,101,105,103,104,116,34,44,110,91,49,93,91,49,93,45,110,91,48,93,91,49,93,41,44,116,46,115,101,108,101,99,116,65,108,108,40,34,46,104,97,110,100,108,101,34,41,46,115,116,121,108,101,40,34,100,105,115,112,108,97,121,34,44,110,117,108,108,41,46,97,116,116,114,40,34,120,34,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,34,101,34,61,61,61,116,46,116,121,112,101,91,116,46,116,121,112,101,46,108,101,110,103,116,104,45,49,93,63,110,91,49,93,91,48,93,45,99,47,50,58,110,91,48,93,91,48,93,45,99,47,50,125,41,46,97,116,116,114,40,34,121,34,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,34,115,34,61,61,61,116,46,116,121,112,101,91,48,93,63,110,91,49,93,91,49,93,45,99,47,50,58,110,91,48,93,91,49,93,45,99,47,50,125,41,46,97,116,116,114,40,34,119,105,100,116,104,34,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,34,110,34,61,61,61,116,46,116,121,112,101,124,124,34,115,34,61,61,61,116,46,116,121,112,101,63,110,91,49,93,91,48,93,45,110,91,48,93,91,48,93,43,99,58,99,125,41,46,97,116,116,114,40,34,104,101,105,103,104,116,34,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,34,101,34,61,61,61,116,46,116,121,112,101,124,124,34,119,34,61,61,61,116,46,116,121,112,101,63,110,91,49,93,91,49,93,45,110,91,48,93,91,49,93,43,99,58,99,125,41,41,58,116,46,115,101,108,101,99,116,65,108,108,40,34,46,115,101,108,101,99,116,105,111,110,44,46,104,97,110,100,108,101,34,41,46,115,116,121,108,101,40,34,100,105,115,112,108,97,121,34,44,34,110,111,110,101,34,41,46,97,116,116,114,40,34,120,34,44,110,117,108,108,41,46,97,116,116,114,40,34,121,34,44,110,117,108,108,41,46,97,116,116,114,40,34,119,105,100,116,104,34,44,110,117,108,108,41,46,97,116,116,114,40,34,104,101,105,103,104,116,34,44,110,117,108,108,41,125,102,117,110,99,116,105,111,110,32,108,40,116,44,110,44,101,41,123,114,101,116,117,114,110,33,101,38,38,116,46,95,95,98,114,117,115,104,46,101,109,105,116,116,101,114,124,124,110,101,119,32,104,40,116,44,110,41,125,102,117,110,99,116,105,111,110,32,104,40,116,44,110,41,123,116,104,105,115,46,116,104,97,116,61,116,44,116,104,105,115,46,97,114,103,115,61,110,44,116,104,105,115,46,115,116,97,116,101,61,116,46,95,95,98,114,117,115,104,44,116,104,105,115,46,97,99,116,105,118,101,61,48,125,102,117,110,99,116,105,111,110,32,100,40,41,123,105,102,40,40,33,101,124,124,116,46,101,118,101,110,116,46,116,111,117,99,104,101,115,41,38,38,105,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,41,123,118,97,114,32,114,44,111,44,117,44,99,44,102,44,104,44,100,44,112,44,118,44,103,44,121,44,95,44,98,61,116,104,105,115,44,109,61,116,46,101,118,101,110,116,46,116,97,114,103,101,116,46,95,95,100,97,116,97,95,95,46,116,121,112,101,44,120,61,34,115,101,108,101,99,116,105,111,110,34,61,61,61,40,97,38,38,116,46,101,118,101,110,116,46,109,101,116,97,75,101,121,63,109,61,34,111,118,101,114,108,97,121,34,58,109,41,63,119,105,58,97,38,38,116,46,101,118,101,110,116,46,97,108,116,75,101,121,63,84,105,58,78,105,44,119,61,110,61,61,61,69,105,63,110,117,108,108,58,68,105,91,109,93,44,77,61,110,61,61,61,107,105,63,110,117,108,108,58,113,105,91,109,93,44,78,61,70,105,40,98,41,44,84,61,78,46,101,120,116,101,110,116,44,65,61,78,46,115,101,108,101,99,116,105,111,110,44,83,61,84,91,48,93,91,48,93,44,107,61,84,91,48,93,91,49,93,44,69,61,84,91,49,93,91,48,93,44,67,61,84,91,49,93,91,49,93,44,80,61,48,44,122,61,48,44,82,61,119,38,38,77,38,38,97,38,38,116,46,101,118,101,110,116,46,115,104,105,102,116,75,101,121,44,68,61,116,46,101,118,101,110,116,46,116,111,117,99,104,101,115,63,40,95,61,116,46,101,118,101,110,116,46,99,104,97,110,103,101,100,84,111,117,99,104,101,115,91,48,93,46,105,100,101,110,116,105,102,105,101,114,44,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,70,116,40,110,44,116,46,101,118,101,110,116,46,116,111,117,99,104,101,115,44,95,41,125,41,58,66,116,44,113,61,68,40,98,41,44,76,61,113,44,85,61,108,40,98,44,97,114,103,117,109,101,110,116,115,44,33,48,41,46,98,101,102,111,114,101,115,116,97,114,116,40,41,59,34,111,118,101,114,108,97,121,34,61,61,61,109,63,40,65,38,38,40,118,61,33,48,41,44,78,46,115,101,108,101,99,116,105,111,110,61,65,61,91,91,114,61,110,61,61,61,69,105,63,83,58,113,91,48,93,44,117,61,110,61,61,61,107,105,63,107,58,113,91,49,93,93,44,91,102,61,110,61,61,61,69,105,63,69,58,114,44,100,61,110,61,61,61,107,105,63,67,58,117,93,93,41,58,40,114,61,65,91,48,93,91,48,93,44,117,61,65,91,48,93,91,49,93,44,102,61,65,91,49,93,91,48,93,44,100,61,65,91,49,93,91,49,93,41,44,111,61,114,44,99,61,117,44,104,61,102,44,112,61,100,59,118,97,114,32,79,61,82,116,40,98,41,46,97,116,116,114,40,34,112,111,105,110,116,101,114,45,101,118,101,110,116,115,34,44,34,110,111,110,101,34,41,44,66,61,79,46,115,101,108,101,99,116,65,108,108,40,34,46,111,118,101,114,108,97,121,34,41,46,97,116,116,114,40,34,99,117,114,115,111,114,34,44,80,105,91,109,93,41,59,105,102,40,116,46,101,118,101,110,116,46,116,111,117,99,104,101,115,41,85,46,109,111,118,101,100,61,89,44,85,46,101,110,100,101,100,61,72,59,101,108,115,101,123,118,97,114,32,70,61,82,116,40,116,46,101,118,101,110,116,46,118,105,101,119,41,46,111,110,40,34,109,111,117,115,101,109,111,118,101,46,98,114,117,115,104,34,44,89,44,33,48,41,46,111,110,40,34,109,111,117,115,101,117,112,46,98,114,117,115,104,34,44,72,44,33,48,41,59,97,38,38,70,46,111,110,40,34,107,101,121,100,111,119,110,46,98,114,117,115,104,34,44,102,117,110,99,116,105,111,110,40,41,123,115,119,105,116,99,104,40,116,46,101,118,101,110,116,46,107,101,121,67,111,100,101,41,123,99,97,115,101,32,49,54,58,82,61,119,38,38,77,59,98,114,101,97,107,59,99,97,115,101,32,49,56,58,120,61,61,61,78,105,38,38,40,119,38,38,40,102,61,104,45,80,42,119,44,114,61,111,43,80,42,119,41,44,77,38,38,40,100,61,112,45,122,42,77,44,117,61,99,43,122,42,77,41,44,120,61,84,105,44,73,40,41,41,59,98,114,101,97,107,59,99,97,115,101,32,51,50,58,120,33,61,61,78,105,38,38,120,33,61,61,84,105,124,124,40,119,60,48,63,102,61,104,45,80,58,119,62,48,38,38,40,114,61,111,45,80,41,44,77,60,48,63,100,61,112,45,122,58,77,62,48,38,38,40,117,61,99,45,122,41,44,120,61,77,105,44,66,46,97,116,116,114,40,34,99,117,114,115,111,114,34,44,80,105,46,115,101,108,101,99,116,105,111,110,41,44,73,40,41,41,59,98,114,101,97,107,59,100,101,102,97,117,108,116,58,114,101,116,117,114,110,125,120,105,40,41,125,44,33,48,41,46,111,110,40,34,107,101,121,117,112,46,98,114,117,115,104,34,44,102,117,110,99,116,105,111,110,40,41,123,115,119,105,116,99,104,40,116,46,101,118,101,110,116,46,107,101,121,67,111,100,101,41,123,99,97,115,101,32,49,54,58,82,38,38,40,103,61,121,61,82,61,33,49,44,73,40,41,41,59,98,114,101,97,107,59,99,97,115,101,32,49,56,58,120,61,61,61,84,105,38,38,40,119,60,48,63,102,61,104,58,119,62,48,38,38,40,114,61,111,41,44,77,60,48,63,100,61,112,58,77,62,48,38,38,40,117,61,99,41,44,120,61,78,105,44,73,40,41,41,59,98,114,101,97,107,59,99,97,115,101,32,51,50,58,120,61,61,61,77,105,38,38,40,116,46,101,118,101,110,116,46,97,108,116,75,101,121,63,40,119,38,38,40,102,61,104,45,80,42,119,44,114,61,111,43,80,42,119,41,44,77,38,38,40,100,61,112,45,122,42,77,44,117,61,99,43,122,42,77,41,44,120,61,84,105,41,58,40,119,60,48,63,102,61,104,58,119,62,48,38,38,40,114,61,111,41,44,77,60,48,63,100,61,112,58,77,62,48,38,38,40,117,61,99,41,44,120,61,78,105,41,44,66,46,97,116,116,114,40,34,99,117,114,115,111,114,34,44,80,105,91,109,93,41,44,73,40,41,41,59,98,114,101,97,107,59,100,101,102,97,117,108,116,58,114,101,116,117,114,110,125,120,105,40,41,125,44,33,48,41,44,72,116,40,116,46,101,118,101,110,116,46,118,105,101,119,41,125,109,105,40,41,44,80,114,40,98,41,44,115,46,99,97,108,108,40,98,41,44,85,46,115,116,97,114,116,40,41,125,102,117,110,99,116,105,111,110,32,89,40,41,123,118,97,114,32,116,61,68,40,98,41,59,33,82,124,124,103,124,124,121,124,124,40,77,97,116,104,46,97,98,115,40,116,91,48,93,45,76,91,48,93,41,62,77,97,116,104,46,97,98,115,40,116,91,49,93,45,76,91,49,93,41,63,121,61,33,48,58,103,61,33,48,41,44,76,61,116,44,118,61,33,48,44,120,105,40,41,44,73,40,41,125,102,117,110,99,116,105,111,110,32,73,40,41,123,118,97,114,32,116,59,115,119,105,116,99,104,40,80,61,76,91,48,93,45,113,91,48,93,44,122,61,76,91,49,93,45,113,91,49,93,44,120,41,123,99,97,115,101,32,77,105,58,99,97,115,101,32,119,105,58,119,38,38,40,80,61,77,97,116,104,46,109,97,120,40,83,45,114,44,77,97,116,104,46,109,105,110,40,69,45,102,44,80,41,41,44,111,61,114,43,80,44,104,61,102,43,80,41,44,77,38,38,40,122,61,77,97,116,104,46,109,97,120,40,107,45,117,44,77,97,116,104,46,109,105,110,40,67,45,100,44,122,41,41,44,99,61,117,43,122,44,112,61,100,43,122,41,59,98,114,101,97,107,59,99,97,115,101,32,78,105,58,119,60,48,63,40,80,61,77,97,116,104,46,109,97,120,40,83,45,114,44,77,97,116,104,46,109,105,110,40,69,45,114,44,80,41,41,44,111,61,114,43,80,44,104,61,102,41,58,119,62,48,38,38,40,80,61,77,97,116,104,46,109,97,120,40,83,45,102,44,77,97,116,104,46,109,105,110,40,69,45,102,44,80,41,41,44,111,61,114,44,104,61,102,43,80,41,44,77,60,48,63,40,122,61,77,97,116,104,46,109,97,120,40,107,45,117,44,77,97,116,104,46,109,105,110,40,67,45,117,44,122,41,41,44,99,61,117,43,122,44,112,61,100,41,58,77,62,48,38,38,40,122,61,77,97,116,104,46,109,97,120,40,107,45,100,44,77,97,116,104,46,109,105,110,40,67,45,100,44,122,41,41,44,99,61,117,44,112,61,100,43,122,41,59,98,114,101,97,107,59,99,97,115,101,32,84,105,58,119,38,38,40,111,61,77,97,116,104,46,109,97,120,40,83,44,77,97,116,104,46,109,105,110,40,69,44,114,45,80,42,119,41,41,44,104,61,77,97,116,104,46,109,97,120,40,83,44,77,97,116,104,46,109,105,110,40,69,44,102,43,80,42,119,41,41,41,44,77,38,38,40,99,61,77,97,116,104,46,109,97,120,40,107,44,77,97,116,104,46,109,105,110,40,67,44,117,45,122,42,77,41,41,44,112,61,77,97,116,104,46,109,97,120,40,107,44,77,97,116,104,46,109,105,110,40,67,44,100,43,122,42,77,41,41,41,125,104,60,111,38,38,40,119,42,61,45,49,44,116,61,114,44,114,61,102,44,102,61,116,44,116,61,111,44,111,61,104,44,104,61,116,44,109,32,105,110,32,122,105,38,38,66,46,97,116,116,114,40,34,99,117,114,115,111,114,34,44,80,105,91,109,61,122,105,91,109,93,93,41,41,44,112,60,99,38,38,40,77,42,61,45,49,44,116,61,117,44,117,61,100,44,100,61,116,44,116,61,99,44,99,61,112,44,112,61,116,44,109,32,105,110,32,82,105,38,38,66,46,97,116,116,114,40,34,99,117,114,115,111,114,34,44,80,105,91,109,61,82,105,91,109,93,93,41,41,44,78,46,115,101,108,101,99,116,105,111,110,38,38,40,65,61,78,46,115,101,108,101,99,116,105,111,110,41,44,103,38,38,40,111,61,65,91,48,93,91,48,93,44,104,61,65,91,49,93,91,48,93,41,44,121,38,38,40,99,61,65,91,48,93,91,49,93,44,112,61,65,91,49,93,91,49,93,41,44,65,91,48,93,91,48,93,61,61,61,111,38,38,65,91,48,93,91,49,93,61,61,61,99,38,38,65,91,49,93,91,48,93,61,61,61,104,38,38,65,91,49,93,91,49,93,61,61,61,112,124,124,40,78,46,115,101,108,101,99,116,105,111,110,61,91,91,111,44,99,93,44,91,104,44,112,93,93,44,115,46,99,97,108,108,40,98,41,44,85,46,98,114,117,115,104,40,41,41,125,102,117,110,99,116,105,111,110,32,72,40,41,123,105,102,40,109,105,40,41,44,116,46,101,118,101,110,116,46,116,111,117,99,104,101,115,41,123,105,102,40,116,46,101,118,101,110,116,46,116,111,117,99,104,101,115,46,108,101,110,103,116,104,41,114,101,116,117,114,110,59,101,38,38,99,108,101,97,114,84,105,109,101,111,117,116,40,101,41,44,101,61,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,40,41,123,101,61,110,117,108,108,125,44,53,48,48,41,125,101,108,115,101,32,106,116,40,116,46,101,118,101,110,116,46,118,105,101,119,44,118,41,44,70,46,111,110,40,34,107,101,121,100,111,119,110,46,98,114,117,115,104,32,107,101,121,117,112,46,98,114,117,115,104,32,109,111,117,115,101,109,111,118,101,46,98,114,117,115,104,32,109,111,117,115,101,117,112,46,98,114,117,115,104,34,44,110,117,108,108,41,59,79,46,97,116,116,114,40,34,112,111,105,110,116,101,114,45,101,118,101,110,116,115,34,44,34,97,108,108,34,41,44,66,46,97,116,116,114,40,34,99,117,114,115,111,114,34,44,80,105,46,111,118,101,114,108,97,121,41,44,78,46,115,101,108,101,99,116,105,111,110,38,38,40,65,61,78,46,115,101,108,101,99,116,105,111,110,41,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,91,48,93,91,48,93,61,61,61,116,91,49,93,91,48,93,124,124,116,91,48,93,91,49,93,61,61,61,116,91,49,93,91,49,93,125,40,65,41,38,38,40,78,46,115,101,108,101,99,116,105,111,110,61,110,117,108,108,44,115,46,99,97,108,108,40,98,41,41,44,85,46,101,110,100,40,41,125,125,102,117,110,99,116,105,111,110,32,112,40,41,123,108,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,46,109,111,118,101,100,40,41,125,102,117,110,99,116,105,111,110,32,118,40,41,123,108,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,46,101,110,100,101,100,40,41,125,102,117,110,99,116,105,111,110,32,103,40,41,123,118,97,114,32,116,61,116,104,105,115,46,95,95,98,114,117,115,104,124,124,123,115,101,108,101,99,116,105,111,110,58,110,117,108,108,125,59,114,101,116,117,114,110,32,116,46,101,120,116,101,110,116,61,83,105,40,114,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,41,44,116,46,100,105,109,61,110,44,116,125,114,101,116,117,114,110,32,102,46,109,111,118,101,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,116,46,115,101,108,101,99,116,105,111,110,63,116,46,111,110,40,34,115,116,97,114,116,46,98,114,117,115,104,34,44,102,117,110,99,116,105,111,110,40,41,123,108,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,46,98,101,102,111,114,101,115,116,97,114,116,40,41,46,115,116,97,114,116,40,41,125,41,46,111,110,40,34,105,110,116,101,114,114,117,112,116,46,98,114,117,115,104,32,101,110,100,46,98,114,117,115,104,34,44,102,117,110,99,116,105,111,110,40,41,123,108,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,46,101,110,100,40,41,125,41,46,116,119,101,101,110,40,34,98,114,117,115,104,34,44,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,44,114,61,116,46,95,95,98,114,117,115,104,44,105,61,108,40,116,44,97,114,103,117,109,101,110,116,115,41,44,111,61,114,46,115,101,108,101,99,116,105,111,110,44,97,61,110,46,105,110,112,117,116,40,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,101,63,101,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,58,101,44,114,46,101,120,116,101,110,116,41,44,117,61,84,101,40,111,44,97,41,59,102,117,110,99,116,105,111,110,32,99,40,110,41,123,114,46,115,101,108,101,99,116,105,111,110,61,49,61,61,61,110,38,38,110,117,108,108,61,61,61,97,63,110,117,108,108,58,117,40,110,41,44,115,46,99,97,108,108,40,116,41,44,105,46,98,114,117,115,104,40,41,125,114,101,116,117,114,110,32,110,117,108,108,33,61,61,111,38,38,110,117,108,108,33,61,61,97,63,99,58,99,40,49,41,125,41,58,116,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,44,114,61,97,114,103,117,109,101,110,116,115,44,105,61,116,46,95,95,98,114,117,115,104,44,111,61,110,46,105,110,112,117,116,40,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,101,63,101,46,97,112,112,108,121,40,116,44,114,41,58,101,44,105,46,101,120,116,101,110,116,41,44,97,61,108,40,116,44,114,41,46,98,101,102,111,114,101,115,116,97,114,116,40,41,59,80,114,40,116,41,44,105,46,115,101,108,101,99,116,105,111,110,61,110,117,108,108,61,61,61,111,63,110,117,108,108,58,111,44,115,46,99,97,108,108,40,116,41,44,97,46,115,116,97,114,116,40,41,46,98,114,117,115,104,40,41,46,101,110,100,40,41,125,41,125,44,102,46,99,108,101,97,114,61,102,117,110,99,116,105,111,110,40,116,41,123,102,46,109,111,118,101,40,116,44,110,117,108,108,41,125,44,104,46,112,114,111,116,111,116,121,112,101,61,123,98,101,102,111,114,101,115,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,49,61,61,43,43,116,104,105,115,46,97,99,116,105,118,101,38,38,40,116,104,105,115,46,115,116,97,116,101,46,101,109,105,116,116,101,114,61,116,104,105,115,44,116,104,105,115,46,115,116,97,114,116,105,110,103,61,33,48,41,44,116,104,105,115,125,44,115,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,115,116,97,114,116,105,110,103,63,40,116,104,105,115,46,115,116,97,114,116,105,110,103,61,33,49,44,116,104,105,115,46,101,109,105,116,40,34,115,116,97,114,116,34,41,41,58,116,104,105,115,46,101,109,105,116,40,34,98,114,117,115,104,34,41,44,116,104,105,115,125,44,98,114,117,115,104,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,109,105,116,40,34,98,114,117,115,104,34,41,44,116,104,105,115,125,44,101,110,100,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,48,61,61,45,45,116,104,105,115,46,97,99,116,105,118,101,38,38,40,100,101,108,101,116,101,32,116,104,105,115,46,115,116,97,116,101,46,101,109,105,116,116,101,114,44,116,104,105,115,46,101,109,105,116,40,34,101,110,100,34,41,41,44,116,104,105,115,125,44,101,109,105,116,58,102,117,110,99,116,105,111,110,40,116,41,123,107,116,40,110,101,119,32,98,105,40,102,44,116,44,110,46,111,117,116,112,117,116,40,116,104,105,115,46,115,116,97,116,101,46,115,101,108,101,99,116,105,111,110,41,41,44,117,46,97,112,112,108,121,44,117,44,91,116,44,116,104,105,115,46,116,104,97,116,44,116,104,105,115,46,97,114,103,115,93,41,125,125,44,102,46,101,120,116,101,110,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,114,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,95,105,40,83,105,40,116,41,41,44,102,41,58,114,125,44,102,46,102,105,108,116,101,114,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,105,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,95,105,40,33,33,116,41,44,102,41,58,105,125,44,102,46,116,111,117,99,104,97,98,108,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,111,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,95,105,40,33,33,116,41,44,102,41,58,111,125,44,102,46,104,97,110,100,108,101,83,105,122,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,99,61,43,116,44,102,41,58,99,125,44,102,46,107,101,121,77,111,100,105,102,105,101,114,115,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,97,61,33,33,116,44,102,41,58,97,125,44,102,46,111,110,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,117,46,111,110,46,97,112,112,108,121,40,117,44,97,114,103,117,109,101,110,116,115,41,59,114,101,116,117,114,110,32,116,61,61,61,117,63,102,58,116,125,44,102,125,118,97,114,32,73,105,61,77,97,116,104,46,99,111,115,44,72,105,61,77,97,116,104,46,115,105,110,44,106,105,61,77,97,116,104,46,80,73,44,88,105,61,106,105,47,50,44,86,105,61,50,42,106,105,44,71,105,61,77,97,116,104,46,109,97,120,59,102,117,110,99,116,105,111,110,32,36,105,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,110,44,101,41,123,114,101,116,117,114,110,32,116,40,110,46,115,111,117,114,99,101,46,118,97,108,117,101,43,110,46,116,97,114,103,101,116,46,118,97,108,117,101,44,101,46,115,111,117,114,99,101,46,118,97,108,117,101,43,101,46,116,97,114,103,101,116,46,118,97,108,117,101,41,125,125,118,97,114,32,87,105,61,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,115,108,105,99,101,59,102,117,110,99,116,105,111,110,32,90,105,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,125,125,118,97,114,32,81,105,61,77,97,116,104,46,80,73,44,75,105,61,50,42,81,105,44,74,105,61,75,105,45,49,101,45,54,59,102,117,110,99,116,105,111,110,32,116,111,40,41,123,116,104,105,115,46,95,120,48,61,116,104,105,115,46,95,121,48,61,116,104,105,115,46,95,120,49,61,116,104,105,115,46,95,121,49,61,110,117,108,108,44,116,104,105,115,46,95,61,34,34,125,102,117,110,99,116,105,111,110,32,110,111,40,41,123,114,101,116,117,114,110,32,110,101,119,32,116,111,125,102,117,110,99,116,105,111,110,32,101,111,40,116,41,123,114,101,116,117,114,110,32,116,46,115,111,117,114,99,101,125,102,117,110,99,116,105,111,110,32,114,111,40,116,41,123,114,101,116,117,114,110,32,116,46,116,97,114,103,101,116,125,102,117,110,99,116,105,111,110,32,105,111,40,116,41,123,114,101,116,117,114,110,32,116,46,114,97,100,105,117,115,125,102,117,110,99,116,105,111,110,32,111,111,40,116,41,123,114,101,116,117,114,110,32,116,46,115,116,97,114,116,65,110,103,108,101,125,102,117,110,99,116,105,111,110,32,97,111,40,116,41,123,114,101,116,117,114,110,32,116,46,101,110,100,65,110,103,108,101,125,116,111,46,112,114,111,116,111,116,121,112,101,61,110,111,46,112,114,111,116,111,116,121,112,101,61,123,99,111,110,115,116,114,117,99,116,111,114,58,116,111,44,109,111,118,101,84,111,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,116,104,105,115,46,95,43,61,34,77,34,43,40,116,104,105,115,46,95,120,48,61,116,104,105,115,46,95,120,49,61,43,116,41,43,34,44,34,43,40,116,104,105,115,46,95,121,48,61,116,104,105,115,46,95,121,49,61,43,110,41,125,44,99,108,111,115,101,80,97,116,104,58,102,117,110,99,116,105,111,110,40,41,123,110,117,108,108,33,61,61,116,104,105,115,46,95,120,49,38,38,40,116,104,105,115,46,95,120,49,61,116,104,105,115,46,95,120,48,44,116,104,105,115,46,95,121,49,61,116,104,105,115,46,95,121,48,44,116,104,105,115,46,95,43,61,34,90,34,41,125,44,108,105,110,101,84,111,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,116,104,105,115,46,95,43,61,34,76,34,43,40,116,104,105,115,46,95,120,49,61,43,116,41,43,34,44,34,43,40,116,104,105,115,46,95,121,49,61,43,110,41,125,44,113,117,97,100,114,97,116,105,99,67,117,114,118,101,84,111,58,102,117,110,99,116,105,111,110,40,116,44,110,44,101,44,114,41,123,116,104,105,115,46,95,43,61,34,81,34,43,32,43,116,43,34,44,34,43,32,43,110,43,34,44,34,43,40,116,104,105,115,46,95,120,49,61,43,101,41,43,34,44,34,43,40,116,104,105,115,46,95,121,49,61,43,114,41,125,44,98,101,122,105,101,114,67,117,114,118,101,84,111,58,102,117,110,99,116,105,111,110,40,116,44,110,44,101,44,114,44,105,44,111,41,123,116,104,105,115,46,95,43,61,34,67,34,43,32,43,116,43,34,44,34,43,32,43,110,43,34,44,34,43,32,43,101,43,34,44,34,43,32,43,114,43,34,44,34,43,40,116,104,105,115,46,95,120,49,61,43,105,41,43,34,44,34,43,40,116,104,105,115,46,95,121,49,61,43,111,41,125,44,97,114,99,84,111,58,102,117,110,99,116,105,111,110,40,116,44,110,44,101,44,114,44,105,41,123,116,61,43,116,44,110,61,43,110,44,101,61,43,101,44,114,61,43,114,44,105,61,43,105,59,118,97,114,32,111,61,116,104,105,115,46,95,120,49,44,97,61,116,104,105,115,46,95,121,49,44,117,61,101,45,116,44,99,61,114,45,110,44,102,61,111,45,116,44,115,61,97,45,110,44,108,61,102,42,102,43,115,42,115,59,105,102,40,105,60,48,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,110,101,103,97,116,105,118,101,32,114,97,100,105,117,115,58,32,34,43,105,41,59,105,102,40,110,117,108,108,61,61,61,116,104,105,115,46,95,120,49,41,116,104,105,115,46,95,43,61,34,77,34,43,40,116,104,105,115,46,95,120,49,61,116,41,43,34,44,34,43,40,116,104,105,115,46,95,121,49,61,110,41,59,101,108,115,101,32,105,102,40,108,62,49,101,45,54,41,105,102,40,77,97,116,104,46,97,98,115,40,115,42,117,45,99,42,102,41,62,49,101,45,54,38,38,105,41,123,118,97,114,32,104,61,101,45,111,44,100,61,114,45,97,44,112,61,117,42,117,43,99,42,99,44,118,61,104,42,104,43,100,42,100,44,103,61,77,97,116,104,46,115,113,114,116,40,112,41,44,121,61,77,97,116,104,46,115,113,114,116,40,108,41,44,95,61,105,42,77,97,116,104,46,116,97,110,40,40,81,105,45,77,97,116,104,46,97,99,111,115,40,40,112,43,108,45,118,41,47,40,50,42,103,42,121,41,41,41,47,50,41,44,98,61,95,47,121,44,109,61,95,47,103,59,77,97,116,104,46,97,98,115,40,98,45,49,41,62,49,101,45,54,38,38,40,116,104,105,115,46,95,43,61,34,76,34,43,40,116,43,98,42,102,41,43,34,44,34,43,40,110,43,98,42,115,41,41,44,116,104,105,115,46,95,43,61,34,65,34,43,105,43,34,44,34,43,105,43,34,44,48,44,48,44,34,43,32,43,40,115,42,104,62,102,42,100,41,43,34,44,34,43,40,116,104,105,115,46,95,120,49,61,116,43,109,42,117,41,43,34,44,34,43,40,116,104,105,115,46,95,121,49,61,110,43,109,42,99,41,125,101,108,115,101,32,116,104,105,115,46,95,43,61,34,76,34,43,40,116,104,105,115,46,95,120,49,61,116,41,43,34,44,34,43,40,116,104,105,115,46,95,121,49,61,110,41,59,101,108,115,101,59,125,44,97,114,99,58,102,117,110,99,116,105,111,110,40,116,44,110,44,101,44,114,44,105,44,111,41,123,116,61,43,116,44,110,61,43,110,44,111,61,33,33,111,59,118,97,114,32,97,61,40,101,61,43,101,41,42,77,97,116,104,46,99,111,115,40,114,41,44,117,61,101,42,77,97,116,104,46,115,105,110,40,114,41,44,99,61,116,43,97,44,102,61,110,43,117,44,115,61,49,94,111,44,108,61,111,63,114,45,105,58,105,45,114,59,105,102,40,101,60,48,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,110,101,103,97,116,105,118,101,32,114,97,100,105,117,115,58,32,34,43,101,41,59,110,117,108,108,61,61,61,116,104,105,115,46,95,120,49,63,116,104,105,115,46,95,43,61,34,77,34,43,99,43,34,44,34,43,102,58,40,77,97,116,104,46,97,98,115,40,116,104,105,115,46,95,120,49,45,99,41,62,49,101,45,54,124,124,77,97,116,104,46,97,98,115,40,116,104,105,115,46,95,121,49,45,102,41,62,49,101,45,54,41,38,38,40,116,104,105,115,46,95,43,61,34,76,34,43,99,43,34,44,34,43,102,41,44,101,38,38,40,108,60,48,38,38,40,108,61,108,37,75,105,43,75,105,41,44,108,62,74,105,63,116,104,105,115,46,95,43,61,34,65,34,43,101,43,34,44,34,43,101,43,34,44,48,44,49,44,34,43,115,43,34,44,34,43,40,116,45,97,41,43,34,44,34,43,40,110,45,117,41,43,34,65,34,43,101,43,34,44,34,43,101,43,34,44,48,44,49,44,34,43,115,43,34,44,34,43,40,116,104,105,115,46,95,120,49,61,99,41,43,34,44,34,43,40,116,104,105,115,46,95,121,49,61,102,41,58,108,62,49,101,45,54,38,38,40,116,104,105,115,46,95,43,61,34,65,34,43,101,43,34,44,34,43,101,43,34,44,48,44,34,43,32,43,40,108,62,61,81,105,41,43,34,44,34,43,115,43,34,44,34,43,40,116,104,105,115,46,95,120,49,61,116,43,101,42,77,97,116,104,46,99,111,115,40,105,41,41,43,34,44,34,43,40,116,104,105,115,46,95,121,49,61,110,43,101,42,77,97,116,104,46,115,105,110,40,105,41,41,41,41,125,44,114,101,99,116,58,102,117,110,99,116,105,111,110,40,116,44,110,44,101,44,114,41,123,116,104,105,115,46,95,43,61,34,77,34,43,40,116,104,105,115,46,95,120,48,61,116,104,105,115,46,95,120,49,61,43,116,41,43,34,44,34,43,40,116,104,105,115,46,95,121,48,61,116,104,105,115,46,95,121,49,61,43,110,41,43,34,104,34,43,32,43,101,43,34,118,34,43,32,43,114,43,34,104,34,43,45,101,43,34,90,34,125,44,116,111,83,116,114,105,110,103,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,125,125,59,102,117,110,99,116,105,111,110,32,117,111,40,41,123,125,102,117,110,99,116,105,111,110,32,99,111,40,116,44,110,41,123,118,97,114,32,101,61,110,101,119,32,117,111,59,105,102,40,116,32,105,110,115,116,97,110,99,101,111,102,32,117,111,41,116,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,116,44,110,41,123,101,46,115,101,116,40,110,44,116,41,125,41,59,101,108,115,101,32,105,102,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,116,41,41,123,118,97,114,32,114,44,105,61,45,49,44,111,61,116,46,108,101,110,103,116,104,59,105,102,40,110,117,108,108,61,61,110,41,102,111,114,40,59,43,43,105,60,111,59,41,101,46,115,101,116,40,105,44,116,91,105,93,41,59,101,108,115,101,32,102,111,114,40,59,43,43,105,60,111,59,41,101,46,115,101,116,40,110,40,114,61,116,91,105,93,44,105,44,116,41,44,114,41,125,101,108,115,101,32,105,102,40,116,41,102,111,114,40,118,97,114,32,97,32,105,110,32,116,41,101,46,115,101,116,40,97,44,116,91,97,93,41,59,114,101,116,117,114,110,32,101,125,102,117,110,99,116,105,111,110,32,102,111,40,41,123,114,101,116,117,114,110,123,125,125,102,117,110,99,116,105,111,110,32,115,111,40,116,44,110,44,101,41,123,116,91,110,93,61,101,125,102,117,110,99,116,105,111,110,32,108,111,40,41,123,114,101,116,117,114,110,32,99,111,40,41,125,102,117,110,99,116,105,111,110,32,104,111,40,116,44,110,44,101,41,123,116,46,115,101,116,40,110,44,101,41,125,102,117,110,99,116,105,111,110,32,112,111,40,41,123,125,117,111,46,112,114,111,116,111,116,121,112,101,61,99,111,46,112,114,111,116,111,116,121,112,101,61,123,99,111,110,115,116,114,117,99,116,111,114,58,117,111,44,104,97,115,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,34,36,34,43,116,32,105,110,32,116,104,105,115,125,44,103,101,116,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,104,105,115,91,34,36,34,43,116,93,125,44,115,101,116,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,116,104,105,115,91,34,36,34,43,116,93,61,110,44,116,104,105,115,125,44,114,101,109,111,118,101,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,34,36,34,43,116,59,114,101,116,117,114,110,32,110,32,105,110,32,116,104,105,115,38,38,100,101,108,101,116,101,32,116,104,105,115,91,110,93,125,44,99,108,101,97,114,58,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,118,97,114,32,116,32,105,110,32,116,104,105,115,41,34,36,34,61,61,61,116,91,48,93,38,38,100,101,108,101,116,101,32,116,104,105,115,91,116,93,125,44,107,101,121,115,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,91,93,59,102,111,114,40,118,97,114,32,110,32,105,110,32,116,104,105,115,41,34,36,34,61,61,61,110,91,48,93,38,38,116,46,112,117,115,104,40,110,46,115,108,105,99,101,40,49,41,41,59,114,101,116,117,114,110,32,116,125,44,118,97,108,117,101,115,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,91,93,59,102,111,114,40,118,97,114,32,110,32,105,110,32,116,104,105,115,41,34,36,34,61,61,61,110,91,48,93,38,38,116,46,112,117,115,104,40,116,104,105,115,91,110,93,41,59,114,101,116,117,114,110,32,116,125,44,101,110,116,114,105,101,115,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,91,93,59,102,111,114,40,118,97,114,32,110,32,105,110,32,116,104,105,115,41,34,36,34,61,61,61,110,91,48,93,38,38,116,46,112,117,115,104,40,123,107,101,121,58,110,46,115,108,105,99,101,40,49,41,44,118,97,108,117,101,58,116,104,105,115,91,110,93,125,41,59,114,101,116,117,114,110,32,116,125,44,115,105,122,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,48,59,102,111,114,40,118,97,114,32,110,32,105,110,32,116,104,105,115,41,34,36,34,61,61,61,110,91,48,93,38,38,43,43,116,59,114,101,116,117,114,110,32,116,125,44,101,109,112,116,121,58,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,118,97,114,32,116,32,105,110,32,116,104,105,115,41,105,102,40,34,36,34,61,61,61,116,91,48,93,41,114,101,116,117,114,110,33,49,59,114,101,116,117,114,110,33,48,125,44,101,97,99,104,58,102,117,110,99,116,105,111,110,40,116,41,123,102,111,114,40,118,97,114,32,110,32,105,110,32,116,104,105,115,41,34,36,34,61,61,61,110,91,48,93,38,38,116,40,116,104,105,115,91,110,93,44,110,46,115,108,105,99,101,40,49,41,44,116,104,105,115,41,125,125,59,118,97,114,32,118,111,61,99,111,46,112,114,111,116,111,116,121,112,101,59,102,117,110,99,116,105,111,110,32,103,111,40,116,44,110,41,123,118,97,114,32,101,61,110,101,119,32,112,111,59,105,102,40,116,32,105,110,115,116,97,110,99,101,111,102,32,112,111,41,116,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,116,41,123,101,46,97,100,100,40,116,41,125,41,59,101,108,115,101,32,105,102,40,116,41,123,118,97,114,32,114,61,45,49,44,105,61,116,46,108,101,110,103,116,104,59,105,102,40,110,117,108,108,61,61,110,41,102,111,114,40,59,43,43,114,60,105,59,41,101,46,97,100,100,40,116,91,114,93,41,59,101,108,115,101,32,102,111,114,40,59,43,43,114,60,105,59,41,101,46,97,100,100,40,110,40,116,91,114,93,44,114,44,116,41,41,125,114,101,116,117,114,110,32,101,125,112,111,46,112,114,111,116,111,116,121,112,101,61,103,111,46,112,114,111,116,111,116,121,112,101,61,123,99,111,110,115,116,114,117,99,116,111,114,58,112,111,44,104,97,115,58,118,111,46,104,97,115,44,97,100,100,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,104,105,115,91,34,36,34,43,40,116,43,61,34,34,41,93,61,116,44,116,104,105,115,125,44,114,101,109,111,118,101,58,118,111,46,114,101,109,111,118,101,44,99,108,101,97,114,58,118,111,46,99,108,101,97,114,44,118,97,108,117,101,115,58,118,111,46,107,101,121,115,44,115,105,122,101,58,118,111,46,115,105,122,101,44,101,109,112,116,121,58,118,111,46,101,109,112,116,121,44,101,97,99,104,58,118,111,46,101,97,99,104,125,59,118,97,114,32,121,111,61,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,115,108,105,99,101,59,102,117,110,99,116,105,111,110,32,95,111,40,116,44,110,41,123,114,101,116,117,114,110,32,116,45,110,125,102,117,110,99,116,105,111,110,32,98,111,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,125,125,102,117,110,99,116,105,111,110,32,109,111,40,116,44,110,41,123,102,111,114,40,118,97,114,32,101,44,114,61,45,49,44,105,61,110,46,108,101,110,103,116,104,59,43,43,114,60,105,59,41,105,102,40,101,61,120,111,40,116,44,110,91,114,93,41,41,114,101,116,117,114,110,32,101,59,114,101,116,117,114,110,32,48,125,102,117,110,99,116,105,111,110,32,120,111,40,116,44,110,41,123,102,111,114,40,118,97,114,32,101,61,110,91,48,93,44,114,61,110,91,49,93,44,105,61,45,49,44,111,61,48,44,97,61,116,46,108,101,110,103,116,104,44,117,61,97,45,49,59,111,60,97,59,117,61,111,43,43,41,123,118,97,114,32,99,61,116,91,111,93,44,102,61,99,91,48,93,44,115,61,99,91,49,93,44,108,61,116,91,117,93,44,104,61,108,91,48,93,44,100,61,108,91,49,93,59,105,102,40,119,111,40,99,44,108,44,110,41,41,114,101,116,117,114,110,32,48,59,115,62,114,33,61,100,62,114,38,38,101,60,40,104,45,102,41,42,40,114,45,115,41,47,40,100,45,115,41,43,102,38,38,40,105,61,45,105,41,125,114,101,116,117,114,110,32,105,125,102,117,110,99,116,105,111,110,32,119,111,40,116,44,110,44,101,41,123,118,97,114,32,114,44,105,44,111,44,97,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,44,110,44,101,41,123,114,101,116,117,114,110,40,110,91,48,93,45,116,91,48,93,41,42,40,101,91,49,93,45,116,91,49,93,41,61,61,40,101,91,48,93,45,116,91,48,93,41,42,40,110,91,49,93,45,116,91,49,93,41,125,40,116,44,110,44,101,41,38,38,40,105,61,116,91,114,61,43,40,116,91,48,93,61,61,61,110,91,48,93,41,93,44,111,61,101,91,114,93,44,97,61,110,91,114,93,44,105,60,61,111,38,38,111,60,61,97,124,124,97,60,61,111,38,38,111,60,61,105,41,125,102,117,110,99,116,105,111,110,32,77,111,40,41,123,125,118,97,114,32,78,111,61,91,91,93,44,91,91,91,49,44,49,46,53,93,44,91,46,53,44,49,93,93,93,44,91,91,91,49,46,53,44,49,93,44,91,49,44,49,46,53,93,93,93,44,91,91,91,49,46,53,44,49,93,44,91,46,53,44,49,93,93,93,44,91,91,91,49,44,46,53,93,44,91,49,46,53,44,49,93,93,93,44,91,91,91,49,44,49,46,53,93,44,91,46,53,44,49,93,93,44,91,91,49,44,46,53,93,44,91,49,46,53,44,49,93,93,93,44,91,91,91,49,44,46,53,93,44,91,49,44,49,46,53,93,93,93,44,91,91,91,49,44,46,53,93,44,91,46,53,44,49,93,93,93,44,91,91,91,46,53,44,49,93,44,91,49,44,46,53,93,93,93,44,91,91,91,49,44,49,46,53,93,44,91,49,44,46,53,93,93,93,44,91,91,91,46,53,44,49,93,44,91,49,44,46,53,93,93,44,91,91,49,46,53,44,49,93,44,91,49,44,49,46,53,93,93,93,44,91,91,91,49,46,53,44,49,93,44,91,49,44,46,53,93,93,93,44,91,91,91,46,53,44,49,93,44,91,49,46,53,44,49,93,93,93,44,91,91,91,49,44,49,46,53,93,44,91,49,46,53,44,49,93,93,93,44,91,91,91,46,53,44,49,93,44,91,49,44,49,46,53,93,93,93,44,91,93,93,59,102,117,110,99,116,105,111,110,32,84,111,40,41,123,118,97,114,32,116,61,49,44,110,61,49,44,101,61,77,44,114,61,117,59,102,117,110,99,116,105,111,110,32,105,40,116,41,123,118,97,114,32,110,61,101,40,116,41,59,105,102,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,110,41,41,110,61,110,46,115,108,105,99,101,40,41,46,115,111,114,116,40,95,111,41,59,101,108,115,101,123,118,97,114,32,114,61,115,40,116,41,44,105,61,114,91,48,93,44,97,61,114,91,49,93,59,110,61,119,40,105,44,97,44,110,41,44,110,61,103,40,77,97,116,104,46,102,108,111,111,114,40,105,47,110,41,42,110,44,77,97,116,104,46,102,108,111,111,114,40,97,47,110,41,42,110,44,110,41,125,114,101,116,117,114,110,32,110,46,109,97,112,40,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,111,40,116,44,110,41,125,41,125,102,117,110,99,116,105,111,110,32,111,40,101,44,105,41,123,118,97,114,32,111,61,91,93,44,117,61,91,93,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,101,44,114,44,105,41,123,118,97,114,32,111,44,117,44,99,44,102,44,115,44,108,44,104,61,110,101,119,32,65,114,114,97,121,44,100,61,110,101,119,32,65,114,114,97,121,59,111,61,117,61,45,49,44,102,61,101,91,48,93,62,61,114,44,78,111,91,102,60,60,49,93,46,102,111,114,69,97,99,104,40,112,41,59,102,111,114,40,59,43,43,111,60,116,45,49,59,41,99,61,102,44,102,61,101,91,111,43,49,93,62,61,114,44,78,111,91,99,124,102,60,60,49,93,46,102,111,114,69,97,99,104,40,112,41,59,78,111,91,102,60,60,48,93,46,102,111,114,69,97,99,104,40,112,41,59,102,111,114,40,59,43,43,117,60,110,45,49,59,41,123,102,111,114,40,111,61,45,49,44,102,61,101,91,117,42,116,43,116,93,62,61,114,44,115,61,101,91,117,42,116,93,62,61,114,44,78,111,91,102,60,60,49,124,115,60,60,50,93,46,102,111,114,69,97,99,104,40,112,41,59,43,43,111,60,116,45,49,59,41,99,61,102,44,102,61,101,91,117,42,116,43,116,43,111,43,49,93,62,61,114,44,108,61,115,44,115,61,101,91,117,42,116,43,111,43,49,93,62,61,114,44,78,111,91,99,124,102,60,60,49,124,115,60,60,50,124,108,60,60,51,93,46,102,111,114,69,97,99,104,40,112,41,59,78,111,91,102,124,115,60,60,51,93,46,102,111,114,69,97,99,104,40,112,41,125,111,61,45,49,44,115,61,101,91,117,42,116,93,62,61,114,44,78,111,91,115,60,60,50,93,46,102,111,114,69,97,99,104,40,112,41,59,102,111,114,40,59,43,43,111,60,116,45,49,59,41,108,61,115,44,115,61,101,91,117,42,116,43,111,43,49,93,62,61,114,44,78,111,91,115,60,60,50,124,108,60,60,51,93,46,102,111,114,69,97,99,104,40,112,41,59,102,117,110,99,116,105,111,110,32,112,40,116,41,123,118,97,114,32,110,44,101,44,114,61,91,116,91,48,93,91,48,93,43,111,44,116,91,48,93,91,49,93,43,117,93,44,99,61,91,116,91,49,93,91,48,93,43,111,44,116,91,49,93,91,49,93,43,117,93,44,102,61,97,40,114,41,44,115,61,97,40,99,41,59,40,110,61,100,91,102,93,41,63,40,101,61,104,91,115,93,41,63,40,100,101,108,101,116,101,32,100,91,110,46,101,110,100,93,44,100,101,108,101,116,101,32,104,91,101,46,115,116,97,114,116,93,44,110,61,61,61,101,63,40,110,46,114,105,110,103,46,112,117,115,104,40,99,41,44,105,40,110,46,114,105,110,103,41,41,58,104,91,110,46,115,116,97,114,116,93,61,100,91,101,46,101,110,100,93,61,123,115,116,97,114,116,58,110,46,115,116,97,114,116,44,101,110,100,58,101,46,101,110,100,44,114,105,110,103,58,110,46,114,105,110,103,46,99,111,110,99,97,116,40,101,46,114,105,110,103,41,125,41,58,40,100,101,108,101,116,101,32,100,91,110,46,101,110,100,93,44,110,46,114,105,110,103,46,112,117,115,104,40,99,41,44,100,91,110,46,101,110,100,61,115,93,61,110,41,58,40,110,61,104,91,115,93,41,63,40,101,61,100,91,102,93,41,63,40,100,101,108,101,116,101,32,104,91,110,46,115,116,97,114,116,93,44,100,101,108,101,116,101,32,100,91,101,46,101,110,100,93,44,110,61,61,61,101,63,40,110,46,114,105,110,103,46,112,117,115,104,40,99,41,44,105,40,110,46,114,105,110,103,41,41,58,104,91,101,46,115,116,97,114,116,93,61,100,91,110,46,101,110,100,93,61,123,115,116,97,114,116,58,101,46,115,116,97,114,116,44,101,110,100,58,110,46,101,110,100,44,114,105,110,103,58,101,46,114,105,110,103,46,99,111,110,99,97,116,40,110,46,114,105,110,103,41,125,41,58,40,100,101,108,101,116,101,32,104,91,110,46,115,116,97,114,116,93,44,110,46,114,105,110,103,46,117,110,115,104,105,102,116,40,114,41,44,104,91,110,46,115,116,97,114,116,61,102,93,61,110,41,58,104,91,102,93,61,100,91,115,93,61,123,115,116,97,114,116,58,102,44,101,110,100,58,115,44,114,105,110,103,58,91,114,44,99,93,125,125,78,111,91,115,60,60,51,93,46,102,111,114,69,97,99,104,40,112,41,125,40,101,44,105,44,102,117,110,99,116,105,111,110,40,116,41,123,114,40,116,44,101,44,105,41,44,102,117,110,99,116,105,111,110,40,116,41,123,102,111,114,40,118,97,114,32,110,61,48,44,101,61,116,46,108,101,110,103,116,104,44,114,61,116,91,101,45,49,93,91,49,93,42,116,91,48,93,91,48,93,45,116,91,101,45,49,93,91,48,93,42,116,91,48,93,91,49,93,59,43,43,110,60,101,59,41,114,43,61,116,91,110,45,49,93,91,49,93,42,116,91,110,93,91,48,93,45,116,91,110,45,49,93,91,48,93,42,116,91,110,93,91,49,93,59,114,101,116,117,114,110,32,114,125,40,116,41,62,48,63,111,46,112,117,115,104,40,91,116,93,41,58,117,46,112,117,115,104,40,116,41,125,41,44,117,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,116,41,123,102,111,114,40,118,97,114,32,110,44,101,61,48,44,114,61,111,46,108,101,110,103,116,104,59,101,60,114,59,43,43,101,41,105,102,40,45,49,33,61,61,109,111,40,40,110,61,111,91,101,93,41,91,48,93,44,116,41,41,114,101,116,117,114,110,32,118,111,105,100,32,110,46,112,117,115,104,40,116,41,125,41,44,123,116,121,112,101,58,34,77,117,108,116,105,80,111,108,121,103,111,110,34,44,118,97,108,117,101,58,105,44,99,111,111,114,100,105,110,97,116,101,115,58,111,125,125,102,117,110,99,116,105,111,110,32,97,40,110,41,123,114,101,116,117,114,110,32,50,42,110,91,48,93,43,110,91,49,93,42,40,116,43,49,41,42,52,125,102,117,110,99,116,105,111,110,32,117,40,101,44,114,44,105,41,123,101,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,111,44,97,61,101,91,48,93,44,117,61,101,91,49,93,44,99,61,48,124,97,44,102,61,48,124,117,44,115,61,114,91,102,42,116,43,99,93,59,97,62,48,38,38,97,60,116,38,38,99,61,61,61,97,38,38,40,111,61,114,91,102,42,116,43,99,45,49,93,44,101,91,48,93,61,97,43,40,105,45,111,41,47,40,115,45,111,41,45,46,53,41,44,117,62,48,38,38,117,60,110,38,38,102,61,61,61,117,38,38,40,111,61,114,91,40,102,45,49,41,42,116,43,99,93,44,101,91,49,93,61,117,43,40,105,45,111,41,47,40,115,45,111,41,45,46,53,41,125,41,125,114,101,116,117,114,110,32,105,46,99,111,110,116,111,117,114,61,111,44,105,46,115,105,122,101,61,102,117,110,99,116,105,111,110,40,101,41,123,105,102,40,33,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,114,101,116,117,114,110,91,116,44,110,93,59,118,97,114,32,114,61,77,97,116,104,46,99,101,105,108,40,101,91,48,93,41,44,111,61,77,97,116,104,46,99,101,105,108,40,101,91,49,93,41,59,105,102,40,33,40,114,62,48,38,38,111,62,48,41,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,105,110,118,97,108,105,100,32,115,105,122,101,34,41,59,114,101,116,117,114,110,32,116,61,114,44,110,61,111,44,105,125,44,105,46,116,104,114,101,115,104,111,108,100,115,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,101,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,65,114,114,97,121,46,105,115,65,114,114,97,121,40,116,41,63,98,111,40,121,111,46,99,97,108,108,40,116,41,41,58,98,111,40,116,41,44,105,41,58,101,125,44,105,46,115,109,111,111,116,104,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,114,61,116,63,117,58,77,111,44,105,41,58,114,61,61,61,117,125,44,105,125,102,117,110,99,116,105,111,110,32,65,111,40,116,44,110,44,101,41,123,102,111,114,40,118,97,114,32,114,61,116,46,119,105,100,116,104,44,105,61,116,46,104,101,105,103,104,116,44,111,61,49,43,40,101,60,60,49,41,44,97,61,48,59,97,60,105,59,43,43,97,41,102,111,114,40,118,97,114,32,117,61,48,44,99,61,48,59,117,60,114,43,101,59,43,43,117,41,117,60,114,38,38,40,99,43,61,116,46,100,97,116,97,91,117,43,97,42,114,93,41,44,117,62,61,101,38,38,40,117,62,61,111,38,38,40,99,45,61,116,46,100,97,116,97,91,117,45,111,43,97,42,114,93,41,44,110,46,100,97,116,97,91,117,45,101,43,97,42,114,93,61,99,47,77,97,116,104,46,109,105,110,40,117,43,49,44,114,45,49,43,111,45,117,44,111,41,41,125,102,117,110,99,116,105,111,110,32,83,111,40,116,44,110,44,101,41,123,102,111,114,40,118,97,114,32,114,61,116,46,119,105,100,116,104,44,105,61,116,46,104,101,105,103,104,116,44,111,61,49,43,40,101,60,60,49,41,44,97,61,48,59,97,60,114,59,43,43,97,41,102,111,114,40,118,97,114,32,117,61,48,44,99,61,48,59,117,60,105,43,101,59,43,43,117,41,117,60,105,38,38,40,99,43,61,116,46,100,97,116,97,91,97,43,117,42,114,93,41,44,117,62,61,101,38,38,40,117,62,61,111,38,38,40,99,45,61,116,46,100,97,116,97,91,97,43,40,117,45,111,41,42,114,93,41,44,110,46,100,97,116,97,91,97,43,40,117,45,101,41,42,114,93,61,99,47,77,97,116,104,46,109,105,110,40,117,43,49,44,105,45,49,43,111,45,117,44,111,41,41,125,102,117,110,99,116,105,111,110,32,107,111,40,116,41,123,114,101,116,117,114,110,32,116,91,48,93,125,102,117,110,99,116,105,111,110,32,69,111,40,116,41,123,114,101,116,117,114,110,32,116,91,49,93,125,102,117,110,99,116,105,111,110,32,67,111,40,41,123,114,101,116,117,114,110,32,49,125,118,97,114,32,80,111,61,123,125,44,122,111,61,123,125,44,82,111,61,51,52,44,68,111,61,49,48,44,113,111,61,49,51,59,102,117,110,99,116,105,111,110,32,76,111,40,116,41,123,114,101,116,117,114,110,32,110,101,119,32,70,117,110,99,116,105,111,110,40,34,100,34,44,34,114,101,116,117,114,110,32,123,34,43,116,46,109,97,112,40,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,74,83,79,78,46,115,116,114,105,110,103,105,102,121,40,116,41,43,34,58,32,100,91,34,43,110,43,39,93,32,124,124,32,34,34,39,125,41,46,106,111,105,110,40,34,44,34,41,43,34,125,34,41,125,102,117,110,99,116,105,111,110,32,85,111,40,116,41,123,118,97,114,32,110,61,79,98,106,101,99,116,46,99,114,101,97,116,101,40,110,117,108,108,41,44,101,61,91,93,59,114,101,116,117,114,110,32,116,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,116,41,123,102,111,114,40,118,97,114,32,114,32,105,110,32,116,41,114,32,105,110,32,110,124,124,101,46,112,117,115,104,40,110,91,114,93,61,114,41,125,41,44,101,125,102,117,110,99,116,105,111,110,32,79,111,40,116,44,110,41,123,118,97,114,32,101,61,116,43,34,34,44,114,61,101,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,114,60,110,63,110,101,119,32,65,114,114,97,121,40,110,45,114,43,49,41,46,106,111,105,110,40,48,41,43,101,58,101,125,102,117,110,99,116,105,111,110,32,66,111,40,116,41,123,118,97,114,32,110,61,116,46,103,101,116,85,84,67,72,111,117,114,115,40,41,44,101,61,116,46,103,101,116,85,84,67,77,105,110,117,116,101,115,40,41,44,114,61,116,46,103,101,116,85,84,67,83,101,99,111,110,100,115,40,41,44,105,61,116,46,103,101,116,85,84,67,77,105,108,108,105,115,101,99,111,110,100,115,40,41,59,114,101,116,117,114,110,32,105,115,78,97,78,40,116,41,63,34,73,110,118,97,108,105,100,32,68,97,116,101,34,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,60,48,63,34,45,34,43,79,111,40,45,116,44,54,41,58,116,62,57,57,57,57,63,34,43,34,43,79,111,40,116,44,54,41,58,79,111,40,116,44,52,41,125,40,116,46,103,101,116,85,84,67,70,117,108,108,89,101,97,114,40,41,41,43,34,45,34,43,79,111,40,116,46,103,101,116,85,84,67,77,111,110,116,104,40,41,43,49,44,50,41,43,34,45,34,43,79,111,40,116,46,103,101,116,85,84,67,68,97,116,101,40,41,44,50,41,43,40,105,63,34,84,34,43,79,111,40,110,44,50,41,43,34,58,34,43,79,111,40,101,44,50,41,43,34,58,34,43,79,111,40,114,44,50,41,43,34,46,34,43,79,111,40,105,44,51,41,43,34,90,34,58,114,63,34,84,34,43,79,111,40,110,44,50,41,43,34,58,34,43,79,111,40,101,44,50,41,43,34,58,34,43,79,111,40,114,44,50,41,43,34,90,34,58,101,124,124,110,63,34,84,34,43,79,111,40,110,44,50,41,43,34,58,34,43,79,111,40,101,44,50,41,43,34,90,34,58,34,34,41,125,102,117,110,99,116,105,111,110,32,70,111,40,116,41,123,118,97,114,32,110,61,110,101,119,32,82,101,103,69,120,112,40,39,91,34,39,43,116,43,34,92,110,92,114,93,34,41,44,101,61,116,46,99,104,97,114,67,111,100,101,65,116,40,48,41,59,102,117,110,99,116,105,111,110,32,114,40,116,44,110,41,123,118,97,114,32,114,44,105,61,91,93,44,111,61,116,46,108,101,110,103,116,104,44,97,61,48,44,117,61,48,44,99,61,111,60,61,48,44,102,61,33,49,59,102,117,110,99,116,105,111,110,32,115,40,41,123,105,102,40,99,41,114,101,116,117,114,110,32,122,111,59,105,102,40,102,41,114,101,116,117,114,110,32,102,61,33,49,44,80,111,59,118,97,114,32,110,44,114,44,105,61,97,59,105,102,40,116,46,99,104,97,114,67,111,100,101,65,116,40,105,41,61,61,61,82,111,41,123,102,111,114,40,59,97,43,43,60,111,38,38,116,46,99,104,97,114,67,111,100,101,65,116,40,97,41,33,61,61,82,111,124,124,116,46,99,104,97,114,67,111,100,101,65,116,40,43,43,97,41,61,61,61,82,111,59,41,59,114,101,116,117,114,110,40,110,61,97,41,62,61,111,63,99,61,33,48,58,40,114,61,116,46,99,104,97,114,67,111,100,101,65,116,40,97,43,43,41,41,61,61,61,68,111,63,102,61,33,48,58,114,61,61,61,113,111,38,38,40,102,61,33,48,44,116,46,99,104,97,114,67,111,100,101,65,116,40,97,41,61,61,61,68,111,38,38,43,43,97,41,44,116,46,115,108,105,99,101,40,105,43,49,44,110,45,49,41,46,114,101,112,108,97,99,101,40,47,34,34,47,103,44,39,34,39,41,125,102,111,114,40,59,97,60,111,59,41,123,105,102,40,40,114,61,116,46,99,104,97,114,67,111,100,101,65,116,40,110,61,97,43,43,41,41,61,61,61,68,111,41,102,61,33,48,59,101,108,115,101,32,105,102,40,114,61,61,61,113,111,41,102,61,33,48,44,116,46,99,104,97,114,67,111,100,101,65,116,40,97,41,61,61,61,68,111,38,38,43,43,97,59,101,108,115,101,32,105,102,40,114,33,61,61,101,41,99,111,110,116,105,110,117,101,59,114,101,116,117,114,110,32,116,46,115,108,105,99,101,40,105,44,110,41,125,114,101,116,117,114,110,32,99,61,33,48,44,116,46,115,108,105,99,101,40,105,44,111,41,125,102,111,114,40,116,46,99,104,97,114,67,111,100,101,65,116,40,111,45,49,41,61,61,61,68,111,38,38,45,45,111,44,116,46,99,104,97,114,67,111,100,101,65,116,40,111,45,49,41,61,61,61,113,111,38,38,45,45,111,59,40,114,61,115,40,41,41,33,61,61,122,111,59,41,123,102,111,114,40,118,97,114,32,108,61,91,93,59,114,33,61,61,80,111,38,38,114,33,61,61,122,111,59,41,108,46,112,117,115,104,40,114,41,44,114,61,115,40,41,59,110,38,38,110,117,108,108,61,61,40,108,61,110,40,108,44,117,43,43,41,41,124,124,105,46,112,117,115,104,40,108,41,125,114,101,116,117,114,110,32,105,125,102,117,110,99,116,105,111,110,32,105,40,110,44,101,41,123,114,101,116,117,114,110,32,110,46,109,97,112,40,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,101,46,109,97,112,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,40,110,91,116,93,41,125,41,46,106,111,105,110,40,116,41,125,41,125,102,117,110,99,116,105,111,110,32,111,40,110,41,123,114,101,116,117,114,110,32,110,46,109,97,112,40,97,41,46,106,111,105,110,40,116,41,125,102,117,110,99,116,105,111,110,32,97,40,116,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,116,63,34,34,58,116,32,105,110,115,116,97,110,99,101,111,102,32,68,97,116,101,63,66,111,40,116,41,58,110,46,116,101,115,116,40,116,43,61,34,34,41,63,39,34,39,43,116,46,114,101,112,108,97,99,101,40,47,34,47,103,44,39,34,34,39,41,43,39,34,39,58,116,125,114,101,116,117,114,110,123,112,97,114,115,101,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,44,105,44,111,61,114,40,116,44,102,117,110,99,116,105,111,110,40,116,44,114,41,123,105,102,40,101,41,114,101,116,117,114,110,32,101,40,116,44,114,45,49,41,59,105,61,116,44,101,61,110,63,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,61,76,111,40,116,41,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,114,44,105,41,123,114,101,116,117,114,110,32,110,40,101,40,114,41,44,105,44,116,41,125,125,40,116,44,110,41,58,76,111,40,116,41,125,41,59,114,101,116,117,114,110,32,111,46,99,111,108,117,109,110,115,61,105,124,124,91,93,44,111,125,44,112,97,114,115,101,82,111,119,115,58,114,44,102,111,114,109,97,116,58,102,117,110,99,116,105,111,110,40,110,44,101,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,101,38,38,40,101,61,85,111,40,110,41,41,44,91,101,46,109,97,112,40,97,41,46,106,111,105,110,40,116,41,93,46,99,111,110,99,97,116,40,105,40,110,44,101,41,41,46,106,111,105,110,40,34,92,110,34,41,125,44,102,111,114,109,97,116,66,111,100,121,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,110,38,38,40,110,61,85,111,40,116,41,41,44,105,40,116,44,110,41,46,106,111,105,110,40,34,92,110,34,41,125,44,102,111,114,109,97,116,82,111,119,115,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,109,97,112,40,111,41,46,106,111,105,110,40,34,92,110,34,41,125,44,102,111,114,109,97,116,82,111,119,58,111,44,102,111,114,109,97,116,86,97,108,117,101,58,97,125,125,118,97,114,32,89,111,61,70,111,40,34,44,34,41,44,73,111,61,89,111,46,112,97,114,115,101,44,72,111,61,89,111,46,112,97,114,115,101,82,111,119,115,44,106,111,61,89,111,46,102,111,114,109,97,116,44,88,111,61,89,111,46,102,111,114,109,97,116,66,111,100,121,44,86,111,61,89,111,46,102,111,114,109,97,116,82,111,119,115,44,71,111,61,89,111,46,102,111,114,109,97,116,82,111,119,44,36,111,61,89,111,46,102,111,114,109,97,116,86,97,108,117,101,44,87,111,61,70,111,40,34,92,116,34,41,44,90,111,61,87,111,46,112,97,114,115,101,44,81,111,61,87,111,46,112,97,114,115,101,82,111,119,115,44,75,111,61,87,111,46,102,111,114,109,97,116,44,74,111,61,87,111,46,102,111,114,109,97,116,66,111,100,121,44,116,97,61,87,111,46,102,111,114,109,97,116,82,111,119,115,44,110,97,61,87,111,46,102,111,114,109,97,116,82,111,119,44,101,97,61,87,111,46,102,111,114,109,97,116,86,97,108,117,101,59,118,97,114,32,114,97,61,110,101,119,32,68,97,116,101,40,34,50,48,49,57,45,48,49,45,48,49,84,48,48,58,48,48,34,41,46,103,101,116,72,111,117,114,115,40,41,124,124,110,101,119,32,68,97,116,101,40,34,50,48,49,57,45,48,55,45,48,49,84,48,48,58,48,48,34,41,46,103,101,116,72,111,117,114,115,40,41,59,102,117,110,99,116,105,111,110,32,105,97,40,116,41,123,105,102,40,33,116,46,111,107,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,116,46,115,116,97,116,117,115,43,34,32,34,43,116,46,115,116,97,116,117,115,84,101,120,116,41,59,114,101,116,117,114,110,32,116,46,98,108,111,98,40,41,125,102,117,110,99,116,105,111,110,32,111,97,40,116,41,123,105,102,40,33,116,46,111,107,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,116,46,115,116,97,116,117,115,43,34,32,34,43,116,46,115,116,97,116,117,115,84,101,120,116,41,59,114,101,116,117,114,110,32,116,46,97,114,114,97,121,66,117,102,102,101,114,40,41,125,102,117,110,99,116,105,111,110,32,97,97,40,116,41,123,105,102,40,33,116,46,111,107,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,116,46,115,116,97,116,117,115,43,34,32,34,43,116,46,115,116,97,116,117,115,84,101,120,116,41,59,114,101,116,117,114,110,32,116,46,116,101,120,116,40,41,125,102,117,110,99,116,105,111,110,32,117,97,40,116,44,110,41,123,114,101,116,117,114,110,32,102,101,116,99,104,40,116,44,110,41,46,116,104,101,110,40,97,97,41,125,102,117,110,99,116,105,111,110,32,99,97,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,110,44,101,44,114,41,123,114,101,116,117,114,110,32,50,61,61,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,38,38,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,101,38,38,40,114,61,101,44,101,61,118,111,105,100,32,48,41,44,117,97,40,110,44,101,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,40,110,44,114,41,125,41,125,125,118,97,114,32,102,97,61,99,97,40,73,111,41,44,115,97,61,99,97,40,90,111,41,59,102,117,110,99,116,105,111,110,32,108,97,40,116,41,123,105,102,40,33,116,46,111,107,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,116,46,115,116,97,116,117,115,43,34,32,34,43,116,46,115,116,97,116,117,115,84,101,120,116,41,59,114,101,116,117,114,110,32,116,46,106,115,111,110,40,41,125,102,117,110,99,116,105,111,110,32,104,97,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,110,44,101,41,123,114,101,116,117,114,110,32,117,97,40,110,44,101,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,40,110,101,119,32,68,79,77,80,97,114,115,101,114,41,46,112,97,114,115,101,70,114,111,109,83,116,114,105,110,103,40,110,44,116,41,125,41,125,125,118,97,114,32,100,97,61,104,97,40,34,97,112,112,108,105,99,97,116,105,111,110,47,120,109,108,34,41,44,112,97,61,104,97,40,34,116,101,120,116,47,104,116,109,108,34,41,44,118,97,61,104,97,40,34,105,109,97,103,101,47,115,118,103,43,120,109,108,34,41,59,102,117,110,99,116,105,111,110,32,103,97,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,125,125,102,117,110,99,116,105,111,110,32,121,97,40,41,123,114,101,116,117,114,110,32,49,101,45,54,42,40,77,97,116,104,46,114,97,110,100,111,109,40,41,45,46,53,41,125,102,117,110,99,116,105,111,110,32,95,97,40,116,44,110,44,101,44,114,41,123,105,102,40,105,115,78,97,78,40,110,41,124,124,105,115,78,97,78,40,101,41,41,114,101,116,117,114,110,32,116,59,118,97,114,32,105,44,111,44,97,44,117,44,99,44,102,44,115,44,108,44,104,44,100,61,116,46,95,114,111,111,116,44,112,61,123,100,97,116,97,58,114,125,44,118,61,116,46,95,120,48,44,103,61,116,46,95,121,48,44,121,61,116,46,95,120,49,44,95,61,116,46,95,121,49,59,105,102,40,33,100,41,114,101,116,117,114,110,32,116,46,95,114,111,111,116,61,112,44,116,59,102,111,114,40,59,100,46,108,101,110,103,116,104,59,41,105,102,40,40,102,61,110,62,61,40,111,61,40,118,43,121,41,47,50,41,41,63,118,61,111,58,121,61,111,44,40,115,61,101,62,61,40,97,61,40,103,43,95,41,47,50,41,41,63,103,61,97,58,95,61,97,44,105,61,100,44,33,40,100,61,100,91,108,61,115,60,60,49,124,102,93,41,41,114,101,116,117,114,110,32,105,91,108,93,61,112,44,116,59,105,102,40,117,61,43,116,46,95,120,46,99,97,108,108,40,110,117,108,108,44,100,46,100,97,116,97,41,44,99,61,43,116,46,95,121,46,99,97,108,108,40,110,117,108,108,44,100,46,100,97,116,97,41,44,110,61,61,61,117,38,38,101,61,61,61,99,41,114,101,116,117,114,110,32,112,46,110,101,120,116,61,100,44,105,63,105,91,108,93,61,112,58,116,46,95,114,111,111,116,61,112,44,116,59,100,111,123,105,61,105,63,105,91,108,93,61,110,101,119,32,65,114,114,97,121,40,52,41,58,116,46,95,114,111,111,116,61,110,101,119,32,65,114,114,97,121,40,52,41,44,40,102,61,110,62,61,40,111,61,40,118,43,121,41,47,50,41,41,63,118,61,111,58,121,61,111,44,40,115,61,101,62,61,40,97,61,40,103,43,95,41,47,50,41,41,63,103,61,97,58,95,61,97,125,119,104,105,108,101,40,40,108,61,115,60,60,49,124,102,41,61,61,40,104,61,40,99,62,61,97,41,60,60,49,124,117,62,61,111,41,41,59,114,101,116,117,114,110,32,105,91,104,93,61,100,44,105,91,108,93,61,112,44,116,125,102,117,110,99,116,105,111,110,32,98,97,40,116,44,110,44,101,44,114,44,105,41,123,116,104,105,115,46,110,111,100,101,61,116,44,116,104,105,115,46,120,48,61,110,44,116,104,105,115,46,121,48,61,101,44,116,104,105,115,46,120,49,61,114,44,116,104,105,115,46,121,49,61,105,125,102,117,110,99,116,105,111,110,32,109,97,40,116,41,123,114,101,116,117,114,110,32,116,91,48,93,125,102,117,110,99,116,105,111,110,32,120,97,40,116,41,123,114,101,116,117,114,110,32,116,91,49,93,125,102,117,110,99,116,105,111,110,32,119,97,40,116,44,110,44,101,41,123,118,97,114,32,114,61,110,101,119,32,77,97,40,110,117,108,108,61,61,110,63,109,97,58,110,44,110,117,108,108,61,61,101,63,120,97,58,101,44,78,97,78,44,78,97,78,44,78,97,78,44,78,97,78,41,59,114,101,116,117,114,110,32,110,117,108,108,61,61,116,63,114,58,114,46,97,100,100,65,108,108,40,116,41,125,102,117,110,99,116,105,111,110,32,77,97,40,116,44,110,44,101,44,114,44,105,44,111,41,123,116,104,105,115,46,95,120,61,116,44,116,104,105,115,46,95,121,61,110,44,116,104,105,115,46,95,120,48,61,101,44,116,104,105,115,46,95,121,48,61,114,44,116,104,105,115,46,95,120,49,61,105,44,116,104,105,115,46,95,121,49,61,111,44,116,104,105,115,46,95,114,111,111,116,61,118,111,105,100,32,48,125,102,117,110,99,116,105,111,110,32,78,97,40,116,41,123,102,111,114,40,118,97,114,32,110,61,123,100,97,116,97,58,116,46,100,97,116,97,125,44,101,61,110,59,116,61,116,46,110,101,120,116,59,41,101,61,101,46,110,101,120,116,61,123,100,97,116,97,58,116,46,100,97,116,97,125,59,114,101,116,117,114,110,32,110,125,118,97,114,32,84,97,61,119,97,46,112,114,111,116,111,116,121,112,101,61,77,97,46,112,114,111,116,111,116,121,112,101,59,102,117,110,99,116,105,111,110,32,65,97,40,116,41,123,114,101,116,117,114,110,32,116,46,120,43,116,46,118,120,125,102,117,110,99,116,105,111,110,32,83,97,40,116,41,123,114,101,116,117,114,110,32,116,46,121,43,116,46,118,121,125,102,117,110,99,116,105,111,110,32,107,97,40,116,41,123,114,101,116,117,114,110,32,116,46,105,110,100,101,120,125,102,117,110,99,116,105,111,110,32,69,97,40,116,44,110,41,123,118,97,114,32,101,61,116,46,103,101,116,40,110,41,59,105,102,40,33,101,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,109,105,115,115,105,110,103,58,32,34,43,110,41,59,114,101,116,117,114,110,32,101,125,102,117,110,99,116,105,111,110,32,67,97,40,116,41,123,114,101,116,117,114,110,32,116,46,120,125,102,117,110,99,116,105,111,110,32,80,97,40,116,41,123,114,101,116,117,114,110,32,116,46,121,125,84,97,46,99,111,112,121,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,44,110,44,101,61,110,101,119,32,77,97,40,116,104,105,115,46,95,120,44,116,104,105,115,46,95,121,44,116,104,105,115,46,95,120,48,44,116,104,105,115,46,95,121,48,44,116,104,105,115,46,95,120,49,44,116,104,105,115,46,95,121,49,41,44,114,61,116,104,105,115,46,95,114,111,111,116,59,105,102,40,33,114,41,114,101,116,117,114,110,32,101,59,105,102,40,33,114,46,108,101,110,103,116,104,41,114,101,116,117,114,110,32,101,46,95,114,111,111,116,61,78,97,40,114,41,44,101,59,102,111,114,40,116,61,91,123,115,111,117,114,99,101,58,114,44,116,97,114,103,101,116,58,101,46,95,114,111,111,116,61,110,101,119,32,65,114,114,97,121,40,52,41,125,93,59,114,61,116,46,112,111,112,40,41,59,41,102,111,114,40,118,97,114,32,105,61,48,59,105,60,52,59,43,43,105,41,40,110,61,114,46,115,111,117,114,99,101,91,105,93,41,38,38,40,110,46,108,101,110,103,116,104,63,116,46,112,117,115,104,40,123,115,111,117,114,99,101,58,110,44,116,97,114,103,101,116,58,114,46,116,97,114,103,101,116,91,105,93,61,110,101,119,32,65,114,114,97,121,40,52,41,125,41,58,114,46,116,97,114,103,101,116,91,105,93,61,78,97,40,110,41,41,59,114,101,116,117,114,110,32,101,125,44,84,97,46,97,100,100,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,43,116,104,105,115,46,95,120,46,99,97,108,108,40,110,117,108,108,44,116,41,44,101,61,43,116,104,105,115,46,95,121,46,99,97,108,108,40,110,117,108,108,44,116,41,59,114,101,116,117,114,110,32,95,97,40,116,104,105,115,46,99,111,118,101,114,40,110,44,101,41,44,110,44,101,44,116,41,125,44,84,97,46,97,100,100,65,108,108,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,44,101,44,114,44,105,44,111,61,116,46,108,101,110,103,116,104,44,97,61,110,101,119,32,65,114,114,97,121,40,111,41,44,117,61,110,101,119,32,65,114,114,97,121,40,111,41,44,99,61,49,47,48,44,102,61,49,47,48,44,115,61,45,49,47,48,44,108,61,45,49,47,48,59,102,111,114,40,101,61,48,59,101,60,111,59,43,43,101,41,105,115,78,97,78,40,114,61,43,116,104,105,115,46,95,120,46,99,97,108,108,40,110,117,108,108,44,110,61,116,91,101,93,41,41,124,124,105,115,78,97,78,40,105,61,43,116,104,105,115,46,95,121,46,99,97,108,108,40,110,117,108,108,44,110,41,41,124,124,40,97,91,101,93,61,114,44,117,91,101,93,61,105,44,114,60,99,38,38,40,99,61,114,41,44,114,62,115,38,38,40,115,61,114,41,44,105,60,102,38,38,40,102,61,105,41,44,105,62,108,38,38,40,108,61,105,41,41,59,105,102,40,99,62,115,124,124,102,62,108,41,114,101,116,117,114,110,32,116,104,105,115,59,102,111,114,40,116,104,105,115,46,99,111,118,101,114,40,99,44,102,41,46,99,111,118,101,114,40,115,44,108,41,44,101,61,48,59,101,60,111,59,43,43,101,41,95,97,40,116,104,105,115,44,97,91,101,93,44,117,91,101,93,44,116,91,101,93,41,59,114,101,116,117,114,110,32,116,104,105,115,125,44,84,97,46,99,111,118,101,114,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,105,102,40,105,115,78,97,78,40,116,61,43,116,41,124,124,105,115,78,97,78,40,110,61,43,110,41,41,114,101,116,117,114,110,32,116,104,105,115,59,118,97,114,32,101,61,116,104,105,115,46,95,120,48,44,114,61,116,104,105,115,46,95,121,48,44,105,61,116,104,105,115,46,95,120,49,44,111,61,116,104,105,115,46,95,121,49,59,105,102,40,105,115,78,97,78,40,101,41,41,105,61,40,101,61,77,97,116,104,46,102,108,111,111,114,40,116,41,41,43,49,44,111,61,40,114,61,77,97,116,104,46,102,108,111,111,114,40,110,41,41,43,49,59,101,108,115,101,123,102,111,114,40,118,97,114,32,97,44,117,44,99,61,105,45,101,44,102,61,116,104,105,115,46,95,114,111,111,116,59,101,62,116,124,124,116,62,61,105,124,124,114,62,110,124,124,110,62,61,111,59,41,115,119,105,116,99,104,40,117,61,40,110,60,114,41,60,60,49,124,116,60,101,44,40,97,61,110,101,119,32,65,114,114,97,121,40,52,41,41,91,117,93,61,102,44,102,61,97,44,99,42,61,50,44,117,41,123,99,97,115,101,32,48,58,105,61,101,43,99,44,111,61,114,43,99,59,98,114,101,97,107,59,99,97,115,101,32,49,58,101,61,105,45,99,44,111,61,114,43,99,59,98,114,101,97,107,59,99,97,115,101,32,50,58,105,61,101,43,99,44,114,61,111,45,99,59,98,114,101,97,107,59,99,97,115,101,32,51,58,101,61,105,45,99,44,114,61,111,45,99,125,116,104,105,115,46,95,114,111,111,116,38,38,116,104,105,115,46,95,114,111,111,116,46,108,101,110,103,116,104,38,38,40,116,104,105,115,46,95,114,111,111,116,61,102,41,125,114,101,116,117,114,110,32,116,104,105,115,46,95,120,48,61,101,44,116,104,105,115,46,95,121,48,61,114,44,116,104,105,115,46,95,120,49,61,105,44,116,104,105,115,46,95,121,49,61,111,44,116,104,105,115,125,44,84,97,46,100,97,116,97,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,91,93,59,114,101,116,117,114,110,32,116,104,105,115,46,118,105,115,105,116,40,102,117,110,99,116,105,111,110,40,110,41,123,105,102,40,33,110,46,108,101,110,103,116,104,41,100,111,123,116,46,112,117,115,104,40,110,46,100,97,116,97,41,125,119,104,105,108,101,40,110,61,110,46,110,101,120,116,41,125,41,44,116,125,44,84,97,46,101,120,116,101,110,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,116,104,105,115,46,99,111,118,101,114,40,43,116,91,48,93,91,48,93,44,43,116,91,48,93,91,49,93,41,46,99,111,118,101,114,40,43,116,91,49,93,91,48,93,44,43,116,91,49,93,91,49,93,41,58,105,115,78,97,78,40,116,104,105,115,46,95,120,48,41,63,118,111,105,100,32,48,58,91,91,116,104,105,115,46,95,120,48,44,116,104,105,115,46,95,121,48,93,44,91,116,104,105,115,46,95,120,49,44,116,104,105,115,46,95,121,49,93,93,125,44,84,97,46,102,105,110,100,61,102,117,110,99,116,105,111,110,40,116,44,110,44,101,41,123,118,97,114,32,114,44,105,44,111,44,97,44,117,44,99,44,102,44,115,61,116,104,105,115,46,95,120,48,44,108,61,116,104,105,115,46,95,121,48,44,104,61,116,104,105,115,46,95,120,49,44,100,61,116,104,105,115,46,95,121,49,44,112,61,91,93,44,118,61,116,104,105,115,46,95,114,111,111,116,59,102,111,114,40,118,38,38,112,46,112,117,115,104,40,110,101,119,32,98,97,40,118,44,115,44,108,44,104,44,100,41,41,44,110,117,108,108,61,61,101,63,101,61,49,47,48,58,40,115,61,116,45,101,44,108,61,110,45,101,44,104,61,116,43,101,44,100,61,110,43,101,44,101,42,61,101,41,59,99,61,112,46,112,111,112,40,41,59,41,105,102,40,33,40,33,40,118,61,99,46,110,111,100,101,41,124,124,40,105,61,99,46,120,48,41,62,104,124,124,40,111,61,99,46,121,48,41,62,100,124,124,40,97,61,99,46,120,49,41,60,115,124,124,40,117,61,99,46,121,49,41,60,108,41,41,105,102,40,118,46,108,101,110,103,116,104,41,123,118,97,114,32,103,61,40,105,43,97,41,47,50,44,121,61,40,111,43,117,41,47,50,59,112,46,112,117,115,104,40,110,101,119,32,98,97,40,118,91,51,93,44,103,44,121,44,97,44,117,41,44,110,101,119,32,98,97,40,118,91,50,93,44,105,44,121,44,103,44,117,41,44,110,101,119,32,98,97,40,118,91,49,93,44,103,44,111,44,97,44,121,41,44,110,101,119,32,98,97,40,118,91,48,93,44,105,44,111,44,103,44,121,41,41,44,40,102,61,40,110,62,61,121,41,60,60,49,124,116,62,61,103,41,38,38,40,99,61,112,91,112,46,108,101,110,103,116,104,45,49,93,44,112,91,112,46,108,101,110,103,116,104,45,49,93,61,112,91,112,46,108,101,110,103,116,104,45,49,45,102,93,44,112,91,112,46,108,101,110,103,116,104,45,49,45,102,93,61,99,41,125,101,108,115,101,123,118,97,114,32,95,61,116,45,43,116,104,105,115,46,95,120,46,99,97,108,108,40,110,117,108,108,44,118,46,100,97,116,97,41,44,98,61,110,45,43,116,104,105,115,46,95,121,46,99,97,108,108,40,110,117,108,108,44,118,46,100,97,116,97,41,44,109,61,95,42,95,43,98,42,98,59,105,102,40,109,60,101,41,123,118,97,114,32,120,61,77,97,116,104,46,115,113,114,116,40,101,61,109,41,59,115,61,116,45,120,44,108,61,110,45,120,44,104,61,116,43,120,44,100,61,110,43,120,44,114,61,118,46,100,97,116,97,125,125,114,101,116,117,114,110,32,114,125,44,84,97,46,114,101,109,111,118,101,61,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,105,115,78,97,78,40,111,61,43,116,104,105,115,46,95,120,46,99,97,108,108,40,110,117,108,108,44,116,41,41,124,124,105,115,78,97,78,40,97,61,43,116,104,105,115,46,95,121,46,99,97,108,108,40,110,117,108,108,44,116,41,41,41,114,101,116,117,114,110,32,116,104,105,115,59,118,97,114,32,110,44,101,44,114,44,105,44,111,44,97,44,117,44,99,44,102,44,115,44,108,44,104,44,100,61,116,104,105,115,46,95,114,111,111,116,44,112,61,116,104,105,115,46,95,120,48,44,118,61,116,104,105,115,46,95,121,48,44,103,61,116,104,105,115,46,95,120,49,44,121,61,116,104,105,115,46,95,121,49,59,105,102,40,33,100,41,114,101,116,117,114,110,32,116,104,105,115,59,105,102,40,100,46,108,101,110,103,116,104,41,102,111,114,40,59,59,41,123,105,102,40,40,102,61,111,62,61,40,117,61,40,112,43,103,41,47,50,41,41,63,112,61,117,58,103,61,117,44,40,115,61,97,62,61,40,99,61,40,118,43,121,41,47,50,41,41,63,118,61,99,58,121,61,99,44,110,61,100,44,33,40,100,61,100,91,108,61,115,60,60,49,124,102,93,41,41,114,101,116,117,114,110,32,116,104,105,115,59,105,102,40,33,100,46,108,101,110,103,116,104,41,98,114,101,97,107,59,40,110,91,108,43,49,38,51,93,124,124,110,91,108,43,50,38,51,93,124,124,110,91,108,43,51,38,51,93,41,38,38,40,101,61,110,44,104,61,108,41,125,102,111,114,40,59,100,46,100,97,116,97,33,61,61,116,59,41,105,102,40,114,61,100,44,33,40,100,61,100,46,110,101,120,116,41,41,114,101,116,117,114,110,32,116,104,105,115,59,114,101,116,117,114,110,40,105,61,100,46,110,101,120,116,41,38,38,100,101,108,101,116,101,32,100,46,110,101,120,116,44,114,63,40,105,63,114,46,110,101,120,116,61,105,58,100,101,108,101,116,101,32,114,46,110,101,120,116,44,116,104,105,115,41,58,110,63,40,105,63,110,91,108,93,61,105,58,100,101,108,101,116,101,32,110,91,108,93,44,40,100,61,110,91,48,93,124,124,110,91,49,93,124,124,110,91,50,93,124,124,110,91,51,93,41,38,38,100,61,61,61,40,110,91,51,93,124,124,110,91,50,93,124,124,110,91,49,93,124,124,110,91,48,93,41,38,38,33,100,46,108,101,110,103,116,104,38,38,40,101,63,101,91,104,93,61,100,58,116,104,105,115,46,95,114,111,111,116,61,100,41,44,116,104,105,115,41,58,40,116,104,105,115,46,95,114,111,111,116,61,105,44,116,104,105,115,41,125,44,84,97,46,114,101,109,111,118,101,65,108,108,61,102,117,110,99,116,105,111,110,40,116,41,123,102,111,114,40,118,97,114,32,110,61,48,44,101,61,116,46,108,101,110,103,116,104,59,110,60,101,59,43,43,110,41,116,104,105,115,46,114,101,109,111,118,101,40,116,91,110,93,41,59,114,101,116,117,114,110,32,116,104,105,115,125,44,84,97,46,114,111,111,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,114,111,111,116,125,44,84,97,46,115,105,122,101,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,48,59,114,101,116,117,114,110,32,116,104,105,115,46,118,105,115,105,116,40,102,117,110,99,116,105,111,110,40,110,41,123,105,102,40,33,110,46,108,101,110,103,116,104,41,100,111,123,43,43,116,125,119,104,105,108,101,40,110,61,110,46,110,101,120,116,41,125,41,44,116,125,44,84,97,46,118,105,115,105,116,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,44,101,44,114,44,105,44,111,44,97,44,117,61,91,93,44,99,61,116,104,105,115,46,95,114,111,111,116,59,102,111,114,40,99,38,38,117,46,112,117,115,104,40,110,101,119,32,98,97,40,99,44,116,104,105,115,46,95,120,48,44,116,104,105,115,46,95,121,48,44,116,104,105,115,46,95,120,49,44,116,104,105,115,46,95,121,49,41,41,59,110,61,117,46,112,111,112,40,41,59,41,105,102,40,33,116,40,99,61,110,46,110,111,100,101,44,114,61,110,46,120,48,44,105,61,110,46,121,48,44,111,61,110,46,120,49,44,97,61,110,46,121,49,41,38,38,99,46,108,101,110,103,116,104,41,123,118,97,114,32,102,61,40,114,43,111,41,47,50,44,115,61,40,105,43,97,41,47,50,59,40,101,61,99,91,51,93,41,38,38,117,46,112,117,115,104,40,110,101,119,32,98,97,40,101,44,102,44,115,44,111,44,97,41,41,44,40,101,61,99,91,50,93,41,38,38,117,46,112,117,115,104,40,110,101,119,32,98,97,40,101,44,114,44,115,44,102,44,97,41,41,44,40,101,61,99,91,49,93,41,38,38,117,46,112,117,115,104,40,110,101,119,32,98,97,40,101,44,102,44,105,44,111,44,115,41,41,44,40,101,61,99,91,48,93,41,38,38,117,46,112,117,115,104,40,110,101,119,32,98,97,40,101,44,114,44,105,44,102,44,115,41,41,125,114,101,116,117,114,110,32,116,104,105,115,125,44,84,97,46,118,105,115,105,116,65,102,116,101,114,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,44,101,61,91,93,44,114,61,91,93,59,102,111,114,40,116,104,105,115,46,95,114,111,111,116,38,38,101,46,112,117,115,104,40,110,101,119,32,98,97,40,116,104,105,115,46,95,114,111,111,116,44,116,104,105,115,46,95,120,48,44,116,104,105,115,46,95,121,48,44,116,104,105,115,46,95,120,49,44,116,104,105,115,46,95,121,49,41,41,59,110,61,101,46,112,111,112,40,41,59,41,123,118,97,114,32,105,61,110,46,110,111,100,101,59,105,102,40,105,46,108,101,110,103,116,104,41,123,118,97,114,32,111,44,97,61,110,46,120,48,44,117,61,110,46,121,48,44,99,61,110,46,120,49,44,102,61,110,46,121,49,44,115,61,40,97,43,99,41,47,50,44,108,61,40,117,43,102,41,47,50,59,40,111,61,105,91,48,93,41,38,38,101,46,112,117,115,104,40,110,101,119,32,98,97,40,111,44,97,44,117,44,115,44,108,41,41,44,40,111,61,105,91,49,93,41,38,38,101,46,112,117,115,104,40,110,101,119,32,98,97,40,111,44,115,44,117,44,99,44,108,41,41,44,40,111,61,105,91,50,93,41,38,38,101,46,112,117,115,104,40,110,101,119,32,98,97,40,111,44,97,44,108,44,115,44,102,41,41,44,40,111,61,105,91,51,93,41,38,38,101,46,112,117,115,104,40,110,101,119,32,98,97,40,111,44,115,44,108,44,99,44,102,41,41,125,114,46,112,117,115,104,40,110,41,125,102,111,114,40,59,110,61,114,46,112,111,112,40,41,59,41,116,40,110,46,110,111,100,101,44,110,46,120,48,44,110,46,121,48,44,110,46,120,49,44,110,46,121,49,41,59,114,101,116,117,114,110,32,116,104,105,115,125,44,84,97,46,120,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,116,104,105,115,46,95,120,61,116,44,116,104,105,115,41,58,116,104,105,115,46,95,120,125,44,84,97,46,121,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,116,104,105,115,46,95,121,61,116,44,116,104,105,115,41,58,116,104,105,115,46,95,121,125,59,118,97,114,32,122,97,61,49,48,44,82,97,61,77,97,116,104,46,80,73,42,40,51,45,77,97,116,104,46,115,113,114,116,40,53,41,41,59,102,117,110,99,116,105,111,110,32,68,97,40,116,44,110,41,123,105,102,40,40,101,61,40,116,61,110,63,116,46,116,111,69,120,112,111,110,101,110,116,105,97,108,40,110,45,49,41,58,116,46,116,111,69,120,112,111,110,101,110,116,105,97,108,40,41,41,46,105,110,100,101,120,79,102,40,34,101,34,41,41,60,48,41,114,101,116,117,114,110,32,110,117,108,108,59,118,97,114,32,101,44,114,61,116,46,115,108,105,99,101,40,48,44,101,41,59,114,101,116,117,114,110,91,114,46,108,101,110,103,116,104,62,49,63,114,91,48,93,43,114,46,115,108,105,99,101,40,50,41,58,114,44,43,116,46,115,108,105,99,101,40,101,43,49,41,93,125,102,117,110,99,116,105,111,110,32,113,97,40,116,41,123,114,101,116,117,114,110,40,116,61,68,97,40,77,97,116,104,46,97,98,115,40,116,41,41,41,63,116,91,49,93,58,78,97,78,125,118,97,114,32,76,97,44,85,97,61,47,94,40,63,58,40,46,41,63,40,91,60,62,61,94,93,41,41,63,40,91,43,92,45,40,32,93,41,63,40,91,36,35,93,41,63,40,48,41,63,40,92,100,43,41,63,40,44,41,63,40,92,46,92,100,43,41,63,40,126,41,63,40,91,97,45,122,37,93,41,63,36,47,105,59,102,117,110,99,116,105,111,110,32,79,97,40,116,41,123,105,102,40,33,40,110,61,85,97,46,101,120,101,99,40,116,41,41,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,105,110,118,97,108,105,100,32,102,111,114,109,97,116,58,32,34,43,116,41,59,118,97,114,32,110,59,114,101,116,117,114,110,32,110,101,119,32,66,97,40,123,102,105,108,108,58,110,91,49,93,44,97,108,105,103,110,58,110,91,50,93,44,115,105,103,110,58,110,91,51,93,44,115,121,109,98,111,108,58,110,91,52,93,44,122,101,114,111,58,110,91,53,93,44,119,105,100,116,104,58,110,91,54,93,44,99,111,109,109,97,58,110,91,55,93,44,112,114,101,99,105,115,105,111,110,58,110,91,56,93,38,38,110,91,56,93,46,115,108,105,99,101,40,49,41,44,116,114,105,109,58,110,91,57,93,44,116,121,112,101,58,110,91,49,48,93,125,41,125,102,117,110,99,116,105,111,110,32,66,97,40,116,41,123,116,104,105,115,46,102,105,108,108,61,118,111,105,100,32,48,61,61,61,116,46,102,105,108,108,63,34,32,34,58,116,46,102,105,108,108,43,34,34,44,116,104,105,115,46,97,108,105,103,110,61,118,111,105,100,32,48,61,61,61,116,46,97,108,105,103,110,63,34,62,34,58,116,46,97,108,105,103,110,43,34,34,44,116,104,105,115,46,115,105,103,110,61,118,111,105,100,32,48,61,61,61,116,46,115,105,103,110,63,34,45,34,58,116,46,115,105,103,110,43,34,34,44,116,104,105,115,46,115,121,109,98,111,108,61,118,111,105,100,32,48,61,61,61,116,46,115,121,109,98,111,108,63,34,34,58,116,46,115,121,109,98,111,108,43,34,34,44,116,104,105,115,46,122,101,114,111,61,33,33,116,46,122,101,114,111,44,116,104,105,115,46,119,105,100,116,104,61,118,111,105,100,32,48,61,61,61,116,46,119,105,100,116,104,63,118,111,105,100,32,48,58,43,116,46,119,105,100,116,104,44,116,104,105,115,46,99,111,109,109,97,61,33,33,116,46,99,111,109,109,97,44,116,104,105,115,46,112,114,101,99,105,115,105,111,110,61,118,111,105,100,32,48,61,61,61,116,46,112,114,101,99,105,115,105,111,110,63,118,111,105,100,32,48,58,43,116,46,112,114,101,99,105,115,105,111,110,44,116,104,105,115,46,116,114,105,109,61,33,33,116,46,116,114,105,109,44,116,104,105,115,46,116,121,112,101,61,118,111,105,100,32,48,61,61,61,116,46,116,121,112,101,63,34,34,58,116,46,116,121,112,101,43,34,34,125,102,117,110,99,116,105,111,110,32,70,97,40,116,44,110,41,123,118,97,114,32,101,61,68,97,40,116,44,110,41,59,105,102,40,33,101,41,114,101,116,117,114,110,32,116,43,34,34,59,118,97,114,32,114,61,101,91,48,93,44,105,61,101,91,49,93,59,114,101,116,117,114,110,32,105,60,48,63,34,48,46,34,43,110,101,119,32,65,114,114,97,121,40,45,105,41,46,106,111,105,110,40,34,48,34,41,43,114,58,114,46,108,101,110,103,116,104,62,105,43,49,63,114,46,115,108,105,99,101,40,48,44,105,43,49,41,43,34,46,34,43,114,46,115,108,105,99,101,40,105,43,49,41,58,114,43,110,101,119,32,65,114,114,97,121,40,105,45,114,46,108,101,110,103,116,104,43,50,41,46,106,111,105,110,40,34,48,34,41,125,79,97,46,112,114,111,116,111,116,121,112,101,61,66,97,46,112,114,111,116,111,116,121,112,101,44,66,97,46,112,114,111,116,111,116,121,112,101,46,116,111,83,116,114,105,110,103,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,102,105,108,108,43,116,104,105,115,46,97,108,105,103,110,43,116,104,105,115,46,115,105,103,110,43,116,104,105,115,46,115,121,109,98,111,108,43,40,116,104,105,115,46,122,101,114,111,63,34,48,34,58,34,34,41,43,40,118,111,105,100,32,48,61,61,61,116,104,105,115,46,119,105,100,116,104,63,34,34,58,77,97,116,104,46,109,97,120,40,49,44,48,124,116,104,105,115,46,119,105,100,116,104,41,41,43,40,116,104,105,115,46,99,111,109,109,97,63,34,44,34,58,34,34,41,43,40,118,111,105,100,32,48,61,61,61,116,104,105,115,46,112,114,101,99,105,115,105,111,110,63,34,34,58,34,46,34,43,77,97,116,104,46,109,97,120,40,48,44,48,124,116,104,105,115,46,112,114,101,99,105,115,105,111,110,41,41,43,40,116,104,105,115,46,116,114,105,109,63,34,126,34,58,34,34,41,43,116,104,105,115,46,116,121,112,101,125,59,118,97,114,32,89,97,61,123,34,37,34,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,40,49,48,48,42,116,41,46,116,111,70,105,120,101,100,40,110,41,125,44,98,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,77,97,116,104,46,114,111,117,110,100,40,116,41,46,116,111,83,116,114,105,110,103,40,50,41,125,44,99,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,43,34,34,125,44,100,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,77,97,116,104,46,114,111,117,110,100,40,116,41,46,116,111,83,116,114,105,110,103,40,49,48,41,125,44,101,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,116,46,116,111,69,120,112,111,110,101,110,116,105,97,108,40,110,41,125,44,102,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,116,46,116,111,70,105,120,101,100,40,110,41,125,44,103,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,116,46,116,111,80,114,101,99,105,115,105,111,110,40,110,41,125,44,111,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,77,97,116,104,46,114,111,117,110,100,40,116,41,46,116,111,83,116,114,105,110,103,40,56,41,125,44,112,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,70,97,40,49,48,48,42,116,44,110,41,125,44,114,58,70,97,44,115,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,61,68,97,40,116,44,110,41,59,105,102,40,33,101,41,114,101,116,117,114,110,32,116,43,34,34,59,118,97,114,32,114,61,101,91,48,93,44,105,61,101,91,49,93,44,111,61,105,45,40,76,97,61,51,42,77,97,116,104,46,109,97,120,40,45,56,44,77,97,116,104,46,109,105,110,40,56,44,77,97,116,104,46,102,108,111,111,114,40,105,47,51,41,41,41,41,43,49,44,97,61,114,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,111,61,61,61,97,63,114,58,111,62,97,63,114,43,110,101,119,32,65,114,114,97,121,40,111,45,97,43,49,41,46,106,111,105,110,40,34,48,34,41,58,111,62,48,63,114,46,115,108,105,99,101,40,48,44,111,41,43,34,46,34,43,114,46,115,108,105,99,101,40,111,41,58,34,48,46,34,43,110,101,119,32,65,114,114,97,121,40,49,45,111,41,46,106,111,105,110,40,34,48,34,41,43,68,97,40,116,44,77,97,116,104,46,109,97,120,40,48,44,110,43,111,45,49,41,41,91,48,93,125,44,88,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,77,97,116,104,46,114,111,117,110,100,40,116,41,46,116,111,83,116,114,105,110,103,40,49,54,41,46,116,111,85,112,112,101,114,67,97,115,101,40,41,125,44,120,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,77,97,116,104,46,114,111,117,110,100,40,116,41,46,116,111,83,116,114,105,110,103,40,49,54,41,125,125,59,102,117,110,99,116,105,111,110,32,73,97,40,116,41,123,114,101,116,117,114,110,32,116,125,118,97,114,32,72,97,44,106,97,61,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,109,97,112,44,88,97,61,91,34,121,34,44,34,122,34,44,34,97,34,44,34,102,34,44,34,112,34,44,34,110,34,44,34,194,181,34,44,34,109,34,44,34,34,44,34,107,34,44,34,77,34,44,34,71,34,44,34,84,34,44,34,80,34,44,34,69,34,44,34,90,34,44,34,89,34,93,59,102,117,110,99,116,105,111,110,32,86,97,40,116,41,123,118,97,114,32,110,44,101,44,114,61,118,111,105,100,32,48,61,61,61,116,46,103,114,111,117,112,105,110,103,124,124,118,111,105,100,32,48,61,61,61,116,46,116,104,111,117,115,97,110,100,115,63,73,97,58,40,110,61,106,97,46,99,97,108,108,40,116,46,103,114,111,117,112,105,110,103,44,78,117,109,98,101,114,41,44,101,61,116,46,116,104,111,117,115,97,110,100,115,43,34,34,44,102,117,110,99,116,105,111,110,40,116,44,114,41,123,102,111,114,40,118,97,114,32,105,61,116,46,108,101,110,103,116,104,44,111,61,91,93,44,97,61,48,44,117,61,110,91,48,93,44,99,61,48,59,105,62,48,38,38,117,62,48,38,38,40,99,43,117,43,49,62,114,38,38,40,117,61,77,97,116,104,46,109,97,120,40,49,44,114,45,99,41,41,44,111,46,112,117,115,104,40,116,46,115,117,98,115,116,114,105,110,103,40,105,45,61,117,44,105,43,117,41,41,44,33,40,40,99,43,61,117,43,49,41,62,114,41,41,59,41,117,61,110,91,97,61,40,97,43,49,41,37,110,46,108,101,110,103,116,104,93,59,114,101,116,117,114,110,32,111,46,114,101,118,101,114,115,101,40,41,46,106,111,105,110,40,101,41,125,41,44,105,61,118,111,105,100,32,48,61,61,61,116,46,99,117,114,114,101,110,99,121,63,34,34,58,116,46,99,117,114,114,101,110,99,121,91,48,93,43,34,34,44,111,61,118,111,105,100,32,48,61,61,61,116,46,99,117,114,114,101,110,99,121,63,34,34,58,116,46,99,117,114,114,101,110,99,121,91,49,93,43,34,34,44,97,61,118,111,105,100,32,48,61,61,61,116,46,100,101,99,105,109,97,108,63,34,46,34,58,116,46,100,101,99,105,109,97,108,43,34,34,44,117,61,118,111,105,100,32,48,61,61,61,116,46,110,117,109,101,114,97,108,115,63,73,97,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,110,46,114,101,112,108,97,99,101,40,47,91,48,45,57,93,47,103,44,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,91,43,110,93,125,41,125,125,40,106,97,46,99,97,108,108,40,116,46,110,117,109,101,114,97,108,115,44,83,116,114,105,110,103,41,41,44,99,61,118,111,105,100,32,48,61,61,61,116,46,112,101,114,99,101,110,116,63,34,37,34,58,116,46,112,101,114,99,101,110,116,43,34,34,44,102,61,118,111,105,100,32,48,61,61,61,116,46,109,105,110,117,115,63,34,45,34,58,116,46,109,105,110,117,115,43,34,34,44,115,61,118,111,105,100,32,48,61,61,61,116,46,110,97,110,63,34,78,97,78,34,58,116,46,110,97,110,43,34,34,59,102,117,110,99,116,105,111,110,32,108,40,116,41,123,118,97,114,32,110,61,40,116,61,79,97,40,116,41,41,46,102,105,108,108,44,101,61,116,46,97,108,105,103,110,44,108,61,116,46,115,105,103,110,44,104,61,116,46,115,121,109,98,111,108,44,100,61,116,46,122,101,114,111,44,112,61,116,46,119,105,100,116,104,44,118,61,116,46,99,111,109,109,97,44,103,61,116,46,112,114,101,99,105,115,105,111,110,44,121,61,116,46,116,114,105,109,44,95,61,116,46,116,121,112,101,59,34,110,34,61,61,61,95,63,40,118,61,33,48,44,95,61,34,103,34,41,58,89,97,91,95,93,124,124,40,118,111,105,100,32,48,61,61,61,103,38,38,40,103,61,49,50,41,44,121,61,33,48,44,95,61,34,103,34,41,44,40,100,124,124,34,48,34,61,61,61,110,38,38,34,61,34,61,61,61,101,41,38,38,40,100,61,33,48,44,110,61,34,48,34,44,101,61,34,61,34,41,59,118,97,114,32,98,61,34,36,34,61,61,61,104,63,105,58,34,35,34,61,61,61,104,38,38,47,91,98,111,120,88,93,47,46,116,101,115,116,40,95,41,63,34,48,34,43,95,46,116,111,76,111,119,101,114,67,97,115,101,40,41,58,34,34,44,109,61,34,36,34,61,61,61,104,63,111,58,47,91,37,112,93,47,46,116,101,115,116,40,95,41,63,99,58,34,34,44,120,61,89,97,91,95,93,44,119,61,47,91,100,101,102,103,112,114,115,37,93,47,46,116,101,115,116,40,95,41,59,102,117,110,99,116,105,111,110,32,77,40,116,41,123,118,97,114,32,105,44,111,44,99,44,104,61,98,44,77,61,109,59,105,102,40,34,99,34,61,61,61,95,41,77,61,120,40,116,41,43,77,44,116,61,34,34,59,101,108,115,101,123,118,97,114,32,78,61,40,116,61,43,116,41,60,48,124,124,49,47,116,60,48,59,105,102,40,116,61,105,115,78,97,78,40,116,41,63,115,58,120,40,77,97,116,104,46,97,98,115,40,116,41,44,103,41,44,121,38,38,40,116,61,102,117,110,99,116,105,111,110,40,116,41,123,116,58,102,111,114,40,118,97,114,32,110,44,101,61,116,46,108,101,110,103,116,104,44,114,61,49,44,105,61,45,49,59,114,60,101,59,43,43,114,41,115,119,105,116,99,104,40,116,91,114,93,41,123,99,97,115,101,34,46,34,58,105,61,110,61,114,59,98,114,101,97,107,59,99,97,115,101,34,48,34,58,48,61,61,61,105,38,38,40,105,61,114,41,44,110,61,114,59,98,114,101,97,107,59,100,101,102,97,117,108,116,58,105,102,40,33,43,116,91,114,93,41,98,114,101,97,107,32,116,59,105,62,48,38,38,40,105,61,48,41,125,114,101,116,117,114,110,32,105,62,48,63,116,46,115,108,105,99,101,40,48,44,105,41,43,116,46,115,108,105,99,101,40,110,43,49,41,58,116,125,40,116,41,41,44,78,38,38,48,61,61,43,116,38,38,34,43,34,33,61,61,108,38,38,40,78,61,33,49,41,44,104,61,40,78,63,34,40,34,61,61,61,108,63,108,58,102,58,34,45,34,61,61,61,108,124,124,34,40,34,61,61,61,108,63,34,34,58,108,41,43,104,44,77,61,40,34,115,34,61,61,61,95,63,88,97,91,56,43,76,97,47,51,93,58,34,34,41,43,77,43,40,78,38,38,34,40,34,61,61,61,108,63,34,41,34,58,34,34,41,44,119,41,102,111,114,40,105,61,45,49,44,111,61,116,46,108,101,110,103,116,104,59,43,43,105,60,111,59,41,105,102,40,52,56,62,40,99,61,116,46,99,104,97,114,67,111,100,101,65,116,40,105,41,41,124,124,99,62,53,55,41,123,77,61,40,52,54,61,61,61,99,63,97,43,116,46,115,108,105,99,101,40,105,43,49,41,58,116,46,115,108,105,99,101,40,105,41,41,43,77,44,116,61,116,46,115,108,105,99,101,40,48,44,105,41,59,98,114,101,97,107,125,125,118,38,38,33,100,38,38,40,116,61,114,40,116,44,49,47,48,41,41,59,118,97,114,32,84,61,104,46,108,101,110,103,116,104,43,116,46,108,101,110,103,116,104,43,77,46,108,101,110,103,116,104,44,65,61,84,60,112,63,110,101,119,32,65,114,114,97,121,40,112,45,84,43,49,41,46,106,111,105,110,40,110,41,58,34,34,59,115,119,105,116,99,104,40,118,38,38,100,38,38,40,116,61,114,40,65,43,116,44,65,46,108,101,110,103,116,104,63,112,45,77,46,108,101,110,103,116,104,58,49,47,48,41,44,65,61,34,34,41,44,101,41,123,99,97,115,101,34,60,34,58,116,61,104,43,116,43,77,43,65,59,98,114,101,97,107,59,99,97,115,101,34,61,34,58,116,61,104,43,65,43,116,43,77,59,98,114,101,97,107,59,99,97,115,101,34,94,34,58,116,61,65,46,115,108,105,99,101,40,48,44,84,61,65,46,108,101,110,103,116,104,62,62,49,41,43,104,43,116,43,77,43,65,46,115,108,105,99,101,40,84,41,59,98,114,101,97,107,59,100,101,102,97,117,108,116,58,116,61,65,43,104,43,116,43,77,125,114,101,116,117,114,110,32,117,40,116,41,125,114,101,116,117,114,110,32,103,61,118,111,105,100,32,48,61,61,61,103,63,54,58,47,91,103,112,114,115,93,47,46,116,101,115,116,40,95,41,63,77,97,116,104,46,109,97,120,40,49,44,77,97,116,104,46,109,105,110,40,50,49,44,103,41,41,58,77,97,116,104,46,109,97,120,40,48,44,77,97,116,104,46,109,105,110,40,50,48,44,103,41,41,44,77,46,116,111,83,116,114,105,110,103,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,43,34,34,125,44,77,125,114,101,116,117,114,110,123,102,111,114,109,97,116,58,108,44,102,111,114,109,97,116,80,114,101,102,105,120,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,61,108,40,40,40,116,61,79,97,40,116,41,41,46,116,121,112,101,61,34,102,34,44,116,41,41,44,114,61,51,42,77,97,116,104,46,109,97,120,40,45,56,44,77,97,116,104,46,109,105,110,40,56,44,77,97,116,104,46,102,108,111,111,114,40,113,97,40,110,41,47,51,41,41,41,44,105,61,77,97,116,104,46,112,111,119,40,49,48,44,45,114,41,44,111,61,88,97,91,56,43,114,47,51,93,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,40,105,42,116,41,43,111,125,125,125,125,102,117,110,99,116,105,111,110,32,71,97,40,110,41,123,114,101,116,117,114,110,32,72,97,61,86,97,40,110,41,44,116,46,102,111,114,109,97,116,61,72,97,46,102,111,114,109,97,116,44,116,46,102,111,114,109,97,116,80,114,101,102,105,120,61,72,97,46,102,111,114,109,97,116,80,114,101,102,105,120,44,72,97,125,102,117,110,99,116,105,111,110,32,36,97,40,116,41,123,114,101,116,117,114,110,32,77,97,116,104,46,109,97,120,40,48,44,45,113,97,40,77,97,116,104,46,97,98,115,40,116,41,41,41,125,102,117,110,99,116,105,111,110,32,87,97,40,116,44,110,41,123,114,101,116,117,114,110,32,77,97,116,104,46,109,97,120,40,48,44,51,42,77,97,116,104,46,109,97,120,40,45,56,44,77,97,116,104,46,109,105,110,40,56,44,77,97,116,104,46,102,108,111,111,114,40,113,97,40,110,41,47,51,41,41,41,45,113,97,40,77,97,116,104,46,97,98,115,40,116,41,41,41,125,102,117,110,99,116,105,111,110,32,90,97,40,116,44,110,41,123,114,101,116,117,114,110,32,116,61,77,97,116,104,46,97,98,115,40,116,41,44,110,61,77,97,116,104,46,97,98,115,40,110,41,45,116,44,77,97,116,104,46,109,97,120,40,48,44,113,97,40,110,41,45,113,97,40,116,41,41,43,49,125,102,117,110,99,116,105,111,110,32,81,97,40,41,123,114,101,116,117,114,110,32,110,101,119,32,75,97,125,102,117,110,99,116,105,111,110,32,75,97,40,41,123,116,104,105,115,46,114,101,115,101,116,40,41,125,71,97,40,123,100,101,99,105,109,97,108,58,34,46,34,44,116,104,111,117,115,97,110,100,115,58,34,44,34,44,103,114,111,117,112,105,110,103,58,91,51,93,44,99,117,114,114,101,110,99,121,58,91,34,36,34,44,34,34,93,44,109,105,110,117,115,58,34,45,34,125,41,44,75,97,46,112,114,111,116,111,116,121,112,101,61,123,99,111,110,115,116,114,117,99,116,111,114,58,75,97,44,114,101,115,101,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,115,61,116,104,105,115,46,116,61,48,125,44,97,100,100,58,102,117,110,99,116,105,111,110,40,116,41,123,116,117,40,74,97,44,116,44,116,104,105,115,46,116,41,44,116,117,40,116,104,105,115,44,74,97,46,115,44,116,104,105,115,46,115,41,44,116,104,105,115,46,115,63,116,104,105,115,46,116,43,61,74,97,46,116,58,116,104,105,115,46,115,61,74,97,46,116,125,44,118,97,108,117,101,79,102,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,115,125,125,59,118,97,114,32,74,97,61,110,101,119,32,75,97,59,102,117,110,99,116,105,111,110,32,116,117,40,116,44,110,44,101,41,123,118,97,114,32,114,61,116,46,115,61,110,43,101,44,105,61,114,45,110,44,111,61,114,45,105,59,116,46,116,61,110,45,111,43,40,101,45,105,41,125,118,97,114,32,110,117,61,49,101,45,54,44,101,117,61,49,101,45,49,50,44,114,117,61,77,97,116,104,46,80,73,44,105,117,61,114,117,47,50,44,111,117,61,114,117,47,52,44,97,117,61,50,42,114,117,44,117,117,61,49,56,48,47,114,117,44,99,117,61,114,117,47,49,56,48,44,102,117,61,77,97,116,104,46,97,98,115,44,115,117,61,77,97,116,104,46,97,116,97,110,44,108,117,61,77,97,116,104,46,97,116,97,110,50,44,104,117,61,77,97,116,104,46,99,111,115,44,100,117,61,77,97,116,104,46,99,101,105,108,44,112,117,61,77,97,116,104,46,101,120,112,44,118,117,61,77,97,116,104,46,108,111,103,44,103,117,61,77,97,116,104,46,112,111,119,44,121,117,61,77,97,116,104,46,115,105,110,44,95,117,61,77,97,116,104,46,115,105,103,110,124,124,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,62,48,63,49,58,116,60,48,63,45,49,58,48,125,44,98,117,61,77,97,116,104,46,115,113,114,116,44,109,117,61,77,97,116,104,46,116,97,110,59,102,117,110,99,116,105,111,110,32,120,117,40,116,41,123,114,101,116,117,114,110,32,116,62,49,63,48,58,116,60,45,49,63,114,117,58,77,97,116,104,46,97,99,111,115,40,116,41,125,102,117,110,99,116,105,111,110,32,119,117,40,116,41,123,114,101,116,117,114,110,32,116,62,49,63,105,117,58,116,60,45,49,63,45,105,117,58,77,97,116,104,46,97,115,105,110,40,116,41,125,102,117,110,99,116,105,111,110,32,77,117,40,116,41,123,114,101,116,117,114,110,40,116,61,121,117,40,116,47,50,41,41,42,116,125,102,117,110,99,116,105,111,110,32,78,117,40,41,123,125,102,117,110,99,116,105,111,110,32,84,117,40,116,44,110,41,123,116,38,38,83,117,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,116,46,116,121,112,101,41,38,38,83,117,91,116,46,116,121,112,101,93,40,116,44,110,41,125,118,97,114,32,65,117,61,123,70,101,97,116,117,114,101,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,84,117,40,116,46,103,101,111,109,101,116,114,121,44,110,41,125,44,70,101,97,116,117,114,101,67,111,108,108,101,99,116,105,111,110,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,102,111,114,40,118,97,114,32,101,61,116,46,102,101,97,116,117,114,101,115,44,114,61,45,49,44,105,61,101,46,108,101,110,103,116,104,59,43,43,114,60,105,59,41,84,117,40,101,91,114,93,46,103,101,111,109,101,116,114,121,44,110,41,125,125,44,83,117,61,123,83,112,104,101,114,101,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,110,46,115,112,104,101,114,101,40,41,125,44,80,111,105,110,116,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,116,61,116,46,99,111,111,114,100,105,110,97,116,101,115,44,110,46,112,111,105,110,116,40,116,91,48,93,44,116,91,49,93,44,116,91,50,93,41,125,44,77,117,108,116,105,80,111,105,110,116,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,102,111,114,40,118,97,114,32,101,61,116,46,99,111,111,114,100,105,110,97,116,101,115,44,114,61,45,49,44,105,61,101,46,108,101,110,103,116,104,59,43,43,114,60,105,59,41,116,61,101,91,114,93,44,110,46,112,111,105,110,116,40,116,91,48,93,44,116,91,49,93,44,116,91,50,93,41,125,44,76,105,110,101,83,116,114,105,110,103,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,107,117,40,116,46,99,111,111,114,100,105,110,97,116,101,115,44,110,44,48,41,125,44,77,117,108,116,105,76,105,110,101,83,116,114,105,110,103,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,102,111,114,40,118,97,114,32,101,61,116,46,99,111,111,114,100,105,110,97,116,101,115,44,114,61,45,49,44,105,61,101,46,108,101,110,103,116,104,59,43,43,114,60,105,59,41,107,117,40,101,91,114,93,44,110,44,48,41,125,44,80,111,108,121,103,111,110,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,69,117,40,116,46,99,111,111,114,100,105,110,97,116,101,115,44,110,41,125,44,77,117,108,116,105,80,111,108,121,103,111,110,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,102,111,114,40,118,97,114,32,101,61,116,46,99,111,111,114,100,105,110,97,116,101,115,44,114,61,45,49,44,105,61,101,46,108,101,110,103,116,104,59,43,43,114,60,105,59,41,69,117,40,101,91,114,93,44,110,41,125,44,71,101,111,109,101,116,114,121,67,111,108,108,101,99,116,105,111,110,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,102,111,114,40,118,97,114,32,101,61,116,46,103,101,111,109,101,116,114,105,101,115,44,114,61,45,49,44,105,61,101,46,108,101,110,103,116,104,59,43,43,114,60,105,59,41,84,117,40,101,91,114,93,44,110,41,125,125,59,102,117,110,99,116,105,111,110,32,107,117,40,116,44,110,44,101,41,123,118,97,114,32,114,44,105,61,45,49,44,111,61,116,46,108,101,110,103,116,104,45,101,59,102,111,114,40,110,46,108,105,110,101,83,116,97,114,116,40,41,59,43,43,105,60,111,59,41,114,61,116,91,105,93,44,110,46,112,111,105,110,116,40,114,91,48,93,44,114,91,49,93,44,114,91,50,93,41,59,110,46,108,105,110,101,69,110,100,40,41,125,102,117,110,99,116,105,111,110,32,69,117,40,116,44,110,41,123,118,97,114,32,101,61,45,49,44,114,61,116,46,108,101,110,103,116,104,59,102,111,114,40,110,46,112,111,108,121,103,111,110,83,116,97,114,116,40,41,59,43,43,101,60,114,59,41,107,117,40,116,91,101,93,44,110,44,49,41,59,110,46,112,111,108,121,103,111,110,69,110,100,40,41,125,102,117,110,99,116,105,111,110,32,67,117,40,116,44,110,41,123,116,38,38,65,117,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,116,46,116,121,112,101,41,63,65,117,91,116,46,116,121,112,101,93,40,116,44,110,41,58,84,117,40,116,44,110,41,125,118,97,114,32,80,117,44,122,117,44,82,117,44,68,117,44,113,117,44,76,117,61,81,97,40,41,44,85,117,61,81,97,40,41,44,79,117,61,123,112,111,105,110,116,58,78,117,44,108,105,110,101,83,116,97,114,116,58,78,117,44,108,105,110,101,69,110,100,58,78,117,44,112,111,108,121,103,111,110,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,76,117,46,114,101,115,101,116,40,41,44,79,117,46,108,105,110,101,83,116,97,114,116,61,66,117,44,79,117,46,108,105,110,101,69,110,100,61,70,117,125,44,112,111,108,121,103,111,110,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,43,76,117,59,85,117,46,97,100,100,40,116,60,48,63,97,117,43,116,58,116,41,44,116,104,105,115,46,108,105,110,101,83,116,97,114,116,61,116,104,105,115,46,108,105,110,101,69,110,100,61,116,104,105,115,46,112,111,105,110,116,61,78,117,125,44,115,112,104,101,114,101,58,102,117,110,99,116,105,111,110,40,41,123,85,117,46,97,100,100,40,97,117,41,125,125,59,102,117,110,99,116,105,111,110,32,66,117,40,41,123,79,117,46,112,111,105,110,116,61,89,117,125,102,117,110,99,116,105,111,110,32,70,117,40,41,123,73,117,40,80,117,44,122,117,41,125,102,117,110,99,116,105,111,110,32,89,117,40,116,44,110,41,123,79,117,46,112,111,105,110,116,61,73,117,44,80,117,61,116,44,122,117,61,110,44,82,117,61,116,42,61,99,117,44,68,117,61,104,117,40,110,61,40,110,42,61,99,117,41,47,50,43,111,117,41,44,113,117,61,121,117,40,110,41,125,102,117,110,99,116,105,111,110,32,73,117,40,116,44,110,41,123,118,97,114,32,101,61,40,116,42,61,99,117,41,45,82,117,44,114,61,101,62,61,48,63,49,58,45,49,44,105,61,114,42,101,44,111,61,104,117,40,110,61,40,110,42,61,99,117,41,47,50,43,111,117,41,44,97,61,121,117,40,110,41,44,117,61,113,117,42,97,44,99,61,68,117,42,111,43,117,42,104,117,40,105,41,44,102,61,117,42,114,42,121,117,40,105,41,59,76,117,46,97,100,100,40,108,117,40,102,44,99,41,41,44,82,117,61,116,44,68,117,61,111,44,113,117,61,97,125,102,117,110,99,116,105,111,110,32,72,117,40,116,41,123,114,101,116,117,114,110,91,108,117,40,116,91,49,93,44,116,91,48,93,41,44,119,117,40,116,91,50,93,41,93,125,102,117,110,99,116,105,111,110,32,106,117,40,116,41,123,118,97,114,32,110,61,116,91,48,93,44,101,61,116,91,49,93,44,114,61,104,117,40,101,41,59,114,101,116,117,114,110,91,114,42,104,117,40,110,41,44,114,42,121,117,40,110,41,44,121,117,40,101,41,93,125,102,117,110,99,116,105,111,110,32,88,117,40,116,44,110,41,123,114,101,116,117,114,110,32,116,91,48,93,42,110,91,48,93,43,116,91,49,93,42,110,91,49,93,43,116,91,50,93,42,110,91,50,93,125,102,117,110,99,116,105,111,110,32,86,117,40,116,44,110,41,123,114,101,116,117,114,110,91,116,91,49,93,42,110,91,50,93,45,116,91,50,93,42,110,91,49,93,44,116,91,50,93,42,110,91,48,93,45,116,91,48,93,42,110,91,50,93,44,116,91,48,93,42,110,91,49,93,45,116,91,49,93,42,110,91,48,93,93,125,102,117,110,99,116,105,111,110,32,71,117,40,116,44,110,41,123,116,91,48,93,43,61,110,91,48,93,44,116,91,49,93,43,61,110,91,49,93,44,116,91,50,93,43,61,110,91,50,93,125,102,117,110,99,116,105,111,110,32,36,117,40,116,44,110,41,123,114,101,116,117,114,110,91,116,91,48,93,42,110,44,116,91,49,93,42,110,44,116,91,50,93,42,110,93,125,102,117,110,99,116,105,111,110,32,87,117,40,116,41,123,118,97,114,32,110,61,98,117,40,116,91,48,93,42,116,91,48,93,43,116,91,49,93,42,116,91,49,93,43,116,91,50,93,42,116,91,50,93,41,59,116,91,48,93,47,61,110,44,116,91,49,93,47,61,110,44,116,91,50,93,47,61,110,125,118,97,114,32,90,117,44,81,117,44,75,117,44,74,117,44,116,99,44,110,99,44,101,99,44,114,99,44,105,99,44,111,99,44,97,99,44,117,99,44,99,99,44,102,99,44,115,99,44,108,99,44,104,99,44,100,99,44,112,99,44,118,99,44,103,99,44,121,99,44,95,99,44,98,99,44,109,99,44,120,99,44,119,99,61,81,97,40,41,44,77,99,61,123,112,111,105,110,116,58,78,99,44,108,105,110,101,83,116,97,114,116,58,65,99,44,108,105,110,101,69,110,100,58,83,99,44,112,111,108,121,103,111,110,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,77,99,46,112,111,105,110,116,61,107,99,44,77,99,46,108,105,110,101,83,116,97,114,116,61,69,99,44,77,99,46,108,105,110,101,69,110,100,61,67,99,44,119,99,46,114,101,115,101,116,40,41,44,79,117,46,112,111,108,121,103,111,110,83,116,97,114,116,40,41,125,44,112,111,108,121,103,111,110,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,79,117,46,112,111,108,121,103,111,110,69,110,100,40,41,44,77,99,46,112,111,105,110,116,61,78,99,44,77,99,46,108,105,110,101,83,116,97,114,116,61,65,99,44,77,99,46,108,105,110,101,69,110,100,61,83,99,44,76,117,60,48,63,40,90,117,61,45,40,75,117,61,49,56,48,41,44,81,117,61,45,40,74,117,61,57,48,41,41,58,119,99,62,110,117,63,74,117,61,57,48,58,119,99,60,45,110,117,38,38,40,81,117,61,45,57,48,41,44,111,99,91,48,93,61,90,117,44,111,99,91,49,93,61,75,117,125,44,115,112,104,101,114,101,58,102,117,110,99,116,105,111,110,40,41,123,90,117,61,45,40,75,117,61,49,56,48,41,44,81,117,61,45,40,74,117,61,57,48,41,125,125,59,102,117,110,99,116,105,111,110,32,78,99,40,116,44,110,41,123,105,99,46,112,117,115,104,40,111,99,61,91,90,117,61,116,44,75,117,61,116,93,41,44,110,60,81,117,38,38,40,81,117,61,110,41,44,110,62,74,117,38,38,40,74,117,61,110,41,125,102,117,110,99,116,105,111,110,32,84,99,40,116,44,110,41,123,118,97,114,32,101,61,106,117,40,91,116,42,99,117,44,110,42,99,117,93,41,59,105,102,40,114,99,41,123,118,97,114,32,114,61,86,117,40,114,99,44,101,41,44,105,61,86,117,40,91,114,91,49,93,44,45,114,91,48,93,44,48,93,44,114,41,59,87,117,40,105,41,44,105,61,72,117,40,105,41,59,118,97,114,32,111,44,97,61,116,45,116,99,44,117,61,97,62,48,63,49,58,45,49,44,99,61,105,91,48,93,42,117,117,42,117,44,102,61,102,117,40,97,41,62,49,56,48,59,102,94,40,117,42,116,99,60,99,38,38,99,60,117,42,116,41,63,40,111,61,105,91,49,93,42,117,117,41,62,74,117,38,38,40,74,117,61,111,41,58,102,94,40,117,42,116,99,60,40,99,61,40,99,43,51,54,48,41,37,51,54,48,45,49,56,48,41,38,38,99,60,117,42,116,41,63,40,111,61,45,105,91,49,93,42,117,117,41,60,81,117,38,38,40,81,117,61,111,41,58,40,110,60,81,117,38,38,40,81,117,61,110,41,44,110,62,74,117,38,38,40,74,117,61,110,41,41,44,102,63,116,60,116,99,63,80,99,40,90,117,44,116,41,62,80,99,40,90,117,44,75,117,41,38,38,40,75,117,61,116,41,58,80,99,40,116,44,75,117,41,62,80,99,40,90,117,44,75,117,41,38,38,40,90,117,61,116,41,58,75,117,62,61,90,117,63,40,116,60,90,117,38,38,40,90,117,61,116,41,44,116,62,75,117,38,38,40,75,117,61,116,41,41,58,116,62,116,99,63,80,99,40,90,117,44,116,41,62,80,99,40,90,117,44,75,117,41,38,38,40,75,117,61,116,41,58,80,99,40,116,44,75,117,41,62,80,99,40,90,117,44,75,117,41,38,38,40,90,117,61,116,41,125,101,108,115,101,32,105,99,46,112,117,115,104,40,111,99,61,91,90,117,61,116,44,75,117,61,116,93,41,59,110,60,81,117,38,38,40,81,117,61,110,41,44,110,62,74,117,38,38,40,74,117,61,110,41,44,114,99,61,101,44,116,99,61,116,125,102,117,110,99,116,105,111,110,32,65,99,40,41,123,77,99,46,112,111,105,110,116,61,84,99,125,102,117,110,99,116,105,111,110,32,83,99,40,41,123,111,99,91,48,93,61,90,117,44,111,99,91,49,93,61,75,117,44,77,99,46,112,111,105,110,116,61,78,99,44,114,99,61,110,117,108,108,125,102,117,110,99,116,105,111,110,32,107,99,40,116,44,110,41,123,105,102,40,114,99,41,123,118,97,114,32,101,61,116,45,116,99,59,119,99,46,97,100,100,40,102,117,40,101,41,62,49,56,48,63,101,43,40,101,62,48,63,51,54,48,58,45,51,54,48,41,58,101,41,125,101,108,115,101,32,110,99,61,116,44,101,99,61,110,59,79,117,46,112,111,105,110,116,40,116,44,110,41,44,84,99,40,116,44,110,41,125,102,117,110,99,116,105,111,110,32,69,99,40,41,123,79,117,46,108,105,110,101,83,116,97,114,116,40,41,125,102,117,110,99,116,105,111,110,32,67,99,40,41,123,107,99,40,110,99,44,101,99,41,44,79,117,46,108,105,110,101,69,110,100,40,41,44,102,117,40,119,99,41,62,110,117,38,38,40,90,117,61,45,40,75,117,61,49,56,48,41,41,44,111,99,91,48,93,61,90,117,44,111,99,91,49,93,61,75,117,44,114,99,61,110,117,108,108,125,102,117,110,99,116,105,111,110,32,80,99,40,116,44,110,41,123,114,101,116,117,114,110,40,110,45,61,116,41,60,48,63,110,43,51,54,48,58,110,125,102,117,110,99,116,105,111,110,32,122,99,40,116,44,110,41,123,114,101,116,117,114,110,32,116,91,48,93,45,110,91,48,93,125,102,117,110,99,116,105,111,110,32,82,99,40,116,44,110,41,123,114,101,116,117,114,110,32,116,91,48,93,60,61,116,91,49,93,63,116,91,48,93,60,61,110,38,38,110,60,61,116,91,49,93,58,110,60,116,91,48,93,124,124,116,91,49,93,60,110,125,118,97,114,32,68,99,61,123,115,112,104,101,114,101,58,78,117,44,112,111,105,110,116,58,113,99,44,108,105,110,101,83,116,97,114,116,58,85,99,44,108,105,110,101,69,110,100,58,70,99,44,112,111,108,121,103,111,110,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,68,99,46,108,105,110,101,83,116,97,114,116,61,89,99,44,68,99,46,108,105,110,101,69,110,100,61,73,99,125,44,112,111,108,121,103,111,110,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,68,99,46,108,105,110,101,83,116,97,114,116,61,85,99,44,68,99,46,108,105,110,101,69,110,100,61,70,99,125,125,59,102,117,110,99,116,105,111,110,32,113,99,40,116,44,110,41,123,116,42,61,99,117,59,118,97,114,32,101,61,104,117,40,110,42,61,99,117,41,59,76,99,40,101,42,104,117,40,116,41,44,101,42,121,117,40,116,41,44,121,117,40,110,41,41,125,102,117,110,99,116,105,111,110,32,76,99,40,116,44,110,44,101,41,123,99,99,43,61,40,116,45,99,99,41,47,43,43,97,99,44,102,99,43,61,40,110,45,102,99,41,47,97,99,44,115,99,43,61,40,101,45,115,99,41,47,97,99,125,102,117,110,99,116,105,111,110,32,85,99,40,41,123,68,99,46,112,111,105,110,116,61,79,99,125,102,117,110,99,116,105,111,110,32,79,99,40,116,44,110,41,123,116,42,61,99,117,59,118,97,114,32,101,61,104,117,40,110,42,61,99,117,41,59,98,99,61,101,42,104,117,40,116,41,44,109,99,61,101,42,121,117,40,116,41,44,120,99,61,121,117,40,110,41,44,68,99,46,112,111,105,110,116,61,66,99,44,76,99,40,98,99,44,109,99,44,120,99,41,125,102,117,110,99,116,105,111,110,32,66,99,40,116,44,110,41,123,116,42,61,99,117,59,118,97,114,32,101,61,104,117,40,110,42,61,99,117,41,44,114,61,101,42,104,117,40,116,41,44,105,61,101,42,121,117,40,116,41,44,111,61,121,117,40,110,41,44,97,61,108,117,40,98,117,40,40,97,61,109,99,42,111,45,120,99,42,105,41,42,97,43,40,97,61,120,99,42,114,45,98,99,42,111,41,42,97,43,40,97,61,98,99,42,105,45,109,99,42,114,41,42,97,41,44,98,99,42,114,43,109,99,42,105,43,120,99,42,111,41,59,117,99,43,61,97,44,108,99,43,61,97,42,40,98,99,43,40,98,99,61,114,41,41,44,104,99,43,61,97,42,40,109,99,43,40,109,99,61,105,41,41,44,100,99,43,61,97,42,40,120,99,43,40,120,99,61,111,41,41,44,76,99,40,98,99,44,109,99,44,120,99,41,125,102,117,110,99,116,105,111,110,32,70,99,40,41,123,68,99,46,112,111,105,110,116,61,113,99,125,102,117,110,99,116,105,111,110,32,89,99,40,41,123,68,99,46,112,111,105,110,116,61,72,99,125,102,117,110,99,116,105,111,110,32,73,99,40,41,123,106,99,40,121,99,44,95,99,41,44,68,99,46,112,111,105,110,116,61,113,99,125,102,117,110,99,116,105,111,110,32,72,99,40,116,44,110,41,123,121,99,61,116,44,95,99,61,110,44,116,42,61,99,117,44,110,42,61,99,117,44,68,99,46,112,111,105,110,116,61,106,99,59,118,97,114,32,101,61,104,117,40,110,41,59,98,99,61,101,42,104,117,40,116,41,44,109,99,61,101,42,121,117,40,116,41,44,120,99,61,121,117,40,110,41,44,76,99,40,98,99,44,109,99,44,120,99,41,125,102,117,110,99,116,105,111,110,32,106,99,40,116,44,110,41,123,116,42,61,99,117,59,118,97,114,32,101,61,104,117,40,110,42,61,99,117,41,44,114,61,101,42,104,117,40,116,41,44,105,61,101,42,121,117,40,116,41,44,111,61,121,117,40,110,41,44,97,61,109,99,42,111,45,120,99,42,105,44,117,61,120,99,42,114,45,98,99,42,111,44,99,61,98,99,42,105,45,109,99,42,114,44,102,61,98,117,40,97,42,97,43,117,42,117,43,99,42,99,41,44,115,61,119,117,40,102,41,44,108,61,102,38,38,45,115,47,102,59,112,99,43,61,108,42,97,44,118,99,43,61,108,42,117,44,103,99,43,61,108,42,99,44,117,99,43,61,115,44,108,99,43,61,115,42,40,98,99,43,40,98,99,61,114,41,41,44,104,99,43,61,115,42,40,109,99,43,40,109,99,61,105,41,41,44,100,99,43,61,115,42,40,120,99,43,40,120,99,61,111,41,41,44,76,99,40,98,99,44,109,99,44,120,99,41,125,102,117,110,99,116,105,111,110,32,88,99,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,125,125,102,117,110,99,116,105,111,110,32,86,99,40,116,44,110,41,123,102,117,110,99,116,105,111,110,32,101,40,101,44,114,41,123,114,101,116,117,114,110,32,101,61,116,40,101,44,114,41,44,110,40,101,91,48,93,44,101,91,49,93,41,125,114,101,116,117,114,110,32,116,46,105,110,118,101,114,116,38,38,110,46,105,110,118,101,114,116,38,38,40,101,46,105,110,118,101,114,116,61,102,117,110,99,116,105,111,110,40,101,44,114,41,123,114,101,116,117,114,110,40,101,61,110,46,105,110,118,101,114,116,40,101,44,114,41,41,38,38,116,46,105,110,118,101,114,116,40,101,91,48,93,44,101,91,49,93,41,125,41,44,101,125,102,117,110,99,116,105,111,110,32,71,99,40,116,44,110,41,123,114,101,116,117,114,110,91,102,117,40,116,41,62,114,117,63,116,43,77,97,116,104,46,114,111,117,110,100,40,45,116,47,97,117,41,42,97,117,58,116,44,110,93,125,102,117,110,99,116,105,111,110,32,36,99,40,116,44,110,44,101,41,123,114,101,116,117,114,110,40,116,37,61,97,117,41,63,110,124,124,101,63,86,99,40,90,99,40,116,41,44,81,99,40,110,44,101,41,41,58,90,99,40,116,41,58,110,124,124,101,63,81,99,40,110,44,101,41,58,71,99,125,102,117,110,99,116,105,111,110,32,87,99,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,110,44,101,41,123,114,101,116,117,114,110,91,40,110,43,61,116,41,62,114,117,63,110,45,97,117,58,110,60,45,114,117,63,110,43,97,117,58,110,44,101,93,125,125,102,117,110,99,116,105,111,110,32,90,99,40,116,41,123,118,97,114,32,110,61,87,99,40,116,41,59,114,101,116,117,114,110,32,110,46,105,110,118,101,114,116,61,87,99,40,45,116,41,44,110,125,102,117,110,99,116,105,111,110,32,81,99,40,116,44,110,41,123,118,97,114,32,101,61,104,117,40,116,41,44,114,61,121,117,40,116,41,44,105,61,104,117,40,110,41,44,111,61,121,117,40,110,41,59,102,117,110,99,116,105,111,110,32,97,40,116,44,110,41,123,118,97,114,32,97,61,104,117,40,110,41,44,117,61,104,117,40,116,41,42,97,44,99,61,121,117,40,116,41,42,97,44,102,61,121,117,40,110,41,44,115,61,102,42,101,43,117,42,114,59,114,101,116,117,114,110,91,108,117,40,99,42,105,45,115,42,111,44,117,42,101,45,102,42,114,41,44,119,117,40,115,42,105,43,99,42,111,41,93,125,114,101,116,117,114,110,32,97,46,105,110,118,101,114,116,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,97,61,104,117,40,110,41,44,117,61,104,117,40,116,41,42,97,44,99,61,121,117,40,116,41,42,97,44,102,61,121,117,40,110,41,44,115,61,102,42,105,45,99,42,111,59,114,101,116,117,114,110,91,108,117,40,99,42,105,43,102,42,111,44,117,42,101,43,115,42,114,41,44,119,117,40,115,42,101,45,117,42,114,41,93,125,44,97,125,102,117,110,99,116,105,111,110,32,75,99,40,116,41,123,102,117,110,99,116,105,111,110,32,110,40,110,41,123,114,101,116,117,114,110,40,110,61,116,40,110,91,48,93,42,99,117,44,110,91,49,93,42,99,117,41,41,91,48,93,42,61,117,117,44,110,91,49,93,42,61,117,117,44,110,125,114,101,116,117,114,110,32,116,61,36,99,40,116,91,48,93,42,99,117,44,116,91,49,93,42,99,117,44,116,46,108,101,110,103,116,104,62,50,63,116,91,50,93,42,99,117,58,48,41,44,110,46,105,110,118,101,114,116,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,40,110,61,116,46,105,110,118,101,114,116,40,110,91,48,93,42,99,117,44,110,91,49,93,42,99,117,41,41,91,48,93,42,61,117,117,44,110,91,49,93,42,61,117,117,44,110,125,44,110,125,102,117,110,99,116,105,111,110,32,74,99,40,116,44,110,44,101,44,114,44,105,44,111,41,123,105,102,40,101,41,123,118,97,114,32,97,61,104,117,40,110,41,44,117,61,121,117,40,110,41,44,99,61,114,42,101,59,110,117,108,108,61,61,105,63,40,105,61,110,43,114,42,97,117,44,111,61,110,45,99,47,50,41,58,40,105,61,116,102,40,97,44,105,41,44,111,61,116,102,40,97,44,111,41,44,40,114,62,48,63,105,60,111,58,105,62,111,41,38,38,40,105,43,61,114,42,97,117,41,41,59,102,111,114,40,118,97,114,32,102,44,115,61,105,59,114,62,48,63,115,62,111,58,115,60,111,59,115,45,61,99,41,102,61,72,117,40,91,97,44,45,117,42,104,117,40,115,41,44,45,117,42,121,117,40,115,41,93,41,44,116,46,112,111,105,110,116,40,102,91,48,93,44,102,91,49,93,41,125,125,102,117,110,99,116,105,111,110,32,116,102,40,116,44,110,41,123,40,110,61,106,117,40,110,41,41,91,48,93,45,61,116,44,87,117,40,110,41,59,118,97,114,32,101,61,120,117,40,45,110,91,49,93,41,59,114,101,116,117,114,110,40,40,45,110,91,50,93,60,48,63,45,101,58,101,41,43,97,117,45,110,117,41,37,97,117,125,102,117,110,99,116,105,111,110,32,110,102,40,41,123,118,97,114,32,116,44,110,61,91,93,59,114,101,116,117,114,110,123,112,111,105,110,116,58,102,117,110,99,116,105,111,110,40,110,44,101,41,123,116,46,112,117,115,104,40,91,110,44,101,93,41,125,44,108,105,110,101,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,110,46,112,117,115,104,40,116,61,91,93,41,125,44,108,105,110,101,69,110,100,58,78,117,44,114,101,106,111,105,110,58,102,117,110,99,116,105,111,110,40,41,123,110,46,108,101,110,103,116,104,62,49,38,38,110,46,112,117,115,104,40,110,46,112,111,112,40,41,46,99,111,110,99,97,116,40,110,46,115,104,105,102,116,40,41,41,41,125,44,114,101,115,117,108,116,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,110,59,114,101,116,117,114,110,32,110,61,91,93,44,116,61,110,117,108,108,44,101,125,125,125,102,117,110,99,116,105,111,110,32,101,102,40,116,44,110,41,123,114,101,116,117,114,110,32,102,117,40,116,91,48,93,45,110,91,48,93,41,60,110,117,38,38,102,117,40,116,91,49,93,45,110,91,49,93,41,60,110,117,125,102,117,110,99,116,105,111,110,32,114,102,40,116,44,110,44,101,44,114,41,123,116,104,105,115,46,120,61,116,44,116,104,105,115,46,122,61,110,44,116,104,105,115,46,111,61,101,44,116,104,105,115,46,101,61,114,44,116,104,105,115,46,118,61,33,49,44,116,104,105,115,46,110,61,116,104,105,115,46,112,61,110,117,108,108,125,102,117,110,99,116,105,111,110,32,111,102,40,116,44,110,44,101,44,114,44,105,41,123,118,97,114,32,111,44,97,44,117,61,91,93,44,99,61,91,93,59,105,102,40,116,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,33,40,40,110,61,116,46,108,101,110,103,116,104,45,49,41,60,61,48,41,41,123,118,97,114,32,110,44,101,44,114,61,116,91,48,93,44,97,61,116,91,110,93,59,105,102,40,101,102,40,114,44,97,41,41,123,102,111,114,40,105,46,108,105,110,101,83,116,97,114,116,40,41,44,111,61,48,59,111,60,110,59,43,43,111,41,105,46,112,111,105,110,116,40,40,114,61,116,91,111,93,41,91,48,93,44,114,91,49,93,41,59,105,46,108,105,110,101,69,110,100,40,41,125,101,108,115,101,32,117,46,112,117,115,104,40,101,61,110,101,119,32,114,102,40,114,44,116,44,110,117,108,108,44,33,48,41,41,44,99,46,112,117,115,104,40,101,46,111,61,110,101,119,32,114,102,40,114,44,110,117,108,108,44,101,44,33,49,41,41,44,117,46,112,117,115,104,40,101,61,110,101,119,32,114,102,40,97,44,116,44,110,117,108,108,44,33,49,41,41,44,99,46,112,117,115,104,40,101,46,111,61,110,101,119,32,114,102,40,97,44,110,117,108,108,44,101,44,33,48,41,41,125,125,41,44,117,46,108,101,110,103,116,104,41,123,102,111,114,40,99,46,115,111,114,116,40,110,41,44,97,102,40,117,41,44,97,102,40,99,41,44,111,61,48,44,97,61,99,46,108,101,110,103,116,104,59,111,60,97,59,43,43,111,41,99,91,111,93,46,101,61,101,61,33,101,59,102,111,114,40,118,97,114,32,102,44,115,44,108,61,117,91,48,93,59,59,41,123,102,111,114,40,118,97,114,32,104,61,108,44,100,61,33,48,59,104,46,118,59,41,105,102,40,40,104,61,104,46,110,41,61,61,61,108,41,114,101,116,117,114,110,59,102,61,104,46,122,44,105,46,108,105,110,101,83,116,97,114,116,40,41,59,100,111,123,105,102,40,104,46,118,61,104,46,111,46,118,61,33,48,44,104,46,101,41,123,105,102,40,100,41,102,111,114,40,111,61,48,44,97,61,102,46,108,101,110,103,116,104,59,111,60,97,59,43,43,111,41,105,46,112,111,105,110,116,40,40,115,61,102,91,111,93,41,91,48,93,44,115,91,49,93,41,59,101,108,115,101,32,114,40,104,46,120,44,104,46,110,46,120,44,49,44,105,41,59,104,61,104,46,110,125,101,108,115,101,123,105,102,40,100,41,102,111,114,40,102,61,104,46,112,46,122,44,111,61,102,46,108,101,110,103,116,104,45,49,59,111,62,61,48,59,45,45,111,41,105,46,112,111,105,110,116,40,40,115,61,102,91,111,93,41,91,48,93,44,115,91,49,93,41,59,101,108,115,101,32,114,40,104,46,120,44,104,46,112,46,120,44,45,49,44,105,41,59,104,61,104,46,112,125,102,61,40,104,61,104,46,111,41,46,122,44,100,61,33,100,125,119,104,105,108,101,40,33,104,46,118,41,59,105,46,108,105,110,101,69,110,100,40,41,125,125,125,102,117,110,99,116,105,111,110,32,97,102,40,116,41,123,105,102,40,110,61,116,46,108,101,110,103,116,104,41,123,102,111,114,40,118,97,114,32,110,44,101,44,114,61,48,44,105,61,116,91,48,93,59,43,43,114,60,110,59,41,105,46,110,61,101,61,116,91,114,93,44,101,46,112,61,105,44,105,61,101,59,105,46,110,61,101,61,116,91,48,93,44,101,46,112,61,105,125,125,71,99,46,105,110,118,101,114,116,61,71,99,59,118,97,114,32,117,102,61,81,97,40,41,59,102,117,110,99,116,105,111,110,32,99,102,40,116,41,123,114,101,116,117,114,110,32,102,117,40,116,91,48,93,41,60,61,114,117,63,116,91,48,93,58,95,117,40,116,91,48,93,41,42,40,40,102,117,40,116,91,48,93,41,43,114,117,41,37,97,117,45,114,117,41,125,102,117,110,99,116,105,111,110,32,102,102,40,116,44,110,41,123,118,97,114,32,101,61,99,102,40,110,41,44,114,61,110,91,49,93,44,105,61,121,117,40,114,41,44,111,61,91,121,117,40,101,41,44,45,104,117,40,101,41,44,48,93,44,97,61,48,44,117,61,48,59,117,102,46,114,101,115,101,116,40,41,44,49,61,61,61,105,63,114,61,105,117,43,110,117,58,45,49,61,61,61,105,38,38,40,114,61,45,105,117,45,110,117,41,59,102,111,114,40,118,97,114,32,99,61,48,44,102,61,116,46,108,101,110,103,116,104,59,99,60,102,59,43,43,99,41,105,102,40,108,61,40,115,61,116,91,99,93,41,46,108,101,110,103,116,104,41,102,111,114,40,118,97,114,32,115,44,108,44,104,61,115,91,108,45,49,93,44,100,61,99,102,40,104,41,44,112,61,104,91,49,93,47,50,43,111,117,44,118,61,121,117,40,112,41,44,103,61,104,117,40,112,41,44,121,61,48,59,121,60,108,59,43,43,121,44,100,61,98,44,118,61,120,44,103,61,119,44,104,61,95,41,123,118,97,114,32,95,61,115,91,121,93,44,98,61,99,102,40,95,41,44,109,61,95,91,49,93,47,50,43,111,117,44,120,61,121,117,40,109,41,44,119,61,104,117,40,109,41,44,77,61,98,45,100,44,78,61,77,62,61,48,63,49,58,45,49,44,84,61,78,42,77,44,65,61,84,62,114,117,44,83,61,118,42,120,59,105,102,40,117,102,46,97,100,100,40,108,117,40,83,42,78,42,121,117,40,84,41,44,103,42,119,43,83,42,104,117,40,84,41,41,41,44,97,43,61,65,63,77,43,78,42,97,117,58,77,44,65,94,100,62,61,101,94,98,62,61,101,41,123,118,97,114,32,107,61,86,117,40,106,117,40,104,41,44,106,117,40,95,41,41,59,87,117,40,107,41,59,118,97,114,32,69,61,86,117,40,111,44,107,41,59,87,117,40,69,41,59,118,97,114,32,67,61,40,65,94,77,62,61,48,63,45,49,58,49,41,42,119,117,40,69,91,50,93,41,59,40,114,62,67,124,124,114,61,61,61,67,38,38,40,107,91,48,93,124,124,107,91,49,93,41,41,38,38,40,117,43,61,65,94,77,62,61,48,63,49,58,45,49,41,125,125,114,101,116,117,114,110,40,97,60,45,110,117,124,124,97,60,110,117,38,38,117,102,60,45,110,117,41,94,49,38,117,125,102,117,110,99,116,105,111,110,32,115,102,40,116,44,110,44,101,44,114,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,105,41,123,118,97,114,32,111,44,97,44,117,44,99,61,110,40,105,41,44,102,61,110,102,40,41,44,115,61,110,40,102,41,44,108,61,33,49,44,104,61,123,112,111,105,110,116,58,100,44,108,105,110,101,83,116,97,114,116,58,118,44,108,105,110,101,69,110,100,58,103,44,112,111,108,121,103,111,110,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,104,46,112,111,105,110,116,61,121,44,104,46,108,105,110,101,83,116,97,114,116,61,95,44,104,46,108,105,110,101,69,110,100,61,98,44,97,61,91,93,44,111,61,91,93,125,44,112,111,108,121,103,111,110,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,104,46,112,111,105,110,116,61,100,44,104,46,108,105,110,101,83,116,97,114,116,61,118,44,104,46,108,105,110,101,69,110,100,61,103,44,97,61,65,40,97,41,59,118,97,114,32,116,61,102,102,40,111,44,114,41,59,97,46,108,101,110,103,116,104,63,40,108,124,124,40,105,46,112,111,108,121,103,111,110,83,116,97,114,116,40,41,44,108,61,33,48,41,44,111,102,40,97,44,104,102,44,116,44,101,44,105,41,41,58,116,38,38,40,108,124,124,40,105,46,112,111,108,121,103,111,110,83,116,97,114,116,40,41,44,108,61,33,48,41,44,105,46,108,105,110,101,83,116,97,114,116,40,41,44,101,40,110,117,108,108,44,110,117,108,108,44,49,44,105,41,44,105,46,108,105,110,101,69,110,100,40,41,41,44,108,38,38,40,105,46,112,111,108,121,103,111,110,69,110,100,40,41,44,108,61,33,49,41,44,97,61,111,61,110,117,108,108,125,44,115,112,104,101,114,101,58,102,117,110,99,116,105,111,110,40,41,123,105,46,112,111,108,121,103,111,110,83,116,97,114,116,40,41,44,105,46,108,105,110,101,83,116,97,114,116,40,41,44,101,40,110,117,108,108,44,110,117,108,108,44,49,44,105,41,44,105,46,108,105,110,101,69,110,100,40,41,44,105,46,112,111,108,121,103,111,110,69,110,100,40,41,125,125,59,102,117,110,99,116,105,111,110,32,100,40,110,44,101,41,123,116,40,110,44,101,41,38,38,105,46,112,111,105,110,116,40,110,44,101,41,125,102,117,110,99,116,105,111,110,32,112,40,116,44,110,41,123,99,46,112,111,105,110,116,40,116,44,110,41,125,102,117,110,99,116,105,111,110,32,118,40,41,123,104,46,112,111,105,110,116,61,112,44,99,46,108,105,110,101,83,116,97,114,116,40,41,125,102,117,110,99,116,105,111,110,32,103,40,41,123,104,46,112,111,105,110,116,61,100,44,99,46,108,105,110,101,69,110,100,40,41,125,102,117,110,99,116,105,111,110,32,121,40,116,44,110,41,123,117,46,112,117,115,104,40,91,116,44,110,93,41,44,115,46,112,111,105,110,116,40,116,44,110,41,125,102,117,110,99,116,105,111,110,32,95,40,41,123,115,46,108,105,110,101,83,116,97,114,116,40,41,44,117,61,91,93,125,102,117,110,99,116,105,111,110,32,98,40,41,123,121,40,117,91,48,93,91,48,93,44,117,91,48,93,91,49,93,41,44,115,46,108,105,110,101,69,110,100,40,41,59,118,97,114,32,116,44,110,44,101,44,114,44,99,61,115,46,99,108,101,97,110,40,41,44,104,61,102,46,114,101,115,117,108,116,40,41,44,100,61,104,46,108,101,110,103,116,104,59,105,102,40,117,46,112,111,112,40,41,44,111,46,112,117,115,104,40,117,41,44,117,61,110,117,108,108,44,100,41,105,102,40,49,38,99,41,123,105,102,40,40,110,61,40,101,61,104,91,48,93,41,46,108,101,110,103,116,104,45,49,41,62,48,41,123,102,111,114,40,108,124,124,40,105,46,112,111,108,121,103,111,110,83,116,97,114,116,40,41,44,108,61,33,48,41,44,105,46,108,105,110,101,83,116,97,114,116,40,41,44,116,61,48,59,116,60,110,59,43,43,116,41,105,46,112,111,105,110,116,40,40,114,61,101,91,116,93,41,91,48,93,44,114,91,49,93,41,59,105,46,108,105,110,101,69,110,100,40,41,125,125,101,108,115,101,32,100,62,49,38,38,50,38,99,38,38,104,46,112,117,115,104,40,104,46,112,111,112,40,41,46,99,111,110,99,97,116,40,104,46,115,104,105,102,116,40,41,41,41,44,97,46,112,117,115,104,40,104,46,102,105,108,116,101,114,40,108,102,41,41,125,114,101,116,117,114,110,32,104,125,125,102,117,110,99,116,105,111,110,32,108,102,40,116,41,123,114,101,116,117,114,110,32,116,46,108,101,110,103,116,104,62,49,125,102,117,110,99,116,105,111,110,32,104,102,40,116,44,110,41,123,114,101,116,117,114,110,40,40,116,61,116,46,120,41,91,48,93,60,48,63,116,91,49,93,45,105,117,45,110,117,58,105,117,45,116,91,49,93,41,45,40,40,110,61,110,46,120,41,91,48,93,60,48,63,110,91,49,93,45,105,117,45,110,117,58,105,117,45,110,91,49,93,41,125,118,97,114,32,100,102,61,115,102,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,33,48,125,44,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,44,101,61,78,97,78,44,114,61,78,97,78,44,105,61,78,97,78,59,114,101,116,117,114,110,123,108,105,110,101,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,116,46,108,105,110,101,83,116,97,114,116,40,41,44,110,61,49,125,44,112,111,105,110,116,58,102,117,110,99,116,105,111,110,40,111,44,97,41,123,118,97,114,32,117,61,111,62,48,63,114,117,58,45,114,117,44,99,61,102,117,40,111,45,101,41,59,102,117,40,99,45,114,117,41,60,110,117,63,40,116,46,112,111,105,110,116,40,101,44,114,61,40,114,43,97,41,47,50,62,48,63,105,117,58,45,105,117,41,44,116,46,112,111,105,110,116,40,105,44,114,41,44,116,46,108,105,110,101,69,110,100,40,41,44,116,46,108,105,110,101,83,116,97,114,116,40,41,44,116,46,112,111,105,110,116,40,117,44,114,41,44,116,46,112,111,105,110,116,40,111,44,114,41,44,110,61,48,41,58,105,33,61,61,117,38,38,99,62,61,114,117,38,38,40,102,117,40,101,45,105,41,60,110,117,38,38,40,101,45,61,105,42,110,117,41,44,102,117,40,111,45,117,41,60,110,117,38,38,40,111,45,61,117,42,110,117,41,44,114,61,102,117,110,99,116,105,111,110,40,116,44,110,44,101,44,114,41,123,118,97,114,32,105,44,111,44,97,61,121,117,40,116,45,101,41,59,114,101,116,117,114,110,32,102,117,40,97,41,62,110,117,63,115,117,40,40,121,117,40,110,41,42,40,111,61,104,117,40,114,41,41,42,121,117,40,101,41,45,121,117,40,114,41,42,40,105,61,104,117,40,110,41,41,42,121,117,40,116,41,41,47,40,105,42,111,42,97,41,41,58,40,110,43,114,41,47,50,125,40,101,44,114,44,111,44,97,41,44,116,46,112,111,105,110,116,40,105,44,114,41,44,116,46,108,105,110,101,69,110,100,40,41,44,116,46,108,105,110,101,83,116,97,114,116,40,41,44,116,46,112,111,105,110,116,40,117,44,114,41,44,110,61,48,41,44,116,46,112,111,105,110,116,40,101,61,111,44,114,61,97,41,44,105,61,117,125,44,108,105,110,101,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,116,46,108,105,110,101,69,110,100,40,41,44,101,61,114,61,78,97,78,125,44,99,108,101,97,110,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,50,45,110,125,125,125,44,102,117,110,99,116,105,111,110,40,116,44,110,44,101,44,114,41,123,118,97,114,32,105,59,105,102,40,110,117,108,108,61,61,116,41,105,61,101,42,105,117,44,114,46,112,111,105,110,116,40,45,114,117,44,105,41,44,114,46,112,111,105,110,116,40,48,44,105,41,44,114,46,112,111,105,110,116,40,114,117,44,105,41,44,114,46,112,111,105,110,116,40,114,117,44,48,41,44,114,46,112,111,105,110,116,40,114,117,44,45,105,41,44,114,46,112,111,105,110,116,40,48,44,45,105,41,44,114,46,112,111,105,110,116,40,45,114,117,44,45,105,41,44,114,46,112,111,105,110,116,40,45,114,117,44,48,41,44,114,46,112,111,105,110,116,40,45,114,117,44,105,41,59,101,108,115,101,32,105,102,40,102,117,40,116,91,48,93,45,110,91,48,93,41,62,110,117,41,123,118,97,114,32,111,61,116,91,48,93,60,110,91,48,93,63,114,117,58,45,114,117,59,105,61,101,42,111,47,50,44,114,46,112,111,105,110,116,40,45,111,44,105,41,44,114,46,112,111,105,110,116,40,48,44,105,41,44,114,46,112,111,105,110,116,40,111,44,105,41,125,101,108,115,101,32,114,46,112,111,105,110,116,40,110,91,48,93,44,110,91,49,93,41,125,44,91,45,114,117,44,45,105,117,93,41,59,102,117,110,99,116,105,111,110,32,112,102,40,116,41,123,118,97,114,32,110,61,104,117,40,116,41,44,101,61,54,42,99,117,44,114,61,110,62,48,44,105,61,102,117,40,110,41,62,110,117,59,102,117,110,99,116,105,111,110,32,111,40,116,44,101,41,123,114,101,116,117,114,110,32,104,117,40,116,41,42,104,117,40,101,41,62,110,125,102,117,110,99,116,105,111,110,32,97,40,116,44,101,44,114,41,123,118,97,114,32,105,61,91,49,44,48,44,48,93,44,111,61,86,117,40,106,117,40,116,41,44,106,117,40,101,41,41,44,97,61,88,117,40,111,44,111,41,44,117,61,111,91,48,93,44,99,61,97,45,117,42,117,59,105,102,40,33,99,41,114,101,116,117,114,110,33,114,38,38,116,59,118,97,114,32,102,61,110,42,97,47,99,44,115,61,45,110,42,117,47,99,44,108,61,86,117,40,105,44,111,41,44,104,61,36,117,40,105,44,102,41,59,71,117,40,104,44,36,117,40,111,44,115,41,41,59,118,97,114,32,100,61,108,44,112,61,88,117,40,104,44,100,41,44,118,61,88,117,40,100,44,100,41,44,103,61,112,42,112,45,118,42,40,88,117,40,104,44,104,41,45,49,41,59,105,102,40,33,40,103,60,48,41,41,123,118,97,114,32,121,61,98,117,40,103,41,44,95,61,36,117,40,100,44,40,45,112,45,121,41,47,118,41,59,105,102,40,71,117,40,95,44,104,41,44,95,61,72,117,40,95,41,44,33,114,41,114,101,116,117,114,110,32,95,59,118,97,114,32,98,44,109,61,116,91,48,93,44,120,61,101,91,48,93,44,119,61,116,91,49,93,44,77,61,101,91,49,93,59,120,60,109,38,38,40,98,61,109,44,109,61,120,44,120,61,98,41,59,118,97,114,32,78,61,120,45,109,44,84,61,102,117,40,78,45,114,117,41,60,110,117,59,105,102,40,33,84,38,38,77,60,119,38,38,40,98,61,119,44,119,61,77,44,77,61,98,41,44,84,124,124,78,60,110,117,63,84,63,119,43,77,62,48,94,95,91,49,93,60,40,102,117,40,95,91,48,93,45,109,41,60,110,117,63,119,58,77,41,58,119,60,61,95,91,49,93,38,38,95,91,49,93,60,61,77,58,78,62,114,117,94,40,109,60,61,95,91,48,93,38,38,95,91,48,93,60,61,120,41,41,123,118,97,114,32,65,61,36,117,40,100,44,40,45,112,43,121,41,47,118,41,59,114,101,116,117,114,110,32,71,117,40,65,44,104,41,44,91,95,44,72,117,40,65,41,93,125,125,125,102,117,110,99,116,105,111,110,32,117,40,110,44,101,41,123,118,97,114,32,105,61,114,63,116,58,114,117,45,116,44,111,61,48,59,114,101,116,117,114,110,32,110,60,45,105,63,111,124,61,49,58,110,62,105,38,38,40,111,124,61,50,41,44,101,60,45,105,63,111,124,61,52,58,101,62,105,38,38,40,111,124,61,56,41,44,111,125,114,101,116,117,114,110,32,115,102,40,111,44,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,44,101,44,99,44,102,44,115,59,114,101,116,117,114,110,123,108,105,110,101,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,102,61,99,61,33,49,44,115,61,49,125,44,112,111,105,110,116,58,102,117,110,99,116,105,111,110,40,108,44,104,41,123,118,97,114,32,100,44,112,61,91,108,44,104,93,44,118,61,111,40,108,44,104,41,44,103,61,114,63,118,63,48,58,117,40,108,44,104,41,58,118,63,117,40,108,43,40,108,60,48,63,114,117,58,45,114,117,41,44,104,41,58,48,59,105,102,40,33,110,38,38,40,102,61,99,61,118,41,38,38,116,46,108,105,110,101,83,116,97,114,116,40,41,44,118,33,61,61,99,38,38,40,33,40,100,61,97,40,110,44,112,41,41,124,124,101,102,40,110,44,100,41,124,124,101,102,40,112,44,100,41,41,38,38,40,112,91,48,93,43,61,110,117,44,112,91,49,93,43,61,110,117,44,118,61,111,40,112,91,48,93,44,112,91,49,93,41,41,44,118,33,61,61,99,41,115,61,48,44,118,63,40,116,46,108,105,110,101,83,116,97,114,116,40,41,44,100,61,97,40,112,44,110,41,44,116,46,112,111,105,110,116,40,100,91,48,93,44,100,91,49,93,41,41,58,40,100,61,97,40,110,44,112,41,44,116,46,112,111,105,110,116,40,100,91,48,93,44,100,91,49,93,41,44,116,46,108,105,110,101,69,110,100,40,41,41,44,110,61,100,59,101,108,115,101,32,105,102,40,105,38,38,110,38,38,114,94,118,41,123,118,97,114,32,121,59,103,38,101,124,124,33,40,121,61,97,40,112,44,110,44,33,48,41,41,124,124,40,115,61,48,44,114,63,40,116,46,108,105,110,101,83,116,97,114,116,40,41,44,116,46,112,111,105,110,116,40,121,91,48,93,91,48,93,44,121,91,48,93,91,49,93,41,44,116,46,112,111,105,110,116,40,121,91,49,93,91,48,93,44,121,91,49,93,91,49,93,41,44,116,46,108,105,110,101,69,110,100,40,41,41,58,40,116,46,112,111,105,110,116,40,121,91,49,93,91,48,93,44,121,91,49,93,91,49,93,41,44,116,46,108,105,110,101,69,110,100,40,41,44,116,46,108,105,110,101,83,116,97,114,116,40,41,44,116,46,112,111,105,110,116,40,121,91,48,93,91,48,93,44,121,91,48,93,91,49,93,41,41,41,125,33,118,124,124,110,38,38,101,102,40,110,44,112,41,124,124,116,46,112,111,105,110,116,40,112,91,48,93,44,112,91,49,93,41,44,110,61,112,44,99,61,118,44,101,61,103,125,44,108,105,110,101,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,99,38,38,116,46,108,105,110,101,69,110,100,40,41,44,110,61,110,117,108,108,125,44,99,108,101,97,110,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,115,124,40,102,38,38,99,41,60,60,49,125,125,125,44,102,117,110,99,116,105,111,110,40,110,44,114,44,105,44,111,41,123,74,99,40,111,44,116,44,101,44,105,44,110,44,114,41,125,44,114,63,91,48,44,45,116,93,58,91,45,114,117,44,116,45,114,117,93,41,125,118,97,114,32,118,102,61,49,101,57,44,103,102,61,45,118,102,59,102,117,110,99,116,105,111,110,32,121,102,40,116,44,110,44,101,44,114,41,123,102,117,110,99,116,105,111,110,32,105,40,105,44,111,41,123,114,101,116,117,114,110,32,116,60,61,105,38,38,105,60,61,101,38,38,110,60,61,111,38,38,111,60,61,114,125,102,117,110,99,116,105,111,110,32,111,40,105,44,111,44,117,44,102,41,123,118,97,114,32,115,61,48,44,108,61,48,59,105,102,40,110,117,108,108,61,61,105,124,124,40,115,61,97,40,105,44,117,41,41,33,61,61,40,108,61,97,40,111,44,117,41,41,124,124,99,40,105,44,111,41,60,48,94,117,62,48,41,100,111,123,102,46,112,111,105,110,116,40,48,61,61,61,115,124,124,51,61,61,61,115,63,116,58,101,44,115,62,49,63,114,58,110,41,125,119,104,105,108,101,40,40,115,61,40,115,43,117,43,52,41,37,52,41,33,61,61,108,41,59,101,108,115,101,32,102,46,112,111,105,110,116,40,111,91,48,93,44,111,91,49,93,41,125,102,117,110,99,116,105,111,110,32,97,40,114,44,105,41,123,114,101,116,117,114,110,32,102,117,40,114,91,48,93,45,116,41,60,110,117,63,105,62,48,63,48,58,51,58,102,117,40,114,91,48,93,45,101,41,60,110,117,63,105,62,48,63,50,58,49,58,102,117,40,114,91,49,93,45,110,41,60,110,117,63,105,62,48,63,49,58,48,58,105,62,48,63,51,58,50,125,102,117,110,99,116,105,111,110,32,117,40,116,44,110,41,123,114,101,116,117,114,110,32,99,40,116,46,120,44,110,46,120,41,125,102,117,110,99,116,105,111,110,32,99,40,116,44,110,41,123,118,97,114,32,101,61,97,40,116,44,49,41,44,114,61,97,40,110,44,49,41,59,114,101,116,117,114,110,32,101,33,61,61,114,63,101,45,114,58,48,61,61,61,101,63,110,91,49,93,45,116,91,49,93,58,49,61,61,61,101,63,116,91,48,93,45,110,91,48,93,58,50,61,61,61,101,63,116,91,49,93,45,110,91,49,93,58,110,91,48,93,45,116,91,48,93,125,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,97,41,123,118,97,114,32,99,44,102,44,115,44,108,44,104,44,100,44,112,44,118,44,103,44,121,44,95,44,98,61,97,44,109,61,110,102,40,41,44,120,61,123,112,111,105,110,116,58,119,44,108,105,110,101,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,120,46,112,111,105,110,116,61,77,44,102,38,38,102,46,112,117,115,104,40,115,61,91,93,41,59,121,61,33,48,44,103,61,33,49,44,112,61,118,61,78,97,78,125,44,108,105,110,101,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,99,38,38,40,77,40,108,44,104,41,44,100,38,38,103,38,38,109,46,114,101,106,111,105,110,40,41,44,99,46,112,117,115,104,40,109,46,114,101,115,117,108,116,40,41,41,41,59,120,46,112,111,105,110,116,61,119,44,103,38,38,98,46,108,105,110,101,69,110,100,40,41,125,44,112,111,108,121,103,111,110,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,98,61,109,44,99,61,91,93,44,102,61,91,93,44,95,61,33,48,125,44,112,111,108,121,103,111,110,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,110,61,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,118,97,114,32,110,61,48,44,101,61,48,44,105,61,102,46,108,101,110,103,116,104,59,101,60,105,59,43,43,101,41,102,111,114,40,118,97,114,32,111,44,97,44,117,61,102,91,101,93,44,99,61,49,44,115,61,117,46,108,101,110,103,116,104,44,108,61,117,91,48,93,44,104,61,108,91,48,93,44,100,61,108,91,49,93,59,99,60,115,59,43,43,99,41,111,61,104,44,97,61,100,44,108,61,117,91,99,93,44,104,61,108,91,48,93,44,100,61,108,91,49,93,44,97,60,61,114,63,100,62,114,38,38,40,104,45,111,41,42,40,114,45,97,41,62,40,100,45,97,41,42,40,116,45,111,41,38,38,43,43,110,58,100,60,61,114,38,38,40,104,45,111,41,42,40,114,45,97,41,60,40,100,45,97,41,42,40,116,45,111,41,38,38,45,45,110,59,114,101,116,117,114,110,32,110,125,40,41,44,101,61,95,38,38,110,44,105,61,40,99,61,65,40,99,41,41,46,108,101,110,103,116,104,59,40,101,124,124,105,41,38,38,40,97,46,112,111,108,121,103,111,110,83,116,97,114,116,40,41,44,101,38,38,40,97,46,108,105,110,101,83,116,97,114,116,40,41,44,111,40,110,117,108,108,44,110,117,108,108,44,49,44,97,41,44,97,46,108,105,110,101,69,110,100,40,41,41,44,105,38,38,111,102,40,99,44,117,44,110,44,111,44,97,41,44,97,46,112,111,108,121,103,111,110,69,110,100,40,41,41,59,98,61,97,44,99,61,102,61,115,61,110,117,108,108,125,125,59,102,117,110,99,116,105,111,110,32,119,40,116,44,110,41,123,105,40,116,44,110,41,38,38,98,46,112,111,105,110,116,40,116,44,110,41,125,102,117,110,99,116,105,111,110,32,77,40,111,44,97,41,123,118,97,114,32,117,61,105,40,111,44,97,41,59,105,102,40,102,38,38,115,46,112,117,115,104,40,91,111,44,97,93,41,44,121,41,108,61,111,44,104,61,97,44,100,61,117,44,121,61,33,49,44,117,38,38,40,98,46,108,105,110,101,83,116,97,114,116,40,41,44,98,46,112,111,105,110,116,40,111,44,97,41,41,59,101,108,115,101,32,105,102,40,117,38,38,103,41,98,46,112,111,105,110,116,40,111,44,97,41,59,101,108,115,101,123,118,97,114,32,99,61,91,112,61,77,97,116,104,46,109,97,120,40,103,102,44,77,97,116,104,46,109,105,110,40,118,102,44,112,41,41,44,118,61,77,97,116,104,46,109,97,120,40,103,102,44,77,97,116,104,46,109,105,110,40,118,102,44,118,41,41,93,44,109,61,91,111,61,77,97,116,104,46,109,97,120,40,103,102,44,77,97,116,104,46,109,105,110,40,118,102,44,111,41,41,44,97,61,77,97,116,104,46,109,97,120,40,103,102,44,77,97,116,104,46,109,105,110,40,118,102,44,97,41,41,93,59,33,102,117,110,99,116,105,111,110,40,116,44,110,44,101,44,114,44,105,44,111,41,123,118,97,114,32,97,44,117,61,116,91,48,93,44,99,61,116,91,49,93,44,102,61,48,44,115,61,49,44,108,61,110,91,48,93,45,117,44,104,61,110,91,49,93,45,99,59,105,102,40,97,61,101,45,117,44,108,124,124,33,40,97,62,48,41,41,123,105,102,40,97,47,61,108,44,108,60,48,41,123,105,102,40,97,60,102,41,114,101,116,117,114,110,59,97,60,115,38,38,40,115,61,97,41,125,101,108,115,101,32,105,102,40,108,62,48,41,123,105,102,40,97,62,115,41,114,101,116,117,114,110,59,97,62,102,38,38,40,102,61,97,41,125,105,102,40,97,61,105,45,117,44,108,124,124,33,40,97,60,48,41,41,123,105,102,40,97,47,61,108,44,108,60,48,41,123,105,102,40,97,62,115,41,114,101,116,117,114,110,59,97,62,102,38,38,40,102,61,97,41,125,101,108,115,101,32,105,102,40,108,62,48,41,123,105,102,40,97,60,102,41,114,101,116,117,114,110,59,97,60,115,38,38,40,115,61,97,41,125,105,102,40,97,61,114,45,99,44,104,124,124,33,40,97,62,48,41,41,123,105,102,40,97,47,61,104,44,104,60,48,41,123,105,102,40,97,60,102,41,114,101,116,117,114,110,59,97,60,115,38,38,40,115,61,97,41,125,101,108,115,101,32,105,102,40,104,62,48,41,123,105,102,40,97,62,115,41,114,101,116,117,114,110,59,97,62,102,38,38,40,102,61,97,41,125,105,102,40,97,61,111,45,99,44,104,124,124,33,40,97,60,48,41,41,123,105,102,40,97,47,61,104,44,104,60,48,41,123,105,102,40,97,62,115,41,114,101,116,117,114,110,59,97,62,102,38,38,40,102,61,97,41,125,101,108,115,101,32,105,102,40,104,62,48,41,123,105,102,40,97,60,102,41,114,101,116,117,114,110,59,97,60,115,38,38,40,115,61,97,41,125,114,101,116,117,114,110,32,102,62,48,38,38,40,116,91,48,93,61,117,43,102,42,108,44,116,91,49,93,61,99,43,102,42,104,41,44,115,60,49,38,38,40,110,91,48,93,61,117,43,115,42,108,44,110,91,49,93,61,99,43,115,42,104,41,44,33,48,125,125,125,125,125,40,99,44,109,44,116,44,110,44,101,44,114,41,63,117,38,38,40,98,46,108,105,110,101,83,116,97,114,116,40,41,44,98,46,112,111,105,110,116,40,111,44,97,41,44,95,61,33,49,41,58,40,103,124,124,40,98,46,108,105,110,101,83,116,97,114,116,40,41,44,98,46,112,111,105,110,116,40,99,91,48,93,44,99,91,49,93,41,41,44,98,46,112,111,105,110,116,40,109,91,48,93,44,109,91,49,93,41,44,117,124,124,98,46,108,105,110,101,69,110,100,40,41,44,95,61,33,49,41,125,112,61,111,44,118,61,97,44,103,61,117,125,114,101,116,117,114,110,32,120,125,125,118,97,114,32,95,102,44,98,102,44,109,102,44,120,102,61,81,97,40,41,44,119,102,61,123,115,112,104,101,114,101,58,78,117,44,112,111,105,110,116,58,78,117,44,108,105,110,101,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,119,102,46,112,111,105,110,116,61,78,102,44,119,102,46,108,105,110,101,69,110,100,61,77,102,125,44,108,105,110,101,69,110,100,58,78,117,44,112,111,108,121,103,111,110,83,116,97,114,116,58,78,117,44,112,111,108,121,103,111,110,69,110,100,58,78,117,125,59,102,117,110,99,116,105,111,110,32,77,102,40,41,123,119,102,46,112,111,105,110,116,61,119,102,46,108,105,110,101,69,110,100,61,78,117,125,102,117,110,99,116,105,111,110,32,78,102,40,116,44,110,41,123,95,102,61,116,42,61,99,117,44,98,102,61,121,117,40,110,42,61,99,117,41,44,109,102,61,104,117,40,110,41,44,119,102,46,112,111,105,110,116,61,84,102,125,102,117,110,99,116,105,111,110,32,84,102,40,116,44,110,41,123,116,42,61,99,117,59,118,97,114,32,101,61,121,117,40,110,42,61,99,117,41,44,114,61,104,117,40,110,41,44,105,61,102,117,40,116,45,95,102,41,44,111,61,104,117,40,105,41,44,97,61,114,42,121,117,40,105,41,44,117,61,109,102,42,101,45,98,102,42,114,42,111,44,99,61,98,102,42,101,43,109,102,42,114,42,111,59,120,102,46,97,100,100,40,108,117,40,98,117,40,97,42,97,43,117,42,117,41,44,99,41,41,44,95,102,61,116,44,98,102,61,101,44,109,102,61,114,125,102,117,110,99,116,105,111,110,32,65,102,40,116,41,123,114,101,116,117,114,110,32,120,102,46,114,101,115,101,116,40,41,44,67,117,40,116,44,119,102,41,44,43,120,102,125,118,97,114,32,83,102,61,91,110,117,108,108,44,110,117,108,108,93,44,107,102,61,123,116,121,112,101,58,34,76,105,110,101,83,116,114,105,110,103,34,44,99,111,111,114,100,105,110,97,116,101,115,58,83,102,125,59,102,117,110,99,116,105,111,110,32,69,102,40,116,44,110,41,123,114,101,116,117,114,110,32,83,102,91,48,93,61,116,44,83,102,91,49,93,61,110,44,65,102,40,107,102,41,125,118,97,114,32,67,102,61,123,70,101,97,116,117,114,101,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,122,102,40,116,46,103,101,111,109,101,116,114,121,44,110,41,125,44,70,101,97,116,117,114,101,67,111,108,108,101,99,116,105,111,110,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,102,111,114,40,118,97,114,32,101,61,116,46,102,101,97,116,117,114,101,115,44,114,61,45,49,44,105,61,101,46,108,101,110,103,116,104,59,43,43,114,60,105,59,41,105,102,40,122,102,40,101,91,114,93,46,103,101,111,109,101,116,114,121,44,110,41,41,114,101,116,117,114,110,33,48,59,114,101,116,117,114,110,33,49,125,125,44,80,102,61,123,83,112,104,101,114,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,33,48,125,44,80,111,105,110,116,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,82,102,40,116,46,99,111,111,114,100,105,110,97,116,101,115,44,110,41,125,44,77,117,108,116,105,80,111,105,110,116,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,102,111,114,40,118,97,114,32,101,61,116,46,99,111,111,114,100,105,110,97,116,101,115,44,114,61,45,49,44,105,61,101,46,108,101,110,103,116,104,59,43,43,114,60,105,59,41,105,102,40,82,102,40,101,91,114,93,44,110,41,41,114,101,116,117,114,110,33,48,59,114,101,116,117,114,110,33,49,125,44,76,105,110,101,83,116,114,105,110,103,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,68,102,40,116,46,99,111,111,114,100,105,110,97,116,101,115,44,110,41,125,44,77,117,108,116,105,76,105,110,101,83,116,114,105,110,103,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,102,111,114,40,118,97,114,32,101,61,116,46,99,111,111,114,100,105,110,97,116,101,115,44,114,61,45,49,44,105,61,101,46,108,101,110,103,116,104,59,43,43,114,60,105,59,41,105,102,40,68,102,40,101,91,114,93,44,110,41,41,114,101,116,117,114,110,33,48,59,114,101,116,117,114,110,33,49,125,44,80,111,108,121,103,111,110,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,113,102,40,116,46,99,111,111,114,100,105,110,97,116,101,115,44,110,41,125,44,77,117,108,116,105,80,111,108,121,103,111,110,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,102,111,114,40,118,97,114,32,101,61,116,46,99,111,111,114,100,105,110,97,116,101,115,44,114,61,45,49,44,105,61,101,46,108,101,110,103,116,104,59,43,43,114,60,105,59,41,105,102,40,113,102,40,101,91,114,93,44,110,41,41,114,101,116,117,114,110,33,48,59,114,101,116,117,114,110,33,49,125,44,71,101,111,109,101,116,114,121,67,111,108,108,101,99,116,105,111,110,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,102,111,114,40,118,97,114,32,101,61,116,46,103,101,111,109,101,116,114,105,101,115,44,114,61,45,49,44,105,61,101,46,108,101,110,103,116,104,59,43,43,114,60,105,59,41,105,102,40,122,102,40,101,91,114,93,44,110,41,41,114,101,116,117,114,110,33,48,59,114,101,116,117,114,110,33,49,125,125,59,102,117,110,99,116,105,111,110,32,122,102,40,116,44,110,41,123,114,101,116,117,114,110,33,40,33,116,124,124,33,80,102,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,116,46,116,121,112,101,41,41,38,38,80,102,91,116,46,116,121,112,101,93,40,116,44,110,41,125,102,117,110,99,116,105,111,110,32,82,102,40,116,44,110,41,123,114,101,116,117,114,110,32,48,61,61,61,69,102,40,116,44,110,41,125,102,117,110,99,116,105,111,110,32,68,102,40,116,44,110,41,123,102,111,114,40,118,97,114,32,101,44,114,44,105,44,111,61,48,44,97,61,116,46,108,101,110,103,116,104,59,111,60,97,59,111,43,43,41,123,105,102,40,48,61,61,61,40,114,61,69,102,40,116,91,111,93,44,110,41,41,41,114,101,116,117,114,110,33,48,59,105,102,40,111,62,48,38,38,40,105,61,69,102,40,116,91,111,93,44,116,91,111,45,49,93,41,41,62,48,38,38,101,60,61,105,38,38,114,60,61,105,38,38,40,101,43,114,45,105,41,42,40,49,45,77,97,116,104,46,112,111,119,40,40,101,45,114,41,47,105,44,50,41,41,60,101,117,42,105,41,114,101,116,117,114,110,33,48,59,101,61,114,125,114,101,116,117,114,110,33,49,125,102,117,110,99,116,105,111,110,32,113,102,40,116,44,110,41,123,114,101,116,117,114,110,33,33,102,102,40,116,46,109,97,112,40,76,102,41,44,85,102,40,110,41,41,125,102,117,110,99,116,105,111,110,32,76,102,40,116,41,123,114,101,116,117,114,110,40,116,61,116,46,109,97,112,40,85,102,41,41,46,112,111,112,40,41,44,116,125,102,117,110,99,116,105,111,110,32,85,102,40,116,41,123,114,101,116,117,114,110,91,116,91,48,93,42,99,117,44,116,91,49,93,42,99,117,93,125,102,117,110,99,116,105,111,110,32,79,102,40,116,44,110,44,101,41,123,118,97,114,32,114,61,103,40,116,44,110,45,110,117,44,101,41,46,99,111,110,99,97,116,40,110,41,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,114,46,109,97,112,40,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,91,116,44,110,93,125,41,125,125,102,117,110,99,116,105,111,110,32,66,102,40,116,44,110,44,101,41,123,118,97,114,32,114,61,103,40,116,44,110,45,110,117,44,101,41,46,99,111,110,99,97,116,40,110,41,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,114,46,109,97,112,40,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,91,110,44,116,93,125,41,125,125,102,117,110,99,116,105,111,110,32,70,102,40,41,123,118,97,114,32,116,44,110,44,101,44,114,44,105,44,111,44,97,44,117,44,99,44,102,44,115,44,108,44,104,61,49,48,44,100,61,104,44,112,61,57,48,44,118,61,51,54,48,44,121,61,50,46,53,59,102,117,110,99,116,105,111,110,32,95,40,41,123,114,101,116,117,114,110,123,116,121,112,101,58,34,77,117,108,116,105,76,105,110,101,83,116,114,105,110,103,34,44,99,111,111,114,100,105,110,97,116,101,115,58,98,40,41,125,125,102,117,110,99,116,105,111,110,32,98,40,41,123,114,101,116,117,114,110,32,103,40,100,117,40,114,47,112,41,42,112,44,101,44,112,41,46,109,97,112,40,115,41,46,99,111,110,99,97,116,40,103,40,100,117,40,117,47,118,41,42,118,44,97,44,118,41,46,109,97,112,40,108,41,41,46,99,111,110,99,97,116,40,103,40,100,117,40,110,47,104,41,42,104,44,116,44,104,41,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,102,117,40,116,37,112,41,62,110,117,125,41,46,109,97,112,40,99,41,41,46,99,111,110,99,97,116,40,103,40,100,117,40,111,47,100,41,42,100,44,105,44,100,41,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,102,117,40,116,37,118,41,62,110,117,125,41,46,109,97,112,40,102,41,41,125,114,101,116,117,114,110,32,95,46,108,105,110,101,115,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,98,40,41,46,109,97,112,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,123,116,121,112,101,58,34,76,105,110,101,83,116,114,105,110,103,34,44,99,111,111,114,100,105,110,97,116,101,115,58,116,125,125,41,125,44,95,46,111,117,116,108,105,110,101,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,116,121,112,101,58,34,80,111,108,121,103,111,110,34,44,99,111,111,114,100,105,110,97,116,101,115,58,91,115,40,114,41,46,99,111,110,99,97,116,40,108,40,97,41,46,115,108,105,99,101,40,49,41,44,115,40,101,41,46,114,101,118,101,114,115,101,40,41,46,115,108,105,99,101,40,49,41,44,108,40,117,41,46,114,101,118,101,114,115,101,40,41,46,115,108,105,99,101,40,49,41,41,93,125,125,44,95,46,101,120,116,101,110,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,95,46,101,120,116,101,110,116,77,97,106,111,114,40,116,41,46,101,120,116,101,110,116,77,105,110,111,114,40,116,41,58,95,46,101,120,116,101,110,116,77,105,110,111,114,40,41,125,44,95,46,101,120,116,101,110,116,77,97,106,111,114,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,114,61,43,116,91,48,93,91,48,93,44,101,61,43,116,91,49,93,91,48,93,44,117,61,43,116,91,48,93,91,49,93,44,97,61,43,116,91,49,93,91,49,93,44,114,62,101,38,38,40,116,61,114,44,114,61,101,44,101,61,116,41,44,117,62,97,38,38,40,116,61,117,44,117,61,97,44,97,61,116,41,44,95,46,112,114,101,99,105,115,105,111,110,40,121,41,41,58,91,91,114,44,117,93,44,91,101,44,97,93,93,125,44,95,46,101,120,116,101,110,116,77,105,110,111,114,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,110,61,43,101,91,48,93,91,48,93,44,116,61,43,101,91,49,93,91,48,93,44,111,61,43,101,91,48,93,91,49,93,44,105,61,43,101,91,49,93,91,49,93,44,110,62,116,38,38,40,101,61,110,44,110,61,116,44,116,61,101,41,44,111,62,105,38,38,40,101,61,111,44,111,61,105,44,105,61,101,41,44,95,46,112,114,101,99,105,115,105,111,110,40,121,41,41,58,91,91,110,44,111,93,44,91,116,44,105,93,93,125,44,95,46,115,116,101,112,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,95,46,115,116,101,112,77,97,106,111,114,40,116,41,46,115,116,101,112,77,105,110,111,114,40,116,41,58,95,46,115,116,101,112,77,105,110,111,114,40,41,125,44,95,46,115,116,101,112,77,97,106,111,114,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,112,61,43,116,91,48,93,44,118,61,43,116,91,49,93,44,95,41,58,91,112,44,118,93,125,44,95,46,115,116,101,112,77,105,110,111,114,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,104,61,43,116,91,48,93,44,100,61,43,116,91,49,93,44,95,41,58,91,104,44,100,93,125,44,95,46,112,114,101,99,105,115,105,111,110,61,102,117,110,99,116,105,111,110,40,104,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,121,61,43,104,44,99,61,79,102,40,111,44,105,44,57,48,41,44,102,61,66,102,40,110,44,116,44,121,41,44,115,61,79,102,40,117,44,97,44,57,48,41,44,108,61,66,102,40,114,44,101,44,121,41,44,95,41,58,121,125,44,95,46,101,120,116,101,110,116,77,97,106,111,114,40,91,91,45,49,56,48,44,45,57,48,43,110,117,93,44,91,49,56,48,44,57,48,45,110,117,93,93,41,46,101,120,116,101,110,116,77,105,110,111,114,40,91,91,45,49,56,48,44,45,56,48,45,110,117,93,44,91,49,56,48,44,56,48,43,110,117,93,93,41,125,102,117,110,99,116,105,111,110,32,89,102,40,116,41,123,114,101,116,117,114,110,32,116,125,118,97,114,32,73,102,44,72,102,44,106,102,44,88,102,44,86,102,61,81,97,40,41,44,71,102,61,81,97,40,41,44,36,102,61,123,112,111,105,110,116,58,78,117,44,108,105,110,101,83,116,97,114,116,58,78,117,44,108,105,110,101,69,110,100,58,78,117,44,112,111,108,121,103,111,110,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,36,102,46,108,105,110,101,83,116,97,114,116,61,87,102,44,36,102,46,108,105,110,101,69,110,100,61,75,102,125,44,112,111,108,121,103,111,110,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,36,102,46,108,105,110,101,83,116,97,114,116,61,36,102,46,108,105,110,101,69,110,100,61,36,102,46,112,111,105,110,116,61,78,117,44,86,102,46,97,100,100,40,102,117,40,71,102,41,41,44,71,102,46,114,101,115,101,116,40,41,125,44,114,101,115,117,108,116,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,86,102,47,50,59,114,101,116,117,114,110,32,86,102,46,114,101,115,101,116,40,41,44,116,125,125,59,102,117,110,99,116,105,111,110,32,87,102,40,41,123,36,102,46,112,111,105,110,116,61,90,102,125,102,117,110,99,116,105,111,110,32,90,102,40,116,44,110,41,123,36,102,46,112,111,105,110,116,61,81,102,44,73,102,61,106,102,61,116,44,72,102,61,88,102,61,110,125,102,117,110,99,116,105,111,110,32,81,102,40,116,44,110,41,123,71,102,46,97,100,100,40,88,102,42,116,45,106,102,42,110,41,44,106,102,61,116,44,88,102,61,110,125,102,117,110,99,116,105,111,110,32,75,102,40,41,123,81,102,40,73,102,44,72,102,41,125,118,97,114,32,74,102,61,49,47,48,44,116,115,61,74,102,44,110,115,61,45,74,102,44,101,115,61,110,115,44,114,115,61,123,112,111,105,110,116,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,116,60,74,102,38,38,40,74,102,61,116,41,59,116,62,110,115,38,38,40,110,115,61,116,41,59,110,60,116,115,38,38,40,116,115,61,110,41,59,110,62,101,115,38,38,40,101,115,61,110,41,125,44,108,105,110,101,83,116,97,114,116,58,78,117,44,108,105,110,101,69,110,100,58,78,117,44,112,111,108,121,103,111,110,83,116,97,114,116,58,78,117,44,112,111,108,121,103,111,110,69,110,100,58,78,117,44,114,101,115,117,108,116,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,91,91,74,102,44,116,115,93,44,91,110,115,44,101,115,93,93,59,114,101,116,117,114,110,32,110,115,61,101,115,61,45,40,116,115,61,74,102,61,49,47,48,41,44,116,125,125,59,118,97,114,32,105,115,44,111,115,44,97,115,44,117,115,44,99,115,61,48,44,102,115,61,48,44,115,115,61,48,44,108,115,61,48,44,104,115,61,48,44,100,115,61,48,44,112,115,61,48,44,118,115,61,48,44,103,115,61,48,44,121,115,61,123,112,111,105,110,116,58,95,115,44,108,105,110,101,83,116,97,114,116,58,98,115,44,108,105,110,101,69,110,100,58,119,115,44,112,111,108,121,103,111,110,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,121,115,46,108,105,110,101,83,116,97,114,116,61,77,115,44,121,115,46,108,105,110,101,69,110,100,61,78,115,125,44,112,111,108,121,103,111,110,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,121,115,46,112,111,105,110,116,61,95,115,44,121,115,46,108,105,110,101,83,116,97,114,116,61,98,115,44,121,115,46,108,105,110,101,69,110,100,61,119,115,125,44,114,101,115,117,108,116,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,103,115,63,91,112,115,47,103,115,44,118,115,47,103,115,93,58,100,115,63,91,108,115,47,100,115,44,104,115,47,100,115,93,58,115,115,63,91,99,115,47,115,115,44,102,115,47,115,115,93,58,91,78,97,78,44,78,97,78,93,59,114,101,116,117,114,110,32,99,115,61,102,115,61,115,115,61,108,115,61,104,115,61,100,115,61,112,115,61,118,115,61,103,115,61,48,44,116,125,125,59,102,117,110,99,116,105,111,110,32,95,115,40,116,44,110,41,123,99,115,43,61,116,44,102,115,43,61,110,44,43,43,115,115,125,102,117,110,99,116,105,111,110,32,98,115,40,41,123,121,115,46,112,111,105,110,116,61,109,115,125,102,117,110,99,116,105,111,110,32,109,115,40,116,44,110,41,123,121,115,46,112,111,105,110,116,61,120,115,44,95,115,40,97,115,61,116,44,117,115,61,110,41,125,102,117,110,99,116,105,111,110,32,120,115,40,116,44,110,41,123,118,97,114,32,101,61,116,45,97,115,44,114,61,110,45,117,115,44,105,61,98,117,40,101,42,101,43,114,42,114,41,59,108,115,43,61,105,42,40,97,115,43,116,41,47,50,44,104,115,43,61,105,42,40,117,115,43,110,41,47,50,44,100,115,43,61,105,44,95,115,40,97,115,61,116,44,117,115,61,110,41,125,102,117,110,99,116,105,111,110,32,119,115,40,41,123,121,115,46,112,111,105,110,116,61,95,115,125,102,117,110,99,116,105,111,110,32,77,115,40,41,123,121,115,46,112,111,105,110,116,61,84,115,125,102,117,110,99,116,105,111,110,32,78,115,40,41,123,65,115,40,105,115,44,111,115,41,125,102,117,110,99,116,105,111,110,32,84,115,40,116,44,110,41,123,121,115,46,112,111,105,110,116,61,65,115,44,95,115,40,105,115,61,97,115,61,116,44,111,115,61,117,115,61,110,41,125,102,117,110,99,116,105,111,110,32,65,115,40,116,44,110,41,123,118,97,114,32,101,61,116,45,97,115,44,114,61,110,45,117,115,44,105,61,98,117,40,101,42,101,43,114,42,114,41,59,108,115,43,61,105,42,40,97,115,43,116,41,47,50,44,104,115,43,61,105,42,40,117,115,43,110,41,47,50,44,100,115,43,61,105,44,112,115,43,61,40,105,61,117,115,42,116,45,97,115,42,110,41,42,40,97,115,43,116,41,44,118,115,43,61,105,42,40,117,115,43,110,41,44,103,115,43,61,51,42,105,44,95,115,40,97,115,61,116,44,117,115,61,110,41,125,102,117,110,99,116,105,111,110,32,83,115,40,116,41,123,116,104,105,115,46,95,99,111,110,116,101,120,116,61,116,125,83,115,46,112,114,111,116,111,116,121,112,101,61,123,95,114,97,100,105,117,115,58,52,46,53,44,112,111,105,110,116,82,97,100,105,117,115,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,114,97,100,105,117,115,61,116,44,116,104,105,115,125,44,112,111,108,121,103,111,110,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,108,105,110,101,61,48,125,44,112,111,108,121,103,111,110,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,108,105,110,101,61,78,97,78,125,44,108,105,110,101,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,112,111,105,110,116,61,48,125,44,108,105,110,101,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,48,61,61,61,116,104,105,115,46,95,108,105,110,101,38,38,116,104,105,115,46,95,99,111,110,116,101,120,116,46,99,108,111,115,101,80,97,116,104,40,41,44,116,104,105,115,46,95,112,111,105,110,116,61,78,97,78,125,44,112,111,105,110,116,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,115,119,105,116,99,104,40,116,104,105,115,46,95,112,111,105,110,116,41,123,99,97,115,101,32,48,58,116,104,105,115,46,95,99,111,110,116,101,120,116,46,109,111,118,101,84,111,40,116,44,110,41,44,116,104,105,115,46,95,112,111,105,110,116,61,49,59,98,114,101,97,107,59,99,97,115,101,32,49,58,116,104,105,115,46,95,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,116,44,110,41,59,98,114,101,97,107,59,100,101,102,97,117,108,116,58,116,104,105,115,46,95,99,111,110,116,101,120,116,46,109,111,118,101,84,111,40,116,43,116,104,105,115,46,95,114,97,100,105,117,115,44,110,41,44,116,104,105,115,46,95,99,111,110,116,101,120,116,46,97,114,99,40,116,44,110,44,116,104,105,115,46,95,114,97,100,105,117,115,44,48,44,97,117,41,125,125,44,114,101,115,117,108,116,58,78,117,125,59,118,97,114,32,107,115,44,69,115,44,67,115,44,80,115,44,122,115,44,82,115,61,81,97,40,41,44,68,115,61,123,112,111,105,110,116,58,78,117,44,108,105,110,101,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,68,115,46,112,111,105,110,116,61,113,115,125,44,108,105,110,101,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,107,115,38,38,76,115,40,69,115,44,67,115,41,44,68,115,46,112,111,105,110,116,61,78,117,125,44,112,111,108,121,103,111,110,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,107,115,61,33,48,125,44,112,111,108,121,103,111,110,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,107,115,61,110,117,108,108,125,44,114,101,115,117,108,116,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,43,82,115,59,114,101,116,117,114,110,32,82,115,46,114,101,115,101,116,40,41,44,116,125,125,59,102,117,110,99,116,105,111,110,32,113,115,40,116,44,110,41,123,68,115,46,112,111,105,110,116,61,76,115,44,69,115,61,80,115,61,116,44,67,115,61,122,115,61,110,125,102,117,110,99,116,105,111,110,32,76,115,40,116,44,110,41,123,80,115,45,61,116,44,122,115,45,61,110,44,82,115,46,97,100,100,40,98,117,40,80,115,42,80,115,43,122,115,42,122,115,41,41,44,80,115,61,116,44,122,115,61,110,125,102,117,110,99,116,105,111,110,32,85,115,40,41,123,116,104,105,115,46,95,115,116,114,105,110,103,61,91,93,125,102,117,110,99,116,105,111,110,32,79,115,40,116,41,123,114,101,116,117,114,110,34,109,48,44,34,43,116,43,34,97,34,43,116,43,34,44,34,43,116,43,34,32,48,32,49,44,49,32,48,44,34,43,45,50,42,116,43,34,97,34,43,116,43,34,44,34,43,116,43,34,32,48,32,49,44,49,32,48,44,34,43,50,42,116,43,34,122,34,125,102,117,110,99,116,105,111,110,32,66,115,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,101,61,110,101,119,32,70,115,59,102,111,114,40,118,97,114,32,114,32,105,110,32,116,41,101,91,114,93,61,116,91,114,93,59,114,101,116,117,114,110,32,101,46,115,116,114,101,97,109,61,110,44,101,125,125,102,117,110,99,116,105,111,110,32,70,115,40,41,123,125,102,117,110,99,116,105,111,110,32,89,115,40,116,44,110,44,101,41,123,118,97,114,32,114,61,116,46,99,108,105,112,69,120,116,101,110,116,38,38,116,46,99,108,105,112,69,120,116,101,110,116,40,41,59,114,101,116,117,114,110,32,116,46,115,99,97,108,101,40,49,53,48,41,46,116,114,97,110,115,108,97,116,101,40,91,48,44,48,93,41,44,110,117,108,108,33,61,114,38,38,116,46,99,108,105,112,69,120,116,101,110,116,40,110,117,108,108,41,44,67,117,40,101,44,116,46,115,116,114,101,97,109,40,114,115,41,41,44,110,40,114,115,46,114,101,115,117,108,116,40,41,41,44,110,117,108,108,33,61,114,38,38,116,46,99,108,105,112,69,120,116,101,110,116,40,114,41,44,116,125,102,117,110,99,116,105,111,110,32,73,115,40,116,44,110,44,101,41,123,114,101,116,117,114,110,32,89,115,40,116,44,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,114,61,110,91,49,93,91,48,93,45,110,91,48,93,91,48,93,44,105,61,110,91,49,93,91,49,93,45,110,91,48,93,91,49,93,44,111,61,77,97,116,104,46,109,105,110,40,114,47,40,101,91,49,93,91,48,93,45,101,91,48,93,91,48,93,41,44,105,47,40,101,91,49,93,91,49,93,45,101,91,48,93,91,49,93,41,41,44,97,61,43,110,91,48,93,91,48,93,43,40,114,45,111,42,40,101,91,49,93,91,48,93,43,101,91,48,93,91,48,93,41,41,47,50,44,117,61,43,110,91,48,93,91,49,93,43,40,105,45,111,42,40,101,91,49,93,91,49,93,43,101,91,48,93,91,49,93,41,41,47,50,59,116,46,115,99,97,108,101,40,49,53,48,42,111,41,46,116,114,97,110,115,108,97,116,101,40,91,97,44,117,93,41,125,44,101,41,125,102,117,110,99,116,105,111,110,32,72,115,40,116,44,110,44,101,41,123,114,101,116,117,114,110,32,73,115,40,116,44,91,91,48,44,48,93,44,110,93,44,101,41,125,102,117,110,99,116,105,111,110,32,106,115,40,116,44,110,44,101,41,123,114,101,116,117,114,110,32,89,115,40,116,44,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,114,61,43,110,44,105,61,114,47,40,101,91,49,93,91,48,93,45,101,91,48,93,91,48,93,41,44,111,61,40,114,45,105,42,40,101,91,49,93,91,48,93,43,101,91,48,93,91,48,93,41,41,47,50,44,97,61,45,105,42,101,91,48,93,91,49,93,59,116,46,115,99,97,108,101,40,49,53,48,42,105,41,46,116,114,97,110,115,108,97,116,101,40,91,111,44,97,93,41,125,44,101,41,125,102,117,110,99,116,105,111,110,32,88,115,40,116,44,110,44,101,41,123,114,101,116,117,114,110,32,89,115,40,116,44,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,114,61,43,110,44,105,61,114,47,40,101,91,49,93,91,49,93,45,101,91,48,93,91,49,93,41,44,111,61,45,105,42,101,91,48,93,91,48,93,44,97,61,40,114,45,105,42,40,101,91,49,93,91,49,93,43,101,91,48,93,91,49,93,41,41,47,50,59,116,46,115,99,97,108,101,40,49,53,48,42,105,41,46,116,114,97,110,115,108,97,116,101,40,91,111,44,97,93,41,125,44,101,41,125,85,115,46,112,114,111,116,111,116,121,112,101,61,123,95,114,97,100,105,117,115,58,52,46,53,44,95,99,105,114,99,108,101,58,79,115,40,52,46,53,41,44,112,111,105,110,116,82,97,100,105,117,115,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,40,116,61,43,116,41,33,61,61,116,104,105,115,46,95,114,97,100,105,117,115,38,38,40,116,104,105,115,46,95,114,97,100,105,117,115,61,116,44,116,104,105,115,46,95,99,105,114,99,108,101,61,110,117,108,108,41,44,116,104,105,115,125,44,112,111,108,121,103,111,110,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,108,105,110,101,61,48,125,44,112,111,108,121,103,111,110,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,108,105,110,101,61,78,97,78,125,44,108,105,110,101,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,112,111,105,110,116,61,48,125,44,108,105,110,101,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,48,61,61,61,116,104,105,115,46,95,108,105,110,101,38,38,116,104,105,115,46,95,115,116,114,105,110,103,46,112,117,115,104,40,34,90,34,41,44,116,104,105,115,46,95,112,111,105,110,116,61,78,97,78,125,44,112,111,105,110,116,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,115,119,105,116,99,104,40,116,104,105,115,46,95,112,111,105,110,116,41,123,99,97,115,101,32,48,58,116,104,105,115,46,95,115,116,114,105,110,103,46,112,117,115,104,40,34,77,34,44,116,44,34,44,34,44,110,41,44,116,104,105,115,46,95,112,111,105,110,116,61,49,59,98,114,101,97,107,59,99,97,115,101,32,49,58,116,104,105,115,46,95,115,116,114,105,110,103,46,112,117,115,104,40,34,76,34,44,116,44,34,44,34,44,110,41,59,98,114,101,97,107,59,100,101,102,97,117,108,116,58,110,117,108,108,61,61,116,104,105,115,46,95,99,105,114,99,108,101,38,38,40,116,104,105,115,46,95,99,105,114,99,108,101,61,79,115,40,116,104,105,115,46,95,114,97,100,105,117,115,41,41,44,116,104,105,115,46,95,115,116,114,105,110,103,46,112,117,115,104,40,34,77,34,44,116,44,34,44,34,44,110,44,116,104,105,115,46,95,99,105,114,99,108,101,41,125,125,44,114,101,115,117,108,116,58,102,117,110,99,116,105,111,110,40,41,123,105,102,40,116,104,105,115,46,95,115,116,114,105,110,103,46,108,101,110,103,116,104,41,123,118,97,114,32,116,61,116,104,105,115,46,95,115,116,114,105,110,103,46,106,111,105,110,40,34,34,41,59,114,101,116,117,114,110,32,116,104,105,115,46,95,115,116,114,105,110,103,61,91,93,44,116,125,114,101,116,117,114,110,32,110,117,108,108,125,125,44,70,115,46,112,114,111,116,111,116,121,112,101,61,123,99,111,110,115,116,114,117,99,116,111,114,58,70,115,44,112,111,105,110,116,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,116,104,105,115,46,115,116,114,101,97,109,46,112,111,105,110,116,40,116,44,110,41,125,44,115,112,104,101,114,101,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,115,116,114,101,97,109,46,115,112,104,101,114,101,40,41,125,44,108,105,110,101,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,115,116,114,101,97,109,46,108,105,110,101,83,116,97,114,116,40,41,125,44,108,105,110,101,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,115,116,114,101,97,109,46,108,105,110,101,69,110,100,40,41,125,44,112,111,108,121,103,111,110,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,115,116,114,101,97,109,46,112,111,108,121,103,111,110,83,116,97,114,116,40,41,125,44,112,111,108,121,103,111,110,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,115,116,114,101,97,109,46,112,111,108,121,103,111,110,69,110,100,40,41,125,125,59,118,97,114,32,86,115,61,49,54,44,71,115,61,104,117,40,51,48,42,99,117,41,59,102,117,110,99,116,105,111,110,32,36,115,40,116,44,110,41,123,114,101,116,117,114,110,43,110,63,102,117,110,99,116,105,111,110,40,116,44,110,41,123,102,117,110,99,116,105,111,110,32,101,40,114,44,105,44,111,44,97,44,117,44,99,44,102,44,115,44,108,44,104,44,100,44,112,44,118,44,103,41,123,118,97,114,32,121,61,102,45,114,44,95,61,115,45,105,44,98,61,121,42,121,43,95,42,95,59,105,102,40,98,62,52,42,110,38,38,118,45,45,41,123,118,97,114,32,109,61,97,43,104,44,120,61,117,43,100,44,119,61,99,43,112,44,77,61,98,117,40,109,42,109,43,120,42,120,43,119,42,119,41,44,78,61,119,117,40,119,47,61,77,41,44,84,61,102,117,40,102,117,40,119,41,45,49,41,60,110,117,124,124,102,117,40,111,45,108,41,60,110,117,63,40,111,43,108,41,47,50,58,108,117,40,120,44,109,41,44,65,61,116,40,84,44,78,41,44,83,61,65,91,48,93,44,107,61,65,91,49,93,44,69,61,83,45,114,44,67,61,107,45,105,44,80,61,95,42,69,45,121,42,67,59,40,80,42,80,47,98,62,110,124,124,102,117,40,40,121,42,69,43,95,42,67,41,47,98,45,46,53,41,62,46,51,124,124,97,42,104,43,117,42,100,43,99,42,112,60,71,115,41,38,38,40,101,40,114,44,105,44,111,44,97,44,117,44,99,44,83,44,107,44,84,44,109,47,61,77,44,120,47,61,77,44,119,44,118,44,103,41,44,103,46,112,111,105,110,116,40,83,44,107,41,44,101,40,83,44,107,44,84,44,109,44,120,44,119,44,102,44,115,44,108,44,104,44,100,44,112,44,118,44,103,41,41,125,125,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,114,44,105,44,111,44,97,44,117,44,99,44,102,44,115,44,108,44,104,44,100,44,112,44,118,61,123,112,111,105,110,116,58,103,44,108,105,110,101,83,116,97,114,116,58,121,44,108,105,110,101,69,110,100,58,98,44,112,111,108,121,103,111,110,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,110,46,112,111,108,121,103,111,110,83,116,97,114,116,40,41,44,118,46,108,105,110,101,83,116,97,114,116,61,109,125,44,112,111,108,121,103,111,110,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,110,46,112,111,108,121,103,111,110,69,110,100,40,41,44,118,46,108,105,110,101,83,116,97,114,116,61,121,125,125,59,102,117,110,99,116,105,111,110,32,103,40,101,44,114,41,123,101,61,116,40,101,44,114,41,44,110,46,112,111,105,110,116,40,101,91,48,93,44,101,91,49,93,41,125,102,117,110,99,116,105,111,110,32,121,40,41,123,115,61,78,97,78,44,118,46,112,111,105,110,116,61,95,44,110,46,108,105,110,101,83,116,97,114,116,40,41,125,102,117,110,99,116,105,111,110,32,95,40,114,44,105,41,123,118,97,114,32,111,61,106,117,40,91,114,44,105,93,41,44,97,61,116,40,114,44,105,41,59,101,40,115,44,108,44,102,44,104,44,100,44,112,44,115,61,97,91,48,93,44,108,61,97,91,49,93,44,102,61,114,44,104,61,111,91,48,93,44,100,61,111,91,49,93,44,112,61,111,91,50,93,44,86,115,44,110,41,44,110,46,112,111,105,110,116,40,115,44,108,41,125,102,117,110,99,116,105,111,110,32,98,40,41,123,118,46,112,111,105,110,116,61,103,44,110,46,108,105,110,101,69,110,100,40,41,125,102,117,110,99,116,105,111,110,32,109,40,41,123,121,40,41,44,118,46,112,111,105,110,116,61,120,44,118,46,108,105,110,101,69,110,100,61,119,125,102,117,110,99,116,105,111,110,32,120,40,116,44,110,41,123,95,40,114,61,116,44,110,41,44,105,61,115,44,111,61,108,44,97,61,104,44,117,61,100,44,99,61,112,44,118,46,112,111,105,110,116,61,95,125,102,117,110,99,116,105,111,110,32,119,40,41,123,101,40,115,44,108,44,102,44,104,44,100,44,112,44,105,44,111,44,114,44,97,44,117,44,99,44,86,115,44,110,41,44,118,46,108,105,110,101,69,110,100,61,98,44,98,40,41,125,114,101,116,117,114,110,32,118,125,125,40,116,44,110,41,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,66,115,40,123,112,111,105,110,116,58,102,117,110,99,116,105,111,110,40,110,44,101,41,123,110,61,116,40,110,44,101,41,44,116,104,105,115,46,115,116,114,101,97,109,46,112,111,105,110,116,40,110,91,48,93,44,110,91,49,93,41,125,125,41,125,40,116,41,125,118,97,114,32,87,115,61,66,115,40,123,112,111,105,110,116,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,116,104,105,115,46,115,116,114,101,97,109,46,112,111,105,110,116,40,116,42,99,117,44,110,42,99,117,41,125,125,41,59,102,117,110,99,116,105,111,110,32,90,115,40,116,44,110,44,101,44,114,44,105,44,111,41,123,118,97,114,32,97,61,104,117,40,111,41,44,117,61,121,117,40,111,41,44,99,61,97,42,116,44,102,61,117,42,116,44,115,61,97,47,116,44,108,61,117,47,116,44,104,61,40,117,42,101,45,97,42,110,41,47,116,44,100,61,40,117,42,110,43,97,42,101,41,47,116,59,102,117,110,99,116,105,111,110,32,112,40,116,44,111,41,123,114,101,116,117,114,110,91,99,42,40,116,42,61,114,41,45,102,42,40,111,42,61,105,41,43,110,44,101,45,102,42,116,45,99,42,111,93,125,114,101,116,117,114,110,32,112,46,105,110,118,101,114,116,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,91,114,42,40,115,42,116,45,108,42,110,43,104,41,44,105,42,40,100,45,108,42,116,45,115,42,110,41,93,125,44,112,125,102,117,110,99,116,105,111,110,32,81,115,40,116,41,123,114,101,116,117,114,110,32,75,115,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,125,41,40,41,125,102,117,110,99,116,105,111,110,32,75,115,40,116,41,123,118,97,114,32,110,44,101,44,114,44,105,44,111,44,97,44,117,44,99,44,102,44,115,44,108,61,49,53,48,44,104,61,52,56,48,44,100,61,50,53,48,44,112,61,48,44,118,61,48,44,103,61,48,44,121,61,48,44,95,61,48,44,98,61,48,44,109,61,49,44,120,61,49,44,119,61,110,117,108,108,44,77,61,100,102,44,78,61,110,117,108,108,44,84,61,89,102,44,65,61,46,53,59,102,117,110,99,116,105,111,110,32,83,40,116,41,123,114,101,116,117,114,110,32,99,40,116,91,48,93,42,99,117,44,116,91,49,93,42,99,117,41,125,102,117,110,99,116,105,111,110,32,107,40,116,41,123,114,101,116,117,114,110,40,116,61,99,46,105,110,118,101,114,116,40,116,91,48,93,44,116,91,49,93,41,41,38,38,91,116,91,48,93,42,117,117,44,116,91,49,93,42,117,117,93,125,102,117,110,99,116,105,111,110,32,69,40,41,123,118,97,114,32,116,61,90,115,40,108,44,48,44,48,44,109,44,120,44,98,41,46,97,112,112,108,121,40,110,117,108,108,44,110,40,112,44,118,41,41,44,114,61,40,98,63,90,115,58,102,117,110,99,116,105,111,110,40,116,44,110,44,101,44,114,44,105,41,123,102,117,110,99,116,105,111,110,32,111,40,111,44,97,41,123,114,101,116,117,114,110,91,110,43,116,42,40,111,42,61,114,41,44,101,45,116,42,40,97,42,61,105,41,93,125,114,101,116,117,114,110,32,111,46,105,110,118,101,114,116,61,102,117,110,99,116,105,111,110,40,111,44,97,41,123,114,101,116,117,114,110,91,40,111,45,110,41,47,116,42,114,44,40,101,45,97,41,47,116,42,105,93,125,44,111,125,41,40,108,44,104,45,116,91,48,93,44,100,45,116,91,49,93,44,109,44,120,44,98,41,59,114,101,116,117,114,110,32,101,61,36,99,40,103,44,121,44,95,41,44,117,61,86,99,40,110,44,114,41,44,99,61,86,99,40,101,44,117,41,44,97,61,36,115,40,117,44,65,41,44,67,40,41,125,102,117,110,99,116,105,111,110,32,67,40,41,123,114,101,116,117,114,110,32,102,61,115,61,110,117,108,108,44,83,125,114,101,116,117,114,110,32,83,46,115,116,114,101,97,109,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,102,38,38,115,61,61,61,116,63,102,58,102,61,87,115,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,66,115,40,123,112,111,105,110,116,58,102,117,110,99,116,105,111,110,40,110,44,101,41,123,118,97,114,32,114,61,116,40,110,44,101,41,59,114,101,116,117,114,110,32,116,104,105,115,46,115,116,114,101,97,109,46,112,111,105,110,116,40,114,91,48,93,44,114,91,49,93,41,125,125,41,125,40,101,41,40,77,40,97,40,84,40,115,61,116,41,41,41,41,41,125,44,83,46,112,114,101,99,108,105,112,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,77,61,116,44,119,61,118,111,105,100,32,48,44,67,40,41,41,58,77,125,44,83,46,112,111,115,116,99,108,105,112,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,84,61,116,44,78,61,114,61,105,61,111,61,110,117,108,108,44,67,40,41,41,58,84,125,44,83,46,99,108,105,112,65,110,103,108,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,77,61,43,116,63,112,102,40,119,61,116,42,99,117,41,58,40,119,61,110,117,108,108,44,100,102,41,44,67,40,41,41,58,119,42,117,117,125,44,83,46,99,108,105,112,69,120,116,101,110,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,84,61,110,117,108,108,61,61,116,63,40,78,61,114,61,105,61,111,61,110,117,108,108,44,89,102,41,58,121,102,40,78,61,43,116,91,48,93,91,48,93,44,114,61,43,116,91,48,93,91,49,93,44,105,61,43,116,91,49,93,91,48,93,44,111,61,43,116,91,49,93,91,49,93,41,44,67,40,41,41,58,110,117,108,108,61,61,78,63,110,117,108,108,58,91,91,78,44,114,93,44,91,105,44,111,93,93,125,44,83,46,115,99,97,108,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,108,61,43,116,44,69,40,41,41,58,108,125,44,83,46,116,114,97,110,115,108,97,116,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,104,61,43,116,91,48,93,44,100,61,43,116,91,49,93,44,69,40,41,41,58,91,104,44,100,93,125,44,83,46,99,101,110,116,101,114,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,112,61,116,91,48,93,37,51,54,48,42,99,117,44,118,61,116,91,49,93,37,51,54,48,42,99,117,44,69,40,41,41,58,91,112,42,117,117,44,118,42,117,117,93,125,44,83,46,114,111,116,97,116,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,103,61,116,91,48,93,37,51,54,48,42,99,117,44,121,61,116,91,49,93,37,51,54,48,42,99,117,44,95,61,116,46,108,101,110,103,116,104,62,50,63,116,91,50,93,37,51,54,48,42,99,117,58,48,44,69,40,41,41,58,91,103,42,117,117,44,121,42,117,117,44,95,42,117,117,93,125,44,83,46,97,110,103,108,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,98,61,116,37,51,54,48,42,99,117,44,69,40,41,41,58,98,42,117,117,125,44,83,46,114,101,102,108,101,99,116,88,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,109,61,116,63,45,49,58,49,44,69,40,41,41,58,109,60,48,125,44,83,46,114,101,102,108,101,99,116,89,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,120,61,116,63,45,49,58,49,44,69,40,41,41,58,120,60,48,125,44,83,46,112,114,101,99,105,115,105,111,110,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,97,61,36,115,40,117,44,65,61,116,42,116,41,44,67,40,41,41,58,98,117,40,65,41,125,44,83,46,102,105,116,69,120,116,101,110,116,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,73,115,40,83,44,116,44,110,41,125,44,83,46,102,105,116,83,105,122,101,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,72,115,40,83,44,116,44,110,41,125,44,83,46,102,105,116,87,105,100,116,104,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,106,115,40,83,44,116,44,110,41,125,44,83,46,102,105,116,72,101,105,103,104,116,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,88,115,40,83,44,116,44,110,41,125,44,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,110,61,116,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,44,83,46,105,110,118,101,114,116,61,110,46,105,110,118,101,114,116,38,38,107,44,69,40,41,125,125,102,117,110,99,116,105,111,110,32,74,115,40,116,41,123,118,97,114,32,110,61,48,44,101,61,114,117,47,51,44,114,61,75,115,40,116,41,44,105,61,114,40,110,44,101,41,59,114,101,116,117,114,110,32,105,46,112,97,114,97,108,108,101,108,115,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,114,40,110,61,116,91,48,93,42,99,117,44,101,61,116,91,49,93,42,99,117,41,58,91,110,42,117,117,44,101,42,117,117,93,125,44,105,125,102,117,110,99,116,105,111,110,32,116,108,40,116,44,110,41,123,118,97,114,32,101,61,121,117,40,116,41,44,114,61,40,101,43,121,117,40,110,41,41,47,50,59,105,102,40,102,117,40,114,41,60,110,117,41,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,104,117,40,116,41,59,102,117,110,99,116,105,111,110,32,101,40,116,44,101,41,123,114,101,116,117,114,110,91,116,42,110,44,121,117,40,101,41,47,110,93,125,114,101,116,117,114,110,32,101,46,105,110,118,101,114,116,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,91,116,47,110,44,119,117,40,101,42,110,41,93,125,44,101,125,40,116,41,59,118,97,114,32,105,61,49,43,101,42,40,50,42,114,45,101,41,44,111,61,98,117,40,105,41,47,114,59,102,117,110,99,116,105,111,110,32,97,40,116,44,110,41,123,118,97,114,32,101,61,98,117,40,105,45,50,42,114,42,121,117,40,110,41,41,47,114,59,114,101,116,117,114,110,91,101,42,121,117,40,116,42,61,114,41,44,111,45,101,42,104,117,40,116,41,93,125,114,101,116,117,114,110,32,97,46,105,110,118,101,114,116,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,61,111,45,110,44,97,61,108,117,40,116,44,102,117,40,101,41,41,42,95,117,40,101,41,59,114,101,116,117,114,110,32,101,42,114,60,48,38,38,40,97,45,61,114,117,42,95,117,40,116,41,42,95,117,40,101,41,41,44,91,97,47,114,44,119,117,40,40,105,45,40,116,42,116,43,101,42,101,41,42,114,42,114,41,47,40,50,42,114,41,41,93,125,44,97,125,102,117,110,99,116,105,111,110,32,110,108,40,41,123,114,101,116,117,114,110,32,74,115,40,116,108,41,46,115,99,97,108,101,40,49,53,53,46,52,50,52,41,46,99,101,110,116,101,114,40,91,48,44,51,51,46,54,52,52,50,93,41,125,102,117,110,99,116,105,111,110,32,101,108,40,41,123,114,101,116,117,114,110,32,110,108,40,41,46,112,97,114,97,108,108,101,108,115,40,91,50,57,46,53,44,52,53,46,53,93,41,46,115,99,97,108,101,40,49,48,55,48,41,46,116,114,97,110,115,108,97,116,101,40,91,52,56,48,44,50,53,48,93,41,46,114,111,116,97,116,101,40,91,57,54,44,48,93,41,46,99,101,110,116,101,114,40,91,45,46,54,44,51,56,46,55,93,41,125,102,117,110,99,116,105,111,110,32,114,108,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,110,44,101,41,123,118,97,114,32,114,61,104,117,40,110,41,44,105,61,104,117,40,101,41,44,111,61,116,40,114,42,105,41,59,114,101,116,117,114,110,91,111,42,105,42,121,117,40,110,41,44,111,42,121,117,40,101,41,93,125,125,102,117,110,99,116,105,111,110,32,105,108,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,110,44,101,41,123,118,97,114,32,114,61,98,117,40,110,42,110,43,101,42,101,41,44,105,61,116,40,114,41,44,111,61,121,117,40,105,41,44,97,61,104,117,40,105,41,59,114,101,116,117,114,110,91,108,117,40,110,42,111,44,114,42,97,41,44,119,117,40,114,38,38,101,42,111,47,114,41,93,125,125,118,97,114,32,111,108,61,114,108,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,98,117,40,50,47,40,49,43,116,41,41,125,41,59,111,108,46,105,110,118,101,114,116,61,105,108,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,50,42,119,117,40,116,47,50,41,125,41,59,118,97,114,32,97,108,61,114,108,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,40,116,61,120,117,40,116,41,41,38,38,116,47,121,117,40,116,41,125,41,59,102,117,110,99,116,105,111,110,32,117,108,40,116,44,110,41,123,114,101,116,117,114,110,91,116,44,118,117,40,109,117,40,40,105,117,43,110,41,47,50,41,41,93,125,102,117,110,99,116,105,111,110,32,99,108,40,116,41,123,118,97,114,32,110,44,101,44,114,44,105,61,81,115,40,116,41,44,111,61,105,46,99,101,110,116,101,114,44,97,61,105,46,115,99,97,108,101,44,117,61,105,46,116,114,97,110,115,108,97,116,101,44,99,61,105,46,99,108,105,112,69,120,116,101,110,116,44,102,61,110,117,108,108,59,102,117,110,99,116,105,111,110,32,115,40,41,123,118,97,114,32,111,61,114,117,42,97,40,41,44,117,61,105,40,75,99,40,105,46,114,111,116,97,116,101,40,41,41,46,105,110,118,101,114,116,40,91,48,44,48,93,41,41,59,114,101,116,117,114,110,32,99,40,110,117,108,108,61,61,102,63,91,91,117,91,48,93,45,111,44,117,91,49,93,45,111,93,44,91,117,91,48,93,43,111,44,117,91,49,93,43,111,93,93,58,116,61,61,61,117,108,63,91,91,77,97,116,104,46,109,97,120,40,117,91,48,93,45,111,44,102,41,44,110,93,44,91,77,97,116,104,46,109,105,110,40,117,91,48,93,43,111,44,101,41,44,114,93,93,58,91,91,102,44,77,97,116,104,46,109,97,120,40,117,91,49,93,45,111,44,110,41,93,44,91,101,44,77,97,116,104,46,109,105,110,40,117,91,49,93,43,111,44,114,41,93,93,41,125,114,101,116,117,114,110,32,105,46,115,99,97,108,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,97,40,116,41,44,115,40,41,41,58,97,40,41,125,44,105,46,116,114,97,110,115,108,97,116,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,117,40,116,41,44,115,40,41,41,58,117,40,41,125,44,105,46,99,101,110,116,101,114,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,111,40,116,41,44,115,40,41,41,58,111,40,41,125,44,105,46,99,108,105,112,69,120,116,101,110,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,110,117,108,108,61,61,116,63,102,61,110,61,101,61,114,61,110,117,108,108,58,40,102,61,43,116,91,48,93,91,48,93,44,110,61,43,116,91,48,93,91,49,93,44,101,61,43,116,91,49,93,91,48,93,44,114,61,43,116,91,49,93,91,49,93,41,44,115,40,41,41,58,110,117,108,108,61,61,102,63,110,117,108,108,58,91,91,102,44,110,93,44,91,101,44,114,93,93,125,44,115,40,41,125,102,117,110,99,116,105,111,110,32,102,108,40,116,41,123,114,101,116,117,114,110,32,109,117,40,40,105,117,43,116,41,47,50,41,125,102,117,110,99,116,105,111,110,32,115,108,40,116,44,110,41,123,118,97,114,32,101,61,104,117,40,116,41,44,114,61,116,61,61,61,110,63,121,117,40,116,41,58,118,117,40,101,47,104,117,40,110,41,41,47,118,117,40,102,108,40,110,41,47,102,108,40,116,41,41,44,105,61,101,42,103,117,40,102,108,40,116,41,44,114,41,47,114,59,105,102,40,33,114,41,114,101,116,117,114,110,32,117,108,59,102,117,110,99,116,105,111,110,32,111,40,116,44,110,41,123,105,62,48,63,110,60,45,105,117,43,110,117,38,38,40,110,61,45,105,117,43,110,117,41,58,110,62,105,117,45,110,117,38,38,40,110,61,105,117,45,110,117,41,59,118,97,114,32,101,61,105,47,103,117,40,102,108,40,110,41,44,114,41,59,114,101,116,117,114,110,91,101,42,121,117,40,114,42,116,41,44,105,45,101,42,104,117,40,114,42,116,41,93,125,114,101,116,117,114,110,32,111,46,105,110,118,101,114,116,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,61,105,45,110,44,111,61,95,117,40,114,41,42,98,117,40,116,42,116,43,101,42,101,41,44,97,61,108,117,40,116,44,102,117,40,101,41,41,42,95,117,40,101,41,59,114,101,116,117,114,110,32,101,42,114,60,48,38,38,40,97,45,61,114,117,42,95,117,40,116,41,42,95,117,40,101,41,41,44,91,97,47,114,44,50,42,115,117,40,103,117,40,105,47,111,44,49,47,114,41,41,45,105,117,93,125,44,111,125,102,117,110,99,116,105,111,110,32,108,108,40,116,44,110,41,123,114,101,116,117,114,110,91,116,44,110,93,125,102,117,110,99,116,105,111,110,32,104,108,40,116,44,110,41,123,118,97,114,32,101,61,104,117,40,116,41,44,114,61,116,61,61,61,110,63,121,117,40,116,41,58,40,101,45,104,117,40,110,41,41,47,40,110,45,116,41,44,105,61,101,47,114,43,116,59,105,102,40,102,117,40,114,41,60,110,117,41,114,101,116,117,114,110,32,108,108,59,102,117,110,99,116,105,111,110,32,111,40,116,44,110,41,123,118,97,114,32,101,61,105,45,110,44,111,61,114,42,116,59,114,101,116,117,114,110,91,101,42,121,117,40,111,41,44,105,45,101,42,104,117,40,111,41,93,125,114,101,116,117,114,110,32,111,46,105,110,118,101,114,116,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,61,105,45,110,44,111,61,108,117,40,116,44,102,117,40,101,41,41,42,95,117,40,101,41,59,114,101,116,117,114,110,32,101,42,114,60,48,38,38,40,111,45,61,114,117,42,95,117,40,116,41,42,95,117,40,101,41,41,44,91,111,47,114,44,105,45,95,117,40,114,41,42,98,117,40,116,42,116,43,101,42,101,41,93,125,44,111,125,97,108,46,105,110,118,101,114,116,61,105,108,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,125,41,44,117,108,46,105,110,118,101,114,116,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,91,116,44,50,42,115,117,40,112,117,40,110,41,41,45,105,117,93,125,44,108,108,46,105,110,118,101,114,116,61,108,108,59,118,97,114,32,100,108,61,49,46,51,52,48,50,54,52,44,112,108,61,45,46,48,56,49,49,48,54,44,118,108,61,56,57,51,101,45,54,44,103,108,61,46,48,48,51,55,57,54,44,121,108,61,98,117,40,51,41,47,50,59,102,117,110,99,116,105,111,110,32,95,108,40,116,44,110,41,123,118,97,114,32,101,61,119,117,40,121,108,42,121,117,40,110,41,41,44,114,61,101,42,101,44,105,61,114,42,114,42,114,59,114,101,116,117,114,110,91,116,42,104,117,40,101,41,47,40,121,108,42,40,100,108,43,51,42,112,108,42,114,43,105,42,40,55,42,118,108,43,57,42,103,108,42,114,41,41,41,44,101,42,40,100,108,43,112,108,42,114,43,105,42,40,118,108,43,103,108,42,114,41,41,93,125,102,117,110,99,116,105,111,110,32,98,108,40,116,44,110,41,123,118,97,114,32,101,61,104,117,40,110,41,44,114,61,104,117,40,116,41,42,101,59,114,101,116,117,114,110,91,101,42,121,117,40,116,41,47,114,44,121,117,40,110,41,47,114,93,125,102,117,110,99,116,105,111,110,32,109,108,40,116,44,110,41,123,118,97,114,32,101,61,110,42,110,44,114,61,101,42,101,59,114,101,116,117,114,110,91,116,42,40,46,56,55,48,55,45,46,49,51,49,57,55,57,42,101,43,114,42,40,114,42,40,46,48,48,51,57,55,49,42,101,45,46,48,48,49,53,50,57,42,114,41,45,46,48,49,51,55,57,49,41,41,44,110,42,40,49,46,48,48,55,50,50,54,43,101,42,40,46,48,49,53,48,56,53,43,114,42,40,46,48,50,56,56,55,52,42,101,45,46,48,52,52,52,55,53,45,46,48,48,53,57,49,54,42,114,41,41,41,93,125,102,117,110,99,116,105,111,110,32,120,108,40,116,44,110,41,123,114,101,116,117,114,110,91,104,117,40,110,41,42,121,117,40,116,41,44,121,117,40,110,41,93,125,102,117,110,99,116,105,111,110,32,119,108,40,116,44,110,41,123,118,97,114,32,101,61,104,117,40,110,41,44,114,61,49,43,104,117,40,116,41,42,101,59,114,101,116,117,114,110,91,101,42,121,117,40,116,41,47,114,44,121,117,40,110,41,47,114,93,125,102,117,110,99,116,105,111,110,32,77,108,40,116,44,110,41,123,114,101,116,117,114,110,91,118,117,40,109,117,40,40,105,117,43,110,41,47,50,41,41,44,45,116,93,125,102,117,110,99,116,105,111,110,32,78,108,40,116,44,110,41,123,114,101,116,117,114,110,32,116,46,112,97,114,101,110,116,61,61,61,110,46,112,97,114,101,110,116,63,49,58,50,125,102,117,110,99,116,105,111,110,32,84,108,40,116,44,110,41,123,114,101,116,117,114,110,32,116,43,110,46,120,125,102,117,110,99,116,105,111,110,32,65,108,40,116,44,110,41,123,114,101,116,117,114,110,32,77,97,116,104,46,109,97,120,40,116,44,110,46,121,41,125,102,117,110,99,116,105,111,110,32,83,108,40,116,41,123,118,97,114,32,110,61,48,44,101,61,116,46,99,104,105,108,100,114,101,110,44,114,61,101,38,38,101,46,108,101,110,103,116,104,59,105,102,40,114,41,102,111,114,40,59,45,45,114,62,61,48,59,41,110,43,61,101,91,114,93,46,118,97,108,117,101,59,101,108,115,101,32,110,61,49,59,116,46,118,97,108,117,101,61,110,125,102,117,110,99,116,105,111,110,32,107,108,40,116,44,110,41,123,118,97,114,32,101,44,114,44,105,44,111,44,97,44,117,61,110,101,119,32,122,108,40,116,41,44,99,61,43,116,46,118,97,108,117,101,38,38,40,117,46,118,97,108,117,101,61,116,46,118,97,108,117,101,41,44,102,61,91,117,93,59,102,111,114,40,110,117,108,108,61,61,110,38,38,40,110,61,69,108,41,59,101,61,102,46,112,111,112,40,41,59,41,105,102,40,99,38,38,40,101,46,118,97,108,117,101,61,43,101,46,100,97,116,97,46,118,97,108,117,101,41,44,40,105,61,110,40,101,46,100,97,116,97,41,41,38,38,40,97,61,105,46,108,101,110,103,116,104,41,41,102,111,114,40,101,46,99,104,105,108,100,114,101,110,61,110,101,119,32,65,114,114,97,121,40,97,41,44,111,61,97,45,49,59,111,62,61,48,59,45,45,111,41,102,46,112,117,115,104,40,114,61,101,46,99,104,105,108,100,114,101,110,91,111,93,61,110,101,119,32,122,108,40,105,91,111,93,41,41,44,114,46,112,97,114,101,110,116,61,101,44,114,46,100,101,112,116,104,61,101,46,100,101,112,116,104,43,49,59,114,101,116,117,114,110,32,117,46,101,97,99,104,66,101,102,111,114,101,40,80,108,41,125,102,117,110,99,116,105,111,110,32,69,108,40,116,41,123,114,101,116,117,114,110,32,116,46,99,104,105,108,100,114,101,110,125,102,117,110,99,116,105,111,110,32,67,108,40,116,41,123,116,46,100,97,116,97,61,116,46,100,97,116,97,46,100,97,116,97,125,102,117,110,99,116,105,111,110,32,80,108,40,116,41,123,118,97,114,32,110,61,48,59,100,111,123,116,46,104,101,105,103,104,116,61,110,125,119,104,105,108,101,40,40,116,61,116,46,112,97,114,101,110,116,41,38,38,116,46,104,101,105,103,104,116,60,43,43,110,41,125,102,117,110,99,116,105,111,110,32,122,108,40,116,41,123,116,104,105,115,46,100,97,116,97,61,116,44,116,104,105,115,46,100,101,112,116,104,61,116,104,105,115,46,104,101,105,103,104,116,61,48,44,116,104,105,115,46,112,97,114,101,110,116,61,110,117,108,108,125,95,108,46,105,110,118,101,114,116,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,102,111,114,40,118,97,114,32,101,44,114,61,110,44,105,61,114,42,114,44,111,61,105,42,105,42,105,44,97,61,48,59,97,60,49,50,38,38,40,111,61,40,105,61,40,114,45,61,101,61,40,114,42,40,100,108,43,112,108,42,105,43,111,42,40,118,108,43,103,108,42,105,41,41,45,110,41,47,40,100,108,43,51,42,112,108,42,105,43,111,42,40,55,42,118,108,43,57,42,103,108,42,105,41,41,41,42,114,41,42,105,42,105,44,33,40,102,117,40,101,41,60,101,117,41,41,59,43,43,97,41,59,114,101,116,117,114,110,91,121,108,42,116,42,40,100,108,43,51,42,112,108,42,105,43,111,42,40,55,42,118,108,43,57,42,103,108,42,105,41,41,47,104,117,40,114,41,44,119,117,40,121,117,40,114,41,47,121,108,41,93,125,44,98,108,46,105,110,118,101,114,116,61,105,108,40,115,117,41,44,109,108,46,105,110,118,101,114,116,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,44,114,61,110,44,105,61,50,53,59,100,111,123,118,97,114,32,111,61,114,42,114,44,97,61,111,42,111,59,114,45,61,101,61,40,114,42,40,49,46,48,48,55,50,50,54,43,111,42,40,46,48,49,53,48,56,53,43,97,42,40,46,48,50,56,56,55,52,42,111,45,46,48,52,52,52,55,53,45,46,48,48,53,57,49,54,42,97,41,41,41,45,110,41,47,40,49,46,48,48,55,50,50,54,43,111,42,40,46,48,52,53,50,53,53,43,97,42,40,46,50,53,57,56,54,54,42,111,45,46,51,49,49,51,50,53,45,46,48,48,53,57,49,54,42,49,49,42,97,41,41,41,125,119,104,105,108,101,40,102,117,40,101,41,62,110,117,38,38,45,45,105,62,48,41,59,114,101,116,117,114,110,91,116,47,40,46,56,55,48,55,43,40,111,61,114,42,114,41,42,40,111,42,40,111,42,111,42,111,42,40,46,48,48,51,57,55,49,45,46,48,48,49,53,50,57,42,111,41,45,46,48,49,51,55,57,49,41,45,46,49,51,49,57,55,57,41,41,44,114,93,125,44,120,108,46,105,110,118,101,114,116,61,105,108,40,119,117,41,44,119,108,46,105,110,118,101,114,116,61,105,108,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,50,42,115,117,40,116,41,125,41,44,77,108,46,105,110,118,101,114,116,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,91,45,110,44,50,42,115,117,40,112,117,40,116,41,41,45,105,117,93,125,44,122,108,46,112,114,111,116,111,116,121,112,101,61,107,108,46,112,114,111,116,111,116,121,112,101,61,123,99,111,110,115,116,114,117,99,116,111,114,58,122,108,44,99,111,117,110,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,65,102,116,101,114,40,83,108,41,125,44,101,97,99,104,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,44,101,44,114,44,105,44,111,61,116,104,105,115,44,97,61,91,111,93,59,100,111,123,102,111,114,40,110,61,97,46,114,101,118,101,114,115,101,40,41,44,97,61,91,93,59,111,61,110,46,112,111,112,40,41,59,41,105,102,40,116,40,111,41,44,101,61,111,46,99,104,105,108,100,114,101,110,41,102,111,114,40,114,61,48,44,105,61,101,46,108,101,110,103,116,104,59,114,60,105,59,43,43,114,41,97,46,112,117,115,104,40,101,91,114,93,41,125,119,104,105,108,101,40,97,46,108,101,110,103,116,104,41,59,114,101,116,117,114,110,32,116,104,105,115,125,44,101,97,99,104,65,102,116,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,102,111,114,40,118,97,114,32,110,44,101,44,114,44,105,61,116,104,105,115,44,111,61,91,105,93,44,97,61,91,93,59,105,61,111,46,112,111,112,40,41,59,41,105,102,40,97,46,112,117,115,104,40,105,41,44,110,61,105,46,99,104,105,108,100,114,101,110,41,102,111,114,40,101,61,48,44,114,61,110,46,108,101,110,103,116,104,59,101,60,114,59,43,43,101,41,111,46,112,117,115,104,40,110,91,101,93,41,59,102,111,114,40,59,105,61,97,46,112,111,112,40,41,59,41,116,40,105,41,59,114,101,116,117,114,110,32,116,104,105,115,125,44,101,97,99,104,66,101,102,111,114,101,58,102,117,110,99,116,105,111,110,40,116,41,123,102,111,114,40,118,97,114,32,110,44,101,44,114,61,116,104,105,115,44,105,61,91,114,93,59,114,61,105,46,112,111,112,40,41,59,41,105,102,40,116,40,114,41,44,110,61,114,46,99,104,105,108,100,114,101,110,41,102,111,114,40,101,61,110,46,108,101,110,103,116,104,45,49,59,101,62,61,48,59,45,45,101,41,105,46,112,117,115,104,40,110,91,101,93,41,59,114,101,116,117,114,110,32,116,104,105,115,125,44,115,117,109,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,65,102,116,101,114,40,102,117,110,99,116,105,111,110,40,110,41,123,102,111,114,40,118,97,114,32,101,61,43,116,40,110,46,100,97,116,97,41,124,124,48,44,114,61,110,46,99,104,105,108,100,114,101,110,44,105,61,114,38,38,114,46,108,101,110,103,116,104,59,45,45,105,62,61,48,59,41,101,43,61,114,91,105,93,46,118,97,108,117,101,59,110,46,118,97,108,117,101,61,101,125,41,125,44,115,111,114,116,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,66,101,102,111,114,101,40,102,117,110,99,116,105,111,110,40,110,41,123,110,46,99,104,105,108,100,114,101,110,38,38,110,46,99,104,105,108,100,114,101,110,46,115,111,114,116,40,116,41,125,41,125,44,112,97,116,104,58,102,117,110,99,116,105,111,110,40,116,41,123,102,111,114,40,118,97,114,32,110,61,116,104,105,115,44,101,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,105,102,40,116,61,61,61,110,41,114,101,116,117,114,110,32,116,59,118,97,114,32,101,61,116,46,97,110,99,101,115,116,111,114,115,40,41,44,114,61,110,46,97,110,99,101,115,116,111,114,115,40,41,44,105,61,110,117,108,108,59,102,111,114,40,116,61,101,46,112,111,112,40,41,44,110,61,114,46,112,111,112,40,41,59,116,61,61,61,110,59,41,105,61,116,44,116,61,101,46,112,111,112,40,41,44,110,61,114,46,112,111,112,40,41,59,114,101,116,117,114,110,32,105,125,40,110,44,116,41,44,114,61,91,110,93,59,110,33,61,61,101,59,41,110,61,110,46,112,97,114,101,110,116,44,114,46,112,117,115,104,40,110,41,59,102,111,114,40,118,97,114,32,105,61,114,46,108,101,110,103,116,104,59,116,33,61,61,101,59,41,114,46,115,112,108,105,99,101,40,105,44,48,44,116,41,44,116,61,116,46,112,97,114,101,110,116,59,114,101,116,117,114,110,32,114,125,44,97,110,99,101,115,116,111,114,115,58,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,118,97,114,32,116,61,116,104,105,115,44,110,61,91,116,93,59,116,61,116,46,112,97,114,101,110,116,59,41,110,46,112,117,115,104,40,116,41,59,114,101,116,117,114,110,32,110,125,44,100,101,115,99,101,110,100,97,110,116,115,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,91,93,59,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,110,41,123,116,46,112,117,115,104,40,110,41,125,41,44,116,125,44,108,101,97,118,101,115,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,91,93,59,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,66,101,102,111,114,101,40,102,117,110,99,116,105,111,110,40,110,41,123,110,46,99,104,105,108,100,114,101,110,124,124,116,46,112,117,115,104,40,110,41,125,41,44,116,125,44,108,105,110,107,115,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,44,110,61,91,93,59,114,101,116,117,114,110,32,116,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,101,41,123,101,33,61,61,116,38,38,110,46,112,117,115,104,40,123,115,111,117,114,99,101,58,101,46,112,97,114,101,110,116,44,116,97,114,103,101,116,58,101,125,41,125,41,44,110,125,44,99,111,112,121,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,107,108,40,116,104,105,115,41,46,101,97,99,104,66,101,102,111,114,101,40,67,108,41,125,125,59,118,97,114,32,82,108,61,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,115,108,105,99,101,59,102,117,110,99,116,105,111,110,32,68,108,40,116,41,123,102,111,114,40,118,97,114,32,110,44,101,44,114,61,48,44,105,61,40,116,61,102,117,110,99,116,105,111,110,40,116,41,123,102,111,114,40,118,97,114,32,110,44,101,44,114,61,116,46,108,101,110,103,116,104,59,114,59,41,101,61,77,97,116,104,46,114,97,110,100,111,109,40,41,42,114,45,45,124,48,44,110,61,116,91,114,93,44,116,91,114,93,61,116,91,101,93,44,116,91,101,93,61,110,59,114,101,116,117,114,110,32,116,125,40,82,108,46,99,97,108,108,40,116,41,41,41,46,108,101,110,103,116,104,44,111,61,91,93,59,114,60,105,59,41,110,61,116,91,114,93,44,101,38,38,85,108,40,101,44,110,41,63,43,43,114,58,40,101,61,66,108,40,111,61,113,108,40,111,44,110,41,41,44,114,61,48,41,59,114,101,116,117,114,110,32,101,125,102,117,110,99,116,105,111,110,32,113,108,40,116,44,110,41,123,118,97,114,32,101,44,114,59,105,102,40,79,108,40,110,44,116,41,41,114,101,116,117,114,110,91,110,93,59,102,111,114,40,101,61,48,59,101,60,116,46,108,101,110,103,116,104,59,43,43,101,41,105,102,40,76,108,40,110,44,116,91,101,93,41,38,38,79,108,40,70,108,40,116,91,101,93,44,110,41,44,116,41,41,114,101,116,117,114,110,91,116,91,101,93,44,110,93,59,102,111,114,40,101,61,48,59,101,60,116,46,108,101,110,103,116,104,45,49,59,43,43,101,41,102,111,114,40,114,61,101,43,49,59,114,60,116,46,108,101,110,103,116,104,59,43,43,114,41,105,102,40,76,108,40,70,108,40,116,91,101,93,44,116,91,114,93,41,44,110,41,38,38,76,108,40,70,108,40,116,91,101,93,44,110,41,44,116,91,114,93,41,38,38,76,108,40,70,108,40,116,91,114,93,44,110,41,44,116,91,101,93,41,38,38,79,108,40,89,108,40,116,91,101,93,44,116,91,114,93,44,110,41,44,116,41,41,114,101,116,117,114,110,91,116,91,101,93,44,116,91,114,93,44,110,93,59,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,125,102,117,110,99,116,105,111,110,32,76,108,40,116,44,110,41,123,118,97,114,32,101,61,116,46,114,45,110,46,114,44,114,61,110,46,120,45,116,46,120,44,105,61,110,46,121,45,116,46,121,59,114,101,116,117,114,110,32,101,60,48,124,124,101,42,101,60,114,42,114,43,105,42,105,125,102,117,110,99,116,105,111,110,32,85,108,40,116,44,110,41,123,118,97,114,32,101,61,116,46,114,45,110,46,114,43,49,101,45,54,44,114,61,110,46,120,45,116,46,120,44,105,61,110,46,121,45,116,46,121,59,114,101,116,117,114,110,32,101,62,48,38,38,101,42,101,62,114,42,114,43,105,42,105,125,102,117,110,99,116,105,111,110,32,79,108,40,116,44,110,41,123,102,111,114,40,118,97,114,32,101,61,48,59,101,60,110,46,108,101,110,103,116,104,59,43,43,101,41,105,102,40,33,85,108,40,116,44,110,91,101,93,41,41,114,101,116,117,114,110,33,49,59,114,101,116,117,114,110,33,48,125,102,117,110,99,116,105,111,110,32,66,108,40,116,41,123,115,119,105,116,99,104,40,116,46,108,101,110,103,116,104,41,123,99,97,115,101,32,49,58,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,123,120,58,116,46,120,44,121,58,116,46,121,44,114,58,116,46,114,125,125,40,116,91,48,93,41,59,99,97,115,101,32,50,58,114,101,116,117,114,110,32,70,108,40,116,91,48,93,44,116,91,49,93,41,59,99,97,115,101,32,51,58,114,101,116,117,114,110,32,89,108,40,116,91,48,93,44,116,91,49,93,44,116,91,50,93,41,125,125,102,117,110,99,116,105,111,110,32,70,108,40,116,44,110,41,123,118,97,114,32,101,61,116,46,120,44,114,61,116,46,121,44,105,61,116,46,114,44,111,61,110,46,120,44,97,61,110,46,121,44,117,61,110,46,114,44,99,61,111,45,101,44,102,61,97,45,114,44,115,61,117,45,105,44,108,61,77,97,116,104,46,115,113,114,116,40,99,42,99,43,102,42,102,41,59,114,101,116,117,114,110,123,120,58,40,101,43,111,43,99,47,108,42,115,41,47,50,44,121,58,40,114,43,97,43,102,47,108,42,115,41,47,50,44,114,58,40,108,43,105,43,117,41,47,50,125,125,102,117,110,99,116,105,111,110,32,89,108,40,116,44,110,44,101,41,123,118,97,114,32,114,61,116,46,120,44,105,61,116,46,121,44,111,61,116,46,114,44,97,61,110,46,120,44,117,61,110,46,121,44,99,61,110,46,114,44,102,61,101,46,120,44,115,61,101,46,121,44,108,61,101,46,114,44,104,61,114,45,97,44,100,61,114,45,102,44,112,61,105,45,117,44,118,61,105,45,115,44,103,61,99,45,111,44,121,61,108,45,111,44,95,61,114,42,114,43,105,42,105,45,111,42,111,44,98,61,95,45,97,42,97,45,117,42,117,43,99,42,99,44,109,61,95,45,102,42,102,45,115,42,115,43,108,42,108,44,120,61,100,42,112,45,104,42,118,44,119,61,40,112,42,109,45,118,42,98,41,47,40,50,42,120,41,45,114,44,77,61,40,118,42,103,45,112,42,121,41,47,120,44,78,61,40,100,42,98,45,104,42,109,41,47,40,50,42,120,41,45,105,44,84,61,40,104,42,121,45,100,42,103,41,47,120,44,65,61,77,42,77,43,84,42,84,45,49,44,83,61,50,42,40,111,43,119,42,77,43,78,42,84,41,44,107,61,119,42,119,43,78,42,78,45,111,42,111,44,69,61,45,40,65,63,40,83,43,77,97,116,104,46,115,113,114,116,40,83,42,83,45,52,42,65,42,107,41,41,47,40,50,42,65,41,58,107,47,83,41,59,114,101,116,117,114,110,123,120,58,114,43,119,43,77,42,69,44,121,58,105,43,78,43,84,42,69,44,114,58,69,125,125,102,117,110,99,116,105,111,110,32,73,108,40,116,44,110,44,101,41,123,118,97,114,32,114,44,105,44,111,44,97,44,117,61,116,46,120,45,110,46,120,44,99,61,116,46,121,45,110,46,121,44,102,61,117,42,117,43,99,42,99,59,102,63,40,105,61,110,46,114,43,101,46,114,44,105,42,61,105,44,97,61,116,46,114,43,101,46,114,44,105,62,40,97,42,61,97,41,63,40,114,61,40,102,43,97,45,105,41,47,40,50,42,102,41,44,111,61,77,97,116,104,46,115,113,114,116,40,77,97,116,104,46,109,97,120,40,48,44,97,47,102,45,114,42,114,41,41,44,101,46,120,61,116,46,120,45,114,42,117,45,111,42,99,44,101,46,121,61,116,46,121,45,114,42,99,43,111,42,117,41,58,40,114,61,40,102,43,105,45,97,41,47,40,50,42,102,41,44,111,61,77,97,116,104,46,115,113,114,116,40,77,97,116,104,46,109,97,120,40,48,44,105,47,102,45,114,42,114,41,41,44,101,46,120,61,110,46,120,43,114,42,117,45,111,42,99,44,101,46,121,61,110,46,121,43,114,42,99,43,111,42,117,41,41,58,40,101,46,120,61,110,46,120,43,101,46,114,44,101,46,121,61,110,46,121,41,125,102,117,110,99,116,105,111,110,32,72,108,40,116,44,110,41,123,118,97,114,32,101,61,116,46,114,43,110,46,114,45,49,101,45,54,44,114,61,110,46,120,45,116,46,120,44,105,61,110,46,121,45,116,46,121,59,114,101,116,117,114,110,32,101,62,48,38,38,101,42,101,62,114,42,114,43,105,42,105,125,102,117,110,99,116,105,111,110,32,106,108,40,116,41,123,118,97,114,32,110,61,116,46,95,44,101,61,116,46,110,101,120,116,46,95,44,114,61,110,46,114,43,101,46,114,44,105,61,40,110,46,120,42,101,46,114,43,101,46,120,42,110,46,114,41,47,114,44,111,61,40,110,46,121,42,101,46,114,43,101,46,121,42,110,46,114,41,47,114,59,114,101,116,117,114,110,32,105,42,105,43,111,42,111,125,102,117,110,99,116,105,111,110,32,88,108,40,116,41,123,116,104,105,115,46,95,61,116,44,116,104,105,115,46,110,101,120,116,61,110,117,108,108,44,116,104,105,115,46,112,114,101,118,105,111,117,115,61,110,117,108,108,125,102,117,110,99,116,105,111,110,32,86,108,40,116,41,123,105,102,40,33,40,105,61,116,46,108,101,110,103,116,104,41,41,114,101,116,117,114,110,32,48,59,118,97,114,32,110,44,101,44,114,44,105,44,111,44,97,44,117,44,99,44,102,44,115,44,108,59,105,102,40,40,110,61,116,91,48,93,41,46,120,61,48,44,110,46,121,61,48,44,33,40,105,62,49,41,41,114,101,116,117,114,110,32,110,46,114,59,105,102,40,101,61,116,91,49,93,44,110,46,120,61,45,101,46,114,44,101,46,120,61,110,46,114,44,101,46,121,61,48,44,33,40,105,62,50,41,41,114,101,116,117,114,110,32,110,46,114,43,101,46,114,59,73,108,40,101,44,110,44,114,61,116,91,50,93,41,44,110,61,110,101,119,32,88,108,40,110,41,44,101,61,110,101,119,32,88,108,40,101,41,44,114,61,110,101,119,32,88,108,40,114,41,44,110,46,110,101,120,116,61,114,46,112,114,101,118,105,111,117,115,61,101,44,101,46,110,101,120,116,61,110,46,112,114,101,118,105,111,117,115,61,114,44,114,46,110,101,120,116,61,101,46,112,114,101,118,105,111,117,115,61,110,59,116,58,102,111,114,40,117,61,51,59,117,60,105,59,43,43,117,41,123,73,108,40,110,46,95,44,101,46,95,44,114,61,116,91,117,93,41,44,114,61,110,101,119,32,88,108,40,114,41,44,99,61,101,46,110,101,120,116,44,102,61,110,46,112,114,101,118,105,111,117,115,44,115,61,101,46,95,46,114,44,108,61,110,46,95,46,114,59,100,111,123,105,102,40,115,60,61,108,41,123,105,102,40,72,108,40,99,46,95,44,114,46,95,41,41,123,101,61,99,44,110,46,110,101,120,116,61,101,44,101,46,112,114,101,118,105,111,117,115,61,110,44,45,45,117,59,99,111,110,116,105,110,117,101,32,116,125,115,43,61,99,46,95,46,114,44,99,61,99,46,110,101,120,116,125,101,108,115,101,123,105,102,40,72,108,40,102,46,95,44,114,46,95,41,41,123,40,110,61,102,41,46,110,101,120,116,61,101,44,101,46,112,114,101,118,105,111,117,115,61,110,44,45,45,117,59,99,111,110,116,105,110,117,101,32,116,125,108,43,61,102,46,95,46,114,44,102,61,102,46,112,114,101,118,105,111,117,115,125,125,119,104,105,108,101,40,99,33,61,61,102,46,110,101,120,116,41,59,102,111,114,40,114,46,112,114,101,118,105,111,117,115,61,110,44,114,46,110,101,120,116,61,101,44,110,46,110,101,120,116,61,101,46,112,114,101,118,105,111,117,115,61,101,61,114,44,111,61,106,108,40,110,41,59,40,114,61,114,46,110,101,120,116,41,33,61,61,101,59,41,40,97,61,106,108,40,114,41,41,60,111,38,38,40,110,61,114,44,111,61,97,41,59,101,61,110,46,110,101,120,116,125,102,111,114,40,110,61,91,101,46,95,93,44,114,61,101,59,40,114,61,114,46,110,101,120,116,41,33,61,61,101,59,41,110,46,112,117,115,104,40,114,46,95,41,59,102,111,114,40,114,61,68,108,40,110,41,44,117,61,48,59,117,60,105,59,43,43,117,41,40,110,61,116,91,117,93,41,46,120,45,61,114,46,120,44,110,46,121,45,61,114,46,121,59,114,101,116,117,114,110,32,114,46,114,125,102,117,110,99,116,105,111,110,32,71,108,40,116,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,116,63,110,117,108,108,58,36,108,40,116,41,125,102,117,110,99,116,105,111,110,32,36,108,40,116,41,123,105,102,40,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,116,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,59,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,87,108,40,41,123,114,101,116,117,114,110,32,48,125,102,117,110,99,116,105,111,110,32,90,108,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,125,125,102,117,110,99,116,105,111,110,32,81,108,40,116,41,123,114,101,116,117,114,110,32,77,97,116,104,46,115,113,114,116,40,116,46,118,97,108,117,101,41,125,102,117,110,99,116,105,111,110,32,75,108,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,110,41,123,110,46,99,104,105,108,100,114,101,110,124,124,40,110,46,114,61,77,97,116,104,46,109,97,120,40,48,44,43,116,40,110,41,124,124,48,41,41,125,125,102,117,110,99,116,105,111,110,32,74,108,40,116,44,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,101,41,123,105,102,40,114,61,101,46,99,104,105,108,100,114,101,110,41,123,118,97,114,32,114,44,105,44,111,44,97,61,114,46,108,101,110,103,116,104,44,117,61,116,40,101,41,42,110,124,124,48,59,105,102,40,117,41,102,111,114,40,105,61,48,59,105,60,97,59,43,43,105,41,114,91,105,93,46,114,43,61,117,59,105,102,40,111,61,86,108,40,114,41,44,117,41,102,111,114,40,105,61,48,59,105,60,97,59,43,43,105,41,114,91,105,93,46,114,45,61,117,59,101,46,114,61,111,43,117,125,125,125,102,117,110,99,116,105,111,110,32,116,104,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,101,61,110,46,112,97,114,101,110,116,59,110,46,114,42,61,116,44,101,38,38,40,110,46,120,61,101,46,120,43,116,42,110,46,120,44,110,46,121,61,101,46,121,43,116,42,110,46,121,41,125,125,102,117,110,99,116,105,111,110,32,110,104,40,116,41,123,116,46,120,48,61,77,97,116,104,46,114,111,117,110,100,40,116,46,120,48,41,44,116,46,121,48,61,77,97,116,104,46,114,111,117,110,100,40,116,46,121,48,41,44,116,46,120,49,61,77,97,116,104,46,114,111,117,110,100,40,116,46,120,49,41,44,116,46,121,49,61,77,97,116,104,46,114,111,117,110,100,40,116,46,121,49,41,125,102,117,110,99,116,105,111,110,32,101,104,40,116,44,110,44,101,44,114,44,105,41,123,102,111,114,40,118,97,114,32,111,44,97,61,116,46,99,104,105,108,100,114,101,110,44,117,61,45,49,44,99,61,97,46,108,101,110,103,116,104,44,102,61,116,46,118,97,108,117,101,38,38,40,114,45,110,41,47,116,46,118,97,108,117,101,59,43,43,117,60,99,59,41,40,111,61,97,91,117,93,41,46,121,48,61,101,44,111,46,121,49,61,105,44,111,46,120,48,61,110,44,111,46,120,49,61,110,43,61,111,46,118,97,108,117,101,42,102,125,118,97,114,32,114,104,61,34,36,34,44,105,104,61,123,100,101,112,116,104,58,45,49,125,44,111,104,61,123,125,59,102,117,110,99,116,105,111,110,32,97,104,40,116,41,123,114,101,116,117,114,110,32,116,46,105,100,125,102,117,110,99,116,105,111,110,32,117,104,40,116,41,123,114,101,116,117,114,110,32,116,46,112,97,114,101,110,116,73,100,125,102,117,110,99,116,105,111,110,32,99,104,40,116,44,110,41,123,114,101,116,117,114,110,32,116,46,112,97,114,101,110,116,61,61,61,110,46,112,97,114,101,110,116,63,49,58,50,125,102,117,110,99,116,105,111,110,32,102,104,40,116,41,123,118,97,114,32,110,61,116,46,99,104,105,108,100,114,101,110,59,114,101,116,117,114,110,32,110,63,110,91,48,93,58,116,46,116,125,102,117,110,99,116,105,111,110,32,115,104,40,116,41,123,118,97,114,32,110,61,116,46,99,104,105,108,100,114,101,110,59,114,101,116,117,114,110,32,110,63,110,91,110,46,108,101,110,103,116,104,45,49,93,58,116,46,116,125,102,117,110,99,116,105,111,110,32,108,104,40,116,44,110,44,101,41,123,118,97,114,32,114,61,101,47,40,110,46,105,45,116,46,105,41,59,110,46,99,45,61,114,44,110,46,115,43,61,101,44,116,46,99,43,61,114,44,110,46,122,43,61,101,44,110,46,109,43,61,101,125,102,117,110,99,116,105,111,110,32,104,104,40,116,44,110,44,101,41,123,114,101,116,117,114,110,32,116,46,97,46,112,97,114,101,110,116,61,61,61,110,46,112,97,114,101,110,116,63,116,46,97,58,101,125,102,117,110,99,116,105,111,110,32,100,104,40,116,44,110,41,123,116,104,105,115,46,95,61,116,44,116,104,105,115,46,112,97,114,101,110,116,61,110,117,108,108,44,116,104,105,115,46,99,104,105,108,100,114,101,110,61,110,117,108,108,44,116,104,105,115,46,65,61,110,117,108,108,44,116,104,105,115,46,97,61,116,104,105,115,44,116,104,105,115,46,122,61,48,44,116,104,105,115,46,109,61,48,44,116,104,105,115,46,99,61,48,44,116,104,105,115,46,115,61,48,44,116,104,105,115,46,116,61,110,117,108,108,44,116,104,105,115,46,105,61,110,125,102,117,110,99,116,105,111,110,32,112,104,40,116,44,110,44,101,44,114,44,105,41,123,102,111,114,40,118,97,114,32,111,44,97,61,116,46,99,104,105,108,100,114,101,110,44,117,61,45,49,44,99,61,97,46,108,101,110,103,116,104,44,102,61,116,46,118,97,108,117,101,38,38,40,105,45,101,41,47,116,46,118,97,108,117,101,59,43,43,117,60,99,59,41,40,111,61,97,91,117,93,41,46,120,48,61,110,44,111,46,120,49,61,114,44,111,46,121,48,61,101,44,111,46,121,49,61,101,43,61,111,46,118,97,108,117,101,42,102,125,100,104,46,112,114,111,116,111,116,121,112,101,61,79,98,106,101,99,116,46,99,114,101,97,116,101,40,122,108,46,112,114,111,116,111,116,121,112,101,41,59,118,97,114,32,118,104,61,40,49,43,77,97,116,104,46,115,113,114,116,40,53,41,41,47,50,59,102,117,110,99,116,105,111,110,32,103,104,40,116,44,110,44,101,44,114,44,105,44,111,41,123,102,111,114,40,118,97,114,32,97,44,117,44,99,44,102,44,115,44,108,44,104,44,100,44,112,44,118,44,103,44,121,61,91,93,44,95,61,110,46,99,104,105,108,100,114,101,110,44,98,61,48,44,109,61,48,44,120,61,95,46,108,101,110,103,116,104,44,119,61,110,46,118,97,108,117,101,59,98,60,120,59,41,123,99,61,105,45,101,44,102,61,111,45,114,59,100,111,123,115,61,95,91,109,43,43,93,46,118,97,108,117,101,125,119,104,105,108,101,40,33,115,38,38,109,60,120,41,59,102,111,114,40,108,61,104,61,115,44,103,61,115,42,115,42,40,118,61,77,97,116,104,46,109,97,120,40,102,47,99,44,99,47,102,41,47,40,119,42,116,41,41,44,112,61,77,97,116,104,46,109,97,120,40,104,47,103,44,103,47,108,41,59,109,60,120,59,43,43,109,41,123,105,102,40,115,43,61,117,61,95,91,109,93,46,118,97,108,117,101,44,117,60,108,38,38,40,108,61,117,41,44,117,62,104,38,38,40,104,61,117,41,44,103,61,115,42,115,42,118,44,40,100,61,77,97,116,104,46,109,97,120,40,104,47,103,44,103,47,108,41,41,62,112,41,123,115,45,61,117,59,98,114,101,97,107,125,112,61,100,125,121,46,112,117,115,104,40,97,61,123,118,97,108,117,101,58,115,44,100,105,99,101,58,99,60,102,44,99,104,105,108,100,114,101,110,58,95,46,115,108,105,99,101,40,98,44,109,41,125,41,44,97,46,100,105,99,101,63,101,104,40,97,44,101,44,114,44,105,44,119,63,114,43,61,102,42,115,47,119,58,111,41,58,112,104,40,97,44,101,44,114,44,119,63,101,43,61,99,42,115,47,119,58,105,44,111,41,44,119,45,61,115,44,98,61,109,125,114,101,116,117,114,110,32,121,125,118,97,114,32,121,104,61,102,117,110,99,116,105,111,110,32,116,40,110,41,123,102,117,110,99,116,105,111,110,32,101,40,116,44,101,44,114,44,105,44,111,41,123,103,104,40,110,44,116,44,101,44,114,44,105,44,111,41,125,114,101,116,117,114,110,32,101,46,114,97,116,105,111,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,40,40,110,61,43,110,41,62,49,63,110,58,49,41,125,44,101,125,40,118,104,41,59,118,97,114,32,95,104,61,102,117,110,99,116,105,111,110,32,116,40,110,41,123,102,117,110,99,116,105,111,110,32,101,40,116,44,101,44,114,44,105,44,111,41,123,105,102,40,40,97,61,116,46,95,115,113,117,97,114,105,102,121,41,38,38,97,46,114,97,116,105,111,61,61,61,110,41,102,111,114,40,118,97,114,32,97,44,117,44,99,44,102,44,115,44,108,61,45,49,44,104,61,97,46,108,101,110,103,116,104,44,100,61,116,46,118,97,108,117,101,59,43,43,108,60,104,59,41,123,102,111,114,40,99,61,40,117,61,97,91,108,93,41,46,99,104,105,108,100,114,101,110,44,102,61,117,46,118,97,108,117,101,61,48,44,115,61,99,46,108,101,110,103,116,104,59,102,60,115,59,43,43,102,41,117,46,118,97,108,117,101,43,61,99,91,102,93,46,118,97,108,117,101,59,117,46,100,105,99,101,63,101,104,40,117,44,101,44,114,44,105,44,114,43,61,40,111,45,114,41,42,117,46,118,97,108,117,101,47,100,41,58,112,104,40,117,44,101,44,114,44,101,43,61,40,105,45,101,41,42,117,46,118,97,108,117,101,47,100,44,111,41,44,100,45,61,117,46,118,97,108,117,101,125,101,108,115,101,32,116,46,95,115,113,117,97,114,105,102,121,61,97,61,103,104,40,110,44,116,44,101,44,114,44,105,44,111,41,44,97,46,114,97,116,105,111,61,110,125,114,101,116,117,114,110,32,101,46,114,97,116,105,111,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,40,40,110,61,43,110,41,62,49,63,110,58,49,41,125,44,101,125,40,118,104,41,59,102,117,110,99,116,105,111,110,32,98,104,40,116,44,110,44,101,41,123,114,101,116,117,114,110,40,110,91,48,93,45,116,91,48,93,41,42,40,101,91,49,93,45,116,91,49,93,41,45,40,110,91,49,93,45,116,91,49,93,41,42,40,101,91,48,93,45,116,91,48,93,41,125,102,117,110,99,116,105,111,110,32,109,104,40,116,44,110,41,123,114,101,116,117,114,110,32,116,91,48,93,45,110,91,48,93,124,124,116,91,49,93,45,110,91,49,93,125,102,117,110,99,116,105,111,110,32,120,104,40,116,41,123,102,111,114,40,118,97,114,32,110,61,116,46,108,101,110,103,116,104,44,101,61,91,48,44,49,93,44,114,61,50,44,105,61,50,59,105,60,110,59,43,43,105,41,123,102,111,114,40,59,114,62,49,38,38,98,104,40,116,91,101,91,114,45,50,93,93,44,116,91,101,91,114,45,49,93,93,44,116,91,105,93,41,60,61,48,59,41,45,45,114,59,101,91,114,43,43,93,61,105,125,114,101,116,117,114,110,32,101,46,115,108,105,99,101,40,48,44,114,41,125,102,117,110,99,116,105,111,110,32,119,104,40,41,123,114,101,116,117,114,110,32,77,97,116,104,46,114,97,110,100,111,109,40,41,125,118,97,114,32,77,104,61,102,117,110,99,116,105,111,110,32,116,40,110,41,123,102,117,110,99,116,105,111,110,32,101,40,116,44,101,41,123,114,101,116,117,114,110,32,116,61,110,117,108,108,61,61,116,63,48,58,43,116,44,101,61,110,117,108,108,61,61,101,63,49,58,43,101,44,49,61,61,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,101,61,116,44,116,61,48,41,58,101,45,61,116,44,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,110,40,41,42,101,43,116,125,125,114,101,116,117,114,110,32,101,46,115,111,117,114,99,101,61,116,44,101,125,40,119,104,41,44,78,104,61,102,117,110,99,116,105,111,110,32,116,40,110,41,123,102,117,110,99,116,105,111,110,32,101,40,116,44,101,41,123,118,97,114,32,114,44,105,59,114,101,116,117,114,110,32,116,61,110,117,108,108,61,61,116,63,48,58,43,116,44,101,61,110,117,108,108,61,61,101,63,49,58,43,101,44,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,111,59,105,102,40,110,117,108,108,33,61,114,41,111,61,114,44,114,61,110,117,108,108,59,101,108,115,101,32,100,111,123,114,61,50,42,110,40,41,45,49,44,111,61,50,42,110,40,41,45,49,44,105,61,114,42,114,43,111,42,111,125,119,104,105,108,101,40,33,105,124,124,105,62,49,41,59,114,101,116,117,114,110,32,116,43,101,42,111,42,77,97,116,104,46,115,113,114,116,40,45,50,42,77,97,116,104,46,108,111,103,40,105,41,47,105,41,125,125,114,101,116,117,114,110,32,101,46,115,111,117,114,99,101,61,116,44,101,125,40,119,104,41,44,84,104,61,102,117,110,99,116,105,111,110,32,116,40,110,41,123,102,117,110,99,116,105,111,110,32,101,40,41,123,118,97,114,32,116,61,78,104,46,115,111,117,114,99,101,40,110,41,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,77,97,116,104,46,101,120,112,40,116,40,41,41,125,125,114,101,116,117,114,110,32,101,46,115,111,117,114,99,101,61,116,44,101,125,40,119,104,41,44,65,104,61,102,117,110,99,116,105,111,110,32,116,40,110,41,123,102,117,110,99,116,105,111,110,32,101,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,118,97,114,32,101,61,48,44,114,61,48,59,114,60,116,59,43,43,114,41,101,43,61,110,40,41,59,114,101,116,117,114,110,32,101,125,125,114,101,116,117,114,110,32,101,46,115,111,117,114,99,101,61,116,44,101,125,40,119,104,41,44,83,104,61,102,117,110,99,116,105,111,110,32,116,40,110,41,123,102,117,110,99,116,105,111,110,32,101,40,116,41,123,118,97,114,32,101,61,65,104,46,115,111,117,114,99,101,40,110,41,40,116,41,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,101,40,41,47,116,125,125,114,101,116,117,114,110,32,101,46,115,111,117,114,99,101,61,116,44,101,125,40,119,104,41,44,107,104,61,102,117,110,99,116,105,111,110,32,116,40,110,41,123,102,117,110,99,116,105,111,110,32,101,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,45,77,97,116,104,46,108,111,103,40,49,45,110,40,41,41,47,116,125,125,114,101,116,117,114,110,32,101,46,115,111,117,114,99,101,61,116,44,101,125,40,119,104,41,59,102,117,110,99,116,105,111,110,32,69,104,40,116,44,110,41,123,115,119,105,116,99,104,40,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,123,99,97,115,101,32,48,58,98,114,101,97,107,59,99,97,115,101,32,49,58,116,104,105,115,46,114,97,110,103,101,40,116,41,59,98,114,101,97,107,59,100,101,102,97,117,108,116,58,116,104,105,115,46,114,97,110,103,101,40,110,41,46,100,111,109,97,105,110,40,116,41,125,114,101,116,117,114,110,32,116,104,105,115,125,102,117,110,99,116,105,111,110,32,67,104,40,116,44,110,41,123,115,119,105,116,99,104,40,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,123,99,97,115,101,32,48,58,98,114,101,97,107,59,99,97,115,101,32,49,58,116,104,105,115,46,105,110,116,101,114,112,111,108,97,116,111,114,40,116,41,59,98,114,101,97,107,59,100,101,102,97,117,108,116,58,116,104,105,115,46,105,110,116,101,114,112,111,108,97,116,111,114,40,110,41,46,100,111,109,97,105,110,40,116,41,125,114,101,116,117,114,110,32,116,104,105,115,125,118,97,114,32,80,104,61,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,44,122,104,61,80,104,46,109,97,112,44,82,104,61,80,104,46,115,108,105,99,101,44,68,104,61,123,110,97,109,101,58,34,105,109,112,108,105,99,105,116,34,125,59,102,117,110,99,116,105,111,110,32,113,104,40,41,123,118,97,114,32,116,61,99,111,40,41,44,110,61,91,93,44,101,61,91,93,44,114,61,68,104,59,102,117,110,99,116,105,111,110,32,105,40,105,41,123,118,97,114,32,111,61,105,43,34,34,44,97,61,116,46,103,101,116,40,111,41,59,105,102,40,33,97,41,123,105,102,40,114,33,61,61,68,104,41,114,101,116,117,114,110,32,114,59,116,46,115,101,116,40,111,44,97,61,110,46,112,117,115,104,40,105,41,41,125,114,101,116,117,114,110,32,101,91,40,97,45,49,41,37,101,46,108,101,110,103,116,104,93,125,114,101,116,117,114,110,32,105,46,100,111,109,97,105,110,61,102,117,110,99,116,105,111,110,40,101,41,123,105,102,40,33,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,114,101,116,117,114,110,32,110,46,115,108,105,99,101,40,41,59,110,61,91,93,44,116,61,99,111,40,41,59,102,111,114,40,118,97,114,32,114,44,111,44,97,61,45,49,44,117,61,101,46,108,101,110,103,116,104,59,43,43,97,60,117,59,41,116,46,104,97,115,40,111,61,40,114,61,101,91,97,93,41,43,34,34,41,124,124,116,46,115,101,116,40,111,44,110,46,112,117,115,104,40,114,41,41,59,114,101,116,117,114,110,32,105,125,44,105,46,114,97,110,103,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,101,61,82,104,46,99,97,108,108,40,116,41,44,105,41,58,101,46,115,108,105,99,101,40,41,125,44,105,46,117,110,107,110,111,119,110,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,114,61,116,44,105,41,58,114,125,44,105,46,99,111,112,121,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,113,104,40,110,44,101,41,46,117,110,107,110,111,119,110,40,114,41,125,44,69,104,46,97,112,112,108,121,40,105,44,97,114,103,117,109,101,110,116,115,41,44,105,125,102,117,110,99,116,105,111,110,32,76,104,40,41,123,118,97,114,32,116,44,110,44,101,61,113,104,40,41,46,117,110,107,110,111,119,110,40,118,111,105,100,32,48,41,44,114,61,101,46,100,111,109,97,105,110,44,105,61,101,46,114,97,110,103,101,44,111,61,91,48,44,49,93,44,97,61,33,49,44,117,61,48,44,99,61,48,44,102,61,46,53,59,102,117,110,99,116,105,111,110,32,115,40,41,123,118,97,114,32,101,61,114,40,41,46,108,101,110,103,116,104,44,115,61,111,91,49,93,60,111,91,48,93,44,108,61,111,91,115,45,48,93,44,104,61,111,91,49,45,115,93,59,116,61,40,104,45,108,41,47,77,97,116,104,46,109,97,120,40,49,44,101,45,117,43,50,42,99,41,44,97,38,38,40,116,61,77,97,116,104,46,102,108,111,111,114,40,116,41,41,44,108,43,61,40,104,45,108,45,116,42,40,101,45,117,41,41,42,102,44,110,61,116,42,40,49,45,117,41,44,97,38,38,40,108,61,77,97,116,104,46,114,111,117,110,100,40,108,41,44,110,61,77,97,116,104,46,114,111,117,110,100,40,110,41,41,59,118,97,114,32,100,61,103,40,101,41,46,109,97,112,40,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,108,43,116,42,110,125,41,59,114,101,116,117,114,110,32,105,40,115,63,100,46,114,101,118,101,114,115,101,40,41,58,100,41,125,114,101,116,117,114,110,32,100,101,108,101,116,101,32,101,46,117,110,107,110,111,119,110,44,101,46,100,111,109,97,105,110,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,114,40,116,41,44,115,40,41,41,58,114,40,41,125,44,101,46,114,97,110,103,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,111,61,91,43,116,91,48,93,44,43,116,91,49,93,93,44,115,40,41,41,58,111,46,115,108,105,99,101,40,41,125,44,101,46,114,97,110,103,101,82,111,117,110,100,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,111,61,91,43,116,91,48,93,44,43,116,91,49,93,93,44,97,61,33,48,44,115,40,41,125,44,101,46,98,97,110,100,119,105,100,116,104,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,110,125,44,101,46,115,116,101,112,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,125,44,101,46,114,111,117,110,100,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,97,61,33,33,116,44,115,40,41,41,58,97,125,44,101,46,112,97,100,100,105,110,103,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,117,61,77,97,116,104,46,109,105,110,40,49,44,99,61,43,116,41,44,115,40,41,41,58,117,125,44,101,46,112,97,100,100,105,110,103,73,110,110,101,114,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,117,61,77,97,116,104,46,109,105,110,40,49,44,116,41,44,115,40,41,41,58,117,125,44,101,46,112,97,100,100,105,110,103,79,117,116,101,114,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,99,61,43,116,44,115,40,41,41,58,99,125,44,101,46,97,108,105,103,110,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,102,61,77,97,116,104,46,109,97,120,40,48,44,77,97,116,104,46,109,105,110,40,49,44,116,41,41,44,115,40,41,41,58,102,125,44,101,46,99,111,112,121,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,76,104,40,114,40,41,44,111,41,46,114,111,117,110,100,40,97,41,46,112,97,100,100,105,110,103,73,110,110,101,114,40,117,41,46,112,97,100,100,105,110,103,79,117,116,101,114,40,99,41,46,97,108,105,103,110,40,102,41,125,44,69,104,46,97,112,112,108,121,40,115,40,41,44,97,114,103,117,109,101,110,116,115,41,125,102,117,110,99,116,105,111,110,32,85,104,40,116,41,123,114,101,116,117,114,110,43,116,125,118,97,114,32,79,104,61,91,48,44,49,93,59,102,117,110,99,116,105,111,110,32,66,104,40,116,41,123,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,70,104,40,116,44,110,41,123,114,101,116,117,114,110,40,110,45,61,116,61,43,116,41,63,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,40,101,45,116,41,47,110,125,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,125,125,40,105,115,78,97,78,40,110,41,63,78,97,78,58,46,53,41,125,102,117,110,99,116,105,111,110,32,89,104,40,116,41,123,118,97,114,32,110,44,101,61,116,91,48,93,44,114,61,116,91,116,46,108,101,110,103,116,104,45,49,93,59,114,101,116,117,114,110,32,101,62,114,38,38,40,110,61,101,44,101,61,114,44,114,61,110,41,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,77,97,116,104,46,109,97,120,40,101,44,77,97,116,104,46,109,105,110,40,114,44,116,41,41,125,125,102,117,110,99,116,105,111,110,32,73,104,40,116,44,110,44,101,41,123,118,97,114,32,114,61,116,91,48,93,44,105,61,116,91,49,93,44,111,61,110,91,48,93,44,97,61,110,91,49,93,59,114,101,116,117,114,110,32,105,60,114,63,40,114,61,70,104,40,105,44,114,41,44,111,61,101,40,97,44,111,41,41,58,40,114,61,70,104,40,114,44,105,41,44,111,61,101,40,111,44,97,41,41,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,111,40,114,40,116,41,41,125,125,102,117,110,99,116,105,111,110,32,72,104,40,116,44,110,44,101,41,123,118,97,114,32,114,61,77,97,116,104,46,109,105,110,40,116,46,108,101,110,103,116,104,44,110,46,108,101,110,103,116,104,41,45,49,44,111,61,110,101,119,32,65,114,114,97,121,40,114,41,44,97,61,110,101,119,32,65,114,114,97,121,40,114,41,44,117,61,45,49,59,102,111,114,40,116,91,114,93,60,116,91,48,93,38,38,40,116,61,116,46,115,108,105,99,101,40,41,46,114,101,118,101,114,115,101,40,41,44,110,61,110,46,115,108,105,99,101,40,41,46,114,101,118,101,114,115,101,40,41,41,59,43,43,117,60,114,59,41,111,91,117,93,61,70,104,40,116,91,117,93,44,116,91,117,43,49,93,41,44,97,91,117,93,61,101,40,110,91,117,93,44,110,91,117,43,49,93,41,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,101,61,105,40,116,44,110,44,49,44,114,41,45,49,59,114,101,116,117,114,110,32,97,91,101,93,40,111,91,101,93,40,110,41,41,125,125,102,117,110,99,116,105,111,110,32,106,104,40,116,44,110,41,123,114,101,116,117,114,110,32,110,46,100,111,109,97,105,110,40,116,46,100,111,109,97,105,110,40,41,41,46,114,97,110,103,101,40,116,46,114,97,110,103,101,40,41,41,46,105,110,116,101,114,112,111,108,97,116,101,40,116,46,105,110,116,101,114,112,111,108,97,116,101,40,41,41,46,99,108,97,109,112,40,116,46,99,108,97,109,112,40,41,41,46,117,110,107,110,111,119,110,40,116,46,117,110,107,110,111,119,110,40,41,41,125,102,117,110,99,116,105,111,110,32,88,104,40,41,123,118,97,114,32,116,44,110,44,101,44,114,44,105,44,111,44,97,61,79,104,44,117,61,79,104,44,99,61,84,101,44,102,61,66,104,59,102,117,110,99,116,105,111,110,32,115,40,41,123,114,101,116,117,114,110,32,114,61,77,97,116,104,46,109,105,110,40,97,46,108,101,110,103,116,104,44,117,46,108,101,110,103,116,104,41,62,50,63,72,104,58,73,104,44,105,61,111,61,110,117,108,108,44,108,125,102,117,110,99,116,105,111,110,32,108,40,110,41,123,114,101,116,117,114,110,32,105,115,78,97,78,40,110,61,43,110,41,63,101,58,40,105,124,124,40,105,61,114,40,97,46,109,97,112,40,116,41,44,117,44,99,41,41,41,40,116,40,102,40,110,41,41,41,125,114,101,116,117,114,110,32,108,46,105,110,118,101,114,116,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,102,40,110,40,40,111,124,124,40,111,61,114,40,117,44,97,46,109,97,112,40,116,41,44,109,101,41,41,41,40,101,41,41,41,125,44,108,46,100,111,109,97,105,110,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,97,61,122,104,46,99,97,108,108,40,116,44,85,104,41,44,102,61,61,61,66,104,124,124,40,102,61,89,104,40,97,41,41,44,115,40,41,41,58,97,46,115,108,105,99,101,40,41,125,44,108,46,114,97,110,103,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,117,61,82,104,46,99,97,108,108,40,116,41,44,115,40,41,41,58,117,46,115,108,105,99,101,40,41,125,44,108,46,114,97,110,103,101,82,111,117,110,100,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,117,61,82,104,46,99,97,108,108,40,116,41,44,99,61,65,101,44,115,40,41,125,44,108,46,99,108,97,109,112,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,102,61,116,63,89,104,40,97,41,58,66,104,44,108,41,58,102,33,61,61,66,104,125,44,108,46,105,110,116,101,114,112,111,108,97,116,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,99,61,116,44,115,40,41,41,58,99,125,44,108,46,117,110,107,110,111,119,110,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,101,61,116,44,108,41,58,101,125,44,102,117,110,99,116,105,111,110,40,101,44,114,41,123,114,101,116,117,114,110,32,116,61,101,44,110,61,114,44,115,40,41,125,125,102,117,110,99,116,105,111,110,32,86,104,40,116,44,110,41,123,114,101,116,117,114,110,32,88,104,40,41,40,116,44,110,41,125,102,117,110,99,116,105,111,110,32,71,104,40,110,44,101,44,114,44,105,41,123,118,97,114,32,111,44,97,61,119,40,110,44,101,44,114,41,59,115,119,105,116,99,104,40,40,105,61,79,97,40,110,117,108,108,61,61,105,63,34,44,102,34,58,105,41,41,46,116,121,112,101,41,123,99,97,115,101,34,115,34,58,118,97,114,32,117,61,77,97,116,104,46,109,97,120,40,77,97,116,104,46,97,98,115,40,110,41,44,77,97,116,104,46,97,98,115,40,101,41,41,59,114,101,116,117,114,110,32,110,117,108,108,33,61,105,46,112,114,101,99,105,115,105,111,110,124,124,105,115,78,97,78,40,111,61,87,97,40,97,44,117,41,41,124,124,40,105,46,112,114,101,99,105,115,105,111,110,61,111,41,44,116,46,102,111,114,109,97,116,80,114,101,102,105,120,40,105,44,117,41,59,99,97,115,101,34,34,58,99,97,115,101,34,101,34,58,99,97,115,101,34,103,34,58,99,97,115,101,34,112,34,58,99,97,115,101,34,114,34,58,110,117,108,108,33,61,105,46,112,114,101,99,105,115,105,111,110,124,124,105,115,78,97,78,40,111,61,90,97,40,97,44,77,97,116,104,46,109,97,120,40,77,97,116,104,46,97,98,115,40,110,41,44,77,97,116,104,46,97,98,115,40,101,41,41,41,41,124,124,40,105,46,112,114,101,99,105,115,105,111,110,61,111,45,40,34,101,34,61,61,61,105,46,116,121,112,101,41,41,59,98,114,101,97,107,59,99,97,115,101,34,102,34,58,99,97,115,101,34,37,34,58,110,117,108,108,33,61,105,46,112,114,101,99,105,115,105,111,110,124,124,105,115,78,97,78,40,111,61,36,97,40,97,41,41,124,124,40,105,46,112,114,101,99,105,115,105,111,110,61,111,45,50,42,40,34,37,34,61,61,61,105,46,116,121,112,101,41,41,125,114,101,116,117,114,110,32,116,46,102,111,114,109,97,116,40,105,41,125,102,117,110,99,116,105,111,110,32,36,104,40,116,41,123,118,97,114,32,110,61,116,46,100,111,109,97,105,110,59,114,101,116,117,114,110,32,116,46,116,105,99,107,115,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,110,40,41,59,114,101,116,117,114,110,32,109,40,101,91,48,93,44,101,91,101,46,108,101,110,103,116,104,45,49,93,44,110,117,108,108,61,61,116,63,49,48,58,116,41,125,44,116,46,116,105,99,107,70,111,114,109,97,116,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,114,61,110,40,41,59,114,101,116,117,114,110,32,71,104,40,114,91,48,93,44,114,91,114,46,108,101,110,103,116,104,45,49,93,44,110,117,108,108,61,61,116,63,49,48,58,116,44,101,41,125,44,116,46,110,105,99,101,61,102,117,110,99,116,105,111,110,40,101,41,123,110,117,108,108,61,61,101,38,38,40,101,61,49,48,41,59,118,97,114,32,114,44,105,61,110,40,41,44,111,61,48,44,97,61,105,46,108,101,110,103,116,104,45,49,44,117,61,105,91,111,93,44,99,61,105,91,97,93,59,114,101,116,117,114,110,32,99,60,117,38,38,40,114,61,117,44,117,61,99,44,99,61,114,44,114,61,111,44,111,61,97,44,97,61,114,41,44,40,114,61,120,40,117,44,99,44,101,41,41,62,48,63,114,61,120,40,117,61,77,97,116,104,46,102,108,111,111,114,40,117,47,114,41,42,114,44,99,61,77,97,116,104,46,99,101,105,108,40,99,47,114,41,42,114,44,101,41,58,114,60,48,38,38,40,114,61,120,40,117,61,77,97,116,104,46,99,101,105,108,40,117,42,114,41,47,114,44,99,61,77,97,116,104,46,102,108,111,111,114,40,99,42,114,41,47,114,44,101,41,41,44,114,62,48,63,40,105,91,111,93,61,77,97,116,104,46,102,108,111,111,114,40,117,47,114,41,42,114,44,105,91,97,93,61,77,97,116,104,46,99,101,105,108,40,99,47,114,41,42,114,44,110,40,105,41,41,58,114,60,48,38,38,40,105,91,111,93,61,77,97,116,104,46,99,101,105,108,40,117,42,114,41,47,114,44,105,91,97,93,61,77,97,116,104,46,102,108,111,111,114,40,99,42,114,41,47,114,44,110,40,105,41,41,44,116,125,44,116,125,102,117,110,99,116,105,111,110,32,87,104,40,116,44,110,41,123,118,97,114,32,101,44,114,61,48,44,105,61,40,116,61,116,46,115,108,105,99,101,40,41,41,46,108,101,110,103,116,104,45,49,44,111,61,116,91,114,93,44,97,61,116,91,105,93,59,114,101,116,117,114,110,32,97,60,111,38,38,40,101,61,114,44,114,61,105,44,105,61,101,44,101,61,111,44,111,61,97,44,97,61,101,41,44,116,91,114,93,61,110,46,102,108,111,111,114,40,111,41,44,116,91,105,93,61,110,46,99,101,105,108,40,97,41,44,116,125,102,117,110,99,116,105,111,110,32,90,104,40,116,41,123,114,101,116,117,114,110,32,77,97,116,104,46,108,111,103,40,116,41,125,102,117,110,99,116,105,111,110,32,81,104,40,116,41,123,114,101,116,117,114,110,32,77,97,116,104,46,101,120,112,40,116,41,125,102,117,110,99,116,105,111,110,32,75,104,40,116,41,123,114,101,116,117,114,110,45,77,97,116,104,46,108,111,103,40,45,116,41,125,102,117,110,99,116,105,111,110,32,74,104,40,116,41,123,114,101,116,117,114,110,45,77,97,116,104,46,101,120,112,40,45,116,41,125,102,117,110,99,116,105,111,110,32,116,100,40,116,41,123,114,101,116,117,114,110,32,105,115,70,105,110,105,116,101,40,116,41,63,43,40,34,49,101,34,43,116,41,58,116,60,48,63,48,58,116,125,102,117,110,99,116,105,111,110,32,110,100,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,45,116,40,45,110,41,125,125,102,117,110,99,116,105,111,110,32,101,100,40,110,41,123,118,97,114,32,101,44,114,44,105,61,110,40,90,104,44,81,104,41,44,111,61,105,46,100,111,109,97,105,110,44,97,61,49,48,59,102,117,110,99,116,105,111,110,32,117,40,41,123,114,101,116,117,114,110,32,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,61,61,61,77,97,116,104,46,69,63,77,97,116,104,46,108,111,103,58,49,48,61,61,61,116,38,38,77,97,116,104,46,108,111,103,49,48,124,124,50,61,61,61,116,38,38,77,97,116,104,46,108,111,103,50,124,124,40,116,61,77,97,116,104,46,108,111,103,40,116,41,44,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,77,97,116,104,46,108,111,103,40,110,41,47,116,125,41,125,40,97,41,44,114,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,49,48,61,61,61,116,63,116,100,58,116,61,61,61,77,97,116,104,46,69,63,77,97,116,104,46,101,120,112,58,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,77,97,116,104,46,112,111,119,40,116,44,110,41,125,125,40,97,41,44,111,40,41,91,48,93,60,48,63,40,101,61,110,100,40,101,41,44,114,61,110,100,40,114,41,44,110,40,75,104,44,74,104,41,41,58,110,40,90,104,44,81,104,41,44,105,125,114,101,116,117,114,110,32,105,46,98,97,115,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,97,61,43,116,44,117,40,41,41,58,97,125,44,105,46,100,111,109,97,105,110,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,111,40,116,41,44,117,40,41,41,58,111,40,41,125,44,105,46,116,105,99,107,115,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,44,105,61,111,40,41,44,117,61,105,91,48,93,44,99,61,105,91,105,46,108,101,110,103,116,104,45,49,93,59,40,110,61,99,60,117,41,38,38,40,104,61,117,44,117,61,99,44,99,61,104,41,59,118,97,114,32,102,44,115,44,108,44,104,61,101,40,117,41,44,100,61,101,40,99,41,44,112,61,110,117,108,108,61,61,116,63,49,48,58,43,116,44,118,61,91,93,59,105,102,40,33,40,97,37,49,41,38,38,100,45,104,60,112,41,123,105,102,40,104,61,77,97,116,104,46,114,111,117,110,100,40,104,41,45,49,44,100,61,77,97,116,104,46,114,111,117,110,100,40,100,41,43,49,44,117,62,48,41,123,102,111,114,40,59,104,60,100,59,43,43,104,41,102,111,114,40,115,61,49,44,102,61,114,40,104,41,59,115,60,97,59,43,43,115,41,105,102,40,33,40,40,108,61,102,42,115,41,60,117,41,41,123,105,102,40,108,62,99,41,98,114,101,97,107,59,118,46,112,117,115,104,40,108,41,125,125,101,108,115,101,32,102,111,114,40,59,104,60,100,59,43,43,104,41,102,111,114,40,115,61,97,45,49,44,102,61,114,40,104,41,59,115,62,61,49,59,45,45,115,41,105,102,40,33,40,40,108,61,102,42,115,41,60,117,41,41,123,105,102,40,108,62,99,41,98,114,101,97,107,59,118,46,112,117,115,104,40,108,41,125,125,101,108,115,101,32,118,61,109,40,104,44,100,44,77,97,116,104,46,109,105,110,40,100,45,104,44,112,41,41,46,109,97,112,40,114,41,59,114,101,116,117,114,110,32,110,63,118,46,114,101,118,101,114,115,101,40,41,58,118,125,44,105,46,116,105,99,107,70,111,114,109,97,116,61,102,117,110,99,116,105,111,110,40,110,44,111,41,123,105,102,40,110,117,108,108,61,61,111,38,38,40,111,61,49,48,61,61,61,97,63,34,46,48,101,34,58,34,44,34,41,44,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,111,38,38,40,111,61,116,46,102,111,114,109,97,116,40,111,41,41,44,110,61,61,61,49,47,48,41,114,101,116,117,114,110,32,111,59,110,117,108,108,61,61,110,38,38,40,110,61,49,48,41,59,118,97,114,32,117,61,77,97,116,104,46,109,97,120,40,49,44,97,42,110,47,105,46,116,105,99,107,115,40,41,46,108,101,110,103,116,104,41,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,116,47,114,40,77,97,116,104,46,114,111,117,110,100,40,101,40,116,41,41,41,59,114,101,116,117,114,110,32,110,42,97,60,97,45,46,53,38,38,40,110,42,61,97,41,44,110,60,61,117,63,111,40,116,41,58,34,34,125,125,44,105,46,110,105,99,101,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,111,40,87,104,40,111,40,41,44,123,102,108,111,111,114,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,114,40,77,97,116,104,46,102,108,111,111,114,40,101,40,116,41,41,41,125,44,99,101,105,108,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,114,40,77,97,116,104,46,99,101,105,108,40,101,40,116,41,41,41,125,125,41,41,125,44,105,125,102,117,110,99,116,105,111,110,32,114,100,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,77,97,116,104,46,115,105,103,110,40,110,41,42,77,97,116,104,46,108,111,103,49,112,40,77,97,116,104,46,97,98,115,40,110,47,116,41,41,125,125,102,117,110,99,116,105,111,110,32,105,100,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,77,97,116,104,46,115,105,103,110,40,110,41,42,77,97,116,104,46,101,120,112,109,49,40,77,97,116,104,46,97,98,115,40,110,41,41,42,116,125,125,102,117,110,99,116,105,111,110,32,111,100,40,116,41,123,118,97,114,32,110,61,49,44,101,61,116,40,114,100,40,110,41,44,105,100,40,110,41,41,59,114,101,116,117,114,110,32,101,46,99,111,110,115,116,97,110,116,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,116,40,114,100,40,110,61,43,101,41,44,105,100,40,110,41,41,58,110,125,44,36,104,40,101,41,125,102,117,110,99,116,105,111,110,32,97,100,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,110,60,48,63,45,77,97,116,104,46,112,111,119,40,45,110,44,116,41,58,77,97,116,104,46,112,111,119,40,110,44,116,41,125,125,102,117,110,99,116,105,111,110,32,117,100,40,116,41,123,114,101,116,117,114,110,32,116,60,48,63,45,77,97,116,104,46,115,113,114,116,40,45,116,41,58,77,97,116,104,46,115,113,114,116,40,116,41,125,102,117,110,99,116,105,111,110,32,99,100,40,116,41,123,114,101,116,117,114,110,32,116,60,48,63,45,116,42,116,58,116,42,116,125,102,117,110,99,116,105,111,110,32,102,100,40,116,41,123,118,97,114,32,110,61,116,40,66,104,44,66,104,41,44,101,61,49,59,102,117,110,99,116,105,111,110,32,114,40,41,123,114,101,116,117,114,110,32,49,61,61,61,101,63,116,40,66,104,44,66,104,41,58,46,53,61,61,61,101,63,116,40,117,100,44,99,100,41,58,116,40,97,100,40,101,41,44,97,100,40,49,47,101,41,41,125,114,101,116,117,114,110,32,110,46,101,120,112,111,110,101,110,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,101,61,43,116,44,114,40,41,41,58,101,125,44,36,104,40,110,41,125,102,117,110,99,116,105,111,110,32,115,100,40,41,123,118,97,114,32,116,61,102,100,40,88,104,40,41,41,59,114,101,116,117,114,110,32,116,46,99,111,112,121,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,106,104,40,116,44,115,100,40,41,41,46,101,120,112,111,110,101,110,116,40,116,46,101,120,112,111,110,101,110,116,40,41,41,125,44,69,104,46,97,112,112,108,121,40,116,44,97,114,103,117,109,101,110,116,115,41,44,116,125,118,97,114,32,108,100,61,110,101,119,32,68,97,116,101,44,104,100,61,110,101,119,32,68,97,116,101,59,102,117,110,99,116,105,111,110,32,100,100,40,116,44,110,44,101,44,114,41,123,102,117,110,99,116,105,111,110,32,105,40,110,41,123,114,101,116,117,114,110,32,116,40,110,61,48,61,61,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,110,101,119,32,68,97,116,101,58,110,101,119,32,68,97,116,101,40,43,110,41,41,44,110,125,114,101,116,117,114,110,32,105,46,102,108,111,111,114,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,40,110,61,110,101,119,32,68,97,116,101,40,43,110,41,41,44,110,125,44,105,46,99,101,105,108,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,40,101,61,110,101,119,32,68,97,116,101,40,101,45,49,41,41,44,110,40,101,44,49,41,44,116,40,101,41,44,101,125,44,105,46,114,111,117,110,100,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,105,40,116,41,44,101,61,105,46,99,101,105,108,40,116,41,59,114,101,116,117,114,110,32,116,45,110,60,101,45,116,63,110,58,101,125,44,105,46,111,102,102,115,101,116,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,110,40,116,61,110,101,119,32,68,97,116,101,40,43,116,41,44,110,117,108,108,61,61,101,63,49,58,77,97,116,104,46,102,108,111,111,114,40,101,41,41,44,116,125,44,105,46,114,97,110,103,101,61,102,117,110,99,116,105,111,110,40,101,44,114,44,111,41,123,118,97,114,32,97,44,117,61,91,93,59,105,102,40,101,61,105,46,99,101,105,108,40,101,41,44,111,61,110,117,108,108,61,61,111,63,49,58,77,97,116,104,46,102,108,111,111,114,40,111,41,44,33,40,101,60,114,38,38,111,62,48,41,41,114,101,116,117,114,110,32,117,59,100,111,123,117,46,112,117,115,104,40,97,61,110,101,119,32,68,97,116,101,40,43,101,41,41,44,110,40,101,44,111,41,44,116,40,101,41,125,119,104,105,108,101,40,97,60,101,38,38,101,60,114,41,59,114,101,116,117,114,110,32,117,125,44,105,46,102,105,108,116,101,114,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,100,100,40,102,117,110,99,116,105,111,110,40,110,41,123,105,102,40,110,62,61,110,41,102,111,114,40,59,116,40,110,41,44,33,101,40,110,41,59,41,110,46,115,101,116,84,105,109,101,40,110,45,49,41,125,44,102,117,110,99,116,105,111,110,40,116,44,114,41,123,105,102,40,116,62,61,116,41,105,102,40,114,60,48,41,102,111,114,40,59,43,43,114,60,61,48,59,41,102,111,114,40,59,110,40,116,44,45,49,41,44,33,101,40,116,41,59,41,59,101,108,115,101,32,102,111,114,40,59,45,45,114,62,61,48,59,41,102,111,114,40,59,110,40,116,44,49,41,44,33,101,40,116,41,59,41,59,125,41,125,44,101,38,38,40,105,46,99,111,117,110,116,61,102,117,110,99,116,105,111,110,40,110,44,114,41,123,114,101,116,117,114,110,32,108,100,46,115,101,116,84,105,109,101,40,43,110,41,44,104,100,46,115,101,116,84,105,109,101,40,43,114,41,44,116,40,108,100,41,44,116,40,104,100,41,44,77,97,116,104,46,102,108,111,111,114,40,101,40,108,100,44,104,100,41,41,125,44,105,46,101,118,101,114,121,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,61,77,97,116,104,46,102,108,111,111,114,40,116,41,44,105,115,70,105,110,105,116,101,40,116,41,38,38,116,62,48,63,116,62,49,63,105,46,102,105,108,116,101,114,40,114,63,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,114,40,110,41,37,116,61,61,48,125,58,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,105,46,99,111,117,110,116,40,48,44,110,41,37,116,61,61,48,125,41,58,105,58,110,117,108,108,125,41,44,105,125,118,97,114,32,112,100,61,100,100,40,102,117,110,99,116,105,111,110,40,41,123,125,44,102,117,110,99,116,105,111,110,40,116,44,110,41,123,116,46,115,101,116,84,105,109,101,40,43,116,43,110,41,125,44,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,110,45,116,125,41,59,112,100,46,101,118,101,114,121,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,61,77,97,116,104,46,102,108,111,111,114,40,116,41,44,105,115,70,105,110,105,116,101,40,116,41,38,38,116,62,48,63,116,62,49,63,100,100,40,102,117,110,99,116,105,111,110,40,110,41,123,110,46,115,101,116,84,105,109,101,40,77,97,116,104,46,102,108,111,111,114,40,110,47,116,41,42,116,41,125,44,102,117,110,99,116,105,111,110,40,110,44,101,41,123,110,46,115,101,116,84,105,109,101,40,43,110,43,101,42,116,41,125,44,102,117,110,99,116,105,111,110,40,110,44,101,41,123,114,101,116,117,114,110,40,101,45,110,41,47,116,125,41,58,112,100,58,110,117,108,108,125,59,118,97,114,32,118,100,61,112,100,46,114,97,110,103,101,44,103,100,61,54,101,52,44,121,100,61,54,48,52,56,101,53,44,95,100,61,100,100,40,102,117,110,99,116,105,111,110,40,116,41,123,116,46,115,101,116,84,105,109,101,40,116,45,116,46,103,101,116,77,105,108,108,105,115,101,99,111,110,100,115,40,41,41,125,44,102,117,110,99,116,105,111,110,40,116,44,110,41,123,116,46,115,101,116,84,105,109,101,40,43,116,43,49,101,51,42,110,41,125,44,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,40,110,45,116,41,47,49,101,51,125,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,103,101,116,85,84,67,83,101,99,111,110,100,115,40,41,125,41,44,98,100,61,95,100,46,114,97,110,103,101,44,109,100,61,100,100,40,102,117,110,99,116,105,111,110,40,116,41,123,116,46,115,101,116,84,105,109,101,40,116,45,116,46,103,101,116,77,105,108,108,105,115,101,99,111,110,100,115,40,41,45,49,101,51,42,116,46,103,101,116,83,101,99,111,110,100,115,40,41,41,125,44,102,117,110,99,116,105,111,110,40,116,44,110,41,123,116,46,115,101,116,84,105,109,101,40,43,116,43,110,42,103,100,41,125,44,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,40,110,45,116,41,47,103,100,125,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,103,101,116,77,105,110,117,116,101,115,40,41,125,41,44,120,100,61,109,100,46,114,97,110,103,101,44,119,100,61,100,100,40,102,117,110,99,116,105,111,110,40,116,41,123,116,46,115,101,116,84,105,109,101,40,116,45,116,46,103,101,116,77,105,108,108,105,115,101,99,111,110,100,115,40,41,45,49,101,51,42,116,46,103,101,116,83,101,99,111,110,100,115,40,41,45,116,46,103,101,116,77,105,110,117,116,101,115,40,41,42,103,100,41,125,44,102,117,110,99,116,105,111,110,40,116,44,110,41,123,116,46,115,101,116,84,105,109,101,40,43,116,43,51,54,101,53,42,110,41,125,44,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,40,110,45,116,41,47,51,54,101,53,125,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,103,101,116,72,111,117,114,115,40,41,125,41,44,77,100,61,119,100,46,114,97,110,103,101,44,78,100,61,100,100,40,102,117,110,99,116,105,111,110,40,116,41,123,116,46,115,101,116,72,111,117,114,115,40,48,44,48,44,48,44,48,41,125,44,102,117,110,99,116,105,111,110,40,116,44,110,41,123,116,46,115,101,116,68,97,116,101,40,116,46,103,101,116,68,97,116,101,40,41,43,110,41,125,44,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,40,110,45,116,45,40,110,46,103,101,116,84,105,109,101,122,111,110,101,79,102,102,115,101,116,40,41,45,116,46,103,101,116,84,105,109,101,122,111,110,101,79,102,102,115,101,116,40,41,41,42,103,100,41,47,56,54,52,101,53,125,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,103,101,116,68,97,116,101,40,41,45,49,125,41,44,84,100,61,78,100,46,114,97,110,103,101,59,102,117,110,99,116,105,111,110,32,65,100,40,116,41,123,114,101,116,117,114,110,32,100,100,40,102,117,110,99,116,105,111,110,40,110,41,123,110,46,115,101,116,68,97,116,101,40,110,46,103,101,116,68,97,116,101,40,41,45,40,110,46,103,101,116,68,97,121,40,41,43,55,45,116,41,37,55,41,44,110,46,115,101,116,72,111,117,114,115,40,48,44,48,44,48,44,48,41,125,44,102,117,110,99,116,105,111,110,40,116,44,110,41,123,116,46,115,101,116,68,97,116,101,40,116,46,103,101,116,68,97,116,101,40,41,43,55,42,110,41,125,44,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,40,110,45,116,45,40,110,46,103,101,116,84,105,109,101,122,111,110,101,79,102,102,115,101,116,40,41,45,116,46,103,101,116,84,105,109,101,122,111,110,101,79,102,102,115,101,116,40,41,41,42,103,100,41,47,121,100,125,41,125,118,97,114,32,83,100,61,65,100,40,48,41,44,107,100,61,65,100,40,49,41,44,69,100,61,65,100,40,50,41,44,67,100,61,65,100,40,51,41,44,80,100,61,65,100,40,52,41,44,122,100,61,65,100,40,53,41,44,82,100,61,65,100,40,54,41,44,68,100,61,83,100,46,114,97,110,103,101,44,113,100,61,107,100,46,114,97,110,103,101,44,76,100,61,69,100,46,114,97,110,103,101,44,85,100,61,67,100,46,114,97,110,103,101,44,79,100,61,80,100,46,114,97,110,103,101,44,66,100,61,122,100,46,114,97,110,103,101,44,70,100,61,82,100,46,114,97,110,103,101,44,89,100,61,100,100,40,102,117,110,99,116,105,111,110,40,116,41,123,116,46,115,101,116,68,97,116,101,40,49,41,44,116,46,115,101,116,72,111,117,114,115,40,48,44,48,44,48,44,48,41,125,44,102,117,110,99,116,105,111,110,40,116,44,110,41,123,116,46,115,101,116,77,111,110,116,104,40,116,46,103,101,116,77,111,110,116,104,40,41,43,110,41,125,44,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,110,46,103,101,116,77,111,110,116,104,40,41,45,116,46,103,101,116,77,111,110,116,104,40,41,43,49,50,42,40,110,46,103,101,116,70,117,108,108,89,101,97,114,40,41,45,116,46,103,101,116,70,117,108,108,89,101,97,114,40,41,41,125,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,103,101,116,77,111,110,116,104,40,41,125,41,44,73,100,61,89,100,46,114,97,110,103,101,44,72,100,61,100,100,40,102,117,110,99,116,105,111,110,40,116,41,123,116,46,115,101,116,77,111,110,116,104,40,48,44,49,41,44,116,46,115,101,116,72,111,117,114,115,40,48,44,48,44,48,44,48,41,125,44,102,117,110,99,116,105,111,110,40,116,44,110,41,123,116,46,115,101,116,70,117,108,108,89,101,97,114,40,116,46,103,101,116,70,117,108,108,89,101,97,114,40,41,43,110,41,125,44,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,110,46,103,101,116,70,117,108,108,89,101,97,114,40,41,45,116,46,103,101,116,70,117,108,108,89,101,97,114,40,41,125,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,103,101,116,70,117,108,108,89,101,97,114,40,41,125,41,59,72,100,46,101,118,101,114,121,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,105,115,70,105,110,105,116,101,40,116,61,77,97,116,104,46,102,108,111,111,114,40,116,41,41,38,38,116,62,48,63,100,100,40,102,117,110,99,116,105,111,110,40,110,41,123,110,46,115,101,116,70,117,108,108,89,101,97,114,40,77,97,116,104,46,102,108,111,111,114,40,110,46,103,101,116,70,117,108,108,89,101,97,114,40,41,47,116,41,42,116,41,44,110,46,115,101,116,77,111,110,116,104,40,48,44,49,41,44,110,46,115,101,116,72,111,117,114,115,40,48,44,48,44,48,44,48,41,125,44,102,117,110,99,116,105,111,110,40,110,44,101,41,123,110,46,115,101,116,70,117,108,108,89,101,97,114,40,110,46,103,101,116,70,117,108,108,89,101,97,114,40,41,43,101,42,116,41,125,41,58,110,117,108,108,125,59,118,97,114,32,106,100,61,72,100,46,114,97,110,103,101,44,88,100,61,100,100,40,102,117,110,99,116,105,111,110,40,116,41,123,116,46,115,101,116,85,84,67,83,101,99,111,110,100,115,40,48,44,48,41,125,44,102,117,110,99,116,105,111,110,40,116,44,110,41,123,116,46,115,101,116,84,105,109,101,40,43,116,43,110,42,103,100,41,125,44,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,40,110,45,116,41,47,103,100,125,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,103,101,116,85,84,67,77,105,110,117,116,101,115,40,41,125,41,44,86,100,61,88,100,46,114,97,110,103,101,44,71,100,61,100,100,40,102,117,110,99,116,105,111,110,40,116,41,123,116,46,115,101,116,85,84,67,77,105,110,117,116,101,115,40,48,44,48,44,48,41,125,44,102,117,110,99,116,105,111,110,40,116,44,110,41,123,116,46,115,101,116,84,105,109,101,40,43,116,43,51,54,101,53,42,110,41,125,44,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,40,110,45,116,41,47,51,54,101,53,125,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,103,101,116,85,84,67,72,111,117,114,115,40,41,125,41,44,36,100,61,71,100,46,114,97,110,103,101,44,87,100,61,100,100,40,102,117,110,99,116,105,111,110,40,116,41,123,116,46,115,101,116,85,84,67,72,111,117,114,115,40,48,44,48,44,48,44,48,41,125,44,102,117,110,99,116,105,111,110,40,116,44,110,41,123,116,46,115,101,116,85,84,67,68,97,116,101,40,116,46,103,101,116,85,84,67,68,97,116,101,40,41,43,110,41,125,44,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,40,110,45,116,41,47,56,54,52,101,53,125,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,103,101,116,85,84,67,68,97,116,101,40,41,45,49,125,41,44,90,100,61,87,100,46,114,97,110,103,101,59,102,117,110,99,116,105,111,110,32,81,100,40,116,41,123,114,101,116,117,114,110,32,100,100,40,102,117,110,99,116,105,111,110,40,110,41,123,110,46,115,101,116,85,84,67,68,97,116,101,40,110,46,103,101,116,85,84,67,68,97,116,101,40,41,45,40,110,46,103,101,116,85,84,67,68,97,121,40,41,43,55,45,116,41,37,55,41,44,110,46,115,101,116,85,84,67,72,111,117,114,115,40,48,44,48,44,48,44,48,41,125,44,102,117,110,99,116,105,111,110,40,116,44,110,41,123,116,46,115,101,116,85,84,67,68,97,116,101,40,116,46,103,101,116,85,84,67,68,97,116,101,40,41,43,55,42,110,41,125,44,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,40,110,45,116,41,47,121,100,125,41,125,118,97,114,32,75,100,61,81,100,40,48,41,44,74,100,61,81,100,40,49,41,44,116,112,61,81,100,40,50,41,44,110,112,61,81,100,40,51,41,44,101,112,61,81,100,40,52,41,44,114,112,61,81,100,40,53,41,44,105,112,61,81,100,40,54,41,44,111,112,61,75,100,46,114,97,110,103,101,44,97,112,61,74,100,46,114,97,110,103,101,44,117,112,61,116,112,46,114,97,110,103,101,44,99,112,61,110,112,46,114,97,110,103,101,44,102,112,61,101,112,46,114,97,110,103,101,44,115,112,61,114,112,46,114,97,110,103,101,44,108,112,61,105,112,46,114,97,110,103,101,44,104,112,61,100,100,40,102,117,110,99,116,105,111,110,40,116,41,123,116,46,115,101,116,85,84,67,68,97,116,101,40,49,41,44,116,46,115,101,116,85,84,67,72,111,117,114,115,40,48,44,48,44,48,44,48,41,125,44,102,117,110,99,116,105,111,110,40,116,44,110,41,123,116,46,115,101,116,85,84,67,77,111,110,116,104,40,116,46,103,101,116,85,84,67,77,111,110,116,104,40,41,43,110,41,125,44,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,110,46,103,101,116,85,84,67,77,111,110,116,104,40,41,45,116,46,103,101,116,85,84,67,77,111,110,116,104,40,41,43,49,50,42,40,110,46,103,101,116,85,84,67,70,117,108,108,89,101,97,114,40,41,45,116,46,103,101,116,85,84,67,70,117,108,108,89,101,97,114,40,41,41,125,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,103,101,116,85,84,67,77,111,110,116,104,40,41,125,41,44,100,112,61,104,112,46,114,97,110,103,101,44,112,112,61,100,100,40,102,117,110,99,116,105,111,110,40,116,41,123,116,46,115,101,116,85,84,67,77,111,110,116,104,40,48,44,49,41,44,116,46,115,101,116,85,84,67,72,111,117,114,115,40,48,44,48,44,48,44,48,41,125,44,102,117,110,99,116,105,111,110,40,116,44,110,41,123,116,46,115,101,116,85,84,67,70,117,108,108,89,101,97,114,40,116,46,103,101,116,85,84,67,70,117,108,108,89,101,97,114,40,41,43,110,41,125,44,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,110,46,103,101,116,85,84,67,70,117,108,108,89,101,97,114,40,41,45,116,46,103,101,116,85,84,67,70,117,108,108,89,101,97,114,40,41,125,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,103,101,116,85,84,67,70,117,108,108,89,101,97,114,40,41,125,41,59,112,112,46,101,118,101,114,121,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,105,115,70,105,110,105,116,101,40,116,61,77,97,116,104,46,102,108,111,111,114,40,116,41,41,38,38,116,62,48,63,100,100,40,102,117,110,99,116,105,111,110,40,110,41,123,110,46,115,101,116,85,84,67,70,117,108,108,89,101,97,114,40,77,97,116,104,46,102,108,111,111,114,40,110,46,103,101,116,85,84,67,70,117,108,108,89,101,97,114,40,41,47,116,41,42,116,41,44,110,46,115,101,116,85,84,67,77,111,110,116,104,40,48,44,49,41,44,110,46,115,101,116,85,84,67,72,111,117,114,115,40,48,44,48,44,48,44,48,41,125,44,102,117,110,99,116,105,111,110,40,110,44,101,41,123,110,46,115,101,116,85,84,67,70,117,108,108,89,101,97,114,40,110,46,103,101,116,85,84,67,70,117,108,108,89,101,97,114,40,41,43,101,42,116,41,125,41,58,110,117,108,108,125,59,118,97,114,32,118,112,61,112,112,46,114,97,110,103,101,59,102,117,110,99,116,105,111,110,32,103,112,40,116,41,123,105,102,40,48,60,61,116,46,121,38,38,116,46,121,60,49,48,48,41,123,118,97,114,32,110,61,110,101,119,32,68,97,116,101,40,45,49,44,116,46,109,44,116,46,100,44,116,46,72,44,116,46,77,44,116,46,83,44,116,46,76,41,59,114,101,116,117,114,110,32,110,46,115,101,116,70,117,108,108,89,101,97,114,40,116,46,121,41,44,110,125,114,101,116,117,114,110,32,110,101,119,32,68,97,116,101,40,116,46,121,44,116,46,109,44,116,46,100,44,116,46,72,44,116,46,77,44,116,46,83,44,116,46,76,41,125,102,117,110,99,116,105,111,110,32,121,112,40,116,41,123,105,102,40,48,60,61,116,46,121,38,38,116,46,121,60,49,48,48,41,123,118,97,114,32,110,61,110,101,119,32,68,97,116,101,40,68,97,116,101,46,85,84,67,40,45,49,44,116,46,109,44,116,46,100,44,116,46,72,44,116,46,77,44,116,46,83,44,116,46,76,41,41,59,114,101,116,117,114,110,32,110,46,115,101,116,85,84,67,70,117,108,108,89,101,97,114,40,116,46,121,41,44,110,125,114,101,116,117,114,110,32,110,101,119,32,68,97,116,101,40,68,97,116,101,46,85,84,67,40,116,46,121,44,116,46,109,44,116,46,100,44,116,46,72,44,116,46,77,44,116,46,83,44,116,46,76,41,41,125,102,117,110,99,116,105,111,110,32,95,112,40,116,44,110,44,101,41,123,114,101,116,117,114,110,123,121,58,116,44,109,58,110,44,100,58,101,44,72,58,48,44,77,58,48,44,83,58,48,44,76,58,48,125,125,102,117,110,99,116,105,111,110,32,98,112,40,116,41,123,118,97,114,32,110,61,116,46,100,97,116,101,84,105,109,101,44,101,61,116,46,100,97,116,101,44,114,61,116,46,116,105,109,101,44,105,61,116,46,112,101,114,105,111,100,115,44,111,61,116,46,100,97,121,115,44,97,61,116,46,115,104,111,114,116,68,97,121,115,44,117,61,116,46,109,111,110,116,104,115,44,99,61,116,46,115,104,111,114,116,77,111,110,116,104,115,44,102,61,83,112,40,105,41,44,115,61,107,112,40,105,41,44,108,61,83,112,40,111,41,44,104,61,107,112,40,111,41,44,100,61,83,112,40,97,41,44,112,61,107,112,40,97,41,44,118,61,83,112,40,117,41,44,103,61,107,112,40,117,41,44,121,61,83,112,40,99,41,44,95,61,107,112,40,99,41,44,98,61,123,97,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,91,116,46,103,101,116,68,97,121,40,41,93,125,44,65,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,111,91,116,46,103,101,116,68,97,121,40,41,93,125,44,98,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,99,91,116,46,103,101,116,77,111,110,116,104,40,41,93,125,44,66,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,117,91,116,46,103,101,116,77,111,110,116,104,40,41,93,125,44,99,58,110,117,108,108,44,100,58,87,112,44,101,58,87,112,44,102,58,116,118,44,72,58,90,112,44,73,58,81,112,44,106,58,75,112,44,76,58,74,112,44,109,58,110,118,44,77,58,101,118,44,112,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,105,91,43,40,116,46,103,101,116,72,111,117,114,115,40,41,62,61,49,50,41,93,125,44,113,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,49,43,126,126,40,116,46,103,101,116,77,111,110,116,104,40,41,47,51,41,125,44,81,58,67,118,44,115,58,80,118,44,83,58,114,118,44,117,58,105,118,44,85,58,111,118,44,86,58,97,118,44,119,58,117,118,44,87,58,99,118,44,120,58,110,117,108,108,44,88,58,110,117,108,108,44,121,58,102,118,44,89,58,115,118,44,90,58,108,118,44,34,37,34,58,69,118,125,44,109,61,123,97,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,91,116,46,103,101,116,85,84,67,68,97,121,40,41,93,125,44,65,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,111,91,116,46,103,101,116,85,84,67,68,97,121,40,41,93,125,44,98,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,99,91,116,46,103,101,116,85,84,67,77,111,110,116,104,40,41,93,125,44,66,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,117,91,116,46,103,101,116,85,84,67,77,111,110,116,104,40,41,93,125,44,99,58,110,117,108,108,44,100,58,104,118,44,101,58,104,118,44,102,58,121,118,44,72,58,100,118,44,73,58,112,118,44,106,58,118,118,44,76,58,103,118,44,109,58,95,118,44,77,58,98,118,44,112,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,105,91,43,40,116,46,103,101,116,85,84,67,72,111,117,114,115,40,41,62,61,49,50,41,93,125,44,113,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,49,43,126,126,40,116,46,103,101,116,85,84,67,77,111,110,116,104,40,41,47,51,41,125,44,81,58,67,118,44,115,58,80,118,44,83,58,109,118,44,117,58,120,118,44,85,58,119,118,44,86,58,77,118,44,119,58,78,118,44,87,58,84,118,44,120,58,110,117,108,108,44,88,58,110,117,108,108,44,121,58,65,118,44,89,58,83,118,44,90,58,107,118,44,34,37,34,58,69,118,125,44,120,61,123,97,58,102,117,110,99,116,105,111,110,40,116,44,110,44,101,41,123,118,97,114,32,114,61,100,46,101,120,101,99,40,110,46,115,108,105,99,101,40,101,41,41,59,114,101,116,117,114,110,32,114,63,40,116,46,119,61,112,91,114,91,48,93,46,116,111,76,111,119,101,114,67,97,115,101,40,41,93,44,101,43,114,91,48,93,46,108,101,110,103,116,104,41,58,45,49,125,44,65,58,102,117,110,99,116,105,111,110,40,116,44,110,44,101,41,123,118,97,114,32,114,61,108,46,101,120,101,99,40,110,46,115,108,105,99,101,40,101,41,41,59,114,101,116,117,114,110,32,114,63,40,116,46,119,61,104,91,114,91,48,93,46,116,111,76,111,119,101,114,67,97,115,101,40,41,93,44,101,43,114,91,48,93,46,108,101,110,103,116,104,41,58,45,49,125,44,98,58,102,117,110,99,116,105,111,110,40,116,44,110,44,101,41,123,118,97,114,32,114,61,121,46,101,120,101,99,40,110,46,115,108,105,99,101,40,101,41,41,59,114,101,116,117,114,110,32,114,63,40,116,46,109,61,95,91,114,91,48,93,46,116,111,76,111,119,101,114,67,97,115,101,40,41,93,44,101,43,114,91,48,93,46,108,101,110,103,116,104,41,58,45,49,125,44,66,58,102,117,110,99,116,105,111,110,40,116,44,110,44,101,41,123,118,97,114,32,114,61,118,46,101,120,101,99,40,110,46,115,108,105,99,101,40,101,41,41,59,114,101,116,117,114,110,32,114,63,40,116,46,109,61,103,91,114,91,48,93,46,116,111,76,111,119,101,114,67,97,115,101,40,41,93,44,101,43,114,91,48,93,46,108,101,110,103,116,104,41,58,45,49,125,44,99,58,102,117,110,99,116,105,111,110,40,116,44,101,44,114,41,123,114,101,116,117,114,110,32,78,40,116,44,110,44,101,44,114,41,125,44,100,58,66,112,44,101,58,66,112,44,102,58,88,112,44,72,58,89,112,44,73,58,89,112,44,106,58,70,112,44,76,58,106,112,44,109,58,79,112,44,77,58,73,112,44,112,58,102,117,110,99,116,105,111,110,40,116,44,110,44,101,41,123,118,97,114,32,114,61,102,46,101,120,101,99,40,110,46,115,108,105,99,101,40,101,41,41,59,114,101,116,117,114,110,32,114,63,40,116,46,112,61,115,91,114,91,48,93,46,116,111,76,111,119,101,114,67,97,115,101,40,41,93,44,101,43,114,91,48,93,46,108,101,110,103,116,104,41,58,45,49,125,44,113,58,85,112,44,81,58,71,112,44,115,58,36,112,44,83,58,72,112,44,117,58,67,112,44,85,58,80,112,44,86,58,122,112,44,119,58,69,112,44,87,58,82,112,44,120,58,102,117,110,99,116,105,111,110,40,116,44,110,44,114,41,123,114,101,116,117,114,110,32,78,40,116,44,101,44,110,44,114,41,125,44,88,58,102,117,110,99,116,105,111,110,40,116,44,110,44,101,41,123,114,101,116,117,114,110,32,78,40,116,44,114,44,110,44,101,41,125,44,121,58,113,112,44,89,58,68,112,44,90,58,76,112,44,34,37,34,58,86,112,125,59,102,117,110,99,116,105,111,110,32,119,40,116,44,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,114,44,105,44,111,44,97,61,91,93,44,117,61,45,49,44,99,61,48,44,102,61,116,46,108,101,110,103,116,104,59,102,111,114,40,101,32,105,110,115,116,97,110,99,101,111,102,32,68,97,116,101,124,124,40,101,61,110,101,119,32,68,97,116,101,40,43,101,41,41,59,43,43,117,60,102,59,41,51,55,61,61,61,116,46,99,104,97,114,67,111,100,101,65,116,40,117,41,38,38,40,97,46,112,117,115,104,40,116,46,115,108,105,99,101,40,99,44,117,41,41,44,110,117,108,108,33,61,40,105,61,120,112,91,114,61,116,46,99,104,97,114,65,116,40,43,43,117,41,93,41,63,114,61,116,46,99,104,97,114,65,116,40,43,43,117,41,58,105,61,34,101,34,61,61,61,114,63,34,32,34,58,34,48,34,44,40,111,61,110,91,114,93,41,38,38,40,114,61,111,40,101,44,105,41,41,44,97,46,112,117,115,104,40,114,41,44,99,61,117,43,49,41,59,114,101,116,117,114,110,32,97,46,112,117,115,104,40,116,46,115,108,105,99,101,40,99,44,117,41,41,44,97,46,106,111,105,110,40,34,34,41,125,125,102,117,110,99,116,105,111,110,32,77,40,116,44,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,114,44,105,44,111,61,95,112,40,49,57,48,48,44,118,111,105,100,32,48,44,49,41,59,105,102,40,78,40,111,44,116,44,101,43,61,34,34,44,48,41,33,61,101,46,108,101,110,103,116,104,41,114,101,116,117,114,110,32,110,117,108,108,59,105,102,40,34,81,34,105,110,32,111,41,114,101,116,117,114,110,32,110,101,119,32,68,97,116,101,40,111,46,81,41,59,105,102,40,34,115,34,105,110,32,111,41,114,101,116,117,114,110,32,110,101,119,32,68,97,116,101,40,49,101,51,42,111,46,115,43,40,34,76,34,105,110,32,111,63,111,46,76,58,48,41,41,59,105,102,40,33,110,124,124,34,90,34,105,110,32,111,124,124,40,111,46,90,61,48,41,44,34,112,34,105,110,32,111,38,38,40,111,46,72,61,111,46,72,37,49,50,43,49,50,42,111,46,112,41,44,118,111,105,100,32,48,61,61,61,111,46,109,38,38,40,111,46,109,61,34,113,34,105,110,32,111,63,111,46,113,58,48,41,44,34,86,34,105,110,32,111,41,123,105,102,40,111,46,86,60,49,124,124,111,46,86,62,53,51,41,114,101,116,117,114,110,32,110,117,108,108,59,34,119,34,105,110,32,111,124,124,40,111,46,119,61,49,41,44,34,90,34,105,110,32,111,63,40,105,61,40,114,61,121,112,40,95,112,40,111,46,121,44,48,44,49,41,41,41,46,103,101,116,85,84,67,68,97,121,40,41,44,114,61,105,62,52,124,124,48,61,61,61,105,63,74,100,46,99,101,105,108,40,114,41,58,74,100,40,114,41,44,114,61,87,100,46,111,102,102,115,101,116,40,114,44,55,42,40,111,46,86,45,49,41,41,44,111,46,121,61,114,46,103,101,116,85,84,67,70,117,108,108,89,101,97,114,40,41,44,111,46,109,61,114,46,103,101,116,85,84,67,77,111,110,116,104,40,41,44,111,46,100,61,114,46,103,101,116,85,84,67,68,97,116,101,40,41,43,40,111,46,119,43,54,41,37,55,41,58,40,105,61,40,114,61,103,112,40,95,112,40,111,46,121,44,48,44,49,41,41,41,46,103,101,116,68,97,121,40,41,44,114,61,105,62,52,124,124,48,61,61,61,105,63,107,100,46,99,101,105,108,40,114,41,58,107,100,40,114,41,44,114,61,78,100,46,111,102,102,115,101,116,40,114,44,55,42,40,111,46,86,45,49,41,41,44,111,46,121,61,114,46,103,101,116,70,117,108,108,89,101,97,114,40,41,44,111,46,109,61,114,46,103,101,116,77,111,110,116,104,40,41,44,111,46,100,61,114,46,103,101,116,68,97,116,101,40,41,43,40,111,46,119,43,54,41,37,55,41,125,101,108,115,101,40,34,87,34,105,110,32,111,124,124,34,85,34,105,110,32,111,41,38,38,40,34,119,34,105,110,32,111,124,124,40,111,46,119,61,34,117,34,105,110,32,111,63,111,46,117,37,55,58,34,87,34,105,110,32,111,63,49,58,48,41,44,105,61,34,90,34,105,110,32,111,63,121,112,40,95,112,40,111,46,121,44,48,44,49,41,41,46,103,101,116,85,84,67,68,97,121,40,41,58,103,112,40,95,112,40,111,46,121,44,48,44,49,41,41,46,103,101,116,68,97,121,40,41,44,111,46,109,61,48,44,111,46,100,61,34,87,34,105,110,32,111,63,40,111,46,119,43,54,41,37,55,43,55,42,111,46,87,45,40,105,43,53,41,37,55,58,111,46,119,43,55,42,111,46,85,45,40,105,43,54,41,37,55,41,59,114,101,116,117,114,110,34,90,34,105,110,32,111,63,40,111,46,72,43,61,111,46,90,47,49,48,48,124,48,44,111,46,77,43,61,111,46,90,37,49,48,48,44,121,112,40,111,41,41,58,103,112,40,111,41,125,125,102,117,110,99,116,105,111,110,32,78,40,116,44,110,44,101,44,114,41,123,102,111,114,40,118,97,114,32,105,44,111,44,97,61,48,44,117,61,110,46,108,101,110,103,116,104,44,99,61,101,46,108,101,110,103,116,104,59,97,60,117,59,41,123,105,102,40,114,62,61,99,41,114,101,116,117,114,110,45,49,59,105,102,40,51,55,61,61,61,40,105,61,110,46,99,104,97,114,67,111,100,101,65,116,40,97,43,43,41,41,41,123,105,102,40,105,61,110,46,99,104,97,114,65,116,40,97,43,43,41,44,33,40,111,61,120,91,105,32,105,110,32,120,112,63,110,46,99,104,97,114,65,116,40,97,43,43,41,58,105,93,41,124,124,40,114,61,111,40,116,44,101,44,114,41,41,60,48,41,114,101,116,117,114,110,45,49,125,101,108,115,101,32,105,102,40,105,33,61,101,46,99,104,97,114,67,111,100,101,65,116,40,114,43,43,41,41,114,101,116,117,114,110,45,49,125,114,101,116,117,114,110,32,114,125,114,101,116,117,114,110,32,98,46,120,61,119,40,101,44,98,41,44,98,46,88,61,119,40,114,44,98,41,44,98,46,99,61,119,40,110,44,98,41,44,109,46,120,61,119,40,101,44,109,41,44,109,46,88,61,119,40,114,44,109,41,44,109,46,99,61,119,40,110,44,109,41,44,123,102,111,114,109,97,116,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,119,40,116,43,61,34,34,44,98,41,59,114,101,116,117,114,110,32,110,46,116,111,83,116,114,105,110,103,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,125,44,110,125,44,112,97,114,115,101,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,77,40,116,43,61,34,34,44,33,49,41,59,114,101,116,117,114,110,32,110,46,116,111,83,116,114,105,110,103,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,125,44,110,125,44,117,116,99,70,111,114,109,97,116,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,119,40,116,43,61,34,34,44,109,41,59,114,101,116,117,114,110,32,110,46,116,111,83,116,114,105,110,103,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,125,44,110,125,44,117,116,99,80,97,114,115,101,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,77,40,116,43,61,34,34,44,33,48,41,59,114,101,116,117,114,110,32,110,46,116,111,83,116,114,105,110,103,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,125,44,110,125,125,125,118,97,114,32,109,112,44,120,112,61,123,34,45,34,58,34,34,44,95,58,34,32,34,44,48,58,34,48,34,125,44,119,112,61,47,94,92,115,42,92,100,43,47,44,77,112,61,47,94,37,47,44,78,112,61,47,91,92,92,94,36,42,43,63,124,91,92,93,40,41,46,123,125,93,47,103,59,102,117,110,99,116,105,111,110,32,84,112,40,116,44,110,44,101,41,123,118,97,114,32,114,61,116,60,48,63,34,45,34,58,34,34,44,105,61,40,114,63,45,116,58,116,41,43,34,34,44,111,61,105,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,114,43,40,111,60,101,63,110,101,119,32,65,114,114,97,121,40,101,45,111,43,49,41,46,106,111,105,110,40,110,41,43,105,58,105,41,125,102,117,110,99,116,105,111,110,32,65,112,40,116,41,123,114,101,116,117,114,110,32,116,46,114,101,112,108,97,99,101,40,78,112,44,34,92,92,36,38,34,41,125,102,117,110,99,116,105,111,110,32,83,112,40,116,41,123,114,101,116,117,114,110,32,110,101,119,32,82,101,103,69,120,112,40,34,94,40,63,58,34,43,116,46,109,97,112,40,65,112,41,46,106,111,105,110,40,34,124,34,41,43,34,41,34,44,34,105,34,41,125,102,117,110,99,116,105,111,110,32,107,112,40,116,41,123,102,111,114,40,118,97,114,32,110,61,123,125,44,101,61,45,49,44,114,61,116,46,108,101,110,103,116,104,59,43,43,101,60,114,59,41,110,91,116,91,101,93,46,116,111,76,111,119,101,114,67,97,115,101,40,41,93,61,101,59,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,69,112,40,116,44,110,44,101,41,123,118,97,114,32,114,61,119,112,46,101,120,101,99,40,110,46,115,108,105,99,101,40,101,44,101,43,49,41,41,59,114,101,116,117,114,110,32,114,63,40,116,46,119,61,43,114,91,48,93,44,101,43,114,91,48,93,46,108,101,110,103,116,104,41,58,45,49,125,102,117,110,99,116,105,111,110,32,67,112,40,116,44,110,44,101,41,123,118,97,114,32,114,61,119,112,46,101,120,101,99,40,110,46,115,108,105,99,101,40,101,44,101,43,49,41,41,59,114,101,116,117,114,110,32,114,63,40,116,46,117,61,43,114,91,48,93,44,101,43,114,91,48,93,46,108,101,110,103,116,104,41,58,45,49,125,102,117,110,99,116,105,111,110,32,80,112,40,116,44,110,44,101,41,123,118,97,114,32,114,61,119,112,46,101,120,101,99,40,110,46,115,108,105,99,101,40,101,44,101,43,50,41,41,59,114,101,116,117,114,110,32,114,63,40,116,46,85,61,43,114,91,48,93,44,101,43,114,91,48,93,46,108,101,110,103,116,104,41,58,45,49,125,102,117,110,99,116,105,111,110,32,122,112,40,116,44,110,44,101,41,123,118,97,114,32,114,61,119,112,46,101,120,101,99,40,110,46,115,108,105,99,101,40,101,44,101,43,50,41,41,59,114,101,116,117,114,110,32,114,63,40,116,46,86,61,43,114,91,48,93,44,101,43,114,91,48,93,46,108,101,110,103,116,104,41,58,45,49,125,102,117,110,99,116,105,111,110,32,82,112,40,116,44,110,44,101,41,123,118,97,114,32,114,61,119,112,46,101,120,101,99,40,110,46,115,108,105,99,101,40,101,44,101,43,50,41,41,59,114,101,116,117,114,110,32,114,63,40,116,46,87,61,43,114,91,48,93,44,101,43,114,91,48,93,46,108,101,110,103,116,104,41,58,45,49,125,102,117,110,99,116,105,111,110,32,68,112,40,116,44,110,44,101,41,123,118,97,114,32,114,61,119,112,46,101,120,101,99,40,110,46,115,108,105,99,101,40,101,44,101,43,52,41,41,59,114,101,116,117,114,110,32,114,63,40,116,46,121,61,43,114,91,48,93,44,101,43,114,91,48,93,46,108,101,110,103,116,104,41,58,45,49,125,102,117,110,99,116,105,111,110,32,113,112,40,116,44,110,44,101,41,123,118,97,114,32,114,61,119,112,46,101,120,101,99,40,110,46,115,108,105,99,101,40,101,44,101,43,50,41,41,59,114,101,116,117,114,110,32,114,63,40,116,46,121,61,43,114,91,48,93,43,40,43,114,91,48,93,62,54,56,63,49,57,48,48,58,50,101,51,41,44,101,43,114,91,48,93,46,108,101,110,103,116,104,41,58,45,49,125,102,117,110,99,116,105,111,110,32,76,112,40,116,44,110,44,101,41,123,118,97,114,32,114,61,47,94,40,90,41,124,40,91,43,45,93,92,100,92,100,41,40,63,58,58,63,40,92,100,92,100,41,41,63,47,46,101,120,101,99,40,110,46,115,108,105,99,101,40,101,44,101,43,54,41,41,59,114,101,116,117,114,110,32,114,63,40,116,46,90,61,114,91,49,93,63,48,58,45,40,114,91,50,93,43,40,114,91,51,93,124,124,34,48,48,34,41,41,44,101,43,114,91,48,93,46,108,101,110,103,116,104,41,58,45,49,125,102,117,110,99,116,105,111,110,32,85,112,40,116,44,110,44,101,41,123,118,97,114,32,114,61,119,112,46,101,120,101,99,40,110,46,115,108,105,99,101,40,101,44,101,43,49,41,41,59,114,101,116,117,114,110,32,114,63,40,116,46,113,61,51,42,114,91,48,93,45,51,44,101,43,114,91,48,93,46,108,101,110,103,116,104,41,58,45,49,125,102,117,110,99,116,105,111,110,32,79,112,40,116,44,110,44,101,41,123,118,97,114,32,114,61,119,112,46,101,120,101,99,40,110,46,115,108,105,99,101,40,101,44,101,43,50,41,41,59,114,101,116,117,114,110,32,114,63,40,116,46,109,61,114,91,48,93,45,49,44,101,43,114,91,48,93,46,108,101,110,103,116,104,41,58,45,49,125,102,117,110,99,116,105,111,110,32,66,112,40,116,44,110,44,101,41,123,118,97,114,32,114,61,119,112,46,101,120,101,99,40,110,46,115,108,105,99,101,40,101,44,101,43,50,41,41,59,114,101,116,117,114,110,32,114,63,40,116,46,100,61,43,114,91,48,93,44,101,43,114,91,48,93,46,108,101,110,103,116,104,41,58,45,49,125,102,117,110,99,116,105,111,110,32,70,112,40,116,44,110,44,101,41,123,118,97,114,32,114,61,119,112,46,101,120,101,99,40,110,46,115,108,105,99,101,40,101,44,101,43,51,41,41,59,114,101,116,117,114,110,32,114,63,40,116,46,109,61,48,44,116,46,100,61,43,114,91,48,93,44,101,43,114,91,48,93,46,108,101,110,103,116,104,41,58,45,49,125,102,117,110,99,116,105,111,110,32,89,112,40,116,44,110,44,101,41,123,118,97,114,32,114,61,119,112,46,101,120,101,99,40,110,46,115,108,105,99,101,40,101,44,101,43,50,41,41,59,114,101,116,117,114,110,32,114,63,40,116,46,72,61,43,114,91,48,93,44,101,43,114,91,48,93,46,108,101,110,103,116,104,41,58,45,49,125,102,117,110,99,116,105,111,110,32,73,112,40,116,44,110,44,101,41,123,118,97,114,32,114,61,119,112,46,101,120,101,99,40,110,46,115,108,105,99,101,40,101,44,101,43,50,41,41,59,114,101,116,117,114,110,32,114,63,40,116,46,77,61,43,114,91,48,93,44,101,43,114,91,48,93,46,108,101,110,103,116,104,41,58,45,49,125,102,117,110,99,116,105,111,110,32,72,112,40,116,44,110,44,101,41,123,118,97,114,32,114,61,119,112,46,101,120,101,99,40,110,46,115,108,105,99,101,40,101,44,101,43,50,41,41,59,114,101,116,117,114,110,32,114,63,40,116,46,83,61,43,114,91,48,93,44,101,43,114,91,48,93,46,108,101,110,103,116,104,41,58,45,49,125,102,117,110,99,116,105,111,110,32,106,112,40,116,44,110,44,101,41,123,118,97,114,32,114,61,119,112,46,101,120,101,99,40,110,46,115,108,105,99,101,40,101,44,101,43,51,41,41,59,114,101,116,117,114,110,32,114,63,40,116,46,76,61,43,114,91,48,93,44,101,43,114,91,48,93,46,108,101,110,103,116,104,41,58,45,49,125,102,117,110,99,116,105,111,110,32,88,112,40,116,44,110,44,101,41,123,118,97,114,32,114,61,119,112,46,101,120,101,99,40,110,46,115,108,105,99,101,40,101,44,101,43,54,41,41,59,114,101,116,117,114,110,32,114,63,40,116,46,76,61,77,97,116,104,46,102,108,111,111,114,40,114,91,48,93,47,49,101,51,41,44,101,43,114,91,48,93,46,108,101,110,103,116,104,41,58,45,49,125,102,117,110,99,116,105,111,110,32,86,112,40,116,44,110,44,101,41,123,118,97,114,32,114,61,77,112,46,101,120,101,99,40,110,46,115,108,105,99,101,40,101,44,101,43,49,41,41,59,114,101,116,117,114,110,32,114,63,101,43,114,91,48,93,46,108,101,110,103,116,104,58,45,49,125,102,117,110,99,116,105,111,110,32,71,112,40,116,44,110,44,101,41,123,118,97,114,32,114,61,119,112,46,101,120,101,99,40,110,46,115,108,105,99,101,40,101,41,41,59,114,101,116,117,114,110,32,114,63,40,116,46,81,61,43,114,91,48,93,44,101,43,114,91,48,93,46,108,101,110,103,116,104,41,58,45,49,125,102,117,110,99,116,105,111,110,32,36,112,40,116,44,110,44,101,41,123,118,97,114,32,114,61,119,112,46,101,120,101,99,40,110,46,115,108,105,99,101,40,101,41,41,59,114,101,116,117,114,110,32,114,63,40,116,46,115,61,43,114,91,48,93,44,101,43,114,91,48,93,46,108,101,110,103,116,104,41,58,45,49,125,102,117,110,99,116,105,111,110,32,87,112,40,116,44,110,41,123,114,101,116,117,114,110,32,84,112,40,116,46,103,101,116,68,97,116,101,40,41,44,110,44,50,41,125,102,117,110,99,116,105,111,110,32,90,112,40,116,44,110,41,123,114,101,116,117,114,110,32,84,112,40,116,46,103,101,116,72,111,117,114,115,40,41,44,110,44,50,41,125,102,117,110,99,116,105,111,110,32,81,112,40,116,44,110,41,123,114,101,116,117,114,110,32,84,112,40,116,46,103,101,116,72,111,117,114,115,40,41,37,49,50,124,124,49,50,44,110,44,50,41,125,102,117,110,99,116,105,111,110,32,75,112,40,116,44,110,41,123,114,101,116,117,114,110,32,84,112,40,49,43,78,100,46,99,111,117,110,116,40,72,100,40,116,41,44,116,41,44,110,44,51,41,125,102,117,110,99,116,105,111,110,32,74,112,40,116,44,110,41,123,114,101,116,117,114,110,32,84,112,40,116,46,103,101,116,77,105,108,108,105,115,101,99,111,110,100,115,40,41,44,110,44,51,41,125,102,117,110,99,116,105,111,110,32,116,118,40,116,44,110,41,123,114,101,116,117,114,110,32,74,112,40,116,44,110,41,43,34,48,48,48,34,125,102,117,110,99,116,105,111,110,32,110,118,40,116,44,110,41,123,114,101,116,117,114,110,32,84,112,40,116,46,103,101,116,77,111,110,116,104,40,41,43,49,44,110,44,50,41,125,102,117,110,99,116,105,111,110,32,101,118,40,116,44,110,41,123,114,101,116,117,114,110,32,84,112,40,116,46,103,101,116,77,105,110,117,116,101,115,40,41,44,110,44,50,41,125,102,117,110,99,116,105,111,110,32,114,118,40,116,44,110,41,123,114,101,116,117,114,110,32,84,112,40,116,46,103,101,116,83,101,99,111,110,100,115,40,41,44,110,44,50,41,125,102,117,110,99,116,105,111,110,32,105,118,40,116,41,123,118,97,114,32,110,61,116,46,103,101,116,68,97,121,40,41,59,114,101,116,117,114,110,32,48,61,61,61,110,63,55,58,110,125,102,117,110,99,116,105,111,110,32,111,118,40,116,44,110,41,123,114,101,116,117,114,110,32,84,112,40,83,100,46,99,111,117,110,116,40,72,100,40,116,41,45,49,44,116,41,44,110,44,50,41,125,102,117,110,99,116,105,111,110,32,97,118,40,116,44,110,41,123,118,97,114,32,101,61,116,46,103,101,116,68,97,121,40,41,59,114,101,116,117,114,110,32,116,61,101,62,61,52,124,124,48,61,61,61,101,63,80,100,40,116,41,58,80,100,46,99,101,105,108,40,116,41,44,84,112,40,80,100,46,99,111,117,110,116,40,72,100,40,116,41,44,116,41,43,40,52,61,61,61,72,100,40,116,41,46,103,101,116,68,97,121,40,41,41,44,110,44,50,41,125,102,117,110,99,116,105,111,110,32,117,118,40,116,41,123,114,101,116,117,114,110,32,116,46,103,101,116,68,97,121,40,41,125,102,117,110,99,116,105,111,110,32,99,118,40,116,44,110,41,123,114,101,116,117,114,110,32,84,112,40,107,100,46,99,111,117,110,116,40,72,100,40,116,41,45,49,44,116,41,44,110,44,50,41,125,102,117,110,99,116,105,111,110,32,102,118,40,116,44,110,41,123,114,101,116,117,114,110,32,84,112,40,116,46,103,101,116,70,117,108,108,89,101,97,114,40,41,37,49,48,48,44,110,44,50,41,125,102,117,110,99,116,105,111,110,32,115,118,40,116,44,110,41,123,114,101,116,117,114,110,32,84,112,40,116,46,103,101,116,70,117,108,108,89,101,97,114,40,41,37,49,101,52,44,110,44,52,41,125,102,117,110,99,116,105,111,110,32,108,118,40,116,41,123,118,97,114,32,110,61,116,46,103,101,116,84,105,109,101,122,111,110,101,79,102,102,115,101,116,40,41,59,114,101,116,117,114,110,40,110,62,48,63,34,45,34,58,40,110,42,61,45,49,44,34,43,34,41,41,43,84,112,40,110,47,54,48,124,48,44,34,48,34,44,50,41,43,84,112,40,110,37,54,48,44,34,48,34,44,50,41,125,102,117,110,99,116,105,111,110,32,104,118,40,116,44,110,41,123,114,101,116,117,114,110,32,84,112,40,116,46,103,101,116,85,84,67,68,97,116,101,40,41,44,110,44,50,41,125,102,117,110,99,116,105,111,110,32,100,118,40,116,44,110,41,123,114,101,116,117,114,110,32,84,112,40,116,46,103,101,116,85,84,67,72,111,117,114,115,40,41,44,110,44,50,41,125,102,117,110,99,116,105,111,110,32,112,118,40,116,44,110,41,123,114,101,116,117,114,110,32,84,112,40,116,46,103,101,116,85,84,67,72,111,117,114,115,40,41,37,49,50,124,124,49,50,44,110,44,50,41,125,102,117,110,99,116,105,111,110,32,118,118,40,116,44,110,41,123,114,101,116,117,114,110,32,84,112,40,49,43,87,100,46,99,111,117,110,116,40,112,112,40,116,41,44,116,41,44,110,44,51,41,125,102,117,110,99,116,105,111,110,32,103,118,40,116,44,110,41,123,114,101,116,117,114,110,32,84,112,40,116,46,103,101,116,85,84,67,77,105,108,108,105,115,101,99,111,110,100,115,40,41,44,110,44,51,41,125,102,117,110,99,116,105,111,110,32,121,118,40,116,44,110,41,123,114,101,116,117,114,110,32,103,118,40,116,44,110,41,43,34,48,48,48,34,125,102,117,110,99,116,105,111,110,32,95,118,40,116,44,110,41,123,114,101,116,117,114,110,32,84,112,40,116,46,103,101,116,85,84,67,77,111,110,116,104,40,41,43,49,44,110,44,50,41,125,102,117,110,99,116,105,111,110,32,98,118,40,116,44,110,41,123,114,101,116,117,114,110,32,84,112,40,116,46,103,101,116,85,84,67,77,105,110,117,116,101,115,40,41,44,110,44,50,41,125,102,117,110,99,116,105,111,110,32,109,118,40,116,44,110,41,123,114,101,116,117,114,110,32,84,112,40,116,46,103,101,116,85,84,67,83,101,99,111,110,100,115,40,41,44,110,44,50,41,125,102,117,110,99,116,105,111,110,32,120,118,40,116,41,123,118,97,114,32,110,61,116,46,103,101,116,85,84,67,68,97,121,40,41,59,114,101,116,117,114,110,32,48,61,61,61,110,63,55,58,110,125,102,117,110,99,116,105,111,110,32,119,118,40,116,44,110,41,123,114,101,116,117,114,110,32,84,112,40,75,100,46,99,111,117,110,116,40,112,112,40,116,41,45,49,44,116,41,44,110,44,50,41,125,102,117,110,99,116,105,111,110,32,77,118,40,116,44,110,41,123,118,97,114,32,101,61,116,46,103,101,116,85,84,67,68,97,121,40,41,59,114,101,116,117,114,110,32,116,61,101,62,61,52,124,124,48,61,61,61,101,63,101,112,40,116,41,58,101,112,46,99,101,105,108,40,116,41,44,84,112,40,101,112,46,99,111,117,110,116,40,112,112,40,116,41,44,116,41,43,40,52,61,61,61,112,112,40,116,41,46,103,101,116,85,84,67,68,97,121,40,41,41,44,110,44,50,41,125,102,117,110,99,116,105,111,110,32,78,118,40,116,41,123,114,101,116,117,114,110,32,116,46,103,101,116,85,84,67,68,97,121,40,41,125,102,117,110,99,116,105,111,110,32,84,118,40,116,44,110,41,123,114,101,116,117,114,110,32,84,112,40,74,100,46,99,111,117,110,116,40,112,112,40,116,41,45,49,44,116,41,44,110,44,50,41,125,102,117,110,99,116,105,111,110,32,65,118,40,116,44,110,41,123,114,101,116,117,114,110,32,84,112,40,116,46,103,101,116,85,84,67,70,117,108,108,89,101,97,114,40,41,37,49,48,48,44,110,44,50,41,125,102,117,110,99,116,105,111,110,32,83,118,40,116,44,110,41,123,114,101,116,117,114,110,32,84,112,40,116,46,103,101,116,85,84,67,70,117,108,108,89,101,97,114,40,41,37,49,101,52,44,110,44,52,41,125,102,117,110,99,116,105,111,110,32,107,118,40,41,123,114,101,116,117,114,110,34,43,48,48,48,48,34,125,102,117,110,99,116,105,111,110,32,69,118,40,41,123,114,101,116,117,114,110,34,37,34,125,102,117,110,99,116,105,111,110,32,67,118,40,116,41,123,114,101,116,117,114,110,43,116,125,102,117,110,99,116,105,111,110,32,80,118,40,116,41,123,114,101,116,117,114,110,32,77,97,116,104,46,102,108,111,111,114,40,43,116,47,49,101,51,41,125,102,117,110,99,116,105,111,110,32,122,118,40,110,41,123,114,101,116,117,114,110,32,109,112,61,98,112,40,110,41,44,116,46,116,105,109,101,70,111,114,109,97,116,61,109,112,46,102,111,114,109,97,116,44,116,46,116,105,109,101,80,97,114,115,101,61,109,112,46,112,97,114,115,101,44,116,46,117,116,99,70,111,114,109,97,116,61,109,112,46,117,116,99,70,111,114,109,97,116,44,116,46,117,116,99,80,97,114,115,101,61,109,112,46,117,116,99,80,97,114,115,101,44,109,112,125,122,118,40,123,100,97,116,101,84,105,109,101,58,34,37,120,44,32,37,88,34,44,100,97,116,101,58,34,37,45,109,47,37,45,100,47,37,89,34,44,116,105,109,101,58,34,37,45,73,58,37,77,58,37,83,32,37,112,34,44,112,101,114,105,111,100,115,58,91,34,65,77,34,44,34,80,77,34,93,44,100,97,121,115,58,91,34,83,117,110,100,97,121,34,44,34,77,111,110,100,97,121,34,44,34,84,117,101,115,100,97,121,34,44,34,87,101,100,110,101,115,100,97,121,34,44,34,84,104,117,114,115,100,97,121,34,44,34,70,114,105,100,97,121,34,44,34,83,97,116,117,114,100,97,121,34,93,44,115,104,111,114,116,68,97,121,115,58,91,34,83,117,110,34,44,34,77,111,110,34,44,34,84,117,101,34,44,34,87,101,100,34,44,34,84,104,117,34,44,34,70,114,105,34,44,34,83,97,116,34,93,44,109,111,110,116,104,115,58,91,34,74,97,110,117,97,114,121,34,44,34,70,101,98,114,117,97,114,121,34,44,34,77,97,114,99,104,34,44,34,65,112,114,105,108,34,44,34,77,97,121,34,44,34,74,117,110,101,34,44,34,74,117,108,121,34,44,34,65,117,103,117,115,116,34,44,34,83,101,112,116,101,109,98,101,114,34,44,34,79,99,116,111,98,101,114,34,44,34,78,111,118,101,109,98,101,114,34,44,34,68,101,99,101,109,98,101,114,34,93,44,115,104,111,114,116,77,111,110,116,104,115,58,91,34,74,97,110,34,44,34,70,101,98,34,44,34,77,97,114,34,44,34,65,112,114,34,44,34,77,97,121,34,44,34,74,117,110,34,44,34,74,117,108,34,44,34,65,117,103,34,44,34,83,101,112,34,44,34,79,99,116,34,44,34,78,111,118,34,44,34,68,101,99,34,93,125,41,59,118,97,114,32,82,118,61,68,97,116,101,46,112,114,111,116,111,116,121,112,101,46,116,111,73,83,79,83,116,114,105,110,103,63,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,116,111,73,83,79,83,116,114,105,110,103,40,41,125,58,116,46,117,116,99,70,111,114,109,97,116,40,34,37,89,45,37,109,45,37,100,84,37,72,58,37,77,58,37,83,46,37,76,90,34,41,59,118,97,114,32,68,118,61,43,110,101,119,32,68,97,116,101,40,34,50,48,48,48,45,48,49,45,48,49,84,48,48,58,48,48,58,48,48,46,48,48,48,90,34,41,63,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,110,101,119,32,68,97,116,101,40,116,41,59,114,101,116,117,114,110,32,105,115,78,97,78,40,110,41,63,110,117,108,108,58,110,125,58,116,46,117,116,99,80,97,114,115,101,40,34,37,89,45,37,109,45,37,100,84,37,72,58,37,77,58,37,83,46,37,76,90,34,41,44,113,118,61,49,101,51,44,76,118,61,54,48,42,113,118,44,85,118,61,54,48,42,76,118,44,79,118,61,50,52,42,85,118,44,66,118,61,55,42,79,118,44,70,118,61,51,48,42,79,118,44,89,118,61,51,54,53,42,79,118,59,102,117,110,99,116,105,111,110,32,73,118,40,116,41,123,114,101,116,117,114,110,32,110,101,119,32,68,97,116,101,40,116,41,125,102,117,110,99,116,105,111,110,32,72,118,40,116,41,123,114,101,116,117,114,110,32,116,32,105,110,115,116,97,110,99,101,111,102,32,68,97,116,101,63,43,116,58,43,110,101,119,32,68,97,116,101,40,43,116,41,125,102,117,110,99,116,105,111,110,32,106,118,40,116,44,110,44,114,44,105,44,111,44,97,44,117,44,99,44,102,41,123,118,97,114,32,115,61,86,104,40,66,104,44,66,104,41,44,108,61,115,46,105,110,118,101,114,116,44,104,61,115,46,100,111,109,97,105,110,44,100,61,102,40,34,46,37,76,34,41,44,112,61,102,40,34,58,37,83,34,41,44,118,61,102,40,34,37,73,58,37,77,34,41,44,103,61,102,40,34,37,73,32,37,112,34,41,44,121,61,102,40,34,37,97,32,37,100,34,41,44,95,61,102,40,34,37,98,32,37,100,34,41,44,98,61,102,40,34,37,66,34,41,44,109,61,102,40,34,37,89,34,41,44,120,61,91,91,117,44,49,44,113,118,93,44,91,117,44,53,44,53,42,113,118,93,44,91,117,44,49,53,44,49,53,42,113,118,93,44,91,117,44,51,48,44,51,48,42,113,118,93,44,91,97,44,49,44,76,118,93,44,91,97,44,53,44,53,42,76,118,93,44,91,97,44,49,53,44,49,53,42,76,118,93,44,91,97,44,51,48,44,51,48,42,76,118,93,44,91,111,44,49,44,85,118,93,44,91,111,44,51,44,51,42,85,118,93,44,91,111,44,54,44,54,42,85,118,93,44,91,111,44,49,50,44,49,50,42,85,118,93,44,91,105,44,49,44,79,118,93,44,91,105,44,50,44,50,42,79,118,93,44,91,114,44,49,44,66,118,93,44,91,110,44,49,44,70,118,93,44,91,110,44,51,44,51,42,70,118,93,44,91,116,44,49,44,89,118,93,93,59,102,117,110,99,116,105,111,110,32,77,40,101,41,123,114,101,116,117,114,110,40,117,40,101,41,60,101,63,100,58,97,40,101,41,60,101,63,112,58,111,40,101,41,60,101,63,118,58,105,40,101,41,60,101,63,103,58,110,40,101,41,60,101,63,114,40,101,41,60,101,63,121,58,95,58,116,40,101,41,60,101,63,98,58,109,41,40,101,41,125,102,117,110,99,116,105,111,110,32,78,40,110,44,114,44,105,44,111,41,123,105,102,40,110,117,108,108,61,61,110,38,38,40,110,61,49,48,41,44,34,110,117,109,98,101,114,34,61,61,116,121,112,101,111,102,32,110,41,123,118,97,114,32,97,61,77,97,116,104,46,97,98,115,40,105,45,114,41,47,110,44,117,61,101,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,91,50,93,125,41,46,114,105,103,104,116,40,120,44,97,41,59,117,61,61,61,120,46,108,101,110,103,116,104,63,40,111,61,119,40,114,47,89,118,44,105,47,89,118,44,110,41,44,110,61,116,41,58,117,63,40,111,61,40,117,61,120,91,97,47,120,91,117,45,49,93,91,50,93,60,120,91,117,93,91,50,93,47,97,63,117,45,49,58,117,93,41,91,49,93,44,110,61,117,91,48,93,41,58,40,111,61,77,97,116,104,46,109,97,120,40,119,40,114,44,105,44,110,41,44,49,41,44,110,61,99,41,125,114,101,116,117,114,110,32,110,117,108,108,61,61,111,63,110,58,110,46,101,118,101,114,121,40,111,41,125,114,101,116,117,114,110,32,115,46,105,110,118,101,114,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,101,119,32,68,97,116,101,40,108,40,116,41,41,125,44,115,46,100,111,109,97,105,110,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,104,40,122,104,46,99,97,108,108,40,116,44,72,118,41,41,58,104,40,41,46,109,97,112,40,73,118,41,125,44,115,46,116,105,99,107,115,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,44,114,61,104,40,41,44,105,61,114,91,48,93,44,111,61,114,91,114,46,108,101,110,103,116,104,45,49,93,44,97,61,111,60,105,59,114,101,116,117,114,110,32,97,38,38,40,101,61,105,44,105,61,111,44,111,61,101,41,44,101,61,40,101,61,78,40,116,44,105,44,111,44,110,41,41,63,101,46,114,97,110,103,101,40,105,44,111,43,49,41,58,91,93,44,97,63,101,46,114,101,118,101,114,115,101,40,41,58,101,125,44,115,46,116,105,99,107,70,111,114,109,97,116,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,110,63,77,58,102,40,110,41,125,44,115,46,110,105,99,101,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,61,104,40,41,59,114,101,116,117,114,110,40,116,61,78,40,116,44,101,91,48,93,44,101,91,101,46,108,101,110,103,116,104,45,49,93,44,110,41,41,63,104,40,87,104,40,101,44,116,41,41,58,115,125,44,115,46,99,111,112,121,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,106,104,40,115,44,106,118,40,116,44,110,44,114,44,105,44,111,44,97,44,117,44,99,44,102,41,41,125,44,115,125,102,117,110,99,116,105,111,110,32,88,118,40,41,123,118,97,114,32,116,44,110,44,101,44,114,44,105,44,111,61,48,44,97,61,49,44,117,61,66,104,44,99,61,33,49,59,102,117,110,99,116,105,111,110,32,102,40,110,41,123,114,101,116,117,114,110,32,105,115,78,97,78,40,110,61,43,110,41,63,105,58,117,40,48,61,61,61,101,63,46,53,58,40,110,61,40,114,40,110,41,45,116,41,42,101,44,99,63,77,97,116,104,46,109,97,120,40,48,44,77,97,116,104,46,109,105,110,40,49,44,110,41,41,58,110,41,41,125,114,101,116,117,114,110,32,102,46,100,111,109,97,105,110,61,102,117,110,99,116,105,111,110,40,105,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,116,61,114,40,111,61,43,105,91,48,93,41,44,110,61,114,40,97,61,43,105,91,49,93,41,44,101,61,116,61,61,61,110,63,48,58,49,47,40,110,45,116,41,44,102,41,58,91,111,44,97,93,125,44,102,46,99,108,97,109,112,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,99,61,33,33,116,44,102,41,58,99,125,44,102,46,105,110,116,101,114,112,111,108,97,116,111,114,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,117,61,116,44,102,41,58,117,125,44,102,46,117,110,107,110,111,119,110,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,105,61,116,44,102,41,58,105,125,44,102,117,110,99,116,105,111,110,40,105,41,123,114,101,116,117,114,110,32,114,61,105,44,116,61,105,40,111,41,44,110,61,105,40,97,41,44,101,61,116,61,61,61,110,63,48,58,49,47,40,110,45,116,41,44,102,125,125,102,117,110,99,116,105,111,110,32,86,118,40,116,44,110,41,123,114,101,116,117,114,110,32,110,46,100,111,109,97,105,110,40,116,46,100,111,109,97,105,110,40,41,41,46,105,110,116,101,114,112,111,108,97,116,111,114,40,116,46,105,110,116,101,114,112,111,108,97,116,111,114,40,41,41,46,99,108,97,109,112,40,116,46,99,108,97,109,112,40,41,41,46,117,110,107,110,111,119,110,40,116,46,117,110,107,110,111,119,110,40,41,41,125,102,117,110,99,116,105,111,110,32,71,118,40,41,123,118,97,114,32,116,61,102,100,40,88,118,40,41,41,59,114,101,116,117,114,110,32,116,46,99,111,112,121,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,86,118,40,116,44,71,118,40,41,41,46,101,120,112,111,110,101,110,116,40,116,46,101,120,112,111,110,101,110,116,40,41,41,125,44,67,104,46,97,112,112,108,121,40,116,44,97,114,103,117,109,101,110,116,115,41,125,102,117,110,99,116,105,111,110,32,36,118,40,41,123,118,97,114,32,116,44,110,44,101,44,114,44,105,44,111,44,97,44,117,61,48,44,99,61,46,53,44,102,61,49,44,115,61,66,104,44,108,61,33,49,59,102,117,110,99,116,105,111,110,32,104,40,116,41,123,114,101,116,117,114,110,32,105,115,78,97,78,40,116,61,43,116,41,63,97,58,40,116,61,46,53,43,40,40,116,61,43,111,40,116,41,41,45,110,41,42,40,116,60,110,63,114,58,105,41,44,115,40,108,63,77,97,116,104,46,109,97,120,40,48,44,77,97,116,104,46,109,105,110,40,49,44,116,41,41,58,116,41,41,125,114,101,116,117,114,110,32,104,46,100,111,109,97,105,110,61,102,117,110,99,116,105,111,110,40,97,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,116,61,111,40,117,61,43,97,91,48,93,41,44,110,61,111,40,99,61,43,97,91,49,93,41,44,101,61,111,40,102,61,43,97,91,50,93,41,44,114,61,116,61,61,61,110,63,48,58,46,53,47,40,110,45,116,41,44,105,61,110,61,61,61,101,63,48,58,46,53,47,40,101,45,110,41,44,104,41,58,91,117,44,99,44,102,93,125,44,104,46,99,108,97,109,112,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,108,61,33,33,116,44,104,41,58,108,125,44,104,46,105,110,116,101,114,112,111,108,97,116,111,114,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,115,61,116,44,104,41,58,115,125,44,104,46,117,110,107,110,111,119,110,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,97,61,116,44,104,41,58,97,125,44,102,117,110,99,116,105,111,110,40,97,41,123,114,101,116,117,114,110,32,111,61,97,44,116,61,97,40,117,41,44,110,61,97,40,99,41,44,101,61,97,40,102,41,44,114,61,116,61,61,61,110,63,48,58,46,53,47,40,110,45,116,41,44,105,61,110,61,61,61,101,63,48,58,46,53,47,40,101,45,110,41,44,104,125,125,102,117,110,99,116,105,111,110,32,87,118,40,41,123,118,97,114,32,116,61,102,100,40,36,118,40,41,41,59,114,101,116,117,114,110,32,116,46,99,111,112,121,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,86,118,40,116,44,87,118,40,41,41,46,101,120,112,111,110,101,110,116,40,116,46,101,120,112,111,110,101,110,116,40,41,41,125,44,67,104,46,97,112,112,108,121,40,116,44,97,114,103,117,109,101,110,116,115,41,125,102,117,110,99,116,105,111,110,32,90,118,40,116,41,123,102,111,114,40,118,97,114,32,110,61,116,46,108,101,110,103,116,104,47,54,124,48,44,101,61,110,101,119,32,65,114,114,97,121,40,110,41,44,114,61,48,59,114,60,110,59,41,101,91,114,93,61,34,35,34,43,116,46,115,108,105,99,101,40,54,42,114,44,54,42,43,43,114,41,59,114,101,116,117,114,110,32,101,125,118,97,114,32,81,118,61,90,118,40,34,49,102,55,55,98,52,102,102,55,102,48,101,50,99,97,48,50,99,100,54,50,55,50,56,57,52,54,55,98,100,56,99,53,54,52,98,101,51,55,55,99,50,55,102,55,102,55,102,98,99,98,100,50,50,49,55,98,101,99,102,34,41,44,75,118,61,90,118,40,34,55,102,99,57,55,102,98,101,97,101,100,52,102,100,99,48,56,54,102,102,102,102,57,57,51,56,54,99,98,48,102,48,48,50,55,102,98,102,53,98,49,55,54,54,54,54,54,54,34,41,44,74,118,61,90,118,40,34,49,98,57,101,55,55,100,57,53,102,48,50,55,53,55,48,98,51,101,55,50,57,56,97,54,54,97,54,49,101,101,54,97,98,48,50,97,54,55,54,49,100,54,54,54,54,54,54,34,41,44,116,103,61,90,118,40,34,97,54,99,101,101,51,49,102,55,56,98,52,98,50,100,102,56,97,51,51,97,48,50,99,102,98,57,97,57,57,101,51,49,97,49,99,102,100,98,102,54,102,102,102,55,102,48,48,99,97,98,50,100,54,54,97,51,100,57,97,102,102,102,102,57,57,98,49,53,57,50,56,34,41,44,110,103,61,90,118,40,34,102,98,98,52,97,101,98,51,99,100,101,51,99,99,101,98,99,53,100,101,99,98,101,52,102,101,100,57,97,54,102,102,102,102,99,99,101,53,100,56,98,100,102,100,100,97,101,99,102,50,102,50,102,50,34,41,44,101,103,61,90,118,40,34,98,51,101,50,99,100,102,100,99,100,97,99,99,98,100,53,101,56,102,52,99,97,101,52,101,54,102,53,99,57,102,102,102,50,97,101,102,49,101,50,99,99,99,99,99,99,99,99,34,41,44,114,103,61,90,118,40,34,101,52,49,97,49,99,51,55,55,101,98,56,52,100,97,102,52,97,57,56,52,101,97,51,102,102,55,102,48,48,102,102,102,102,51,51,97,54,53,54,50,56,102,55,56,49,98,102,57,57,57,57,57,57,34,41,44,105,103,61,90,118,40,34,54,54,99,50,97,53,102,99,56,100,54,50,56,100,97,48,99,98,101,55,56,97,99,51,97,54,100,56,53,52,102,102,100,57,50,102,101,53,99,52,57,52,98,51,98,51,98,51,34,41,44,111,103,61,90,118,40,34,56,100,100,51,99,55,102,102,102,102,98,51,98,101,98,97,100,97,102,98,56,48,55,50,56,48,98,49,100,51,102,100,98,52,54,50,98,51,100,101,54,57,102,99,99,100,101,53,100,57,100,57,100,57,98,99,56,48,98,100,99,99,101,98,99,53,102,102,101,100,54,102,34,41,44,97,103,61,90,118,40,34,52,101,55,57,97,55,102,50,56,101,50,99,101,49,53,55,53,57,55,54,98,55,98,50,53,57,97,49,52,102,101,100,99,57,52,57,97,102,55,97,97,49,102,102,57,100,97,55,57,99,55,53,53,102,98,97,98,48,97,98,34,41,59,102,117,110,99,116,105,111,110,32,117,103,40,116,41,123,114,101,116,117,114,110,32,112,101,40,116,91,116,46,108,101,110,103,116,104,45,49,93,41,125,118,97,114,32,99,103,61,110,101,119,32,65,114,114,97,121,40,51,41,46,99,111,110,99,97,116,40,34,100,56,98,51,54,53,102,53,102,53,102,53,53,97,98,52,97,99,34,44,34,97,54,54,49,49,97,100,102,99,50,55,100,56,48,99,100,99,49,48,49,56,53,55,49,34,44,34,97,54,54,49,49,97,100,102,99,50,55,100,102,53,102,53,102,53,56,48,99,100,99,49,48,49,56,53,55,49,34,44,34,56,99,53,49,48,97,100,56,98,51,54,53,102,54,101,56,99,51,99,55,101,97,101,53,53,97,98,52,97,99,48,49,54,54,53,101,34,44,34,56,99,53,49,48,97,100,56,98,51,54,53,102,54,101,56,99,51,102,53,102,53,102,53,99,55,101,97,101,53,53,97,98,52,97,99,48,49,54,54,53,101,34,44,34,56,99,53,49,48,97,98,102,56,49,50,100,100,102,99,50,55,100,102,54,101,56,99,51,99,55,101,97,101,53,56,48,99,100,99,49,51,53,57,55,56,102,48,49,54,54,53,101,34,44,34,56,99,53,49,48,97,98,102,56,49,50,100,100,102,99,50,55,100,102,54,101,56,99,51,102,53,102,53,102,53,99,55,101,97,101,53,56,48,99,100,99,49,51,53,57,55,56,102,48,49,54,54,53,101,34,44,34,53,52,51,48,48,53,56,99,53,49,48,97,98,102,56,49,50,100,100,102,99,50,55,100,102,54,101,56,99,51,99,55,101,97,101,53,56,48,99,100,99,49,51,53,57,55,56,102,48,49,54,54,53,101,48,48,51,99,51,48,34,44,34,53,52,51,48,48,53,56,99,53,49,48,97,98,102,56,49,50,100,100,102,99,50,55,100,102,54,101,56,99,51,102,53,102,53,102,53,99,55,101,97,101,53,56,48,99,100,99,49,51,53,57,55,56,102,48,49,54,54,53,101,48,48,51,99,51,48,34,41,46,109,97,112,40,90,118,41,44,102,103,61,117,103,40,99,103,41,44,115,103,61,110,101,119,32,65,114,114,97,121,40,51,41,46,99,111,110,99,97,116,40,34,97,102,56,100,99,51,102,55,102,55,102,55,55,102,98,102,55,98,34,44,34,55,98,51,50,57,52,99,50,97,53,99,102,97,54,100,98,97,48,48,48,56,56,51,55,34,44,34,55,98,51,50,57,52,99,50,97,53,99,102,102,55,102,55,102,55,97,54,100,98,97,48,48,48,56,56,51,55,34,44,34,55,54,50,97,56,51,97,102,56,100,99,51,101,55,100,52,101,56,100,57,102,48,100,51,55,102,98,102,55,98,49,98,55,56,51,55,34,44,34,55,54,50,97,56,51,97,102,56,100,99,51,101,55,100,52,101,56,102,55,102,55,102,55,100,57,102,48,100,51,55,102,98,102,55,98,49,98,55,56,51,55,34,44,34,55,54,50,97,56,51,57,57,55,48,97,98,99,50,97,53,99,102,101,55,100,52,101,56,100,57,102,48,100,51,97,54,100,98,97,48,53,97,97,101,54,49,49,98,55,56,51,55,34,44,34,55,54,50,97,56,51,57,57,55,48,97,98,99,50,97,53,99,102,101,55,100,52,101,56,102,55,102,55,102,55,100,57,102,48,100,51,97,54,100,98,97,48,53,97,97,101,54,49,49,98,55,56,51,55,34,44,34,52,48,48,48,52,98,55,54,50,97,56,51,57,57,55,48,97,98,99,50,97,53,99,102,101,55,100,52,101,56,100,57,102,48,100,51,97,54,100,98,97,48,53,97,97,101,54,49,49,98,55,56,51,55,48,48,52,52,49,98,34,44,34,52,48,48,48,52,98,55,54,50,97,56,51,57,57,55,48,97,98,99,50,97,53,99,102,101,55,100,52,101,56,102,55,102,55,102,55,100,57,102,48,100,51,97,54,100,98,97,48,53,97,97,101,54,49,49,98,55,56,51,55,48,48,52,52,49,98,34,41,46,109,97,112,40,90,118,41,44,108,103,61,117,103,40,115,103,41,44,104,103,61,110,101,119,32,65,114,114,97,121,40,51,41,46,99,111,110,99,97,116,40,34,101,57,97,51,99,57,102,55,102,55,102,55,97,49,100,55,54,97,34,44,34,100,48,49,99,56,98,102,49,98,54,100,97,98,56,101,49,56,54,52,100,97,99,50,54,34,44,34,100,48,49,99,56,98,102,49,98,54,100,97,102,55,102,55,102,55,98,56,101,49,56,54,52,100,97,99,50,54,34,44,34,99,53,49,98,55,100,101,57,97,51,99,57,102,100,101,48,101,102,101,54,102,53,100,48,97,49,100,55,54,97,52,100,57,50,50,49,34,44,34,99,53,49,98,55,100,101,57,97,51,99,57,102,100,101,48,101,102,102,55,102,55,102,55,101,54,102,53,100,48,97,49,100,55,54,97,52,100,57,50,50,49,34,44,34,99,53,49,98,55,100,100,101,55,55,97,101,102,49,98,54,100,97,102,100,101,48,101,102,101,54,102,53,100,48,98,56,101,49,56,54,55,102,98,99,52,49,52,100,57,50,50,49,34,44,34,99,53,49,98,55,100,100,101,55,55,97,101,102,49,98,54,100,97,102,100,101,48,101,102,102,55,102,55,102,55,101,54,102,53,100,48,98,56,101,49,56,54,55,102,98,99,52,49,52,100,57,50,50,49,34,44,34,56,101,48,49,53,50,99,53,49,98,55,100,100,101,55,55,97,101,102,49,98,54,100,97,102,100,101,48,101,102,101,54,102,53,100,48,98,56,101,49,56,54,55,102,98,99,52,49,52,100,57,50,50,49,50,55,54,52,49,57,34,44,34,56,101,48,49,53,50,99,53,49,98,55,100,100,101,55,55,97,101,102,49,98,54,100,97,102,100,101,48,101,102,102,55,102,55,102,55,101,54,102,53,100,48,98,56,101,49,56,54,55,102,98,99,52,49,52,100,57,50,50,49,50,55,54,52,49,57,34,41,46,109,97,112,40,90,118,41,44,100,103,61,117,103,40,104,103,41,44,112,103,61,110,101,119,32,65,114,114,97,121,40,51,41,46,99,111,110,99,97,116,40,34,57,57,56,101,99,51,102,55,102,55,102,55,102,49,97,51,52,48,34,44,34,53,101,51,99,57,57,98,50,97,98,100,50,102,100,98,56,54,51,101,54,54,49,48,49,34,44,34,53,101,51,99,57,57,98,50,97,98,100,50,102,55,102,55,102,55,102,100,98,56,54,51,101,54,54,49,48,49,34,44,34,53,52,50,55,56,56,57,57,56,101,99,51,100,56,100,97,101,98,102,101,101,48,98,54,102,49,97,51,52,48,98,51,53,56,48,54,34,44,34,53,52,50,55,56,56,57,57,56,101,99,51,100,56,100,97,101,98,102,55,102,55,102,55,102,101,101,48,98,54,102,49,97,51,52,48,98,51,53,56,48,54,34,44,34,53,52,50,55,56,56,56,48,55,51,97,99,98,50,97,98,100,50,100,56,100,97,101,98,102,101,101,48,98,54,102,100,98,56,54,51,101,48,56,50,49,52,98,51,53,56,48,54,34,44,34,53,52,50,55,56,56,56,48,55,51,97,99,98,50,97,98,100,50,100,56,100,97,101,98,102,55,102,55,102,55,102,101,101,48,98,54,102,100,98,56,54,51,101,48,56,50,49,52,98,51,53,56,48,54,34,44,34,50,100,48,48,52,98,53,52,50,55,56,56,56,48,55,51,97,99,98,50,97,98,100,50,100,56,100,97,101,98,102,101,101,48,98,54,102,100,98,56,54,51,101,48,56,50,49,52,98,51,53,56,48,54,55,102,51,98,48,56,34,44,34,50,100,48,48,52,98,53,52,50,55,56,56,56,48,55,51,97,99,98,50,97,98,100,50,100,56,100,97,101,98,102,55,102,55,102,55,102,101,101,48,98,54,102,100,98,56,54,51,101,48,56,50,49,52,98,51,53,56,48,54,55,102,51,98,48,56,34,41,46,109,97,112,40,90,118,41,44,118,103,61,117,103,40,112,103,41,44,103,103,61,110,101,119,32,65,114,114,97,121,40,51,41,46,99,111,110,99,97,116,40,34,101,102,56,97,54,50,102,55,102,55,102,55,54,55,97,57,99,102,34,44,34,99,97,48,48,50,48,102,52,97,53,56,50,57,50,99,53,100,101,48,53,55,49,98,48,34,44,34,99,97,48,48,50,48,102,52,97,53,56,50,102,55,102,55,102,55,57,50,99,53,100,101,48,53,55,49,98,48,34,44,34,98,50,49,56,50,98,101,102,56,97,54,50,102,100,100,98,99,55,100,49,101,53,102,48,54,55,97,57,99,102,50,49,54,54,97,99,34,44,34,98,50,49,56,50,98,101,102,56,97,54,50,102,100,100,98,99,55,102,55,102,55,102,55,100,49,101,53,102,48,54,55,97,57,99,102,50,49,54,54,97,99,34,44,34,98,50,49,56,50,98,100,54,54,48,52,100,102,52,97,53,56,50,102,100,100,98,99,55,100,49,101,53,102,48,57,50,99,53,100,101,52,51,57,51,99,51,50,49,54,54,97,99,34,44,34,98,50,49,56,50,98,100,54,54,48,52,100,102,52,97,53,56,50,102,100,100,98,99,55,102,55,102,55,102,55,100,49,101,53,102,48,57,50,99,53,100,101,52,51,57,51,99,51,50,49,54,54,97,99,34,44,34,54,55,48,48,49,102,98,50,49,56,50,98,100,54,54,48,52,100,102,52,97,53,56,50,102,100,100,98,99,55,100,49,101,53,102,48,57,50,99,53,100,101,52,51,57,51,99,51,50,49,54,54,97,99,48,53,51,48,54,49,34,44,34,54,55,48,48,49,102,98,50,49,56,50,98,100,54,54,48,52,100,102,52,97,53,56,50,102,100,100,98,99,55,102,55,102,55,102,55,100,49,101,53,102,48,57,50,99,53,100,101,52,51,57,51,99,51,50,49,54,54,97,99,48,53,51,48,54,49,34,41,46,109,97,112,40,90,118,41,44,121,103,61,117,103,40,103,103,41,44,95,103,61,110,101,119,32,65,114,114,97,121,40,51,41,46,99,111,110,99,97,116,40,34,101,102,56,97,54,50,102,102,102,102,102,102,57,57,57,57,57,57,34,44,34,99,97,48,48,50,48,102,52,97,53,56,50,98,97,98,97,98,97,52,48,52,48,52,48,34,44,34,99,97,48,48,50,48,102,52,97,53,56,50,102,102,102,102,102,102,98,97,98,97,98,97,52,48,52,48,52,48,34,44,34,98,50,49,56,50,98,101,102,56,97,54,50,102,100,100,98,99,55,101,48,101,48,101,48,57,57,57,57,57,57,52,100,52,100,52,100,34,44,34,98,50,49,56,50,98,101,102,56,97,54,50,102,100,100,98,99,55,102,102,102,102,102,102,101,48,101,48,101,48,57,57,57,57,57,57,52,100,52,100,52,100,34,44,34,98,50,49,56,50,98,100,54,54,48,52,100,102,52,97,53,56,50,102,100,100,98,99,55,101,48,101,48,101,48,98,97,98,97,98,97,56,55,56,55,56,55,52,100,52,100,52,100,34,44,34,98,50,49,56,50,98,100,54,54,48,52,100,102,52,97,53,56,50,102,100,100,98,99,55,102,102,102,102,102,102,101,48,101,48,101,48,98,97,98,97,98,97,56,55,56,55,56,55,52,100,52,100,52,100,34,44,34,54,55,48,48,49,102,98,50,49,56,50,98,100,54,54,48,52,100,102,52,97,53,56,50,102,100,100,98,99,55,101,48,101,48,101,48,98,97,98,97,98,97,56,55,56,55,56,55,52,100,52,100,52,100,49,97,49,97,49,97,34,44,34,54,55,48,48,49,102,98,50,49,56,50,98,100,54,54,48,52,100,102,52,97,53,56,50,102,100,100,98,99,55,102,102,102,102,102,102,101,48,101,48,101,48,98,97,98,97,98,97,56,55,56,55,56,55,52,100,52,100,52,100,49,97,49,97,49,97,34,41,46,109,97,112,40,90,118,41,44,98,103,61,117,103,40,95,103,41,44,109,103,61,110,101,119,32,65,114,114,97,121,40,51,41,46,99,111,110,99,97,116,40,34,102,99,56,100,53,57,102,102,102,102,98,102,57,49,98,102,100,98,34,44,34,100,55,49,57,49,99,102,100,97,101,54,49,97,98,100,57,101,57,50,99,55,98,98,54,34,44,34,100,55,49,57,49,99,102,100,97,101,54,49,102,102,102,102,98,102,97,98,100,57,101,57,50,99,55,98,98,54,34,44,34,100,55,51,48,50,55,102,99,56,100,53,57,102,101,101,48,57,48,101,48,102,51,102,56,57,49,98,102,100,98,52,53,55,53,98,52,34,44,34,100,55,51,48,50,55,102,99,56,100,53,57,102,101,101,48,57,48,102,102,102,102,98,102,101,48,102,51,102,56,57,49,98,102,100,98,52,53,55,53,98,52,34,44,34,100,55,51,48,50,55,102,52,54,100,52,51,102,100,97,101,54,49,102,101,101,48,57,48,101,48,102,51,102,56,97,98,100,57,101,57,55,52,97,100,100,49,52,53,55,53,98,52,34,44,34,100,55,51,48,50,55,102,52,54,100,52,51,102,100,97,101,54,49,102,101,101,48,57,48,102,102,102,102,98,102,101,48,102,51,102,56,97,98,100,57,101,57,55,52,97,100,100,49,52,53,55,53,98,52,34,44,34,97,53,48,48,50,54,100,55,51,48,50,55,102,52,54,100,52,51,102,100,97,101,54,49,102,101,101,48,57,48,101,48,102,51,102,56,97,98,100,57,101,57,55,52,97,100,100,49,52,53,55,53,98,52,51,49,51,54,57,53,34,44,34,97,53,48,48,50,54,100,55,51,48,50,55,102,52,54,100,52,51,102,100,97,101,54,49,102,101,101,48,57,48,102,102,102,102,98,102,101,48,102,51,102,56,97,98,100,57,101,57,55,52,97,100,100,49,52,53,55,53,98,52,51,49,51,54,57,53,34,41,46,109,97,112,40,90,118,41,44,120,103,61,117,103,40,109,103,41,44,119,103,61,110,101,119,32,65,114,114,97,121,40,51,41,46,99,111,110,99,97,116,40,34,102,99,56,100,53,57,102,102,102,102,98,102,57,49,99,102,54,48,34,44,34,100,55,49,57,49,99,102,100,97,101,54,49,97,54,100,57,54,97,49,97,57,54,52,49,34,44,34,100,55,49,57,49,99,102,100,97,101,54,49,102,102,102,102,98,102,97,54,100,57,54,97,49,97,57,54,52,49,34,44,34,100,55,51,48,50,55,102,99,56,100,53,57,102,101,101,48,56,98,100,57,101,102,56,98,57,49,99,102,54,48,49,97,57,56,53,48,34,44,34,100,55,51,48,50,55,102,99,56,100,53,57,102,101,101,48,56,98,102,102,102,102,98,102,100,57,101,102,56,98,57,49,99,102,54,48,49,97,57,56,53,48,34,44,34,100,55,51,48,50,55,102,52,54,100,52,51,102,100,97,101,54,49,102,101,101,48,56,98,100,57,101,102,56,98,97,54,100,57,54,97,54,54,98,100,54,51,49,97,57,56,53,48,34,44,34,100,55,51,48,50,55,102,52,54,100,52,51,102,100,97,101,54,49,102,101,101,48,56,98,102,102,102,102,98,102,100,57,101,102,56,98,97,54,100,57,54,97,54,54,98,100,54,51,49,97,57,56,53,48,34,44,34,97,53,48,48,50,54,100,55,51,48,50,55,102,52,54,100,52,51,102,100,97,101,54,49,102,101,101,48,56,98,100,57,101,102,56,98,97,54,100,57,54,97,54,54,98,100,54,51,49,97,57,56,53,48,48,48,54,56,51,55,34,44,34,97,53,48,48,50,54,100,55,51,48,50,55,102,52,54,100,52,51,102,100,97,101,54,49,102,101,101,48,56,98,102,102,102,102,98,102,100,57,101,102,56,98,97,54,100,57,54,97,54,54,98,100,54,51,49,97,57,56,53,48,48,48,54,56,51,55,34,41,46,109,97,112,40,90,118,41,44,77,103,61,117,103,40,119,103,41,44,78,103,61,110,101,119,32,65,114,114,97,121,40,51,41,46,99,111,110,99,97,116,40,34,102,99,56,100,53,57,102,102,102,102,98,102,57,57,100,53,57,52,34,44,34,100,55,49,57,49,99,102,100,97,101,54,49,97,98,100,100,97,52,50,98,56,51,98,97,34,44,34,100,55,49,57,49,99,102,100,97,101,54,49,102,102,102,102,98,102,97,98,100,100,97,52,50,98,56,51,98,97,34,44,34,100,53,51,101,52,102,102,99,56,100,53,57,102,101,101,48,56,98,101,54,102,53,57,56,57,57,100,53,57,52,51,50,56,56,98,100,34,44,34,100,53,51,101,52,102,102,99,56,100,53,57,102,101,101,48,56,98,102,102,102,102,98,102,101,54,102,53,57,56,57,57,100,53,57,52,51,50,56,56,98,100,34,44,34,100,53,51,101,52,102,102,52,54,100,52,51,102,100,97,101,54,49,102,101,101,48,56,98,101,54,102,53,57,56,97,98,100,100,97,52,54,54,99,50,97,53,51,50,56,56,98,100,34,44,34,100,53,51,101,52,102,102,52,54,100,52,51,102,100,97,101,54,49,102,101,101,48,56,98,102,102,102,102,98,102,101,54,102,53,57,56,97,98,100,100,97,52,54,54,99,50,97,53,51,50,56,56,98,100,34,44,34,57,101,48,49,52,50,100,53,51,101,52,102,102,52,54,100,52,51,102,100,97,101,54,49,102,101,101,48,56,98,101,54,102,53,57,56,97,98,100,100,97,52,54,54,99,50,97,53,51,50,56,56,98,100,53,101,52,102,97,50,34,44,34,57,101,48,49,52,50,100,53,51,101,52,102,102,52,54,100,52,51,102,100,97,101,54,49,102,101,101,48,56,98,102,102,102,102,98,102,101,54,102,53,57,56,97,98,100,100,97,52,54,54,99,50,97,53,51,50,56,56,98,100,53,101,52,102,97,50,34,41,46,109,97,112,40,90,118,41,44,84,103,61,117,103,40,78,103,41,44,65,103,61,110,101,119,32,65,114,114,97,121,40,51,41,46,99,111,110,99,97,116,40,34,101,53,102,53,102,57,57,57,100,56,99,57,50,99,97,50,53,102,34,44,34,101,100,102,56,102,98,98,50,101,50,101,50,54,54,99,50,97,52,50,51,56,98,52,53,34,44,34,101,100,102,56,102,98,98,50,101,50,101,50,54,54,99,50,97,52,50,99,97,50,53,102,48,48,54,100,50,99,34,44,34,101,100,102,56,102,98,99,99,101,99,101,54,57,57,100,56,99,57,54,54,99,50,97,52,50,99,97,50,53,102,48,48,54,100,50,99,34,44,34,101,100,102,56,102,98,99,99,101,99,101,54,57,57,100,56,99,57,54,54,99,50,97,52,52,49,97,101,55,54,50,51,56,98,52,53,48,48,53,56,50,52,34,44,34,102,55,102,99,102,100,101,53,102,53,102,57,99,99,101,99,101,54,57,57,100,56,99,57,54,54,99,50,97,52,52,49,97,101,55,54,50,51,56,98,52,53,48,48,53,56,50,52,34,44,34,102,55,102,99,102,100,101,53,102,53,102,57,99,99,101,99,101,54,57,57,100,56,99,57,54,54,99,50,97,52,52,49,97,101,55,54,50,51,56,98,52,53,48,48,54,100,50,99,48,48,52,52,49,98,34,41,46,109,97,112,40,90,118,41,44,83,103,61,117,103,40,65,103,41,44,107,103,61,110,101,119,32,65,114,114,97,121,40,51,41,46,99,111,110,99,97,116,40,34,101,48,101,99,102,52,57,101,98,99,100,97,56,56,53,54,97,55,34,44,34,101,100,102,56,102,98,98,51,99,100,101,51,56,99,57,54,99,54,56,56,52,49,57,100,34,44,34,101,100,102,56,102,98,98,51,99,100,101,51,56,99,57,54,99,54,56,56,53,54,97,55,56,49,48,102,55,99,34,44,34,101,100,102,56,102,98,98,102,100,51,101,54,57,101,98,99,100,97,56,99,57,54,99,54,56,56,53,54,97,55,56,49,48,102,55,99,34,44,34,101,100,102,56,102,98,98,102,100,51,101,54,57,101,98,99,100,97,56,99,57,54,99,54,56,99,54,98,98,49,56,56,52,49,57,100,54,101,48,49,54,98,34,44,34,102,55,102,99,102,100,101,48,101,99,102,52,98,102,100,51,101,54,57,101,98,99,100,97,56,99,57,54,99,54,56,99,54,98,98,49,56,56,52,49,57,100,54,101,48,49,54,98,34,44,34,102,55,102,99,102,100,101,48,101,99,102,52,98,102,100,51,101,54,57,101,98,99,100,97,56,99,57,54,99,54,56,99,54,98,98,49,56,56,52,49,57,100,56,49,48,102,55,99,52,100,48,48,52,98,34,41,46,109,97,112,40,90,118,41,44,69,103,61,117,103,40,107,103,41,44,67,103,61,110,101,119,32,65,114,114,97,121,40,51,41,46,99,111,110,99,97,116,40,34,101,48,102,51,100,98,97,56,100,100,98,53,52,51,97,50,99,97,34,44,34,102,48,102,57,101,56,98,97,101,52,98,99,55,98,99,99,99,52,50,98,56,99,98,101,34,44,34,102,48,102,57,101,56,98,97,101,52,98,99,55,98,99,99,99,52,52,51,97,50,99,97,48,56,54,56,97,99,34,44,34,102,48,102,57,101,56,99,99,101,98,99,53,97,56,100,100,98,53,55,98,99,99,99,52,52,51,97,50,99,97,48,56,54,56,97,99,34,44,34,102,48,102,57,101,56,99,99,101,98,99,53,97,56,100,100,98,53,55,98,99,99,99,52,52,101,98,51,100,51,50,98,56,99,98,101,48,56,53,56,57,101,34,44,34,102,55,102,99,102,48,101,48,102,51,100,98,99,99,101,98,99,53,97,56,100,100,98,53,55,98,99,99,99,52,52,101,98,51,100,51,50,98,56,99,98,101,48,56,53,56,57,101,34,44,34,102,55,102,99,102,48,101,48,102,51,100,98,99,99,101,98,99,53,97,56,100,100,98,53,55,98,99,99,99,52,52,101,98,51,100,51,50,98,56,99,98,101,48,56,54,56,97,99,48,56,52,48,56,49,34,41,46,109,97,112,40,90,118,41,44,80,103,61,117,103,40,67,103,41,44,122,103,61,110,101,119,32,65,114,114,97,121,40,51,41,46,99,111,110,99,97,116,40,34,102,101,101,56,99,56,102,100,98,98,56,52,101,51,52,97,51,51,34,44,34,102,101,102,48,100,57,102,100,99,99,56,97,102,99,56,100,53,57,100,55,51,48,49,102,34,44,34,102,101,102,48,100,57,102,100,99,99,56,97,102,99,56,100,53,57,101,51,52,97,51,51,98,51,48,48,48,48,34,44,34,102,101,102,48,100,57,102,100,100,52,57,101,102,100,98,98,56,52,102,99,56,100,53,57,101,51,52,97,51,51,98,51,48,48,48,48,34,44,34,102,101,102,48,100,57,102,100,100,52,57,101,102,100,98,98,56,52,102,99,56,100,53,57,101,102,54,53,52,56,100,55,51,48,49,102,57,57,48,48,48,48,34,44,34,102,102,102,55,101,99,102,101,101,56,99,56,102,100,100,52,57,101,102,100,98,98,56,52,102,99,56,100,53,57,101,102,54,53,52,56,100,55,51,48,49,102,57,57,48,48,48,48,34,44,34,102,102,102,55,101,99,102,101,101,56,99,56,102,100,100,52,57,101,102,100,98,98,56,52,102,99,56,100,53,57,101,102,54,53,52,56,100,55,51,48,49,102,98,51,48,48,48,48,55,102,48,48,48,48,34,41,46,109,97,112,40,90,118,41,44,82,103,61,117,103,40,122,103,41,44,68,103,61,110,101,119,32,65,114,114,97,121,40,51,41,46,99,111,110,99,97,116,40,34,101,99,101,50,102,48,97,54,98,100,100,98,49,99,57,48,57,57,34,44,34,102,54,101,102,102,55,98,100,99,57,101,49,54,55,97,57,99,102,48,50,56,49,56,97,34,44,34,102,54,101,102,102,55,98,100,99,57,101,49,54,55,97,57,99,102,49,99,57,48,57,57,48,49,54,99,53,57,34,44,34,102,54,101,102,102,55,100,48,100,49,101,54,97,54,98,100,100,98,54,55,97,57,99,102,49,99,57,48,57,57,48,49,54,99,53,57,34,44,34,102,54,101,102,102,55,100,48,100,49,101,54,97,54,98,100,100,98,54,55,97,57,99,102,51,54,57,48,99,48,48,50,56,49,56,97,48,49,54,52,53,48,34,44,34,102,102,102,55,102,98,101,99,101,50,102,48,100,48,100,49,101,54,97,54,98,100,100,98,54,55,97,57,99,102,51,54,57,48,99,48,48,50,56,49,56,97,48,49,54,52,53,48,34,44,34,102,102,102,55,102,98,101,99,101,50,102,48,100,48,100,49,101,54,97,54,98,100,100,98,54,55,97,57,99,102,51,54,57,48,99,48,48,50,56,49,56,97,48,49,54,99,53,57,48,49,52,54,51,54,34,41,46,109,97,112,40,90,118,41,44,113,103,61,117,103,40,68,103,41,44,76,103,61,110,101,119,32,65,114,114,97,121,40,51,41,46,99,111,110,99,97,116,40,34,101,99,101,55,102,50,97,54,98,100,100,98,50,98,56,99,98,101,34,44,34,102,49,101,101,102,54,98,100,99,57,101,49,55,52,97,57,99,102,48,53,55,48,98,48,34,44,34,102,49,101,101,102,54,98,100,99,57,101,49,55,52,97,57,99,102,50,98,56,99,98,101,48,52,53,97,56,100,34,44,34,102,49,101,101,102,54,100,48,100,49,101,54,97,54,98,100,100,98,55,52,97,57,99,102,50,98,56,99,98,101,48,52,53,97,56,100,34,44,34,102,49,101,101,102,54,100,48,100,49,101,54,97,54,98,100,100,98,55,52,97,57,99,102,51,54,57,48,99,48,48,53,55,48,98,48,48,51,52,101,55,98,34,44,34,102,102,102,55,102,98,101,99,101,55,102,50,100,48,100,49,101,54,97,54,98,100,100,98,55,52,97,57,99,102,51,54,57,48,99,48,48,53,55,48,98,48,48,51,52,101,55,98,34,44,34,102,102,102,55,102,98,101,99,101,55,102,50,100,48,100,49,101,54,97,54,98,100,100,98,55,52,97,57,99,102,51,54,57,48,99,48,48,53,55,48,98,48,48,52,53,97,56,100,48,50,51,56,53,56,34,41,46,109,97,112,40,90,118,41,44,85,103,61,117,103,40,76,103,41,44,79,103,61,110,101,119,32,65,114,114,97,121,40,51,41,46,99,111,110,99,97,116,40,34,101,55,101,49,101,102,99,57,57,52,99,55,100,100,49,99,55,55,34,44,34,102,49,101,101,102,54,100,55,98,53,100,56,100,102,54,53,98,48,99,101,49,50,53,54,34,44,34,102,49,101,101,102,54,100,55,98,53,100,56,100,102,54,53,98,48,100,100,49,99,55,55,57,56,48,48,52,51,34,44,34,102,49,101,101,102,54,100,52,98,57,100,97,99,57,57,52,99,55,100,102,54,53,98,48,100,100,49,99,55,55,57,56,48,48,52,51,34,44,34,102,49,101,101,102,54,100,52,98,57,100,97,99,57,57,52,99,55,100,102,54,53,98,48,101,55,50,57,56,97,99,101,49,50,53,54,57,49,48,48,51,102,34,44,34,102,55,102,52,102,57,101,55,101,49,101,102,100,52,98,57,100,97,99,57,57,52,99,55,100,102,54,53,98,48,101,55,50,57,56,97,99,101,49,50,53,54,57,49,48,48,51,102,34,44,34,102,55,102,52,102,57,101,55,101,49,101,102,100,52,98,57,100,97,99,57,57,52,99,55,100,102,54,53,98,48,101,55,50,57,56,97,99,101,49,50,53,54,57,56,48,48,52,51,54,55,48,48,49,102,34,41,46,109,97,112,40,90,118,41,44,66,103,61,117,103,40,79,103,41,44,70,103,61,110,101,119,32,65,114,114,97,121,40,51,41,46,99,111,110,99,97,116,40,34,102,100,101,48,100,100,102,97,57,102,98,53,99,53,49,98,56,97,34,44,34,102,101,101,98,101,50,102,98,98,52,98,57,102,55,54,56,97,49,97,101,48,49,55,101,34,44,34,102,101,101,98,101,50,102,98,98,52,98,57,102,55,54,56,97,49,99,53,49,98,56,97,55,97,48,49,55,55,34,44,34,102,101,101,98,101,50,102,99,99,53,99,48,102,97,57,102,98,53,102,55,54,56,97,49,99,53,49,98,56,97,55,97,48,49,55,55,34,44,34,102,101,101,98,101,50,102,99,99,53,99,48,102,97,57,102,98,53,102,55,54,56,97,49,100,100,51,52,57,55,97,101,48,49,55,101,55,97,48,49,55,55,34,44,34,102,102,102,55,102,51,102,100,101,48,100,100,102,99,99,53,99,48,102,97,57,102,98,53,102,55,54,56,97,49,100,100,51,52,57,55,97,101,48,49,55,101,55,97,48,49,55,55,34,44,34,102,102,102,55,102,51,102,100,101,48,100,100,102,99,99,53,99,48,102,97,57,102,98,53,102,55,54,56,97,49,100,100,51,52,57,55,97,101,48,49,55,101,55,97,48,49,55,55,52,57,48,48,54,97,34,41,46,109,97,112,40,90,118,41,44,89,103,61,117,103,40,70,103,41,44,73,103,61,110,101,119,32,65,114,114,97,121,40,51,41,46,99,111,110,99,97,116,40,34,101,100,102,56,98,49,55,102,99,100,98,98,50,99,55,102,98,56,34,44,34,102,102,102,102,99,99,97,49,100,97,98,52,52,49,98,54,99,52,50,50,53,101,97,56,34,44,34,102,102,102,102,99,99,97,49,100,97,98,52,52,49,98,54,99,52,50,99,55,102,98,56,50,53,51,52,57,52,34,44,34,102,102,102,102,99,99,99,55,101,57,98,52,55,102,99,100,98,98,52,49,98,54,99,52,50,99,55,102,98,56,50,53,51,52,57,52,34,44,34,102,102,102,102,99,99,99,55,101,57,98,52,55,102,99,100,98,98,52,49,98,54,99,52,49,100,57,49,99,48,50,50,53,101,97,56,48,99,50,99,56,52,34,44,34,102,102,102,102,100,57,101,100,102,56,98,49,99,55,101,57,98,52,55,102,99,100,98,98,52,49,98,54,99,52,49,100,57,49,99,48,50,50,53,101,97,56,48,99,50,99,56,52,34,44,34,102,102,102,102,100,57,101,100,102,56,98,49,99,55,101,57,98,52,55,102,99,100,98,98,52,49,98,54,99,52,49,100,57,49,99,48,50,50,53,101,97,56,50,53,51,52,57,52,48,56,49,100,53,56,34,41,46,109,97,112,40,90,118,41,44,72,103,61,117,103,40,73,103,41,44,106,103,61,110,101,119,32,65,114,114,97,121,40,51,41,46,99,111,110,99,97,116,40,34,102,55,102,99,98,57,97,100,100,100,56,101,51,49,97,51,53,52,34,44,34,102,102,102,102,99,99,99,50,101,54,57,57,55,56,99,54,55,57,50,51,56,52,52,51,34,44,34,102,102,102,102,99,99,99,50,101,54,57,57,55,56,99,54,55,57,51,49,97,51,53,52,48,48,54,56,51,55,34,44,34,102,102,102,102,99,99,100,57,102,48,97,51,97,100,100,100,56,101,55,56,99,54,55,57,51,49,97,51,53,52,48,48,54,56,51,55,34,44,34,102,102,102,102,99,99,100,57,102,48,97,51,97,100,100,100,56,101,55,56,99,54,55,57,52,49,97,98,53,100,50,51,56,52,52,51,48,48,53,97,51,50,34,44,34,102,102,102,102,101,53,102,55,102,99,98,57,100,57,102,48,97,51,97,100,100,100,56,101,55,56,99,54,55,57,52,49,97,98,53,100,50,51,56,52,52,51,48,48,53,97,51,50,34,44,34,102,102,102,102,101,53,102,55,102,99,98,57,100,57,102,48,97,51,97,100,100,100,56,101,55,56,99,54,55,57,52,49,97,98,53,100,50,51,56,52,52,51,48,48,54,56,51,55,48,48,52,53,50,57,34,41,46,109,97,112,40,90,118,41,44,88,103,61,117,103,40,106,103,41,44,86,103,61,110,101,119,32,65,114,114,97,121,40,51,41,46,99,111,110,99,97,116,40,34,102,102,102,55,98,99,102,101,99,52,52,102,100,57,53,102,48,101,34,44,34,102,102,102,102,100,52,102,101,100,57,56,101,102,101,57,57,50,57,99,99,52,99,48,50,34,44,34,102,102,102,102,100,52,102,101,100,57,56,101,102,101,57,57,50,57,100,57,53,102,48,101,57,57,51,52,48,52,34,44,34,102,102,102,102,100,52,102,101,101,51,57,49,102,101,99,52,52,102,102,101,57,57,50,57,100,57,53,102,48,101,57,57,51,52,48,52,34,44,34,102,102,102,102,100,52,102,101,101,51,57,49,102,101,99,52,52,102,102,101,57,57,50,57,101,99,55,48,49,52,99,99,52,99,48,50,56,99,50,100,48,52,34,44,34,102,102,102,102,101,53,102,102,102,55,98,99,102,101,101,51,57,49,102,101,99,52,52,102,102,101,57,57,50,57,101,99,55,48,49,52,99,99,52,99,48,50,56,99,50,100,48,52,34,44,34,102,102,102,102,101,53,102,102,102,55,98,99,102,101,101,51,57,49,102,101,99,52,52,102,102,101,57,57,50,57,101,99,55,48,49,52,99,99,52,99,48,50,57,57,51,52,48,52,54,54,50,53,48,54,34,41,46,109,97,112,40,90,118,41,44,71,103,61,117,103,40,86,103,41,44,36,103,61,110,101,119,32,65,114,114,97,121,40,51,41,46,99,111,110,99,97,116,40,34,102,102,101,100,97,48,102,101,98,50,52,99,102,48,51,98,50,48,34,44,34,102,102,102,102,98,50,102,101,99,99,53,99,102,100,56,100,51,99,101,51,49,97,49,99,34,44,34,102,102,102,102,98,50,102,101,99,99,53,99,102,100,56,100,51,99,102,48,51,98,50,48,98,100,48,48,50,54,34,44,34,102,102,102,102,98,50,102,101,100,57,55,54,102,101,98,50,52,99,102,100,56,100,51,99,102,48,51,98,50,48,98,100,48,48,50,54,34,44,34,102,102,102,102,98,50,102,101,100,57,55,54,102,101,98,50,52,99,102,100,56,100,51,99,102,99,52,101,50,97,101,51,49,97,49,99,98,49,48,48,50,54,34,44,34,102,102,102,102,99,99,102,102,101,100,97,48,102,101,100,57,55,54,102,101,98,50,52,99,102,100,56,100,51,99,102,99,52,101,50,97,101,51,49,97,49,99,98,49,48,48,50,54,34,44,34,102,102,102,102,99,99,102,102,101,100,97,48,102,101,100,57,55,54,102,101,98,50,52,99,102,100,56,100,51,99,102,99,52,101,50,97,101,51,49,97,49,99,98,100,48,48,50,54,56,48,48,48,50,54,34,41,46,109,97,112,40,90,118,41,44,87,103,61,117,103,40,36,103,41,44,90,103,61,110,101,119,32,65,114,114,97,121,40,51,41,46,99,111,110,99,97,116,40,34,100,101,101,98,102,55,57,101,99,97,101,49,51,49,56,50,98,100,34,44,34,101,102,102,51,102,102,98,100,100,55,101,55,54,98,97,101,100,54,50,49,55,49,98,53,34,44,34,101,102,102,51,102,102,98,100,100,55,101,55,54,98,97,101,100,54,51,49,56,50,98,100,48,56,53,49,57,99,34,44,34,101,102,102,51,102,102,99,54,100,98,101,102,57,101,99,97,101,49,54,98,97,101,100,54,51,49,56,50,98,100,48,56,53,49,57,99,34,44,34,101,102,102,51,102,102,99,54,100,98,101,102,57,101,99,97,101,49,54,98,97,101,100,54,52,50,57,50,99,54,50,49,55,49,98,53,48,56,52,53,57,52,34,44,34,102,55,102,98,102,102,100,101,101,98,102,55,99,54,100,98,101,102,57,101,99,97,101,49,54,98,97,101,100,54,52,50,57,50,99,54,50,49,55,49,98,53,48,56,52,53,57,52,34,44,34,102,55,102,98,102,102,100,101,101,98,102,55,99,54,100,98,101,102,57,101,99,97,101,49,54,98,97,101,100,54,52,50,57,50,99,54,50,49,55,49,98,53,48,56,53,49,57,99,48,56,51,48,54,98,34,41,46,109,97,112,40,90,118,41,44,81,103,61,117,103,40,90,103,41,44,75,103,61,110,101,119,32,65,114,114,97,121,40,51,41,46,99,111,110,99,97,116,40,34,101,53,102,53,101,48,97,49,100,57,57,98,51,49,97,51,53,52,34,44,34,101,100,102,56,101,57,98,97,101,52,98,51,55,52,99,52,55,54,50,51,56,98,52,53,34,44,34,101,100,102,56,101,57,98,97,101,52,98,51,55,52,99,52,55,54,51,49,97,51,53,52,48,48,54,100,50,99,34,44,34,101,100,102,56,101,57,99,55,101,57,99,48,97,49,100,57,57,98,55,52,99,52,55,54,51,49,97,51,53,52,48,48,54,100,50,99,34,44,34,101,100,102,56,101,57,99,55,101,57,99,48,97,49,100,57,57,98,55,52,99,52,55,54,52,49,97,98,53,100,50,51,56,98,52,53,48,48,53,97,51,50,34,44,34,102,55,102,99,102,53,101,53,102,53,101,48,99,55,101,57,99,48,97,49,100,57,57,98,55,52,99,52,55,54,52,49,97,98,53,100,50,51,56,98,52,53,48,48,53,97,51,50,34,44,34,102,55,102,99,102,53,101,53,102,53,101,48,99,55,101,57,99,48,97,49,100,57,57,98,55,52,99,52,55,54,52,49,97,98,53,100,50,51,56,98,52,53,48,48,54,100,50,99,48,48,52,52,49,98,34,41,46,109,97,112,40,90,118,41,44,74,103,61,117,103,40,75,103,41,44,116,121,61,110,101,119,32,65,114,114,97,121,40,51,41,46,99,111,110,99,97,116,40,34,102,48,102,48,102,48,98,100,98,100,98,100,54,51,54,51,54,51,34,44,34,102,55,102,55,102,55,99,99,99,99,99,99,57,54,57,54,57,54,53,50,53,50,53,50,34,44,34,102,55,102,55,102,55,99,99,99,99,99,99,57,54,57,54,57,54,54,51,54,51,54,51,50,53,50,53,50,53,34,44,34,102,55,102,55,102,55,100,57,100,57,100,57,98,100,98,100,98,100,57,54,57,54,57,54,54,51,54,51,54,51,50,53,50,53,50,53,34,44,34,102,55,102,55,102,55,100,57,100,57,100,57,98,100,98,100,98,100,57,54,57,54,57,54,55,51,55,51,55,51,53,50,53,50,53,50,50,53,50,53,50,53,34,44,34,102,102,102,102,102,102,102,48,102,48,102,48,100,57,100,57,100,57,98,100,98,100,98,100,57,54,57,54,57,54,55,51,55,51,55,51,53,50,53,50,53,50,50,53,50,53,50,53,34,44,34,102,102,102,102,102,102,102,48,102,48,102,48,100,57,100,57,100,57,98,100,98,100,98,100,57,54,57,54,57,54,55,51,55,51,55,51,53,50,53,50,53,50,50,53,50,53,50,53,48,48,48,48,48,48,34,41,46,109,97,112,40,90,118,41,44,110,121,61,117,103,40,116,121,41,44,101,121,61,110,101,119,32,65,114,114,97,121,40,51,41,46,99,111,110,99,97,116,40,34,101,102,101,100,102,53,98,99,98,100,100,99,55,53,54,98,98,49,34,44,34,102,50,102,48,102,55,99,98,99,57,101,50,57,101,57,97,99,56,54,97,53,49,97,51,34,44,34,102,50,102,48,102,55,99,98,99,57,101,50,57,101,57,97,99,56,55,53,54,98,98,49,53,52,50,55,56,102,34,44,34,102,50,102,48,102,55,100,97,100,97,101,98,98,99,98,100,100,99,57,101,57,97,99,56,55,53,54,98,98,49,53,52,50,55,56,102,34,44,34,102,50,102,48,102,55,100,97,100,97,101,98,98,99,98,100,100,99,57,101,57,97,99,56,56,48,55,100,98,97,54,97,53,49,97,51,52,97,49,52,56,54,34,44,34,102,99,102,98,102,100,101,102,101,100,102,53,100,97,100,97,101,98,98,99,98,100,100,99,57,101,57,97,99,56,56,48,55,100,98,97,54,97,53,49,97,51,52,97,49,52,56,54,34,44,34,102,99,102,98,102,100,101,102,101,100,102,53,100,97,100,97,101,98,98,99,98,100,100,99,57,101,57,97,99,56,56,48,55,100,98,97,54,97,53,49,97,51,53,52,50,55,56,102,51,102,48,48,55,100,34,41,46,109,97,112,40,90,118,41,44,114,121,61,117,103,40,101,121,41,44,105,121,61,110,101,119,32,65,114,114,97,121,40,51,41,46,99,111,110,99,97,116,40,34,102,101,101,48,100,50,102,99,57,50,55,50,100,101,50,100,50,54,34,44,34,102,101,101,53,100,57,102,99,97,101,57,49,102,98,54,97,52,97,99,98,49,56,49,100,34,44,34,102,101,101,53,100,57,102,99,97,101,57,49,102,98,54,97,52,97,100,101,50,100,50,54,97,53,48,102,49,53,34,44,34,102,101,101,53,100,57,102,99,98,98,97,49,102,99,57,50,55,50,102,98,54,97,52,97,100,101,50,100,50,54,97,53,48,102,49,53,34,44,34,102,101,101,53,100,57,102,99,98,98,97,49,102,99,57,50,55,50,102,98,54,97,52,97,101,102,51,98,50,99,99,98,49,56,49,100,57,57,48,48,48,100,34,44,34,102,102,102,53,102,48,102,101,101,48,100,50,102,99,98,98,97,49,102,99,57,50,55,50,102,98,54,97,52,97,101,102,51,98,50,99,99,98,49,56,49,100,57,57,48,48,48,100,34,44,34,102,102,102,53,102,48,102,101,101,48,100,50,102,99,98,98,97,49,102,99,57,50,55,50,102,98,54,97,52,97,101,102,51,98,50,99,99,98,49,56,49,100,97,53,48,102,49,53,54,55,48,48,48,100,34,41,46,109,97,112,40,90,118,41,44,111,121,61,117,103,40,105,121,41,44,97,121,61,110,101,119,32,65,114,114,97,121,40,51,41,46,99,111,110,99,97,116,40,34,102,101,101,54,99,101,102,100,97,101,54,98,101,54,53,53,48,100,34,44,34,102,101,101,100,100,101,102,100,98,101,56,53,102,100,56,100,51,99,100,57,52,55,48,49,34,44,34,102,101,101,100,100,101,102,100,98,101,56,53,102,100,56,100,51,99,101,54,53,53,48,100,97,54,51,54,48,51,34,44,34,102,101,101,100,100,101,102,100,100,48,97,50,102,100,97,101,54,98,102,100,56,100,51,99,101,54,53,53,48,100,97,54,51,54,48,51,34,44,34,102,101,101,100,100,101,102,100,100,48,97,50,102,100,97,101,54,98,102,100,56,100,51,99,102,49,54,57,49,51,100,57,52,56,48,49,56,99,50,100,48,52,34,44,34,102,102,102,53,101,98,102,101,101,54,99,101,102,100,100,48,97,50,102,100,97,101,54,98,102,100,56,100,51,99,102,49,54,57,49,51,100,57,52,56,48,49,56,99,50,100,48,52,34,44,34,102,102,102,53,101,98,102,101,101,54,99,101,102,100,100,48,97,50,102,100,97,101,54,98,102,100,56,100,51,99,102,49,54,57,49,51,100,57,52,56,48,49,97,54,51,54,48,51,55,102,50,55,48,52,34,41,46,109,97,112,40,90,118,41,44,117,121,61,117,103,40,97,121,41,59,118,97,114,32,99,121,61,81,101,40,101,101,40,51,48,48,44,46,53,44,48,41,44,101,101,40,45,50,52,48,44,46,53,44,49,41,41,44,102,121,61,81,101,40,101,101,40,45,49,48,48,44,46,55,53,44,46,51,53,41,44,101,101,40,56,48,44,49,46,53,44,46,56,41,41,44,115,121,61,81,101,40,101,101,40,50,54,48,44,46,55,53,44,46,51,53,41,44,101,101,40,56,48,44,49,46,53,44,46,56,41,41,44,108,121,61,101,101,40,41,59,118,97,114,32,104,121,61,95,110,40,41,44,100,121,61,77,97,116,104,46,80,73,47,51,44,112,121,61,50,42,77,97,116,104,46,80,73,47,51,59,102,117,110,99,116,105,111,110,32,118,121,40,116,41,123,118,97,114,32,110,61,116,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,91,77,97,116,104,46,109,97,120,40,48,44,77,97,116,104,46,109,105,110,40,110,45,49,44,77,97,116,104,46,102,108,111,111,114,40,101,42,110,41,41,41,93,125,125,118,97,114,32,103,121,61,118,121,40,90,118,40,34,52,52,48,49,53,52,52,52,48,50,53,54,52,53,48,52,53,55,52,53,48,53,53,57,52,54,48,55,53,97,52,54,48,56,53,99,52,54,48,97,53,100,52,54,48,98,53,101,52,55,48,100,54,48,52,55,48,101,54,49,52,55,49,48,54,51,52,55,49,49,54,52,52,55,49,51,54,53,52,56,49,52,54,55,52,56,49,54,54,56,52,56,49,55,54,57,52,56,49,56,54,97,52,56,49,97,54,99,52,56,49,98,54,100,52,56,49,99,54,101,52,56,49,100,54,102,52,56,49,102,55,48,52,56,50,48,55,49,52,56,50,49,55,51,52,56,50,51,55,52,52,56,50,52,55,53,52,56,50,53,55,54,52,56,50,54,55,55,52,56,50,56,55,56,52,56,50,57,55,57,52,55,50,97,55,97,52,55,50,99,55,97,52,55,50,100,55,98,52,55,50,101,55,99,52,55,50,102,55,100,52,54,51,48,55,101,52,54,51,50,55,101,52,54,51,51,55,102,52,54,51,52,56,48,52,53,51,53,56,49,52,53,51,55,56,49,52,53,51,56,56,50,52,52,51,57,56,51,52,52,51,97,56,51,52,52,51,98,56,52,52,51,51,100,56,52,52,51,51,101,56,53,52,50,51,102,56,53,52,50,52,48,56,54,52,50,52,49,56,54,52,49,52,50,56,55,52,49,52,52,56,55,52,48,52,53,56,56,52,48,52,54,56,56,51,102,52,55,56,56,51,102,52,56,56,57,51,101,52,57,56,57,51,101,52,97,56,57,51,101,52,99,56,97,51,100,52,100,56,97,51,100,52,101,56,97,51,99,52,102,56,97,51,99,53,48,56,98,51,98,53,49,56,98,51,98,53,50,56,98,51,97,53,51,56,98,51,97,53,52,56,99,51,57,53,53,56,99,51,57,53,54,56,99,51,56,53,56,56,99,51,56,53,57,56,99,51,55,53,97,56,99,51,55,53,98,56,100,51,54,53,99,56,100,51,54,53,100,56,100,51,53,53,101,56,100,51,53,53,102,56,100,51,52,54,48,56,100,51,52,54,49,56,100,51,51,54,50,56,100,51,51,54,51,56,100,51,50,54,52,56,101,51,50,54,53,56,101,51,49,54,54,56,101,51,49,54,55,56,101,51,49,54,56,56,101,51,48,54,57,56,101,51,48,54,97,56,101,50,102,54,98,56,101,50,102,54,99,56,101,50,101,54,100,56,101,50,101,54,101,56,101,50,101,54,102,56,101,50,100,55,48,56,101,50,100,55,49,56,101,50,99,55,49,56,101,50,99,55,50,56,101,50,99,55,51,56,101,50,98,55,52,56,101,50,98,55,53,56,101,50,97,55,54,56,101,50,97,55,55,56,101,50,97,55,56,56,101,50,57,55,57,56,101,50,57,55,97,56,101,50,57,55,98,56,101,50,56,55,99,56,101,50,56,55,100,56,101,50,55,55,101,56,101,50,55,55,102,56,101,50,55,56,48,56,101,50,54,56,49,56,101,50,54,56,50,56,101,50,54,56,50,56,101,50,53,56,51,56,101,50,53,56,52,56,101,50,53,56,53,56,101,50,52,56,54,56,101,50,52,56,55,56,101,50,51,56,56,56,101,50,51,56,57,56,101,50,51,56,97,56,100,50,50,56,98,56,100,50,50,56,99,56,100,50,50,56,100,56,100,50,49,56,101,56,100,50,49,56,102,56,100,50,49,57,48,56,100,50,49,57,49,56,99,50,48,57,50,56,99,50,48,57,50,56,99,50,48,57,51,56,99,49,102,57,52,56,99,49,102,57,53,56,98,49,102,57,54,56,98,49,102,57,55,56,98,49,102,57,56,56,98,49,102,57,57,56,97,49,102,57,97,56,97,49,101,57,98,56,97,49,101,57,99,56,57,49,101,57,100,56,57,49,102,57,101,56,57,49,102,57,102,56,56,49,102,97,48,56,56,49,102,97,49,56,56,49,102,97,49,56,55,49,102,97,50,56,55,50,48,97,51,56,54,50,48,97,52,56,54,50,49,97,53,56,53,50,49,97,54,56,53,50,50,97,55,56,53,50,50,97,56,56,52,50,51,97,57,56,51,50,52,97,97,56,51,50,53,97,98,56,50,50,53,97,99,56,50,50,54,97,100,56,49,50,55,97,100,56,49,50,56,97,101,56,48,50,57,97,102,55,102,50,97,98,48,55,102,50,99,98,49,55,101,50,100,98,50,55,100,50,101,98,51,55,99,50,102,98,52,55,99,51,49,98,53,55,98,51,50,98,54,55,97,51,52,98,54,55,57,51,53,98,55,55,57,51,55,98,56,55,56,51,56,98,57,55,55,51,97,98,97,55,54,51,98,98,98,55,53,51,100,98,99,55,52,51,102,98,99,55,51,52,48,98,100,55,50,52,50,98,101,55,49,52,52,98,102,55,48,52,54,99,48,54,102,52,56,99,49,54,101,52,97,99,49,54,100,52,99,99,50,54,99,52,101,99,51,54,98,53,48,99,52,54,97,53,50,99,53,54,57,53,52,99,53,54,56,53,54,99,54,54,55,53,56,99,55,54,53,53,97,99,56,54,52,53,99,99,56,54,51,53,101,99,57,54,50,54,48,99,97,54,48,54,51,99,98,53,102,54,53,99,98,53,101,54,55,99,99,53,99,54,57,99,100,53,98,54,99,99,100,53,97,54,101,99,101,53,56,55,48,99,102,53,55,55,51,100,48,53,54,55,53,100,48,53,52,55,55,100,49,53,51,55,97,100,49,53,49,55,99,100,50,53,48,55,102,100,51,52,101,56,49,100,51,52,100,56,52,100,52,52,98,56,54,100,53,52,57,56,57,100,53,52,56,56,98,100,54,52,54,56,101,100,54,52,53,57,48,100,55,52,51,57,51,100,55,52,49,57,53,100,56,52,48,57,56,100,56,51,101,57,98,100,57,51,99,57,100,100,57,51,98,97,48,100,97,51,57,97,50,100,97,51,55,97,53,100,98,51,54,97,56,100,98,51,52,97,97,100,99,51,50,97,100,100,99,51,48,98,48,100,100,50,102,98,50,100,100,50,100,98,53,100,101,50,98,98,56,100,101,50,57,98,97,100,101,50,56,98,100,100,102,50,54,99,48,100,102,50,53,99,50,100,102,50,51,99,53,101,48,50,49,99,56,101,48,50,48,99,97,101,49,49,102,99,100,101,49,49,100,100,48,101,49,49,99,100,50,101,50,49,98,100,53,101,50,49,97,100,56,101,50,49,57,100,97,101,51,49,57,100,100,101,51,49,56,100,102,101,51,49,56,101,50,101,52,49,56,101,53,101,52,49,57,101,55,101,52,49,57,101,97,101,53,49,97,101,99,101,53,49,98,101,102,101,53,49,99,102,49,101,53,49,100,102,52,101,54,49,101,102,54,101,54,50,48,102,56,101,54,50,49,102,98,101,55,50,51,102,100,101,55,50,53,34,41,41,44,121,121,61,118,121,40,90,118,40,34,48,48,48,48,48,52,48,49,48,48,48,53,48,49,48,49,48,54,48,49,48,49,48,56,48,50,48,49,48,57,48,50,48,50,48,98,48,50,48,50,48,100,48,51,48,51,48,102,48,51,48,51,49,50,48,52,48,52,49,52,48,53,48,52,49,54,48,54,48,53,49,56,48,54,48,53,49,97,48,55,48,54,49,99,48,56,48,55,49,101,48,57,48,55,50,48,48,97,48,56,50,50,48,98,48,57,50,52,48,99,48,57,50,54,48,100,48,97,50,57,48,101,48,98,50,98,49,48,48,98,50,100,49,49,48,99,50,102,49,50,48,100,51,49,49,51,48,100,51,52,49,52,48,101,51,54,49,53,48,101,51,56,49,54,48,102,51,98,49,56,48,102,51,100,49,57,49,48,51,102,49,97,49,48,52,50,49,99,49,48,52,52,49,100,49,49,52,55,49,101,49,49,52,57,50,48,49,49,52,98,50,49,49,49,52,101,50,50,49,49,53,48,50,52,49,50,53,51,50,53,49,50,53,53,50,55,49,50,53,56,50,57,49,49,53,97,50,97,49,49,53,99,50,99,49,49,53,102,50,100,49,49,54,49,50,102,49,49,54,51,51,49,49,49,54,53,51,51,49,48,54,55,51,52,49,48,54,57,51,54,49,48,54,98,51,56,49,48,54,99,51,57,48,102,54,101,51,98,48,102,55,48,51,100,48,102,55,49,51,102,48,102,55,50,52,48,48,102,55,52,52,50,48,102,55,53,52,52,48,102,55,54,52,53,49,48,55,55,52,55,49,48,55,56,52,57,49,48,55,56,52,97,49,48,55,57,52,99,49,49,55,97,52,101,49,49,55,98,52,102,49,50,55,98,53,49,49,50,55,99,53,50,49,51,55,99,53,52,49,51,55,100,53,54,49,52,55,100,53,55,49,53,55,101,53,57,49,53,55,101,53,97,49,54,55,101,53,99,49,54,55,102,53,100,49,55,55,102,53,102,49,56,55,102,54,48,49,56,56,48,54,50,49,57,56,48,54,52,49,97,56,48,54,53,49,97,56,48,54,55,49,98,56,48,54,56,49,99,56,49,54,97,49,99,56,49,54,98,49,100,56,49,54,100,49,100,56,49,54,101,49,101,56,49,55,48,49,102,56,49,55,50,49,102,56,49,55,51,50,48,56,49,55,53,50,49,56,49,55,54,50,49,56,49,55,56,50,50,56,49,55,57,50,50,56,50,55,98,50,51,56,50,55,99,50,51,56,50,55,101,50,52,56,50,56,48,50,53,56,50,56,49,50,53,56,49,56,51,50,54,56,49,56,52,50,54,56,49,56,54,50,55,56,49,56,56,50,55,56,49,56,57,50,56,56,49,56,98,50,57,56,49,56,99,50,57,56,49,56,101,50,97,56,49,57,48,50,97,56,49,57,49,50,98,56,49,57,51,50,98,56,48,57,52,50,99,56,48,57,54,50,99,56,48,57,56,50,100,56,48,57,57,50,100,56,48,57,98,50,101,55,102,57,99,50,101,55,102,57,101,50,102,55,102,97,48,50,102,55,102,97,49,51,48,55,101,97,51,51,48,55,101,97,53,51,49,55,101,97,54,51,49,55,100,97,56,51,50,55,100,97,97,51,51,55,100,97,98,51,51,55,99,97,100,51,52,55,99,97,101,51,52,55,98,98,48,51,53,55,98,98,50,51,53,55,98,98,51,51,54,55,97,98,53,51,54,55,97,98,55,51,55,55,57,98,56,51,55,55,57,98,97,51,56,55,56,98,99,51,57,55,56,98,100,51,57,55,55,98,102,51,97,55,55,99,48,51,97,55,54,99,50,51,98,55,53,99,52,51,99,55,53,99,53,51,99,55,52,99,55,51,100,55,51,99,56,51,101,55,51,99,97,51,101,55,50,99,99,51,102,55,49,99,100,52,48,55,49,99,102,52,48,55,48,100,48,52,49,54,102,100,50,52,50,54,102,100,51,52,51,54,101,100,53,52,52,54,100,100,54,52,53,54,99,100,56,52,53,54,99,100,57,52,54,54,98,100,98,52,55,54,97,100,99,52,56,54,57,100,101,52,57,54,56,100,102,52,97,54,56,101,48,52,99,54,55,101,50,52,100,54,54,101,51,52,101,54,53,101,52,52,102,54,52,101,53,53,48,54,52,101,55,53,50,54,51,101,56,53,51,54,50,101,57,53,52,54,50,101,97,53,54,54,49,101,98,53,55,54,48,101,99,53,56,54,48,101,100,53,97,53,102,101,101,53,98,53,101,101,102,53,100,53,101,102,48,53,102,53,101,102,49,54,48,53,100,102,50,54,50,53,100,102,50,54,52,53,99,102,51,54,53,53,99,102,52,54,55,53,99,102,52,54,57,53,99,102,53,54,98,53,99,102,54,54,99,53,99,102,54,54,101,53,99,102,55,55,48,53,99,102,55,55,50,53,99,102,56,55,52,53,99,102,56,55,54,53,99,102,57,55,56,53,100,102,57,55,57,53,100,102,57,55,98,53,100,102,97,55,100,53,101,102,97,55,102,53,101,102,97,56,49,53,102,102,98,56,51,53,102,102,98,56,53,54,48,102,98,56,55,54,49,102,99,56,57,54,49,102,99,56,97,54,50,102,99,56,99,54,51,102,99,56,101,54,52,102,99,57,48,54,53,102,100,57,50,54,54,102,100,57,52,54,55,102,100,57,54,54,56,102,100,57,56,54,57,102,100,57,97,54,97,102,100,57,98,54,98,102,101,57,100,54,99,102,101,57,102,54,100,102,101,97,49,54,101,102,101,97,51,54,102,102,101,97,53,55,49,102,101,97,55,55,50,102,101,97,57,55,51,102,101,97,97,55,52,102,101,97,99,55,54,102,101,97,101,55,55,102,101,98,48,55,56,102,101,98,50,55,97,102,101,98,52,55,98,102,101,98,54,55,99,102,101,98,55,55,101,102,101,98,57,55,102,102,101,98,98,56,49,102,101,98,100,56,50,102,101,98,102,56,52,102,101,99,49,56,53,102,101,99,50,56,55,102,101,99,52,56,56,102,101,99,54,56,97,102,101,99,56,56,99,102,101,99,97,56,100,102,101,99,99,56,102,102,101,99,100,57,48,102,101,99,102,57,50,102,101,100,49,57,52,102,101,100,51,57,53,102,101,100,53,57,55,102,101,100,55,57,57,102,101,100,56,57,97,102,100,100,97,57,99,102,100,100,99,57,101,102,100,100,101,97,48,102,100,101,48,97,49,102,100,101,50,97,51,102,100,101,51,97,53,102,100,101,53,97,55,102,100,101,55,97,57,102,100,101,57,97,97,102,100,101,98,97,99,102,99,101,99,97,101,102,99,101,101,98,48,102,99,102,48,98,50,102,99,102,50,98,52,102,99,102,52,98,54,102,99,102,54,98,56,102,99,102,55,98,57,102,99,102,57,98,98,102,99,102,98,98,100,102,99,102,100,98,102,34,41,41,44,95,121,61,118,121,40,90,118,40,34,48,48,48,48,48,52,48,49,48,48,48,53,48,49,48,49,48,54,48,49,48,49,48,56,48,50,48,49,48,97,48,50,48,50,48,99,48,50,48,50,48,101,48,51,48,50,49,48,48,52,48,51,49,50,48,52,48,51,49,52,48,53,48,52,49,55,48,54,48,52,49,57,48,55,48,53,49,98,48,56,48,53,49,100,48,57,48,54,49,102,48,97,48,55,50,50,48,98,48,55,50,52,48,99,48,56,50,54,48,100,48,56,50,57,48,101,48,57,50,98,49,48,48,57,50,100,49,49,48,97,51,48,49,50,48,97,51,50,49,52,48,98,51,52,49,53,48,98,51,55,49,54,48,98,51,57,49,56,48,99,51,99,49,57,48,99,51,101,49,98,48,99,52,49,49,99,48,99,52,51,49,101,48,99,52,53,49,102,48,99,52,56,50,49,48,99,52,97,50,51,48,99,52,99,50,52,48,99,52,102,50,54,48,99,53,49,50,56,48,98,53,51,50,57,48,98,53,53,50,98,48,98,53,55,50,100,48,98,53,57,50,102,48,97,53,98,51,49,48,97,53,99,51,50,48,97,53,101,51,52,48,97,53,102,51,54,48,57,54,49,51,56,48,57,54,50,51,57,48,57,54,51,51,98,48,57,54,52,51,100,48,57,54,53,51,101,48,57,54,54,52,48,48,97,54,55,52,50,48,97,54,56,52,52,48,97,54,56,52,53,48,97,54,57,52,55,48,98,54,97,52,57,48,98,54,97,52,97,48,99,54,98,52,99,48,99,54,98,52,100,48,100,54,99,52,102,48,100,54,99,53,49,48,101,54,99,53,50,48,101,54,100,53,52,48,102,54,100,53,53,48,102,54,100,53,55,49,48,54,101,53,57,49,48,54,101,53,97,49,49,54,101,53,99,49,50,54,101,53,100,49,50,54,101,53,102,49,51,54,101,54,49,49,51,54,101,54,50,49,52,54,101,54,52,49,53,54,101,54,53,49,53,54,101,54,55,49,54,54,101,54,57,49,54,54,101,54,97,49,55,54,101,54,99,49,56,54,101,54,100,49,56,54,101,54,102,49,57,54,101,55,49,49,57,54,101,55,50,49,97,54,101,55,52,49,97,54,101,55,53,49,98,54,101,55,55,49,99,54,100,55,56,49,99,54,100,55,97,49,100,54,100,55,99,49,100,54,100,55,100,49,101,54,100,55,102,49,101,54,99,56,48,49,102,54,99,56,50,50,48,54,99,56,52,50,48,54,98,56,53,50,49,54,98,56,55,50,49,54,98,56,56,50,50,54,97,56,97,50,50,54,97,56,99,50,51,54,57,56,100,50,51,54,57,56,102,50,52,54,57,57,48,50,53,54,56,57,50,50,53,54,56,57,51,50,54,54,55,57,53,50,54,54,55,57,55,50,55,54,54,57,56,50,55,54,54,57,97,50,56,54,53,57,98,50,57,54,52,57,100,50,57,54,52,57,102,50,97,54,51,97,48,50,97,54,51,97,50,50,98,54,50,97,51,50,99,54,49,97,53,50,99,54,48,97,54,50,100,54,48,97,56,50,101,53,102,97,57,50,101,53,101,97,98,50,102,53,101,97,100,51,48,53,100,97,101,51,48,53,99,98,48,51,49,53,98,98,49,51,50,53,97,98,51,51,50,53,97,98,52,51,51,53,57,98,54,51,52,53,56,98,55,51,53,53,55,98,57,51,53,53,54,98,97,51,54,53,53,98,99,51,55,53,52,98,100,51,56,53,51,98,102,51,57,53,50,99,48,51,97,53,49,99,49,51,97,53,48,99,51,51,98,52,102,99,52,51,99,52,101,99,54,51,100,52,100,99,55,51,101,52,99,99,56,51,102,52,98,99,97,52,48,52,97,99,98,52,49,52,57,99,99,52,50,52,56,99,101,52,51,52,55,99,102,52,52,52,54,100,48,52,53,52,53,100,50,52,54,52,52,100,51,52,55,52,51,100,52,52,56,52,50,100,53,52,97,52,49,100,55,52,98,51,102,100,56,52,99,51,101,100,57,52,100,51,100,100,97,52,101,51,99,100,98,53,48,51,98,100,100,53,49,51,97,100,101,53,50,51,56,100,102,53,51,51,55,101,48,53,53,51,54,101,49,53,54,51,53,101,50,53,55,51,52,101,51,53,57,51,51,101,52,53,97,51,49,101,53,53,99,51,48,101,54,53,100,50,102,101,55,53,101,50,101,101,56,54,48,50,100,101,57,54,49,50,98,101,97,54,51,50,97,101,98,54,52,50,57,101,98,54,54,50,56,101,99,54,55,50,54,101,100,54,57,50,53,101,101,54,97,50,52,101,102,54,99,50,51,101,102,54,101,50,49,102,48,54,102,50,48,102,49,55,49,49,102,102,49,55,51,49,100,102,50,55,52,49,99,102,51,55,54,49,98,102,51,55,56,49,57,102,52,55,57,49,56,102,53,55,98,49,55,102,53,55,100,49,53,102,54,55,101,49,52,102,54,56,48,49,51,102,55,56,50,49,50,102,55,56,52,49,48,102,56,56,53,48,102,102,56,56,55,48,101,102,56,56,57,48,99,102,57,56,98,48,98,102,57,56,99,48,97,102,57,56,101,48,57,102,97,57,48,48,56,102,97,57,50,48,55,102,97,57,52,48,55,102,98,57,54,48,54,102,98,57,55,48,54,102,98,57,57,48,54,102,98,57,98,48,54,102,98,57,100,48,55,102,99,57,102,48,55,102,99,97,49,48,56,102,99,97,51,48,57,102,99,97,53,48,97,102,99,97,54,48,99,102,99,97,56,48,100,102,99,97,97,48,102,102,99,97,99,49,49,102,99,97,101,49,50,102,99,98,48,49,52,102,99,98,50,49,54,102,99,98,52,49,56,102,98,98,54,49,97,102,98,98,56,49,100,102,98,98,97,49,102,102,98,98,99,50,49,102,98,98,101,50,51,102,97,99,48,50,54,102,97,99,50,50,56,102,97,99,52,50,97,102,97,99,54,50,100,102,57,99,55,50,102,102,57,99,57,51,50,102,57,99,98,51,53,102,56,99,100,51,55,102,56,99,102,51,97,102,55,100,49,51,100,102,55,100,51,52,48,102,54,100,53,52,51,102,54,100,55,52,54,102,53,100,57,52,57,102,53,100,98,52,99,102,52,100,100,52,102,102,52,100,102,53,51,102,52,101,49,53,54,102,51,101,51,53,97,102,51,101,53,53,100,102,50,101,54,54,49,102,50,101,56,54,53,102,50,101,97,54,57,102,49,101,99,54,100,102,49,101,100,55,49,102,49,101,102,55,53,102,49,102,49,55,57,102,50,102,50,55,100,102,50,102,52,56,50,102,51,102,53,56,54,102,51,102,54,56,97,102,52,102,56,56,101,102,53,102,57,57,50,102,54,102,97,57,54,102,56,102,98,57,97,102,57,102,99,57,100,102,97,102,100,97,49,102,99,102,102,97,52,34,41,41,44,98,121,61,118,121,40,90,118,40,34,48,100,48,56,56,55,49,48,48,55,56,56,49,51,48,55,56,57,49,54,48,55,56,97,49,57,48,54,56,99,49,98,48,54,56,100,49,100,48,54,56,101,50,48,48,54,56,102,50,50,48,54,57,48,50,52,48,54,57,49,50,54,48,53,57,49,50,56,48,53,57,50,50,97,48,53,57,51,50,99,48,53,57,52,50,101,48,53,57,53,50,102,48,53,57,54,51,49,48,53,57,55,51,51,48,53,57,55,51,53,48,52,57,56,51,55,48,52,57,57,51,56,48,52,57,97,51,97,48,52,57,97,51,99,48,52,57,98,51,101,48,52,57,99,51,102,48,52,57,99,52,49,48,52,57,100,52,51,48,51,57,101,52,52,48,51,57,101,52,54,48,51,57,102,52,56,48,51,57,102,52,57,48,51,97,48,52,98,48,51,97,49,52,99,48,50,97,49,52,101,48,50,97,50,53,48,48,50,97,50,53,49,48,50,97,51,53,51,48,50,97,51,53,53,48,50,97,52,53,54,48,49,97,52,53,56,48,49,97,52,53,57,48,49,97,53,53,98,48,49,97,53,53,99,48,49,97,54,53,101,48,49,97,54,54,48,48,49,97,54,54,49,48,48,97,55,54,51,48,48,97,55,54,52,48,48,97,55,54,54,48,48,97,55,54,55,48,48,97,56,54,57,48,48,97,56,54,97,48,48,97,56,54,99,48,48,97,56,54,101,48,48,97,56,54,102,48,48,97,56,55,49,48,48,97,56,55,50,48,49,97,56,55,52,48,49,97,56,55,53,48,49,97,56,55,55,48,49,97,56,55,56,48,49,97,56,55,97,48,50,97,56,55,98,48,50,97,56,55,100,48,51,97,56,55,101,48,51,97,56,56,48,48,52,97,56,56,49,48,52,97,55,56,51,48,53,97,55,56,52,48,53,97,55,56,54,48,54,97,54,56,55,48,55,97,54,56,56,48,56,97,54,56,97,48,57,97,53,56,98,48,97,97,53,56,100,48,98,97,53,56,101,48,99,97,52,56,102,48,100,97,52,57,49,48,101,97,51,57,50,48,102,97,51,57,52,49,48,97,50,57,53,49,49,97,49,57,54,49,51,97,49,57,56,49,52,97,48,57,57,49,53,57,102,57,97,49,54,57,102,57,99,49,55,57,101,57,100,49,56,57,100,57,101,49,57,57,100,97,48,49,97,57,99,97,49,49,98,57,98,97,50,49,100,57,97,97,51,49,101,57,97,97,53,49,102,57,57,97,54,50,48,57,56,97,55,50,49,57,55,97,56,50,50,57,54,97,97,50,51,57,53,97,98,50,52,57,52,97,99,50,54,57,52,97,100,50,55,57,51,97,101,50,56,57,50,98,48,50,57,57,49,98,49,50,97,57,48,98,50,50,98,56,102,98,51,50,99,56,101,98,52,50,101,56,100,98,53,50,102,56,99,98,54,51,48,56,98,98,55,51,49,56,97,98,56,51,50,56,57,98,97,51,51,56,56,98,98,51,52,56,56,98,99,51,53,56,55,98,100,51,55,56,54,98,101,51,56,56,53,98,102,51,57,56,52,99,48,51,97,56,51,99,49,51,98,56,50,99,50,51,99,56,49,99,51,51,100,56,48,99,52,51,101,55,102,99,53,52,48,55,101,99,54,52,49,55,100,99,55,52,50,55,99,99,56,52,51,55,98,99,57,52,52,55,97,99,97,52,53,55,97,99,98,52,54,55,57,99,99,52,55,55,56,99,99,52,57,55,55,99,100,52,97,55,54,99,101,52,98,55,53,99,102,52,99,55,52,100,48,52,100,55,51,100,49,52,101,55,50,100,50,52,102,55,49,100,51,53,49,55,49,100,52,53,50,55,48,100,53,53,51,54,102,100,53,53,52,54,101,100,54,53,53,54,100,100,55,53,54,54,99,100,56,53,55,54,98,100,57,53,56,54,97,100,97,53,97,54,97,100,97,53,98,54,57,100,98,53,99,54,56,100,99,53,100,54,55,100,100,53,101,54,54,100,101,53,102,54,53,100,101,54,49,54,52,100,102,54,50,54,51,101,48,54,51,54,51,101,49,54,52,54,50,101,50,54,53,54,49,101,50,54,54,54,48,101,51,54,56,53,102,101,52,54,57,53,101,101,53,54,97,53,100,101,53,54,98,53,100,101,54,54,99,53,99,101,55,54,101,53,98,101,55,54,102,53,97,101,56,55,48,53,57,101,57,55,49,53,56,101,57,55,50,53,55,101,97,55,52,53,55,101,98,55,53,53,54,101,98,55,54,53,53,101,99,55,55,53,52,101,100,55,57,53,51,101,100,55,97,53,50,101,101,55,98,53,49,101,102,55,99,53,49,101,102,55,101,53,48,102,48,55,102,52,102,102,48,56,48,52,101,102,49,56,49,52,100,102,49,56,51,52,99,102,50,56,52,52,98,102,51,56,53,52,98,102,51,56,55,52,97,102,52,56,56,52,57,102,52,56,57,52,56,102,53,56,98,52,55,102,53,56,99,52,54,102,54,56,100,52,53,102,54,56,102,52,52,102,55,57,48,52,52,102,55,57,49,52,51,102,55,57,51,52,50,102,56,57,52,52,49,102,56,57,53,52,48,102,57,57,55,51,102,102,57,57,56,51,101,102,57,57,97,51,101,102,97,57,98,51,100,102,97,57,99,51,99,102,97,57,101,51,98,102,98,57,102,51,97,102,98,97,49,51,57,102,98,97,50,51,56,102,99,97,51,51,56,102,99,97,53,51,55,102,99,97,54,51,54,102,99,97,56,51,53,102,99,97,57,51,52,102,100,97,98,51,51,102,100,97,99,51,51,102,100,97,101,51,50,102,100,97,102,51,49,102,100,98,49,51,48,102,100,98,50,50,102,102,100,98,52,50,102,102,100,98,53,50,101,102,101,98,55,50,100,102,101,98,56,50,99,102,101,98,97,50,99,102,101,98,98,50,98,102,101,98,100,50,97,102,101,98,101,50,97,102,101,99,48,50,57,102,100,99,50,50,57,102,100,99,51,50,56,102,100,99,53,50,55,102,100,99,54,50,55,102,100,99,56,50,55,102,100,99,97,50,54,102,100,99,98,50,54,102,99,99,100,50,53,102,99,99,101,50,53,102,99,100,48,50,53,102,99,100,50,50,53,102,98,100,51,50,52,102,98,100,53,50,52,102,98,100,55,50,52,102,97,100,56,50,52,102,97,100,97,50,52,102,57,100,99,50,52,102,57,100,100,50,53,102,56,100,102,50,53,102,56,101,49,50,53,102,55,101,50,50,53,102,55,101,52,50,53,102,54,101,54,50,54,102,54,101,56,50,54,102,53,101,57,50,54,102,53,101,98,50,55,102,52,101,100,50,55,102,51,101,101,50,55,102,51,102,48,50,55,102,50,102,50,50,55,102,49,102,52,50,54,102,49,102,53,50,53,102,48,102,55,50,52,102,48,102,57,50,49,34,41,41,59,102,117,110,99,116,105,111,110,32,109,121,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,125,125,118,97,114,32,120,121,61,77,97,116,104,46,97,98,115,44,119,121,61,77,97,116,104,46,97,116,97,110,50,44,77,121,61,77,97,116,104,46,99,111,115,44,78,121,61,77,97,116,104,46,109,97,120,44,84,121,61,77,97,116,104,46,109,105,110,44,65,121,61,77,97,116,104,46,115,105,110,44,83,121,61,77,97,116,104,46,115,113,114,116,44,107,121,61,49,101,45,49,50,44,69,121,61,77,97,116,104,46,80,73,44,67,121,61,69,121,47,50,44,80,121,61,50,42,69,121,59,102,117,110,99,116,105,111,110,32,122,121,40,116,41,123,114,101,116,117,114,110,32,116,62,61,49,63,67,121,58,116,60,61,45,49,63,45,67,121,58,77,97,116,104,46,97,115,105,110,40,116,41,125,102,117,110,99,116,105,111,110,32,82,121,40,116,41,123,114,101,116,117,114,110,32,116,46,105,110,110,101,114,82,97,100,105,117,115,125,102,117,110,99,116,105,111,110,32,68,121,40,116,41,123,114,101,116,117,114,110,32,116,46,111,117,116,101,114,82,97,100,105,117,115,125,102,117,110,99,116,105,111,110,32,113,121,40,116,41,123,114,101,116,117,114,110,32,116,46,115,116,97,114,116,65,110,103,108,101,125,102,117,110,99,116,105,111,110,32,76,121,40,116,41,123,114,101,116,117,114,110,32,116,46,101,110,100,65,110,103,108,101,125,102,117,110,99,116,105,111,110,32,85,121,40,116,41,123,114,101,116,117,114,110,32,116,38,38,116,46,112,97,100,65,110,103,108,101,125,102,117,110,99,116,105,111,110,32,79,121,40,116,44,110,44,101,44,114,44,105,44,111,44,97,41,123,118,97,114,32,117,61,116,45,101,44,99,61,110,45,114,44,102,61,40,97,63,111,58,45,111,41,47,83,121,40,117,42,117,43,99,42,99,41,44,115,61,102,42,99,44,108,61,45,102,42,117,44,104,61,116,43,115,44,100,61,110,43,108,44,112,61,101,43,115,44,118,61,114,43,108,44,103,61,40,104,43,112,41,47,50,44,121,61,40,100,43,118,41,47,50,44,95,61,112,45,104,44,98,61,118,45,100,44,109,61,95,42,95,43,98,42,98,44,120,61,105,45,111,44,119,61,104,42,118,45,112,42,100,44,77,61,40,98,60,48,63,45,49,58,49,41,42,83,121,40,78,121,40,48,44,120,42,120,42,109,45,119,42,119,41,41,44,78,61,40,119,42,98,45,95,42,77,41,47,109,44,84,61,40,45,119,42,95,45,98,42,77,41,47,109,44,65,61,40,119,42,98,43,95,42,77,41,47,109,44,83,61,40,45,119,42,95,43,98,42,77,41,47,109,44,107,61,78,45,103,44,69,61,84,45,121,44,67,61,65,45,103,44,80,61,83,45,121,59,114,101,116,117,114,110,32,107,42,107,43,69,42,69,62,67,42,67,43,80,42,80,38,38,40,78,61,65,44,84,61,83,41,44,123,99,120,58,78,44,99,121,58,84,44,120,48,49,58,45,115,44,121,48,49,58,45,108,44,120,49,49,58,78,42,40,105,47,120,45,49,41,44,121,49,49,58,84,42,40,105,47,120,45,49,41,125,125,102,117,110,99,116,105,111,110,32,66,121,40,116,41,123,116,104,105,115,46,95,99,111,110,116,101,120,116,61,116,125,102,117,110,99,116,105,111,110,32,70,121,40,116,41,123,114,101,116,117,114,110,32,110,101,119,32,66,121,40,116,41,125,102,117,110,99,116,105,111,110,32,89,121,40,116,41,123,114,101,116,117,114,110,32,116,91,48,93,125,102,117,110,99,116,105,111,110,32,73,121,40,116,41,123,114,101,116,117,114,110,32,116,91,49,93,125,102,117,110,99,116,105,111,110,32,72,121,40,41,123,118,97,114,32,116,61,89,121,44,110,61,73,121,44,101,61,109,121,40,33,48,41,44,114,61,110,117,108,108,44,105,61,70,121,44,111,61,110,117,108,108,59,102,117,110,99,116,105,111,110,32,97,40,97,41,123,118,97,114,32,117,44,99,44,102,44,115,61,97,46,108,101,110,103,116,104,44,108,61,33,49,59,102,111,114,40,110,117,108,108,61,61,114,38,38,40,111,61,105,40,102,61,110,111,40,41,41,41,44,117,61,48,59,117,60,61,115,59,43,43,117,41,33,40,117,60,115,38,38,101,40,99,61,97,91,117,93,44,117,44,97,41,41,61,61,61,108,38,38,40,40,108,61,33,108,41,63,111,46,108,105,110,101,83,116,97,114,116,40,41,58,111,46,108,105,110,101,69,110,100,40,41,41,44,108,38,38,111,46,112,111,105,110,116,40,43,116,40,99,44,117,44,97,41,44,43,110,40,99,44,117,44,97,41,41,59,105,102,40,102,41,114,101,116,117,114,110,32,111,61,110,117,108,108,44,102,43,34,34,124,124,110,117,108,108,125,114,101,116,117,114,110,32,97,46,120,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,116,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,110,63,110,58,109,121,40,43,110,41,44,97,41,58,116,125,44,97,46,121,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,110,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,109,121,40,43,116,41,44,97,41,58,110,125,44,97,46,100,101,102,105,110,101,100,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,101,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,109,121,40,33,33,116,41,44,97,41,58,101,125,44,97,46,99,117,114,118,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,105,61,116,44,110,117,108,108,33,61,114,38,38,40,111,61,105,40,114,41,41,44,97,41,58,105,125,44,97,46,99,111,110,116,101,120,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,110,117,108,108,61,61,116,63,114,61,111,61,110,117,108,108,58,111,61,105,40,114,61,116,41,44,97,41,58,114,125,44,97,125,102,117,110,99,116,105,111,110,32,106,121,40,41,123,118,97,114,32,116,61,89,121,44,110,61,110,117,108,108,44,101,61,109,121,40,48,41,44,114,61,73,121,44,105,61,109,121,40,33,48,41,44,111,61,110,117,108,108,44,97,61,70,121,44,117,61,110,117,108,108,59,102,117,110,99,116,105,111,110,32,99,40,99,41,123,118,97,114,32,102,44,115,44,108,44,104,44,100,44,112,61,99,46,108,101,110,103,116,104,44,118,61,33,49,44,103,61,110,101,119,32,65,114,114,97,121,40,112,41,44,121,61,110,101,119,32,65,114,114,97,121,40,112,41,59,102,111,114,40,110,117,108,108,61,61,111,38,38,40,117,61,97,40,100,61,110,111,40,41,41,41,44,102,61,48,59,102,60,61,112,59,43,43,102,41,123,105,102,40,33,40,102,60,112,38,38,105,40,104,61,99,91,102,93,44,102,44,99,41,41,61,61,61,118,41,105,102,40,118,61,33,118,41,115,61,102,44,117,46,97,114,101,97,83,116,97,114,116,40,41,44,117,46,108,105,110,101,83,116,97,114,116,40,41,59,101,108,115,101,123,102,111,114,40,117,46,108,105,110,101,69,110,100,40,41,44,117,46,108,105,110,101,83,116,97,114,116,40,41,44,108,61,102,45,49,59,108,62,61,115,59,45,45,108,41,117,46,112,111,105,110,116,40,103,91,108,93,44,121,91,108,93,41,59,117,46,108,105,110,101,69,110,100,40,41,44,117,46,97,114,101,97,69,110,100,40,41,125,118,38,38,40,103,91,102,93,61,43,116,40,104,44,102,44,99,41,44,121,91,102,93,61,43,101,40,104,44,102,44,99,41,44,117,46,112,111,105,110,116,40,110,63,43,110,40,104,44,102,44,99,41,58,103,91,102,93,44,114,63,43,114,40,104,44,102,44,99,41,58,121,91,102,93,41,41,125,105,102,40,100,41,114,101,116,117,114,110,32,117,61,110,117,108,108,44,100,43,34,34,124,124,110,117,108,108,125,102,117,110,99,116,105,111,110,32,102,40,41,123,114,101,116,117,114,110,32,72,121,40,41,46,100,101,102,105,110,101,100,40,105,41,46,99,117,114,118,101,40,97,41,46,99,111,110,116,101,120,116,40,111,41,125,114,101,116,117,114,110,32,99,46,120,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,116,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,101,63,101,58,109,121,40,43,101,41,44,110,61,110,117,108,108,44,99,41,58,116,125,44,99,46,120,48,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,116,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,110,63,110,58,109,121,40,43,110,41,44,99,41,58,116,125,44,99,46,120,49,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,110,61,110,117,108,108,61,61,116,63,110,117,108,108,58,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,109,121,40,43,116,41,44,99,41,58,110,125,44,99,46,121,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,101,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,109,121,40,43,116,41,44,114,61,110,117,108,108,44,99,41,58,101,125,44,99,46,121,48,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,101,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,109,121,40,43,116,41,44,99,41,58,101,125,44,99,46,121,49,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,114,61,110,117,108,108,61,61,116,63,110,117,108,108,58,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,109,121,40,43,116,41,44,99,41,58,114,125,44,99,46,108,105,110,101,88,48,61,99,46,108,105,110,101,89,48,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,102,40,41,46,120,40,116,41,46,121,40,101,41,125,44,99,46,108,105,110,101,89,49,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,102,40,41,46,120,40,116,41,46,121,40,114,41,125,44,99,46,108,105,110,101,88,49,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,102,40,41,46,120,40,110,41,46,121,40,101,41,125,44,99,46,100,101,102,105,110,101,100,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,105,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,109,121,40,33,33,116,41,44,99,41,58,105,125,44,99,46,99,117,114,118,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,97,61,116,44,110,117,108,108,33,61,111,38,38,40,117,61,97,40,111,41,41,44,99,41,58,97,125,44,99,46,99,111,110,116,101,120,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,110,117,108,108,61,61,116,63,111,61,117,61,110,117,108,108,58,117,61,97,40,111,61,116,41,44,99,41,58,111,125,44,99,125,102,117,110,99,116,105,111,110,32,88,121,40,116,44,110,41,123,114,101,116,117,114,110,32,110,60,116,63,45,49,58,110,62,116,63,49,58,110,62,61,116,63,48,58,78,97,78,125,102,117,110,99,116,105,111,110,32,86,121,40,116,41,123,114,101,116,117,114,110,32,116,125,66,121,46,112,114,111,116,111,116,121,112,101,61,123,97,114,101,97,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,108,105,110,101,61,48,125,44,97,114,101,97,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,108,105,110,101,61,78,97,78,125,44,108,105,110,101,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,112,111,105,110,116,61,48,125,44,108,105,110,101,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,40,116,104,105,115,46,95,108,105,110,101,124,124,48,33,61,61,116,104,105,115,46,95,108,105,110,101,38,38,49,61,61,61,116,104,105,115,46,95,112,111,105,110,116,41,38,38,116,104,105,115,46,95,99,111,110,116,101,120,116,46,99,108,111,115,101,80,97,116,104,40,41,44,116,104,105,115,46,95,108,105,110,101,61,49,45,116,104,105,115,46,95,108,105,110,101,125,44,112,111,105,110,116,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,115,119,105,116,99,104,40,116,61,43,116,44,110,61,43,110,44,116,104,105,115,46,95,112,111,105,110,116,41,123,99,97,115,101,32,48,58,116,104,105,115,46,95,112,111,105,110,116,61,49,44,116,104,105,115,46,95,108,105,110,101,63,116,104,105,115,46,95,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,116,44,110,41,58,116,104,105,115,46,95,99,111,110,116,101,120,116,46,109,111,118,101,84,111,40,116,44,110,41,59,98,114,101,97,107,59,99,97,115,101,32,49,58,116,104,105,115,46,95,112,111,105,110,116,61,50,59,100,101,102,97,117,108,116,58,116,104,105,115,46,95,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,116,44,110,41,125,125,125,59,118,97,114,32,71,121,61,87,121,40,70,121,41,59,102,117,110,99,116,105,111,110,32,36,121,40,116,41,123,116,104,105,115,46,95,99,117,114,118,101,61,116,125,102,117,110,99,116,105,111,110,32,87,121,40,116,41,123,102,117,110,99,116,105,111,110,32,110,40,110,41,123,114,101,116,117,114,110,32,110,101,119,32,36,121,40,116,40,110,41,41,125,114,101,116,117,114,110,32,110,46,95,99,117,114,118,101,61,116,44,110,125,102,117,110,99,116,105,111,110,32,90,121,40,116,41,123,118,97,114,32,110,61,116,46,99,117,114,118,101,59,114,101,116,117,114,110,32,116,46,97,110,103,108,101,61,116,46,120,44,100,101,108,101,116,101,32,116,46,120,44,116,46,114,97,100,105,117,115,61,116,46,121,44,100,101,108,101,116,101,32,116,46,121,44,116,46,99,117,114,118,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,110,40,87,121,40,116,41,41,58,110,40,41,46,95,99,117,114,118,101,125,44,116,125,102,117,110,99,116,105,111,110,32,81,121,40,41,123,114,101,116,117,114,110,32,90,121,40,72,121,40,41,46,99,117,114,118,101,40,71,121,41,41,125,102,117,110,99,116,105,111,110,32,75,121,40,41,123,118,97,114,32,116,61,106,121,40,41,46,99,117,114,118,101,40,71,121,41,44,110,61,116,46,99,117,114,118,101,44,101,61,116,46,108,105,110,101,88,48,44,114,61,116,46,108,105,110,101,88,49,44,105,61,116,46,108,105,110,101,89,48,44,111,61,116,46,108,105,110,101,89,49,59,114,101,116,117,114,110,32,116,46,97,110,103,108,101,61,116,46,120,44,100,101,108,101,116,101,32,116,46,120,44,116,46,115,116,97,114,116,65,110,103,108,101,61,116,46,120,48,44,100,101,108,101,116,101,32,116,46,120,48,44,116,46,101,110,100,65,110,103,108,101,61,116,46,120,49,44,100,101,108,101,116,101,32,116,46,120,49,44,116,46,114,97,100,105,117,115,61,116,46,121,44,100,101,108,101,116,101,32,116,46,121,44,116,46,105,110,110,101,114,82,97,100,105,117,115,61,116,46,121,48,44,100,101,108,101,116,101,32,116,46,121,48,44,116,46,111,117,116,101,114,82,97,100,105,117,115,61,116,46,121,49,44,100,101,108,101,116,101,32,116,46,121,49,44,116,46,108,105,110,101,83,116,97,114,116,65,110,103,108,101,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,90,121,40,101,40,41,41,125,44,100,101,108,101,116,101,32,116,46,108,105,110,101,88,48,44,116,46,108,105,110,101,69,110,100,65,110,103,108,101,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,90,121,40,114,40,41,41,125,44,100,101,108,101,116,101,32,116,46,108,105,110,101,88,49,44,116,46,108,105,110,101,73,110,110,101,114,82,97,100,105,117,115,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,90,121,40,105,40,41,41,125,44,100,101,108,101,116,101,32,116,46,108,105,110,101,89,48,44,116,46,108,105,110,101,79,117,116,101,114,82,97,100,105,117,115,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,90,121,40,111,40,41,41,125,44,100,101,108,101,116,101,32,116,46,108,105,110,101,89,49,44,116,46,99,117,114,118,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,110,40,87,121,40,116,41,41,58,110,40,41,46,95,99,117,114,118,101,125,44,116,125,102,117,110,99,116,105,111,110,32,74,121,40,116,44,110,41,123,114,101,116,117,114,110,91,40,110,61,43,110,41,42,77,97,116,104,46,99,111,115,40,116,45,61,77,97,116,104,46,80,73,47,50,41,44,110,42,77,97,116,104,46,115,105,110,40,116,41,93,125,36,121,46,112,114,111,116,111,116,121,112,101,61,123,97,114,101,97,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,99,117,114,118,101,46,97,114,101,97,83,116,97,114,116,40,41,125,44,97,114,101,97,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,99,117,114,118,101,46,97,114,101,97,69,110,100,40,41,125,44,108,105,110,101,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,99,117,114,118,101,46,108,105,110,101,83,116,97,114,116,40,41,125,44,108,105,110,101,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,99,117,114,118,101,46,108,105,110,101,69,110,100,40,41,125,44,112,111,105,110,116,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,116,104,105,115,46,95,99,117,114,118,101,46,112,111,105,110,116,40,110,42,77,97,116,104,46,115,105,110,40,116,41,44,110,42,45,77,97,116,104,46,99,111,115,40,116,41,41,125,125,59,118,97,114,32,116,95,61,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,115,108,105,99,101,59,102,117,110,99,116,105,111,110,32,110,95,40,116,41,123,114,101,116,117,114,110,32,116,46,115,111,117,114,99,101,125,102,117,110,99,116,105,111,110,32,101,95,40,116,41,123,114,101,116,117,114,110,32,116,46,116,97,114,103,101,116,125,102,117,110,99,116,105,111,110,32,114,95,40,116,41,123,118,97,114,32,110,61,110,95,44,101,61,101,95,44,114,61,89,121,44,105,61,73,121,44,111,61,110,117,108,108,59,102,117,110,99,116,105,111,110,32,97,40,41,123,118,97,114,32,97,44,117,61,116,95,46,99,97,108,108,40,97,114,103,117,109,101,110,116,115,41,44,99,61,110,46,97,112,112,108,121,40,116,104,105,115,44,117,41,44,102,61,101,46,97,112,112,108,121,40,116,104,105,115,44,117,41,59,105,102,40,111,124,124,40,111,61,97,61,110,111,40,41,41,44,116,40,111,44,43,114,46,97,112,112,108,121,40,116,104,105,115,44,40,117,91,48,93,61,99,44,117,41,41,44,43,105,46,97,112,112,108,121,40,116,104,105,115,44,117,41,44,43,114,46,97,112,112,108,121,40,116,104,105,115,44,40,117,91,48,93,61,102,44,117,41,41,44,43,105,46,97,112,112,108,121,40,116,104,105,115,44,117,41,41,44,97,41,114,101,116,117,114,110,32,111,61,110,117,108,108,44,97,43,34,34,124,124,110,117,108,108,125,114,101,116,117,114,110,32,97,46,115,111,117,114,99,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,110,61,116,44,97,41,58,110,125,44,97,46,116,97,114,103,101,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,101,61,116,44,97,41,58,101,125,44,97,46,120,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,114,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,109,121,40,43,116,41,44,97,41,58,114,125,44,97,46,121,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,105,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,109,121,40,43,116,41,44,97,41,58,105,125,44,97,46,99,111,110,116,101,120,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,111,61,110,117,108,108,61,61,116,63,110,117,108,108,58,116,44,97,41,58,111,125,44,97,125,102,117,110,99,116,105,111,110,32,105,95,40,116,44,110,44,101,44,114,44,105,41,123,116,46,109,111,118,101,84,111,40,110,44,101,41,44,116,46,98,101,122,105,101,114,67,117,114,118,101,84,111,40,110,61,40,110,43,114,41,47,50,44,101,44,110,44,105,44,114,44,105,41,125,102,117,110,99,116,105,111,110,32,111,95,40,116,44,110,44,101,44,114,44,105,41,123,116,46,109,111,118,101,84,111,40,110,44,101,41,44,116,46,98,101,122,105,101,114,67,117,114,118,101,84,111,40,110,44,101,61,40,101,43,105,41,47,50,44,114,44,101,44,114,44,105,41,125,102,117,110,99,116,105,111,110,32,97,95,40,116,44,110,44,101,44,114,44,105,41,123,118,97,114,32,111,61,74,121,40,110,44,101,41,44,97,61,74,121,40,110,44,101,61,40,101,43,105,41,47,50,41,44,117,61,74,121,40,114,44,101,41,44,99,61,74,121,40,114,44,105,41,59,116,46,109,111,118,101,84,111,40,111,91,48,93,44,111,91,49,93,41,44,116,46,98,101,122,105,101,114,67,117,114,118,101,84,111,40,97,91,48,93,44,97,91,49,93,44,117,91,48,93,44,117,91,49,93,44,99,91,48,93,44,99,91,49,93,41,125,118,97,114,32,117,95,61,123,100,114,97,119,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,61,77,97,116,104,46,115,113,114,116,40,110,47,69,121,41,59,116,46,109,111,118,101,84,111,40,101,44,48,41,44,116,46,97,114,99,40,48,44,48,44,101,44,48,44,80,121,41,125,125,44,99,95,61,123,100,114,97,119,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,61,77,97,116,104,46,115,113,114,116,40,110,47,53,41,47,50,59,116,46,109,111,118,101,84,111,40,45,51,42,101,44,45,101,41,44,116,46,108,105,110,101,84,111,40,45,101,44,45,101,41,44,116,46,108,105,110,101,84,111,40,45,101,44,45,51,42,101,41,44,116,46,108,105,110,101,84,111,40,101,44,45,51,42,101,41,44,116,46,108,105,110,101,84,111,40,101,44,45,101,41,44,116,46,108,105,110,101,84,111,40,51,42,101,44,45,101,41,44,116,46,108,105,110,101,84,111,40,51,42,101,44,101,41,44,116,46,108,105,110,101,84,111,40,101,44,101,41,44,116,46,108,105,110,101,84,111,40,101,44,51,42,101,41,44,116,46,108,105,110,101,84,111,40,45,101,44,51,42,101,41,44,116,46,108,105,110,101,84,111,40,45,101,44,101,41,44,116,46,108,105,110,101,84,111,40,45,51,42,101,44,101,41,44,116,46,99,108,111,115,101,80,97,116,104,40,41,125,125,44,102,95,61,77,97,116,104,46,115,113,114,116,40,49,47,51,41,44,115,95,61,50,42,102,95,44,108,95,61,123,100,114,97,119,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,61,77,97,116,104,46,115,113,114,116,40,110,47,115,95,41,44,114,61,101,42,102,95,59,116,46,109,111,118,101,84,111,40,48,44,45,101,41,44,116,46,108,105,110,101,84,111,40,114,44,48,41,44,116,46,108,105,110,101,84,111,40,48,44,101,41,44,116,46,108,105,110,101,84,111,40,45,114,44,48,41,44,116,46,99,108,111,115,101,80,97,116,104,40,41,125,125,44,104,95,61,77,97,116,104,46,115,105,110,40,69,121,47,49,48,41,47,77,97,116,104,46,115,105,110,40,55,42,69,121,47,49,48,41,44,100,95,61,77,97,116,104,46,115,105,110,40,80,121,47,49,48,41,42,104,95,44,112,95,61,45,77,97,116,104,46,99,111,115,40,80,121,47,49,48,41,42,104,95,44,118,95,61,123,100,114,97,119,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,61,77,97,116,104,46,115,113,114,116,40,46,56,57,48,56,49,51,48,57,49,53,50,57,50,56,53,50,42,110,41,44,114,61,100,95,42,101,44,105,61,112,95,42,101,59,116,46,109,111,118,101,84,111,40,48,44,45,101,41,44,116,46,108,105,110,101,84,111,40,114,44,105,41,59,102,111,114,40,118,97,114,32,111,61,49,59,111,60,53,59,43,43,111,41,123,118,97,114,32,97,61,80,121,42,111,47,53,44,117,61,77,97,116,104,46,99,111,115,40,97,41,44,99,61,77,97,116,104,46,115,105,110,40,97,41,59,116,46,108,105,110,101,84,111,40,99,42,101,44,45,117,42,101,41,44,116,46,108,105,110,101,84,111,40,117,42,114,45,99,42,105,44,99,42,114,43,117,42,105,41,125,116,46,99,108,111,115,101,80,97,116,104,40,41,125,125,44,103,95,61,123,100,114,97,119,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,61,77,97,116,104,46,115,113,114,116,40,110,41,44,114,61,45,101,47,50,59,116,46,114,101,99,116,40,114,44,114,44,101,44,101,41,125,125,44,121,95,61,77,97,116,104,46,115,113,114,116,40,51,41,44,95,95,61,123,100,114,97,119,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,61,45,77,97,116,104,46,115,113,114,116,40,110,47,40,51,42,121,95,41,41,59,116,46,109,111,118,101,84,111,40,48,44,50,42,101,41,44,116,46,108,105,110,101,84,111,40,45,121,95,42,101,44,45,101,41,44,116,46,108,105,110,101,84,111,40,121,95,42,101,44,45,101,41,44,116,46,99,108,111,115,101,80,97,116,104,40,41,125,125,44,98,95,61,77,97,116,104,46,115,113,114,116,40,51,41,47,50,44,109,95,61,49,47,77,97,116,104,46,115,113,114,116,40,49,50,41,44,120,95,61,51,42,40,109,95,47,50,43,49,41,44,119,95,61,123,100,114,97,119,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,61,77,97,116,104,46,115,113,114,116,40,110,47,120,95,41,44,114,61,101,47,50,44,105,61,101,42,109,95,44,111,61,114,44,97,61,101,42,109,95,43,101,44,117,61,45,111,44,99,61,97,59,116,46,109,111,118,101,84,111,40,114,44,105,41,44,116,46,108,105,110,101,84,111,40,111,44,97,41,44,116,46,108,105,110,101,84,111,40,117,44,99,41,44,116,46,108,105,110,101,84,111,40,45,46,53,42,114,45,98,95,42,105,44,98,95,42,114,43,45,46,53,42,105,41,44,116,46,108,105,110,101,84,111,40,45,46,53,42,111,45,98,95,42,97,44,98,95,42,111,43,45,46,53,42,97,41,44,116,46,108,105,110,101,84,111,40,45,46,53,42,117,45,98,95,42,99,44,98,95,42,117,43,45,46,53,42,99,41,44,116,46,108,105,110,101,84,111,40,45,46,53,42,114,43,98,95,42,105,44,45,46,53,42,105,45,98,95,42,114,41,44,116,46,108,105,110,101,84,111,40,45,46,53,42,111,43,98,95,42,97,44,45,46,53,42,97,45,98,95,42,111,41,44,116,46,108,105,110,101,84,111,40,45,46,53,42,117,43,98,95,42,99,44,45,46,53,42,99,45,98,95,42,117,41,44,116,46,99,108,111,115,101,80,97,116,104,40,41,125,125,44,77,95,61,91,117,95,44,99,95,44,108,95,44,103,95,44,118,95,44,95,95,44,119,95,93,59,102,117,110,99,116,105,111,110,32,78,95,40,41,123,125,102,117,110,99,116,105,111,110,32,84,95,40,116,44,110,44,101,41,123,116,46,95,99,111,110,116,101,120,116,46,98,101,122,105,101,114,67,117,114,118,101,84,111,40,40,50,42,116,46,95,120,48,43,116,46,95,120,49,41,47,51,44,40,50,42,116,46,95,121,48,43,116,46,95,121,49,41,47,51,44,40,116,46,95,120,48,43,50,42,116,46,95,120,49,41,47,51,44,40,116,46,95,121,48,43,50,42,116,46,95,121,49,41,47,51,44,40,116,46,95,120,48,43,52,42,116,46,95,120,49,43,110,41,47,54,44,40,116,46,95,121,48,43,52,42,116,46,95,121,49,43,101,41,47,54,41,125,102,117,110,99,116,105,111,110,32,65,95,40,116,41,123,116,104,105,115,46,95,99,111,110,116,101,120,116,61,116,125,102,117,110,99,116,105,111,110,32,83,95,40,116,41,123,116,104,105,115,46,95,99,111,110,116,101,120,116,61,116,125,102,117,110,99,116,105,111,110,32,107,95,40,116,41,123,116,104,105,115,46,95,99,111,110,116,101,120,116,61,116,125,102,117,110,99,116,105,111,110,32,69,95,40,116,44,110,41,123,116,104,105,115,46,95,98,97,115,105,115,61,110,101,119,32,65,95,40,116,41,44,116,104,105,115,46,95,98,101,116,97,61,110,125,65,95,46,112,114,111,116,111,116,121,112,101,61,123,97,114,101,97,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,108,105,110,101,61,48,125,44,97,114,101,97,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,108,105,110,101,61,78,97,78,125,44,108,105,110,101,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,120,48,61,116,104,105,115,46,95,120,49,61,116,104,105,115,46,95,121,48,61,116,104,105,115,46,95,121,49,61,78,97,78,44,116,104,105,115,46,95,112,111,105,110,116,61,48,125,44,108,105,110,101,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,115,119,105,116,99,104,40,116,104,105,115,46,95,112,111,105,110,116,41,123,99,97,115,101,32,51,58,84,95,40,116,104,105,115,44,116,104,105,115,46,95,120,49,44,116,104,105,115,46,95,121,49,41,59,99,97,115,101,32,50,58,116,104,105,115,46,95,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,116,104,105,115,46,95,120,49,44,116,104,105,115,46,95,121,49,41,125,40,116,104,105,115,46,95,108,105,110,101,124,124,48,33,61,61,116,104,105,115,46,95,108,105,110,101,38,38,49,61,61,61,116,104,105,115,46,95,112,111,105,110,116,41,38,38,116,104,105,115,46,95,99,111,110,116,101,120,116,46,99,108,111,115,101,80,97,116,104,40,41,44,116,104,105,115,46,95,108,105,110,101,61,49,45,116,104,105,115,46,95,108,105,110,101,125,44,112,111,105,110,116,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,115,119,105,116,99,104,40,116,61,43,116,44,110,61,43,110,44,116,104,105,115,46,95,112,111,105,110,116,41,123,99,97,115,101,32,48,58,116,104,105,115,46,95,112,111,105,110,116,61,49,44,116,104,105,115,46,95,108,105,110,101,63,116,104,105,115,46,95,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,116,44,110,41,58,116,104,105,115,46,95,99,111,110,116,101,120,116,46,109,111,118,101,84,111,40,116,44,110,41,59,98,114,101,97,107,59,99,97,115,101,32,49,58,116,104,105,115,46,95,112,111,105,110,116,61,50,59,98,114,101,97,107,59,99,97,115,101,32,50,58,116,104,105,115,46,95,112,111,105,110,116,61,51,44,116,104,105,115,46,95,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,40,53,42,116,104,105,115,46,95,120,48,43,116,104,105,115,46,95,120,49,41,47,54,44,40,53,42,116,104,105,115,46,95,121,48,43,116,104,105,115,46,95,121,49,41,47,54,41,59,100,101,102,97,117,108,116,58,84,95,40,116,104,105,115,44,116,44,110,41,125,116,104,105,115,46,95,120,48,61,116,104,105,115,46,95,120,49,44,116,104,105,115,46,95,120,49,61,116,44,116,104,105,115,46,95,121,48,61,116,104,105,115,46,95,121,49,44,116,104,105,115,46,95,121,49,61,110,125,125,44,83,95,46,112,114,111,116,111,116,121,112,101,61,123,97,114,101,97,83,116,97,114,116,58,78,95,44,97,114,101,97,69,110,100,58,78,95,44,108,105,110,101,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,120,48,61,116,104,105,115,46,95,120,49,61,116,104,105,115,46,95,120,50,61,116,104,105,115,46,95,120,51,61,116,104,105,115,46,95,120,52,61,116,104,105,115,46,95,121,48,61,116,104,105,115,46,95,121,49,61,116,104,105,115,46,95,121,50,61,116,104,105,115,46,95,121,51,61,116,104,105,115,46,95,121,52,61,78,97,78,44,116,104,105,115,46,95,112,111,105,110,116,61,48,125,44,108,105,110,101,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,115,119,105,116,99,104,40,116,104,105,115,46,95,112,111,105,110,116,41,123,99,97,115,101,32,49,58,116,104,105,115,46,95,99,111,110,116,101,120,116,46,109,111,118,101,84,111,40,116,104,105,115,46,95,120,50,44,116,104,105,115,46,95,121,50,41,44,116,104,105,115,46,95,99,111,110,116,101,120,116,46,99,108,111,115,101,80,97,116,104,40,41,59,98,114,101,97,107,59,99,97,115,101,32,50,58,116,104,105,115,46,95,99,111,110,116,101,120,116,46,109,111,118,101,84,111,40,40,116,104,105,115,46,95,120,50,43,50,42,116,104,105,115,46,95,120,51,41,47,51,44,40,116,104,105,115,46,95,121,50,43,50,42,116,104,105,115,46,95,121,51,41,47,51,41,44,116,104,105,115,46,95,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,40,116,104,105,115,46,95,120,51,43,50,42,116,104,105,115,46,95,120,50,41,47,51,44,40,116,104,105,115,46,95,121,51,43,50,42,116,104,105,115,46,95,121,50,41,47,51,41,44,116,104,105,115,46,95,99,111,110,116,101,120,116,46,99,108,111,115,101,80,97,116,104,40,41,59,98,114,101,97,107,59,99,97,115,101,32,51,58,116,104,105,115,46,112,111,105,110,116,40,116,104,105,115,46,95,120,50,44,116,104,105,115,46,95,121,50,41,44,116,104,105,115,46,112,111,105,110,116,40,116,104,105,115,46,95,120,51,44,116,104,105,115,46,95,121,51,41,44,116,104,105,115,46,112,111,105,110,116,40,116,104,105,115,46,95,120,52,44,116,104,105,115,46,95,121,52,41,125,125,44,112,111,105,110,116,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,115,119,105,116,99,104,40,116,61,43,116,44,110,61,43,110,44,116,104,105,115,46,95,112,111,105,110,116,41,123,99,97,115,101,32,48,58,116,104,105,115,46,95,112,111,105,110,116,61,49,44,116,104,105,115,46,95,120,50,61,116,44,116,104,105,115,46,95,121,50,61,110,59,98,114,101,97,107,59,99,97,115,101,32,49,58,116,104,105,115,46,95,112,111,105,110,116,61,50,44,116,104,105,115,46,95,120,51,61,116,44,116,104,105,115,46,95,121,51,61,110,59,98,114,101,97,107,59,99,97,115,101,32,50,58,116,104,105,115,46,95,112,111,105,110,116,61,51,44,116,104,105,115,46,95,120,52,61,116,44,116,104,105,115,46,95,121,52,61,110,44,116,104,105,115,46,95,99,111,110,116,101,120,116,46,109,111,118,101,84,111,40,40,116,104,105,115,46,95,120,48,43,52,42,116,104,105,115,46,95,120,49,43,116,41,47,54,44,40,116,104,105,115,46,95,121,48,43,52,42,116,104,105,115,46,95,121,49,43,110,41,47,54,41,59,98,114,101,97,107,59,100,101,102,97,117,108,116,58,84,95,40,116,104,105,115,44,116,44,110,41,125,116,104,105,115,46,95,120,48,61,116,104,105,115,46,95,120,49,44,116,104,105,115,46,95,120,49,61,116,44,116,104,105,115,46,95,121,48,61,116,104,105,115,46,95,121,49,44,116,104,105,115,46,95,121,49,61,110,125,125,44,107,95,46,112,114,111,116,111,116,121,112,101,61,123,97,114,101,97,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,108,105,110,101,61,48,125,44,97,114,101,97,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,108,105,110,101,61,78,97,78,125,44,108,105,110,101,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,120,48,61,116,104,105,115,46,95,120,49,61,116,104,105,115,46,95,121,48,61,116,104,105,115,46,95,121,49,61,78,97,78,44,116,104,105,115,46,95,112,111,105,110,116,61,48,125,44,108,105,110,101,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,40,116,104,105,115,46,95,108,105,110,101,124,124,48,33,61,61,116,104,105,115,46,95,108,105,110,101,38,38,51,61,61,61,116,104,105,115,46,95,112,111,105,110,116,41,38,38,116,104,105,115,46,95,99,111,110,116,101,120,116,46,99,108,111,115,101,80,97,116,104,40,41,44,116,104,105,115,46,95,108,105,110,101,61,49,45,116,104,105,115,46,95,108,105,110,101,125,44,112,111,105,110,116,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,115,119,105,116,99,104,40,116,61,43,116,44,110,61,43,110,44,116,104,105,115,46,95,112,111,105,110,116,41,123,99,97,115,101,32,48,58,116,104,105,115,46,95,112,111,105,110,116,61,49,59,98,114,101,97,107,59,99,97,115,101,32,49,58,116,104,105,115,46,95,112,111,105,110,116,61,50,59,98,114,101,97,107,59,99,97,115,101,32,50,58,116,104,105,115,46,95,112,111,105,110,116,61,51,59,118,97,114,32,101,61,40,116,104,105,115,46,95,120,48,43,52,42,116,104,105,115,46,95,120,49,43,116,41,47,54,44,114,61,40,116,104,105,115,46,95,121,48,43,52,42,116,104,105,115,46,95,121,49,43,110,41,47,54,59,116,104,105,115,46,95,108,105,110,101,63,116,104,105,115,46,95,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,101,44,114,41,58,116,104,105,115,46,95,99,111,110,116,101,120,116,46,109,111,118,101,84,111,40,101,44,114,41,59,98,114,101,97,107,59,99,97,115,101,32,51,58,116,104,105,115,46,95,112,111,105,110,116,61,52,59,100,101,102,97,117,108,116,58,84,95,40,116,104,105,115,44,116,44,110,41,125,116,104,105,115,46,95,120,48,61,116,104,105,115,46,95,120,49,44,116,104,105,115,46,95,120,49,61,116,44,116,104,105,115,46,95,121,48,61,116,104,105,115,46,95,121,49,44,116,104,105,115,46,95,121,49,61,110,125,125,44,69,95,46,112,114,111,116,111,116,121,112,101,61,123,108,105,110,101,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,120,61,91,93,44,116,104,105,115,46,95,121,61,91,93,44,116,104,105,115,46,95,98,97,115,105,115,46,108,105,110,101,83,116,97,114,116,40,41,125,44,108,105,110,101,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,95,120,44,110,61,116,104,105,115,46,95,121,44,101,61,116,46,108,101,110,103,116,104,45,49,59,105,102,40,101,62,48,41,102,111,114,40,118,97,114,32,114,44,105,61,116,91,48,93,44,111,61,110,91,48,93,44,97,61,116,91,101,93,45,105,44,117,61,110,91,101,93,45,111,44,99,61,45,49,59,43,43,99,60,61,101,59,41,114,61,99,47,101,44,116,104,105,115,46,95,98,97,115,105,115,46,112,111,105,110,116,40,116,104,105,115,46,95,98,101,116,97,42,116,91,99,93,43,40,49,45,116,104,105,115,46,95,98,101,116,97,41,42,40,105,43,114,42,97,41,44,116,104,105,115,46,95,98,101,116,97,42,110,91,99,93,43,40,49,45,116,104,105,115,46,95,98,101,116,97,41,42,40,111,43,114,42,117,41,41,59,116,104,105,115,46,95,120,61,116,104,105,115,46,95,121,61,110,117,108,108,44,116,104,105,115,46,95,98,97,115,105,115,46,108,105,110,101,69,110,100,40,41,125,44,112,111,105,110,116,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,116,104,105,115,46,95,120,46,112,117,115,104,40,43,116,41,44,116,104,105,115,46,95,121,46,112,117,115,104,40,43,110,41,125,125,59,118,97,114,32,67,95,61,102,117,110,99,116,105,111,110,32,116,40,110,41,123,102,117,110,99,116,105,111,110,32,101,40,116,41,123,114,101,116,117,114,110,32,49,61,61,61,110,63,110,101,119,32,65,95,40,116,41,58,110,101,119,32,69,95,40,116,44,110,41,125,114,101,116,117,114,110,32,101,46,98,101,116,97,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,40,43,110,41,125,44,101,125,40,46,56,53,41,59,102,117,110,99,116,105,111,110,32,80,95,40,116,44,110,44,101,41,123,116,46,95,99,111,110,116,101,120,116,46,98,101,122,105,101,114,67,117,114,118,101,84,111,40,116,46,95,120,49,43,116,46,95,107,42,40,116,46,95,120,50,45,116,46,95,120,48,41,44,116,46,95,121,49,43,116,46,95,107,42,40,116,46,95,121,50,45,116,46,95,121,48,41,44,116,46,95,120,50,43,116,46,95,107,42,40,116,46,95,120,49,45,110,41,44,116,46,95,121,50,43,116,46,95,107,42,40,116,46,95,121,49,45,101,41,44,116,46,95,120,50,44,116,46,95,121,50,41,125,102,117,110,99,116,105,111,110,32,122,95,40,116,44,110,41,123,116,104,105,115,46,95,99,111,110,116,101,120,116,61,116,44,116,104,105,115,46,95,107,61,40,49,45,110,41,47,54,125,122,95,46,112,114,111,116,111,116,121,112,101,61,123,97,114,101,97,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,108,105,110,101,61,48,125,44,97,114,101,97,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,108,105,110,101,61,78,97,78,125,44,108,105,110,101,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,120,48,61,116,104,105,115,46,95,120,49,61,116,104,105,115,46,95,120,50,61,116,104,105,115,46,95,121,48,61,116,104,105,115,46,95,121,49,61,116,104,105,115,46,95,121,50,61,78,97,78,44,116,104,105,115,46,95,112,111,105,110,116,61,48,125,44,108,105,110,101,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,115,119,105,116,99,104,40,116,104,105,115,46,95,112,111,105,110,116,41,123,99,97,115,101,32,50,58,116,104,105,115,46,95,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,116,104,105,115,46,95,120,50,44,116,104,105,115,46,95,121,50,41,59,98,114,101,97,107,59,99,97,115,101,32,51,58,80,95,40,116,104,105,115,44,116,104,105,115,46,95,120,49,44,116,104,105,115,46,95,121,49,41,125,40,116,104,105,115,46,95,108,105,110,101,124,124,48,33,61,61,116,104,105,115,46,95,108,105,110,101,38,38,49,61,61,61,116,104,105,115,46,95,112,111,105,110,116,41,38,38,116,104,105,115,46,95,99,111,110,116,101,120,116,46,99,108,111,115,101,80,97,116,104,40,41,44,116,104,105,115,46,95,108,105,110,101,61,49,45,116,104,105,115,46,95,108,105,110,101,125,44,112,111,105,110,116,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,115,119,105,116,99,104,40,116,61,43,116,44,110,61,43,110,44,116,104,105,115,46,95,112,111,105,110,116,41,123,99,97,115,101,32,48,58,116,104,105,115,46,95,112,111,105,110,116,61,49,44,116,104,105,115,46,95,108,105,110,101,63,116,104,105,115,46,95,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,116,44,110,41,58,116,104,105,115,46,95,99,111,110,116,101,120,116,46,109,111,118,101,84,111,40,116,44,110,41,59,98,114,101,97,107,59,99,97,115,101,32,49,58,116,104,105,115,46,95,112,111,105,110,116,61,50,44,116,104,105,115,46,95,120,49,61,116,44,116,104,105,115,46,95,121,49,61,110,59,98,114,101,97,107,59,99,97,115,101,32,50,58,116,104,105,115,46,95,112,111,105,110,116,61,51,59,100,101,102,97,117,108,116,58,80,95,40,116,104,105,115,44,116,44,110,41,125,116,104,105,115,46,95,120,48,61,116,104,105,115,46,95,120,49,44,116,104,105,115,46,95,120,49,61,116,104,105,115,46,95,120,50,44,116,104,105,115,46,95,120,50,61,116,44,116,104,105,115,46,95,121,48,61,116,104,105,115,46,95,121,49,44,116,104,105,115,46,95,121,49,61,116,104,105,115,46,95,121,50,44,116,104,105,115,46,95,121,50,61,110,125,125,59,118,97,114,32,82,95,61,102,117,110,99,116,105,111,110,32,116,40,110,41,123,102,117,110,99,116,105,111,110,32,101,40,116,41,123,114,101,116,117,114,110,32,110,101,119,32,122,95,40,116,44,110,41,125,114,101,116,117,114,110,32,101,46,116,101,110,115,105,111,110,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,40,43,110,41,125,44,101,125,40,48,41,59,102,117,110,99,116,105,111,110,32,68,95,40,116,44,110,41,123,116,104,105,115,46,95,99,111,110,116,101,120,116,61,116,44,116,104,105,115,46,95,107,61,40,49,45,110,41,47,54,125,68,95,46,112,114,111,116,111,116,121,112,101,61,123,97,114,101,97,83,116,97,114,116,58,78,95,44,97,114,101,97,69,110,100,58,78,95,44,108,105,110,101,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,120,48,61,116,104,105,115,46,95,120,49,61,116,104,105,115,46,95,120,50,61,116,104,105,115,46,95,120,51,61,116,104,105,115,46,95,120,52,61,116,104,105,115,46,95,120,53,61,116,104,105,115,46,95,121,48,61,116,104,105,115,46,95,121,49,61,116,104,105,115,46,95,121,50,61,116,104,105,115,46,95,121,51,61,116,104,105,115,46,95,121,52,61,116,104,105,115,46,95,121,53,61,78,97,78,44,116,104,105,115,46,95,112,111,105,110,116,61,48,125,44,108,105,110,101,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,115,119,105,116,99,104,40,116,104,105,115,46,95,112,111,105,110,116,41,123,99,97,115,101,32,49,58,116,104,105,115,46,95,99,111,110,116,101,120,116,46,109,111,118,101,84,111,40,116,104,105,115,46,95,120,51,44,116,104,105,115,46,95,121,51,41,44,116,104,105,115,46,95,99,111,110,116,101,120,116,46,99,108,111,115,101,80,97,116,104,40,41,59,98,114,101,97,107,59,99,97,115,101,32,50,58,116,104,105,115,46,95,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,116,104,105,115,46,95,120,51,44,116,104,105,115,46,95,121,51,41,44,116,104,105,115,46,95,99,111,110,116,101,120,116,46,99,108,111,115,101,80,97,116,104,40,41,59,98,114,101,97,107,59,99,97,115,101,32,51,58,116,104,105,115,46,112,111,105,110,116,40,116,104,105,115,46,95,120,51,44,116,104,105,115,46,95,121,51,41,44,116,104,105,115,46,112,111,105,110,116,40,116,104,105,115,46,95,120,52,44,116,104,105,115,46,95,121,52,41,44,116,104,105,115,46,112,111,105,110,116,40,116,104,105,115,46,95,120,53,44,116,104,105,115,46,95,121,53,41,125,125,44,112,111,105,110,116,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,115,119,105,116,99,104,40,116,61,43,116,44,110,61,43,110,44,116,104,105,115,46,95,112,111,105,110,116,41,123,99,97,115,101,32,48,58,116,104,105,115,46,95,112,111,105,110,116,61,49,44,116,104,105,115,46,95,120,51,61,116,44,116,104,105,115,46,95,121,51,61,110,59,98,114,101,97,107,59,99,97,115,101,32,49,58,116,104,105,115,46,95,112,111,105,110,116,61,50,44,116,104,105,115,46,95,99,111,110,116,101,120,116,46,109,111,118,101,84,111,40,116,104,105,115,46,95,120,52,61,116,44,116,104,105,115,46,95,121,52,61,110,41,59,98,114,101,97,107,59,99,97,115,101,32,50,58,116,104,105,115,46,95,112,111,105,110,116,61,51,44,116,104,105,115,46,95,120,53,61,116,44,116,104,105,115,46,95,121,53,61,110,59,98,114,101,97,107,59,100,101,102,97,117,108,116,58,80,95,40,116,104,105,115,44,116,44,110,41,125,116,104,105,115,46,95,120,48,61,116,104,105,115,46,95,120,49,44,116,104,105,115,46,95,120,49,61,116,104,105,115,46,95,120,50,44,116,104,105,115,46,95,120,50,61,116,44,116,104,105,115,46,95,121,48,61,116,104,105,115,46,95,121,49,44,116,104,105,115,46,95,121,49,61,116,104,105,115,46,95,121,50,44,116,104,105,115,46,95,121,50,61,110,125,125,59,118,97,114,32,113,95,61,102,117,110,99,116,105,111,110,32,116,40,110,41,123,102,117,110,99,116,105,111,110,32,101,40,116,41,123,114,101,116,117,114,110,32,110,101,119,32,68,95,40,116,44,110,41,125,114,101,116,117,114,110,32,101,46,116,101,110,115,105,111,110,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,40,43,110,41,125,44,101,125,40,48,41,59,102,117,110,99,116,105,111,110,32,76,95,40,116,44,110,41,123,116,104,105,115,46,95,99,111,110,116,101,120,116,61,116,44,116,104,105,115,46,95,107,61,40,49,45,110,41,47,54,125,76,95,46,112,114,111,116,111,116,121,112,101,61,123,97,114,101,97,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,108,105,110,101,61,48,125,44,97,114,101,97,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,108,105,110,101,61,78,97,78,125,44,108,105,110,101,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,120,48,61,116,104,105,115,46,95,120,49,61,116,104,105,115,46,95,120,50,61,116,104,105,115,46,95,121,48,61,116,104,105,115,46,95,121,49,61,116,104,105,115,46,95,121,50,61,78,97,78,44,116,104,105,115,46,95,112,111,105,110,116,61,48,125,44,108,105,110,101,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,40,116,104,105,115,46,95,108,105,110,101,124,124,48,33,61,61,116,104,105,115,46,95,108,105,110,101,38,38,51,61,61,61,116,104,105,115,46,95,112,111,105,110,116,41,38,38,116,104,105,115,46,95,99,111,110,116,101,120,116,46,99,108,111,115,101,80,97,116,104,40,41,44,116,104,105,115,46,95,108,105,110,101,61,49,45,116,104,105,115,46,95,108,105,110,101,125,44,112,111,105,110,116,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,115,119,105,116,99,104,40,116,61,43,116,44,110,61,43,110,44,116,104,105,115,46,95,112,111,105,110,116,41,123,99,97,115,101,32,48,58,116,104,105,115,46,95,112,111,105,110,116,61,49,59,98,114,101,97,107,59,99,97,115,101,32,49,58,116,104,105,115,46,95,112,111,105,110,116,61,50,59,98,114,101,97,107,59,99,97,115,101,32,50,58,116,104,105,115,46,95,112,111,105,110,116,61,51,44,116,104,105,115,46,95,108,105,110,101,63,116,104,105,115,46,95,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,116,104,105,115,46,95,120,50,44,116,104,105,115,46,95,121,50,41,58,116,104,105,115,46,95,99,111,110,116,101,120,116,46,109,111,118,101,84,111,40,116,104,105,115,46,95,120,50,44,116,104,105,115,46,95,121,50,41,59,98,114,101,97,107,59,99,97,115,101,32,51,58,116,104,105,115,46,95,112,111,105,110,116,61,52,59,100,101,102,97,117,108,116,58,80,95,40,116,104,105,115,44,116,44,110,41,125,116,104,105,115,46,95,120,48,61,116,104,105,115,46,95,120,49,44,116,104,105,115,46,95,120,49,61,116,104,105,115,46,95,120,50,44,116,104,105,115,46,95,120,50,61,116,44,116,104,105,115,46,95,121,48,61,116,104,105,115,46,95,121,49,44,116,104,105,115,46,95,121,49,61,116,104,105,115,46,95,121,50,44,116,104,105,115,46,95,121,50,61,110,125,125,59,118,97,114,32,85,95,61,102,117,110,99,116,105,111,110,32,116,40,110,41,123,102,117,110,99,116,105,111,110,32,101,40,116,41,123,114,101,116,117,114,110,32,110,101,119,32,76,95,40,116,44,110,41,125,114,101,116,117,114,110,32,101,46,116,101,110,115,105,111,110,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,40,43,110,41,125,44,101,125,40,48,41,59,102,117,110,99,116,105,111,110,32,79,95,40,116,44,110,44,101,41,123,118,97,114,32,114,61,116,46,95,120,49,44,105,61,116,46,95,121,49,44,111,61,116,46,95,120,50,44,97,61,116,46,95,121,50,59,105,102,40,116,46,95,108,48,49,95,97,62,107,121,41,123,118,97,114,32,117,61,50,42,116,46,95,108,48,49,95,50,97,43,51,42,116,46,95,108,48,49,95,97,42,116,46,95,108,49,50,95,97,43,116,46,95,108,49,50,95,50,97,44,99,61,51,42,116,46,95,108,48,49,95,97,42,40,116,46,95,108,48,49,95,97,43,116,46,95,108,49,50,95,97,41,59,114,61,40,114,42,117,45,116,46,95,120,48,42,116,46,95,108,49,50,95,50,97,43,116,46,95,120,50,42,116,46,95,108,48,49,95,50,97,41,47,99,44,105,61,40,105,42,117,45,116,46,95,121,48,42,116,46,95,108,49,50,95,50,97,43,116,46,95,121,50,42,116,46,95,108,48,49,95,50,97,41,47,99,125,105,102,40,116,46,95,108,50,51,95,97,62,107,121,41,123,118,97,114,32,102,61,50,42,116,46,95,108,50,51,95,50,97,43,51,42,116,46,95,108,50,51,95,97,42,116,46,95,108,49,50,95,97,43,116,46,95,108,49,50,95,50,97,44,115,61,51,42,116,46,95,108,50,51,95,97,42,40,116,46,95,108,50,51,95,97,43,116,46,95,108,49,50,95,97,41,59,111,61,40,111,42,102,43,116,46,95,120,49,42,116,46,95,108,50,51,95,50,97,45,110,42,116,46,95,108,49,50,95,50,97,41,47,115,44,97,61,40,97,42,102,43,116,46,95,121,49,42,116,46,95,108,50,51,95,50,97,45,101,42,116,46,95,108,49,50,95,50,97,41,47,115,125,116,46,95,99,111,110,116,101,120,116,46,98,101,122,105,101,114,67,117,114,118,101,84,111,40,114,44,105,44,111,44,97,44,116,46,95,120,50,44,116,46,95,121,50,41,125,102,117,110,99,116,105,111,110,32,66,95,40,116,44,110,41,123,116,104,105,115,46,95,99,111,110,116,101,120,116,61,116,44,116,104,105,115,46,95,97,108,112,104,97,61,110,125,66,95,46,112,114,111,116,111,116,121,112,101,61,123,97,114,101,97,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,108,105,110,101,61,48,125,44,97,114,101,97,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,108,105,110,101,61,78,97,78,125,44,108,105,110,101,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,120,48,61,116,104,105,115,46,95,120,49,61,116,104,105,115,46,95,120,50,61,116,104,105,115,46,95,121,48,61,116,104,105,115,46,95,121,49,61,116,104,105,115,46,95,121,50,61,78,97,78,44,116,104,105,115,46,95,108,48,49,95,97,61,116,104,105,115,46,95,108,49,50,95,97,61,116,104,105,115,46,95,108,50,51,95,97,61,116,104,105,115,46,95,108,48,49,95,50,97,61,116,104,105,115,46,95,108,49,50,95,50,97,61,116,104,105,115,46,95,108,50,51,95,50,97,61,116,104,105,115,46,95,112,111,105,110,116,61,48,125,44,108,105,110,101,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,115,119,105,116,99,104,40,116,104,105,115,46,95,112,111,105,110,116,41,123,99,97,115,101,32,50,58,116,104,105,115,46,95,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,116,104,105,115,46,95,120,50,44,116,104,105,115,46,95,121,50,41,59,98,114,101,97,107,59,99,97,115,101,32,51,58,116,104,105,115,46,112,111,105,110,116,40,116,104,105,115,46,95,120,50,44,116,104,105,115,46,95,121,50,41,125,40,116,104,105,115,46,95,108,105,110,101,124,124,48,33,61,61,116,104,105,115,46,95,108,105,110,101,38,38,49,61,61,61,116,104,105,115,46,95,112,111,105,110,116,41,38,38,116,104,105,115,46,95,99,111,110,116,101,120,116,46,99,108,111,115,101,80,97,116,104,40,41,44,116,104,105,115,46,95,108,105,110,101,61,49,45,116,104,105,115,46,95,108,105,110,101,125,44,112,111,105,110,116,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,105,102,40,116,61,43,116,44,110,61,43,110,44,116,104,105,115,46,95,112,111,105,110,116,41,123,118,97,114,32,101,61,116,104,105,115,46,95,120,50,45,116,44,114,61,116,104,105,115,46,95,121,50,45,110,59,116,104,105,115,46,95,108,50,51,95,97,61,77,97,116,104,46,115,113,114,116,40,116,104,105,115,46,95,108,50,51,95,50,97,61,77,97,116,104,46,112,111,119,40,101,42,101,43,114,42,114,44,116,104,105,115,46,95,97,108,112,104,97,41,41,125,115,119,105,116,99,104,40,116,104,105,115,46,95,112,111,105,110,116,41,123,99,97,115,101,32,48,58,116,104,105,115,46,95,112,111,105,110,116,61,49,44,116,104,105,115,46,95,108,105,110,101,63,116,104,105,115,46,95,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,116,44,110,41,58,116,104,105,115,46,95,99,111,110,116,101,120,116,46,109,111,118,101,84,111,40,116,44,110,41,59,98,114,101,97,107,59,99,97,115,101,32,49,58,116,104,105,115,46,95,112,111,105,110,116,61,50,59,98,114,101,97,107,59,99,97,115,101,32,50,58,116,104,105,115,46,95,112,111,105,110,116,61,51,59,100,101,102,97,117,108,116,58,79,95,40,116,104,105,115,44,116,44,110,41,125,116,104,105,115,46,95,108,48,49,95,97,61,116,104,105,115,46,95,108,49,50,95,97,44,116,104,105,115,46,95,108,49,50,95,97,61,116,104,105,115,46,95,108,50,51,95,97,44,116,104,105,115,46,95,108,48,49,95,50,97,61,116,104,105,115,46,95,108,49,50,95,50,97,44,116,104,105,115,46,95,108,49,50,95,50,97,61,116,104,105,115,46,95,108,50,51,95,50,97,44,116,104,105,115,46,95,120,48,61,116,104,105,115,46,95,120,49,44,116,104,105,115,46,95,120,49,61,116,104,105,115,46,95,120,50,44,116,104,105,115,46,95,120,50,61,116,44,116,104,105,115,46,95,121,48,61,116,104,105,115,46,95,121,49,44,116,104,105,115,46,95,121,49,61,116,104,105,115,46,95,121,50,44,116,104,105,115,46,95,121,50,61,110,125,125,59,118,97,114,32,70,95,61,102,117,110,99,116,105,111,110,32,116,40,110,41,123,102,117,110,99,116,105,111,110,32,101,40,116,41,123,114,101,116,117,114,110,32,110,63,110,101,119,32,66,95,40,116,44,110,41,58,110,101,119,32,122,95,40,116,44,48,41,125,114,101,116,117,114,110,32,101,46,97,108,112,104,97,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,40,43,110,41,125,44,101,125,40,46,53,41,59,102,117,110,99,116,105,111,110,32,89,95,40,116,44,110,41,123,116,104,105,115,46,95,99,111,110,116,101,120,116,61,116,44,116,104,105,115,46,95,97,108,112,104,97,61,110,125,89,95,46,112,114,111,116,111,116,121,112,101,61,123,97,114,101,97,83,116,97,114,116,58,78,95,44,97,114,101,97,69,110,100,58,78,95,44,108,105,110,101,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,120,48,61,116,104,105,115,46,95,120,49,61,116,104,105,115,46,95,120,50,61,116,104,105,115,46,95,120,51,61,116,104,105,115,46,95,120,52,61,116,104,105,115,46,95,120,53,61,116,104,105,115,46,95,121,48,61,116,104,105,115,46,95,121,49,61,116,104,105,115,46,95,121,50,61,116,104,105,115,46,95,121,51,61,116,104,105,115,46,95,121,52,61,116,104,105,115,46,95,121,53,61,78,97,78,44,116,104,105,115,46,95,108,48,49,95,97,61,116,104,105,115,46,95,108,49,50,95,97,61,116,104,105,115,46,95,108,50,51,95,97,61,116,104,105,115,46,95,108,48,49,95,50,97,61,116,104,105,115,46,95,108,49,50,95,50,97,61,116,104,105,115,46,95,108,50,51,95,50,97,61,116,104,105,115,46,95,112,111,105,110,116,61,48,125,44,108,105,110,101,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,115,119,105,116,99,104,40,116,104,105,115,46,95,112,111,105,110,116,41,123,99,97,115,101,32,49,58,116,104,105,115,46,95,99,111,110,116,101,120,116,46,109,111,118,101,84,111,40,116,104,105,115,46,95,120,51,44,116,104,105,115,46,95,121,51,41,44,116,104,105,115,46,95,99,111,110,116,101,120,116,46,99,108,111,115,101,80,97,116,104,40,41,59,98,114,101,97,107,59,99,97,115,101,32,50,58,116,104,105,115,46,95,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,116,104,105,115,46,95,120,51,44,116,104,105,115,46,95,121,51,41,44,116,104,105,115,46,95,99,111,110,116,101,120,116,46,99,108,111,115,101,80,97,116,104,40,41,59,98,114,101,97,107,59,99,97,115,101,32,51,58,116,104,105,115,46,112,111,105,110,116,40,116,104,105,115,46,95,120,51,44,116,104,105,115,46,95,121,51,41,44,116,104,105,115,46,112,111,105,110,116,40,116,104,105,115,46,95,120,52,44,116,104,105,115,46,95,121,52,41,44,116,104,105,115,46,112,111,105,110,116,40,116,104,105,115,46,95,120,53,44,116,104,105,115,46,95,121,53,41,125,125,44,112,111,105,110,116,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,105,102,40,116,61,43,116,44,110,61,43,110,44,116,104,105,115,46,95,112,111,105,110,116,41,123,118,97,114,32,101,61,116,104,105,115,46,95,120,50,45,116,44,114,61,116,104,105,115,46,95,121,50,45,110,59,116,104,105,115,46,95,108,50,51,95,97,61,77,97,116,104,46,115,113,114,116,40,116,104,105,115,46,95,108,50,51,95,50,97,61,77,97,116,104,46,112,111,119,40,101,42,101,43,114,42,114,44,116,104,105,115,46,95,97,108,112,104,97,41,41,125,115,119,105,116,99,104,40,116,104,105,115,46,95,112,111,105,110,116,41,123,99,97,115,101,32,48,58,116,104,105,115,46,95,112,111,105,110,116,61,49,44,116,104,105,115,46,95,120,51,61,116,44,116,104,105,115,46,95,121,51,61,110,59,98,114,101,97,107,59,99,97,115,101,32,49,58,116,104,105,115,46,95,112,111,105,110,116,61,50,44,116,104,105,115,46,95,99,111,110,116,101,120,116,46,109,111,118,101,84,111,40,116,104,105,115,46,95,120,52,61,116,44,116,104,105,115,46,95,121,52,61,110,41,59,98,114,101,97,107,59,99,97,115,101,32,50,58,116,104,105,115,46,95,112,111,105,110,116,61,51,44,116,104,105,115,46,95,120,53,61,116,44,116,104,105,115,46,95,121,53,61,110,59,98,114,101,97,107,59,100,101,102,97,117,108,116,58,79,95,40,116,104,105,115,44,116,44,110,41,125,116,104,105,115,46,95,108,48,49,95,97,61,116,104,105,115,46,95,108,49,50,95,97,44,116,104,105,115,46,95,108,49,50,95,97,61,116,104,105,115,46,95,108,50,51,95,97,44,116,104,105,115,46,95,108,48,49,95,50,97,61,116,104,105,115,46,95,108,49,50,95,50,97,44,116,104,105,115,46,95,108,49,50,95,50,97,61,116,104,105,115,46,95,108,50,51,95,50,97,44,116,104,105,115,46,95,120,48,61,116,104,105,115,46,95,120,49,44,116,104,105,115,46,95,120,49,61,116,104,105,115,46,95,120,50,44,116,104,105,115,46,95,120,50,61,116,44,116,104,105,115,46,95,121,48,61,116,104,105,115,46,95,121,49,44,116,104,105,115,46,95,121,49,61,116,104,105,115,46,95,121,50,44,116,104,105,115,46,95,121,50,61,110,125,125,59,118,97,114,32,73,95,61,102,117,110,99,116,105,111,110,32,116,40,110,41,123,102,117,110,99,116,105,111,110,32,101,40,116,41,123,114,101,116,117,114,110,32,110,63,110,101,119,32,89,95,40,116,44,110,41,58,110,101,119,32,68,95,40,116,44,48,41,125,114,101,116,117,114,110,32,101,46,97,108,112,104,97,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,40,43,110,41,125,44,101,125,40,46,53,41,59,102,117,110,99,116,105,111,110,32,72,95,40,116,44,110,41,123,116,104,105,115,46,95,99,111,110,116,101,120,116,61,116,44,116,104,105,115,46,95,97,108,112,104,97,61,110,125,72,95,46,112,114,111,116,111,116,121,112,101,61,123,97,114,101,97,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,108,105,110,101,61,48,125,44,97,114,101,97,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,108,105,110,101,61,78,97,78,125,44,108,105,110,101,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,120,48,61,116,104,105,115,46,95,120,49,61,116,104,105,115,46,95,120,50,61,116,104,105,115,46,95,121,48,61,116,104,105,115,46,95,121,49,61,116,104,105,115,46,95,121,50,61,78,97,78,44,116,104,105,115,46,95,108,48,49,95,97,61,116,104,105,115,46,95,108,49,50,95,97,61,116,104,105,115,46,95,108,50,51,95,97,61,116,104,105,115,46,95,108,48,49,95,50,97,61,116,104,105,115,46,95,108,49,50,95,50,97,61,116,104,105,115,46,95,108,50,51,95,50,97,61,116,104,105,115,46,95,112,111,105,110,116,61,48,125,44,108,105,110,101,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,40,116,104,105,115,46,95,108,105,110,101,124,124,48,33,61,61,116,104,105,115,46,95,108,105,110,101,38,38,51,61,61,61,116,104,105,115,46,95,112,111,105,110,116,41,38,38,116,104,105,115,46,95,99,111,110,116,101,120,116,46,99,108,111,115,101,80,97,116,104,40,41,44,116,104,105,115,46,95,108,105,110,101,61,49,45,116,104,105,115,46,95,108,105,110,101,125,44,112,111,105,110,116,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,105,102,40,116,61,43,116,44,110,61,43,110,44,116,104,105,115,46,95,112,111,105,110,116,41,123,118,97,114,32,101,61,116,104,105,115,46,95,120,50,45,116,44,114,61,116,104,105,115,46,95,121,50,45,110,59,116,104,105,115,46,95,108,50,51,95,97,61,77,97,116,104,46,115,113,114,116,40,116,104,105,115,46,95,108,50,51,95,50,97,61,77,97,116,104,46,112,111,119,40,101,42,101,43,114,42,114,44,116,104,105,115,46,95,97,108,112,104,97,41,41,125,115,119,105,116,99,104,40,116,104,105,115,46,95,112,111,105,110,116,41,123,99,97,115,101,32,48,58,116,104,105,115,46,95,112,111,105,110,116,61,49,59,98,114,101,97,107,59,99,97,115,101,32,49,58,116,104,105,115,46,95,112,111,105,110,116,61,50,59,98,114,101,97,107,59,99,97,115,101,32,50,58,116,104,105,115,46,95,112,111,105,110,116,61,51,44,116,104,105,115,46,95,108,105,110,101,63,116,104,105,115,46,95,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,116,104,105,115,46,95,120,50,44,116,104,105,115,46,95,121,50,41,58,116,104,105,115,46,95,99,111,110,116,101,120,116,46,109,111,118,101,84,111,40,116,104,105,115,46,95,120,50,44,116,104,105,115,46,95,121,50,41,59,98,114,101,97,107,59,99,97,115,101,32,51,58,116,104,105,115,46,95,112,111,105,110,116,61,52,59,100,101,102,97,117,108,116,58,79,95,40,116,104,105,115,44,116,44,110,41,125,116,104,105,115,46,95,108,48,49,95,97,61,116,104,105,115,46,95,108,49,50,95,97,44,116,104,105,115,46,95,108,49,50,95,97,61,116,104,105,115,46,95,108,50,51,95,97,44,116,104,105,115,46,95,108,48,49,95,50,97,61,116,104,105,115,46,95,108,49,50,95,50,97,44,116,104,105,115,46,95,108,49,50,95,50,97,61,116,104,105,115,46,95,108,50,51,95,50,97,44,116,104,105,115,46,95,120,48,61,116,104,105,115,46,95,120,49,44,116,104,105,115,46,95,120,49,61,116,104,105,115,46,95,120,50,44,116,104,105,115,46,95,120,50,61,116,44,116,104,105,115,46,95,121,48,61,116,104,105,115,46,95,121,49,44,116,104,105,115,46,95,121,49,61,116,104,105,115,46,95,121,50,44,116,104,105,115,46,95,121,50,61,110,125,125,59,118,97,114,32,106,95,61,102,117,110,99,116,105,111,110,32,116,40,110,41,123,102,117,110,99,116,105,111,110,32,101,40,116,41,123,114,101,116,117,114,110,32,110,63,110,101,119,32,72,95,40,116,44,110,41,58,110,101,119,32,76,95,40,116,44,48,41,125,114,101,116,117,114,110,32,101,46,97,108,112,104,97,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,40,43,110,41,125,44,101,125,40,46,53,41,59,102,117,110,99,116,105,111,110,32,88,95,40,116,41,123,116,104,105,115,46,95,99,111,110,116,101,120,116,61,116,125,102,117,110,99,116,105,111,110,32,86,95,40,116,41,123,114,101,116,117,114,110,32,116,60,48,63,45,49,58,49,125,102,117,110,99,116,105,111,110,32,71,95,40,116,44,110,44,101,41,123,118,97,114,32,114,61,116,46,95,120,49,45,116,46,95,120,48,44,105,61,110,45,116,46,95,120,49,44,111,61,40,116,46,95,121,49,45,116,46,95,121,48,41,47,40,114,124,124,105,60,48,38,38,45,48,41,44,97,61,40,101,45,116,46,95,121,49,41,47,40,105,124,124,114,60,48,38,38,45,48,41,44,117,61,40,111,42,105,43,97,42,114,41,47,40,114,43,105,41,59,114,101,116,117,114,110,40,86,95,40,111,41,43,86,95,40,97,41,41,42,77,97,116,104,46,109,105,110,40,77,97,116,104,46,97,98,115,40,111,41,44,77,97,116,104,46,97,98,115,40,97,41,44,46,53,42,77,97,116,104,46,97,98,115,40,117,41,41,124,124,48,125,102,117,110,99,116,105,111,110,32,36,95,40,116,44,110,41,123,118,97,114,32,101,61,116,46,95,120,49,45,116,46,95,120,48,59,114,101,116,117,114,110,32,101,63,40,51,42,40,116,46,95,121,49,45,116,46,95,121,48,41,47,101,45,110,41,47,50,58,110,125,102,117,110,99,116,105,111,110,32,87,95,40,116,44,110,44,101,41,123,118,97,114,32,114,61,116,46,95,120,48,44,105,61,116,46,95,121,48,44,111,61,116,46,95,120,49,44,97,61,116,46,95,121,49,44,117,61,40,111,45,114,41,47,51,59,116,46,95,99,111,110,116,101,120,116,46,98,101,122,105,101,114,67,117,114,118,101,84,111,40,114,43,117,44,105,43,117,42,110,44,111,45,117,44,97,45,117,42,101,44,111,44,97,41,125,102,117,110,99,116,105,111,110,32,90,95,40,116,41,123,116,104,105,115,46,95,99,111,110,116,101,120,116,61,116,125,102,117,110,99,116,105,111,110,32,81,95,40,116,41,123,116,104,105,115,46,95,99,111,110,116,101,120,116,61,110,101,119,32,75,95,40,116,41,125,102,117,110,99,116,105,111,110,32,75,95,40,116,41,123,116,104,105,115,46,95,99,111,110,116,101,120,116,61,116,125,102,117,110,99,116,105,111,110,32,74,95,40,116,41,123,116,104,105,115,46,95,99,111,110,116,101,120,116,61,116,125,102,117,110,99,116,105,111,110,32,116,98,40,116,41,123,118,97,114,32,110,44,101,44,114,61,116,46,108,101,110,103,116,104,45,49,44,105,61,110,101,119,32,65,114,114,97,121,40,114,41,44,111,61,110,101,119,32,65,114,114,97,121,40,114,41,44,97,61,110,101,119,32,65,114,114,97,121,40,114,41,59,102,111,114,40,105,91,48,93,61,48,44,111,91,48,93,61,50,44,97,91,48,93,61,116,91,48,93,43,50,42,116,91,49,93,44,110,61,49,59,110,60,114,45,49,59,43,43,110,41,105,91,110,93,61,49,44,111,91,110,93,61,52,44,97,91,110,93,61,52,42,116,91,110,93,43,50,42,116,91,110,43,49,93,59,102,111,114,40,105,91,114,45,49,93,61,50,44,111,91,114,45,49,93,61,55,44,97,91,114,45,49,93,61,56,42,116,91,114,45,49,93,43,116,91,114,93,44,110,61,49,59,110,60,114,59,43,43,110,41,101,61,105,91,110,93,47,111,91,110,45,49,93,44,111,91,110,93,45,61,101,44,97,91,110,93,45,61,101,42,97,91,110,45,49,93,59,102,111,114,40,105,91,114,45,49,93,61,97,91,114,45,49,93,47,111,91,114,45,49,93,44,110,61,114,45,50,59,110,62,61,48,59,45,45,110,41,105,91,110,93,61,40,97,91,110,93,45,105,91,110,43,49,93,41,47,111,91,110,93,59,102,111,114,40,111,91,114,45,49,93,61,40,116,91,114,93,43,105,91,114,45,49,93,41,47,50,44,110,61,48,59,110,60,114,45,49,59,43,43,110,41,111,91,110,93,61,50,42,116,91,110,43,49,93,45,105,91,110,43,49,93,59,114,101,116,117,114,110,91,105,44,111,93,125,102,117,110,99,116,105,111,110,32,110,98,40,116,44,110,41,123,116,104,105,115,46,95,99,111,110,116,101,120,116,61,116,44,116,104,105,115,46,95,116,61,110,125,102,117,110,99,116,105,111,110,32,101,98,40,116,44,110,41,123,105,102,40,40,105,61,116,46,108,101,110,103,116,104,41,62,49,41,102,111,114,40,118,97,114,32,101,44,114,44,105,44,111,61,49,44,97,61,116,91,110,91,48,93,93,44,117,61,97,46,108,101,110,103,116,104,59,111,60,105,59,43,43,111,41,102,111,114,40,114,61,97,44,97,61,116,91,110,91,111,93,93,44,101,61,48,59,101,60,117,59,43,43,101,41,97,91,101,93,91,49,93,43,61,97,91,101,93,91,48,93,61,105,115,78,97,78,40,114,91,101,93,91,49,93,41,63,114,91,101,93,91,48,93,58,114,91,101,93,91,49,93,125,102,117,110,99,116,105,111,110,32,114,98,40,116,41,123,102,111,114,40,118,97,114,32,110,61,116,46,108,101,110,103,116,104,44,101,61,110,101,119,32,65,114,114,97,121,40,110,41,59,45,45,110,62,61,48,59,41,101,91,110,93,61,110,59,114,101,116,117,114,110,32,101,125,102,117,110,99,116,105,111,110,32,105,98,40,116,44,110,41,123,114,101,116,117,114,110,32,116,91,110,93,125,102,117,110,99,116,105,111,110,32,111,98,40,116,41,123,118,97,114,32,110,61,116,46,109,97,112,40,97,98,41,59,114,101,116,117,114,110,32,114,98,40,116,41,46,115,111,114,116,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,110,91,116,93,45,110,91,101,93,125,41,125,102,117,110,99,116,105,111,110,32,97,98,40,116,41,123,102,111,114,40,118,97,114,32,110,44,101,61,45,49,44,114,61,48,44,105,61,116,46,108,101,110,103,116,104,44,111,61,45,49,47,48,59,43,43,101,60,105,59,41,40,110,61,43,116,91,101,93,91,49,93,41,62,111,38,38,40,111,61,110,44,114,61,101,41,59,114,101,116,117,114,110,32,114,125,102,117,110,99,116,105,111,110,32,117,98,40,116,41,123,118,97,114,32,110,61,116,46,109,97,112,40,99,98,41,59,114,101,116,117,114,110,32,114,98,40,116,41,46,115,111,114,116,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,110,91,116,93,45,110,91,101,93,125,41,125,102,117,110,99,116,105,111,110,32,99,98,40,116,41,123,102,111,114,40,118,97,114,32,110,44,101,61,48,44,114,61,45,49,44,105,61,116,46,108,101,110,103,116,104,59,43,43,114,60,105,59,41,40,110,61,43,116,91,114,93,91,49,93,41,38,38,40,101,43,61,110,41,59,114,101,116,117,114,110,32,101,125,102,117,110,99,116,105,111,110,32,102,98,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,125,125,102,117,110,99,116,105,111,110,32,115,98,40,116,41,123,114,101,116,117,114,110,32,116,91,48,93,125,102,117,110,99,116,105,111,110,32,108,98,40,116,41,123,114,101,116,117,114,110,32,116,91,49,93,125,102,117,110,99,116,105,111,110,32,104,98,40,41,123,116,104,105,115,46,95,61,110,117,108,108,125,102,117,110,99,116,105,111,110,32,100,98,40,116,41,123,116,46,85,61,116,46,67,61,116,46,76,61,116,46,82,61,116,46,80,61,116,46,78,61,110,117,108,108,125,102,117,110,99,116,105,111,110,32,112,98,40,116,44,110,41,123,118,97,114,32,101,61,110,44,114,61,110,46,82,44,105,61,101,46,85,59,105,63,105,46,76,61,61,61,101,63,105,46,76,61,114,58,105,46,82,61,114,58,116,46,95,61,114,44,114,46,85,61,105,44,101,46,85,61,114,44,101,46,82,61,114,46,76,44,101,46,82,38,38,40,101,46,82,46,85,61,101,41,44,114,46,76,61,101,125,102,117,110,99,116,105,111,110,32,118,98,40,116,44,110,41,123,118,97,114,32,101,61,110,44,114,61,110,46,76,44,105,61,101,46,85,59,105,63,105,46,76,61,61,61,101,63,105,46,76,61,114,58,105,46,82,61,114,58,116,46,95,61,114,44,114,46,85,61,105,44,101,46,85,61,114,44,101,46,76,61,114,46,82,44,101,46,76,38,38,40,101,46,76,46,85,61,101,41,44,114,46,82,61,101,125,102,117,110,99,116,105,111,110,32,103,98,40,116,41,123,102,111,114,40,59,116,46,76,59,41,116,61,116,46,76,59,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,121,98,40,116,44,110,44,101,44,114,41,123,118,97,114,32,105,61,91,110,117,108,108,44,110,117,108,108,93,44,111,61,89,98,46,112,117,115,104,40,105,41,45,49,59,114,101,116,117,114,110,32,105,46,108,101,102,116,61,116,44,105,46,114,105,103,104,116,61,110,44,101,38,38,98,98,40,105,44,116,44,110,44,101,41,44,114,38,38,98,98,40,105,44,110,44,116,44,114,41,44,66,98,91,116,46,105,110,100,101,120,93,46,104,97,108,102,101,100,103,101,115,46,112,117,115,104,40,111,41,44,66,98,91,110,46,105,110,100,101,120,93,46,104,97,108,102,101,100,103,101,115,46,112,117,115,104,40,111,41,44,105,125,102,117,110,99,116,105,111,110,32,95,98,40,116,44,110,44,101,41,123,118,97,114,32,114,61,91,110,44,101,93,59,114,101,116,117,114,110,32,114,46,108,101,102,116,61,116,44,114,125,102,117,110,99,116,105,111,110,32,98,98,40,116,44,110,44,101,44,114,41,123,116,91,48,93,124,124,116,91,49,93,63,116,46,108,101,102,116,61,61,61,101,63,116,91,49,93,61,114,58,116,91,48,93,61,114,58,40,116,91,48,93,61,114,44,116,46,108,101,102,116,61,110,44,116,46,114,105,103,104,116,61,101,41,125,102,117,110,99,116,105,111,110,32,109,98,40,116,44,110,44,101,44,114,44,105,41,123,118,97,114,32,111,44,97,61,116,91,48,93,44,117,61,116,91,49,93,44,99,61,97,91,48,93,44,102,61,97,91,49,93,44,115,61,48,44,108,61,49,44,104,61,117,91,48,93,45,99,44,100,61,117,91,49,93,45,102,59,105,102,40,111,61,110,45,99,44,104,124,124,33,40,111,62,48,41,41,123,105,102,40,111,47,61,104,44,104,60,48,41,123,105,102,40,111,60,115,41,114,101,116,117,114,110,59,111,60,108,38,38,40,108,61,111,41,125,101,108,115,101,32,105,102,40,104,62,48,41,123,105,102,40,111,62,108,41,114,101,116,117,114,110,59,111,62,115,38,38,40,115,61,111,41,125,105,102,40,111,61,114,45,99,44,104,124,124,33,40,111,60,48,41,41,123,105,102,40,111,47,61,104,44,104,60,48,41,123,105,102,40,111,62,108,41,114,101,116,117,114,110,59,111,62,115,38,38,40,115,61,111,41,125,101,108,115,101,32,105,102,40,104,62,48,41,123,105,102,40,111,60,115,41,114,101,116,117,114,110,59,111,60,108,38,38,40,108,61,111,41,125,105,102,40,111,61,101,45,102,44,100,124,124,33,40,111,62,48,41,41,123,105,102,40,111,47,61,100,44,100,60,48,41,123,105,102,40,111,60,115,41,114,101,116,117,114,110,59,111,60,108,38,38,40,108,61,111,41,125,101,108,115,101,32,105,102,40,100,62,48,41,123,105,102,40,111,62,108,41,114,101,116,117,114,110,59,111,62,115,38,38,40,115,61,111,41,125,105,102,40,111,61,105,45,102,44,100,124,124,33,40,111,60,48,41,41,123,105,102,40,111,47,61,100,44,100,60,48,41,123,105,102,40,111,62,108,41,114,101,116,117,114,110,59,111,62,115,38,38,40,115,61,111,41,125,101,108,115,101,32,105,102,40,100,62,48,41,123,105,102,40,111,60,115,41,114,101,116,117,114,110,59,111,60,108,38,38,40,108,61,111,41,125,114,101,116,117,114,110,33,40,115,62,48,124,124,108,60,49,41,124,124,40,115,62,48,38,38,40,116,91,48,93,61,91,99,43,115,42,104,44,102,43,115,42,100,93,41,44,108,60,49,38,38,40,116,91,49,93,61,91,99,43,108,42,104,44,102,43,108,42,100,93,41,44,33,48,41,125,125,125,125,125,102,117,110,99,116,105,111,110,32,120,98,40,116,44,110,44,101,44,114,44,105,41,123,118,97,114,32,111,61,116,91,49,93,59,105,102,40,111,41,114,101,116,117,114,110,33,48,59,118,97,114,32,97,44,117,44,99,61,116,91,48,93,44,102,61,116,46,108,101,102,116,44,115,61,116,46,114,105,103,104,116,44,108,61,102,91,48,93,44,104,61,102,91,49,93,44,100,61,115,91,48,93,44,112,61,115,91,49,93,44,118,61,40,108,43,100,41,47,50,44,103,61,40,104,43,112,41,47,50,59,105,102,40,112,61,61,61,104,41,123,105,102,40,118,60,110,124,124,118,62,61,114,41,114,101,116,117,114,110,59,105,102,40,108,62,100,41,123,105,102,40,99,41,123,105,102,40,99,91,49,93,62,61,105,41,114,101,116,117,114,110,125,101,108,115,101,32,99,61,91,118,44,101,93,59,111,61,91,118,44,105,93,125,101,108,115,101,123,105,102,40,99,41,123,105,102,40,99,91,49,93,60,101,41,114,101,116,117,114,110,125,101,108,115,101,32,99,61,91,118,44,105,93,59,111,61,91,118,44,101,93,125,125,101,108,115,101,32,105,102,40,117,61,103,45,40,97,61,40,108,45,100,41,47,40,112,45,104,41,41,42,118,44,97,60,45,49,124,124,97,62,49,41,105,102,40,108,62,100,41,123,105,102,40,99,41,123,105,102,40,99,91,49,93,62,61,105,41,114,101,116,117,114,110,125,101,108,115,101,32,99,61,91,40,101,45,117,41,47,97,44,101,93,59,111,61,91,40,105,45,117,41,47,97,44,105,93,125,101,108,115,101,123,105,102,40,99,41,123,105,102,40,99,91,49,93,60,101,41,114,101,116,117,114,110,125,101,108,115,101,32,99,61,91,40,105,45,117,41,47,97,44,105,93,59,111,61,91,40,101,45,117,41,47,97,44,101,93,125,101,108,115,101,32,105,102,40,104,60,112,41,123,105,102,40,99,41,123,105,102,40,99,91,48,93,62,61,114,41,114,101,116,117,114,110,125,101,108,115,101,32,99,61,91,110,44,97,42,110,43,117,93,59,111,61,91,114,44,97,42,114,43,117,93,125,101,108,115,101,123,105,102,40,99,41,123,105,102,40,99,91,48,93,60,110,41,114,101,116,117,114,110,125,101,108,115,101,32,99,61,91,114,44,97,42,114,43,117,93,59,111,61,91,110,44,97,42,110,43,117,93,125,114,101,116,117,114,110,32,116,91,48,93,61,99,44,116,91,49,93,61,111,44,33,48,125,102,117,110,99,116,105,111,110,32,119,98,40,116,44,110,41,123,118,97,114,32,101,61,116,46,115,105,116,101,44,114,61,110,46,108,101,102,116,44,105,61,110,46,114,105,103,104,116,59,114,101,116,117,114,110,32,101,61,61,61,105,38,38,40,105,61,114,44,114,61,101,41,44,105,63,77,97,116,104,46,97,116,97,110,50,40,105,91,49,93,45,114,91,49,93,44,105,91,48,93,45,114,91,48,93,41,58,40,101,61,61,61,114,63,40,114,61,110,91,49,93,44,105,61,110,91,48,93,41,58,40,114,61,110,91,48,93,44,105,61,110,91,49,93,41,44,77,97,116,104,46,97,116,97,110,50,40,114,91,48,93,45,105,91,48,93,44,105,91,49,93,45,114,91,49,93,41,41,125,102,117,110,99,116,105,111,110,32,77,98,40,116,44,110,41,123,114,101,116,117,114,110,32,110,91,43,40,110,46,108,101,102,116,33,61,61,116,46,115,105,116,101,41,93,125,102,117,110,99,116,105,111,110,32,78,98,40,116,44,110,41,123,114,101,116,117,114,110,32,110,91,43,40,110,46,108,101,102,116,61,61,61,116,46,115,105,116,101,41,93,125,88,95,46,112,114,111,116,111,116,121,112,101,61,123,97,114,101,97,83,116,97,114,116,58,78,95,44,97,114,101,97,69,110,100,58,78,95,44,108,105,110,101,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,112,111,105,110,116,61,48,125,44,108,105,110,101,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,112,111,105,110,116,38,38,116,104,105,115,46,95,99,111,110,116,101,120,116,46,99,108,111,115,101,80,97,116,104,40,41,125,44,112,111,105,110,116,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,116,61,43,116,44,110,61,43,110,44,116,104,105,115,46,95,112,111,105,110,116,63,116,104,105,115,46,95,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,116,44,110,41,58,40,116,104,105,115,46,95,112,111,105,110,116,61,49,44,116,104,105,115,46,95,99,111,110,116,101,120,116,46,109,111,118,101,84,111,40,116,44,110,41,41,125,125,44,90,95,46,112,114,111,116,111,116,121,112,101,61,123,97,114,101,97,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,108,105,110,101,61,48,125,44,97,114,101,97,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,108,105,110,101,61,78,97,78,125,44,108,105,110,101,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,120,48,61,116,104,105,115,46,95,120,49,61,116,104,105,115,46,95,121,48,61,116,104,105,115,46,95,121,49,61,116,104,105,115,46,95,116,48,61,78,97,78,44,116,104,105,115,46,95,112,111,105,110,116,61,48,125,44,108,105,110,101,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,115,119,105,116,99,104,40,116,104,105,115,46,95,112,111,105,110,116,41,123,99,97,115,101,32,50,58,116,104,105,115,46,95,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,116,104,105,115,46,95,120,49,44,116,104,105,115,46,95,121,49,41,59,98,114,101,97,107,59,99,97,115,101,32,51,58,87,95,40,116,104,105,115,44,116,104,105,115,46,95,116,48,44,36,95,40,116,104,105,115,44,116,104,105,115,46,95,116,48,41,41,125,40,116,104,105,115,46,95,108,105,110,101,124,124,48,33,61,61,116,104,105,115,46,95,108,105,110,101,38,38,49,61,61,61,116,104,105,115,46,95,112,111,105,110,116,41,38,38,116,104,105,115,46,95,99,111,110,116,101,120,116,46,99,108,111,115,101,80,97,116,104,40,41,44,116,104,105,115,46,95,108,105,110,101,61,49,45,116,104,105,115,46,95,108,105,110,101,125,44,112,111,105,110,116,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,61,78,97,78,59,105,102,40,110,61,43,110,44,40,116,61,43,116,41,33,61,61,116,104,105,115,46,95,120,49,124,124,110,33,61,61,116,104,105,115,46,95,121,49,41,123,115,119,105,116,99,104,40,116,104,105,115,46,95,112,111,105,110,116,41,123,99,97,115,101,32,48,58,116,104,105,115,46,95,112,111,105,110,116,61,49,44,116,104,105,115,46,95,108,105,110,101,63,116,104,105,115,46,95,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,116,44,110,41,58,116,104,105,115,46,95,99,111,110,116,101,120,116,46,109,111,118,101,84,111,40,116,44,110,41,59,98,114,101,97,107,59,99,97,115,101,32,49,58,116,104,105,115,46,95,112,111,105,110,116,61,50,59,98,114,101,97,107,59,99,97,115,101,32,50,58,116,104,105,115,46,95,112,111,105,110,116,61,51,44,87,95,40,116,104,105,115,44,36,95,40,116,104,105,115,44,101,61,71,95,40,116,104,105,115,44,116,44,110,41,41,44,101,41,59,98,114,101,97,107,59,100,101,102,97,117,108,116,58,87,95,40,116,104,105,115,44,116,104,105,115,46,95,116,48,44,101,61,71,95,40,116,104,105,115,44,116,44,110,41,41,125,116,104,105,115,46,95,120,48,61,116,104,105,115,46,95,120,49,44,116,104,105,115,46,95,120,49,61,116,44,116,104,105,115,46,95,121,48,61,116,104,105,115,46,95,121,49,44,116,104,105,115,46,95,121,49,61,110,44,116,104,105,115,46,95,116,48,61,101,125,125,125,44,40,81,95,46,112,114,111,116,111,116,121,112,101,61,79,98,106,101,99,116,46,99,114,101,97,116,101,40,90,95,46,112,114,111,116,111,116,121,112,101,41,41,46,112,111,105,110,116,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,90,95,46,112,114,111,116,111,116,121,112,101,46,112,111,105,110,116,46,99,97,108,108,40,116,104,105,115,44,110,44,116,41,125,44,75,95,46,112,114,111,116,111,116,121,112,101,61,123,109,111,118,101,84,111,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,116,104,105,115,46,95,99,111,110,116,101,120,116,46,109,111,118,101,84,111,40,110,44,116,41,125,44,99,108,111,115,101,80,97,116,104,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,99,111,110,116,101,120,116,46,99,108,111,115,101,80,97,116,104,40,41,125,44,108,105,110,101,84,111,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,116,104,105,115,46,95,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,110,44,116,41,125,44,98,101,122,105,101,114,67,117,114,118,101,84,111,58,102,117,110,99,116,105,111,110,40,116,44,110,44,101,44,114,44,105,44,111,41,123,116,104,105,115,46,95,99,111,110,116,101,120,116,46,98,101,122,105,101,114,67,117,114,118,101,84,111,40,110,44,116,44,114,44,101,44,111,44,105,41,125,125,44,74,95,46,112,114,111,116,111,116,121,112,101,61,123,97,114,101,97,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,108,105,110,101,61,48,125,44,97,114,101,97,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,108,105,110,101,61,78,97,78,125,44,108,105,110,101,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,120,61,91,93,44,116,104,105,115,46,95,121,61,91,93,125,44,108,105,110,101,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,95,120,44,110,61,116,104,105,115,46,95,121,44,101,61,116,46,108,101,110,103,116,104,59,105,102,40,101,41,105,102,40,116,104,105,115,46,95,108,105,110,101,63,116,104,105,115,46,95,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,116,91,48,93,44,110,91,48,93,41,58,116,104,105,115,46,95,99,111,110,116,101,120,116,46,109,111,118,101,84,111,40,116,91,48,93,44,110,91,48,93,41,44,50,61,61,61,101,41,116,104,105,115,46,95,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,116,91,49,93,44,110,91,49,93,41,59,101,108,115,101,32,102,111,114,40,118,97,114,32,114,61,116,98,40,116,41,44,105,61,116,98,40,110,41,44,111,61,48,44,97,61,49,59,97,60,101,59,43,43,111,44,43,43,97,41,116,104,105,115,46,95,99,111,110,116,101,120,116,46,98,101,122,105,101,114,67,117,114,118,101,84,111,40,114,91,48,93,91,111,93,44,105,91,48,93,91,111,93,44,114,91,49,93,91,111,93,44,105,91,49,93,91,111,93,44,116,91,97,93,44,110,91,97,93,41,59,40,116,104,105,115,46,95,108,105,110,101,124,124,48,33,61,61,116,104,105,115,46,95,108,105,110,101,38,38,49,61,61,61,101,41,38,38,116,104,105,115,46,95,99,111,110,116,101,120,116,46,99,108,111,115,101,80,97,116,104,40,41,44,116,104,105,115,46,95,108,105,110,101,61,49,45,116,104,105,115,46,95,108,105,110,101,44,116,104,105,115,46,95,120,61,116,104,105,115,46,95,121,61,110,117,108,108,125,44,112,111,105,110,116,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,116,104,105,115,46,95,120,46,112,117,115,104,40,43,116,41,44,116,104,105,115,46,95,121,46,112,117,115,104,40,43,110,41,125,125,44,110,98,46,112,114,111,116,111,116,121,112,101,61,123,97,114,101,97,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,108,105,110,101,61,48,125,44,97,114,101,97,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,108,105,110,101,61,78,97,78,125,44,108,105,110,101,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,120,61,116,104,105,115,46,95,121,61,78,97,78,44,116,104,105,115,46,95,112,111,105,110,116,61,48,125,44,108,105,110,101,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,48,60,116,104,105,115,46,95,116,38,38,116,104,105,115,46,95,116,60,49,38,38,50,61,61,61,116,104,105,115,46,95,112,111,105,110,116,38,38,116,104,105,115,46,95,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,116,104,105,115,46,95,120,44,116,104,105,115,46,95,121,41,44,40,116,104,105,115,46,95,108,105,110,101,124,124,48,33,61,61,116,104,105,115,46,95,108,105,110,101,38,38,49,61,61,61,116,104,105,115,46,95,112,111,105,110,116,41,38,38,116,104,105,115,46,95,99,111,110,116,101,120,116,46,99,108,111,115,101,80,97,116,104,40,41,44,116,104,105,115,46,95,108,105,110,101,62,61,48,38,38,40,116,104,105,115,46,95,116,61,49,45,116,104,105,115,46,95,116,44,116,104,105,115,46,95,108,105,110,101,61,49,45,116,104,105,115,46,95,108,105,110,101,41,125,44,112,111,105,110,116,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,115,119,105,116,99,104,40,116,61,43,116,44,110,61,43,110,44,116,104,105,115,46,95,112,111,105,110,116,41,123,99,97,115,101,32,48,58,116,104,105,115,46,95,112,111,105,110,116,61,49,44,116,104,105,115,46,95,108,105,110,101,63,116,104,105,115,46,95,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,116,44,110,41,58,116,104,105,115,46,95,99,111,110,116,101,120,116,46,109,111,118,101,84,111,40,116,44,110,41,59,98,114,101,97,107,59,99,97,115,101,32,49,58,116,104,105,115,46,95,112,111,105,110,116,61,50,59,100,101,102,97,117,108,116,58,105,102,40,116,104,105,115,46,95,116,60,61,48,41,116,104,105,115,46,95,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,116,104,105,115,46,95,120,44,110,41,44,116,104,105,115,46,95,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,116,44,110,41,59,101,108,115,101,123,118,97,114,32,101,61,116,104,105,115,46,95,120,42,40,49,45,116,104,105,115,46,95,116,41,43,116,42,116,104,105,115,46,95,116,59,116,104,105,115,46,95,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,101,44,116,104,105,115,46,95,121,41,44,116,104,105,115,46,95,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,101,44,110,41,125,125,116,104,105,115,46,95,120,61,116,44,116,104,105,115,46,95,121,61,110,125,125,44,104,98,46,112,114,111,116,111,116,121,112,101,61,123,99,111,110,115,116,114,117,99,116,111,114,58,104,98,44,105,110,115,101,114,116,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,44,114,44,105,59,105,102,40,116,41,123,105,102,40,110,46,80,61,116,44,110,46,78,61,116,46,78,44,116,46,78,38,38,40,116,46,78,46,80,61,110,41,44,116,46,78,61,110,44,116,46,82,41,123,102,111,114,40,116,61,116,46,82,59,116,46,76,59,41,116,61,116,46,76,59,116,46,76,61,110,125,101,108,115,101,32,116,46,82,61,110,59,101,61,116,125,101,108,115,101,32,116,104,105,115,46,95,63,40,116,61,103,98,40,116,104,105,115,46,95,41,44,110,46,80,61,110,117,108,108,44,110,46,78,61,116,44,116,46,80,61,116,46,76,61,110,44,101,61,116,41,58,40,110,46,80,61,110,46,78,61,110,117,108,108,44,116,104,105,115,46,95,61,110,44,101,61,110,117,108,108,41,59,102,111,114,40,110,46,76,61,110,46,82,61,110,117,108,108,44,110,46,85,61,101,44,110,46,67,61,33,48,44,116,61,110,59,101,38,38,101,46,67,59,41,101,61,61,61,40,114,61,101,46,85,41,46,76,63,40,105,61,114,46,82,41,38,38,105,46,67,63,40,101,46,67,61,105,46,67,61,33,49,44,114,46,67,61,33,48,44,116,61,114,41,58,40,116,61,61,61,101,46,82,38,38,40,112,98,40,116,104,105,115,44,101,41,44,101,61,40,116,61,101,41,46,85,41,44,101,46,67,61,33,49,44,114,46,67,61,33,48,44,118,98,40,116,104,105,115,44,114,41,41,58,40,105,61,114,46,76,41,38,38,105,46,67,63,40,101,46,67,61,105,46,67,61,33,49,44,114,46,67,61,33,48,44,116,61,114,41,58,40,116,61,61,61,101,46,76,38,38,40,118,98,40,116,104,105,115,44,101,41,44,101,61,40,116,61,101,41,46,85,41,44,101,46,67,61,33,49,44,114,46,67,61,33,48,44,112,98,40,116,104,105,115,44,114,41,41,44,101,61,116,46,85,59,116,104,105,115,46,95,46,67,61,33,49,125,44,114,101,109,111,118,101,58,102,117,110,99,116,105,111,110,40,116,41,123,116,46,78,38,38,40,116,46,78,46,80,61,116,46,80,41,44,116,46,80,38,38,40,116,46,80,46,78,61,116,46,78,41,44,116,46,78,61,116,46,80,61,110,117,108,108,59,118,97,114,32,110,44,101,44,114,44,105,61,116,46,85,44,111,61,116,46,76,44,97,61,116,46,82,59,105,102,40,101,61,111,63,97,63,103,98,40,97,41,58,111,58,97,44,105,63,105,46,76,61,61,61,116,63,105,46,76,61,101,58,105,46,82,61,101,58,116,104,105,115,46,95,61,101,44,111,38,38,97,63,40,114,61,101,46,67,44,101,46,67,61,116,46,67,44,101,46,76,61,111,44,111,46,85,61,101,44,101,33,61,61,97,63,40,105,61,101,46,85,44,101,46,85,61,116,46,85,44,116,61,101,46,82,44,105,46,76,61,116,44,101,46,82,61,97,44,97,46,85,61,101,41,58,40,101,46,85,61,105,44,105,61,101,44,116,61,101,46,82,41,41,58,40,114,61,116,46,67,44,116,61,101,41,44,116,38,38,40,116,46,85,61,105,41,44,33,114,41,105,102,40,116,38,38,116,46,67,41,116,46,67,61,33,49,59,101,108,115,101,123,100,111,123,105,102,40,116,61,61,61,116,104,105,115,46,95,41,98,114,101,97,107,59,105,102,40,116,61,61,61,105,46,76,41,123,105,102,40,40,110,61,105,46,82,41,46,67,38,38,40,110,46,67,61,33,49,44,105,46,67,61,33,48,44,112,98,40,116,104,105,115,44,105,41,44,110,61,105,46,82,41,44,110,46,76,38,38,110,46,76,46,67,124,124,110,46,82,38,38,110,46,82,46,67,41,123,110,46,82,38,38,110,46,82,46,67,124,124,40,110,46,76,46,67,61,33,49,44,110,46,67,61,33,48,44,118,98,40,116,104,105,115,44,110,41,44,110,61,105,46,82,41,44,110,46,67,61,105,46,67,44,105,46,67,61,110,46,82,46,67,61,33,49,44,112,98,40,116,104,105,115,44,105,41,44,116,61,116,104,105,115,46,95,59,98,114,101,97,107,125,125,101,108,115,101,32,105,102,40,40,110,61,105,46,76,41,46,67,38,38,40,110,46,67,61,33,49,44,105,46,67,61,33,48,44,118,98,40,116,104,105,115,44,105,41,44,110,61,105,46,76,41,44,110,46,76,38,38,110,46,76,46,67,124,124,110,46,82,38,38,110,46,82,46,67,41,123,110,46,76,38,38,110,46,76,46,67,124,124,40,110,46,82,46,67,61,33,49,44,110,46,67,61,33,48,44,112,98,40,116,104,105,115,44,110,41,44,110,61,105,46,76,41,44,110,46,67,61,105,46,67,44,105,46,67,61,110,46,76,46,67,61,33,49,44,118,98,40,116,104,105,115,44,105,41,44,116,61,116,104,105,115,46,95,59,98,114,101,97,107,125,110,46,67,61,33,48,44,116,61,105,44,105,61,105,46,85,125,119,104,105,108,101,40,33,116,46,67,41,59,116,38,38,40,116,46,67,61,33,49,41,125,125,125,59,118,97,114,32,84,98,44,65,98,61,91,93,59,102,117,110,99,116,105,111,110,32,83,98,40,41,123,100,98,40,116,104,105,115,41,44,116,104,105,115,46,120,61,116,104,105,115,46,121,61,116,104,105,115,46,97,114,99,61,116,104,105,115,46,115,105,116,101,61,116,104,105,115,46,99,121,61,110,117,108,108,125,102,117,110,99,116,105,111,110,32,107,98,40,116,41,123,118,97,114,32,110,61,116,46,80,44,101,61,116,46,78,59,105,102,40,110,38,38,101,41,123,118,97,114,32,114,61,110,46,115,105,116,101,44,105,61,116,46,115,105,116,101,44,111,61,101,46,115,105,116,101,59,105,102,40,114,33,61,61,111,41,123,118,97,114,32,97,61,105,91,48,93,44,117,61,105,91,49,93,44,99,61,114,91,48,93,45,97,44,102,61,114,91,49,93,45,117,44,115,61,111,91,48,93,45,97,44,108,61,111,91,49,93,45,117,44,104,61,50,42,40,99,42,108,45,102,42,115,41,59,105,102,40,33,40,104,62,61,45,72,98,41,41,123,118,97,114,32,100,61,99,42,99,43,102,42,102,44,112,61,115,42,115,43,108,42,108,44,118,61,40,108,42,100,45,102,42,112,41,47,104,44,103,61,40,99,42,112,45,115,42,100,41,47,104,44,121,61,65,98,46,112,111,112,40,41,124,124,110,101,119,32,83,98,59,121,46,97,114,99,61,116,44,121,46,115,105,116,101,61,105,44,121,46,120,61,118,43,97,44,121,46,121,61,40,121,46,99,121,61,103,43,117,41,43,77,97,116,104,46,115,113,114,116,40,118,42,118,43,103,42,103,41,44,116,46,99,105,114,99,108,101,61,121,59,102,111,114,40,118,97,114,32,95,61,110,117,108,108,44,98,61,70,98,46,95,59,98,59,41,105,102,40,121,46,121,60,98,46,121,124,124,121,46,121,61,61,61,98,46,121,38,38,121,46,120,60,61,98,46,120,41,123,105,102,40,33,98,46,76,41,123,95,61,98,46,80,59,98,114,101,97,107,125,98,61,98,46,76,125,101,108,115,101,123,105,102,40,33,98,46,82,41,123,95,61,98,59,98,114,101,97,107,125,98,61,98,46,82,125,70,98,46,105,110,115,101,114,116,40,95,44,121,41,44,95,124,124,40,84,98,61,121,41,125,125,125,125,102,117,110,99,116,105,111,110,32,69,98,40,116,41,123,118,97,114,32,110,61,116,46,99,105,114,99,108,101,59,110,38,38,40,110,46,80,124,124,40,84,98,61,110,46,78,41,44,70,98,46,114,101,109,111,118,101,40,110,41,44,65,98,46,112,117,115,104,40,110,41,44,100,98,40,110,41,44,116,46,99,105,114,99,108,101,61,110,117,108,108,41,125,118,97,114,32,67,98,61,91,93,59,102,117,110,99,116,105,111,110,32,80,98,40,41,123,100,98,40,116,104,105,115,41,44,116,104,105,115,46,101,100,103,101,61,116,104,105,115,46,115,105,116,101,61,116,104,105,115,46,99,105,114,99,108,101,61,110,117,108,108,125,102,117,110,99,116,105,111,110,32,122,98,40,116,41,123,118,97,114,32,110,61,67,98,46,112,111,112,40,41,124,124,110,101,119,32,80,98,59,114,101,116,117,114,110,32,110,46,115,105,116,101,61,116,44,110,125,102,117,110,99,116,105,111,110,32,82,98,40,116,41,123,69,98,40,116,41,44,79,98,46,114,101,109,111,118,101,40,116,41,44,67,98,46,112,117,115,104,40,116,41,44,100,98,40,116,41,125,102,117,110,99,116,105,111,110,32,68,98,40,116,41,123,118,97,114,32,110,61,116,46,99,105,114,99,108,101,44,101,61,110,46,120,44,114,61,110,46,99,121,44,105,61,91,101,44,114,93,44,111,61,116,46,80,44,97,61,116,46,78,44,117,61,91,116,93,59,82,98,40,116,41,59,102,111,114,40,118,97,114,32,99,61,111,59,99,46,99,105,114,99,108,101,38,38,77,97,116,104,46,97,98,115,40,101,45,99,46,99,105,114,99,108,101,46,120,41,60,73,98,38,38,77,97,116,104,46,97,98,115,40,114,45,99,46,99,105,114,99,108,101,46,99,121,41,60,73,98,59,41,111,61,99,46,80,44,117,46,117,110,115,104,105,102,116,40,99,41,44,82,98,40,99,41,44,99,61,111,59,117,46,117,110,115,104,105,102,116,40,99,41,44,69,98,40,99,41,59,102,111,114,40,118,97,114,32,102,61,97,59,102,46,99,105,114,99,108,101,38,38,77,97,116,104,46,97,98,115,40,101,45,102,46,99,105,114,99,108,101,46,120,41,60,73,98,38,38,77,97,116,104,46,97,98,115,40,114,45,102,46,99,105,114,99,108,101,46,99,121,41,60,73,98,59,41,97,61,102,46,78,44,117,46,112,117,115,104,40,102,41,44,82,98,40,102,41,44,102,61,97,59,117,46,112,117,115,104,40,102,41,44,69,98,40,102,41,59,118,97,114,32,115,44,108,61,117,46,108,101,110,103,116,104,59,102,111,114,40,115,61,49,59,115,60,108,59,43,43,115,41,102,61,117,91,115,93,44,99,61,117,91,115,45,49,93,44,98,98,40,102,46,101,100,103,101,44,99,46,115,105,116,101,44,102,46,115,105,116,101,44,105,41,59,99,61,117,91,48,93,44,40,102,61,117,91,108,45,49,93,41,46,101,100,103,101,61,121,98,40,99,46,115,105,116,101,44,102,46,115,105,116,101,44,110,117,108,108,44,105,41,44,107,98,40,99,41,44,107,98,40,102,41,125,102,117,110,99,116,105,111,110,32,113,98,40,116,41,123,102,111,114,40,118,97,114,32,110,44,101,44,114,44,105,44,111,61,116,91,48,93,44,97,61,116,91,49,93,44,117,61,79,98,46,95,59,117,59,41,105,102,40,40,114,61,76,98,40,117,44,97,41,45,111,41,62,73,98,41,117,61,117,46,76,59,101,108,115,101,123,105,102,40,33,40,40,105,61,111,45,85,98,40,117,44,97,41,41,62,73,98,41,41,123,114,62,45,73,98,63,40,110,61,117,46,80,44,101,61,117,41,58,105,62,45,73,98,63,40,110,61,117,44,101,61,117,46,78,41,58,110,61,101,61,117,59,98,114,101,97,107,125,105,102,40,33,117,46,82,41,123,110,61,117,59,98,114,101,97,107,125,117,61,117,46,82,125,33,102,117,110,99,116,105,111,110,40,116,41,123,66,98,91,116,46,105,110,100,101,120,93,61,123,115,105,116,101,58,116,44,104,97,108,102,101,100,103,101,115,58,91,93,125,125,40,116,41,59,118,97,114,32,99,61,122,98,40,116,41,59,105,102,40,79,98,46,105,110,115,101,114,116,40,110,44,99,41,44,110,124,124,101,41,123,105,102,40,110,61,61,61,101,41,114,101,116,117,114,110,32,69,98,40,110,41,44,101,61,122,98,40,110,46,115,105,116,101,41,44,79,98,46,105,110,115,101,114,116,40,99,44,101,41,44,99,46,101,100,103,101,61,101,46,101,100,103,101,61,121,98,40,110,46,115,105,116,101,44,99,46,115,105,116,101,41,44,107,98,40,110,41,44,118,111,105,100,32,107,98,40,101,41,59,105,102,40,101,41,123,69,98,40,110,41,44,69,98,40,101,41,59,118,97,114,32,102,61,110,46,115,105,116,101,44,115,61,102,91,48,93,44,108,61,102,91,49,93,44,104,61,116,91,48,93,45,115,44,100,61,116,91,49,93,45,108,44,112,61,101,46,115,105,116,101,44,118,61,112,91,48,93,45,115,44,103,61,112,91,49,93,45,108,44,121,61,50,42,40,104,42,103,45,100,42,118,41,44,95,61,104,42,104,43,100,42,100,44,98,61,118,42,118,43,103,42,103,44,109,61,91,40,103,42,95,45,100,42,98,41,47,121,43,115,44,40,104,42,98,45,118,42,95,41,47,121,43,108,93,59,98,98,40,101,46,101,100,103,101,44,102,44,112,44,109,41,44,99,46,101,100,103,101,61,121,98,40,102,44,116,44,110,117,108,108,44,109,41,44,101,46,101,100,103,101,61,121,98,40,116,44,112,44,110,117,108,108,44,109,41,44,107,98,40,110,41,44,107,98,40,101,41,125,101,108,115,101,32,99,46,101,100,103,101,61,121,98,40,110,46,115,105,116,101,44,99,46,115,105,116,101,41,125,125,102,117,110,99,116,105,111,110,32,76,98,40,116,44,110,41,123,118,97,114,32,101,61,116,46,115,105,116,101,44,114,61,101,91,48,93,44,105,61,101,91,49,93,44,111,61,105,45,110,59,105,102,40,33,111,41,114,101,116,117,114,110,32,114,59,118,97,114,32,97,61,116,46,80,59,105,102,40,33,97,41,114,101,116,117,114,110,45,49,47,48,59,118,97,114,32,117,61,40,101,61,97,46,115,105,116,101,41,91,48,93,44,99,61,101,91,49,93,44,102,61,99,45,110,59,105,102,40,33,102,41,114,101,116,117,114,110,32,117,59,118,97,114,32,115,61,117,45,114,44,108,61,49,47,111,45,49,47,102,44,104,61,115,47,102,59,114,101,116,117,114,110,32,108,63,40,45,104,43,77,97,116,104,46,115,113,114,116,40,104,42,104,45,50,42,108,42,40,115,42,115,47,40,45,50,42,102,41,45,99,43,102,47,50,43,105,45,111,47,50,41,41,41,47,108,43,114,58,40,114,43,117,41,47,50,125,102,117,110,99,116,105,111,110,32,85,98,40,116,44,110,41,123,118,97,114,32,101,61,116,46,78,59,105,102,40,101,41,114,101,116,117,114,110,32,76,98,40,101,44,110,41,59,118,97,114,32,114,61,116,46,115,105,116,101,59,114,101,116,117,114,110,32,114,91,49,93,61,61,61,110,63,114,91,48,93,58,49,47,48,125,118,97,114,32,79,98,44,66,98,44,70,98,44,89,98,44,73,98,61,49,101,45,54,44,72,98,61,49,101,45,49,50,59,102,117,110,99,116,105,111,110,32,106,98,40,116,44,110,44,101,41,123,114,101,116,117,114,110,40,116,91,48,93,45,101,91,48,93,41,42,40,110,91,49,93,45,116,91,49,93,41,45,40,116,91,48,93,45,110,91,48,93,41,42,40,101,91,49,93,45,116,91,49,93,41,125,102,117,110,99,116,105,111,110,32,88,98,40,116,44,110,41,123,114,101,116,117,114,110,32,110,91,49,93,45,116,91,49,93,124,124,110,91,48,93,45,116,91,48,93,125,102,117,110,99,116,105,111,110,32,86,98,40,116,44,110,41,123,118,97,114,32,101,44,114,44,105,44,111,61,116,46,115,111,114,116,40,88,98,41,46,112,111,112,40,41,59,102,111,114,40,89,98,61,91,93,44,66,98,61,110,101,119,32,65,114,114,97,121,40,116,46,108,101,110,103,116,104,41,44,79,98,61,110,101,119,32,104,98,44,70,98,61,110,101,119,32,104,98,59,59,41,105,102,40,105,61,84,98,44,111,38,38,40,33,105,124,124,111,91,49,93,60,105,46,121,124,124,111,91,49,93,61,61,61,105,46,121,38,38,111,91,48,93,60,105,46,120,41,41,111,91,48,93,61,61,61,101,38,38,111,91,49,93,61,61,61,114,124,124,40,113,98,40,111,41,44,101,61,111,91,48,93,44,114,61,111,91,49,93,41,44,111,61,116,46,112,111,112,40,41,59,101,108,115,101,123,105,102,40,33,105,41,98,114,101,97,107,59,68,98,40,105,46,97,114,99,41,125,105,102,40,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,118,97,114,32,116,44,110,44,101,44,114,44,105,61,48,44,111,61,66,98,46,108,101,110,103,116,104,59,105,60,111,59,43,43,105,41,105,102,40,40,116,61,66,98,91,105,93,41,38,38,40,114,61,40,110,61,116,46,104,97,108,102,101,100,103,101,115,41,46,108,101,110,103,116,104,41,41,123,118,97,114,32,97,61,110,101,119,32,65,114,114,97,121,40,114,41,44,117,61,110,101,119,32,65,114,114,97,121,40,114,41,59,102,111,114,40,101,61,48,59,101,60,114,59,43,43,101,41,97,91,101,93,61,101,44,117,91,101,93,61,119,98,40,116,44,89,98,91,110,91,101,93,93,41,59,102,111,114,40,97,46,115,111,114,116,40,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,117,91,110,93,45,117,91,116,93,125,41,44,101,61,48,59,101,60,114,59,43,43,101,41,117,91,101,93,61,110,91,97,91,101,93,93,59,102,111,114,40,101,61,48,59,101,60,114,59,43,43,101,41,110,91,101,93,61,117,91,101,93,125,125,40,41,44,110,41,123,118,97,114,32,97,61,43,110,91,48,93,91,48,93,44,117,61,43,110,91,48,93,91,49,93,44,99,61,43,110,91,49,93,91,48,93,44,102,61,43,110,91,49,93,91,49,93,59,33,102,117,110,99,116,105,111,110,40,116,44,110,44,101,44,114,41,123,102,111,114,40,118,97,114,32,105,44,111,61,89,98,46,108,101,110,103,116,104,59,111,45,45,59,41,120,98,40,105,61,89,98,91,111,93,44,116,44,110,44,101,44,114,41,38,38,109,98,40,105,44,116,44,110,44,101,44,114,41,38,38,40,77,97,116,104,46,97,98,115,40,105,91,48,93,91,48,93,45,105,91,49,93,91,48,93,41,62,73,98,124,124,77,97,116,104,46,97,98,115,40,105,91,48,93,91,49,93,45,105,91,49,93,91,49,93,41,62,73,98,41,124,124,100,101,108,101,116,101,32,89,98,91,111,93,125,40,97,44,117,44,99,44,102,41,44,102,117,110,99,116,105,111,110,40,116,44,110,44,101,44,114,41,123,118,97,114,32,105,44,111,44,97,44,117,44,99,44,102,44,115,44,108,44,104,44,100,44,112,44,118,44,103,61,66,98,46,108,101,110,103,116,104,44,121,61,33,48,59,102,111,114,40,105,61,48,59,105,60,103,59,43,43,105,41,105,102,40,111,61,66,98,91,105,93,41,123,102,111,114,40,97,61,111,46,115,105,116,101,44,117,61,40,99,61,111,46,104,97,108,102,101,100,103,101,115,41,46,108,101,110,103,116,104,59,117,45,45,59,41,89,98,91,99,91,117,93,93,124,124,99,46,115,112,108,105,99,101,40,117,44,49,41,59,102,111,114,40,117,61,48,44,102,61,99,46,108,101,110,103,116,104,59,117,60,102,59,41,112,61,40,100,61,78,98,40,111,44,89,98,91,99,91,117,93,93,41,41,91,48,93,44,118,61,100,91,49,93,44,108,61,40,115,61,77,98,40,111,44,89,98,91,99,91,43,43,117,37,102,93,93,41,41,91,48,93,44,104,61,115,91,49,93,44,40,77,97,116,104,46,97,98,115,40,112,45,108,41,62,73,98,124,124,77,97,116,104,46,97,98,115,40,118,45,104,41,62,73,98,41,38,38,40,99,46,115,112,108,105,99,101,40,117,44,48,44,89,98,46,112,117,115,104,40,95,98,40,97,44,100,44,77,97,116,104,46,97,98,115,40,112,45,116,41,60,73,98,38,38,114,45,118,62,73,98,63,91,116,44,77,97,116,104,46,97,98,115,40,108,45,116,41,60,73,98,63,104,58,114,93,58,77,97,116,104,46,97,98,115,40,118,45,114,41,60,73,98,38,38,101,45,112,62,73,98,63,91,77,97,116,104,46,97,98,115,40,104,45,114,41,60,73,98,63,108,58,101,44,114,93,58,77,97,116,104,46,97,98,115,40,112,45,101,41,60,73,98,38,38,118,45,110,62,73,98,63,91,101,44,77,97,116,104,46,97,98,115,40,108,45,101,41,60,73,98,63,104,58,110,93,58,77,97,116,104,46,97,98,115,40,118,45,110,41,60,73,98,38,38,112,45,116,62,73,98,63,91,77,97,116,104,46,97,98,115,40,104,45,110,41,60,73,98,63,108,58,116,44,110,93,58,110,117,108,108,41,41,45,49,41,44,43,43,102,41,59,102,38,38,40,121,61,33,49,41,125,105,102,40,121,41,123,118,97,114,32,95,44,98,44,109,44,120,61,49,47,48,59,102,111,114,40,105,61,48,44,121,61,110,117,108,108,59,105,60,103,59,43,43,105,41,40,111,61,66,98,91,105,93,41,38,38,40,109,61,40,95,61,40,97,61,111,46,115,105,116,101,41,91,48,93,45,116,41,42,95,43,40,98,61,97,91,49,93,45,110,41,42,98,41,60,120,38,38,40,120,61,109,44,121,61,111,41,59,105,102,40,121,41,123,118,97,114,32,119,61,91,116,44,110,93,44,77,61,91,116,44,114,93,44,78,61,91,101,44,114,93,44,84,61,91,101,44,110,93,59,121,46,104,97,108,102,101,100,103,101,115,46,112,117,115,104,40,89,98,46,112,117,115,104,40,95,98,40,97,61,121,46,115,105,116,101,44,119,44,77,41,41,45,49,44,89,98,46,112,117,115,104,40,95,98,40,97,44,77,44,78,41,41,45,49,44,89,98,46,112,117,115,104,40,95,98,40,97,44,78,44,84,41,41,45,49,44,89,98,46,112,117,115,104,40,95,98,40,97,44,84,44,119,41,41,45,49,41,125,125,102,111,114,40,105,61,48,59,105,60,103,59,43,43,105,41,40,111,61,66,98,91,105,93,41,38,38,40,111,46,104,97,108,102,101,100,103,101,115,46,108,101,110,103,116,104,124,124,100,101,108,101,116,101,32,66,98,91,105,93,41,125,40,97,44,117,44,99,44,102,41,125,116,104,105,115,46,101,100,103,101,115,61,89,98,44,116,104,105,115,46,99,101,108,108,115,61,66,98,44,79,98,61,70,98,61,89,98,61,66,98,61,110,117,108,108,125,102,117,110,99,116,105,111,110,32,71,98,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,125,125,102,117,110,99,116,105,111,110,32,36,98,40,116,44,110,44,101,41,123,116,104,105,115,46,116,97,114,103,101,116,61,116,44,116,104,105,115,46,116,121,112,101,61,110,44,116,104,105,115,46,116,114,97,110,115,102,111,114,109,61,101,125,102,117,110,99,116,105,111,110,32,87,98,40,116,44,110,44,101,41,123,116,104,105,115,46,107,61,116,44,116,104,105,115,46,120,61,110,44,116,104,105,115,46,121,61,101,125,86,98,46,112,114,111,116,111,116,121,112,101,61,123,99,111,110,115,116,114,117,99,116,111,114,58,86,98,44,112,111,108,121,103,111,110,115,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,101,100,103,101,115,59,114,101,116,117,114,110,32,116,104,105,115,46,99,101,108,108,115,46,109,97,112,40,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,101,61,110,46,104,97,108,102,101,100,103,101,115,46,109,97,112,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,77,98,40,110,44,116,91,101,93,41,125,41,59,114,101,116,117,114,110,32,101,46,100,97,116,97,61,110,46,115,105,116,101,46,100,97,116,97,44,101,125,41,125,44,116,114,105,97,110,103,108,101,115,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,91,93,44,110,61,116,104,105,115,46,101,100,103,101,115,59,114,101,116,117,114,110,32,116,104,105,115,46,99,101,108,108,115,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,101,44,114,41,123,105,102,40,111,61,40,105,61,101,46,104,97,108,102,101,100,103,101,115,41,46,108,101,110,103,116,104,41,102,111,114,40,118,97,114,32,105,44,111,44,97,44,117,61,101,46,115,105,116,101,44,99,61,45,49,44,102,61,110,91,105,91,111,45,49,93,93,44,115,61,102,46,108,101,102,116,61,61,61,117,63,102,46,114,105,103,104,116,58,102,46,108,101,102,116,59,43,43,99,60,111,59,41,97,61,115,44,115,61,40,102,61,110,91,105,91,99,93,93,41,46,108,101,102,116,61,61,61,117,63,102,46,114,105,103,104,116,58,102,46,108,101,102,116,44,97,38,38,115,38,38,114,60,97,46,105,110,100,101,120,38,38,114,60,115,46,105,110,100,101,120,38,38,106,98,40,117,44,97,44,115,41,60,48,38,38,116,46,112,117,115,104,40,91,117,46,100,97,116,97,44,97,46,100,97,116,97,44,115,46,100,97,116,97,93,41,125,41,44,116,125,44,108,105,110,107,115,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,100,103,101,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,114,105,103,104,116,125,41,46,109,97,112,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,123,115,111,117,114,99,101,58,116,46,108,101,102,116,46,100,97,116,97,44,116,97,114,103,101,116,58,116,46,114,105,103,104,116,46,100,97,116,97,125,125,41,125,44,102,105,110,100,58,102,117,110,99,116,105,111,110,40,116,44,110,44,101,41,123,102,111,114,40,118,97,114,32,114,44,105,44,111,61,116,104,105,115,44,97,61,111,46,95,102,111,117,110,100,124,124,48,44,117,61,111,46,99,101,108,108,115,46,108,101,110,103,116,104,59,33,40,105,61,111,46,99,101,108,108,115,91,97,93,41,59,41,105,102,40,43,43,97,62,61,117,41,114,101,116,117,114,110,32,110,117,108,108,59,118,97,114,32,99,61,116,45,105,46,115,105,116,101,91,48,93,44,102,61,110,45,105,46,115,105,116,101,91,49,93,44,115,61,99,42,99,43,102,42,102,59,100,111,123,105,61,111,46,99,101,108,108,115,91,114,61,97,93,44,97,61,110,117,108,108,44,105,46,104,97,108,102,101,100,103,101,115,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,114,61,111,46,101,100,103,101,115,91,101,93,44,117,61,114,46,108,101,102,116,59,105,102,40,117,33,61,61,105,46,115,105,116,101,38,38,117,124,124,40,117,61,114,46,114,105,103,104,116,41,41,123,118,97,114,32,99,61,116,45,117,91,48,93,44,102,61,110,45,117,91,49,93,44,108,61,99,42,99,43,102,42,102,59,108,60,115,38,38,40,115,61,108,44,97,61,117,46,105,110,100,101,120,41,125,125,41,125,119,104,105,108,101,40,110,117,108,108,33,61,61,97,41,59,114,101,116,117,114,110,32,111,46,95,102,111,117,110,100,61,114,44,110,117,108,108,61,61,101,124,124,115,60,61,101,42,101,63,105,46,115,105,116,101,58,110,117,108,108,125,125,44,87,98,46,112,114,111,116,111,116,121,112,101,61,123,99,111,110,115,116,114,117,99,116,111,114,58,87,98,44,115,99,97,108,101,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,49,61,61,61,116,63,116,104,105,115,58,110,101,119,32,87,98,40,116,104,105,115,46,107,42,116,44,116,104,105,115,46,120,44,116,104,105,115,46,121,41,125,44,116,114,97,110,115,108,97,116,101,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,48,61,61,61,116,38,48,61,61,61,110,63,116,104,105,115,58,110,101,119,32,87,98,40,116,104,105,115,46,107,44,116,104,105,115,46,120,43,116,104,105,115,46,107,42,116,44,116,104,105,115,46,121,43,116,104,105,115,46,107,42,110,41,125,44,97,112,112,108,121,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,91,116,91,48,93,42,116,104,105,115,46,107,43,116,104,105,115,46,120,44,116,91,49,93,42,116,104,105,115,46,107,43,116,104,105,115,46,121,93,125,44,97,112,112,108,121,88,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,42,116,104,105,115,46,107,43,116,104,105,115,46,120,125,44,97,112,112,108,121,89,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,42,116,104,105,115,46,107,43,116,104,105,115,46,121,125,44,105,110,118,101,114,116,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,91,40,116,91,48,93,45,116,104,105,115,46,120,41,47,116,104,105,115,46,107,44,40,116,91,49,93,45,116,104,105,115,46,121,41,47,116,104,105,115,46,107,93,125,44,105,110,118,101,114,116,88,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,40,116,45,116,104,105,115,46,120,41,47,116,104,105,115,46,107,125,44,105,110,118,101,114,116,89,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,40,116,45,116,104,105,115,46,121,41,47,116,104,105,115,46,107,125,44,114,101,115,99,97,108,101,88,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,99,111,112,121,40,41,46,100,111,109,97,105,110,40,116,46,114,97,110,103,101,40,41,46,109,97,112,40,116,104,105,115,46,105,110,118,101,114,116,88,44,116,104,105,115,41,46,109,97,112,40,116,46,105,110,118,101,114,116,44,116,41,41,125,44,114,101,115,99,97,108,101,89,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,99,111,112,121,40,41,46,100,111,109,97,105,110,40,116,46,114,97,110,103,101,40,41,46,109,97,112,40,116,104,105,115,46,105,110,118,101,114,116,89,44,116,104,105,115,41,46,109,97,112,40,116,46,105,110,118,101,114,116,44,116,41,41,125,44,116,111,83,116,114,105,110,103,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,34,116,114,97,110,115,108,97,116,101,40,34,43,116,104,105,115,46,120,43,34,44,34,43,116,104,105,115,46,121,43,34,41,32,115,99,97,108,101,40,34,43,116,104,105,115,46,107,43,34,41,34,125,125,59,118,97,114,32,90,98,61,110,101,119,32,87,98,40,49,44,48,44,48,41,59,102,117,110,99,116,105,111,110,32,81,98,40,116,41,123,102,111,114,40,59,33,116,46,95,95,122,111,111,109,59,41,105,102,40,33,40,116,61,116,46,112,97,114,101,110,116,78,111,100,101,41,41,114,101,116,117,114,110,32,90,98,59,114,101,116,117,114,110,32,116,46,95,95,122,111,111,109,125,102,117,110,99,116,105,111,110,32,75,98,40,41,123,116,46,101,118,101,110,116,46,115,116,111,112,73,109,109,101,100,105,97,116,101,80,114,111,112,97,103,97,116,105,111,110,40,41,125,102,117,110,99,116,105,111,110,32,74,98,40,41,123,116,46,101,118,101,110,116,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,116,46,101,118,101,110,116,46,115,116,111,112,73,109,109,101,100,105,97,116,101,80,114,111,112,97,103,97,116,105,111,110,40,41,125,102,117,110,99,116,105,111,110,32,116,109,40,41,123,114,101,116,117,114,110,33,116,46,101,118,101,110,116,46,99,116,114,108,75,101,121,38,38,33,116,46,101,118,101,110,116,46,98,117,116,116,111,110,125,102,117,110,99,116,105,111,110,32,110,109,40,41,123,118,97,114,32,116,61,116,104,105,115,59,114,101,116,117,114,110,32,116,32,105,110,115,116,97,110,99,101,111,102,32,83,86,71,69,108,101,109,101,110,116,63,40,116,61,116,46,111,119,110,101,114,83,86,71,69,108,101,109,101,110,116,124,124,116,41,46,104,97,115,65,116,116,114,105,98,117,116,101,40,34,118,105,101,119,66,111,120,34,41,63,91,91,40,116,61,116,46,118,105,101,119,66,111,120,46,98,97,115,101,86,97,108,41,46,120,44,116,46,121,93,44,91,116,46,120,43,116,46,119,105,100,116,104,44,116,46,121,43,116,46,104,101,105,103,104,116,93,93,58,91,91,48,44,48,93,44,91,116,46,119,105,100,116,104,46,98,97,115,101,86,97,108,46,118,97,108,117,101,44,116,46,104,101,105,103,104,116,46,98,97,115,101,86,97,108,46,118,97,108,117,101,93,93,58,91,91,48,44,48,93,44,91,116,46,99,108,105,101,110,116,87,105,100,116,104,44,116,46,99,108,105,101,110,116,72,101,105,103,104,116,93,93,125,102,117,110,99,116,105,111,110,32,101,109,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,95,122,111,111,109,124,124,90,98,125,102,117,110,99,116,105,111,110,32,114,109,40,41,123,114,101,116,117,114,110,45,116,46,101,118,101,110,116,46,100,101,108,116,97,89,42,40,49,61,61,61,116,46,101,118,101,110,116,46,100,101,108,116,97,77,111,100,101,63,46,48,53,58,116,46,101,118,101,110,116,46,100,101,108,116,97,77,111,100,101,63,49,58,46,48,48,50,41,125,102,117,110,99,116,105,111,110,32,105,109,40,41,123,114,101,116,117,114,110,32,110,97,118,105,103,97,116,111,114,46,109,97,120,84,111,117,99,104,80,111,105,110,116,115,124,124,34,111,110,116,111,117,99,104,115,116,97,114,116,34,105,110,32,116,104,105,115,125,102,117,110,99,116,105,111,110,32,111,109,40,116,44,110,44,101,41,123,118,97,114,32,114,61,116,46,105,110,118,101,114,116,88,40,110,91,48,93,91,48,93,41,45,101,91,48,93,91,48,93,44,105,61,116,46,105,110,118,101,114,116,88,40,110,91,49,93,91,48,93,41,45,101,91,49,93,91,48,93,44,111,61,116,46,105,110,118,101,114,116,89,40,110,91,48,93,91,49,93,41,45,101,91,48,93,91,49,93,44,97,61,116,46,105,110,118,101,114,116,89,40,110,91,49,93,91,49,93,41,45,101,91,49,93,91,49,93,59,114,101,116,117,114,110,32,116,46,116,114,97,110,115,108,97,116,101,40,105,62,114,63,40,114,43,105,41,47,50,58,77,97,116,104,46,109,105,110,40,48,44,114,41,124,124,77,97,116,104,46,109,97,120,40,48,44,105,41,44,97,62,111,63,40,111,43,97,41,47,50,58,77,97,116,104,46,109,105,110,40,48,44,111,41,124,124,77,97,116,104,46,109,97,120,40,48,44,97,41,41,125,81,98,46,112,114,111,116,111,116,121,112,101,61,87,98,46,112,114,111,116,111,116,121,112,101,44,116,46,70,111,114,109,97,116,83,112,101,99,105,102,105,101,114,61,66,97,44,116,46,97,99,116,105,118,101,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,44,114,44,105,61,116,46,95,95,116,114,97,110,115,105,116,105,111,110,59,105,102,40,105,41,102,111,114,40,114,32,105,110,32,110,61,110,117,108,108,61,61,110,63,110,117,108,108,58,110,43,34,34,44,105,41,105,102,40,40,101,61,105,91,114,93,41,46,115,116,97,116,101,62,120,114,38,38,101,46,110,97,109,101,61,61,61,110,41,114,101,116,117,114,110,32,110,101,119,32,85,114,40,91,91,116,93,93,44,121,105,44,110,44,43,114,41,59,114,101,116,117,114,110,32,110,117,108,108,125,44,116,46,97,114,99,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,82,121,44,110,61,68,121,44,101,61,109,121,40,48,41,44,114,61,110,117,108,108,44,105,61,113,121,44,111,61,76,121,44,97,61,85,121,44,117,61,110,117,108,108,59,102,117,110,99,116,105,111,110,32,99,40,41,123,118,97,114,32,99,44,102,44,115,61,43,116,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,44,108,61,43,110,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,44,104,61,105,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,45,67,121,44,100,61,111,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,45,67,121,44,112,61,120,121,40,100,45,104,41,44,118,61,100,62,104,59,105,102,40,117,124,124,40,117,61,99,61,110,111,40,41,41,44,108,60,115,38,38,40,102,61,108,44,108,61,115,44,115,61,102,41,44,108,62,107,121,41,105,102,40,112,62,80,121,45,107,121,41,117,46,109,111,118,101,84,111,40,108,42,77,121,40,104,41,44,108,42,65,121,40,104,41,41,44,117,46,97,114,99,40,48,44,48,44,108,44,104,44,100,44,33,118,41,44,115,62,107,121,38,38,40,117,46,109,111,118,101,84,111,40,115,42,77,121,40,100,41,44,115,42,65,121,40,100,41,41,44,117,46,97,114,99,40,48,44,48,44,115,44,100,44,104,44,118,41,41,59,101,108,115,101,123,118,97,114,32,103,44,121,44,95,61,104,44,98,61,100,44,109,61,104,44,120,61,100,44,119,61,112,44,77,61,112,44,78,61,97,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,47,50,44,84,61,78,62,107,121,38,38,40,114,63,43,114,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,58,83,121,40,115,42,115,43,108,42,108,41,41,44,65,61,84,121,40,120,121,40,108,45,115,41,47,50,44,43,101,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,41,44,83,61,65,44,107,61,65,59,105,102,40,84,62,107,121,41,123,118,97,114,32,69,61,122,121,40,84,47,115,42,65,121,40,78,41,41,44,67,61,122,121,40,84,47,108,42,65,121,40,78,41,41,59,40,119,45,61,50,42,69,41,62,107,121,63,40,109,43,61,69,42,61,118,63,49,58,45,49,44,120,45,61,69,41,58,40,119,61,48,44,109,61,120,61,40,104,43,100,41,47,50,41,44,40,77,45,61,50,42,67,41,62,107,121,63,40,95,43,61,67,42,61,118,63,49,58,45,49,44,98,45,61,67,41,58,40,77,61,48,44,95,61,98,61,40,104,43,100,41,47,50,41,125,118,97,114,32,80,61,108,42,77,121,40,95,41,44,122,61,108,42,65,121,40,95,41,44,82,61,115,42,77,121,40,120,41,44,68,61,115,42,65,121,40,120,41,59,105,102,40,65,62,107,121,41,123,118,97,114,32,113,44,76,61,108,42,77,121,40,98,41,44,85,61,108,42,65,121,40,98,41,44,79,61,115,42,77,121,40,109,41,44,66,61,115,42,65,121,40,109,41,59,105,102,40,112,60,69,121,38,38,40,113,61,102,117,110,99,116,105,111,110,40,116,44,110,44,101,44,114,44,105,44,111,44,97,44,117,41,123,118,97,114,32,99,61,101,45,116,44,102,61,114,45,110,44,115,61,97,45,105,44,108,61,117,45,111,44,104,61,108,42,99,45,115,42,102,59,105,102,40,33,40,104,42,104,60,107,121,41,41,114,101,116,117,114,110,91,116,43,40,104,61,40,115,42,40,110,45,111,41,45,108,42,40,116,45,105,41,41,47,104,41,42,99,44,110,43,104,42,102,93,125,40,80,44,122,44,79,44,66,44,76,44,85,44,82,44,68,41,41,41,123,118,97,114,32,70,61,80,45,113,91,48,93,44,89,61,122,45,113,91,49,93,44,73,61,76,45,113,91,48,93,44,72,61,85,45,113,91,49,93,44,106,61,49,47,65,121,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,62,49,63,48,58,116,60,45,49,63,69,121,58,77,97,116,104,46,97,99,111,115,40,116,41,125,40,40,70,42,73,43,89,42,72,41,47,40,83,121,40,70,42,70,43,89,42,89,41,42,83,121,40,73,42,73,43,72,42,72,41,41,41,47,50,41,44,88,61,83,121,40,113,91,48,93,42,113,91,48,93,43,113,91,49,93,42,113,91,49,93,41,59,83,61,84,121,40,65,44,40,115,45,88,41,47,40,106,45,49,41,41,44,107,61,84,121,40,65,44,40,108,45,88,41,47,40,106,43,49,41,41,125,125,77,62,107,121,63,107,62,107,121,63,40,103,61,79,121,40,79,44,66,44,80,44,122,44,108,44,107,44,118,41,44,121,61,79,121,40,76,44,85,44,82,44,68,44,108,44,107,44,118,41,44,117,46,109,111,118,101,84,111,40,103,46,99,120,43,103,46,120,48,49,44,103,46,99,121,43,103,46,121,48,49,41,44,107,60,65,63,117,46,97,114,99,40,103,46,99,120,44,103,46,99,121,44,107,44,119,121,40,103,46,121,48,49,44,103,46,120,48,49,41,44,119,121,40,121,46,121,48,49,44,121,46,120,48,49,41,44,33,118,41,58,40,117,46,97,114,99,40,103,46,99,120,44,103,46,99,121,44,107,44,119,121,40,103,46,121,48,49,44,103,46,120,48,49,41,44,119,121,40,103,46,121,49,49,44,103,46,120,49,49,41,44,33,118,41,44,117,46,97,114,99,40,48,44,48,44,108,44,119,121,40,103,46,99,121,43,103,46,121,49,49,44,103,46,99,120,43,103,46,120,49,49,41,44,119,121,40,121,46,99,121,43,121,46,121,49,49,44,121,46,99,120,43,121,46,120,49,49,41,44,33,118,41,44,117,46,97,114,99,40,121,46,99,120,44,121,46,99,121,44,107,44,119,121,40,121,46,121,49,49,44,121,46,120,49,49,41,44,119,121,40,121,46,121,48,49,44,121,46,120,48,49,41,44,33,118,41,41,41,58,40,117,46,109,111,118,101,84,111,40,80,44,122,41,44,117,46,97,114,99,40,48,44,48,44,108,44,95,44,98,44,33,118,41,41,58,117,46,109,111,118,101,84,111,40,80,44,122,41,44,115,62,107,121,38,38,119,62,107,121,63,83,62,107,121,63,40,103,61,79,121,40,82,44,68,44,76,44,85,44,115,44,45,83,44,118,41,44,121,61,79,121,40,80,44,122,44,79,44,66,44,115,44,45,83,44,118,41,44,117,46,108,105,110,101,84,111,40,103,46,99,120,43,103,46,120,48,49,44,103,46,99,121,43,103,46,121,48,49,41,44,83,60,65,63,117,46,97,114,99,40,103,46,99,120,44,103,46,99,121,44,83,44,119,121,40,103,46,121,48,49,44,103,46,120,48,49,41,44,119,121,40,121,46,121,48,49,44,121,46,120,48,49,41,44,33,118,41,58,40,117,46,97,114,99,40,103,46,99,120,44,103,46,99,121,44,83,44,119,121,40,103,46,121,48,49,44,103,46,120,48,49,41,44,119,121,40,103,46,121,49,49,44,103,46,120,49,49,41,44,33,118,41,44,117,46,97,114,99,40,48,44,48,44,115,44,119,121,40,103,46,99,121,43,103,46,121,49,49,44,103,46,99,120,43,103,46,120,49,49,41,44,119,121,40,121,46,99,121,43,121,46,121,49,49,44,121,46,99,120,43,121,46,120,49,49,41,44,118,41,44,117,46,97,114,99,40,121,46,99,120,44,121,46,99,121,44,83,44,119,121,40,121,46,121,49,49,44,121,46,120,49,49,41,44,119,121,40,121,46,121,48,49,44,121,46,120,48,49,41,44,33,118,41,41,41,58,117,46,97,114,99,40,48,44,48,44,115,44,120,44,109,44,118,41,58,117,46,108,105,110,101,84,111,40,82,44,68,41,125,101,108,115,101,32,117,46,109,111,118,101,84,111,40,48,44,48,41,59,105,102,40,117,46,99,108,111,115,101,80,97,116,104,40,41,44,99,41,114,101,116,117,114,110,32,117,61,110,117,108,108,44,99,43,34,34,124,124,110,117,108,108,125,114,101,116,117,114,110,32,99,46,99,101,110,116,114,111,105,100,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,40,43,116,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,43,32,43,110,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,41,47,50,44,114,61,40,43,105,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,43,32,43,111,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,41,47,50,45,69,121,47,50,59,114,101,116,117,114,110,91,77,121,40,114,41,42,101,44,65,121,40,114,41,42,101,93,125,44,99,46,105,110,110,101,114,82,97,100,105,117,115,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,116,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,110,63,110,58,109,121,40,43,110,41,44,99,41,58,116,125,44,99,46,111,117,116,101,114,82,97,100,105,117,115,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,110,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,109,121,40,43,116,41,44,99,41,58,110,125,44,99,46,99,111,114,110,101,114,82,97,100,105,117,115,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,101,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,109,121,40,43,116,41,44,99,41,58,101,125,44,99,46,112,97,100,82,97,100,105,117,115,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,114,61,110,117,108,108,61,61,116,63,110,117,108,108,58,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,109,121,40,43,116,41,44,99,41,58,114,125,44,99,46,115,116,97,114,116,65,110,103,108,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,105,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,109,121,40,43,116,41,44,99,41,58,105,125,44,99,46,101,110,100,65,110,103,108,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,111,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,109,121,40,43,116,41,44,99,41,58,111,125,44,99,46,112,97,100,65,110,103,108,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,97,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,109,121,40,43,116,41,44,99,41,58,97,125,44,99,46,99,111,110,116,101,120,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,117,61,110,117,108,108,61,61,116,63,110,117,108,108,58,116,44,99,41,58,117,125,44,99,125,44,116,46,97,114,101,97,61,106,121,44,116,46,97,114,101,97,82,97,100,105,97,108,61,75,121,44,116,46,97,115,99,101,110,100,105,110,103,61,110,44,116,46,97,117,116,111,84,121,112,101,61,102,117,110,99,116,105,111,110,40,116,41,123,102,111,114,40,118,97,114,32,110,32,105,110,32,116,41,123,118,97,114,32,101,44,114,44,105,61,116,91,110,93,46,116,114,105,109,40,41,59,105,102,40,105,41,105,102,40,34,116,114,117,101,34,61,61,61,105,41,105,61,33,48,59,101,108,115,101,32,105,102,40,34,102,97,108,115,101,34,61,61,61,105,41,105,61,33,49,59,101,108,115,101,32,105,102,40,34,78,97,78,34,61,61,61,105,41,105,61,78,97,78,59,101,108,115,101,32,105,102,40,105,115,78,97,78,40,101,61,43,105,41,41,123,105,102,40,33,40,114,61,105,46,109,97,116,99,104,40,47,94,40,91,45,43,93,92,100,123,50,125,41,63,92,100,123,52,125,40,45,92,100,123,50,125,40,45,92,100,123,50,125,41,63,41,63,40,84,92,100,123,50,125,58,92,100,123,50,125,40,58,92,100,123,50,125,40,92,46,92,100,123,51,125,41,63,41,63,40,90,124,91,45,43,93,92,100,123,50,125,58,92,100,123,50,125,41,63,41,63,36,47,41,41,41,99,111,110,116,105,110,117,101,59,114,97,38,38,114,91,52,93,38,38,33,114,91,55,93,38,38,40,105,61,105,46,114,101,112,108,97,99,101,40,47,45,47,103,44,34,47,34,41,46,114,101,112,108,97,99,101,40,47,84,47,44,34,32,34,41,41,44,105,61,110,101,119,32,68,97,116,101,40,105,41,125,101,108,115,101,32,105,61,101,59,101,108,115,101,32,105,61,110,117,108,108,59,116,91,110,93,61,105,125,114,101,116,117,114,110,32,116,125,44,116,46,97,120,105,115,66,111,116,116,111,109,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,70,40,68,44,116,41,125,44,116,46,97,120,105,115,76,101,102,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,70,40,113,44,116,41,125,44,116,46,97,120,105,115,82,105,103,104,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,70,40,82,44,116,41,125,44,116,46,97,120,105,115,84,111,112,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,70,40,122,44,116,41,125,44,116,46,98,105,115,101,99,116,61,105,44,116,46,98,105,115,101,99,116,76,101,102,116,61,111,44,116,46,98,105,115,101,99,116,82,105,103,104,116,61,105,44,116,46,98,105,115,101,99,116,111,114,61,101,44,116,46,98,108,111,98,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,102,101,116,99,104,40,116,44,110,41,46,116,104,101,110,40,105,97,41,125,44,116,46,98,114,117,115,104,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,89,105,40,67,105,41,125,44,116,46,98,114,117,115,104,83,101,108,101,99,116,105,111,110,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,116,46,95,95,98,114,117,115,104,59,114,101,116,117,114,110,32,110,63,110,46,100,105,109,46,111,117,116,112,117,116,40,110,46,115,101,108,101,99,116,105,111,110,41,58,110,117,108,108,125,44,116,46,98,114,117,115,104,88,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,89,105,40,107,105,41,125,44,116,46,98,114,117,115,104,89,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,89,105,40,69,105,41,125,44,116,46,98,117,102,102,101,114,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,102,101,116,99,104,40,116,44,110,41,46,116,104,101,110,40,111,97,41,125,44,116,46,99,104,111,114,100,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,48,44,110,61,110,117,108,108,44,101,61,110,117,108,108,44,114,61,110,117,108,108,59,102,117,110,99,116,105,111,110,32,105,40,105,41,123,118,97,114,32,111,44,97,44,117,44,99,44,102,44,115,44,108,61,105,46,108,101,110,103,116,104,44,104,61,91,93,44,100,61,103,40,108,41,44,112,61,91,93,44,118,61,91,93,44,121,61,118,46,103,114,111,117,112,115,61,110,101,119,32,65,114,114,97,121,40,108,41,44,95,61,110,101,119,32,65,114,114,97,121,40,108,42,108,41,59,102,111,114,40,111,61,48,44,102,61,45,49,59,43,43,102,60,108,59,41,123,102,111,114,40,97,61,48,44,115,61,45,49,59,43,43,115,60,108,59,41,97,43,61,105,91,102,93,91,115,93,59,104,46,112,117,115,104,40,97,41,44,112,46,112,117,115,104,40,103,40,108,41,41,44,111,43,61,97,125,102,111,114,40,110,38,38,100,46,115,111,114,116,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,110,40,104,91,116,93,44,104,91,101,93,41,125,41,44,101,38,38,112,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,116,44,110,41,123,116,46,115,111,114,116,40,102,117,110,99,116,105,111,110,40,116,44,114,41,123,114,101,116,117,114,110,32,101,40,105,91,110,93,91,116,93,44,105,91,110,93,91,114,93,41,125,41,125,41,44,99,61,40,111,61,71,105,40,48,44,86,105,45,116,42,108,41,47,111,41,63,116,58,86,105,47,108,44,97,61,48,44,102,61,45,49,59,43,43,102,60,108,59,41,123,102,111,114,40,117,61,97,44,115,61,45,49,59,43,43,115,60,108,59,41,123,118,97,114,32,98,61,100,91,102,93,44,109,61,112,91,98,93,91,115,93,44,120,61,105,91,98,93,91,109,93,44,119,61,97,44,77,61,97,43,61,120,42,111,59,95,91,109,42,108,43,98,93,61,123,105,110,100,101,120,58,98,44,115,117,98,105,110,100,101,120,58,109,44,115,116,97,114,116,65,110,103,108,101,58,119,44,101,110,100,65,110,103,108,101,58,77,44,118,97,108,117,101,58,120,125,125,121,91,98,93,61,123,105,110,100,101,120,58,98,44,115,116,97,114,116,65,110,103,108,101,58,117,44,101,110,100,65,110,103,108,101,58,97,44,118,97,108,117,101,58,104,91,98,93,125,44,97,43,61,99,125,102,111,114,40,102,61,45,49,59,43,43,102,60,108,59,41,102,111,114,40,115,61,102,45,49,59,43,43,115,60,108,59,41,123,118,97,114,32,78,61,95,91,115,42,108,43,102,93,44,84,61,95,91,102,42,108,43,115,93,59,40,78,46,118,97,108,117,101,124,124,84,46,118,97,108,117,101,41,38,38,118,46,112,117,115,104,40,78,46,118,97,108,117,101,60,84,46,118,97,108,117,101,63,123,115,111,117,114,99,101,58,84,44,116,97,114,103,101,116,58,78,125,58,123,115,111,117,114,99,101,58,78,44,116,97,114,103,101,116,58,84,125,41,125,114,101,116,117,114,110,32,114,63,118,46,115,111,114,116,40,114,41,58,118,125,114,101,116,117,114,110,32,105,46,112,97,100,65,110,103,108,101,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,116,61,71,105,40,48,44,110,41,44,105,41,58,116,125,44,105,46,115,111,114,116,71,114,111,117,112,115,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,110,61,116,44,105,41,58,110,125,44,105,46,115,111,114,116,83,117,98,103,114,111,117,112,115,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,101,61,116,44,105,41,58,101,125,44,105,46,115,111,114,116,67,104,111,114,100,115,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,110,117,108,108,61,61,116,63,114,61,110,117,108,108,58,40,114,61,36,105,40,116,41,41,46,95,61,116,44,105,41,58,114,38,38,114,46,95,125,44,105,125,44,116,46,99,108,105,101,110,116,80,111,105,110,116,61,79,116,44,116,46,99,108,117,115,116,101,114,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,78,108,44,110,61,49,44,101,61,49,44,114,61,33,49,59,102,117,110,99,116,105,111,110,32,105,40,105,41,123,118,97,114,32,111,44,97,61,48,59,105,46,101,97,99,104,65,102,116,101,114,40,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,101,61,110,46,99,104,105,108,100,114,101,110,59,101,63,40,110,46,120,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,114,101,100,117,99,101,40,84,108,44,48,41,47,116,46,108,101,110,103,116,104,125,40,101,41,44,110,46,121,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,49,43,116,46,114,101,100,117,99,101,40,65,108,44,48,41,125,40,101,41,41,58,40,110,46,120,61,111,63,97,43,61,116,40,110,44,111,41,58,48,44,110,46,121,61,48,44,111,61,110,41,125,41,59,118,97,114,32,117,61,102,117,110,99,116,105,111,110,40,116,41,123,102,111,114,40,118,97,114,32,110,59,110,61,116,46,99,104,105,108,100,114,101,110,59,41,116,61,110,91,48,93,59,114,101,116,117,114,110,32,116,125,40,105,41,44,99,61,102,117,110,99,116,105,111,110,40,116,41,123,102,111,114,40,118,97,114,32,110,59,110,61,116,46,99,104,105,108,100,114,101,110,59,41,116,61,110,91,110,46,108,101,110,103,116,104,45,49,93,59,114,101,116,117,114,110,32,116,125,40,105,41,44,102,61,117,46,120,45,116,40,117,44,99,41,47,50,44,115,61,99,46,120,43,116,40,99,44,117,41,47,50,59,114,101,116,117,114,110,32,105,46,101,97,99,104,65,102,116,101,114,40,114,63,102,117,110,99,116,105,111,110,40,116,41,123,116,46,120,61,40,116,46,120,45,105,46,120,41,42,110,44,116,46,121,61,40,105,46,121,45,116,46,121,41,42,101,125,58,102,117,110,99,116,105,111,110,40,116,41,123,116,46,120,61,40,116,46,120,45,102,41,47,40,115,45,102,41,42,110,44,116,46,121,61,40,49,45,40,105,46,121,63,116,46,121,47,105,46,121,58,49,41,41,42,101,125,41,125,114,101,116,117,114,110,32,105,46,115,101,112,97,114,97,116,105,111,110,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,116,61,110,44,105,41,58,116,125,44,105,46,115,105,122,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,114,61,33,49,44,110,61,43,116,91,48,93,44,101,61,43,116,91,49,93,44,105,41,58,114,63,110,117,108,108,58,91,110,44,101,93,125,44,105,46,110,111,100,101,83,105,122,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,114,61,33,48,44,110,61,43,116,91,48,93,44,101,61,43,116,91,49,93,44,105,41,58,114,63,91,110,44,101,93,58,110,117,108,108,125,44,105,125,44,116,46,99,111,108,111,114,61,112,110,44,116,46,99,111,110,116,111,117,114,68,101,110,115,105,116,121,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,107,111,44,110,61,69,111,44,101,61,67,111,44,114,61,57,54,48,44,105,61,53,48,48,44,111,61,50,48,44,97,61,50,44,117,61,51,42,111,44,99,61,114,43,50,42,117,62,62,97,44,102,61,105,43,50,42,117,62,62,97,44,115,61,98,111,40,50,48,41,59,102,117,110,99,116,105,111,110,32,108,40,114,41,123,118,97,114,32,105,61,110,101,119,32,70,108,111,97,116,51,50,65,114,114,97,121,40,99,42,102,41,44,108,61,110,101,119,32,70,108,111,97,116,51,50,65,114,114,97,121,40,99,42,102,41,59,114,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,114,44,111,44,115,41,123,118,97,114,32,108,61,43,116,40,114,44,111,44,115,41,43,117,62,62,97,44,104,61,43,110,40,114,44,111,44,115,41,43,117,62,62,97,44,100,61,43,101,40,114,44,111,44,115,41,59,108,62,61,48,38,38,108,60,99,38,38,104,62,61,48,38,38,104,60,102,38,38,40,105,91,108,43,104,42,99,93,43,61,100,41,125,41,44,65,111,40,123,119,105,100,116,104,58,99,44,104,101,105,103,104,116,58,102,44,100,97,116,97,58,105,125,44,123,119,105,100,116,104,58,99,44,104,101,105,103,104,116,58,102,44,100,97,116,97,58,108,125,44,111,62,62,97,41,44,83,111,40,123,119,105,100,116,104,58,99,44,104,101,105,103,104,116,58,102,44,100,97,116,97,58,108,125,44,123,119,105,100,116,104,58,99,44,104,101,105,103,104,116,58,102,44,100,97,116,97,58,105,125,44,111,62,62,97,41,44,65,111,40,123,119,105,100,116,104,58,99,44,104,101,105,103,104,116,58,102,44,100,97,116,97,58,105,125,44,123,119,105,100,116,104,58,99,44,104,101,105,103,104,116,58,102,44,100,97,116,97,58,108,125,44,111,62,62,97,41,44,83,111,40,123,119,105,100,116,104,58,99,44,104,101,105,103,104,116,58,102,44,100,97,116,97,58,108,125,44,123,119,105,100,116,104,58,99,44,104,101,105,103,104,116,58,102,44,100,97,116,97,58,105,125,44,111,62,62,97,41,44,65,111,40,123,119,105,100,116,104,58,99,44,104,101,105,103,104,116,58,102,44,100,97,116,97,58,105,125,44,123,119,105,100,116,104,58,99,44,104,101,105,103,104,116,58,102,44,100,97,116,97,58,108,125,44,111,62,62,97,41,44,83,111,40,123,119,105,100,116,104,58,99,44,104,101,105,103,104,116,58,102,44,100,97,116,97,58,108,125,44,123,119,105,100,116,104,58,99,44,104,101,105,103,104,116,58,102,44,100,97,116,97,58,105,125,44,111,62,62,97,41,59,118,97,114,32,100,61,115,40,105,41,59,105,102,40,33,65,114,114,97,121,46,105,115,65,114,114,97,121,40,100,41,41,123,118,97,114,32,112,61,84,40,105,41,59,100,61,119,40,48,44,112,44,100,41,44,40,100,61,103,40,48,44,77,97,116,104,46,102,108,111,111,114,40,112,47,100,41,42,100,44,100,41,41,46,115,104,105,102,116,40,41,125,114,101,116,117,114,110,32,84,111,40,41,46,116,104,114,101,115,104,111,108,100,115,40,100,41,46,115,105,122,101,40,91,99,44,102,93,41,40,105,41,46,109,97,112,40,104,41,125,102,117,110,99,116,105,111,110,32,104,40,116,41,123,114,101,116,117,114,110,32,116,46,118,97,108,117,101,42,61,77,97,116,104,46,112,111,119,40,50,44,45,50,42,97,41,44,116,46,99,111,111,114,100,105,110,97,116,101,115,46,102,111,114,69,97,99,104,40,100,41,44,116,125,102,117,110,99,116,105,111,110,32,100,40,116,41,123,116,46,102,111,114,69,97,99,104,40,112,41,125,102,117,110,99,116,105,111,110,32,112,40,116,41,123,116,46,102,111,114,69,97,99,104,40,118,41,125,102,117,110,99,116,105,111,110,32,118,40,116,41,123,116,91,48,93,61,116,91,48,93,42,77,97,116,104,46,112,111,119,40,50,44,97,41,45,117,44,116,91,49,93,61,116,91,49,93,42,77,97,116,104,46,112,111,119,40,50,44,97,41,45,117,125,102,117,110,99,116,105,111,110,32,121,40,41,123,114,101,116,117,114,110,32,99,61,114,43,50,42,40,117,61,51,42,111,41,62,62,97,44,102,61,105,43,50,42,117,62,62,97,44,108,125,114,101,116,117,114,110,32,108,46,120,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,116,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,110,63,110,58,98,111,40,43,110,41,44,108,41,58,116,125,44,108,46,121,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,110,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,98,111,40,43,116,41,44,108,41,58,110,125,44,108,46,119,101,105,103,104,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,101,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,98,111,40,43,116,41,44,108,41,58,101,125,44,108,46,115,105,122,101,61,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,33,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,114,101,116,117,114,110,91,114,44,105,93,59,118,97,114,32,110,61,77,97,116,104,46,99,101,105,108,40,116,91,48,93,41,44,101,61,77,97,116,104,46,99,101,105,108,40,116,91,49,93,41,59,105,102,40,33,40,110,62,61,48,124,124,110,62,61,48,41,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,105,110,118,97,108,105,100,32,115,105,122,101,34,41,59,114,101,116,117,114,110,32,114,61,110,44,105,61,101,44,121,40,41,125,44,108,46,99,101,108,108,83,105,122,101,61,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,33,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,114,101,116,117,114,110,32,49,60,60,97,59,105,102,40,33,40,40,116,61,43,116,41,62,61,49,41,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,105,110,118,97,108,105,100,32,99,101,108,108,32,115,105,122,101,34,41,59,114,101,116,117,114,110,32,97,61,77,97,116,104,46,102,108,111,111,114,40,77,97,116,104,46,108,111,103,40,116,41,47,77,97,116,104,46,76,78,50,41,44,121,40,41,125,44,108,46,116,104,114,101,115,104,111,108,100,115,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,115,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,65,114,114,97,121,46,105,115,65,114,114,97,121,40,116,41,63,98,111,40,121,111,46,99,97,108,108,40,116,41,41,58,98,111,40,116,41,44,108,41,58,115,125,44,108,46,98,97,110,100,119,105,100,116,104,61,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,33,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,114,101,116,117,114,110,32,77,97,116,104,46,115,113,114,116,40,111,42,40,111,43,49,41,41,59,105,102,40,33,40,40,116,61,43,116,41,62,61,48,41,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,105,110,118,97,108,105,100,32,98,97,110,100,119,105,100,116,104,34,41,59,114,101,116,117,114,110,32,111,61,77,97,116,104,46,114,111,117,110,100,40,40,77,97,116,104,46,115,113,114,116,40,52,42,116,42,116,43,49,41,45,49,41,47,50,41,44,121,40,41,125,44,108,125,44,116,46,99,111,110,116,111,117,114,115,61,84,111,44,116,46,99,114,101,97,116,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,82,116,40,90,40,116,41,46,99,97,108,108,40,100,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,41,41,125,44,116,46,99,114,101,97,116,111,114,61,90,44,116,46,99,114,111,115,115,61,102,117,110,99,116,105,111,110,40,116,44,110,44,101,41,123,118,97,114,32,114,44,105,44,111,44,117,44,99,61,116,46,108,101,110,103,116,104,44,102,61,110,46,108,101,110,103,116,104,44,115,61,110,101,119,32,65,114,114,97,121,40,99,42,102,41,59,102,111,114,40,110,117,108,108,61,61,101,38,38,40,101,61,97,41,44,114,61,111,61,48,59,114,60,99,59,43,43,114,41,102,111,114,40,117,61,116,91,114,93,44,105,61,48,59,105,60,102,59,43,43,105,44,43,43,111,41,115,91,111,93,61,101,40,117,44,110,91,105,93,41,59,114,101,116,117,114,110,32,115,125,44,116,46,99,115,118,61,102,97,44,116,46,99,115,118,70,111,114,109,97,116,61,106,111,44,116,46,99,115,118,70,111,114,109,97,116,66,111,100,121,61,88,111,44,116,46,99,115,118,70,111,114,109,97,116,82,111,119,61,71,111,44,116,46,99,115,118,70,111,114,109,97,116,82,111,119,115,61,86,111,44,116,46,99,115,118,70,111,114,109,97,116,86,97,108,117,101,61,36,111,44,116,46,99,115,118,80,97,114,115,101,61,73,111,44,116,46,99,115,118,80,97,114,115,101,82,111,119,115,61,72,111,44,116,46,99,117,98,101,104,101,108,105,120,61,101,101,44,116,46,99,117,114,118,101,66,97,115,105,115,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,101,119,32,65,95,40,116,41,125,44,116,46,99,117,114,118,101,66,97,115,105,115,67,108,111,115,101,100,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,101,119,32,83,95,40,116,41,125,44,116,46,99,117,114,118,101,66,97,115,105,115,79,112,101,110,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,101,119,32,107,95,40,116,41,125,44,116,46,99,117,114,118,101,66,117,110,100,108,101,61,67,95,44,116,46,99,117,114,118,101,67,97,114,100,105,110,97,108,61,82,95,44,116,46,99,117,114,118,101,67,97,114,100,105,110,97,108,67,108,111,115,101,100,61,113,95,44,116,46,99,117,114,118,101,67,97,114,100,105,110,97,108,79,112,101,110,61,85,95,44,116,46,99,117,114,118,101,67,97,116,109,117,108,108,82,111,109,61,70,95,44,116,46,99,117,114,118,101,67,97,116,109,117,108,108,82,111,109,67,108,111,115,101,100,61,73,95,44,116,46,99,117,114,118,101,67,97,116,109,117,108,108,82,111,109,79,112,101,110,61,106,95,44,116,46,99,117,114,118,101,76,105,110,101,97,114,61,70,121,44,116,46,99,117,114,118,101,76,105,110,101,97,114,67,108,111,115,101,100,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,101,119,32,88,95,40,116,41,125,44,116,46,99,117,114,118,101,77,111,110,111,116,111,110,101,88,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,101,119,32,90,95,40,116,41,125,44,116,46,99,117,114,118,101,77,111,110,111,116,111,110,101,89,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,101,119,32,81,95,40,116,41,125,44,116,46,99,117,114,118,101,78,97,116,117,114,97,108,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,101,119,32,74,95,40,116,41,125,44,116,46,99,117,114,118,101,83,116,101,112,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,101,119,32,110,98,40,116,44,46,53,41,125,44,116,46,99,117,114,118,101,83,116,101,112,65,102,116,101,114,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,101,119,32,110,98,40,116,44,49,41,125,44,116,46,99,117,114,118,101,83,116,101,112,66,101,102,111,114,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,101,119,32,110,98,40,116,44,48,41,125,44,116,46,99,117,115,116,111,109,69,118,101,110,116,61,107,116,44,116,46,100,101,115,99,101,110,100,105,110,103,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,110,60,116,63,45,49,58,110,62,116,63,49,58,110,62,61,116,63,48,58,78,97,78,125,44,116,46,100,101,118,105,97,116,105,111,110,61,102,44,116,46,100,105,115,112,97,116,99,104,61,73,44,116,46,100,114,97,103,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,110,44,101,44,114,44,105,44,111,61,71,116,44,97,61,36,116,44,117,61,87,116,44,99,61,90,116,44,102,61,123,125,44,115,61,73,40,34,115,116,97,114,116,34,44,34,100,114,97,103,34,44,34,101,110,100,34,41,44,108,61,48,44,104,61,48,59,102,117,110,99,116,105,111,110,32,100,40,116,41,123,116,46,111,110,40,34,109,111,117,115,101,100,111,119,110,46,100,114,97,103,34,44,112,41,46,102,105,108,116,101,114,40,99,41,46,111,110,40,34,116,111,117,99,104,115,116,97,114,116,46,100,114,97,103,34,44,121,41,46,111,110,40,34,116,111,117,99,104,109,111,118,101,46,100,114,97,103,34,44,95,41,46,111,110,40,34,116,111,117,99,104,101,110,100,46,100,114,97,103,32,116,111,117,99,104,99,97,110,99,101,108,46,100,114,97,103,34,44,98,41,46,115,116,121,108,101,40,34,116,111,117,99,104,45,97,99,116,105,111,110,34,44,34,110,111,110,101,34,41,46,115,116,121,108,101,40,34,45,119,101,98,107,105,116,45,116,97,112,45,104,105,103,104,108,105,103,104,116,45,99,111,108,111,114,34,44,34,114,103,98,97,40,48,44,48,44,48,44,48,41,34,41,125,102,117,110,99,116,105,111,110,32,112,40,41,123,105,102,40,33,105,38,38,111,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,41,123,118,97,114,32,117,61,109,40,34,109,111,117,115,101,34,44,97,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,44,66,116,44,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,59,117,38,38,40,82,116,40,116,46,101,118,101,110,116,46,118,105,101,119,41,46,111,110,40,34,109,111,117,115,101,109,111,118,101,46,100,114,97,103,34,44,118,44,33,48,41,46,111,110,40,34,109,111,117,115,101,117,112,46,100,114,97,103,34,44,103,44,33,48,41,44,72,116,40,116,46,101,118,101,110,116,46,118,105,101,119,41,44,89,116,40,41,44,114,61,33,49,44,110,61,116,46,101,118,101,110,116,46,99,108,105,101,110,116,88,44,101,61,116,46,101,118,101,110,116,46,99,108,105,101,110,116,89,44,117,40,34,115,116,97,114,116,34,41,41,125,125,102,117,110,99,116,105,111,110,32,118,40,41,123,105,102,40,73,116,40,41,44,33,114,41,123,118,97,114,32,105,61,116,46,101,118,101,110,116,46,99,108,105,101,110,116,88,45,110,44,111,61,116,46,101,118,101,110,116,46,99,108,105,101,110,116,89,45,101,59,114,61,105,42,105,43,111,42,111,62,104,125,102,46,109,111,117,115,101,40,34,100,114,97,103,34,41,125,102,117,110,99,116,105,111,110,32,103,40,41,123,82,116,40,116,46,101,118,101,110,116,46,118,105,101,119,41,46,111,110,40,34,109,111,117,115,101,109,111,118,101,46,100,114,97,103,32,109,111,117,115,101,117,112,46,100,114,97,103,34,44,110,117,108,108,41,44,106,116,40,116,46,101,118,101,110,116,46,118,105,101,119,44,114,41,44,73,116,40,41,44,102,46,109,111,117,115,101,40,34,101,110,100,34,41,125,102,117,110,99,116,105,111,110,32,121,40,41,123,105,102,40,111,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,41,123,118,97,114,32,110,44,101,44,114,61,116,46,101,118,101,110,116,46,99,104,97,110,103,101,100,84,111,117,99,104,101,115,44,105,61,97,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,44,117,61,114,46,108,101,110,103,116,104,59,102,111,114,40,110,61,48,59,110,60,117,59,43,43,110,41,40,101,61,109,40,114,91,110,93,46,105,100,101,110,116,105,102,105,101,114,44,105,44,70,116,44,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,41,38,38,40,89,116,40,41,44,101,40,34,115,116,97,114,116,34,41,41,125,125,102,117,110,99,116,105,111,110,32,95,40,41,123,118,97,114,32,110,44,101,44,114,61,116,46,101,118,101,110,116,46,99,104,97,110,103,101,100,84,111,117,99,104,101,115,44,105,61,114,46,108,101,110,103,116,104,59,102,111,114,40,110,61,48,59,110,60,105,59,43,43,110,41,40,101,61,102,91,114,91,110,93,46,105,100,101,110,116,105,102,105,101,114,93,41,38,38,40,73,116,40,41,44,101,40,34,100,114,97,103,34,41,41,125,102,117,110,99,116,105,111,110,32,98,40,41,123,118,97,114,32,110,44,101,44,114,61,116,46,101,118,101,110,116,46,99,104,97,110,103,101,100,84,111,117,99,104,101,115,44,111,61,114,46,108,101,110,103,116,104,59,102,111,114,40,105,38,38,99,108,101,97,114,84,105,109,101,111,117,116,40,105,41,44,105,61,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,40,41,123,105,61,110,117,108,108,125,44,53,48,48,41,44,110,61,48,59,110,60,111,59,43,43,110,41,40,101,61,102,91,114,91,110,93,46,105,100,101,110,116,105,102,105,101,114,93,41,38,38,40,89,116,40,41,44,101,40,34,101,110,100,34,41,41,125,102,117,110,99,116,105,111,110,32,109,40,110,44,101,44,114,44,105,44,111,41,123,118,97,114,32,97,44,99,44,104,44,112,61,114,40,101,44,110,41,44,118,61,115,46,99,111,112,121,40,41,59,105,102,40,107,116,40,110,101,119,32,86,116,40,100,44,34,98,101,102,111,114,101,115,116,97,114,116,34,44,97,44,110,44,108,44,112,91,48,93,44,112,91,49,93,44,48,44,48,44,118,41,44,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,110,117,108,108,33,61,40,116,46,101,118,101,110,116,46,115,117,98,106,101,99,116,61,97,61,117,46,97,112,112,108,121,40,105,44,111,41,41,38,38,40,99,61,97,46,120,45,112,91,48,93,124,124,48,44,104,61,97,46,121,45,112,91,49,93,124,124,48,44,33,48,41,125,41,41,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,116,40,117,41,123,118,97,114,32,115,44,103,61,112,59,115,119,105,116,99,104,40,117,41,123,99,97,115,101,34,115,116,97,114,116,34,58,102,91,110,93,61,116,44,115,61,108,43,43,59,98,114,101,97,107,59,99,97,115,101,34,101,110,100,34,58,100,101,108,101,116,101,32,102,91,110,93,44,45,45,108,59,99,97,115,101,34,100,114,97,103,34,58,112,61,114,40,101,44,110,41,44,115,61,108,125,107,116,40,110,101,119,32,86,116,40,100,44,117,44,97,44,110,44,115,44,112,91,48,93,43,99,44,112,91,49,93,43,104,44,112,91,48,93,45,103,91,48,93,44,112,91,49,93,45,103,91,49,93,44,118,41,44,118,46,97,112,112,108,121,44,118,44,91,117,44,105,44,111,93,41,125,125,114,101,116,117,114,110,32,100,46,102,105,108,116,101,114,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,111,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,88,116,40,33,33,116,41,44,100,41,58,111,125,44,100,46,99,111,110,116,97,105,110,101,114,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,97,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,88,116,40,116,41,44,100,41,58,97,125,44,100,46,115,117,98,106,101,99,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,117,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,88,116,40,116,41,44,100,41,58,117,125,44,100,46,116,111,117,99,104,97,98,108,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,99,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,88,116,40,33,33,116,41,44,100,41,58,99,125,44,100,46,111,110,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,115,46,111,110,46,97,112,112,108,121,40,115,44,97,114,103,117,109,101,110,116,115,41,59,114,101,116,117,114,110,32,116,61,61,61,115,63,100,58,116,125,44,100,46,99,108,105,99,107,68,105,115,116,97,110,99,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,104,61,40,116,61,43,116,41,42,116,44,100,41,58,77,97,116,104,46,115,113,114,116,40,104,41,125,44,100,125,44,116,46,100,114,97,103,68,105,115,97,98,108,101,61,72,116,44,116,46,100,114,97,103,69,110,97,98,108,101,61,106,116,44,116,46,100,115,118,61,102,117,110,99,116,105,111,110,40,116,44,110,44,101,44,114,41,123,51,61,61,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,38,38,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,101,38,38,40,114,61,101,44,101,61,118,111,105,100,32,48,41,59,118,97,114,32,105,61,70,111,40,116,41,59,114,101,116,117,114,110,32,117,97,40,110,44,101,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,105,46,112,97,114,115,101,40,116,44,114,41,125,41,125,44,116,46,100,115,118,70,111,114,109,97,116,61,70,111,44,116,46,101,97,115,101,66,97,99,107,61,115,105,44,116,46,101,97,115,101,66,97,99,107,73,110,61,99,105,44,116,46,101,97,115,101,66,97,99,107,73,110,79,117,116,61,115,105,44,116,46,101,97,115,101,66,97,99,107,79,117,116,61,102,105,44,116,46,101,97,115,101,66,111,117,110,99,101,61,117,105,44,116,46,101,97,115,101,66,111,117,110,99,101,73,110,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,49,45,117,105,40,49,45,116,41,125,44,116,46,101,97,115,101,66,111,117,110,99,101,73,110,79,117,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,40,40,116,42,61,50,41,60,61,49,63,49,45,117,105,40,49,45,116,41,58,117,105,40,116,45,49,41,43,49,41,47,50,125,44,116,46,101,97,115,101,66,111,117,110,99,101,79,117,116,61,117,105,44,116,46,101,97,115,101,67,105,114,99,108,101,61,90,114,44,116,46,101,97,115,101,67,105,114,99,108,101,73,110,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,49,45,77,97,116,104,46,115,113,114,116,40,49,45,116,42,116,41,125,44,116,46,101,97,115,101,67,105,114,99,108,101,73,110,79,117,116,61,90,114,44,116,46,101,97,115,101,67,105,114,99,108,101,79,117,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,77,97,116,104,46,115,113,114,116,40,49,45,32,45,45,116,42,116,41,125,44,116,46,101,97,115,101,67,117,98,105,99,61,73,114,44,116,46,101,97,115,101,67,117,98,105,99,73,110,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,42,116,42,116,125,44,116,46,101,97,115,101,67,117,98,105,99,73,110,79,117,116,61,73,114,44,116,46,101,97,115,101,67,117,98,105,99,79,117,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,45,45,116,42,116,42,116,43,49,125,44,116,46,101,97,115,101,69,108,97,115,116,105,99,61,100,105,44,116,46,101,97,115,101,69,108,97,115,116,105,99,73,110,61,104,105,44,116,46,101,97,115,101,69,108,97,115,116,105,99,73,110,79,117,116,61,112,105,44,116,46,101,97,115,101,69,108,97,115,116,105,99,79,117,116,61,100,105,44,116,46,101,97,115,101,69,120,112,61,87,114,44,116,46,101,97,115,101,69,120,112,73,110,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,77,97,116,104,46,112,111,119,40,50,44,49,48,42,116,45,49,48,41,125,44,116,46,101,97,115,101,69,120,112,73,110,79,117,116,61,87,114,44,116,46,101,97,115,101,69,120,112,79,117,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,49,45,77,97,116,104,46,112,111,119,40,50,44,45,49,48,42,116,41,125,44,116,46,101,97,115,101,76,105,110,101,97,114,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,43,116,125,44,116,46,101,97,115,101,80,111,108,121,61,88,114,44,116,46,101,97,115,101,80,111,108,121,73,110,61,72,114,44,116,46,101,97,115,101,80,111,108,121,73,110,79,117,116,61,88,114,44,116,46,101,97,115,101,80,111,108,121,79,117,116,61,106,114,44,116,46,101,97,115,101,81,117,97,100,61,89,114,44,116,46,101,97,115,101,81,117,97,100,73,110,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,42,116,125,44,116,46,101,97,115,101,81,117,97,100,73,110,79,117,116,61,89,114,44,116,46,101,97,115,101,81,117,97,100,79,117,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,42,40,50,45,116,41,125,44,116,46,101,97,115,101,83,105,110,61,36,114,44,116,46,101,97,115,101,83,105,110,73,110,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,49,45,77,97,116,104,46,99,111,115,40,116,42,71,114,41,125,44,116,46,101,97,115,101,83,105,110,73,110,79,117,116,61,36,114,44,116,46,101,97,115,101,83,105,110,79,117,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,77,97,116,104,46,115,105,110,40,116,42,71,114,41,125,44,116,46,101,110,116,114,105,101,115,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,91,93,59,102,111,114,40,118,97,114,32,101,32,105,110,32,116,41,110,46,112,117,115,104,40,123,107,101,121,58,101,44,118,97,108,117,101,58,116,91,101,93,125,41,59,114,101,116,117,114,110,32,110,125,44,116,46,101,120,116,101,110,116,61,115,44,116,46,102,111,114,99,101,67,101,110,116,101,114,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,59,102,117,110,99,116,105,111,110,32,114,40,41,123,118,97,114,32,114,44,105,44,111,61,101,46,108,101,110,103,116,104,44,97,61,48,44,117,61,48,59,102,111,114,40,114,61,48,59,114,60,111,59,43,43,114,41,97,43,61,40,105,61,101,91,114,93,41,46,120,44,117,43,61,105,46,121,59,102,111,114,40,97,61,97,47,111,45,116,44,117,61,117,47,111,45,110,44,114,61,48,59,114,60,111,59,43,43,114,41,40,105,61,101,91,114,93,41,46,120,45,61,97,44,105,46,121,45,61,117,125,114,101,116,117,114,110,32,110,117,108,108,61,61,116,38,38,40,116,61,48,41,44,110,117,108,108,61,61,110,38,38,40,110,61,48,41,44,114,46,105,110,105,116,105,97,108,105,122,101,61,102,117,110,99,116,105,111,110,40,116,41,123,101,61,116,125,44,114,46,120,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,116,61,43,110,44,114,41,58,116,125,44,114,46,121,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,110,61,43,116,44,114,41,58,110,125,44,114,125,44,116,46,102,111,114,99,101,67,111,108,108,105,100,101,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,44,101,44,114,61,49,44,105,61,49,59,102,117,110,99,116,105,111,110,32,111,40,41,123,102,111,114,40,118,97,114,32,116,44,111,44,117,44,99,44,102,44,115,44,108,44,104,61,110,46,108,101,110,103,116,104,44,100,61,48,59,100,60,105,59,43,43,100,41,102,111,114,40,111,61,119,97,40,110,44,65,97,44,83,97,41,46,118,105,115,105,116,65,102,116,101,114,40,97,41,44,116,61,48,59,116,60,104,59,43,43,116,41,117,61,110,91,116,93,44,115,61,101,91,117,46,105,110,100,101,120,93,44,108,61,115,42,115,44,99,61,117,46,120,43,117,46,118,120,44,102,61,117,46,121,43,117,46,118,121,44,111,46,118,105,115,105,116,40,112,41,59,102,117,110,99,116,105,111,110,32,112,40,116,44,110,44,101,44,105,44,111,41,123,118,97,114,32,97,61,116,46,100,97,116,97,44,104,61,116,46,114,44,100,61,115,43,104,59,105,102,40,33,97,41,114,101,116,117,114,110,32,110,62,99,43,100,124,124,105,60,99,45,100,124,124,101,62,102,43,100,124,124,111,60,102,45,100,59,105,102,40,97,46,105,110,100,101,120,62,117,46,105,110,100,101,120,41,123,118,97,114,32,112,61,99,45,97,46,120,45,97,46,118,120,44,118,61,102,45,97,46,121,45,97,46,118,121,44,103,61,112,42,112,43,118,42,118,59,103,60,100,42,100,38,38,40,48,61,61,61,112,38,38,40,103,43,61,40,112,61,121,97,40,41,41,42,112,41,44,48,61,61,61,118,38,38,40,103,43,61,40,118,61,121,97,40,41,41,42,118,41,44,103,61,40,100,45,40,103,61,77,97,116,104,46,115,113,114,116,40,103,41,41,41,47,103,42,114,44,117,46,118,120,43,61,40,112,42,61,103,41,42,40,100,61,40,104,42,61,104,41,47,40,108,43,104,41,41,44,117,46,118,121,43,61,40,118,42,61,103,41,42,100,44,97,46,118,120,45,61,112,42,40,100,61,49,45,100,41,44,97,46,118,121,45,61,118,42,100,41,125,125,125,102,117,110,99,116,105,111,110,32,97,40,116,41,123,105,102,40,116,46,100,97,116,97,41,114,101,116,117,114,110,32,116,46,114,61,101,91,116,46,100,97,116,97,46,105,110,100,101,120,93,59,102,111,114,40,118,97,114,32,110,61,116,46,114,61,48,59,110,60,52,59,43,43,110,41,116,91,110,93,38,38,116,91,110,93,46,114,62,116,46,114,38,38,40,116,46,114,61,116,91,110,93,46,114,41,125,102,117,110,99,116,105,111,110,32,117,40,41,123,105,102,40,110,41,123,118,97,114,32,114,44,105,44,111,61,110,46,108,101,110,103,116,104,59,102,111,114,40,101,61,110,101,119,32,65,114,114,97,121,40,111,41,44,114,61,48,59,114,60,111,59,43,43,114,41,105,61,110,91,114,93,44,101,91,105,46,105,110,100,101,120,93,61,43,116,40,105,44,114,44,110,41,125,125,114,101,116,117,114,110,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,116,38,38,40,116,61,103,97,40,110,117,108,108,61,61,116,63,49,58,43,116,41,41,44,111,46,105,110,105,116,105,97,108,105,122,101,61,102,117,110,99,116,105,111,110,40,116,41,123,110,61,116,44,117,40,41,125,44,111,46,105,116,101,114,97,116,105,111,110,115,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,105,61,43,116,44,111,41,58,105,125,44,111,46,115,116,114,101,110,103,116,104,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,114,61,43,116,44,111,41,58,114,125,44,111,46,114,97,100,105,117,115,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,116,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,110,63,110,58,103,97,40,43,110,41,44,117,40,41,44,111,41,58,116,125,44,111,125,44,116,46,102,111,114,99,101,76,105,110,107,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,44,101,44,114,44,105,44,111,44,97,61,107,97,44,117,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,49,47,77,97,116,104,46,109,105,110,40,105,91,116,46,115,111,117,114,99,101,46,105,110,100,101,120,93,44,105,91,116,46,116,97,114,103,101,116,46,105,110,100,101,120,93,41,125,44,99,61,103,97,40,51,48,41,44,102,61,49,59,102,117,110,99,116,105,111,110,32,115,40,114,41,123,102,111,114,40,118,97,114,32,105,61,48,44,97,61,116,46,108,101,110,103,116,104,59,105,60,102,59,43,43,105,41,102,111,114,40,118,97,114,32,117,44,99,44,115,44,108,44,104,44,100,44,112,44,118,61,48,59,118,60,97,59,43,43,118,41,99,61,40,117,61,116,91,118,93,41,46,115,111,117,114,99,101,44,108,61,40,115,61,117,46,116,97,114,103,101,116,41,46,120,43,115,46,118,120,45,99,46,120,45,99,46,118,120,124,124,121,97,40,41,44,104,61,115,46,121,43,115,46,118,121,45,99,46,121,45,99,46,118,121,124,124,121,97,40,41,44,108,42,61,100,61,40,40,100,61,77,97,116,104,46,115,113,114,116,40,108,42,108,43,104,42,104,41,41,45,101,91,118,93,41,47,100,42,114,42,110,91,118,93,44,104,42,61,100,44,115,46,118,120,45,61,108,42,40,112,61,111,91,118,93,41,44,115,46,118,121,45,61,104,42,112,44,99,46,118,120,43,61,108,42,40,112,61,49,45,112,41,44,99,46,118,121,43,61,104,42,112,125,102,117,110,99,116,105,111,110,32,108,40,41,123,105,102,40,114,41,123,118,97,114,32,117,44,99,44,102,61,114,46,108,101,110,103,116,104,44,115,61,116,46,108,101,110,103,116,104,44,108,61,99,111,40,114,44,97,41,59,102,111,114,40,117,61,48,44,105,61,110,101,119,32,65,114,114,97,121,40,102,41,59,117,60,115,59,43,43,117,41,40,99,61,116,91,117,93,41,46,105,110,100,101,120,61,117,44,34,111,98,106,101,99,116,34,33,61,116,121,112,101,111,102,32,99,46,115,111,117,114,99,101,38,38,40,99,46,115,111,117,114,99,101,61,69,97,40,108,44,99,46,115,111,117,114,99,101,41,41,44,34,111,98,106,101,99,116,34,33,61,116,121,112,101,111,102,32,99,46,116,97,114,103,101,116,38,38,40,99,46,116,97,114,103,101,116,61,69,97,40,108,44,99,46,116,97,114,103,101,116,41,41,44,105,91,99,46,115,111,117,114,99,101,46,105,110,100,101,120,93,61,40,105,91,99,46,115,111,117,114,99,101,46,105,110,100,101,120,93,124,124,48,41,43,49,44,105,91,99,46,116,97,114,103,101,116,46,105,110,100,101,120,93,61,40,105,91,99,46,116,97,114,103,101,116,46,105,110,100,101,120,93,124,124,48,41,43,49,59,102,111,114,40,117,61,48,44,111,61,110,101,119,32,65,114,114,97,121,40,115,41,59,117,60,115,59,43,43,117,41,99,61,116,91,117,93,44,111,91,117,93,61,105,91,99,46,115,111,117,114,99,101,46,105,110,100,101,120,93,47,40,105,91,99,46,115,111,117,114,99,101,46,105,110,100,101,120,93,43,105,91,99,46,116,97,114,103,101,116,46,105,110,100,101,120,93,41,59,110,61,110,101,119,32,65,114,114,97,121,40,115,41,44,104,40,41,44,101,61,110,101,119,32,65,114,114,97,121,40,115,41,44,100,40,41,125,125,102,117,110,99,116,105,111,110,32,104,40,41,123,105,102,40,114,41,102,111,114,40,118,97,114,32,101,61,48,44,105,61,116,46,108,101,110,103,116,104,59,101,60,105,59,43,43,101,41,110,91,101,93,61,43,117,40,116,91,101,93,44,101,44,116,41,125,102,117,110,99,116,105,111,110,32,100,40,41,123,105,102,40,114,41,102,111,114,40,118,97,114,32,110,61,48,44,105,61,116,46,108,101,110,103,116,104,59,110,60,105,59,43,43,110,41,101,91,110,93,61,43,99,40,116,91,110,93,44,110,44,116,41,125,114,101,116,117,114,110,32,110,117,108,108,61,61,116,38,38,40,116,61,91,93,41,44,115,46,105,110,105,116,105,97,108,105,122,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,61,116,44,108,40,41,125,44,115,46,108,105,110,107,115,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,116,61,110,44,108,40,41,44,115,41,58,116,125,44,115,46,105,100,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,97,61,116,44,115,41,58,97,125,44,115,46,105,116,101,114,97,116,105,111,110,115,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,102,61,43,116,44,115,41,58,102,125,44,115,46,115,116,114,101,110,103,116,104,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,117,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,103,97,40,43,116,41,44,104,40,41,44,115,41,58,117,125,44,115,46,100,105,115,116,97,110,99,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,99,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,103,97,40,43,116,41,44,100,40,41,44,115,41,58,99,125,44,115,125,44,116,46,102,111,114,99,101,77,97,110,121,66,111,100,121,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,44,110,44,101,44,114,44,105,61,103,97,40,45,51,48,41,44,111,61,49,44,97,61,49,47,48,44,117,61,46,56,49,59,102,117,110,99,116,105,111,110,32,99,40,114,41,123,118,97,114,32,105,44,111,61,116,46,108,101,110,103,116,104,44,97,61,119,97,40,116,44,67,97,44,80,97,41,46,118,105,115,105,116,65,102,116,101,114,40,115,41,59,102,111,114,40,101,61,114,44,105,61,48,59,105,60,111,59,43,43,105,41,110,61,116,91,105,93,44,97,46,118,105,115,105,116,40,108,41,125,102,117,110,99,116,105,111,110,32,102,40,41,123,105,102,40,116,41,123,118,97,114,32,110,44,101,44,111,61,116,46,108,101,110,103,116,104,59,102,111,114,40,114,61,110,101,119,32,65,114,114,97,121,40,111,41,44,110,61,48,59,110,60,111,59,43,43,110,41,101,61,116,91,110,93,44,114,91,101,46,105,110,100,101,120,93,61,43,105,40,101,44,110,44,116,41,125,125,102,117,110,99,116,105,111,110,32,115,40,116,41,123,118,97,114,32,110,44,101,44,105,44,111,44,97,44,117,61,48,44,99,61,48,59,105,102,40,116,46,108,101,110,103,116,104,41,123,102,111,114,40,105,61,111,61,97,61,48,59,97,60,52,59,43,43,97,41,40,110,61,116,91,97,93,41,38,38,40,101,61,77,97,116,104,46,97,98,115,40,110,46,118,97,108,117,101,41,41,38,38,40,117,43,61,110,46,118,97,108,117,101,44,99,43,61,101,44,105,43,61,101,42,110,46,120,44,111,43,61,101,42,110,46,121,41,59,116,46,120,61,105,47,99,44,116,46,121,61,111,47,99,125,101,108,115,101,123,40,110,61,116,41,46,120,61,110,46,100,97,116,97,46,120,44,110,46,121,61,110,46,100,97,116,97,46,121,59,100,111,123,117,43,61,114,91,110,46,100,97,116,97,46,105,110,100,101,120,93,125,119,104,105,108,101,40,110,61,110,46,110,101,120,116,41,125,116,46,118,97,108,117,101,61,117,125,102,117,110,99,116,105,111,110,32,108,40,116,44,105,44,99,44,102,41,123,105,102,40,33,116,46,118,97,108,117,101,41,114,101,116,117,114,110,33,48,59,118,97,114,32,115,61,116,46,120,45,110,46,120,44,108,61,116,46,121,45,110,46,121,44,104,61,102,45,105,44,100,61,115,42,115,43,108,42,108,59,105,102,40,104,42,104,47,117,60,100,41,114,101,116,117,114,110,32,100,60,97,38,38,40,48,61,61,61,115,38,38,40,100,43,61,40,115,61,121,97,40,41,41,42,115,41,44,48,61,61,61,108,38,38,40,100,43,61,40,108,61,121,97,40,41,41,42,108,41,44,100,60,111,38,38,40,100,61,77,97,116,104,46,115,113,114,116,40,111,42,100,41,41,44,110,46,118,120,43,61,115,42,116,46,118,97,108,117,101,42,101,47,100,44,110,46,118,121,43,61,108,42,116,46,118,97,108,117,101,42,101,47,100,41,44,33,48,59,105,102,40,33,40,116,46,108,101,110,103,116,104,124,124,100,62,61,97,41,41,123,40,116,46,100,97,116,97,33,61,61,110,124,124,116,46,110,101,120,116,41,38,38,40,48,61,61,61,115,38,38,40,100,43,61,40,115,61,121,97,40,41,41,42,115,41,44,48,61,61,61,108,38,38,40,100,43,61,40,108,61,121,97,40,41,41,42,108,41,44,100,60,111,38,38,40,100,61,77,97,116,104,46,115,113,114,116,40,111,42,100,41,41,41,59,100,111,123,116,46,100,97,116,97,33,61,61,110,38,38,40,104,61,114,91,116,46,100,97,116,97,46,105,110,100,101,120,93,42,101,47,100,44,110,46,118,120,43,61,115,42,104,44,110,46,118,121,43,61,108,42,104,41,125,119,104,105,108,101,40,116,61,116,46,110,101,120,116,41,125,125,114,101,116,117,114,110,32,99,46,105,110,105,116,105,97,108,105,122,101,61,102,117,110,99,116,105,111,110,40,110,41,123,116,61,110,44,102,40,41,125,44,99,46,115,116,114,101,110,103,116,104,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,105,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,103,97,40,43,116,41,44,102,40,41,44,99,41,58,105,125,44,99,46,100,105,115,116,97,110,99,101,77,105,110,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,111,61,116,42,116,44,99,41,58,77,97,116,104,46,115,113,114,116,40,111,41,125,44,99,46,100,105,115,116,97,110,99,101,77,97,120,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,97,61,116,42,116,44,99,41,58,77,97,116,104,46,115,113,114,116,40,97,41,125,44,99,46,116,104,101,116,97,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,117,61,116,42,116,44,99,41,58,77,97,116,104,46,115,113,114,116,40,117,41,125,44,99,125,44,116,46,102,111,114,99,101,82,97,100,105,97,108,61,102,117,110,99,116,105,111,110,40,116,44,110,44,101,41,123,118,97,114,32,114,44,105,44,111,44,97,61,103,97,40,46,49,41,59,102,117,110,99,116,105,111,110,32,117,40,116,41,123,102,111,114,40,118,97,114,32,97,61,48,44,117,61,114,46,108,101,110,103,116,104,59,97,60,117,59,43,43,97,41,123,118,97,114,32,99,61,114,91,97,93,44,102,61,99,46,120,45,110,124,124,49,101,45,54,44,115,61,99,46,121,45,101,124,124,49,101,45,54,44,108,61,77,97,116,104,46,115,113,114,116,40,102,42,102,43,115,42,115,41,44,104,61,40,111,91,97,93,45,108,41,42,105,91,97,93,42,116,47,108,59,99,46,118,120,43,61,102,42,104,44,99,46,118,121,43,61,115,42,104,125,125,102,117,110,99,116,105,111,110,32,99,40,41,123,105,102,40,114,41,123,118,97,114,32,110,44,101,61,114,46,108,101,110,103,116,104,59,102,111,114,40,105,61,110,101,119,32,65,114,114,97,121,40,101,41,44,111,61,110,101,119,32,65,114,114,97,121,40,101,41,44,110,61,48,59,110,60,101,59,43,43,110,41,111,91,110,93,61,43,116,40,114,91,110,93,44,110,44,114,41,44,105,91,110,93,61,105,115,78,97,78,40,111,91,110,93,41,63,48,58,43,97,40,114,91,110,93,44,110,44,114,41,125,125,114,101,116,117,114,110,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,116,38,38,40,116,61,103,97,40,43,116,41,41,44,110,117,108,108,61,61,110,38,38,40,110,61,48,41,44,110,117,108,108,61,61,101,38,38,40,101,61,48,41,44,117,46,105,110,105,116,105,97,108,105,122,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,61,116,44,99,40,41,125,44,117,46,115,116,114,101,110,103,116,104,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,97,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,103,97,40,43,116,41,44,99,40,41,44,117,41,58,97,125,44,117,46,114,97,100,105,117,115,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,116,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,110,63,110,58,103,97,40,43,110,41,44,99,40,41,44,117,41,58,116,125,44,117,46,120,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,110,61,43,116,44,117,41,58,110,125,44,117,46,121,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,101,61,43,116,44,117,41,58,101,125,44,117,125,44,116,46,102,111,114,99,101,83,105,109,117,108,97,116,105,111,110,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,44,101,61,49,44,114,61,46,48,48,49,44,105,61,49,45,77,97,116,104,46,112,111,119,40,114,44,49,47,51,48,48,41,44,111,61,48,44,97,61,46,54,44,117,61,99,111,40,41,44,99,61,104,114,40,115,41,44,102,61,73,40,34,116,105,99,107,34,44,34,101,110,100,34,41,59,102,117,110,99,116,105,111,110,32,115,40,41,123,108,40,41,44,102,46,99,97,108,108,40,34,116,105,99,107,34,44,110,41,44,101,60,114,38,38,40,99,46,115,116,111,112,40,41,44,102,46,99,97,108,108,40,34,101,110,100,34,44,110,41,41,125,102,117,110,99,116,105,111,110,32,108,40,114,41,123,118,97,114,32,99,44,102,44,115,61,116,46,108,101,110,103,116,104,59,118,111,105,100,32,48,61,61,61,114,38,38,40,114,61,49,41,59,102,111,114,40,118,97,114,32,108,61,48,59,108,60,114,59,43,43,108,41,102,111,114,40,101,43,61,40,111,45,101,41,42,105,44,117,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,116,41,123,116,40,101,41,125,41,44,99,61,48,59,99,60,115,59,43,43,99,41,110,117,108,108,61,61,40,102,61,116,91,99,93,41,46,102,120,63,102,46,120,43,61,102,46,118,120,42,61,97,58,40,102,46,120,61,102,46,102,120,44,102,46,118,120,61,48,41,44,110,117,108,108,61,61,102,46,102,121,63,102,46,121,43,61,102,46,118,121,42,61,97,58,40,102,46,121,61,102,46,102,121,44,102,46,118,121,61,48,41,59,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,104,40,41,123,102,111,114,40,118,97,114,32,110,44,101,61,48,44,114,61,116,46,108,101,110,103,116,104,59,101,60,114,59,43,43,101,41,123,105,102,40,40,110,61,116,91,101,93,41,46,105,110,100,101,120,61,101,44,110,117,108,108,33,61,110,46,102,120,38,38,40,110,46,120,61,110,46,102,120,41,44,110,117,108,108,33,61,110,46,102,121,38,38,40,110,46,121,61,110,46,102,121,41,44,105,115,78,97,78,40,110,46,120,41,124,124,105,115,78,97,78,40,110,46,121,41,41,123,118,97,114,32,105,61,122,97,42,77,97,116,104,46,115,113,114,116,40,101,41,44,111,61,101,42,82,97,59,110,46,120,61,105,42,77,97,116,104,46,99,111,115,40,111,41,44,110,46,121,61,105,42,77,97,116,104,46,115,105,110,40,111,41,125,40,105,115,78,97,78,40,110,46,118,120,41,124,124,105,115,78,97,78,40,110,46,118,121,41,41,38,38,40,110,46,118,120,61,110,46,118,121,61,48,41,125,125,102,117,110,99,116,105,111,110,32,100,40,110,41,123,114,101,116,117,114,110,32,110,46,105,110,105,116,105,97,108,105,122,101,38,38,110,46,105,110,105,116,105,97,108,105,122,101,40,116,41,44,110,125,114,101,116,117,114,110,32,110,117,108,108,61,61,116,38,38,40,116,61,91,93,41,44,104,40,41,44,110,61,123,116,105,99,107,58,108,44,114,101,115,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,99,46,114,101,115,116,97,114,116,40,115,41,44,110,125,44,115,116,111,112,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,99,46,115,116,111,112,40,41,44,110,125,44,110,111,100,101,115,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,116,61,101,44,104,40,41,44,117,46,101,97,99,104,40,100,41,44,110,41,58,116,125,44,97,108,112,104,97,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,101,61,43,116,44,110,41,58,101,125,44,97,108,112,104,97,77,105,110,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,114,61,43,116,44,110,41,58,114,125,44,97,108,112,104,97,68,101,99,97,121,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,105,61,43,116,44,110,41,58,43,105,125,44,97,108,112,104,97,84,97,114,103,101,116,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,111,61,43,116,44,110,41,58,111,125,44,118,101,108,111,99,105,116,121,68,101,99,97,121,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,97,61,49,45,116,44,110,41,58,49,45,97,125,44,102,111,114,99,101,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,62,49,63,40,110,117,108,108,61,61,101,63,117,46,114,101,109,111,118,101,40,116,41,58,117,46,115,101,116,40,116,44,100,40,101,41,41,44,110,41,58,117,46,103,101,116,40,116,41,125,44,102,105,110,100,58,102,117,110,99,116,105,111,110,40,110,44,101,44,114,41,123,118,97,114,32,105,44,111,44,97,44,117,44,99,44,102,61,48,44,115,61,116,46,108,101,110,103,116,104,59,102,111,114,40,110,117,108,108,61,61,114,63,114,61,49,47,48,58,114,42,61,114,44,102,61,48,59,102,60,115,59,43,43,102,41,40,97,61,40,105,61,110,45,40,117,61,116,91,102,93,41,46,120,41,42,105,43,40,111,61,101,45,117,46,121,41,42,111,41,60,114,38,38,40,99,61,117,44,114,61,97,41,59,114,101,116,117,114,110,32,99,125,44,111,110,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,62,49,63,40,102,46,111,110,40,116,44,101,41,44,110,41,58,102,46,111,110,40,116,41,125,125,125,44,116,46,102,111,114,99,101,88,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,44,101,44,114,44,105,61,103,97,40,46,49,41,59,102,117,110,99,116,105,111,110,32,111,40,116,41,123,102,111,114,40,118,97,114,32,105,44,111,61,48,44,97,61,110,46,108,101,110,103,116,104,59,111,60,97,59,43,43,111,41,40,105,61,110,91,111,93,41,46,118,120,43,61,40,114,91,111,93,45,105,46,120,41,42,101,91,111,93,42,116,125,102,117,110,99,116,105,111,110,32,97,40,41,123,105,102,40,110,41,123,118,97,114,32,111,44,97,61,110,46,108,101,110,103,116,104,59,102,111,114,40,101,61,110,101,119,32,65,114,114,97,121,40,97,41,44,114,61,110,101,119,32,65,114,114,97,121,40,97,41,44,111,61,48,59,111,60,97,59,43,43,111,41,101,91,111,93,61,105,115,78,97,78,40,114,91,111,93,61,43,116,40,110,91,111,93,44,111,44,110,41,41,63,48,58,43,105,40,110,91,111,93,44,111,44,110,41,125,125,114,101,116,117,114,110,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,116,38,38,40,116,61,103,97,40,110,117,108,108,61,61,116,63,48,58,43,116,41,41,44,111,46,105,110,105,116,105,97,108,105,122,101,61,102,117,110,99,116,105,111,110,40,116,41,123,110,61,116,44,97,40,41,125,44,111,46,115,116,114,101,110,103,116,104,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,105,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,103,97,40,43,116,41,44,97,40,41,44,111,41,58,105,125,44,111,46,120,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,116,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,110,63,110,58,103,97,40,43,110,41,44,97,40,41,44,111,41,58,116,125,44,111,125,44,116,46,102,111,114,99,101,89,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,44,101,44,114,44,105,61,103,97,40,46,49,41,59,102,117,110,99,116,105,111,110,32,111,40,116,41,123,102,111,114,40,118,97,114,32,105,44,111,61,48,44,97,61,110,46,108,101,110,103,116,104,59,111,60,97,59,43,43,111,41,40,105,61,110,91,111,93,41,46,118,121,43,61,40,114,91,111,93,45,105,46,121,41,42,101,91,111,93,42,116,125,102,117,110,99,116,105,111,110,32,97,40,41,123,105,102,40,110,41,123,118,97,114,32,111,44,97,61,110,46,108,101,110,103,116,104,59,102,111,114,40,101,61,110,101,119,32,65,114,114,97,121,40,97,41,44,114,61,110,101,119,32,65,114,114,97,121,40,97,41,44,111,61,48,59,111,60,97,59,43,43,111,41,101,91,111,93,61,105,115,78,97,78,40,114,91,111,93,61,43,116,40,110,91,111,93,44,111,44,110,41,41,63,48,58,43,105,40,110,91,111,93,44,111,44,110,41,125,125,114,101,116,117,114,110,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,116,38,38,40,116,61,103,97,40,110,117,108,108,61,61,116,63,48,58,43,116,41,41,44,111,46,105,110,105,116,105,97,108,105,122,101,61,102,117,110,99,116,105,111,110,40,116,41,123,110,61,116,44,97,40,41,125,44,111,46,115,116,114,101,110,103,116,104,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,105,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,103,97,40,43,116,41,44,97,40,41,44,111,41,58,105,125,44,111,46,121,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,116,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,110,63,110,58,103,97,40,43,110,41,44,97,40,41,44,111,41,58,116,125,44,111,125,44,116,46,102,111,114,109,97,116,68,101,102,97,117,108,116,76,111,99,97,108,101,61,71,97,44,116,46,102,111,114,109,97,116,76,111,99,97,108,101,61,86,97,44,116,46,102,111,114,109,97,116,83,112,101,99,105,102,105,101,114,61,79,97,44,116,46,103,101,111,65,108,98,101,114,115,61,101,108,44,116,46,103,101,111,65,108,98,101,114,115,85,115,97,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,44,110,44,101,44,114,44,105,44,111,44,97,61,101,108,40,41,44,117,61,110,108,40,41,46,114,111,116,97,116,101,40,91,49,53,52,44,48,93,41,46,99,101,110,116,101,114,40,91,45,50,44,53,56,46,53,93,41,46,112,97,114,97,108,108,101,108,115,40,91,53,53,44,54,53,93,41,44,99,61,110,108,40,41,46,114,111,116,97,116,101,40,91,49,53,55,44,48,93,41,46,99,101,110,116,101,114,40,91,45,51,44,49,57,46,57,93,41,46,112,97,114,97,108,108,101,108,115,40,91,56,44,49,56,93,41,44,102,61,123,112,111,105,110,116,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,111,61,91,116,44,110,93,125,125,59,102,117,110,99,116,105,111,110,32,115,40,116,41,123,118,97,114,32,110,61,116,91,48,93,44,97,61,116,91,49,93,59,114,101,116,117,114,110,32,111,61,110,117,108,108,44,101,46,112,111,105,110,116,40,110,44,97,41,44,111,124,124,40,114,46,112,111,105,110,116,40,110,44,97,41,44,111,41,124,124,40,105,46,112,111,105,110,116,40,110,44,97,41,44,111,41,125,102,117,110,99,116,105,111,110,32,108,40,41,123,114,101,116,117,114,110,32,116,61,110,61,110,117,108,108,44,115,125,114,101,116,117,114,110,32,115,46,105,110,118,101,114,116,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,97,46,115,99,97,108,101,40,41,44,101,61,97,46,116,114,97,110,115,108,97,116,101,40,41,44,114,61,40,116,91,48,93,45,101,91,48,93,41,47,110,44,105,61,40,116,91,49,93,45,101,91,49,93,41,47,110,59,114,101,116,117,114,110,40,105,62,61,46,49,50,38,38,105,60,46,50,51,52,38,38,114,62,61,45,46,52,50,53,38,38,114,60,45,46,50,49,52,63,117,58,105,62,61,46,49,54,54,38,38,105,60,46,50,51,52,38,38,114,62,61,45,46,50,49,52,38,38,114,60,45,46,49,49,53,63,99,58,97,41,46,105,110,118,101,114,116,40,116,41,125,44,115,46,115,116,114,101,97,109,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,38,38,110,61,61,61,101,63,116,58,40,114,61,91,97,46,115,116,114,101,97,109,40,110,61,101,41,44,117,46,115,116,114,101,97,109,40,101,41,44,99,46,115,116,114,101,97,109,40,101,41,93,44,105,61,114,46,108,101,110,103,116,104,44,116,61,123,112,111,105,110,116,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,102,111,114,40,118,97,114,32,101,61,45,49,59,43,43,101,60,105,59,41,114,91,101,93,46,112,111,105,110,116,40,116,44,110,41,125,44,115,112,104,101,114,101,58,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,118,97,114,32,116,61,45,49,59,43,43,116,60,105,59,41,114,91,116,93,46,115,112,104,101,114,101,40,41,125,44,108,105,110,101,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,118,97,114,32,116,61,45,49,59,43,43,116,60,105,59,41,114,91,116,93,46,108,105,110,101,83,116,97,114,116,40,41,125,44,108,105,110,101,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,118,97,114,32,116,61,45,49,59,43,43,116,60,105,59,41,114,91,116,93,46,108,105,110,101,69,110,100,40,41,125,44,112,111,108,121,103,111,110,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,118,97,114,32,116,61,45,49,59,43,43,116,60,105,59,41,114,91,116,93,46,112,111,108,121,103,111,110,83,116,97,114,116,40,41,125,44,112,111,108,121,103,111,110,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,118,97,114,32,116,61,45,49,59,43,43,116,60,105,59,41,114,91,116,93,46,112,111,108,121,103,111,110,69,110,100,40,41,125,125,41,59,118,97,114,32,114,44,105,125,44,115,46,112,114,101,99,105,115,105,111,110,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,97,46,112,114,101,99,105,115,105,111,110,40,116,41,44,117,46,112,114,101,99,105,115,105,111,110,40,116,41,44,99,46,112,114,101,99,105,115,105,111,110,40,116,41,44,108,40,41,41,58,97,46,112,114,101,99,105,115,105,111,110,40,41,125,44,115,46,115,99,97,108,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,97,46,115,99,97,108,101,40,116,41,44,117,46,115,99,97,108,101,40,46,51,53,42,116,41,44,99,46,115,99,97,108,101,40,116,41,44,115,46,116,114,97,110,115,108,97,116,101,40,97,46,116,114,97,110,115,108,97,116,101,40,41,41,41,58,97,46,115,99,97,108,101,40,41,125,44,115,46,116,114,97,110,115,108,97,116,101,61,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,33,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,114,101,116,117,114,110,32,97,46,116,114,97,110,115,108,97,116,101,40,41,59,118,97,114,32,110,61,97,46,115,99,97,108,101,40,41,44,111,61,43,116,91,48,93,44,115,61,43,116,91,49,93,59,114,101,116,117,114,110,32,101,61,97,46,116,114,97,110,115,108,97,116,101,40,116,41,46,99,108,105,112,69,120,116,101,110,116,40,91,91,111,45,46,52,53,53,42,110,44,115,45,46,50,51,56,42,110,93,44,91,111,43,46,52,53,53,42,110,44,115,43,46,50,51,56,42,110,93,93,41,46,115,116,114,101,97,109,40,102,41,44,114,61,117,46,116,114,97,110,115,108,97,116,101,40,91,111,45,46,51,48,55,42,110,44,115,43,46,50,48,49,42,110,93,41,46,99,108,105,112,69,120,116,101,110,116,40,91,91,111,45,46,52,50,53,42,110,43,110,117,44,115,43,46,49,50,42,110,43,110,117,93,44,91,111,45,46,50,49,52,42,110,45,110,117,44,115,43,46,50,51,52,42,110,45,110,117,93,93,41,46,115,116,114,101,97,109,40,102,41,44,105,61,99,46,116,114,97,110,115,108,97,116,101,40,91,111,45,46,50,48,53,42,110,44,115,43,46,50,49,50,42,110,93,41,46,99,108,105,112,69,120,116,101,110,116,40,91,91,111,45,46,50,49,52,42,110,43,110,117,44,115,43,46,49,54,54,42,110,43,110,117,93,44,91,111,45,46,49,49,53,42,110,45,110,117,44,115,43,46,50,51,52,42,110,45,110,117,93,93,41,46,115,116,114,101,97,109,40,102,41,44,108,40,41,125,44,115,46,102,105,116,69,120,116,101,110,116,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,73,115,40,115,44,116,44,110,41,125,44,115,46,102,105,116,83,105,122,101,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,72,115,40,115,44,116,44,110,41,125,44,115,46,102,105,116,87,105,100,116,104,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,106,115,40,115,44,116,44,110,41,125,44,115,46,102,105,116,72,101,105,103,104,116,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,88,115,40,115,44,116,44,110,41,125,44,115,46,115,99,97,108,101,40,49,48,55,48,41,125,44,116,46,103,101,111,65,114,101,97,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,85,117,46,114,101,115,101,116,40,41,44,67,117,40,116,44,79,117,41,44,50,42,85,117,125,44,116,46,103,101,111,65,122,105,109,117,116,104,97,108,69,113,117,97,108,65,114,101,97,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,81,115,40,111,108,41,46,115,99,97,108,101,40,49,50,52,46,55,53,41,46,99,108,105,112,65,110,103,108,101,40,49,55,57,46,57,57,57,41,125,44,116,46,103,101,111,65,122,105,109,117,116,104,97,108,69,113,117,97,108,65,114,101,97,82,97,119,61,111,108,44,116,46,103,101,111,65,122,105,109,117,116,104,97,108,69,113,117,105,100,105,115,116,97,110,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,81,115,40,97,108,41,46,115,99,97,108,101,40,55,57,46,52,49,56,56,41,46,99,108,105,112,65,110,103,108,101,40,49,55,57,46,57,57,57,41,125,44,116,46,103,101,111,65,122,105,109,117,116,104,97,108,69,113,117,105,100,105,115,116,97,110,116,82,97,119,61,97,108,44,116,46,103,101,111,66,111,117,110,100,115,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,44,101,44,114,44,105,44,111,44,97,44,117,59,105,102,40,74,117,61,75,117,61,45,40,90,117,61,81,117,61,49,47,48,41,44,105,99,61,91,93,44,67,117,40,116,44,77,99,41,44,101,61,105,99,46,108,101,110,103,116,104,41,123,102,111,114,40,105,99,46,115,111,114,116,40,122,99,41,44,110,61,49,44,111,61,91,114,61,105,99,91,48,93,93,59,110,60,101,59,43,43,110,41,82,99,40,114,44,40,105,61,105,99,91,110,93,41,91,48,93,41,124,124,82,99,40,114,44,105,91,49,93,41,63,40,80,99,40,114,91,48,93,44,105,91,49,93,41,62,80,99,40,114,91,48,93,44,114,91,49,93,41,38,38,40,114,91,49,93,61,105,91,49,93,41,44,80,99,40,105,91,48,93,44,114,91,49,93,41,62,80,99,40,114,91,48,93,44,114,91,49,93,41,38,38,40,114,91,48,93,61,105,91,48,93,41,41,58,111,46,112,117,115,104,40,114,61,105,41,59,102,111,114,40,97,61,45,49,47,48,44,110,61,48,44,114,61,111,91,101,61,111,46,108,101,110,103,116,104,45,49,93,59,110,60,61,101,59,114,61,105,44,43,43,110,41,105,61,111,91,110,93,44,40,117,61,80,99,40,114,91,49,93,44,105,91,48,93,41,41,62,97,38,38,40,97,61,117,44,90,117,61,105,91,48,93,44,75,117,61,114,91,49,93,41,125,114,101,116,117,114,110,32,105,99,61,111,99,61,110,117,108,108,44,90,117,61,61,61,49,47,48,124,124,81,117,61,61,61,49,47,48,63,91,91,78,97,78,44,78,97,78,93,44,91,78,97,78,44,78,97,78,93,93,58,91,91,90,117,44,81,117,93,44,91,75,117,44,74,117,93,93,125,44,116,46,103,101,111,67,101,110,116,114,111,105,100,61,102,117,110,99,116,105,111,110,40,116,41,123,97,99,61,117,99,61,99,99,61,102,99,61,115,99,61,108,99,61,104,99,61,100,99,61,112,99,61,118,99,61,103,99,61,48,44,67,117,40,116,44,68,99,41,59,118,97,114,32,110,61,112,99,44,101,61,118,99,44,114,61,103,99,44,105,61,110,42,110,43,101,42,101,43,114,42,114,59,114,101,116,117,114,110,32,105,60,101,117,38,38,40,110,61,108,99,44,101,61,104,99,44,114,61,100,99,44,117,99,60,110,117,38,38,40,110,61,99,99,44,101,61,102,99,44,114,61,115,99,41,44,40,105,61,110,42,110,43,101,42,101,43,114,42,114,41,60,101,117,41,63,91,78,97,78,44,78,97,78,93,58,91,108,117,40,101,44,110,41,42,117,117,44,119,117,40,114,47,98,117,40,105,41,41,42,117,117,93,125,44,116,46,103,101,111,67,105,114,99,108,101,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,44,110,44,101,61,88,99,40,91,48,44,48,93,41,44,114,61,88,99,40,57,48,41,44,105,61,88,99,40,54,41,44,111,61,123,112,111,105,110,116,58,102,117,110,99,116,105,111,110,40,101,44,114,41,123,116,46,112,117,115,104,40,101,61,110,40,101,44,114,41,41,44,101,91,48,93,42,61,117,117,44,101,91,49,93,42,61,117,117,125,125,59,102,117,110,99,116,105,111,110,32,97,40,41,123,118,97,114,32,97,61,101,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,44,117,61,114,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,42,99,117,44,99,61,105,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,42,99,117,59,114,101,116,117,114,110,32,116,61,91,93,44,110,61,36,99,40,45,97,91,48,93,42,99,117,44,45,97,91,49,93,42,99,117,44,48,41,46,105,110,118,101,114,116,44,74,99,40,111,44,117,44,99,44,49,41,44,97,61,123,116,121,112,101,58,34,80,111,108,121,103,111,110,34,44,99,111,111,114,100,105,110,97,116,101,115,58,91,116,93,125,44,116,61,110,61,110,117,108,108,44,97,125,114,101,116,117,114,110,32,97,46,99,101,110,116,101,114,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,101,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,88,99,40,91,43,116,91,48,93,44,43,116,91,49,93,93,41,44,97,41,58,101,125,44,97,46,114,97,100,105,117,115,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,114,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,88,99,40,43,116,41,44,97,41,58,114,125,44,97,46,112,114,101,99,105,115,105,111,110,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,105,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,88,99,40,43,116,41,44,97,41,58,105,125,44,97,125,44,116,46,103,101,111,67,108,105,112,65,110,116,105,109,101,114,105,100,105,97,110,61,100,102,44,116,46,103,101,111,67,108,105,112,67,105,114,99,108,101,61,112,102,44,116,46,103,101,111,67,108,105,112,69,120,116,101,110,116,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,44,110,44,101,44,114,61,48,44,105,61,48,44,111,61,57,54,48,44,97,61,53,48,48,59,114,101,116,117,114,110,32,101,61,123,115,116,114,101,97,109,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,38,38,110,61,61,61,101,63,116,58,116,61,121,102,40,114,44,105,44,111,44,97,41,40,110,61,101,41,125,44,101,120,116,101,110,116,58,102,117,110,99,116,105,111,110,40,117,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,114,61,43,117,91,48,93,91,48,93,44,105,61,43,117,91,48,93,91,49,93,44,111,61,43,117,91,49,93,91,48,93,44,97,61,43,117,91,49,93,91,49,93,44,116,61,110,61,110,117,108,108,44,101,41,58,91,91,114,44,105,93,44,91,111,44,97,93,93,125,125,125,44,116,46,103,101,111,67,108,105,112,82,101,99,116,97,110,103,108,101,61,121,102,44,116,46,103,101,111,67,111,110,105,99,67,111,110,102,111,114,109,97,108,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,74,115,40,115,108,41,46,115,99,97,108,101,40,49,48,57,46,53,41,46,112,97,114,97,108,108,101,108,115,40,91,51,48,44,51,48,93,41,125,44,116,46,103,101,111,67,111,110,105,99,67,111,110,102,111,114,109,97,108,82,97,119,61,115,108,44,116,46,103,101,111,67,111,110,105,99,69,113,117,97,108,65,114,101,97,61,110,108,44,116,46,103,101,111,67,111,110,105,99,69,113,117,97,108,65,114,101,97,82,97,119,61,116,108,44,116,46,103,101,111,67,111,110,105,99,69,113,117,105,100,105,115,116,97,110,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,74,115,40,104,108,41,46,115,99,97,108,101,40,49,51,49,46,49,53,52,41,46,99,101,110,116,101,114,40,91,48,44,49,51,46,57,51,56,57,93,41,125,44,116,46,103,101,111,67,111,110,105,99,69,113,117,105,100,105,115,116,97,110,116,82,97,119,61,104,108,44,116,46,103,101,111,67,111,110,116,97,105,110,115,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,40,116,38,38,67,102,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,116,46,116,121,112,101,41,63,67,102,91,116,46,116,121,112,101,93,58,122,102,41,40,116,44,110,41,125,44,116,46,103,101,111,68,105,115,116,97,110,99,101,61,69,102,44,116,46,103,101,111,69,113,117,97,108,69,97,114,116,104,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,81,115,40,95,108,41,46,115,99,97,108,101,40,49,55,55,46,49,53,56,41,125,44,116,46,103,101,111,69,113,117,97,108,69,97,114,116,104,82,97,119,61,95,108,44,116,46,103,101,111,69,113,117,105,114,101,99,116,97,110,103,117,108,97,114,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,81,115,40,108,108,41,46,115,99,97,108,101,40,49,53,50,46,54,51,41,125,44,116,46,103,101,111,69,113,117,105,114,101,99,116,97,110,103,117,108,97,114,82,97,119,61,108,108,44,116,46,103,101,111,71,110,111,109,111,110,105,99,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,81,115,40,98,108,41,46,115,99,97,108,101,40,49,52,52,46,48,52,57,41,46,99,108,105,112,65,110,103,108,101,40,54,48,41,125,44,116,46,103,101,111,71,110,111,109,111,110,105,99,82,97,119,61,98,108,44,116,46,103,101,111,71,114,97,116,105,99,117,108,101,61,70,102,44,116,46,103,101,111,71,114,97,116,105,99,117,108,101,49,48,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,70,102,40,41,40,41,125,44,116,46,103,101,111,73,100,101,110,116,105,116,121,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,44,110,44,101,44,114,44,105,44,111,44,97,44,117,61,49,44,99,61,48,44,102,61,48,44,115,61,49,44,108,61,49,44,104,61,48,44,100,61,110,117,108,108,44,112,61,49,44,118,61,49,44,103,61,66,115,40,123,112,111,105,110,116,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,61,98,40,91,116,44,110,93,41,59,116,104,105,115,46,115,116,114,101,97,109,46,112,111,105,110,116,40,101,91,48,93,44,101,91,49,93,41,125,125,41,44,121,61,89,102,59,102,117,110,99,116,105,111,110,32,95,40,41,123,114,101,116,117,114,110,32,112,61,117,42,115,44,118,61,117,42,108,44,111,61,97,61,110,117,108,108,44,98,125,102,117,110,99,116,105,111,110,32,98,40,101,41,123,118,97,114,32,114,61,101,91,48,93,42,112,44,105,61,101,91,49,93,42,118,59,105,102,40,104,41,123,118,97,114,32,111,61,105,42,116,45,114,42,110,59,114,61,114,42,116,43,105,42,110,44,105,61,111,125,114,101,116,117,114,110,91,114,43,99,44,105,43,102,93,125,114,101,116,117,114,110,32,98,46,105,110,118,101,114,116,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,114,61,101,91,48,93,45,99,44,105,61,101,91,49,93,45,102,59,105,102,40,104,41,123,118,97,114,32,111,61,105,42,116,43,114,42,110,59,114,61,114,42,116,45,105,42,110,44,105,61,111,125,114,101,116,117,114,110,91,114,47,112,44,105,47,118,93,125,44,98,46,115,116,114,101,97,109,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,111,38,38,97,61,61,61,116,63,111,58,111,61,103,40,121,40,97,61,116,41,41,125,44,98,46,112,111,115,116,99,108,105,112,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,121,61,116,44,100,61,101,61,114,61,105,61,110,117,108,108,44,95,40,41,41,58,121,125,44,98,46,99,108,105,112,69,120,116,101,110,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,121,61,110,117,108,108,61,61,116,63,40,100,61,101,61,114,61,105,61,110,117,108,108,44,89,102,41,58,121,102,40,100,61,43,116,91,48,93,91,48,93,44,101,61,43,116,91,48,93,91,49,93,44,114,61,43,116,91,49,93,91,48,93,44,105,61,43,116,91,49,93,91,49,93,41,44,95,40,41,41,58,110,117,108,108,61,61,100,63,110,117,108,108,58,91,91,100,44,101,93,44,91,114,44,105,93,93,125,44,98,46,115,99,97,108,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,117,61,43,116,44,95,40,41,41,58,117,125,44,98,46,116,114,97,110,115,108,97,116,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,99,61,43,116,91,48,93,44,102,61,43,116,91,49,93,44,95,40,41,41,58,91,99,44,102,93,125,44,98,46,97,110,103,108,101,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,110,61,121,117,40,104,61,101,37,51,54,48,42,99,117,41,44,116,61,104,117,40,104,41,44,95,40,41,41,58,104,42,117,117,125,44,98,46,114,101,102,108,101,99,116,88,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,115,61,116,63,45,49,58,49,44,95,40,41,41,58,115,60,48,125,44,98,46,114,101,102,108,101,99,116,89,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,108,61,116,63,45,49,58,49,44,95,40,41,41,58,108,60,48,125,44,98,46,102,105,116,69,120,116,101,110,116,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,73,115,40,98,44,116,44,110,41,125,44,98,46,102,105,116,83,105,122,101,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,72,115,40,98,44,116,44,110,41,125,44,98,46,102,105,116,87,105,100,116,104,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,106,115,40,98,44,116,44,110,41,125,44,98,46,102,105,116,72,101,105,103,104,116,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,88,115,40,98,44,116,44,110,41,125,44,98,125,44,116,46,103,101,111,73,110,116,101,114,112,111,108,97,116,101,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,61,116,91,48,93,42,99,117,44,114,61,116,91,49,93,42,99,117,44,105,61,110,91,48,93,42,99,117,44,111,61,110,91,49,93,42,99,117,44,97,61,104,117,40,114,41,44,117,61,121,117,40,114,41,44,99,61,104,117,40,111,41,44,102,61,121,117,40,111,41,44,115,61,97,42,104,117,40,101,41,44,108,61,97,42,121,117,40,101,41,44,104,61,99,42,104,117,40,105,41,44,100,61,99,42,121,117,40,105,41,44,112,61,50,42,119,117,40,98,117,40,77,117,40,111,45,114,41,43,97,42,99,42,77,117,40,105,45,101,41,41,41,44,118,61,121,117,40,112,41,44,103,61,112,63,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,121,117,40,116,42,61,112,41,47,118,44,101,61,121,117,40,112,45,116,41,47,118,44,114,61,101,42,115,43,110,42,104,44,105,61,101,42,108,43,110,42,100,44,111,61,101,42,117,43,110,42,102,59,114,101,116,117,114,110,91,108,117,40,105,44,114,41,42,117,117,44,108,117,40,111,44,98,117,40,114,42,114,43,105,42,105,41,41,42,117,117,93,125,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,91,101,42,117,117,44,114,42,117,117,93,125,59,114,101,116,117,114,110,32,103,46,100,105,115,116,97,110,99,101,61,112,44,103,125,44,116,46,103,101,111,76,101,110,103,116,104,61,65,102,44,116,46,103,101,111,77,101,114,99,97,116,111,114,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,99,108,40,117,108,41,46,115,99,97,108,101,40,57,54,49,47,97,117,41,125,44,116,46,103,101,111,77,101,114,99,97,116,111,114,82,97,119,61,117,108,44,116,46,103,101,111,78,97,116,117,114,97,108,69,97,114,116,104,49,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,81,115,40,109,108,41,46,115,99,97,108,101,40,49,55,53,46,50,57,53,41,125,44,116,46,103,101,111,78,97,116,117,114,97,108,69,97,114,116,104,49,82,97,119,61,109,108,44,116,46,103,101,111,79,114,116,104,111,103,114,97,112,104,105,99,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,81,115,40,120,108,41,46,115,99,97,108,101,40,50,52,57,46,53,41,46,99,108,105,112,65,110,103,108,101,40,57,48,43,110,117,41,125,44,116,46,103,101,111,79,114,116,104,111,103,114,97,112,104,105,99,82,97,119,61,120,108,44,116,46,103,101,111,80,97,116,104,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,44,114,44,105,61,52,46,53,59,102,117,110,99,116,105,111,110,32,111,40,116,41,123,114,101,116,117,114,110,32,116,38,38,40,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,105,38,38,114,46,112,111,105,110,116,82,97,100,105,117,115,40,43,105,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,41,44,67,117,40,116,44,101,40,114,41,41,41,44,114,46,114,101,115,117,108,116,40,41,125,114,101,116,117,114,110,32,111,46,97,114,101,97,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,67,117,40,116,44,101,40,36,102,41,41,44,36,102,46,114,101,115,117,108,116,40,41,125,44,111,46,109,101,97,115,117,114,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,67,117,40,116,44,101,40,68,115,41,41,44,68,115,46,114,101,115,117,108,116,40,41,125,44,111,46,98,111,117,110,100,115,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,67,117,40,116,44,101,40,114,115,41,41,44,114,115,46,114,101,115,117,108,116,40,41,125,44,111,46,99,101,110,116,114,111,105,100,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,67,117,40,116,44,101,40,121,115,41,41,44,121,115,46,114,101,115,117,108,116,40,41,125,44,111,46,112,114,111,106,101,99,116,105,111,110,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,101,61,110,117,108,108,61,61,110,63,40,116,61,110,117,108,108,44,89,102,41,58,40,116,61,110,41,46,115,116,114,101,97,109,44,111,41,58,116,125,44,111,46,99,111,110,116,101,120,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,114,61,110,117,108,108,61,61,116,63,40,110,61,110,117,108,108,44,110,101,119,32,85,115,41,58,110,101,119,32,83,115,40,110,61,116,41,44,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,105,38,38,114,46,112,111,105,110,116,82,97,100,105,117,115,40,105,41,44,111,41,58,110,125,44,111,46,112,111,105,110,116,82,97,100,105,117,115,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,105,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,40,114,46,112,111,105,110,116,82,97,100,105,117,115,40,43,116,41,44,43,116,41,44,111,41,58,105,125,44,111,46,112,114,111,106,101,99,116,105,111,110,40,116,41,46,99,111,110,116,101,120,116,40,110,41,125,44,116,46,103,101,111,80,114,111,106,101,99,116,105,111,110,61,81,115,44,116,46,103,101,111,80,114,111,106,101,99,116,105,111,110,77,117,116,97,116,111,114,61,75,115,44,116,46,103,101,111,82,111,116,97,116,105,111,110,61,75,99,44,116,46,103,101,111,83,116,101,114,101,111,103,114,97,112,104,105,99,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,81,115,40,119,108,41,46,115,99,97,108,101,40,50,53,48,41,46,99,108,105,112,65,110,103,108,101,40,49,52,50,41,125,44,116,46,103,101,111,83,116,101,114,101,111,103,114,97,112,104,105,99,82,97,119,61,119,108,44,116,46,103,101,111,83,116,114,101,97,109,61,67,117,44,116,46,103,101,111,84,114,97,110,115,102,111,114,109,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,123,115,116,114,101,97,109,58,66,115,40,116,41,125,125,44,116,46,103,101,111,84,114,97,110,115,118,101,114,115,101,77,101,114,99,97,116,111,114,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,99,108,40,77,108,41,44,110,61,116,46,99,101,110,116,101,114,44,101,61,116,46,114,111,116,97,116,101,59,114,101,116,117,114,110,32,116,46,99,101,110,116,101,114,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,110,40,91,45,116,91,49,93,44,116,91,48,93,93,41,58,91,40,116,61,110,40,41,41,91,49,93,44,45,116,91,48,93,93,125,44,116,46,114,111,116,97,116,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,101,40,91,116,91,48,93,44,116,91,49,93,44,116,46,108,101,110,103,116,104,62,50,63,116,91,50,93,43,57,48,58,57,48,93,41,58,91,40,116,61,101,40,41,41,91,48,93,44,116,91,49,93,44,116,91,50,93,45,57,48,93,125,44,101,40,91,48,44,48,44,57,48,93,41,46,115,99,97,108,101,40,49,53,57,46,49,53,53,41,125,44,116,46,103,101,111,84,114,97,110,115,118,101,114,115,101,77,101,114,99,97,116,111,114,82,97,119,61,77,108,44,116,46,103,114,97,121,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,110,101,119,32,66,110,40,116,44,48,44,48,44,110,117,108,108,61,61,110,63,49,58,110,41,125,44,116,46,104,99,108,61,88,110,44,116,46,104,105,101,114,97,114,99,104,121,61,107,108,44,116,46,104,105,115,116,111,103,114,97,109,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,118,44,110,61,115,44,101,61,77,59,102,117,110,99,116,105,111,110,32,114,40,114,41,123,118,97,114,32,111,44,97,44,117,61,114,46,108,101,110,103,116,104,44,99,61,110,101,119,32,65,114,114,97,121,40,117,41,59,102,111,114,40,111,61,48,59,111,60,117,59,43,43,111,41,99,91,111,93,61,116,40,114,91,111,93,44,111,44,114,41,59,118,97,114,32,102,61,110,40,99,41,44,115,61,102,91,48,93,44,108,61,102,91,49,93,44,104,61,101,40,99,44,115,44,108,41,59,65,114,114,97,121,46,105,115,65,114,114,97,121,40,104,41,124,124,40,104,61,119,40,115,44,108,44,104,41,44,104,61,103,40,77,97,116,104,46,99,101,105,108,40,115,47,104,41,42,104,44,108,44,104,41,41,59,102,111,114,40,118,97,114,32,100,61,104,46,108,101,110,103,116,104,59,104,91,48,93,60,61,115,59,41,104,46,115,104,105,102,116,40,41,44,45,45,100,59,102,111,114,40,59,104,91,100,45,49,93,62,108,59,41,104,46,112,111,112,40,41,44,45,45,100,59,118,97,114,32,112,44,118,61,110,101,119,32,65,114,114,97,121,40,100,43,49,41,59,102,111,114,40,111,61,48,59,111,60,61,100,59,43,43,111,41,40,112,61,118,91,111,93,61,91,93,41,46,120,48,61,111,62,48,63,104,91,111,45,49,93,58,115,44,112,46,120,49,61,111,60,100,63,104,91,111,93,58,108,59,102,111,114,40,111,61,48,59,111,60,117,59,43,43,111,41,115,60,61,40,97,61,99,91,111,93,41,38,38,97,60,61,108,38,38,118,91,105,40,104,44,97,44,48,44,100,41,93,46,112,117,115,104,40,114,91,111,93,41,59,114,101,116,117,114,110,32,118,125,114,101,116,117,114,110,32,114,46,118,97,108,117,101,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,116,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,110,63,110,58,112,40,110,41,44,114,41,58,116,125,44,114,46,100,111,109,97,105,110,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,110,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,112,40,91,116,91,48,93,44,116,91,49,93,93,41,44,114,41,58,110,125,44,114,46,116,104,114,101,115,104,111,108,100,115,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,101,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,65,114,114,97,121,46,105,115,65,114,114,97,121,40,116,41,63,112,40,104,46,99,97,108,108,40,116,41,41,58,112,40,116,41,44,114,41,58,101,125,44,114,125,44,116,46,104,115,108,61,84,110,44,116,46,104,116,109,108,61,112,97,44,116,46,105,109,97,103,101,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,110,101,119,32,80,114,111,109,105,115,101,40,102,117,110,99,116,105,111,110,40,101,44,114,41,123,118,97,114,32,105,61,110,101,119,32,73,109,97,103,101,59,102,111,114,40,118,97,114,32,111,32,105,110,32,110,41,105,91,111,93,61,110,91,111,93,59,105,46,111,110,101,114,114,111,114,61,114,44,105,46,111,110,108,111,97,100,61,102,117,110,99,116,105,111,110,40,41,123,101,40,105,41,125,44,105,46,115,114,99,61,116,125,41,125,44,116,46,105,110,116,101,114,112,111,108,97,116,101,61,84,101,44,116,46,105,110,116,101,114,112,111,108,97,116,101,65,114,114,97,121,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,40,121,101,40,110,41,63,103,101,58,95,101,41,40,116,44,110,41,125,44,116,46,105,110,116,101,114,112,111,108,97,116,101,66,97,115,105,115,61,111,101,44,116,46,105,110,116,101,114,112,111,108,97,116,101,66,97,115,105,115,67,108,111,115,101,100,61,97,101,44,116,46,105,110,116,101,114,112,111,108,97,116,101,66,108,117,101,115,61,81,103,44,116,46,105,110,116,101,114,112,111,108,97,116,101,66,114,66,71,61,102,103,44,116,46,105,110,116,101,114,112,111,108,97,116,101,66,117,71,110,61,83,103,44,116,46,105,110,116,101,114,112,111,108,97,116,101,66,117,80,117,61,69,103,44,116,46,105,110,116,101,114,112,111,108,97,116,101,67,105,118,105,100,105,115,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,61,77,97,116,104,46,109,97,120,40,48,44,77,97,116,104,46,109,105,110,40,49,44,116,41,41,44,34,114,103,98,40,34,43,77,97,116,104,46,109,97,120,40,48,44,77,97,116,104,46,109,105,110,40,50,53,53,44,77,97,116,104,46,114,111,117,110,100,40,45,52,46,53,52,45,116,42,40,51,53,46,51,52,45,116,42,40,50,51,56,49,46,55,51,45,116,42,40,54,52,48,50,46,55,45,116,42,40,55,48,50,52,46,55,50,45,50,55,49,48,46,53,55,42,116,41,41,41,41,41,41,41,43,34,44,32,34,43,77,97,116,104,46,109,97,120,40,48,44,77,97,116,104,46,109,105,110,40,50,53,53,44,77,97,116,104,46,114,111,117,110,100,40,51,50,46,52,57,43,116,42,40,49,55,48,46,55,51,43,116,42,40,53,50,46,56,50,45,116,42,40,49,51,49,46,52,54,45,116,42,40,49,55,54,46,53,56,45,54,55,46,51,55,42,116,41,41,41,41,41,41,41,43,34,44,32,34,43,77,97,116,104,46,109,97,120,40,48,44,77,97,116,104,46,109,105,110,40,50,53,53,44,77,97,116,104,46,114,111,117,110,100,40,56,49,46,50,52,43,116,42,40,52,52,50,46,51,54,45,116,42,40,50,52,56,50,46,52,51,45,116,42,40,54,49,54,55,46,50,52,45,116,42,40,54,54,49,52,46,57,52,45,50,52,55,53,46,54,55,42,116,41,41,41,41,41,41,41,43,34,41,34,125,44,116,46,105,110,116,101,114,112,111,108,97,116,101,67,111,111,108,61,115,121,44,116,46,105,110,116,101,114,112,111,108,97,116,101,67,117,98,101,104,101,108,105,120,61,90,101,44,116,46,105,110,116,101,114,112,111,108,97,116,101,67,117,98,101,104,101,108,105,120,68,101,102,97,117,108,116,61,99,121,44,116,46,105,110,116,101,114,112,111,108,97,116,101,67,117,98,101,104,101,108,105,120,76,111,110,103,61,81,101,44,116,46,105,110,116,101,114,112,111,108,97,116,101,68,97,116,101,61,98,101,44,116,46,105,110,116,101,114,112,111,108,97,116,101,68,105,115,99,114,101,116,101,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,116,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,91,77,97,116,104,46,109,97,120,40,48,44,77,97,116,104,46,109,105,110,40,110,45,49,44,77,97,116,104,46,102,108,111,111,114,40,101,42,110,41,41,41,93,125,125,44,116,46,105,110,116,101,114,112,111,108,97,116,101,71,110,66,117,61,80,103,44,116,46,105,110,116,101,114,112,111,108,97,116,101,71,114,101,101,110,115,61,74,103,44,116,46,105,110,116,101,114,112,111,108,97,116,101,71,114,101,121,115,61,110,121,44,116,46,105,110,116,101,114,112,111,108,97,116,101,72,99,108,61,71,101,44,116,46,105,110,116,101,114,112,111,108,97,116,101,72,99,108,76,111,110,103,61,36,101,44,116,46,105,110,116,101,114,112,111,108,97,116,101,72,115,108,61,106,101,44,116,46,105,110,116,101,114,112,111,108,97,116,101,72,115,108,76,111,110,103,61,88,101,44,116,46,105,110,116,101,114,112,111,108,97,116,101,72,117,101,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,61,102,101,40,43,116,44,43,110,41,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,101,40,116,41,59,114,101,116,117,114,110,32,110,45,51,54,48,42,77,97,116,104,46,102,108,111,111,114,40,110,47,51,54,48,41,125,125,44,116,46,105,110,116,101,114,112,111,108,97,116,101,73,110,102,101,114,110,111,61,95,121,44,116,46,105,110,116,101,114,112,111,108,97,116,101,76,97,98,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,61,108,101,40,40,116,61,79,110,40,116,41,41,46,108,44,40,110,61,79,110,40,110,41,41,46,108,41,44,114,61,108,101,40,116,46,97,44,110,46,97,41,44,105,61,108,101,40,116,46,98,44,110,46,98,41,44,111,61,108,101,40,116,46,111,112,97,99,105,116,121,44,110,46,111,112,97,99,105,116,121,41,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,46,108,61,101,40,110,41,44,116,46,97,61,114,40,110,41,44,116,46,98,61,105,40,110,41,44,116,46,111,112,97,99,105,116,121,61,111,40,110,41,44,116,43,34,34,125,125,44,116,46,105,110,116,101,114,112,111,108,97,116,101,77,97,103,109,97,61,121,121,44,116,46,105,110,116,101,114,112,111,108,97,116,101,78,117,109,98,101,114,61,109,101,44,116,46,105,110,116,101,114,112,111,108,97,116,101,78,117,109,98,101,114,65,114,114,97,121,61,103,101,44,116,46,105,110,116,101,114,112,111,108,97,116,101,79,98,106,101,99,116,61,120,101,44,116,46,105,110,116,101,114,112,111,108,97,116,101,79,114,82,100,61,82,103,44,116,46,105,110,116,101,114,112,111,108,97,116,101,79,114,97,110,103,101,115,61,117,121,44,116,46,105,110,116,101,114,112,111,108,97,116,101,80,82,71,110,61,108,103,44,116,46,105,110,116,101,114,112,111,108,97,116,101,80,105,89,71,61,100,103,44,116,46,105,110,116,101,114,112,111,108,97,116,101,80,108,97,115,109,97,61,98,121,44,116,46,105,110,116,101,114,112,111,108,97,116,101,80,117,66,117,61,85,103,44,116,46,105,110,116,101,114,112,111,108,97,116,101,80,117,66,117,71,110,61,113,103,44,116,46,105,110,116,101,114,112,111,108,97,116,101,80,117,79,114,61,118,103,44,116,46,105,110,116,101,114,112,111,108,97,116,101,80,117,82,100,61,66,103,44,116,46,105,110,116,101,114,112,111,108,97,116,101,80,117,114,112,108,101,115,61,114,121,44,116,46,105,110,116,101,114,112,111,108,97,116,101,82,97,105,110,98,111,119,61,102,117,110,99,116,105,111,110,40,116,41,123,40,116,60,48,124,124,116,62,49,41,38,38,40,116,45,61,77,97,116,104,46,102,108,111,111,114,40,116,41,41,59,118,97,114,32,110,61,77,97,116,104,46,97,98,115,40,116,45,46,53,41,59,114,101,116,117,114,110,32,108,121,46,104,61,51,54,48,42,116,45,49,48,48,44,108,121,46,115,61,49,46,53,45,49,46,53,42,110,44,108,121,46,108,61,46,56,45,46,57,42,110,44,108,121,43,34,34,125,44,116,46,105,110,116,101,114,112,111,108,97,116,101,82,100,66,117,61,121,103,44,116,46,105,110,116,101,114,112,111,108,97,116,101,82,100,71,121,61,98,103,44,116,46,105,110,116,101,114,112,111,108,97,116,101,82,100,80,117,61,89,103,44,116,46,105,110,116,101,114,112,111,108,97,116,101,82,100,89,108,66,117,61,120,103,44,116,46,105,110,116,101,114,112,111,108,97,116,101,82,100,89,108,71,110,61,77,103,44,116,46,105,110,116,101,114,112,111,108,97,116,101,82,101,100,115,61,111,121,44,116,46,105,110,116,101,114,112,111,108,97,116,101,82,103,98,61,104,101,44,116,46,105,110,116,101,114,112,111,108,97,116,101,82,103,98,66,97,115,105,115,61,112,101,44,116,46,105,110,116,101,114,112,111,108,97,116,101,82,103,98,66,97,115,105,115,67,108,111,115,101,100,61,118,101,44,116,46,105,110,116,101,114,112,111,108,97,116,101,82,111,117,110,100,61,65,101,44,116,46,105,110,116,101,114,112,111,108,97,116,101,83,105,110,101,98,111,119,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,59,114,101,116,117,114,110,32,116,61,40,46,53,45,116,41,42,77,97,116,104,46,80,73,44,104,121,46,114,61,50,53,53,42,40,110,61,77,97,116,104,46,115,105,110,40,116,41,41,42,110,44,104,121,46,103,61,50,53,53,42,40,110,61,77,97,116,104,46,115,105,110,40,116,43,100,121,41,41,42,110,44,104,121,46,98,61,50,53,53,42,40,110,61,77,97,116,104,46,115,105,110,40,116,43,112,121,41,41,42,110,44,104,121,43,34,34,125,44,116,46,105,110,116,101,114,112,111,108,97,116,101,83,112,101,99,116,114,97,108,61,84,103,44,116,46,105,110,116,101,114,112,111,108,97,116,101,83,116,114,105,110,103,61,78,101,44,116,46,105,110,116,101,114,112,111,108,97,116,101,84,114,97,110,115,102,111,114,109,67,115,115,61,113,101,44,116,46,105,110,116,101,114,112,111,108,97,116,101,84,114,97,110,115,102,111,114,109,83,118,103,61,76,101,44,116,46,105,110,116,101,114,112,111,108,97,116,101,84,117,114,98,111,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,61,77,97,116,104,46,109,97,120,40,48,44,77,97,116,104,46,109,105,110,40,49,44,116,41,41,44,34,114,103,98,40,34,43,77,97,116,104,46,109,97,120,40,48,44,77,97,116,104,46,109,105,110,40,50,53,53,44,77,97,116,104,46,114,111,117,110,100,40,51,52,46,54,49,43,116,42,40,49,49,55,50,46,51,51,45,116,42,40,49,48,55,57,51,46,53,54,45,116,42,40,51,51,51,48,48,46,49,50,45,116,42,40,51,56,51,57,52,46,52,57,45,49,52,56,50,53,46,48,53,42,116,41,41,41,41,41,41,41,43,34,44,32,34,43,77,97,116,104,46,109,97,120,40,48,44,77,97,116,104,46,109,105,110,40,50,53,53,44,77,97,116,104,46,114,111,117,110,100,40,50,51,46,51,49,43,116,42,40,53,53,55,46,51,51,43,116,42,40,49,50,50,53,46,51,51,45,116,42,40,51,53,55,52,46,57,54,45,116,42,40,49,48,55,51,46,55,55,43,55,48,55,46,53,54,42,116,41,41,41,41,41,41,41,43,34,44,32,34,43,77,97,116,104,46,109,97,120,40,48,44,77,97,116,104,46,109,105,110,40,50,53,53,44,77,97,116,104,46,114,111,117,110,100,40,50,55,46,50,43,116,42,40,51,50,49,49,46,49,45,116,42,40,49,53,51,50,55,46,57,55,45,116,42,40,50,55,56,49,52,45,116,42,40,50,50,53,54,57,46,49,56,45,54,56,51,56,46,54,54,42,116,41,41,41,41,41,41,41,43,34,41,34,125,44,116,46,105,110,116,101,114,112,111,108,97,116,101,86,105,114,105,100,105,115,61,103,121,44,116,46,105,110,116,101,114,112,111,108,97,116,101,87,97,114,109,61,102,121,44,116,46,105,110,116,101,114,112,111,108,97,116,101,89,108,71,110,61,88,103,44,116,46,105,110,116,101,114,112,111,108,97,116,101,89,108,71,110,66,117,61,72,103,44,116,46,105,110,116,101,114,112,111,108,97,116,101,89,108,79,114,66,114,61,71,103,44,116,46,105,110,116,101,114,112,111,108,97,116,101,89,108,79,114,82,100,61,87,103,44,116,46,105,110,116,101,114,112,111,108,97,116,101,90,111,111,109,61,73,101,44,116,46,105,110,116,101,114,114,117,112,116,61,80,114,44,116,46,105,110,116,101,114,118,97,108,61,102,117,110,99,116,105,111,110,40,116,44,110,44,101,41,123,118,97,114,32,114,61,110,101,119,32,108,114,44,105,61,110,59,114,101,116,117,114,110,32,110,117,108,108,61,61,110,63,40,114,46,114,101,115,116,97,114,116,40,116,44,110,44,101,41,44,114,41,58,40,110,61,43,110,44,101,61,110,117,108,108,61,61,101,63,102,114,40,41,58,43,101,44,114,46,114,101,115,116,97,114,116,40,102,117,110,99,116,105,111,110,32,111,40,97,41,123,97,43,61,105,44,114,46,114,101,115,116,97,114,116,40,111,44,105,43,61,110,44,101,41,44,116,40,97,41,125,44,110,44,101,41,44,114,41,125,44,116,46,105,115,111,70,111,114,109,97,116,61,82,118,44,116,46,105,115,111,80,97,114,115,101,61,68,118,44,116,46,106,115,111,110,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,102,101,116,99,104,40,116,44,110,41,46,116,104,101,110,40,108,97,41,125,44,116,46,107,101,121,115,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,91,93,59,102,111,114,40,118,97,114,32,101,32,105,110,32,116,41,110,46,112,117,115,104,40,101,41,59,114,101,116,117,114,110,32,110,125,44,116,46,108,97,98,61,79,110,44,116,46,108,99,104,61,102,117,110,99,116,105,111,110,40,116,44,110,44,101,44,114,41,123,114,101,116,117,114,110,32,49,61,61,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,106,110,40,116,41,58,110,101,119,32,86,110,40,101,44,110,44,116,44,110,117,108,108,61,61,114,63,49,58,114,41,125,44,116,46,108,105,110,101,61,72,121,44,116,46,108,105,110,101,82,97,100,105,97,108,61,81,121,44,116,46,108,105,110,107,72,111,114,105,122,111,110,116,97,108,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,114,95,40,105,95,41,125,44,116,46,108,105,110,107,82,97,100,105,97,108,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,114,95,40,97,95,41,59,114,101,116,117,114,110,32,116,46,97,110,103,108,101,61,116,46,120,44,100,101,108,101,116,101,32,116,46,120,44,116,46,114,97,100,105,117,115,61,116,46,121,44,100,101,108,101,116,101,32,116,46,121,44,116,125,44,116,46,108,105,110,107,86,101,114,116,105,99,97,108,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,114,95,40,111,95,41,125,44,116,46,108,111,99,97,108,61,113,116,44,116,46,109,97,112,61,99,111,44,116,46,109,97,116,99,104,101,114,61,110,116,44,116,46,109,97,120,61,84,44,116,46,109,101,97,110,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,44,114,61,116,46,108,101,110,103,116,104,44,105,61,114,44,111,61,45,49,44,97,61,48,59,105,102,40,110,117,108,108,61,61,110,41,102,111,114,40,59,43,43,111,60,114,59,41,105,115,78,97,78,40,101,61,117,40,116,91,111,93,41,41,63,45,45,105,58,97,43,61,101,59,101,108,115,101,32,102,111,114,40,59,43,43,111,60,114,59,41,105,115,78,97,78,40,101,61,117,40,110,40,116,91,111,93,44,111,44,116,41,41,41,63,45,45,105,58,97,43,61,101,59,105,102,40,105,41,114,101,116,117,114,110,32,97,47,105,125,44,116,46,109,101,100,105,97,110,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,114,44,105,61,116,46,108,101,110,103,116,104,44,111,61,45,49,44,97,61,91,93,59,105,102,40,110,117,108,108,61,61,101,41,102,111,114,40,59,43,43,111,60,105,59,41,105,115,78,97,78,40,114,61,117,40,116,91,111,93,41,41,124,124,97,46,112,117,115,104,40,114,41,59,101,108,115,101,32,102,111,114,40,59,43,43,111,60,105,59,41,105,115,78,97,78,40,114,61,117,40,101,40,116,91,111,93,44,111,44,116,41,41,41,124,124,97,46,112,117,115,104,40,114,41,59,114,101,116,117,114,110,32,78,40,97,46,115,111,114,116,40,110,41,44,46,53,41,125,44,116,46,109,101,114,103,101,61,65,44,116,46,109,105,110,61,83,44,116,46,109,111,117,115,101,61,66,116,44,116,46,110,97,109,101,115,112,97,99,101,61,87,44,116,46,110,97,109,101,115,112,97,99,101,115,61,36,44,116,46,110,101,115,116,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,44,110,44,101,44,114,61,91,93,44,105,61,91,93,59,102,117,110,99,116,105,111,110,32,111,40,101,44,105,44,97,44,117,41,123,105,102,40,105,62,61,114,46,108,101,110,103,116,104,41,114,101,116,117,114,110,32,110,117,108,108,33,61,116,38,38,101,46,115,111,114,116,40,116,41,44,110,117,108,108,33,61,110,63,110,40,101,41,58,101,59,102,111,114,40,118,97,114,32,99,44,102,44,115,44,108,61,45,49,44,104,61,101,46,108,101,110,103,116,104,44,100,61,114,91,105,43,43,93,44,112,61,99,111,40,41,44,118,61,97,40,41,59,43,43,108,60,104,59,41,40,115,61,112,46,103,101,116,40,99,61,100,40,102,61,101,91,108,93,41,43,34,34,41,41,63,115,46,112,117,115,104,40,102,41,58,112,46,115,101,116,40,99,44,91,102,93,41,59,114,101,116,117,114,110,32,112,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,116,44,110,41,123,117,40,118,44,110,44,111,40,116,44,105,44,97,44,117,41,41,125,41,44,118,125,114,101,116,117,114,110,32,101,61,123,111,98,106,101,99,116,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,111,40,116,44,48,44,102,111,44,115,111,41,125,44,109,97,112,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,111,40,116,44,48,44,108,111,44,104,111,41,125,44,101,110,116,114,105,101,115,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,116,40,101,44,111,41,123,105,102,40,43,43,111,62,114,46,108,101,110,103,116,104,41,114,101,116,117,114,110,32,101,59,118,97,114,32,97,44,117,61,105,91,111,45,49,93,59,114,101,116,117,114,110,32,110,117,108,108,33,61,110,38,38,111,62,61,114,46,108,101,110,103,116,104,63,97,61,101,46,101,110,116,114,105,101,115,40,41,58,40,97,61,91,93,44,101,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,110,44,101,41,123,97,46,112,117,115,104,40,123,107,101,121,58,101,44,118,97,108,117,101,115,58,116,40,110,44,111,41,125,41,125,41,41,44,110,117,108,108,33,61,117,63,97,46,115,111,114,116,40,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,117,40,116,46,107,101,121,44,110,46,107,101,121,41,125,41,58,97,125,40,111,40,116,44,48,44,108,111,44,104,111,41,44,48,41,125,44,107,101,121,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,114,46,112,117,115,104,40,116,41,44,101,125,44,115,111,114,116,75,101,121,115,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,105,91,114,46,108,101,110,103,116,104,45,49,93,61,116,44,101,125,44,115,111,114,116,86,97,108,117,101,115,58,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,61,110,44,101,125,44,114,111,108,108,117,112,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,61,116,44,101,125,125,125,44,116,46,110,111,119,61,102,114,44,116,46,112,97,99,107,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,110,117,108,108,44,110,61,49,44,101,61,49,44,114,61,87,108,59,102,117,110,99,116,105,111,110,32,105,40,105,41,123,114,101,116,117,114,110,32,105,46,120,61,110,47,50,44,105,46,121,61,101,47,50,44,116,63,105,46,101,97,99,104,66,101,102,111,114,101,40,75,108,40,116,41,41,46,101,97,99,104,65,102,116,101,114,40,74,108,40,114,44,46,53,41,41,46,101,97,99,104,66,101,102,111,114,101,40,116,104,40,49,41,41,58,105,46,101,97,99,104,66,101,102,111,114,101,40,75,108,40,81,108,41,41,46,101,97,99,104,65,102,116,101,114,40,74,108,40,87,108,44,49,41,41,46,101,97,99,104,65,102,116,101,114,40,74,108,40,114,44,105,46,114,47,77,97,116,104,46,109,105,110,40,110,44,101,41,41,41,46,101,97,99,104,66,101,102,111,114,101,40,116,104,40,77,97,116,104,46,109,105,110,40,110,44,101,41,47,40,50,42,105,46,114,41,41,41,44,105,125,114,101,116,117,114,110,32,105,46,114,97,100,105,117,115,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,116,61,71,108,40,110,41,44,105,41,58,116,125,44,105,46,115,105,122,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,110,61,43,116,91,48,93,44,101,61,43,116,91,49,93,44,105,41,58,91,110,44,101,93,125,44,105,46,112,97,100,100,105,110,103,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,114,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,90,108,40,43,116,41,44,105,41,58,114,125,44,105,125,44,116,46,112,97,99,107,69,110,99,108,111,115,101,61,68,108,44,116,46,112,97,99,107,83,105,98,108,105,110,103,115,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,86,108,40,116,41,44,116,125,44,116,46,112,97,105,114,115,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,110,117,108,108,61,61,110,38,38,40,110,61,97,41,59,102,111,114,40,118,97,114,32,101,61,48,44,114,61,116,46,108,101,110,103,116,104,45,49,44,105,61,116,91,48,93,44,111,61,110,101,119,32,65,114,114,97,121,40,114,60,48,63,48,58,114,41,59,101,60,114,59,41,111,91,101,93,61,110,40,105,44,105,61,116,91,43,43,101,93,41,59,114,101,116,117,114,110,32,111,125,44,116,46,112,97,114,116,105,116,105,111,110,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,49,44,110,61,49,44,101,61,48,44,114,61,33,49,59,102,117,110,99,116,105,111,110,32,105,40,105,41,123,118,97,114,32,111,61,105,46,104,101,105,103,104,116,43,49,59,114,101,116,117,114,110,32,105,46,120,48,61,105,46,121,48,61,101,44,105,46,120,49,61,116,44,105,46,121,49,61,110,47,111,44,105,46,101,97,99,104,66,101,102,111,114,101,40,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,114,41,123,114,46,99,104,105,108,100,114,101,110,38,38,101,104,40,114,44,114,46,120,48,44,116,42,40,114,46,100,101,112,116,104,43,49,41,47,110,44,114,46,120,49,44,116,42,40,114,46,100,101,112,116,104,43,50,41,47,110,41,59,118,97,114,32,105,61,114,46,120,48,44,111,61,114,46,121,48,44,97,61,114,46,120,49,45,101,44,117,61,114,46,121,49,45,101,59,97,60,105,38,38,40,105,61,97,61,40,105,43,97,41,47,50,41,44,117,60,111,38,38,40,111,61,117,61,40,111,43,117,41,47,50,41,44,114,46,120,48,61,105,44,114,46,121,48,61,111,44,114,46,120,49,61,97,44,114,46,121,49,61,117,125,125,40,110,44,111,41,41,44,114,38,38,105,46,101,97,99,104,66,101,102,111,114,101,40,110,104,41,44,105,125,114,101,116,117,114,110,32,105,46,114,111,117,110,100,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,114,61,33,33,116,44,105,41,58,114,125,44,105,46,115,105,122,101,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,116,61,43,101,91,48,93,44,110,61,43,101,91,49,93,44,105,41,58,91,116,44,110,93,125,44,105,46,112,97,100,100,105,110,103,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,101,61,43,116,44,105,41,58,101,125,44,105,125,44,116,46,112,97,116,104,61,110,111,44,116,46,112,101,114,109,117,116,101,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,102,111,114,40,118,97,114,32,101,61,110,46,108,101,110,103,116,104,44,114,61,110,101,119,32,65,114,114,97,121,40,101,41,59,101,45,45,59,41,114,91,101,93,61,116,91,110,91,101,93,93,59,114,101,116,117,114,110,32,114,125,44,116,46,112,105,101,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,86,121,44,110,61,88,121,44,101,61,110,117,108,108,44,114,61,109,121,40,48,41,44,105,61,109,121,40,80,121,41,44,111,61,109,121,40,48,41,59,102,117,110,99,116,105,111,110,32,97,40,97,41,123,118,97,114,32,117,44,99,44,102,44,115,44,108,44,104,61,97,46,108,101,110,103,116,104,44,100,61,48,44,112,61,110,101,119,32,65,114,114,97,121,40,104,41,44,118,61,110,101,119,32,65,114,114,97,121,40,104,41,44,103,61,43,114,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,44,121,61,77,97,116,104,46,109,105,110,40,80,121,44,77,97,116,104,46,109,97,120,40,45,80,121,44,105,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,45,103,41,41,44,95,61,77,97,116,104,46,109,105,110,40,77,97,116,104,46,97,98,115,40,121,41,47,104,44,111,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,41,44,98,61,95,42,40,121,60,48,63,45,49,58,49,41,59,102,111,114,40,117,61,48,59,117,60,104,59,43,43,117,41,40,108,61,118,91,112,91,117,93,61,117,93,61,43,116,40,97,91,117,93,44,117,44,97,41,41,62,48,38,38,40,100,43,61,108,41,59,102,111,114,40,110,117,108,108,33,61,110,63,112,46,115,111,114,116,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,110,40,118,91,116,93,44,118,91,101,93,41,125,41,58,110,117,108,108,33,61,101,38,38,112,46,115,111,114,116,40,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,101,40,97,91,116,93,44,97,91,110,93,41,125,41,44,117,61,48,44,102,61,100,63,40,121,45,104,42,98,41,47,100,58,48,59,117,60,104,59,43,43,117,44,103,61,115,41,99,61,112,91,117,93,44,115,61,103,43,40,40,108,61,118,91,99,93,41,62,48,63,108,42,102,58,48,41,43,98,44,118,91,99,93,61,123,100,97,116,97,58,97,91,99,93,44,105,110,100,101,120,58,117,44,118,97,108,117,101,58,108,44,115,116,97,114,116,65,110,103,108,101,58,103,44,101,110,100,65,110,103,108,101,58,115,44,112,97,100,65,110,103,108,101,58,95,125,59,114,101,116,117,114,110,32,118,125,114,101,116,117,114,110,32,97,46,118,97,108,117,101,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,116,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,110,63,110,58,109,121,40,43,110,41,44,97,41,58,116,125,44,97,46,115,111,114,116,86,97,108,117,101,115,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,110,61,116,44,101,61,110,117,108,108,44,97,41,58,110,125,44,97,46,115,111,114,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,101,61,116,44,110,61,110,117,108,108,44,97,41,58,101,125,44,97,46,115,116,97,114,116,65,110,103,108,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,114,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,109,121,40,43,116,41,44,97,41,58,114,125,44,97,46,101,110,100,65,110,103,108,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,105,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,109,121,40,43,116,41,44,97,41,58,105,125,44,97,46,112,97,100,65,110,103,108,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,111,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,109,121,40,43,116,41,44,97,41,58,111,125,44,97,125,44,116,46,112,105,101,99,101,119,105,115,101,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,102,111,114,40,118,97,114,32,101,61,48,44,114,61,110,46,108,101,110,103,116,104,45,49,44,105,61,110,91,48,93,44,111,61,110,101,119,32,65,114,114,97,121,40,114,60,48,63,48,58,114,41,59,101,60,114,59,41,111,91,101,93,61,116,40,105,44,105,61,110,91,43,43,101,93,41,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,77,97,116,104,46,109,97,120,40,48,44,77,97,116,104,46,109,105,110,40,114,45,49,44,77,97,116,104,46,102,108,111,111,114,40,116,42,61,114,41,41,41,59,114,101,116,117,114,110,32,111,91,110,93,40,116,45,110,41,125,125,44,116,46,112,111,105,110,116,82,97,100,105,97,108,61,74,121,44,116,46,112,111,108,121,103,111,110,65,114,101,97,61,102,117,110,99,116,105,111,110,40,116,41,123,102,111,114,40,118,97,114,32,110,44,101,61,45,49,44,114,61,116,46,108,101,110,103,116,104,44,105,61,116,91,114,45,49,93,44,111,61,48,59,43,43,101,60,114,59,41,110,61,105,44,105,61,116,91,101,93,44,111,43,61,110,91,49,93,42,105,91,48,93,45,110,91,48,93,42,105,91,49,93,59,114,101,116,117,114,110,32,111,47,50,125,44,116,46,112,111,108,121,103,111,110,67,101,110,116,114,111,105,100,61,102,117,110,99,116,105,111,110,40,116,41,123,102,111,114,40,118,97,114,32,110,44,101,44,114,61,45,49,44,105,61,116,46,108,101,110,103,116,104,44,111,61,48,44,97,61,48,44,117,61,116,91,105,45,49,93,44,99,61,48,59,43,43,114,60,105,59,41,110,61,117,44,117,61,116,91,114,93,44,99,43,61,101,61,110,91,48,93,42,117,91,49,93,45,117,91,48,93,42,110,91,49,93,44,111,43,61,40,110,91,48,93,43,117,91,48,93,41,42,101,44,97,43,61,40,110,91,49,93,43,117,91,49,93,41,42,101,59,114,101,116,117,114,110,91,111,47,40,99,42,61,51,41,44,97,47,99,93,125,44,116,46,112,111,108,121,103,111,110,67,111,110,116,97,105,110,115,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,102,111,114,40,118,97,114,32,101,44,114,44,105,61,116,46,108,101,110,103,116,104,44,111,61,116,91,105,45,49,93,44,97,61,110,91,48,93,44,117,61,110,91,49,93,44,99,61,111,91,48,93,44,102,61,111,91,49,93,44,115,61,33,49,44,108,61,48,59,108,60,105,59,43,43,108,41,101,61,40,111,61,116,91,108,93,41,91,48,93,44,40,114,61,111,91,49,93,41,62,117,33,61,102,62,117,38,38,97,60,40,99,45,101,41,42,40,117,45,114,41,47,40,102,45,114,41,43,101,38,38,40,115,61,33,115,41,44,99,61,101,44,102,61,114,59,114,101,116,117,114,110,32,115,125,44,116,46,112,111,108,121,103,111,110,72,117,108,108,61,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,40,101,61,116,46,108,101,110,103,116,104,41,60,51,41,114,101,116,117,114,110,32,110,117,108,108,59,118,97,114,32,110,44,101,44,114,61,110,101,119,32,65,114,114,97,121,40,101,41,44,105,61,110,101,119,32,65,114,114,97,121,40,101,41,59,102,111,114,40,110,61,48,59,110,60,101,59,43,43,110,41,114,91,110,93,61,91,43,116,91,110,93,91,48,93,44,43,116,91,110,93,91,49,93,44,110,93,59,102,111,114,40,114,46,115,111,114,116,40,109,104,41,44,110,61,48,59,110,60,101,59,43,43,110,41,105,91,110,93,61,91,114,91,110,93,91,48,93,44,45,114,91,110,93,91,49,93,93,59,118,97,114,32,111,61,120,104,40,114,41,44,97,61,120,104,40,105,41,44,117,61,97,91,48,93,61,61,61,111,91,48,93,44,99,61,97,91,97,46,108,101,110,103,116,104,45,49,93,61,61,61,111,91,111,46,108,101,110,103,116,104,45,49,93,44,102,61,91,93,59,102,111,114,40,110,61,111,46,108,101,110,103,116,104,45,49,59,110,62,61,48,59,45,45,110,41,102,46,112,117,115,104,40,116,91,114,91,111,91,110,93,93,91,50,93,93,41,59,102,111,114,40,110,61,43,117,59,110,60,97,46,108,101,110,103,116,104,45,99,59,43,43,110,41,102,46,112,117,115,104,40,116,91,114,91,97,91,110,93,93,91,50,93,93,41,59,114,101,116,117,114,110,32,102,125,44,116,46,112,111,108,121,103,111,110,76,101,110,103,116,104,61,102,117,110,99,116,105,111,110,40,116,41,123,102,111,114,40,118,97,114,32,110,44,101,44,114,61,45,49,44,105,61,116,46,108,101,110,103,116,104,44,111,61,116,91,105,45,49,93,44,97,61,111,91,48,93,44,117,61,111,91,49,93,44,99,61,48,59,43,43,114,60,105,59,41,110,61,97,44,101,61,117,44,110,45,61,97,61,40,111,61,116,91,114,93,41,91,48,93,44,101,45,61,117,61,111,91,49,93,44,99,43,61,77,97,116,104,46,115,113,114,116,40,110,42,110,43,101,42,101,41,59,114,101,116,117,114,110,32,99,125,44,116,46,112,114,101,99,105,115,105,111,110,70,105,120,101,100,61,36,97,44,116,46,112,114,101,99,105,115,105,111,110,80,114,101,102,105,120,61,87,97,44,116,46,112,114,101,99,105,115,105,111,110,82,111,117,110,100,61,90,97,44,116,46,113,117,97,100,116,114,101,101,61,119,97,44,116,46,113,117,97,110,116,105,108,101,61,78,44,116,46,113,117,97,110,116,105,122,101,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,102,111,114,40,118,97,114,32,101,61,110,101,119,32,65,114,114,97,121,40,110,41,44,114,61,48,59,114,60,110,59,43,43,114,41,101,91,114,93,61,116,40,114,47,40,110,45,49,41,41,59,114,101,116,117,114,110,32,101,125,44,116,46,114,97,100,105,97,108,65,114,101,97,61,75,121,44,116,46,114,97,100,105,97,108,76,105,110,101,61,81,121,44,116,46,114,97,110,100,111,109,66,97,116,101,115,61,83,104,44,116,46,114,97,110,100,111,109,69,120,112,111,110,101,110,116,105,97,108,61,107,104,44,116,46,114,97,110,100,111,109,73,114,119,105,110,72,97,108,108,61,65,104,44,116,46,114,97,110,100,111,109,76,111,103,78,111,114,109,97,108,61,84,104,44,116,46,114,97,110,100,111,109,78,111,114,109,97,108,61,78,104,44,116,46,114,97,110,100,111,109,85,110,105,102,111,114,109,61,77,104,44,116,46,114,97,110,103,101,61,103,44,116,46,114,103,98,61,95,110,44,116,46,114,105,98,98,111,110,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,101,111,44,110,61,114,111,44,101,61,105,111,44,114,61,111,111,44,105,61,97,111,44,111,61,110,117,108,108,59,102,117,110,99,116,105,111,110,32,97,40,41,123,118,97,114,32,97,44,117,61,87,105,46,99,97,108,108,40,97,114,103,117,109,101,110,116,115,41,44,99,61,116,46,97,112,112,108,121,40,116,104,105,115,44,117,41,44,102,61,110,46,97,112,112,108,121,40,116,104,105,115,44,117,41,44,115,61,43,101,46,97,112,112,108,121,40,116,104,105,115,44,40,117,91,48,93,61,99,44,117,41,41,44,108,61,114,46,97,112,112,108,121,40,116,104,105,115,44,117,41,45,88,105,44,104,61,105,46,97,112,112,108,121,40,116,104,105,115,44,117,41,45,88,105,44,100,61,115,42,73,105,40,108,41,44,112,61,115,42,72,105,40,108,41,44,118,61,43,101,46,97,112,112,108,121,40,116,104,105,115,44,40,117,91,48,93,61,102,44,117,41,41,44,103,61,114,46,97,112,112,108,121,40,116,104,105,115,44,117,41,45,88,105,44,121,61,105,46,97,112,112,108,121,40,116,104,105,115,44,117,41,45,88,105,59,105,102,40,111,124,124,40,111,61,97,61,110,111,40,41,41,44,111,46,109,111,118,101,84,111,40,100,44,112,41,44,111,46,97,114,99,40,48,44,48,44,115,44,108,44,104,41,44,108,61,61,61,103,38,38,104,61,61,61,121,124,124,40,111,46,113,117,97,100,114,97,116,105,99,67,117,114,118,101,84,111,40,48,44,48,44,118,42,73,105,40,103,41,44,118,42,72,105,40,103,41,41,44,111,46,97,114,99,40,48,44,48,44,118,44,103,44,121,41,41,44,111,46,113,117,97,100,114,97,116,105,99,67,117,114,118,101,84,111,40,48,44,48,44,100,44,112,41,44,111,46,99,108,111,115,101,80,97,116,104,40,41,44,97,41,114,101,116,117,114,110,32,111,61,110,117,108,108,44,97,43,34,34,124,124,110,117,108,108,125,114,101,116,117,114,110,32,97,46,114,97,100,105,117,115,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,101,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,90,105,40,43,116,41,44,97,41,58,101,125,44,97,46,115,116,97,114,116,65,110,103,108,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,114,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,90,105,40,43,116,41,44,97,41,58,114,125,44,97,46,101,110,100,65,110,103,108,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,105,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,90,105,40,43,116,41,44,97,41,58,105,125,44,97,46,115,111,117,114,99,101,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,116,61,110,44,97,41,58,116,125,44,97,46,116,97,114,103,101,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,110,61,116,44,97,41,58,110,125,44,97,46,99,111,110,116,101,120,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,111,61,110,117,108,108,61,61,116,63,110,117,108,108,58,116,44,97,41,58,111,125,44,97,125,44,116,46,115,99,97,108,101,66,97,110,100,61,76,104,44,116,46,115,99,97,108,101,68,105,118,101,114,103,105,110,103,61,102,117,110,99,116,105,111,110,32,116,40,41,123,118,97,114,32,110,61,36,104,40,36,118,40,41,40,66,104,41,41,59,114,101,116,117,114,110,32,110,46,99,111,112,121,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,86,118,40,110,44,116,40,41,41,125,44,67,104,46,97,112,112,108,121,40,110,44,97,114,103,117,109,101,110,116,115,41,125,44,116,46,115,99,97,108,101,68,105,118,101,114,103,105,110,103,76,111,103,61,102,117,110,99,116,105,111,110,32,116,40,41,123,118,97,114,32,110,61,101,100,40,36,118,40,41,41,46,100,111,109,97,105,110,40,91,46,49,44,49,44,49,48,93,41,59,114,101,116,117,114,110,32,110,46,99,111,112,121,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,86,118,40,110,44,116,40,41,41,46,98,97,115,101,40,110,46,98,97,115,101,40,41,41,125,44,67,104,46,97,112,112,108,121,40,110,44,97,114,103,117,109,101,110,116,115,41,125,44,116,46,115,99,97,108,101,68,105,118,101,114,103,105,110,103,80,111,119,61,87,118,44,116,46,115,99,97,108,101,68,105,118,101,114,103,105,110,103,83,113,114,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,87,118,46,97,112,112,108,121,40,110,117,108,108,44,97,114,103,117,109,101,110,116,115,41,46,101,120,112,111,110,101,110,116,40,46,53,41,125,44,116,46,115,99,97,108,101,68,105,118,101,114,103,105,110,103,83,121,109,108,111,103,61,102,117,110,99,116,105,111,110,32,116,40,41,123,118,97,114,32,110,61,111,100,40,36,118,40,41,41,59,114,101,116,117,114,110,32,110,46,99,111,112,121,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,86,118,40,110,44,116,40,41,41,46,99,111,110,115,116,97,110,116,40,110,46,99,111,110,115,116,97,110,116,40,41,41,125,44,67,104,46,97,112,112,108,121,40,110,44,97,114,103,117,109,101,110,116,115,41,125,44,116,46,115,99,97,108,101,73,100,101,110,116,105,116,121,61,102,117,110,99,116,105,111,110,32,116,40,110,41,123,118,97,114,32,101,59,102,117,110,99,116,105,111,110,32,114,40,116,41,123,114,101,116,117,114,110,32,105,115,78,97,78,40,116,61,43,116,41,63,101,58,116,125,114,101,116,117,114,110,32,114,46,105,110,118,101,114,116,61,114,44,114,46,100,111,109,97,105,110,61,114,46,114,97,110,103,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,110,61,122,104,46,99,97,108,108,40,116,44,85,104,41,44,114,41,58,110,46,115,108,105,99,101,40,41,125,44,114,46,117,110,107,110,111,119,110,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,101,61,116,44,114,41,58,101,125,44,114,46,99,111,112,121,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,40,110,41,46,117,110,107,110,111,119,110,40,101,41,125,44,110,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,122,104,46,99,97,108,108,40,110,44,85,104,41,58,91,48,44,49,93,44,36,104,40,114,41,125,44,116,46,115,99,97,108,101,73,109,112,108,105,99,105,116,61,68,104,44,116,46,115,99,97,108,101,76,105,110,101,97,114,61,102,117,110,99,116,105,111,110,32,116,40,41,123,118,97,114,32,110,61,86,104,40,66,104,44,66,104,41,59,114,101,116,117,114,110,32,110,46,99,111,112,121,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,106,104,40,110,44,116,40,41,41,125,44,69,104,46,97,112,112,108,121,40,110,44,97,114,103,117,109,101,110,116,115,41,44,36,104,40,110,41,125,44,116,46,115,99,97,108,101,76,111,103,61,102,117,110,99,116,105,111,110,32,116,40,41,123,118,97,114,32,110,61,101,100,40,88,104,40,41,41,46,100,111,109,97,105,110,40,91,49,44,49,48,93,41,59,114,101,116,117,114,110,32,110,46,99,111,112,121,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,106,104,40,110,44,116,40,41,41,46,98,97,115,101,40,110,46,98,97,115,101,40,41,41,125,44,69,104,46,97,112,112,108,121,40,110,44,97,114,103,117,109,101,110,116,115,41,44,110,125,44,116,46,115,99,97,108,101,79,114,100,105,110,97,108,61,113,104,44,116,46,115,99,97,108,101,80,111,105,110,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,116,40,110,41,123,118,97,114,32,101,61,110,46,99,111,112,121,59,114,101,116,117,114,110,32,110,46,112,97,100,100,105,110,103,61,110,46,112,97,100,100,105,110,103,79,117,116,101,114,44,100,101,108,101,116,101,32,110,46,112,97,100,100,105,110,103,73,110,110,101,114,44,100,101,108,101,116,101,32,110,46,112,97,100,100,105,110,103,79,117,116,101,114,44,110,46,99,111,112,121,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,40,101,40,41,41,125,44,110,125,40,76,104,46,97,112,112,108,121,40,110,117,108,108,44,97,114,103,117,109,101,110,116,115,41,46,112,97,100,100,105,110,103,73,110,110,101,114,40,49,41,41,125,44,116,46,115,99,97,108,101,80,111,119,61,115,100,44,116,46,115,99,97,108,101,81,117,97,110,116,105,108,101,61,102,117,110,99,116,105,111,110,32,116,40,41,123,118,97,114,32,101,44,114,61,91,93,44,111,61,91,93,44,97,61,91,93,59,102,117,110,99,116,105,111,110,32,117,40,41,123,118,97,114,32,116,61,48,44,110,61,77,97,116,104,46,109,97,120,40,49,44,111,46,108,101,110,103,116,104,41,59,102,111,114,40,97,61,110,101,119,32,65,114,114,97,121,40,110,45,49,41,59,43,43,116,60,110,59,41,97,91,116,45,49,93,61,78,40,114,44,116,47,110,41,59,114,101,116,117,114,110,32,99,125,102,117,110,99,116,105,111,110,32,99,40,116,41,123,114,101,116,117,114,110,32,105,115,78,97,78,40,116,61,43,116,41,63,101,58,111,91,105,40,97,44,116,41,93,125,114,101,116,117,114,110,32,99,46,105,110,118,101,114,116,69,120,116,101,110,116,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,111,46,105,110,100,101,120,79,102,40,116,41,59,114,101,116,117,114,110,32,110,60,48,63,91,78,97,78,44,78,97,78,93,58,91,110,62,48,63,97,91,110,45,49,93,58,114,91,48,93,44,110,60,97,46,108,101,110,103,116,104,63,97,91,110,93,58,114,91,114,46,108,101,110,103,116,104,45,49,93,93,125,44,99,46,100,111,109,97,105,110,61,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,33,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,114,101,116,117,114,110,32,114,46,115,108,105,99,101,40,41,59,114,61,91,93,59,102,111,114,40,118,97,114,32,101,44,105,61,48,44,111,61,116,46,108,101,110,103,116,104,59,105,60,111,59,43,43,105,41,110,117,108,108,61,61,40,101,61,116,91,105,93,41,124,124,105,115,78,97,78,40,101,61,43,101,41,124,124,114,46,112,117,115,104,40,101,41,59,114,101,116,117,114,110,32,114,46,115,111,114,116,40,110,41,44,117,40,41,125,44,99,46,114,97,110,103,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,111,61,82,104,46,99,97,108,108,40,116,41,44,117,40,41,41,58,111,46,115,108,105,99,101,40,41,125,44,99,46,117,110,107,110,111,119,110,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,101,61,116,44,99,41,58,101,125,44,99,46,113,117,97,110,116,105,108,101,115,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,97,46,115,108,105,99,101,40,41,125,44,99,46,99,111,112,121,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,40,41,46,100,111,109,97,105,110,40,114,41,46,114,97,110,103,101,40,111,41,46,117,110,107,110,111,119,110,40,101,41,125,44,69,104,46,97,112,112,108,121,40,99,44,97,114,103,117,109,101,110,116,115,41,125,44,116,46,115,99,97,108,101,81,117,97,110,116,105,122,101,61,102,117,110,99,116,105,111,110,32,116,40,41,123,118,97,114,32,110,44,101,61,48,44,114,61,49,44,111,61,49,44,97,61,91,46,53,93,44,117,61,91,48,44,49,93,59,102,117,110,99,116,105,111,110,32,99,40,116,41,123,114,101,116,117,114,110,32,116,60,61,116,63,117,91,105,40,97,44,116,44,48,44,111,41,93,58,110,125,102,117,110,99,116,105,111,110,32,102,40,41,123,118,97,114,32,116,61,45,49,59,102,111,114,40,97,61,110,101,119,32,65,114,114,97,121,40,111,41,59,43,43,116,60,111,59,41,97,91,116,93,61,40,40,116,43,49,41,42,114,45,40,116,45,111,41,42,101,41,47,40,111,43,49,41,59,114,101,116,117,114,110,32,99,125,114,101,116,117,114,110,32,99,46,100,111,109,97,105,110,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,101,61,43,116,91,48,93,44,114,61,43,116,91,49,93,44,102,40,41,41,58,91,101,44,114,93,125,44,99,46,114,97,110,103,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,111,61,40,117,61,82,104,46,99,97,108,108,40,116,41,41,46,108,101,110,103,116,104,45,49,44,102,40,41,41,58,117,46,115,108,105,99,101,40,41,125,44,99,46,105,110,118,101,114,116,69,120,116,101,110,116,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,117,46,105,110,100,101,120,79,102,40,116,41,59,114,101,116,117,114,110,32,110,60,48,63,91,78,97,78,44,78,97,78,93,58,110,60,49,63,91,101,44,97,91,48,93,93,58,110,62,61,111,63,91,97,91,111,45,49,93,44,114,93,58,91,97,91,110,45,49,93,44,97,91,110,93,93,125,44,99,46,117,110,107,110,111,119,110,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,110,61,116,44,99,41,58,99,125,44,99,46,116,104,114,101,115,104,111,108,100,115,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,97,46,115,108,105,99,101,40,41,125,44,99,46,99,111,112,121,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,40,41,46,100,111,109,97,105,110,40,91,101,44,114,93,41,46,114,97,110,103,101,40,117,41,46,117,110,107,110,111,119,110,40,110,41,125,44,69,104,46,97,112,112,108,121,40,36,104,40,99,41,44,97,114,103,117,109,101,110,116,115,41,125,44,116,46,115,99,97,108,101,83,101,113,117,101,110,116,105,97,108,61,102,117,110,99,116,105,111,110,32,116,40,41,123,118,97,114,32,110,61,36,104,40,88,118,40,41,40,66,104,41,41,59,114,101,116,117,114,110,32,110,46,99,111,112,121,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,86,118,40,110,44,116,40,41,41,125,44,67,104,46,97,112,112,108,121,40,110,44,97,114,103,117,109,101,110,116,115,41,125,44,116,46,115,99,97,108,101,83,101,113,117,101,110,116,105,97,108,76,111,103,61,102,117,110,99,116,105,111,110,32,116,40,41,123,118,97,114,32,110,61,101,100,40,88,118,40,41,41,46,100,111,109,97,105,110,40,91,49,44,49,48,93,41,59,114,101,116,117,114,110,32,110,46,99,111,112,121,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,86,118,40,110,44,116,40,41,41,46,98,97,115,101,40,110,46,98,97,115,101,40,41,41,125,44,67,104,46,97,112,112,108,121,40,110,44,97,114,103,117,109,101,110,116,115,41,125,44,116,46,115,99,97,108,101,83,101,113,117,101,110,116,105,97,108,80,111,119,61,71,118,44,116,46,115,99,97,108,101,83,101,113,117,101,110,116,105,97,108,81,117,97,110,116,105,108,101,61,102,117,110,99,116,105,111,110,32,116,40,41,123,118,97,114,32,101,61,91,93,44,114,61,66,104,59,102,117,110,99,116,105,111,110,32,111,40,116,41,123,105,102,40,33,105,115,78,97,78,40,116,61,43,116,41,41,114,101,116,117,114,110,32,114,40,40,105,40,101,44,116,41,45,49,41,47,40,101,46,108,101,110,103,116,104,45,49,41,41,125,114,101,116,117,114,110,32,111,46,100,111,109,97,105,110,61,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,33,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,114,101,116,117,114,110,32,101,46,115,108,105,99,101,40,41,59,101,61,91,93,59,102,111,114,40,118,97,114,32,114,44,105,61,48,44,97,61,116,46,108,101,110,103,116,104,59,105,60,97,59,43,43,105,41,110,117,108,108,61,61,40,114,61,116,91,105,93,41,124,124,105,115,78,97,78,40,114,61,43,114,41,124,124,101,46,112,117,115,104,40,114,41,59,114,101,116,117,114,110,32,101,46,115,111,114,116,40,110,41,44,111,125,44,111,46,105,110,116,101,114,112,111,108,97,116,111,114,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,114,61,116,44,111,41,58,114,125,44,111,46,99,111,112,121,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,40,114,41,46,100,111,109,97,105,110,40,101,41,125,44,67,104,46,97,112,112,108,121,40,111,44,97,114,103,117,109,101,110,116,115,41,125,44,116,46,115,99,97,108,101,83,101,113,117,101,110,116,105,97,108,83,113,114,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,71,118,46,97,112,112,108,121,40,110,117,108,108,44,97,114,103,117,109,101,110,116,115,41,46,101,120,112,111,110,101,110,116,40,46,53,41,125,44,116,46,115,99,97,108,101,83,101,113,117,101,110,116,105,97,108,83,121,109,108,111,103,61,102,117,110,99,116,105,111,110,32,116,40,41,123,118,97,114,32,110,61,111,100,40,88,118,40,41,41,59,114,101,116,117,114,110,32,110,46,99,111,112,121,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,86,118,40,110,44,116,40,41,41,46,99,111,110,115,116,97,110,116,40,110,46,99,111,110,115,116,97,110,116,40,41,41,125,44,67,104,46,97,112,112,108,121,40,110,44,97,114,103,117,109,101,110,116,115,41,125,44,116,46,115,99,97,108,101,83,113,114,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,115,100,46,97,112,112,108,121,40,110,117,108,108,44,97,114,103,117,109,101,110,116,115,41,46,101,120,112,111,110,101,110,116,40,46,53,41,125,44,116,46,115,99,97,108,101,83,121,109,108,111,103,61,102,117,110,99,116,105,111,110,32,116,40,41,123,118,97,114,32,110,61,111,100,40,88,104,40,41,41,59,114,101,116,117,114,110,32,110,46,99,111,112,121,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,106,104,40,110,44,116,40,41,41,46,99,111,110,115,116,97,110,116,40,110,46,99,111,110,115,116,97,110,116,40,41,41,125,44,69,104,46,97,112,112,108,121,40,110,44,97,114,103,117,109,101,110,116,115,41,125,44,116,46,115,99,97,108,101,84,104,114,101,115,104,111,108,100,61,102,117,110,99,116,105,111,110,32,116,40,41,123,118,97,114,32,110,44,101,61,91,46,53,93,44,114,61,91,48,44,49,93,44,111,61,49,59,102,117,110,99,116,105,111,110,32,97,40,116,41,123,114,101,116,117,114,110,32,116,60,61,116,63,114,91,105,40,101,44,116,44,48,44,111,41,93,58,110,125,114,101,116,117,114,110,32,97,46,100,111,109,97,105,110,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,101,61,82,104,46,99,97,108,108,40,116,41,44,111,61,77,97,116,104,46,109,105,110,40,101,46,108,101,110,103,116,104,44,114,46,108,101,110,103,116,104,45,49,41,44,97,41,58,101,46,115,108,105,99,101,40,41,125,44,97,46,114,97,110,103,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,114,61,82,104,46,99,97,108,108,40,116,41,44,111,61,77,97,116,104,46,109,105,110,40,101,46,108,101,110,103,116,104,44,114,46,108,101,110,103,116,104,45,49,41,44,97,41,58,114,46,115,108,105,99,101,40,41,125,44,97,46,105,110,118,101,114,116,69,120,116,101,110,116,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,114,46,105,110,100,101,120,79,102,40,116,41,59,114,101,116,117,114,110,91,101,91,110,45,49,93,44,101,91,110,93,93,125,44,97,46,117,110,107,110,111,119,110,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,110,61,116,44,97,41,58,110,125,44,97,46,99,111,112,121,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,40,41,46,100,111,109,97,105,110,40,101,41,46,114,97,110,103,101,40,114,41,46,117,110,107,110,111,119,110,40,110,41,125,44,69,104,46,97,112,112,108,121,40,97,44,97,114,103,117,109,101,110,116,115,41,125,44,116,46,115,99,97,108,101,84,105,109,101,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,69,104,46,97,112,112,108,121,40,106,118,40,72,100,44,89,100,44,83,100,44,78,100,44,119,100,44,109,100,44,95,100,44,112,100,44,116,46,116,105,109,101,70,111,114,109,97,116,41,46,100,111,109,97,105,110,40,91,110,101,119,32,68,97,116,101,40,50,101,51,44,48,44,49,41,44,110,101,119,32,68,97,116,101,40,50,101,51,44,48,44,50,41,93,41,44,97,114,103,117,109,101,110,116,115,41,125,44,116,46,115,99,97,108,101,85,116,99,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,69,104,46,97,112,112,108,121,40,106,118,40,112,112,44,104,112,44,75,100,44,87,100,44,71,100,44,88,100,44,95,100,44,112,100,44,116,46,117,116,99,70,111,114,109,97,116,41,46,100,111,109,97,105,110,40,91,68,97,116,101,46,85,84,67,40,50,101,51,44,48,44,49,41,44,68,97,116,101,46,85,84,67,40,50,101,51,44,48,44,50,41,93,41,44,97,114,103,117,109,101,110,116,115,41,125,44,116,46,115,99,97,110,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,105,102,40,114,61,116,46,108,101,110,103,116,104,41,123,118,97,114,32,114,44,105,44,111,61,48,44,97,61,48,44,117,61,116,91,97,93,59,102,111,114,40,110,117,108,108,61,61,101,38,38,40,101,61,110,41,59,43,43,111,60,114,59,41,40,101,40,105,61,116,91,111,93,44,117,41,60,48,124,124,48,33,61,61,101,40,117,44,117,41,41,38,38,40,117,61,105,44,97,61,111,41,59,114,101,116,117,114,110,32,48,61,61,61,101,40,117,44,117,41,63,97,58,118,111,105,100,32,48,125,125,44,116,46,115,99,104,101,109,101,65,99,99,101,110,116,61,75,118,44,116,46,115,99,104,101,109,101,66,108,117,101,115,61,90,103,44,116,46,115,99,104,101,109,101,66,114,66,71,61,99,103,44,116,46,115,99,104,101,109,101,66,117,71,110,61,65,103,44,116,46,115,99,104,101,109,101,66,117,80,117,61,107,103,44,116,46,115,99,104,101,109,101,67,97,116,101,103,111,114,121,49,48,61,81,118,44,116,46,115,99,104,101,109,101,68,97,114,107,50,61,74,118,44,116,46,115,99,104,101,109,101,71,110,66,117,61,67,103,44,116,46,115,99,104,101,109,101,71,114,101,101,110,115,61,75,103,44,116,46,115,99,104,101,109,101,71,114,101,121,115,61,116,121,44,116,46,115,99,104,101,109,101,79,114,82,100,61,122,103,44,116,46,115,99,104,101,109,101,79,114,97,110,103,101,115,61,97,121,44,116,46,115,99,104,101,109,101,80,82,71,110,61,115,103,44,116,46,115,99,104,101,109,101,80,97,105,114,101,100,61,116,103,44,116,46,115,99,104,101,109,101,80,97,115,116,101,108,49,61,110,103,44,116,46,115,99,104,101,109,101,80,97,115,116,101,108,50,61,101,103,44,116,46,115,99,104,101,109,101,80,105,89,71,61,104,103,44,116,46,115,99,104,101,109,101,80,117,66,117,61,76,103,44,116,46,115,99,104,101,109,101,80,117,66,117,71,110,61,68,103,44,116,46,115,99,104,101,109,101,80,117,79,114,61,112,103,44,116,46,115,99,104,101,109,101,80,117,82,100,61,79,103,44,116,46,115,99,104,101,109,101,80,117,114,112,108,101,115,61,101,121,44,116,46,115,99,104,101,109,101,82,100,66,117,61,103,103,44,116,46,115,99,104,101,109,101,82,100,71,121,61,95,103,44,116,46,115,99,104,101,109,101,82,100,80,117,61,70,103,44,116,46,115,99,104,101,109,101,82,100,89,108,66,117,61,109,103,44,116,46,115,99,104,101,109,101,82,100,89,108,71,110,61,119,103,44,116,46,115,99,104,101,109,101,82,101,100,115,61,105,121,44,116,46,115,99,104,101,109,101,83,101,116,49,61,114,103,44,116,46,115,99,104,101,109,101,83,101,116,50,61,105,103,44,116,46,115,99,104,101,109,101,83,101,116,51,61,111,103,44,116,46,115,99,104,101,109,101,83,112,101,99,116,114,97,108,61,78,103,44,116,46,115,99,104,101,109,101,84,97,98,108,101,97,117,49,48,61,97,103,44,116,46,115,99,104,101,109,101,89,108,71,110,61,106,103,44,116,46,115,99,104,101,109,101,89,108,71,110,66,117,61,73,103,44,116,46,115,99,104,101,109,101,89,108,79,114,66,114,61,86,103,44,116,46,115,99,104,101,109,101,89,108,79,114,82,100,61,36,103,44,116,46,115,101,108,101,99,116,61,82,116,44,116,46,115,101,108,101,99,116,65,108,108,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,116,63,110,101,119,32,80,116,40,91,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,116,41,93,44,91,100,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,93,41,58,110,101,119,32,80,116,40,91,110,117,108,108,61,61,116,63,91,93,58,116,93,44,67,116,41,125,44,116,46,115,101,108,101,99,116,105,111,110,61,122,116,44,116,46,115,101,108,101,99,116,111,114,61,75,44,116,46,115,101,108,101,99,116,111,114,65,108,108,61,116,116,44,116,46,115,101,116,61,103,111,44,116,46,115,104,117,102,102,108,101,61,102,117,110,99,116,105,111,110,40,116,44,110,44,101,41,123,102,111,114,40,118,97,114,32,114,44,105,44,111,61,40,110,117,108,108,61,61,101,63,116,46,108,101,110,103,116,104,58,101,41,45,40,110,61,110,117,108,108,61,61,110,63,48,58,43,110,41,59,111,59,41,105,61,77,97,116,104,46,114,97,110,100,111,109,40,41,42,111,45,45,124,48,44,114,61,116,91,111,43,110,93,44,116,91,111,43,110,93,61,116,91,105,43,110,93,44,116,91,105,43,110,93,61,114,59,114,101,116,117,114,110,32,116,125,44,116,46,115,116,97,99,107,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,109,121,40,91,93,41,44,110,61,114,98,44,101,61,101,98,44,114,61,105,98,59,102,117,110,99,116,105,111,110,32,105,40,105,41,123,118,97,114,32,111,44,97,44,117,61,116,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,44,99,61,105,46,108,101,110,103,116,104,44,102,61,117,46,108,101,110,103,116,104,44,115,61,110,101,119,32,65,114,114,97,121,40,102,41,59,102,111,114,40,111,61,48,59,111,60,102,59,43,43,111,41,123,102,111,114,40,118,97,114,32,108,44,104,61,117,91,111,93,44,100,61,115,91,111,93,61,110,101,119,32,65,114,114,97,121,40,99,41,44,112,61,48,59,112,60,99,59,43,43,112,41,100,91,112,93,61,108,61,91,48,44,43,114,40,105,91,112,93,44,104,44,112,44,105,41,93,44,108,46,100,97,116,97,61,105,91,112,93,59,100,46,107,101,121,61,104,125,102,111,114,40,111,61,48,44,97,61,110,40,115,41,59,111,60,102,59,43,43,111,41,115,91,97,91,111,93,93,46,105,110,100,101,120,61,111,59,114,101,116,117,114,110,32,101,40,115,44,97,41,44,115,125,114,101,116,117,114,110,32,105,46,107,101,121,115,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,116,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,110,63,110,58,109,121,40,116,95,46,99,97,108,108,40,110,41,41,44,105,41,58,116,125,44,105,46,118,97,108,117,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,114,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,109,121,40,43,116,41,44,105,41,58,114,125,44,105,46,111,114,100,101,114,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,110,61,110,117,108,108,61,61,116,63,114,98,58,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,109,121,40,116,95,46,99,97,108,108,40,116,41,41,44,105,41,58,110,125,44,105,46,111,102,102,115,101,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,101,61,110,117,108,108,61,61,116,63,101,98,58,116,44,105,41,58,101,125,44,105,125,44,116,46,115,116,97,99,107,79,102,102,115,101,116,68,105,118,101,114,103,105,110,103,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,105,102,40,40,117,61,116,46,108,101,110,103,116,104,41,62,48,41,102,111,114,40,118,97,114,32,101,44,114,44,105,44,111,44,97,44,117,44,99,61,48,44,102,61,116,91,110,91,48,93,93,46,108,101,110,103,116,104,59,99,60,102,59,43,43,99,41,102,111,114,40,111,61,97,61,48,44,101,61,48,59,101,60,117,59,43,43,101,41,40,105,61,40,114,61,116,91,110,91,101,93,93,91,99,93,41,91,49,93,45,114,91,48,93,41,62,48,63,40,114,91,48,93,61,111,44,114,91,49,93,61,111,43,61,105,41,58,105,60,48,63,40,114,91,49,93,61,97,44,114,91,48,93,61,97,43,61,105,41,58,40,114,91,48,93,61,48,44,114,91,49,93,61,105,41,125,44,116,46,115,116,97,99,107,79,102,102,115,101,116,69,120,112,97,110,100,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,105,102,40,40,114,61,116,46,108,101,110,103,116,104,41,62,48,41,123,102,111,114,40,118,97,114,32,101,44,114,44,105,44,111,61,48,44,97,61,116,91,48,93,46,108,101,110,103,116,104,59,111,60,97,59,43,43,111,41,123,102,111,114,40,105,61,101,61,48,59,101,60,114,59,43,43,101,41,105,43,61,116,91,101,93,91,111,93,91,49,93,124,124,48,59,105,102,40,105,41,102,111,114,40,101,61,48,59,101,60,114,59,43,43,101,41,116,91,101,93,91,111,93,91,49,93,47,61,105,125,101,98,40,116,44,110,41,125,125,44,116,46,115,116,97,99,107,79,102,102,115,101,116,78,111,110,101,61,101,98,44,116,46,115,116,97,99,107,79,102,102,115,101,116,83,105,108,104,111,117,101,116,116,101,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,105,102,40,40,101,61,116,46,108,101,110,103,116,104,41,62,48,41,123,102,111,114,40,118,97,114,32,101,44,114,61,48,44,105,61,116,91,110,91,48,93,93,44,111,61,105,46,108,101,110,103,116,104,59,114,60,111,59,43,43,114,41,123,102,111,114,40,118,97,114,32,97,61,48,44,117,61,48,59,97,60,101,59,43,43,97,41,117,43,61,116,91,97,93,91,114,93,91,49,93,124,124,48,59,105,91,114,93,91,49,93,43,61,105,91,114,93,91,48,93,61,45,117,47,50,125,101,98,40,116,44,110,41,125,125,44,116,46,115,116,97,99,107,79,102,102,115,101,116,87,105,103,103,108,101,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,105,102,40,40,105,61,116,46,108,101,110,103,116,104,41,62,48,38,38,40,114,61,40,101,61,116,91,110,91,48,93,93,41,46,108,101,110,103,116,104,41,62,48,41,123,102,111,114,40,118,97,114,32,101,44,114,44,105,44,111,61,48,44,97,61,49,59,97,60,114,59,43,43,97,41,123,102,111,114,40,118,97,114,32,117,61,48,44,99,61,48,44,102,61,48,59,117,60,105,59,43,43,117,41,123,102,111,114,40,118,97,114,32,115,61,116,91,110,91,117,93,93,44,108,61,115,91,97,93,91,49,93,124,124,48,44,104,61,40,108,45,40,115,91,97,45,49,93,91,49,93,124,124,48,41,41,47,50,44,100,61,48,59,100,60,117,59,43,43,100,41,123,118,97,114,32,112,61,116,91,110,91,100,93,93,59,104,43,61,40,112,91,97,93,91,49,93,124,124,48,41,45,40,112,91,97,45,49,93,91,49,93,124,124,48,41,125,99,43,61,108,44,102,43,61,104,42,108,125,101,91,97,45,49,93,91,49,93,43,61,101,91,97,45,49,93,91,48,93,61,111,44,99,38,38,40,111,45,61,102,47,99,41,125,101,91,97,45,49,93,91,49,93,43,61,101,91,97,45,49,93,91,48,93,61,111,44,101,98,40,116,44,110,41,125,125,44,116,46,115,116,97,99,107,79,114,100,101,114,65,112,112,101,97,114,97,110,99,101,61,111,98,44,116,46,115,116,97,99,107,79,114,100,101,114,65,115,99,101,110,100,105,110,103,61,117,98,44,116,46,115,116,97,99,107,79,114,100,101,114,68,101,115,99,101,110,100,105,110,103,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,117,98,40,116,41,46,114,101,118,101,114,115,101,40,41,125,44,116,46,115,116,97,99,107,79,114,100,101,114,73,110,115,105,100,101,79,117,116,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,44,101,44,114,61,116,46,108,101,110,103,116,104,44,105,61,116,46,109,97,112,40,99,98,41,44,111,61,111,98,40,116,41,44,97,61,48,44,117,61,48,44,99,61,91,93,44,102,61,91,93,59,102,111,114,40,110,61,48,59,110,60,114,59,43,43,110,41,101,61,111,91,110,93,44,97,60,117,63,40,97,43,61,105,91,101,93,44,99,46,112,117,115,104,40,101,41,41,58,40,117,43,61,105,91,101,93,44,102,46,112,117,115,104,40,101,41,41,59,114,101,116,117,114,110,32,102,46,114,101,118,101,114,115,101,40,41,46,99,111,110,99,97,116,40,99,41,125,44,116,46,115,116,97,99,107,79,114,100,101,114,78,111,110,101,61,114,98,44,116,46,115,116,97,99,107,79,114,100,101,114,82,101,118,101,114,115,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,114,98,40,116,41,46,114,101,118,101,114,115,101,40,41,125,44,116,46,115,116,114,97,116,105,102,121,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,97,104,44,110,61,117,104,59,102,117,110,99,116,105,111,110,32,101,40,101,41,123,118,97,114,32,114,44,105,44,111,44,97,44,117,44,99,44,102,44,115,61,101,46,108,101,110,103,116,104,44,108,61,110,101,119,32,65,114,114,97,121,40,115,41,44,104,61,123,125,59,102,111,114,40,105,61,48,59,105,60,115,59,43,43,105,41,114,61,101,91,105,93,44,117,61,108,91,105,93,61,110,101,119,32,122,108,40,114,41,44,110,117,108,108,33,61,40,99,61,116,40,114,44,105,44,101,41,41,38,38,40,99,43,61,34,34,41,38,38,40,104,91,102,61,114,104,43,40,117,46,105,100,61,99,41,93,61,102,32,105,110,32,104,63,111,104,58,117,41,59,102,111,114,40,105,61,48,59,105,60,115,59,43,43,105,41,105,102,40,117,61,108,91,105,93,44,110,117,108,108,33,61,40,99,61,110,40,101,91,105,93,44,105,44,101,41,41,38,38,40,99,43,61,34,34,41,41,123,105,102,40,33,40,97,61,104,91,114,104,43,99,93,41,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,109,105,115,115,105,110,103,58,32,34,43,99,41,59,105,102,40,97,61,61,61,111,104,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,97,109,98,105,103,117,111,117,115,58,32,34,43,99,41,59,97,46,99,104,105,108,100,114,101,110,63,97,46,99,104,105,108,100,114,101,110,46,112,117,115,104,40,117,41,58,97,46,99,104,105,108,100,114,101,110,61,91,117,93,44,117,46,112,97,114,101,110,116,61,97,125,101,108,115,101,123,105,102,40,111,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,109,117,108,116,105,112,108,101,32,114,111,111,116,115,34,41,59,111,61,117,125,105,102,40,33,111,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,110,111,32,114,111,111,116,34,41,59,105,102,40,111,46,112,97,114,101,110,116,61,105,104,44,111,46,101,97,99,104,66,101,102,111,114,101,40,102,117,110,99,116,105,111,110,40,116,41,123,116,46,100,101,112,116,104,61,116,46,112,97,114,101,110,116,46,100,101,112,116,104,43,49,44,45,45,115,125,41,46,101,97,99,104,66,101,102,111,114,101,40,80,108,41,44,111,46,112,97,114,101,110,116,61,110,117,108,108,44,115,62,48,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,99,121,99,108,101,34,41,59,114,101,116,117,114,110,32,111,125,114,101,116,117,114,110,32,101,46,105,100,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,116,61,36,108,40,110,41,44,101,41,58,116,125,44,101,46,112,97,114,101,110,116,73,100,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,110,61,36,108,40,116,41,44,101,41,58,110,125,44,101,125,44,116,46,115,116,121,108,101,61,102,116,44,116,46,115,117,109,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,44,114,61,116,46,108,101,110,103,116,104,44,105,61,45,49,44,111,61,48,59,105,102,40,110,117,108,108,61,61,110,41,102,111,114,40,59,43,43,105,60,114,59,41,40,101,61,43,116,91,105,93,41,38,38,40,111,43,61,101,41,59,101,108,115,101,32,102,111,114,40,59,43,43,105,60,114,59,41,40,101,61,43,110,40,116,91,105,93,44,105,44,116,41,41,38,38,40,111,43,61,101,41,59,114,101,116,117,114,110,32,111,125,44,116,46,115,118,103,61,118,97,44,116,46,115,121,109,98,111,108,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,109,121,40,117,95,41,44,110,61,109,121,40,54,52,41,44,101,61,110,117,108,108,59,102,117,110,99,116,105,111,110,32,114,40,41,123,118,97,114,32,114,59,105,102,40,101,124,124,40,101,61,114,61,110,111,40,41,41,44,116,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,46,100,114,97,119,40,101,44,43,110,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,41,44,114,41,114,101,116,117,114,110,32,101,61,110,117,108,108,44,114,43,34,34,124,124,110,117,108,108,125,114,101,116,117,114,110,32,114,46,116,121,112,101,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,116,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,110,63,110,58,109,121,40,110,41,44,114,41,58,116,125,44,114,46,115,105,122,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,110,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,109,121,40,43,116,41,44,114,41,58,110,125,44,114,46,99,111,110,116,101,120,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,101,61,110,117,108,108,61,61,116,63,110,117,108,108,58,116,44,114,41,58,101,125,44,114,125,44,116,46,115,121,109,98,111,108,67,105,114,99,108,101,61,117,95,44,116,46,115,121,109,98,111,108,67,114,111,115,115,61,99,95,44,116,46,115,121,109,98,111,108,68,105,97,109,111,110,100,61,108,95,44,116,46,115,121,109,98,111,108,83,113,117,97,114,101,61,103,95,44,116,46,115,121,109,98,111,108,83,116,97,114,61,118,95,44,116,46,115,121,109,98,111,108,84,114,105,97,110,103,108,101,61,95,95,44,116,46,115,121,109,98,111,108,87,121,101,61,119,95,44,116,46,115,121,109,98,111,108,115,61,77,95,44,116,46,116,101,120,116,61,117,97,44,116,46,116,104,114,101,115,104,111,108,100,70,114,101,101,100,109,97,110,68,105,97,99,111,110,105,115,61,102,117,110,99,116,105,111,110,40,116,44,101,44,114,41,123,114,101,116,117,114,110,32,116,61,100,46,99,97,108,108,40,116,44,117,41,46,115,111,114,116,40,110,41,44,77,97,116,104,46,99,101,105,108,40,40,114,45,101,41,47,40,50,42,40,78,40,116,44,46,55,53,41,45,78,40,116,44,46,50,53,41,41,42,77,97,116,104,46,112,111,119,40,116,46,108,101,110,103,116,104,44,45,49,47,51,41,41,41,125,44,116,46,116,104,114,101,115,104,111,108,100,83,99,111,116,116,61,102,117,110,99,116,105,111,110,40,116,44,110,44,101,41,123,114,101,116,117,114,110,32,77,97,116,104,46,99,101,105,108,40,40,101,45,110,41,47,40,51,46,53,42,102,40,116,41,42,77,97,116,104,46,112,111,119,40,116,46,108,101,110,103,116,104,44,45,49,47,51,41,41,41,125,44,116,46,116,104,114,101,115,104,111,108,100,83,116,117,114,103,101,115,61,77,44,116,46,116,105,99,107,70,111,114,109,97,116,61,71,104,44,116,46,116,105,99,107,73,110,99,114,101,109,101,110,116,61,120,44,116,46,116,105,99,107,83,116,101,112,61,119,44,116,46,116,105,99,107,115,61,109,44,116,46,116,105,109,101,68,97,121,61,78,100,44,116,46,116,105,109,101,68,97,121,115,61,84,100,44,116,46,116,105,109,101,70,111,114,109,97,116,68,101,102,97,117,108,116,76,111,99,97,108,101,61,122,118,44,116,46,116,105,109,101,70,111,114,109,97,116,76,111,99,97,108,101,61,98,112,44,116,46,116,105,109,101,70,114,105,100,97,121,61,122,100,44,116,46,116,105,109,101,70,114,105,100,97,121,115,61,66,100,44,116,46,116,105,109,101,72,111,117,114,61,119,100,44,116,46,116,105,109,101,72,111,117,114,115,61,77,100,44,116,46,116,105,109,101,73,110,116,101,114,118,97,108,61,100,100,44,116,46,116,105,109,101,77,105,108,108,105,115,101,99,111,110,100,61,112,100,44,116,46,116,105,109,101,77,105,108,108,105,115,101,99,111,110,100,115,61,118,100,44,116,46,116,105,109,101,77,105,110,117,116,101,61,109,100,44,116,46,116,105,109,101,77,105,110,117,116,101,115,61,120,100,44,116,46,116,105,109,101,77,111,110,100,97,121,61,107,100,44,116,46,116,105,109,101,77,111,110,100,97,121,115,61,113,100,44,116,46,116,105,109,101,77,111,110,116,104,61,89,100,44,116,46,116,105,109,101,77,111,110,116,104,115,61,73,100,44,116,46,116,105,109,101,83,97,116,117,114,100,97,121,61,82,100,44,116,46,116,105,109,101,83,97,116,117,114,100,97,121,115,61,70,100,44,116,46,116,105,109,101,83,101,99,111,110,100,61,95,100,44,116,46,116,105,109,101,83,101,99,111,110,100,115,61,98,100,44,116,46,116,105,109,101,83,117,110,100,97,121,61,83,100,44,116,46,116,105,109,101,83,117,110,100,97,121,115,61,68,100,44,116,46,116,105,109,101,84,104,117,114,115,100,97,121,61,80,100,44,116,46,116,105,109,101,84,104,117,114,115,100,97,121,115,61,79,100,44,116,46,116,105,109,101,84,117,101,115,100,97,121,61,69,100,44,116,46,116,105,109,101,84,117,101,115,100,97,121,115,61,76,100,44,116,46,116,105,109,101,87,101,100,110,101,115,100,97,121,61,67,100,44,116,46,116,105,109,101,87,101,100,110,101,115,100,97,121,115,61,85,100,44,116,46,116,105,109,101,87,101,101,107,61,83,100,44,116,46,116,105,109,101,87,101,101,107,115,61,68,100,44,116,46,116,105,109,101,89,101,97,114,61,72,100,44,116,46,116,105,109,101,89,101,97,114,115,61,106,100,44,116,46,116,105,109,101,111,117,116,61,121,114,44,116,46,116,105,109,101,114,61,104,114,44,116,46,116,105,109,101,114,70,108,117,115,104,61,100,114,44,116,46,116,111,117,99,104,61,70,116,44,116,46,116,111,117,99,104,101,115,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,110,117,108,108,61,61,110,38,38,40,110,61,85,116,40,41,46,116,111,117,99,104,101,115,41,59,102,111,114,40,118,97,114,32,101,61,48,44,114,61,110,63,110,46,108,101,110,103,116,104,58,48,44,105,61,110,101,119,32,65,114,114,97,121,40,114,41,59,101,60,114,59,43,43,101,41,105,91,101,93,61,79,116,40,116,44,110,91,101,93,41,59,114,101,116,117,114,110,32,105,125,44,116,46,116,114,97,110,115,105,116,105,111,110,61,79,114,44,116,46,116,114,97,110,115,112,111,115,101,61,107,44,116,46,116,114,101,101,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,99,104,44,110,61,49,44,101,61,49,44,114,61,110,117,108,108,59,102,117,110,99,116,105,111,110,32,105,40,105,41,123,118,97,114,32,99,61,102,117,110,99,116,105,111,110,40,116,41,123,102,111,114,40,118,97,114,32,110,44,101,44,114,44,105,44,111,44,97,61,110,101,119,32,100,104,40,116,44,48,41,44,117,61,91,97,93,59,110,61,117,46,112,111,112,40,41,59,41,105,102,40,114,61,110,46,95,46,99,104,105,108,100,114,101,110,41,102,111,114,40,110,46,99,104,105,108,100,114,101,110,61,110,101,119,32,65,114,114,97,121,40,111,61,114,46,108,101,110,103,116,104,41,44,105,61,111,45,49,59,105,62,61,48,59,45,45,105,41,117,46,112,117,115,104,40,101,61,110,46,99,104,105,108,100,114,101,110,91,105,93,61,110,101,119,32,100,104,40,114,91,105,93,44,105,41,41,44,101,46,112,97,114,101,110,116,61,110,59,114,101,116,117,114,110,40,97,46,112,97,114,101,110,116,61,110,101,119,32,100,104,40,110,117,108,108,44,48,41,41,46,99,104,105,108,100,114,101,110,61,91,97,93,44,97,125,40,105,41,59,105,102,40,99,46,101,97,99,104,65,102,116,101,114,40,111,41,44,99,46,112,97,114,101,110,116,46,109,61,45,99,46,122,44,99,46,101,97,99,104,66,101,102,111,114,101,40,97,41,44,114,41,105,46,101,97,99,104,66,101,102,111,114,101,40,117,41,59,101,108,115,101,123,118,97,114,32,102,61,105,44,115,61,105,44,108,61,105,59,105,46,101,97,99,104,66,101,102,111,114,101,40,102,117,110,99,116,105,111,110,40,116,41,123,116,46,120,60,102,46,120,38,38,40,102,61,116,41,44,116,46,120,62,115,46,120,38,38,40,115,61,116,41,44,116,46,100,101,112,116,104,62,108,46,100,101,112,116,104,38,38,40,108,61,116,41,125,41,59,118,97,114,32,104,61,102,61,61,61,115,63,49,58,116,40,102,44,115,41,47,50,44,100,61,104,45,102,46,120,44,112,61,110,47,40,115,46,120,43,104,43,100,41,44,118,61,101,47,40,108,46,100,101,112,116,104,124,124,49,41,59,105,46,101,97,99,104,66,101,102,111,114,101,40,102,117,110,99,116,105,111,110,40,116,41,123,116,46,120,61,40,116,46,120,43,100,41,42,112,44,116,46,121,61,116,46,100,101,112,116,104,42,118,125,41,125,114,101,116,117,114,110,32,105,125,102,117,110,99,116,105,111,110,32,111,40,110,41,123,118,97,114,32,101,61,110,46,99,104,105,108,100,114,101,110,44,114,61,110,46,112,97,114,101,110,116,46,99,104,105,108,100,114,101,110,44,105,61,110,46,105,63,114,91,110,46,105,45,49,93,58,110,117,108,108,59,105,102,40,101,41,123,33,102,117,110,99,116,105,111,110,40,116,41,123,102,111,114,40,118,97,114,32,110,44,101,61,48,44,114,61,48,44,105,61,116,46,99,104,105,108,100,114,101,110,44,111,61,105,46,108,101,110,103,116,104,59,45,45,111,62,61,48,59,41,40,110,61,105,91,111,93,41,46,122,43,61,101,44,110,46,109,43,61,101,44,101,43,61,110,46,115,43,40,114,43,61,110,46,99,41,125,40,110,41,59,118,97,114,32,111,61,40,101,91,48,93,46,122,43,101,91,101,46,108,101,110,103,116,104,45,49,93,46,122,41,47,50,59,105,63,40,110,46,122,61,105,46,122,43,116,40,110,46,95,44,105,46,95,41,44,110,46,109,61,110,46,122,45,111,41,58,110,46,122,61,111,125,101,108,115,101,32,105,38,38,40,110,46,122,61,105,46,122,43,116,40,110,46,95,44,105,46,95,41,41,59,110,46,112,97,114,101,110,116,46,65,61,102,117,110,99,116,105,111,110,40,110,44,101,44,114,41,123,105,102,40,101,41,123,102,111,114,40,118,97,114,32,105,44,111,61,110,44,97,61,110,44,117,61,101,44,99,61,111,46,112,97,114,101,110,116,46,99,104,105,108,100,114,101,110,91,48,93,44,102,61,111,46,109,44,115,61,97,46,109,44,108,61,117,46,109,44,104,61,99,46,109,59,117,61,115,104,40,117,41,44,111,61,102,104,40,111,41,44,117,38,38,111,59,41,99,61,102,104,40,99,41,44,40,97,61,115,104,40,97,41,41,46,97,61,110,44,40,105,61,117,46,122,43,108,45,111,46,122,45,102,43,116,40,117,46,95,44,111,46,95,41,41,62,48,38,38,40,108,104,40,104,104,40,117,44,110,44,114,41,44,110,44,105,41,44,102,43,61,105,44,115,43,61,105,41,44,108,43,61,117,46,109,44,102,43,61,111,46,109,44,104,43,61,99,46,109,44,115,43,61,97,46,109,59,117,38,38,33,115,104,40,97,41,38,38,40,97,46,116,61,117,44,97,46,109,43,61,108,45,115,41,44,111,38,38,33,102,104,40,99,41,38,38,40,99,46,116,61,111,44,99,46,109,43,61,102,45,104,44,114,61,110,41,125,114,101,116,117,114,110,32,114,125,40,110,44,105,44,110,46,112,97,114,101,110,116,46,65,124,124,114,91,48,93,41,125,102,117,110,99,116,105,111,110,32,97,40,116,41,123,116,46,95,46,120,61,116,46,122,43,116,46,112,97,114,101,110,116,46,109,44,116,46,109,43,61,116,46,112,97,114,101,110,116,46,109,125,102,117,110,99,116,105,111,110,32,117,40,116,41,123,116,46,120,42,61,110,44,116,46,121,61,116,46,100,101,112,116,104,42,101,125,114,101,116,117,114,110,32,105,46,115,101,112,97,114,97,116,105,111,110,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,116,61,110,44,105,41,58,116,125,44,105,46,115,105,122,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,114,61,33,49,44,110,61,43,116,91,48,93,44,101,61,43,116,91,49,93,44,105,41,58,114,63,110,117,108,108,58,91,110,44,101,93,125,44,105,46,110,111,100,101,83,105,122,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,114,61,33,48,44,110,61,43,116,91,48,93,44,101,61,43,116,91,49,93,44,105,41,58,114,63,91,110,44,101,93,58,110,117,108,108,125,44,105,125,44,116,46,116,114,101,101,109,97,112,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,121,104,44,110,61,33,49,44,101,61,49,44,114,61,49,44,105,61,91,48,93,44,111,61,87,108,44,97,61,87,108,44,117,61,87,108,44,99,61,87,108,44,102,61,87,108,59,102,117,110,99,116,105,111,110,32,115,40,116,41,123,114,101,116,117,114,110,32,116,46,120,48,61,116,46,121,48,61,48,44,116,46,120,49,61,101,44,116,46,121,49,61,114,44,116,46,101,97,99,104,66,101,102,111,114,101,40,108,41,44,105,61,91,48,93,44,110,38,38,116,46,101,97,99,104,66,101,102,111,114,101,40,110,104,41,44,116,125,102,117,110,99,116,105,111,110,32,108,40,110,41,123,118,97,114,32,101,61,105,91,110,46,100,101,112,116,104,93,44,114,61,110,46,120,48,43,101,44,115,61,110,46,121,48,43,101,44,108,61,110,46,120,49,45,101,44,104,61,110,46,121,49,45,101,59,108,60,114,38,38,40,114,61,108,61,40,114,43,108,41,47,50,41,44,104,60,115,38,38,40,115,61,104,61,40,115,43,104,41,47,50,41,44,110,46,120,48,61,114,44,110,46,121,48,61,115,44,110,46,120,49,61,108,44,110,46,121,49,61,104,44,110,46,99,104,105,108,100,114,101,110,38,38,40,101,61,105,91,110,46,100,101,112,116,104,43,49,93,61,111,40,110,41,47,50,44,114,43,61,102,40,110,41,45,101,44,115,43,61,97,40,110,41,45,101,44,40,108,45,61,117,40,110,41,45,101,41,60,114,38,38,40,114,61,108,61,40,114,43,108,41,47,50,41,44,40,104,45,61,99,40,110,41,45,101,41,60,115,38,38,40,115,61,104,61,40,115,43,104,41,47,50,41,44,116,40,110,44,114,44,115,44,108,44,104,41,41,125,114,101,116,117,114,110,32,115,46,114,111,117,110,100,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,110,61,33,33,116,44,115,41,58,110,125,44,115,46,115,105,122,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,101,61,43,116,91,48,93,44,114,61,43,116,91,49,93,44,115,41,58,91,101,44,114,93,125,44,115,46,116,105,108,101,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,116,61,36,108,40,110,41,44,115,41,58,116,125,44,115,46,112,97,100,100,105,110,103,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,115,46,112,97,100,100,105,110,103,73,110,110,101,114,40,116,41,46,112,97,100,100,105,110,103,79,117,116,101,114,40,116,41,58,115,46,112,97,100,100,105,110,103,73,110,110,101,114,40,41,125,44,115,46,112,97,100,100,105,110,103,73,110,110,101,114,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,111,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,90,108,40,43,116,41,44,115,41,58,111,125,44,115,46,112,97,100,100,105,110,103,79,117,116,101,114,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,115,46,112,97,100,100,105,110,103,84,111,112,40,116,41,46,112,97,100,100,105,110,103,82,105,103,104,116,40,116,41,46,112,97,100,100,105,110,103,66,111,116,116,111,109,40,116,41,46,112,97,100,100,105,110,103,76,101,102,116,40,116,41,58,115,46,112,97,100,100,105,110,103,84,111,112,40,41,125,44,115,46,112,97,100,100,105,110,103,84,111,112,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,97,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,90,108,40,43,116,41,44,115,41,58,97,125,44,115,46,112,97,100,100,105,110,103,82,105,103,104,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,117,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,90,108,40,43,116,41,44,115,41,58,117,125,44,115,46,112,97,100,100,105,110,103,66,111,116,116,111,109,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,99,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,90,108,40,43,116,41,44,115,41,58,99,125,44,115,46,112,97,100,100,105,110,103,76,101,102,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,102,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,90,108,40,43,116,41,44,115,41,58,102,125,44,115,125,44,116,46,116,114,101,101,109,97,112,66,105,110,97,114,121,61,102,117,110,99,116,105,111,110,40,116,44,110,44,101,44,114,44,105,41,123,118,97,114,32,111,44,97,44,117,61,116,46,99,104,105,108,100,114,101,110,44,99,61,117,46,108,101,110,103,116,104,44,102,61,110,101,119,32,65,114,114,97,121,40,99,43,49,41,59,102,111,114,40,102,91,48,93,61,97,61,111,61,48,59,111,60,99,59,43,43,111,41,102,91,111,43,49,93,61,97,43,61,117,91,111,93,46,118,97,108,117,101,59,33,102,117,110,99,116,105,111,110,32,116,40,110,44,101,44,114,44,105,44,111,44,97,44,99,41,123,105,102,40,110,62,61,101,45,49,41,123,118,97,114,32,115,61,117,91,110,93,59,114,101,116,117,114,110,32,115,46,120,48,61,105,44,115,46,121,48,61,111,44,115,46,120,49,61,97,44,118,111,105,100,40,115,46,121,49,61,99,41,125,102,111,114,40,118,97,114,32,108,61,102,91,110,93,44,104,61,114,47,50,43,108,44,100,61,110,43,49,44,112,61,101,45,49,59,100,60,112,59,41,123,118,97,114,32,118,61,100,43,112,62,62,62,49,59,102,91,118,93,60,104,63,100,61,118,43,49,58,112,61,118,125,104,45,102,91,100,45,49,93,60,102,91,100,93,45,104,38,38,110,43,49,60,100,38,38,45,45,100,59,118,97,114,32,103,61,102,91,100,93,45,108,44,121,61,114,45,103,59,105,102,40,97,45,105,62,99,45,111,41,123,118,97,114,32,95,61,40,105,42,121,43,97,42,103,41,47,114,59,116,40,110,44,100,44,103,44,105,44,111,44,95,44,99,41,44,116,40,100,44,101,44,121,44,95,44,111,44,97,44,99,41,125,101,108,115,101,123,118,97,114,32,98,61,40,111,42,121,43,99,42,103,41,47,114,59,116,40,110,44,100,44,103,44,105,44,111,44,97,44,98,41,44,116,40,100,44,101,44,121,44,105,44,98,44,97,44,99,41,125,125,40,48,44,99,44,116,46,118,97,108,117,101,44,110,44,101,44,114,44,105,41,125,44,116,46,116,114,101,101,109,97,112,68,105,99,101,61,101,104,44,116,46,116,114,101,101,109,97,112,82,101,115,113,117,97,114,105,102,121,61,95,104,44,116,46,116,114,101,101,109,97,112,83,108,105,99,101,61,112,104,44,116,46,116,114,101,101,109,97,112,83,108,105,99,101,68,105,99,101,61,102,117,110,99,116,105,111,110,40,116,44,110,44,101,44,114,44,105,41,123,40,49,38,116,46,100,101,112,116,104,63,112,104,58,101,104,41,40,116,44,110,44,101,44,114,44,105,41,125,44,116,46,116,114,101,101,109,97,112,83,113,117,97,114,105,102,121,61,121,104,44,116,46,116,115,118,61,115,97,44,116,46,116,115,118,70,111,114,109,97,116,61,75,111,44,116,46,116,115,118,70,111,114,109,97,116,66,111,100,121,61,74,111,44,116,46,116,115,118,70,111,114,109,97,116,82,111,119,61,110,97,44,116,46,116,115,118,70,111,114,109,97,116,82,111,119,115,61,116,97,44,116,46,116,115,118,70,111,114,109,97,116,86,97,108,117,101,61,101,97,44,116,46,116,115,118,80,97,114,115,101,61,90,111,44,116,46,116,115,118,80,97,114,115,101,82,111,119,115,61,81,111,44,116,46,117,116,99,68,97,121,61,87,100,44,116,46,117,116,99,68,97,121,115,61,90,100,44,116,46,117,116,99,70,114,105,100,97,121,61,114,112,44,116,46,117,116,99,70,114,105,100,97,121,115,61,115,112,44,116,46,117,116,99,72,111,117,114,61,71,100,44,116,46,117,116,99,72,111,117,114,115,61,36,100,44,116,46,117,116,99,77,105,108,108,105,115,101,99,111,110,100,61,112,100,44,116,46,117,116,99,77,105,108,108,105,115,101,99,111,110,100,115,61,118,100,44,116,46,117,116,99,77,105,110,117,116,101,61,88,100,44,116,46,117,116,99,77,105,110,117,116,101,115,61,86,100,44,116,46,117,116,99,77,111,110,100,97,121,61,74,100,44,116,46,117,116,99,77,111,110,100,97,121,115,61,97,112,44,116,46,117,116,99,77,111,110,116,104,61,104,112,44,116,46,117,116,99,77,111,110,116,104,115,61,100,112,44,116,46,117,116,99,83,97,116,117,114,100,97,121,61,105,112,44,116,46,117,116,99,83,97,116,117,114,100,97,121,115,61,108,112,44,116,46,117,116,99,83,101,99,111,110,100,61,95,100,44,116,46,117,116,99,83,101,99,111,110,100,115,61,98,100,44,116,46,117,116,99,83,117,110,100,97,121,61,75,100,44,116,46,117,116,99,83,117,110,100,97,121,115,61,111,112,44,116,46,117,116,99,84,104,117,114,115,100,97,121,61,101,112,44,116,46,117,116,99,84,104,117,114,115,100,97,121,115,61,102,112,44,116,46,117,116,99,84,117,101,115,100,97,121,61,116,112,44,116,46,117,116,99,84,117,101,115,100,97,121,115,61,117,112,44,116,46,117,116,99,87,101,100,110,101,115,100,97,121,61,110,112,44,116,46,117,116,99,87,101,100,110,101,115,100,97,121,115,61,99,112,44,116,46,117,116,99,87,101,101,107,61,75,100,44,116,46,117,116,99,87,101,101,107,115,61,111,112,44,116,46,117,116,99,89,101,97,114,61,112,112,44,116,46,117,116,99,89,101,97,114,115,61,118,112,44,116,46,118,97,108,117,101,115,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,91,93,59,102,111,114,40,118,97,114,32,101,32,105,110,32,116,41,110,46,112,117,115,104,40,116,91,101,93,41,59,114,101,116,117,114,110,32,110,125,44,116,46,118,97,114,105,97,110,99,101,61,99,44,116,46,118,101,114,115,105,111,110,61,34,53,46,49,54,46,48,34,44,116,46,118,111,114,111,110,111,105,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,115,98,44,110,61,108,98,44,101,61,110,117,108,108,59,102,117,110,99,116,105,111,110,32,114,40,114,41,123,114,101,116,117,114,110,32,110,101,119,32,86,98,40,114,46,109,97,112,40,102,117,110,99,116,105,111,110,40,101,44,105,41,123,118,97,114,32,111,61,91,77,97,116,104,46,114,111,117,110,100,40,116,40,101,44,105,44,114,41,47,73,98,41,42,73,98,44,77,97,116,104,46,114,111,117,110,100,40,110,40,101,44,105,44,114,41,47,73,98,41,42,73,98,93,59,114,101,116,117,114,110,32,111,46,105,110,100,101,120,61,105,44,111,46,100,97,116,97,61,101,44,111,125,41,44,101,41,125,114,101,116,117,114,110,32,114,46,112,111,108,121,103,111,110,115,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,114,40,116,41,46,112,111,108,121,103,111,110,115,40,41,125,44,114,46,108,105,110,107,115,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,114,40,116,41,46,108,105,110,107,115,40,41,125,44,114,46,116,114,105,97,110,103,108,101,115,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,114,40,116,41,46,116,114,105,97,110,103,108,101,115,40,41,125,44,114,46,120,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,116,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,110,63,110,58,102,98,40,43,110,41,44,114,41,58,116,125,44,114,46,121,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,110,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,102,98,40,43,116,41,44,114,41,58,110,125,44,114,46,101,120,116,101,110,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,101,61,110,117,108,108,61,61,116,63,110,117,108,108,58,91,91,43,116,91,48,93,91,48,93,44,43,116,91,48,93,91,49,93,93,44,91,43,116,91,49,93,91,48,93,44,43,116,91,49,93,91,49,93,93,93,44,114,41,58,101,38,38,91,91,101,91,48,93,91,48,93,44,101,91,48,93,91,49,93,93,44,91,101,91,49,93,91,48,93,44,101,91,49,93,91,49,93,93,93,125,44,114,46,115,105,122,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,101,61,110,117,108,108,61,61,116,63,110,117,108,108,58,91,91,48,44,48,93,44,91,43,116,91,48,93,44,43,116,91,49,93,93,93,44,114,41,58,101,38,38,91,101,91,49,93,91,48,93,45,101,91,48,93,91,48,93,44,101,91,49,93,91,49,93,45,101,91,48,93,91,49,93,93,125,44,114,125,44,116,46,119,105,110,100,111,119,61,99,116,44,116,46,120,109,108,61,100,97,44,116,46,122,105,112,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,107,40,97,114,103,117,109,101,110,116,115,41,125,44,116,46,122,111,111,109,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,110,44,101,44,114,61,116,109,44,105,61,110,109,44,111,61,111,109,44,97,61,114,109,44,117,61,105,109,44,99,61,91,48,44,49,47,48,93,44,102,61,91,91,45,49,47,48,44,45,49,47,48,93,44,91,49,47,48,44,49,47,48,93,93,44,115,61,50,53,48,44,108,61,73,101,44,104,61,73,40,34,115,116,97,114,116,34,44,34,122,111,111,109,34,44,34,101,110,100,34,41,44,100,61,53,48,48,44,112,61,49,53,48,44,118,61,48,59,102,117,110,99,116,105,111,110,32,103,40,116,41,123,116,46,112,114,111,112,101,114,116,121,40,34,95,95,122,111,111,109,34,44,101,109,41,46,111,110,40,34,119,104,101,101,108,46,122,111,111,109,34,44,77,41,46,111,110,40,34,109,111,117,115,101,100,111,119,110,46,122,111,111,109,34,44,78,41,46,111,110,40,34,100,98,108,99,108,105,99,107,46,122,111,111,109,34,44,84,41,46,102,105,108,116,101,114,40,117,41,46,111,110,40,34,116,111,117,99,104,115,116,97,114,116,46,122,111,111,109,34,44,65,41,46,111,110,40,34,116,111,117,99,104,109,111,118,101,46,122,111,111,109,34,44,83,41,46,111,110,40,34,116,111,117,99,104,101,110,100,46,122,111,111,109,32,116,111,117,99,104,99,97,110,99,101,108,46,122,111,111,109,34,44,107,41,46,115,116,121,108,101,40,34,116,111,117,99,104,45,97,99,116,105,111,110,34,44,34,110,111,110,101,34,41,46,115,116,121,108,101,40,34,45,119,101,98,107,105,116,45,116,97,112,45,104,105,103,104,108,105,103,104,116,45,99,111,108,111,114,34,44,34,114,103,98,97,40,48,44,48,44,48,44,48,41,34,41,125,102,117,110,99,116,105,111,110,32,121,40,116,44,110,41,123,114,101,116,117,114,110,40,110,61,77,97,116,104,46,109,97,120,40,99,91,48,93,44,77,97,116,104,46,109,105,110,40,99,91,49,93,44,110,41,41,41,61,61,61,116,46,107,63,116,58,110,101,119,32,87,98,40,110,44,116,46,120,44,116,46,121,41,125,102,117,110,99,116,105,111,110,32,95,40,116,44,110,44,101,41,123,118,97,114,32,114,61,110,91,48,93,45,101,91,48,93,42,116,46,107,44,105,61,110,91,49,93,45,101,91,49,93,42,116,46,107,59,114,101,116,117,114,110,32,114,61,61,61,116,46,120,38,38,105,61,61,61,116,46,121,63,116,58,110,101,119,32,87,98,40,116,46,107,44,114,44,105,41,125,102,117,110,99,116,105,111,110,32,98,40,116,41,123,114,101,116,117,114,110,91,40,43,116,91,48,93,91,48,93,43,32,43,116,91,49,93,91,48,93,41,47,50,44,40,43,116,91,48,93,91,49,93,43,32,43,116,91,49,93,91,49,93,41,47,50,93,125,102,117,110,99,116,105,111,110,32,109,40,116,44,110,44,101,41,123,116,46,111,110,40,34,115,116,97,114,116,46,122,111,111,109,34,44,102,117,110,99,116,105,111,110,40,41,123,120,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,46,115,116,97,114,116,40,41,125,41,46,111,110,40,34,105,110,116,101,114,114,117,112,116,46,122,111,111,109,32,101,110,100,46,122,111,111,109,34,44,102,117,110,99,116,105,111,110,40,41,123,120,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,46,101,110,100,40,41,125,41,46,116,119,101,101,110,40,34,122,111,111,109,34,44,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,44,114,61,97,114,103,117,109,101,110,116,115,44,111,61,120,40,116,44,114,41,44,97,61,105,46,97,112,112,108,121,40,116,44,114,41,44,117,61,110,117,108,108,61,61,101,63,98,40,97,41,58,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,101,63,101,46,97,112,112,108,121,40,116,44,114,41,58,101,44,99,61,77,97,116,104,46,109,97,120,40,97,91,49,93,91,48,93,45,97,91,48,93,91,48,93,44,97,91,49,93,91,49,93,45,97,91,48,93,91,49,93,41,44,102,61,116,46,95,95,122,111,111,109,44,115,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,110,63,110,46,97,112,112,108,121,40,116,44,114,41,58,110,44,104,61,108,40,102,46,105,110,118,101,114,116,40,117,41,46,99,111,110,99,97,116,40,99,47,102,46,107,41,44,115,46,105,110,118,101,114,116,40,117,41,46,99,111,110,99,97,116,40,99,47,115,46,107,41,41,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,49,61,61,61,116,41,116,61,115,59,101,108,115,101,123,118,97,114,32,110,61,104,40,116,41,44,101,61,99,47,110,91,50,93,59,116,61,110,101,119,32,87,98,40,101,44,117,91,48,93,45,110,91,48,93,42,101,44,117,91,49,93,45,110,91,49,93,42,101,41,125,111,46,122,111,111,109,40,110,117,108,108,44,116,41,125,125,41,125,102,117,110,99,116,105,111,110,32,120,40,116,44,110,44,101,41,123,114,101,116,117,114,110,33,101,38,38,116,46,95,95,122,111,111,109,105,110,103,124,124,110,101,119,32,119,40,116,44,110,41,125,102,117,110,99,116,105,111,110,32,119,40,116,44,110,41,123,116,104,105,115,46,116,104,97,116,61,116,44,116,104,105,115,46,97,114,103,115,61,110,44,116,104,105,115,46,97,99,116,105,118,101,61,48,44,116,104,105,115,46,101,120,116,101,110,116,61,105,46,97,112,112,108,121,40,116,44,110,41,44,116,104,105,115,46,116,97,112,115,61,48,125,102,117,110,99,116,105,111,110,32,77,40,41,123,105,102,40,114,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,41,123,118,97,114,32,116,61,120,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,44,110,61,116,104,105,115,46,95,95,122,111,111,109,44,101,61,77,97,116,104,46,109,97,120,40,99,91,48,93,44,77,97,116,104,46,109,105,110,40,99,91,49,93,44,110,46,107,42,77,97,116,104,46,112,111,119,40,50,44,97,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,41,41,41,44,105,61,66,116,40,116,104,105,115,41,59,105,102,40,116,46,119,104,101,101,108,41,116,46,109,111,117,115,101,91,48,93,91,48,93,61,61,61,105,91,48,93,38,38,116,46,109,111,117,115,101,91,48,93,91,49,93,61,61,61,105,91,49,93,124,124,40,116,46,109,111,117,115,101,91,49,93,61,110,46,105,110,118,101,114,116,40,116,46,109,111,117,115,101,91,48,93,61,105,41,41,44,99,108,101,97,114,84,105,109,101,111,117,116,40,116,46,119,104,101,101,108,41,59,101,108,115,101,123,105,102,40,110,46,107,61,61,61,101,41,114,101,116,117,114,110,59,116,46,109,111,117,115,101,61,91,105,44,110,46,105,110,118,101,114,116,40,105,41,93,44,80,114,40,116,104,105,115,41,44,116,46,115,116,97,114,116,40,41,125,74,98,40,41,44,116,46,119,104,101,101,108,61,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,40,41,123,116,46,119,104,101,101,108,61,110,117,108,108,44,116,46,101,110,100,40,41,125,44,112,41,44,116,46,122,111,111,109,40,34,109,111,117,115,101,34,44,111,40,95,40,121,40,110,44,101,41,44,116,46,109,111,117,115,101,91,48,93,44,116,46,109,111,117,115,101,91,49,93,41,44,116,46,101,120,116,101,110,116,44,102,41,41,125,125,102,117,110,99,116,105,111,110,32,78,40,41,123,105,102,40,33,101,38,38,114,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,41,123,118,97,114,32,110,61,120,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,44,33,48,41,44,105,61,82,116,40,116,46,101,118,101,110,116,46,118,105,101,119,41,46,111,110,40,34,109,111,117,115,101,109,111,118,101,46,122,111,111,109,34,44,102,117,110,99,116,105,111,110,40,41,123,105,102,40,74,98,40,41,44,33,110,46,109,111,118,101,100,41,123,118,97,114,32,101,61,116,46,101,118,101,110,116,46,99,108,105,101,110,116,88,45,117,44,114,61,116,46,101,118,101,110,116,46,99,108,105,101,110,116,89,45,99,59,110,46,109,111,118,101,100,61,101,42,101,43,114,42,114,62,118,125,110,46,122,111,111,109,40,34,109,111,117,115,101,34,44,111,40,95,40,110,46,116,104,97,116,46,95,95,122,111,111,109,44,110,46,109,111,117,115,101,91,48,93,61,66,116,40,110,46,116,104,97,116,41,44,110,46,109,111,117,115,101,91,49,93,41,44,110,46,101,120,116,101,110,116,44,102,41,41,125,44,33,48,41,46,111,110,40,34,109,111,117,115,101,117,112,46,122,111,111,109,34,44,102,117,110,99,116,105,111,110,40,41,123,105,46,111,110,40,34,109,111,117,115,101,109,111,118,101,46,122,111,111,109,32,109,111,117,115,101,117,112,46,122,111,111,109,34,44,110,117,108,108,41,44,106,116,40,116,46,101,118,101,110,116,46,118,105,101,119,44,110,46,109,111,118,101,100,41,44,74,98,40,41,44,110,46,101,110,100,40,41,125,44,33,48,41,44,97,61,66,116,40,116,104,105,115,41,44,117,61,116,46,101,118,101,110,116,46,99,108,105,101,110,116,88,44,99,61,116,46,101,118,101,110,116,46,99,108,105,101,110,116,89,59,72,116,40,116,46,101,118,101,110,116,46,118,105,101,119,41,44,75,98,40,41,44,110,46,109,111,117,115,101,61,91,97,44,116,104,105,115,46,95,95,122,111,111,109,46,105,110,118,101,114,116,40,97,41,93,44,80,114,40,116,104,105,115,41,44,110,46,115,116,97,114,116,40,41,125,125,102,117,110,99,116,105,111,110,32,84,40,41,123,105,102,40,114,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,41,123,118,97,114,32,110,61,116,104,105,115,46,95,95,122,111,111,109,44,101,61,66,116,40,116,104,105,115,41,44,97,61,110,46,105,110,118,101,114,116,40,101,41,44,117,61,110,46,107,42,40,116,46,101,118,101,110,116,46,115,104,105,102,116,75,101,121,63,46,53,58,50,41,44,99,61,111,40,95,40,121,40,110,44,117,41,44,101,44,97,41,44,105,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,44,102,41,59,74,98,40,41,44,115,62,48,63,82,116,40,116,104,105,115,41,46,116,114,97,110,115,105,116,105,111,110,40,41,46,100,117,114,97,116,105,111,110,40,115,41,46,99,97,108,108,40,109,44,99,44,101,41,58,82,116,40,116,104,105,115,41,46,99,97,108,108,40,103,46,116,114,97,110,115,102,111,114,109,44,99,41,125,125,102,117,110,99,116,105,111,110,32,65,40,41,123,105,102,40,114,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,41,123,118,97,114,32,101,44,105,44,111,44,97,44,117,61,116,46,101,118,101,110,116,46,116,111,117,99,104,101,115,44,99,61,117,46,108,101,110,103,116,104,44,102,61,120,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,44,116,46,101,118,101,110,116,46,99,104,97,110,103,101,100,84,111,117,99,104,101,115,46,108,101,110,103,116,104,61,61,61,99,41,59,102,111,114,40,75,98,40,41,44,105,61,48,59,105,60,99,59,43,43,105,41,97,61,91,97,61,70,116,40,116,104,105,115,44,117,44,40,111,61,117,91,105,93,41,46,105,100,101,110,116,105,102,105,101,114,41,44,116,104,105,115,46,95,95,122,111,111,109,46,105,110,118,101,114,116,40,97,41,44,111,46,105,100,101,110,116,105,102,105,101,114,93,44,102,46,116,111,117,99,104,48,63,102,46,116,111,117,99,104,49,124,124,102,46,116,111,117,99,104,48,91,50,93,61,61,61,97,91,50,93,124,124,40,102,46,116,111,117,99,104,49,61,97,44,102,46,116,97,112,115,61,48,41,58,40,102,46,116,111,117,99,104,48,61,97,44,101,61,33,48,44,102,46,116,97,112,115,61,49,43,33,33,110,41,59,110,38,38,40,110,61,99,108,101,97,114,84,105,109,101,111,117,116,40,110,41,41,44,101,38,38,40,102,46,116,97,112,115,60,50,38,38,40,110,61,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,40,41,123,110,61,110,117,108,108,125,44,100,41,41,44,80,114,40,116,104,105,115,41,44,102,46,115,116,97,114,116,40,41,41,125,125,102,117,110,99,116,105,111,110,32,83,40,41,123,105,102,40,116,104,105,115,46,95,95,122,111,111,109,105,110,103,41,123,118,97,114,32,101,44,114,44,105,44,97,44,117,61,120,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,44,99,61,116,46,101,118,101,110,116,46,99,104,97,110,103,101,100,84,111,117,99,104,101,115,44,115,61,99,46,108,101,110,103,116,104,59,102,111,114,40,74,98,40,41,44,110,38,38,40,110,61,99,108,101,97,114,84,105,109,101,111,117,116,40,110,41,41,44,117,46,116,97,112,115,61,48,44,101,61,48,59,101,60,115,59,43,43,101,41,105,61,70,116,40,116,104,105,115,44,99,44,40,114,61,99,91,101,93,41,46,105,100,101,110,116,105,102,105,101,114,41,44,117,46,116,111,117,99,104,48,38,38,117,46,116,111,117,99,104,48,91,50,93,61,61,61,114,46,105,100,101,110,116,105,102,105,101,114,63,117,46,116,111,117,99,104,48,91,48,93,61,105,58,117,46,116,111,117,99,104,49,38,38,117,46,116,111,117,99,104,49,91,50,93,61,61,61,114,46,105,100,101,110,116,105,102,105,101,114,38,38,40,117,46,116,111,117,99,104,49,91,48,93,61,105,41,59,105,102,40,114,61,117,46,116,104,97,116,46,95,95,122,111,111,109,44,117,46,116,111,117,99,104,49,41,123,118,97,114,32,108,61,117,46,116,111,117,99,104,48,91,48,93,44,104,61,117,46,116,111,117,99,104,48,91,49,93,44,100,61,117,46,116,111,117,99,104,49,91,48,93,44,112,61,117,46,116,111,117,99,104,49,91,49,93,44,118,61,40,118,61,100,91,48,93,45,108,91,48,93,41,42,118,43,40,118,61,100,91,49,93,45,108,91,49,93,41,42,118,44,103,61,40,103,61,112,91,48,93,45,104,91,48,93,41,42,103,43,40,103,61,112,91,49,93,45,104,91,49,93,41,42,103,59,114,61,121,40,114,44,77,97,116,104,46,115,113,114,116,40,118,47,103,41,41,44,105,61,91,40,108,91,48,93,43,100,91,48,93,41,47,50,44,40,108,91,49,93,43,100,91,49,93,41,47,50,93,44,97,61,91,40,104,91,48,93,43,112,91,48,93,41,47,50,44,40,104,91,49,93,43,112,91,49,93,41,47,50,93,125,101,108,115,101,123,105,102,40,33,117,46,116,111,117,99,104,48,41,114,101,116,117,114,110,59,105,61,117,46,116,111,117,99,104,48,91,48,93,44,97,61,117,46,116,111,117,99,104,48,91,49,93,125,117,46,122,111,111,109,40,34,116,111,117,99,104,34,44,111,40,95,40,114,44,105,44,97,41,44,117,46,101,120,116,101,110,116,44,102,41,41,125,125,102,117,110,99,116,105,111,110,32,107,40,41,123,105,102,40,116,104,105,115,46,95,95,122,111,111,109,105,110,103,41,123,118,97,114,32,110,44,114,44,105,61,120,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,44,111,61,116,46,101,118,101,110,116,46,99,104,97,110,103,101,100,84,111,117,99,104,101,115,44,97,61,111,46,108,101,110,103,116,104,59,102,111,114,40,75,98,40,41,44,101,38,38,99,108,101,97,114,84,105,109,101,111,117,116,40,101,41,44,101,61,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,40,41,123,101,61,110,117,108,108,125,44,100,41,44,110,61,48,59,110,60,97,59,43,43,110,41,114,61,111,91,110,93,44,105,46,116,111,117,99,104,48,38,38,105,46,116,111,117,99,104,48,91,50,93,61,61,61,114,46,105,100,101,110,116,105,102,105,101,114,63,100,101,108,101,116,101,32,105,46,116,111,117,99,104,48,58,105,46,116,111,117,99,104,49,38,38,105,46,116,111,117,99,104,49,91,50,93,61,61,61,114,46,105,100,101,110,116,105,102,105,101,114,38,38,100,101,108,101,116,101,32,105,46,116,111,117,99,104,49,59,105,102,40,105,46,116,111,117,99,104,49,38,38,33,105,46,116,111,117,99,104,48,38,38,40,105,46,116,111,117,99,104,48,61,105,46,116,111,117,99,104,49,44,100,101,108,101,116,101,32,105,46,116,111,117,99,104,49,41,44,105,46,116,111,117,99,104,48,41,105,46,116,111,117,99,104,48,91,49,93,61,116,104,105,115,46,95,95,122,111,111,109,46,105,110,118,101,114,116,40,105,46,116,111,117,99,104,48,91,48,93,41,59,101,108,115,101,32,105,102,40,105,46,101,110,100,40,41,44,50,61,61,61,105,46,116,97,112,115,41,123,118,97,114,32,117,61,82,116,40,116,104,105,115,41,46,111,110,40,34,100,98,108,99,108,105,99,107,46,122,111,111,109,34,41,59,117,38,38,117,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,125,125,125,114,101,116,117,114,110,32,103,46,116,114,97,110,115,102,111,114,109,61,102,117,110,99,116,105,111,110,40,116,44,110,44,101,41,123,118,97,114,32,114,61,116,46,115,101,108,101,99,116,105,111,110,63,116,46,115,101,108,101,99,116,105,111,110,40,41,58,116,59,114,46,112,114,111,112,101,114,116,121,40,34,95,95,122,111,111,109,34,44,101,109,41,44,116,33,61,61,114,63,109,40,116,44,110,44,101,41,58,114,46,105,110,116,101,114,114,117,112,116,40,41,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,120,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,46,115,116,97,114,116,40,41,46,122,111,111,109,40,110,117,108,108,44,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,110,63,110,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,58,110,41,46,101,110,100,40,41,125,41,125,44,103,46,115,99,97,108,101,66,121,61,102,117,110,99,116,105,111,110,40,116,44,110,44,101,41,123,103,46,115,99,97,108,101,84,111,40,116,44,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,95,95,122,111,111,109,46,107,44,101,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,110,63,110,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,58,110,59,114,101,116,117,114,110,32,116,42,101,125,44,101,41,125,44,103,46,115,99,97,108,101,84,111,61,102,117,110,99,116,105,111,110,40,116,44,110,44,101,41,123,103,46,116,114,97,110,115,102,111,114,109,40,116,44,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,105,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,44,114,61,116,104,105,115,46,95,95,122,111,111,109,44,97,61,110,117,108,108,61,61,101,63,98,40,116,41,58,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,101,63,101,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,58,101,44,117,61,114,46,105,110,118,101,114,116,40,97,41,44,99,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,110,63,110,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,58,110,59,114,101,116,117,114,110,32,111,40,95,40,121,40,114,44,99,41,44,97,44,117,41,44,116,44,102,41,125,44,101,41,125,44,103,46,116,114,97,110,115,108,97,116,101,66,121,61,102,117,110,99,116,105,111,110,40,116,44,110,44,101,41,123,103,46,116,114,97,110,115,102,111,114,109,40,116,44,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,111,40,116,104,105,115,46,95,95,122,111,111,109,46,116,114,97,110,115,108,97,116,101,40,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,110,63,110,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,58,110,44,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,101,63,101,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,58,101,41,44,105,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,44,102,41,125,41,125,44,103,46,116,114,97,110,115,108,97,116,101,84,111,61,102,117,110,99,116,105,111,110,40,116,44,110,44,101,44,114,41,123,103,46,116,114,97,110,115,102,111,114,109,40,116,44,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,105,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,44,97,61,116,104,105,115,46,95,95,122,111,111,109,44,117,61,110,117,108,108,61,61,114,63,98,40,116,41,58,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,114,63,114,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,58,114,59,114,101,116,117,114,110,32,111,40,90,98,46,116,114,97,110,115,108,97,116,101,40,117,91,48,93,44,117,91,49,93,41,46,115,99,97,108,101,40,97,46,107,41,46,116,114,97,110,115,108,97,116,101,40,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,110,63,45,110,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,58,45,110,44,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,101,63,45,101,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,58,45,101,41,44,116,44,102,41,125,44,114,41,125,44,119,46,112,114,111,116,111,116,121,112,101,61,123,115,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,49,61,61,43,43,116,104,105,115,46,97,99,116,105,118,101,38,38,40,116,104,105,115,46,116,104,97,116,46,95,95,122,111,111,109,105,110,103,61,116,104,105,115,44,116,104,105,115,46,101,109,105,116,40,34,115,116,97,114,116,34,41,41,44,116,104,105,115,125,44,122,111,111,109,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,116,104,105,115,46,109,111,117,115,101,38,38,34,109,111,117,115,101,34,33,61,61,116,38,38,40,116,104,105,115,46,109,111,117,115,101,91,49,93,61,110,46,105,110,118,101,114,116,40,116,104,105,115,46,109,111,117,115,101,91,48,93,41,41,44,116,104,105,115,46,116,111,117,99,104,48,38,38,34,116,111,117,99,104,34,33,61,61,116,38,38,40,116,104,105,115,46,116,111,117,99,104,48,91,49,93,61,110,46,105,110,118,101,114,116,40,116,104,105,115,46,116,111,117,99,104,48,91,48,93,41,41,44,116,104,105,115,46,116,111,117,99,104,49,38,38,34,116,111,117,99,104,34,33,61,61,116,38,38,40,116,104,105,115,46,116,111,117,99,104,49,91,49,93,61,110,46,105,110,118,101,114,116,40,116,104,105,115,46,116,111,117,99,104,49,91,48,93,41,41,44,116,104,105,115,46,116,104,97,116,46,95,95,122,111,111,109,61,110,44,116,104,105,115,46,101,109,105,116,40,34,122,111,111,109,34,41,44,116,104,105,115,125,44,101,110,100,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,48,61,61,45,45,116,104,105,115,46,97,99,116,105,118,101,38,38,40,100,101,108,101,116,101,32,116,104,105,115,46,116,104,97,116,46,95,95,122,111,111,109,105,110,103,44,116,104,105,115,46,101,109,105,116,40,34,101,110,100,34,41,41,44,116,104,105,115,125,44,101,109,105,116,58,102,117,110,99,116,105,111,110,40,116,41,123,107,116,40,110,101,119,32,36,98,40,103,44,116,44,116,104,105,115,46,116,104,97,116,46,95,95,122,111,111,109,41,44,104,46,97,112,112,108,121,44,104,44,91,116,44,116,104,105,115,46,116,104,97,116,44,116,104,105,115,46,97,114,103,115,93,41,125,125,44,103,46,119,104,101,101,108,68,101,108,116,97,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,97,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,71,98,40,43,116,41,44,103,41,58,97,125,44,103,46,102,105,108,116,101,114,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,114,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,71,98,40,33,33,116,41,44,103,41,58,114,125,44,103,46,116,111,117,99,104,97,98,108,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,117,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,71,98,40,33,33,116,41,44,103,41,58,117,125,44,103,46,101,120,116,101,110,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,105,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,71,98,40,91,91,43,116,91,48,93,91,48,93,44,43,116,91,48,93,91,49,93,93,44,91,43,116,91,49,93,91,48,93,44,43,116,91,49,93,91,49,93,93,93,41,44,103,41,58,105,125,44,103,46,115,99,97,108,101,69,120,116,101,110,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,99,91,48,93,61,43,116,91,48,93,44,99,91,49,93,61,43,116,91,49,93,44,103,41,58,91,99,91,48,93,44,99,91,49,93,93,125,44,103,46,116,114,97,110,115,108,97,116,101,69,120,116,101,110,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,102,91,48,93,91,48,93,61,43,116,91,48,93,91,48,93,44,102,91,49,93,91,48,93,61,43,116,91,49,93,91,48,93,44,102,91,48,93,91,49,93,61,43,116,91,48,93,91,49,93,44,102,91,49,93,91,49,93,61,43,116,91,49,93,91,49,93,44,103,41,58,91,91,102,91,48,93,91,48,93,44,102,91,48,93,91,49,93,93,44,91,102,91,49,93,91,48,93,44,102,91,49,93,91,49,93,93,93,125,44,103,46,99,111,110,115,116,114,97,105,110,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,111,61,116,44,103,41,58,111,125,44,103,46,100,117,114,97,116,105,111,110,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,115,61,43,116,44,103,41,58,115,125,44,103,46,105,110,116,101,114,112,111,108,97,116,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,108,61,116,44,103,41,58,108,125,44,103,46,111,110,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,104,46,111,110,46,97,112,112,108,121,40,104,44,97,114,103,117,109,101,110,116,115,41,59,114,101,116,117,114,110,32,116,61,61,61,104,63,103,58,116,125,44,103,46,99,108,105,99,107,68,105,115,116,97,110,99,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,118,61,40,116,61,43,116,41,42,116,44,103,41,58,77,97,116,104,46,115,113,114,116,40,118,41,125,44,103,125,44,116,46,122,111,111,109,73,100,101,110,116,105,116,121,61,90,98,44,116,46,122,111,111,109,84,114,97,110,115,102,111,114,109,61,81,98,44,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,44,34,95,95,101,115,77,111,100,117,108,101,34,44,123,118,97,108,117,101,58,33,48,125,41,125,41,59,10,47,42,33,32,100,111,109,45,116,111,45,105,109,97,103,101,32,49,48,45,48,54,45,50,48,49,55,32,42,47,10,33,102,117,110,99,116,105,111,110,40,97,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,102,117,110,99,116,105,111,110,32,98,40,97,44,98,41,123,102,117,110,99,116,105,111,110,32,99,40,97,41,123,114,101,116,117,114,110,32,98,46,98,103,99,111,108,111,114,38,38,40,97,46,115,116,121,108,101,46,98,97,99,107,103,114,111,117,110,100,67,111,108,111,114,61,98,46,98,103,99,111,108,111,114,41,44,98,46,119,105,100,116,104,38,38,40,97,46,115,116,121,108,101,46,119,105,100,116,104,61,98,46,119,105,100,116,104,43,34,112,120,34,41,44,98,46,104,101,105,103,104,116,38,38,40,97,46,115,116,121,108,101,46,104,101,105,103,104,116,61,98,46,104,101,105,103,104,116,43,34,112,120,34,41,44,98,46,115,116,121,108,101,38,38,79,98,106,101,99,116,46,107,101,121,115,40,98,46,115,116,121,108,101,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,99,41,123,97,46,115,116,121,108,101,91,99,93,61,98,46,115,116,121,108,101,91,99,93,125,41,44,97,125,114,101,116,117,114,110,32,98,61,98,124,124,123,125,44,103,40,98,41,44,80,114,111,109,105,115,101,46,114,101,115,111,108,118,101,40,97,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,97,41,123,114,101,116,117,114,110,32,105,40,97,44,98,46,102,105,108,116,101,114,44,33,48,41,125,41,46,116,104,101,110,40,106,41,46,116,104,101,110,40,107,41,46,116,104,101,110,40,99,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,99,41,123,114,101,116,117,114,110,32,108,40,99,44,98,46,119,105,100,116,104,124,124,113,46,119,105,100,116,104,40,97,41,44,98,46,104,101,105,103,104,116,124,124,113,46,104,101,105,103,104,116,40,97,41,41,125,41,125,102,117,110,99,116,105,111,110,32,99,40,97,44,98,41,123,114,101,116,117,114,110,32,104,40,97,44,98,124,124,123,125,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,98,41,123,114,101,116,117,114,110,32,98,46,103,101,116,67,111,110,116,101,120,116,40,34,50,100,34,41,46,103,101,116,73,109,97,103,101,68,97,116,97,40,48,44,48,44,113,46,119,105,100,116,104,40,97,41,44,113,46,104,101,105,103,104,116,40,97,41,41,46,100,97,116,97,125,41,125,102,117,110,99,116,105,111,110,32,100,40,97,44,98,41,123,114,101,116,117,114,110,32,104,40,97,44,98,124,124,123,125,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,97,41,123,114,101,116,117,114,110,32,97,46,116,111,68,97,116,97,85,82,76,40,41,125,41,125,102,117,110,99,116,105,111,110,32,101,40,97,44,98,41,123,114,101,116,117,114,110,32,98,61,98,124,124,123,125,44,104,40,97,44,98,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,97,41,123,114,101,116,117,114,110,32,97,46,116,111,68,97,116,97,85,82,76,40,34,105,109,97,103,101,47,106,112,101,103,34,44,98,46,113,117,97,108,105,116,121,124,124,49,41,125,41,125,102,117,110,99,116,105,111,110,32,102,40,97,44,98,41,123,114,101,116,117,114,110,32,104,40,97,44,98,124,124,123,125,41,46,116,104,101,110,40,113,46,99,97,110,118,97,115,84,111,66,108,111,98,41,125,102,117,110,99,116,105,111,110,32,103,40,97,41,123,34,117,110,100,101,102,105,110,101,100,34,61,61,116,121,112,101,111,102,32,97,46,105,109,97,103,101,80,108,97,99,101,104,111,108,100,101,114,63,118,46,105,109,112,108,46,111,112,116,105,111,110,115,46,105,109,97,103,101,80,108,97,99,101,104,111,108,100,101,114,61,117,46,105,109,97,103,101,80,108,97,99,101,104,111,108,100,101,114,58,118,46,105,109,112,108,46,111,112,116,105,111,110,115,46,105,109,97,103,101,80,108,97,99,101,104,111,108,100,101,114,61,97,46,105,109,97,103,101,80,108,97,99,101,104,111,108,100,101,114,44,34,117,110,100,101,102,105,110,101,100,34,61,61,116,121,112,101,111,102,32,97,46,99,97,99,104,101,66,117,115,116,63,118,46,105,109,112,108,46,111,112,116,105,111,110,115,46,99,97,99,104,101,66,117,115,116,61,117,46,99,97,99,104,101,66,117,115,116,58,118,46,105,109,112,108,46,111,112,116,105,111,110,115,46,99,97,99,104,101,66,117,115,116,61,97,46,99,97,99,104,101,66,117,115,116,125,102,117,110,99,116,105,111,110,32,104,40,97,44,99,41,123,102,117,110,99,116,105,111,110,32,100,40,97,41,123,118,97,114,32,98,61,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,99,97,110,118,97,115,34,41,59,105,102,40,98,46,119,105,100,116,104,61,99,46,119,105,100,116,104,124,124,113,46,119,105,100,116,104,40,97,41,44,98,46,104,101,105,103,104,116,61,99,46,104,101,105,103,104,116,124,124,113,46,104,101,105,103,104,116,40,97,41,44,99,46,98,103,99,111,108,111,114,41,123,118,97,114,32,100,61,98,46,103,101,116,67,111,110,116,101,120,116,40,34,50,100,34,41,59,100,46,102,105,108,108,83,116,121,108,101,61,99,46,98,103,99,111,108,111,114,44,100,46,102,105,108,108,82,101,99,116,40,48,44,48,44,98,46,119,105,100,116,104,44,98,46,104,101,105,103,104,116,41,125,114,101,116,117,114,110,32,98,125,114,101,116,117,114,110,32,98,40,97,44,99,41,46,116,104,101,110,40,113,46,109,97,107,101,73,109,97,103,101,41,46,116,104,101,110,40,113,46,100,101,108,97,121,40,49,48,48,41,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,98,41,123,118,97,114,32,99,61,100,40,97,41,59,114,101,116,117,114,110,32,99,46,103,101,116,67,111,110,116,101,120,116,40,34,50,100,34,41,46,100,114,97,119,73,109,97,103,101,40,98,44,48,44,48,41,44,99,125,41,125,102,117,110,99,116,105,111,110,32,105,40,97,44,98,44,99,41,123,102,117,110,99,116,105,111,110,32,100,40,97,41,123,114,101,116,117,114,110,32,97,32,105,110,115,116,97,110,99,101,111,102,32,72,84,77,76,67,97,110,118,97,115,69,108,101,109,101,110,116,63,113,46,109,97,107,101,73,109,97,103,101,40,97,46,116,111,68,97,116,97,85,82,76,40,41,41,58,97,46,99,108,111,110,101,78,111,100,101,40,33,49,41,125,102,117,110,99,116,105,111,110,32,101,40,97,44,98,44,99,41,123,102,117,110,99,116,105,111,110,32,100,40,97,44,98,44,99,41,123,118,97,114,32,100,61,80,114,111,109,105,115,101,46,114,101,115,111,108,118,101,40,41,59,114,101,116,117,114,110,32,98,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,98,41,123,100,61,100,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,105,40,98,44,99,41,125,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,98,41,123,98,38,38,97,46,97,112,112,101,110,100,67,104,105,108,100,40,98,41,125,41,125,41,44,100,125,118,97,114,32,101,61,97,46,99,104,105,108,100,78,111,100,101,115,59,114,101,116,117,114,110,32,48,61,61,61,101,46,108,101,110,103,116,104,63,80,114,111,109,105,115,101,46,114,101,115,111,108,118,101,40,98,41,58,100,40,98,44,113,46,97,115,65,114,114,97,121,40,101,41,44,99,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,98,125,41,125,102,117,110,99,116,105,111,110,32,102,40,97,44,98,41,123,102,117,110,99,116,105,111,110,32,99,40,41,123,102,117,110,99,116,105,111,110,32,99,40,97,44,98,41,123,102,117,110,99,116,105,111,110,32,99,40,97,44,98,41,123,113,46,97,115,65,114,114,97,121,40,97,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,99,41,123,98,46,115,101,116,80,114,111,112,101,114,116,121,40,99,44,97,46,103,101,116,80,114,111,112,101,114,116,121,86,97,108,117,101,40,99,41,44,97,46,103,101,116,80,114,111,112,101,114,116,121,80,114,105,111,114,105,116,121,40,99,41,41,125,41,125,97,46,99,115,115,84,101,120,116,63,98,46,99,115,115,84,101,120,116,61,97,46,99,115,115,84,101,120,116,58,99,40,97,44,98,41,125,99,40,119,105,110,100,111,119,46,103,101,116,67,111,109,112,117,116,101,100,83,116,121,108,101,40,97,41,44,98,46,115,116,121,108,101,41,125,102,117,110,99,116,105,111,110,32,100,40,41,123,102,117,110,99,116,105,111,110,32,99,40,99,41,123,102,117,110,99,116,105,111,110,32,100,40,97,44,98,44,99,41,123,102,117,110,99,116,105,111,110,32,100,40,97,41,123,118,97,114,32,98,61,97,46,103,101,116,80,114,111,112,101,114,116,121,86,97,108,117,101,40,34,99,111,110,116,101,110,116,34,41,59,114,101,116,117,114,110,32,97,46,99,115,115,84,101,120,116,43,34,32,99,111,110,116,101,110,116,58,32,34,43,98,43,34,59,34,125,102,117,110,99,116,105,111,110,32,101,40,97,41,123,102,117,110,99,116,105,111,110,32,98,40,98,41,123,114,101,116,117,114,110,32,98,43,34,58,32,34,43,97,46,103,101,116,80,114,111,112,101,114,116,121,86,97,108,117,101,40,98,41,43,40,97,46,103,101,116,80,114,111,112,101,114,116,121,80,114,105,111,114,105,116,121,40,98,41,63,34,32,33,105,109,112,111,114,116,97,110,116,34,58,34,34,41,125,114,101,116,117,114,110,32,113,46,97,115,65,114,114,97,121,40,97,41,46,109,97,112,40,98,41,46,106,111,105,110,40,34,59,32,34,41,43,34,59,34,125,118,97,114,32,102,61,34,46,34,43,97,43,34,58,34,43,98,44,103,61,99,46,99,115,115,84,101,120,116,63,100,40,99,41,58,101,40,99,41,59,114,101,116,117,114,110,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,84,101,120,116,78,111,100,101,40,102,43,34,123,34,43,103,43,34,125,34,41,125,118,97,114,32,101,61,119,105,110,100,111,119,46,103,101,116,67,111,109,112,117,116,101,100,83,116,121,108,101,40,97,44,99,41,44,102,61,101,46,103,101,116,80,114,111,112,101,114,116,121,86,97,108,117,101,40,34,99,111,110,116,101,110,116,34,41,59,105,102,40,34,34,33,61,61,102,38,38,34,110,111,110,101,34,33,61,61,102,41,123,118,97,114,32,103,61,113,46,117,105,100,40,41,59,98,46,99,108,97,115,115,78,97,109,101,61,98,46,99,108,97,115,115,78,97,109,101,43,34,32,34,43,103,59,118,97,114,32,104,61,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,115,116,121,108,101,34,41,59,104,46,97,112,112,101,110,100,67,104,105,108,100,40,100,40,103,44,99,44,101,41,41,44,98,46,97,112,112,101,110,100,67,104,105,108,100,40,104,41,125,125,91,34,58,98,101,102,111,114,101,34,44,34,58,97,102,116,101,114,34,93,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,97,41,123,99,40,97,41,125,41,125,102,117,110,99,116,105,111,110,32,101,40,41,123,97,32,105,110,115,116,97,110,99,101,111,102,32,72,84,77,76,84,101,120,116,65,114,101,97,69,108,101,109,101,110,116,38,38,40,98,46,105,110,110,101,114,72,84,77,76,61,97,46,118,97,108,117,101,41,44,97,32,105,110,115,116,97,110,99,101,111,102,32,72,84,77,76,73,110,112,117,116,69,108,101,109,101,110,116,38,38,98,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,118,97,108,117,101,34,44,97,46,118,97,108,117,101,41,125,102,117,110,99,116,105,111,110,32,102,40,41,123,98,32,105,110,115,116,97,110,99,101,111,102,32,83,86,71,69,108,101,109,101,110,116,38,38,40,98,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,120,109,108,110,115,34,44,34,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,115,118,103,34,41,44,98,32,105,110,115,116,97,110,99,101,111,102,32,83,86,71,82,101,99,116,69,108,101,109,101,110,116,38,38,91,34,119,105,100,116,104,34,44,34,104,101,105,103,104,116,34,93,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,97,41,123,118,97,114,32,99,61,98,46,103,101,116,65,116,116,114,105,98,117,116,101,40,97,41,59,99,38,38,98,46,115,116,121,108,101,46,115,101,116,80,114,111,112,101,114,116,121,40,97,44,99,41,125,41,41,125,114,101,116,117,114,110,32,98,32,105,110,115,116,97,110,99,101,111,102,32,69,108,101,109,101,110,116,63,80,114,111,109,105,115,101,46,114,101,115,111,108,118,101,40,41,46,116,104,101,110,40,99,41,46,116,104,101,110,40,100,41,46,116,104,101,110,40,101,41,46,116,104,101,110,40,102,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,98,125,41,58,98,125,114,101,116,117,114,110,32,99,124,124,33,98,124,124,98,40,97,41,63,80,114,111,109,105,115,101,46,114,101,115,111,108,118,101,40,97,41,46,116,104,101,110,40,100,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,99,41,123,114,101,116,117,114,110,32,101,40,97,44,99,44,98,41,125,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,98,41,123,114,101,116,117,114,110,32,102,40,97,44,98,41,125,41,58,80,114,111,109,105,115,101,46,114,101,115,111,108,118,101,40,41,125,102,117,110,99,116,105,111,110,32,106,40,97,41,123,114,101,116,117,114,110,32,115,46,114,101,115,111,108,118,101,65,108,108,40,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,98,41,123,118,97,114,32,99,61,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,115,116,121,108,101,34,41,59,114,101,116,117,114,110,32,97,46,97,112,112,101,110,100,67,104,105,108,100,40,99,41,44,99,46,97,112,112,101,110,100,67,104,105,108,100,40,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,84,101,120,116,78,111,100,101,40,98,41,41,44,97,125,41,125,102,117,110,99,116,105,111,110,32,107,40,97,41,123,114,101,116,117,114,110,32,116,46,105,110,108,105,110,101,65,108,108,40,97,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,97,125,41,125,102,117,110,99,116,105,111,110,32,108,40,97,44,98,44,99,41,123,114,101,116,117,114,110,32,80,114,111,109,105,115,101,46,114,101,115,111,108,118,101,40,97,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,97,41,123,114,101,116,117,114,110,32,97,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,120,109,108,110,115,34,44,34,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,49,57,57,57,47,120,104,116,109,108,34,41,44,40,110,101,119,32,88,77,76,83,101,114,105,97,108,105,122,101,114,41,46,115,101,114,105,97,108,105,122,101,84,111,83,116,114,105,110,103,40,97,41,125,41,46,116,104,101,110,40,113,46,101,115,99,97,112,101,88,104,116,109,108,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,97,41,123,114,101,116,117,114,110,39,60,102,111,114,101,105,103,110,79,98,106,101,99,116,32,120,61,34,48,34,32,121,61,34,48,34,32,119,105,100,116,104,61,34,49,48,48,37,34,32,104,101,105,103,104,116,61,34,49,48,48,37,34,62,39,43,97,43,34,60,47,102,111,114,101,105,103,110,79,98,106,101,99,116,62,34,125,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,97,41,123,114,101,116,117,114,110,39,60,115,118,103,32,120,109,108,110,115,61,34,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,115,118,103,34,32,119,105,100,116,104,61,34,39,43,98,43,39,34,32,104,101,105,103,104,116,61,34,39,43,99,43,39,34,62,39,43,97,43,34,60,47,115,118,103,62,34,125,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,97,41,123,114,101,116,117,114,110,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,117,116,102,45,56,44,34,43,97,125,41,125,102,117,110,99,116,105,111,110,32,109,40,41,123,102,117,110,99,116,105,111,110,32,97,40,41,123,118,97,114,32,97,61,34,97,112,112,108,105,99,97,116,105,111,110,47,102,111,110,116,45,119,111,102,102,34,44,98,61,34,105,109,97,103,101,47,106,112,101,103,34,59,114,101,116,117,114,110,123,119,111,102,102,58,97,44,119,111,102,102,50,58,97,44,116,116,102,58,34,97,112,112,108,105,99,97,116,105,111,110,47,102,111,110,116,45,116,114,117,101,116,121,112,101,34,44,101,111,116,58,34,97,112,112,108,105,99,97,116,105,111,110,47,118,110,100,46,109,115,45,102,111,110,116,111,98,106,101,99,116,34,44,112,110,103,58,34,105,109,97,103,101,47,112,110,103,34,44,106,112,103,58,98,44,106,112,101,103,58,98,44,103,105,102,58,34,105,109,97,103,101,47,103,105,102,34,44,116,105,102,102,58,34,105,109,97,103,101,47,116,105,102,102,34,44,115,118,103,58,34,105,109,97,103,101,47,115,118,103,43,120,109,108,34,125,125,102,117,110,99,116,105,111,110,32,98,40,97,41,123,118,97,114,32,98,61,47,92,46,40,91,94,92,46,92,47,93,42,63,41,36,47,103,46,101,120,101,99,40,97,41,59,114,101,116,117,114,110,32,98,63,98,91,49,93,58,34,34,125,102,117,110,99,116,105,111,110,32,99,40,99,41,123,118,97,114,32,100,61,98,40,99,41,46,116,111,76,111,119,101,114,67,97,115,101,40,41,59,114,101,116,117,114,110,32,97,40,41,91,100,93,124,124,34,34,125,102,117,110,99,116,105,111,110,32,100,40,97,41,123,114,101,116,117,114,110,32,97,46,115,101,97,114,99,104,40,47,94,40,100,97,116,97,58,41,47,41,33,61,61,45,49,125,102,117,110,99,116,105,111,110,32,101,40,97,41,123,114,101,116,117,114,110,32,110,101,119,32,80,114,111,109,105,115,101,40,102,117,110,99,116,105,111,110,40,98,41,123,102,111,114,40,118,97,114,32,99,61,119,105,110,100,111,119,46,97,116,111,98,40,97,46,116,111,68,97,116,97,85,82,76,40,41,46,115,112,108,105,116,40,34,44,34,41,91,49,93,41,44,100,61,99,46,108,101,110,103,116,104,44,101,61,110,101,119,32,85,105,110,116,56,65,114,114,97,121,40,100,41,44,102,61,48,59,102,60,100,59,102,43,43,41,101,91,102,93,61,99,46,99,104,97,114,67,111,100,101,65,116,40,102,41,59,98,40,110,101,119,32,66,108,111,98,40,91,101,93,44,123,116,121,112,101,58,34,105,109,97,103,101,47,112,110,103,34,125,41,41,125,41,125,102,117,110,99,116,105,111,110,32,102,40,97,41,123,114,101,116,117,114,110,32,97,46,116,111,66,108,111,98,63,110,101,119,32,80,114,111,109,105,115,101,40,102,117,110,99,116,105,111,110,40,98,41,123,97,46,116,111,66,108,111,98,40,98,41,125,41,58,101,40,97,41,125,102,117,110,99,116,105,111,110,32,103,40,97,44,98,41,123,118,97,114,32,99,61,100,111,99,117,109,101,110,116,46,105,109,112,108,101,109,101,110,116,97,116,105,111,110,46,99,114,101,97,116,101,72,84,77,76,68,111,99,117,109,101,110,116,40,41,44,100,61,99,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,98,97,115,101,34,41,59,99,46,104,101,97,100,46,97,112,112,101,110,100,67,104,105,108,100,40,100,41,59,118,97,114,32,101,61,99,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,97,34,41,59,114,101,116,117,114,110,32,99,46,98,111,100,121,46,97,112,112,101,110,100,67,104,105,108,100,40,101,41,44,100,46,104,114,101,102,61,98,44,101,46,104,114,101,102,61,97,44,101,46,104,114,101,102,125,102,117,110,99,116,105,111,110,32,104,40,41,123,118,97,114,32,97,61,48,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,98,40,41,123,114,101,116,117,114,110,40,34,48,48,48,48,34,43,40,77,97,116,104,46,114,97,110,100,111,109,40,41,42,77,97,116,104,46,112,111,119,40,51,54,44,52,41,60,60,48,41,46,116,111,83,116,114,105,110,103,40,51,54,41,41,46,115,108,105,99,101,40,45,52,41,125,114,101,116,117,114,110,34,117,34,43,98,40,41,43,97,43,43,125,125,102,117,110,99,116,105,111,110,32,105,40,97,41,123,114,101,116,117,114,110,32,110,101,119,32,80,114,111,109,105,115,101,40,102,117,110,99,116,105,111,110,40,98,44,99,41,123,118,97,114,32,100,61,110,101,119,32,73,109,97,103,101,59,100,46,111,110,108,111,97,100,61,102,117,110,99,116,105,111,110,40,41,123,98,40,100,41,125,44,100,46,111,110,101,114,114,111,114,61,99,44,100,46,115,114,99,61,97,125,41,125,102,117,110,99,116,105,111,110,32,106,40,97,41,123,118,97,114,32,98,61,51,101,52,59,114,101,116,117,114,110,32,118,46,105,109,112,108,46,111,112,116,105,111,110,115,46,99,97,99,104,101,66,117,115,116,38,38,40,97,43,61,40,47,92,63,47,46,116,101,115,116,40,97,41,63,34,38,34,58,34,63,34,41,43,40,110,101,119,32,68,97,116,101,41,46,103,101,116,84,105,109,101,40,41,41,44,110,101,119,32,80,114,111,109,105,115,101,40,102,117,110,99,116,105,111,110,40,99,41,123,102,117,110,99,116,105,111,110,32,100,40,41,123,105,102,40,52,61,61,61,103,46,114,101,97,100,121,83,116,97,116,101,41,123,105,102,40,50,48,48,33,61,61,103,46,115,116,97,116,117,115,41,114,101,116,117,114,110,32,118,111,105,100,40,104,63,99,40,104,41,58,102,40,34,99,97,110,110,111,116,32,102,101,116,99,104,32,114,101,115,111,117,114,99,101,58,32,34,43,97,43,34,44,32,115,116,97,116,117,115,58,32,34,43,103,46,115,116,97,116,117,115,41,41,59,118,97,114,32,98,61,110,101,119,32,70,105,108,101,82,101,97,100,101,114,59,98,46,111,110,108,111,97,100,101,110,100,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,97,61,98,46,114,101,115,117,108,116,46,115,112,108,105,116,40,47,44,47,41,91,49,93,59,99,40,97,41,125,44,98,46,114,101,97,100,65,115,68,97,116,97,85,82,76,40,103,46,114,101,115,112,111,110,115,101,41,125,125,102,117,110,99,116,105,111,110,32,101,40,41,123,104,63,99,40,104,41,58,102,40,34,116,105,109,101,111,117,116,32,111,102,32,34,43,98,43,34,109,115,32,111,99,99,117,114,101,100,32,119,104,105,108,101,32,102,101,116,99,104,105,110,103,32,114,101,115,111,117,114,99,101,58,32,34,43,97,41,125,102,117,110,99,116,105,111,110,32,102,40,97,41,123,99,111,110,115,111,108,101,46,101,114,114,111,114,40,97,41,44,99,40,34,34,41,125,118,97,114,32,103,61,110,101,119,32,88,77,76,72,116,116,112,82,101,113,117,101,115,116,59,103,46,111,110,114,101,97,100,121,115,116,97,116,101,99,104,97,110,103,101,61,100,44,103,46,111,110,116,105,109,101,111,117,116,61,101,44,103,46,114,101,115,112,111,110,115,101,84,121,112,101,61,34,98,108,111,98,34,44,103,46,116,105,109,101,111,117,116,61,98,44,103,46,111,112,101,110,40,34,71,69,84,34,44,97,44,33,48,41,44,103,46,115,101,110,100,40,41,59,118,97,114,32,104,59,105,102,40,118,46,105,109,112,108,46,111,112,116,105,111,110,115,46,105,109,97,103,101,80,108,97,99,101,104,111,108,100,101,114,41,123,118,97,114,32,105,61,118,46,105,109,112,108,46,111,112,116,105,111,110,115,46,105,109,97,103,101,80,108,97,99,101,104,111,108,100,101,114,46,115,112,108,105,116,40,47,44,47,41,59,105,38,38,105,91,49,93,38,38,40,104,61,105,91,49,93,41,125,125,41,125,102,117,110,99,116,105,111,110,32,107,40,97,44,98,41,123,114,101,116,117,114,110,34,100,97,116,97,58,34,43,98,43,34,59,98,97,115,101,54,52,44,34,43,97,125,102,117,110,99,116,105,111,110,32,108,40,97,41,123,114,101,116,117,114,110,32,97,46,114,101,112,108,97,99,101,40,47,40,91,46,42,43,63,94,36,123,125,40,41,124,92,91,92,93,92,47,92,92,93,41,47,103,44,34,92,92,36,49,34,41,125,102,117,110,99,116,105,111,110,32,109,40,97,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,98,41,123,114,101,116,117,114,110,32,110,101,119,32,80,114,111,109,105,115,101,40,102,117,110,99,116,105,111,110,40,99,41,123,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,40,41,123,99,40,98,41,125,44,97,41,125,41,125,125,102,117,110,99,116,105,111,110,32,110,40,97,41,123,102,111,114,40,118,97,114,32,98,61,91,93,44,99,61,97,46,108,101,110,103,116,104,44,100,61,48,59,100,60,99,59,100,43,43,41,98,46,112,117,115,104,40,97,91,100,93,41,59,114,101,116,117,114,110,32,98,125,102,117,110,99,116,105,111,110,32,111,40,97,41,123,114,101,116,117,114,110,32,97,46,114,101,112,108,97,99,101,40,47,35,47,103,44,34,37,50,51,34,41,46,114,101,112,108,97,99,101,40,47,92,110,47,103,44,34,37,48,65,34,41,125,102,117,110,99,116,105,111,110,32,112,40,97,41,123,118,97,114,32,98,61,114,40,97,44,34,98,111,114,100,101,114,45,108,101,102,116,45,119,105,100,116,104,34,41,44,99,61,114,40,97,44,34,98,111,114,100,101,114,45,114,105,103,104,116,45,119,105,100,116,104,34,41,59,114,101,116,117,114,110,32,97,46,115,99,114,111,108,108,87,105,100,116,104,43,98,43,99,125,102,117,110,99,116,105,111,110,32,113,40,97,41,123,118,97,114,32,98,61,114,40,97,44,34,98,111,114,100,101,114,45,116,111,112,45,119,105,100,116,104,34,41,44,99,61,114,40,97,44,34,98,111,114,100,101,114,45,98,111,116,116,111,109,45,119,105,100,116,104,34,41,59,114,101,116,117,114,110,32,97,46,115,99,114,111,108,108,72,101,105,103,104,116,43,98,43,99,125,102,117,110,99,116,105,111,110,32,114,40,97,44,98,41,123,118,97,114,32,99,61,119,105,110,100,111,119,46,103,101,116,67,111,109,112,117,116,101,100,83,116,121,108,101,40,97,41,46,103,101,116,80,114,111,112,101,114,116,121,86,97,108,117,101,40,98,41,59,114,101,116,117,114,110,32,112,97,114,115,101,70,108,111,97,116,40,99,46,114,101,112,108,97,99,101,40,34,112,120,34,44,34,34,41,41,125,114,101,116,117,114,110,123,101,115,99,97,112,101,58,108,44,112,97,114,115,101,69,120,116,101,110,115,105,111,110,58,98,44,109,105,109,101,84,121,112,101,58,99,44,100,97,116,97,65,115,85,114,108,58,107,44,105,115,68,97,116,97,85,114,108,58,100,44,99,97,110,118,97,115,84,111,66,108,111,98,58,102,44,114,101,115,111,108,118,101,85,114,108,58,103,44,103,101,116,65,110,100,69,110,99,111,100,101,58,106,44,117,105,100,58,104,40,41,44,100,101,108,97,121,58,109,44,97,115,65,114,114,97,121,58,110,44,101,115,99,97,112,101,88,104,116,109,108,58,111,44,109,97,107,101,73,109,97,103,101,58,105,44,119,105,100,116,104,58,112,44,104,101,105,103,104,116,58,113,125,125,102,117,110,99,116,105,111,110,32,110,40,41,123,102,117,110,99,116,105,111,110,32,97,40,97,41,123,114,101,116,117,114,110,32,97,46,115,101,97,114,99,104,40,101,41,33,61,61,45,49,125,102,117,110,99,116,105,111,110,32,98,40,97,41,123,102,111,114,40,118,97,114,32,98,44,99,61,91,93,59,110,117,108,108,33,61,61,40,98,61,101,46,101,120,101,99,40,97,41,41,59,41,99,46,112,117,115,104,40,98,91,49,93,41,59,114,101,116,117,114,110,32,99,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,40,97,41,123,114,101,116,117,114,110,33,113,46,105,115,68,97,116,97,85,114,108,40,97,41,125,41,125,102,117,110,99,116,105,111,110,32,99,40,97,44,98,44,99,44,100,41,123,102,117,110,99,116,105,111,110,32,101,40,97,41,123,114,101,116,117,114,110,32,110,101,119,32,82,101,103,69,120,112,40,34,40,117,114,108,92,92,40,91,39,92,34,93,63,41,40,34,43,113,46,101,115,99,97,112,101,40,97,41,43,34,41,40,91,39,92,34,93,63,92,92,41,41,34,44,34,103,34,41,125,114,101,116,117,114,110,32,80,114,111,109,105,115,101,46,114,101,115,111,108,118,101,40,98,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,97,41,123,114,101,116,117,114,110,32,99,63,113,46,114,101,115,111,108,118,101,85,114,108,40,97,44,99,41,58,97,125,41,46,116,104,101,110,40,100,124,124,113,46,103,101,116,65,110,100,69,110,99,111,100,101,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,97,41,123,114,101,116,117,114,110,32,113,46,100,97,116,97,65,115,85,114,108,40,97,44,113,46,109,105,109,101,84,121,112,101,40,98,41,41,125,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,99,41,123,114,101,116,117,114,110,32,97,46,114,101,112,108,97,99,101,40,101,40,98,41,44,34,36,49,34,43,99,43,34,36,51,34,41,125,41,125,102,117,110,99,116,105,111,110,32,100,40,100,44,101,44,102,41,123,102,117,110,99,116,105,111,110,32,103,40,41,123,114,101,116,117,114,110,33,97,40,100,41,125,114,101,116,117,114,110,32,103,40,41,63,80,114,111,109,105,115,101,46,114,101,115,111,108,118,101,40,100,41,58,80,114,111,109,105,115,101,46,114,101,115,111,108,118,101,40,100,41,46,116,104,101,110,40,98,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,97,41,123,118,97,114,32,98,61,80,114,111,109,105,115,101,46,114,101,115,111,108,118,101,40,100,41,59,114,101,116,117,114,110,32,97,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,97,41,123,98,61,98,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,98,41,123,114,101,116,117,114,110,32,99,40,98,44,97,44,101,44,102,41,125,41,125,41,44,98,125,41,125,118,97,114,32,101,61,47,117,114,108,92,40,91,39,34,93,63,40,91,94,39,34,93,43,63,41,91,39,34,93,63,92,41,47,103,59,114,101,116,117,114,110,123,105,110,108,105,110,101,65,108,108,58,100,44,115,104,111,117,108,100,80,114,111,99,101,115,115,58,97,44,105,109,112,108,58,123,114,101,97,100,85,114,108,115,58,98,44,105,110,108,105,110,101,58,99,125,125,125,102,117,110,99,116,105,111,110,32,111,40,41,123,102,117,110,99,116,105,111,110,32,97,40,41,123,114,101,116,117,114,110,32,98,40,100,111,99,117,109,101,110,116,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,97,41,123,114,101,116,117,114,110,32,80,114,111,109,105,115,101,46,97,108,108,40,97,46,109,97,112,40,102,117,110,99,116,105,111,110,40,97,41,123,114,101,116,117,114,110,32,97,46,114,101,115,111,108,118,101,40,41,125,41,41,125,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,97,41,123,114,101,116,117,114,110,32,97,46,106,111,105,110,40,34,92,110,34,41,125,41,125,102,117,110,99,116,105,111,110,32,98,40,41,123,102,117,110,99,116,105,111,110,32,97,40,97,41,123,114,101,116,117,114,110,32,97,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,40,97,41,123,114,101,116,117,114,110,32,97,46,116,121,112,101,61,61,61,67,83,83,82,117,108,101,46,70,79,78,84,95,70,65,67,69,95,82,85,76,69,125,41,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,40,97,41,123,114,101,116,117,114,110,32,114,46,115,104,111,117,108,100,80,114,111,99,101,115,115,40,97,46,115,116,121,108,101,46,103,101,116,80,114,111,112,101,114,116,121,86,97,108,117,101,40,34,115,114,99,34,41,41,125,41,125,102,117,110,99,116,105,111,110,32,98,40,97,41,123,118,97,114,32,98,61,91,93,59,114,101,116,117,114,110,32,97,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,97,41,123,116,114,121,123,113,46,97,115,65,114,114,97,121,40,97,46,99,115,115,82,117,108,101,115,124,124,91,93,41,46,102,111,114,69,97,99,104,40,98,46,112,117,115,104,46,98,105,110,100,40,98,41,41,125,99,97,116,99,104,40,99,41,123,99,111,110,115,111,108,101,46,108,111,103,40,34,69,114,114,111,114,32,119,104,105,108,101,32,114,101,97,100,105,110,103,32,67,83,83,32,114,117,108,101,115,32,102,114,111,109,32,34,43,97,46,104,114,101,102,44,99,46,116,111,83,116,114,105,110,103,40,41,41,125,125,41,44,98,125,102,117,110,99,116,105,111,110,32,99,40,97,41,123,114,101,116,117,114,110,123,114,101,115,111,108,118,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,98,61,40,97,46,112,97,114,101,110,116,83,116,121,108,101,83,104,101,101,116,124,124,123,125,41,46,104,114,101,102,59,114,101,116,117,114,110,32,114,46,105,110,108,105,110,101,65,108,108,40,97,46,99,115,115,84,101,120,116,44,98,41,125,44,115,114,99,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,97,46,115,116,121,108,101,46,103,101,116,80,114,111,112,101,114,116,121,86,97,108,117,101,40,34,115,114,99,34,41,125,125,125,114,101,116,117,114,110,32,80,114,111,109,105,115,101,46,114,101,115,111,108,118,101,40,113,46,97,115,65,114,114,97,121,40,100,111,99,117,109,101,110,116,46,115,116,121,108,101,83,104,101,101,116,115,41,41,46,116,104,101,110,40,98,41,46,116,104,101,110,40,97,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,97,41,123,114,101,116,117,114,110,32,97,46,109,97,112,40,99,41,125,41,125,114,101,116,117,114,110,123,114,101,115,111,108,118,101,65,108,108,58,97,44,105,109,112,108,58,123,114,101,97,100,65,108,108,58,98,125,125,125,102,117,110,99,116,105,111,110,32,112,40,41,123,102,117,110,99,116,105,111,110,32,97,40,97,41,123,102,117,110,99,116,105,111,110,32,98,40,98,41,123,114,101,116,117,114,110,32,113,46,105,115,68,97,116,97,85,114,108,40,97,46,115,114,99,41,63,80,114,111,109,105,115,101,46,114,101,115,111,108,118,101,40,41,58,80,114,111,109,105,115,101,46,114,101,115,111,108,118,101,40,97,46,115,114,99,41,46,116,104,101,110,40,98,124,124,113,46,103,101,116,65,110,100,69,110,99,111,100,101,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,98,41,123,114,101,116,117,114,110,32,113,46,100,97,116,97,65,115,85,114,108,40,98,44,113,46,109,105,109,101,84,121,112,101,40,97,46,115,114,99,41,41,125,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,98,41,123,114,101,116,117,114,110,32,110,101,119,32,80,114,111,109,105,115,101,40,102,117,110,99,116,105,111,110,40,99,44,100,41,123,97,46,111,110,108,111,97,100,61,99,44,97,46,111,110,101,114,114,111,114,61,100,44,97,46,115,114,99,61,98,125,41,125,41,125,114,101,116,117,114,110,123,105,110,108,105,110,101,58,98,125,125,102,117,110,99,116,105,111,110,32,98,40,99,41,123,102,117,110,99,116,105,111,110,32,100,40,97,41,123,118,97,114,32,98,61,97,46,115,116,121,108,101,46,103,101,116,80,114,111,112,101,114,116,121,86,97,108,117,101,40,34,98,97,99,107,103,114,111,117,110,100,34,41,59,114,101,116,117,114,110,32,98,63,114,46,105,110,108,105,110,101,65,108,108,40,98,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,98,41,123,97,46,115,116,121,108,101,46,115,101,116,80,114,111,112,101,114,116,121,40,34,98,97,99,107,103,114,111,117,110,100,34,44,98,44,97,46,115,116,121,108,101,46,103,101,116,80,114,111,112,101,114,116,121,80,114,105,111,114,105,116,121,40,34,98,97,99,107,103,114,111,117,110,100,34,41,41,125,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,97,125,41,58,80,114,111,109,105,115,101,46,114,101,115,111,108,118,101,40,97,41,125,114,101,116,117,114,110,32,99,32,105,110,115,116,97,110,99,101,111,102,32,69,108,101,109,101,110,116,63,100,40,99,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,99,32,105,110,115,116,97,110,99,101,111,102,32,72,84,77,76,73,109,97,103,101,69,108,101,109,101,110,116,63,97,40,99,41,46,105,110,108,105,110,101,40,41,58,80,114,111,109,105,115,101,46,97,108,108,40,113,46,97,115,65,114,114,97,121,40,99,46,99,104,105,108,100,78,111,100,101,115,41,46,109,97,112,40,102,117,110,99,116,105,111,110,40,97,41,123,114,101,116,117,114,110,32,98,40,97,41,125,41,41,125,41,58,80,114,111,109,105,115,101,46,114,101,115,111,108,118,101,40,99,41,125,114,101,116,117,114,110,123,105,110,108,105,110,101,65,108,108,58,98,44,105,109,112,108,58,123,110,101,119,73,109,97,103,101,58,97,125,125,125,118,97,114,32,113,61,109,40,41,44,114,61,110,40,41,44,115,61,111,40,41,44,116,61,112,40,41,44,117,61,123,105,109,97,103,101,80,108,97,99,101,104,111,108,100,101,114,58,118,111,105,100,32,48,44,99,97,99,104,101,66,117,115,116,58,33,49,125,44,118,61,123,116,111,83,118,103,58,98,44,116,111,80,110,103,58,100,44,116,111,74,112,101,103,58,101,44,116,111,66,108,111,98,58,102,44,116,111,80,105,120,101,108,68,97,116,97,58,99,44,105,109,112,108,58,123,102,111,110,116,70,97,99,101,115,58,115,44,105,109,97,103,101,115,58,116,44,117,116,105,108,58,113,44,105,110,108,105,110,101,114,58,114,44,111,112,116,105,111,110,115,58,123,125,125,125,59,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,109,111,100,117,108,101,63,109,111,100,117,108,101,46,101,120,112,111,114,116,115,61,118,58,97,46,100,111,109,116,111,105,109,97,103,101,61,118,125,40,116,104,105,115,41,59,239,187,191,40,102,117,110,99,116,105,111,110,40,102,41,123,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,100,101,102,105,110,101,38,38,100,101,102,105,110,101,46,97,109,100,63,100,101,102,105,110,101,40,91,34,106,113,117,101,114,121,34,93,44,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,102,40,110,44,100,111,99,117,109,101,110,116,44,119,105,110,100,111,119,44,110,97,118,105,103,97,116,111,114,41,125,41,58,34,111,98,106,101,99,116,34,61,61,61,116,121,112,101,111,102,32,101,120,112,111,114,116,115,63,102,40,114,101,113,117,105,114,101,40,34,106,113,117,101,114,121,34,41,44,100,111,99,117,109,101,110,116,44,119,105,110,100,111,119,44,110,97,118,105,103,97,116,111,114,41,58,102,40,106,81,117,101,114,121,44,100,111,99,117,109,101,110,116,44,119,105,110,100,111,119,44,110,97,118,105,103,97,116,111,114,41,125,41,40,102,117,110,99,116,105,111,110,40,102,44,110,44,107,44,114,44,112,41,123,118,97,114,32,116,61,48,44,109,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,97,61,114,46,117,115,101,114,65,103,101,110,116,44,98,61,47,109,115,105,101,92,115,92,100,43,47,105,59,114,101,116,117,114,110,32,48,60,97,46,115,101,97,114,99,104,40,98,41,38,38,40,97,61,98,46,101,120,101,99,40,97,41,46,116,111,83,116,114,105,110,103,40,41,44,97,61,97,46,115,112,108,105,116,40,34,32,34,41,91,49,93,44,57,62,97,41,63,40,102,40,34,104,116,109,108,34,41,46,97,100,100,67,108,97,115,115,40,34,108,116,45,105,101,57,34,41,44,33,48,41,58,33,49,125,40,41,59,70,117,110,99,116,105,111,110,46,112,114,111,116,111,116,121,112,101,46,98,105,110,100,124,124,40,70,117,110,99,116,105,111,110,46,112,114,111,116,111,116,121,112,101,46,98,105,110,100,61,102,117,110,99,116,105,111,110,40,97,41,123,118,97,114,32,98,61,116,104,105,115,44,100,61,91,93,46,115,108,105,99,101,59,105,102,40,34,102,117,110,99,116,105,111,110,34,33,61,10,116,121,112,101,111,102,32,98,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,59,118,97,114,32,99,61,100,46,99,97,108,108,40,97,114,103,117,109,101,110,116,115,44,49,41,44,101,61,102,117,110,99,116,105,111,110,40,41,123,105,102,40,116,104,105,115,32,105,110,115,116,97,110,99,101,111,102,32,101,41,123,118,97,114,32,103,61,102,117,110,99,116,105,111,110,40,41,123,125,59,103,46,112,114,111,116,111,116,121,112,101,61,98,46,112,114,111,116,111,116,121,112,101,59,118,97,114,32,103,61,110,101,119,32,103,44,108,61,98,46,97,112,112,108,121,40,103,44,99,46,99,111,110,99,97,116,40,100,46,99,97,108,108,40,97,114,103,117,109,101,110,116,115,41,41,41,59,114,101,116,117,114,110,32,79,98,106,101,99,116,40,108,41,61,61,61,108,63,108,58,103,125,114,101,116,117,114,110,32,98,46,97,112,112,108,121,40,97,44,99,46,99,111,110,99,97,116,40,100,46,99,97,108,108,40,97,114,103,117,109,101,110,116,115,41,41,41,125,59,114,101,116,117,114,110,32,101,125,41,59,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,105,110,100,101,120,79,102,124,124,40,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,105,110,100,101,120,79,102,61,102,117,110,99,116,105,111,110,40,97,44,98,41,123,105,102,40,110,117,108,108,61,61,116,104,105,115,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,39,34,116,104,105,115,34,32,105,115,32,110,117,108,108,32,111,114,32,110,111,116,32,100,101,102,105,110,101,100,39,41,59,118,97,114,32,100,61,79,98,106,101,99,116,40,116,104,105,115,41,44,99,61,100,46,108,101,110,103,116,104,62,62,62,48,59,105,102,40,48,61,61,61,99,41,114,101,116,117,114,110,45,49,59,118,97,114,32,101,61,43,98,124,124,48,59,73,110,102,105,110,105,116,121,61,61,61,77,97,116,104,46,97,98,115,40,101,41,38,38,40,101,61,48,41,59,105,102,40,101,62,61,99,41,114,101,116,117,114,110,45,49,59,10,102,111,114,40,101,61,77,97,116,104,46,109,97,120,40,48,60,61,101,63,101,58,99,45,77,97,116,104,46,97,98,115,40,101,41,44,48,41,59,101,60,99,59,41,123,105,102,40,101,32,105,110,32,100,38,38,100,91,101,93,61,61,61,97,41,114,101,116,117,114,110,32,101,59,101,43,43,125,114,101,116,117,114,110,45,49,125,41,59,118,97,114,32,113,61,102,117,110,99,116,105,111,110,40,97,44,98,44,100,41,123,116,104,105,115,46,86,69,82,83,73,79,78,61,34,50,46,50,46,48,34,59,116,104,105,115,46,105,110,112,117,116,61,97,59,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,61,100,59,116,104,105,115,46,111,108,100,95,116,111,61,116,104,105,115,46,111,108,100,95,102,114,111,109,61,116,104,105,115,46,117,112,100,97,116,101,95,116,109,61,116,104,105,115,46,99,97,108,99,95,99,111,117,110,116,61,116,104,105,115,46,99,117,114,114,101,110,116,95,112,108,117,103,105,110,61,48,59,116,104,105,115,46,114,97,102,95,105,100,61,116,104,105,115,46,111,108,100,95,109,105,110,95,105,110,116,101,114,118,97,108,61,110,117,108,108,59,116,104,105,115,46,110,111,95,100,105,97,112,97,115,111,110,61,116,104,105,115,46,102,111,114,99,101,95,114,101,100,114,97,119,61,116,104,105,115,46,100,114,97,103,103,105,110,103,61,33,49,59,116,104,105,115,46,104,97,115,95,116,97,98,95,105,110,100,101,120,61,33,48,59,116,104,105,115,46,105,115,95,117,112,100,97,116,101,61,116,104,105,115,46,105,115,95,107,101,121,61,33,49,59,116,104,105,115,46,105,115,95,115,116,97,114,116,61,33,48,59,116,104,105,115,46,105,115,95,99,108,105,99,107,61,116,104,105,115,46,105,115,95,114,101,115,105,122,101,61,116,104,105,115,46,105,115,95,97,99,116,105,118,101,61,116,104,105,115,46,105,115,95,102,105,110,105,115,104,61,33,49,59,98,61,98,124,124,123,125,59,116,104,105,115,46,36,99,97,99,104,101,61,123,119,105,110,58,102,40,107,41,44,98,111,100,121,58,102,40,110,46,98,111,100,121,41,44,10,105,110,112,117,116,58,102,40,97,41,44,99,111,110,116,58,110,117,108,108,44,114,115,58,110,117,108,108,44,109,105,110,58,110,117,108,108,44,109,97,120,58,110,117,108,108,44,102,114,111,109,58,110,117,108,108,44,116,111,58,110,117,108,108,44,115,105,110,103,108,101,58,110,117,108,108,44,98,97,114,58,110,117,108,108,44,108,105,110,101,58,110,117,108,108,44,115,95,115,105,110,103,108,101,58,110,117,108,108,44,115,95,102,114,111,109,58,110,117,108,108,44,115,95,116,111,58,110,117,108,108,44,115,104,97,100,95,115,105,110,103,108,101,58,110,117,108,108,44,115,104,97,100,95,102,114,111,109,58,110,117,108,108,44,115,104,97,100,95,116,111,58,110,117,108,108,44,101,100,103,101,58,110,117,108,108,44,103,114,105,100,58,110,117,108,108,44,103,114,105,100,95,108,97,98,101,108,115,58,91,93,125,59,116,104,105,115,46,99,111,111,114,100,115,61,123,120,95,103,97,112,58,48,44,120,95,112,111,105,110,116,101,114,58,48,44,119,95,114,115,58,48,44,119,95,114,115,95,111,108,100,58,48,44,119,95,104,97,110,100,108,101,58,48,44,112,95,103,97,112,58,48,44,112,95,103,97,112,95,108,101,102,116,58,48,44,112,95,103,97,112,95,114,105,103,104,116,58,48,44,112,95,115,116,101,112,58,48,44,112,95,112,111,105,110,116,101,114,58,48,44,112,95,104,97,110,100,108,101,58,48,44,112,95,115,105,110,103,108,101,95,102,97,107,101,58,48,44,112,95,115,105,110,103,108,101,95,114,101,97,108,58,48,44,112,95,102,114,111,109,95,102,97,107,101,58,48,44,112,95,102,114,111,109,95,114,101,97,108,58,48,44,112,95,116,111,95,102,97,107,101,58,48,44,112,95,116,111,95,114,101,97,108,58,48,44,112,95,98,97,114,95,120,58,48,44,112,95,98,97,114,95,119,58,48,44,103,114,105,100,95,103,97,112,58,48,44,98,105,103,95,110,117,109,58,48,44,98,105,103,58,91,93,44,98,105,103,95,119,58,91,93,44,98,105,103,95,112,58,91,93,44,98,105,103,95,120,58,91,93,125,59,10,116,104,105,115,46,108,97,98,101,108,115,61,123,119,95,109,105,110,58,48,44,119,95,109,97,120,58,48,44,119,95,102,114,111,109,58,48,44,119,95,116,111,58,48,44,119,95,115,105,110,103,108,101,58,48,44,112,95,109,105,110,58,48,44,112,95,109,97,120,58,48,44,112,95,102,114,111,109,95,102,97,107,101,58,48,44,112,95,102,114,111,109,95,108,101,102,116,58,48,44,112,95,116,111,95,102,97,107,101,58,48,44,112,95,116,111,95,108,101,102,116,58,48,44,112,95,115,105,110,103,108,101,95,102,97,107,101,58,48,44,112,95,115,105,110,103,108,101,95,108,101,102,116,58,48,125,59,118,97,114,32,99,61,116,104,105,115,46,36,99,97,99,104,101,46,105,110,112,117,116,59,97,61,99,46,112,114,111,112,40,34,118,97,108,117,101,34,41,59,118,97,114,32,101,59,100,61,123,116,121,112,101,58,34,115,105,110,103,108,101,34,44,109,105,110,58,49,48,44,109,97,120,58,49,48,48,44,102,114,111,109,58,110,117,108,108,44,116,111,58,110,117,108,108,44,115,116,101,112,58,49,44,109,105,110,95,105,110,116,101,114,118,97,108,58,48,44,109,97,120,95,105,110,116,101,114,118,97,108,58,48,44,100,114,97,103,95,105,110,116,101,114,118,97,108,58,33,49,44,118,97,108,117,101,115,58,91,93,44,112,95,118,97,108,117,101,115,58,91,93,44,102,114,111,109,95,102,105,120,101,100,58,33,49,44,102,114,111,109,95,109,105,110,58,110,117,108,108,44,102,114,111,109,95,109,97,120,58,110,117,108,108,44,102,114,111,109,95,115,104,97,100,111,119,58,33,49,44,116,111,95,102,105,120,101,100,58,33,49,44,116,111,95,109,105,110,58,110,117,108,108,44,116,111,95,109,97,120,58,110,117,108,108,44,116,111,95,115,104,97,100,111,119,58,33,49,44,112,114,101,116,116,105,102,121,95,101,110,97,98,108,101,100,58,33,48,44,112,114,101,116,116,105,102,121,95,115,101,112,97,114,97,116,111,114,58,34,32,34,44,112,114,101,116,116,105,102,121,58,110,117,108,108,44,102,111,114,99,101,95,101,100,103,101,115,58,33,49,44,10,107,101,121,98,111,97,114,100,58,33,48,44,103,114,105,100,58,33,49,44,103,114,105,100,95,109,97,114,103,105,110,58,33,48,44,103,114,105,100,95,110,117,109,58,52,44,103,114,105,100,95,115,110,97,112,58,33,49,44,104,105,100,101,95,109,105,110,95,109,97,120,58,33,49,44,104,105,100,101,95,102,114,111,109,95,116,111,58,33,49,44,112,114,101,102,105,120,58,34,34,44,112,111,115,116,102,105,120,58,34,34,44,109,97,120,95,112,111,115,116,102,105,120,58,34,34,44,100,101,99,111,114,97,116,101,95,98,111,116,104,58,33,48,44,118,97,108,117,101,115,95,115,101,112,97,114,97,116,111,114,58,34,32,92,117,50,48,49,52,32,34,44,105,110,112,117,116,95,118,97,108,117,101,115,95,115,101,112,97,114,97,116,111,114,58,34,59,34,44,100,105,115,97,98,108,101,58,33,49,44,98,108,111,99,107,58,33,49,44,101,120,116,114,97,95,99,108,97,115,115,101,115,58,34,34,44,115,99,111,112,101,58,110,117,108,108,44,111,110,83,116,97,114,116,58,110,117,108,108,44,111,110,67,104,97,110,103,101,58,110,117,108,108,44,111,110,70,105,110,105,115,104,58,110,117,108,108,44,111,110,85,112,100,97,116,101,58,110,117,108,108,125,59,34,73,78,80,85,84,34,33,61,61,99,91,48,93,46,110,111,100,101,78,97,109,101,38,38,99,111,110,115,111,108,101,38,38,99,111,110,115,111,108,101,46,119,97,114,110,38,38,99,111,110,115,111,108,101,46,119,97,114,110,40,34,66,97,115,101,32,101,108,101,109,101,110,116,32,115,104,111,117,108,100,32,98,101,32,60,105,110,112,117,116,62,33,34,44,99,91,48,93,41,59,99,61,123,116,121,112,101,58,99,46,100,97,116,97,40,34,116,121,112,101,34,41,44,109,105,110,58,99,46,100,97,116,97,40,34,109,105,110,34,41,44,109,97,120,58,99,46,100,97,116,97,40,34,109,97,120,34,41,44,102,114,111,109,58,99,46,100,97,116,97,40,34,102,114,111,109,34,41,44,116,111,58,99,46,100,97,116,97,40,34,116,111,34,41,44,115,116,101,112,58,99,46,100,97,116,97,40,34,115,116,101,112,34,41,44,10,109,105,110,95,105,110,116,101,114,118,97,108,58,99,46,100,97,116,97,40,34,109,105,110,73,110,116,101,114,118,97,108,34,41,44,109,97,120,95,105,110,116,101,114,118,97,108,58,99,46,100,97,116,97,40,34,109,97,120,73,110,116,101,114,118,97,108,34,41,44,100,114,97,103,95,105,110,116,101,114,118,97,108,58,99,46,100,97,116,97,40,34,100,114,97,103,73,110,116,101,114,118,97,108,34,41,44,118,97,108,117,101,115,58,99,46,100,97,116,97,40,34,118,97,108,117,101,115,34,41,44,102,114,111,109,95,102,105,120,101,100,58,99,46,100,97,116,97,40,34,102,114,111,109,70,105,120,101,100,34,41,44,102,114,111,109,95,109,105,110,58,99,46,100,97,116,97,40,34,102,114,111,109,77,105,110,34,41,44,102,114,111,109,95,109,97,120,58,99,46,100,97,116,97,40,34,102,114,111,109,77,97,120,34,41,44,102,114,111,109,95,115,104,97,100,111,119,58,99,46,100,97,116,97,40,34,102,114,111,109,83,104,97,100,111,119,34,41,44,116,111,95,102,105,120,101,100,58,99,46,100,97,116,97,40,34,116,111,70,105,120,101,100,34,41,44,116,111,95,109,105,110,58,99,46,100,97,116,97,40,34,116,111,77,105,110,34,41,44,116,111,95,109,97,120,58,99,46,100,97,116,97,40,34,116,111,77,97,120,34,41,44,116,111,95,115,104,97,100,111,119,58,99,46,100,97,116,97,40,34,116,111,83,104,97,100,111,119,34,41,44,112,114,101,116,116,105,102,121,95,101,110,97,98,108,101,100,58,99,46,100,97,116,97,40,34,112,114,101,116,116,105,102,121,69,110,97,98,108,101,100,34,41,44,112,114,101,116,116,105,102,121,95,115,101,112,97,114,97,116,111,114,58,99,46,100,97,116,97,40,34,112,114,101,116,116,105,102,121,83,101,112,97,114,97,116,111,114,34,41,44,102,111,114,99,101,95,101,100,103,101,115,58,99,46,100,97,116,97,40,34,102,111,114,99,101,69,100,103,101,115,34,41,44,107,101,121,98,111,97,114,100,58,99,46,100,97,116,97,40,34,107,101,121,98,111,97,114,100,34,41,44,10,103,114,105,100,58,99,46,100,97,116,97,40,34,103,114,105,100,34,41,44,103,114,105,100,95,109,97,114,103,105,110,58,99,46,100,97,116,97,40,34,103,114,105,100,77,97,114,103,105,110,34,41,44,103,114,105,100,95,110,117,109,58,99,46,100,97,116,97,40,34,103,114,105,100,78,117,109,34,41,44,103,114,105,100,95,115,110,97,112,58,99,46,100,97,116,97,40,34,103,114,105,100,83,110,97,112,34,41,44,104,105,100,101,95,109,105,110,95,109,97,120,58,99,46,100,97,116,97,40,34,104,105,100,101,77,105,110,77,97,120,34,41,44,104,105,100,101,95,102,114,111,109,95,116,111,58,99,46,100,97,116,97,40,34,104,105,100,101,70,114,111,109,84,111,34,41,44,112,114,101,102,105,120,58,99,46,100,97,116,97,40,34,112,114,101,102,105,120,34,41,44,112,111,115,116,102,105,120,58,99,46,100,97,116,97,40,34,112,111,115,116,102,105,120,34,41,44,109,97,120,95,112,111,115,116,102,105,120,58,99,46,100,97,116,97,40,34,109,97,120,80,111,115,116,102,105,120,34,41,44,100,101,99,111,114,97,116,101,95,98,111,116,104,58,99,46,100,97,116,97,40,34,100,101,99,111,114,97,116,101,66,111,116,104,34,41,44,118,97,108,117,101,115,95,115,101,112,97,114,97,116,111,114,58,99,46,100,97,116,97,40,34,118,97,108,117,101,115,83,101,112,97,114,97,116,111,114,34,41,44,105,110,112,117,116,95,118,97,108,117,101,115,95,115,101,112,97,114,97,116,111,114,58,99,46,100,97,116,97,40,34,105,110,112,117,116,86,97,108,117,101,115,83,101,112,97,114,97,116,111,114,34,41,44,100,105,115,97,98,108,101,58,99,46,100,97,116,97,40,34,100,105,115,97,98,108,101,34,41,44,98,108,111,99,107,58,99,46,100,97,116,97,40,34,98,108,111,99,107,34,41,44,101,120,116,114,97,95,99,108,97,115,115,101,115,58,99,46,100,97,116,97,40,34,101,120,116,114,97,67,108,97,115,115,101,115,34,41,125,59,99,46,118,97,108,117,101,115,61,99,46,118,97,108,117,101,115,38,38,99,46,118,97,108,117,101,115,46,115,112,108,105,116,40,34,44,34,41,59,10,102,111,114,40,101,32,105,110,32,99,41,99,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,101,41,38,38,40,99,91,101,93,33,61,61,112,38,38,34,34,33,61,61,99,91,101,93,124,124,100,101,108,101,116,101,32,99,91,101,93,41,59,97,33,61,61,112,38,38,34,34,33,61,61,97,38,38,40,97,61,97,46,115,112,108,105,116,40,99,46,105,110,112,117,116,95,118,97,108,117,101,115,95,115,101,112,97,114,97,116,111,114,124,124,98,46,105,110,112,117,116,95,118,97,108,117,101,115,95,115,101,112,97,114,97,116,111,114,124,124,34,59,34,41,44,97,91,48,93,38,38,97,91,48,93,61,61,43,97,91,48,93,38,38,40,97,91,48,93,61,43,97,91,48,93,41,44,97,91,49,93,38,38,97,91,49,93,61,61,43,97,91,49,93,38,38,40,97,91,49,93,61,43,97,91,49,93,41,44,98,38,38,98,46,118,97,108,117,101,115,38,38,98,46,118,97,108,117,101,115,46,108,101,110,103,116,104,63,40,100,46,102,114,111,109,61,97,91,48,93,38,38,98,46,118,97,108,117,101,115,46,105,110,100,101,120,79,102,40,97,91,48,93,41,44,100,46,116,111,61,97,91,49,93,38,38,98,46,118,97,108,117,101,115,46,105,110,100,101,120,79,102,40,97,91,49,93,41,41,58,40,100,46,102,114,111,109,61,97,91,48,93,38,38,43,97,91,48,93,44,100,46,116,111,61,97,91,49,93,38,38,43,97,91,49,93,41,41,59,102,46,101,120,116,101,110,100,40,100,44,98,41,59,102,46,101,120,116,101,110,100,40,100,44,99,41,59,116,104,105,115,46,111,112,116,105,111,110,115,61,100,59,116,104,105,115,46,117,112,100,97,116,101,95,99,104,101,99,107,61,123,125,59,116,104,105,115,46,118,97,108,105,100,97,116,101,40,41,59,116,104,105,115,46,114,101,115,117,108,116,61,123,105,110,112,117,116,58,116,104,105,115,46,36,99,97,99,104,101,46,105,110,112,117,116,44,115,108,105,100,101,114,58,110,117,108,108,44,109,105,110,58,116,104,105,115,46,111,112,116,105,111,110,115,46,109,105,110,44,10,109,97,120,58,116,104,105,115,46,111,112,116,105,111,110,115,46,109,97,120,44,102,114,111,109,58,116,104,105,115,46,111,112,116,105,111,110,115,46,102,114,111,109,44,102,114,111,109,95,112,101,114,99,101,110,116,58,48,44,102,114,111,109,95,118,97,108,117,101,58,110,117,108,108,44,116,111,58,116,104,105,115,46,111,112,116,105,111,110,115,46,116,111,44,116,111,95,112,101,114,99,101,110,116,58,48,44,116,111,95,118,97,108,117,101,58,110,117,108,108,125,59,116,104,105,115,46,105,110,105,116,40,41,125,59,113,46,112,114,111,116,111,116,121,112,101,61,123,105,110,105,116,58,102,117,110,99,116,105,111,110,40,97,41,123,116,104,105,115,46,110,111,95,100,105,97,112,97,115,111,110,61,33,49,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,115,116,101,112,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,80,101,114,99,101,110,116,40,116,104,105,115,46,111,112,116,105,111,110,115,46,115,116,101,112,44,33,48,41,59,116,104,105,115,46,116,97,114,103,101,116,61,34,98,97,115,101,34,59,116,104,105,115,46,116,111,103,103,108,101,73,110,112,117,116,40,41,59,116,104,105,115,46,97,112,112,101,110,100,40,41,59,116,104,105,115,46,115,101,116,77,105,110,77,97,120,40,41,59,97,63,40,116,104,105,115,46,102,111,114,99,101,95,114,101,100,114,97,119,61,33,48,44,116,104,105,115,46,99,97,108,99,40,33,48,41,44,116,104,105,115,46,99,97,108,108,79,110,85,112,100,97,116,101,40,41,41,58,40,116,104,105,115,46,102,111,114,99,101,95,114,101,100,114,97,119,61,33,48,44,116,104,105,115,46,99,97,108,99,40,33,48,41,44,116,104,105,115,46,99,97,108,108,79,110,83,116,97,114,116,40,41,41,59,116,104,105,115,46,117,112,100,97,116,101,83,99,101,110,101,40,41,125,44,97,112,112,101,110,100,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,36,99,97,99,104,101,46,105,110,112,117,116,46,98,101,102,111,114,101,40,39,60,115,112,97,110,32,99,108,97,115,115,61,34,105,114,115,32,106,115,45,105,114,115,45,39,43,10,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,43,34,32,34,43,116,104,105,115,46,111,112,116,105,111,110,115,46,101,120,116,114,97,95,99,108,97,115,115,101,115,43,39,34,62,60,47,115,112,97,110,62,39,41,59,116,104,105,115,46,36,99,97,99,104,101,46,105,110,112,117,116,46,112,114,111,112,40,34,114,101,97,100,111,110,108,121,34,44,33,48,41,59,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,61,116,104,105,115,46,36,99,97,99,104,101,46,105,110,112,117,116,46,112,114,101,118,40,41,59,116,104,105,115,46,114,101,115,117,108,116,46,115,108,105,100,101,114,61,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,59,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,104,116,109,108,40,39,60,115,112,97,110,32,99,108,97,115,115,61,34,105,114,115,34,62,60,115,112,97,110,32,99,108,97,115,115,61,34,105,114,115,45,108,105,110,101,34,32,116,97,98,105,110,100,101,120,61,34,48,34,62,60,115,112,97,110,32,99,108,97,115,115,61,34,105,114,115,45,108,105,110,101,45,108,101,102,116,34,62,60,47,115,112,97,110,62,60,115,112,97,110,32,99,108,97,115,115,61,34,105,114,115,45,108,105,110,101,45,109,105,100,34,62,60,47,115,112,97,110,62,60,115,112,97,110,32,99,108,97,115,115,61,34,105,114,115,45,108,105,110,101,45,114,105,103,104,116,34,62,60,47,115,112,97,110,62,60,47,115,112,97,110,62,60,115,112,97,110,32,99,108,97,115,115,61,34,105,114,115,45,109,105,110,34,62,48,60,47,115,112,97,110,62,60,115,112,97,110,32,99,108,97,115,115,61,34,105,114,115,45,109,97,120,34,62,49,60,47,115,112,97,110,62,60,115,112,97,110,32,99,108,97,115,115,61,34,105,114,115,45,102,114,111,109,34,62,48,60,47,115,112,97,110,62,60,115,112,97,110,32,99,108,97,115,115,61,34,105,114,115,45,116,111,34,62,48,60,47,115,112,97,110,62,60,115,112,97,110,32,99,108,97,115,115,61,34,105,114,115,45,115,105,110,103,108,101,34,62,48,60,47,115,112,97,110,62,60,47,115,112,97,110,62,60,115,112,97,110,32,99,108,97,115,115,61,34,105,114,115,45,103,114,105,100,34,62,60,47,115,112,97,110,62,60,115,112,97,110,32,99,108,97,115,115,61,34,105,114,115,45,98,97,114,34,62,60,47,115,112,97,110,62,39,41,59,10,116,104,105,115,46,36,99,97,99,104,101,46,114,115,61,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,102,105,110,100,40,34,46,105,114,115,34,41,59,116,104,105,115,46,36,99,97,99,104,101,46,109,105,110,61,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,102,105,110,100,40,34,46,105,114,115,45,109,105,110,34,41,59,116,104,105,115,46,36,99,97,99,104,101,46,109,97,120,61,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,102,105,110,100,40,34,46,105,114,115,45,109,97,120,34,41,59,116,104,105,115,46,36,99,97,99,104,101,46,102,114,111,109,61,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,102,105,110,100,40,34,46,105,114,115,45,102,114,111,109,34,41,59,116,104,105,115,46,36,99,97,99,104,101,46,116,111,61,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,102,105,110,100,40,34,46,105,114,115,45,116,111,34,41,59,116,104,105,115,46,36,99,97,99,104,101,46,115,105,110,103,108,101,61,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,102,105,110,100,40,34,46,105,114,115,45,115,105,110,103,108,101,34,41,59,116,104,105,115,46,36,99,97,99,104,101,46,98,97,114,61,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,102,105,110,100,40,34,46,105,114,115,45,98,97,114,34,41,59,116,104,105,115,46,36,99,97,99,104,101,46,108,105,110,101,61,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,102,105,110,100,40,34,46,105,114,115,45,108,105,110,101,34,41,59,116,104,105,115,46,36,99,97,99,104,101,46,103,114,105,100,61,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,102,105,110,100,40,34,46,105,114,115,45,103,114,105,100,34,41,59,34,115,105,110,103,108,101,34,61,61,61,116,104,105,115,46,111,112,116,105,111,110,115,46,116,121,112,101,63,40,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,97,112,112,101,110,100,40,39,60,115,112,97,110,32,99,108,97,115,115,61,34,105,114,115,45,98,97,114,45,101,100,103,101,34,62,60,47,115,112,97,110,62,60,115,112,97,110,32,99,108,97,115,115,61,34,105,114,115,45,115,104,97,100,111,119,32,115,104,97,100,111,119,45,115,105,110,103,108,101,34,62,60,47,115,112,97,110,62,60,115,112,97,110,32,99,108,97,115,115,61,34,105,114,115,45,115,108,105,100,101,114,32,115,105,110,103,108,101,34,62,60,47,115,112,97,110,62,39,41,44,10,116,104,105,115,46,36,99,97,99,104,101,46,101,100,103,101,61,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,102,105,110,100,40,34,46,105,114,115,45,98,97,114,45,101,100,103,101,34,41,44,116,104,105,115,46,36,99,97,99,104,101,46,115,95,115,105,110,103,108,101,61,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,102,105,110,100,40,34,46,115,105,110,103,108,101,34,41,44,116,104,105,115,46,36,99,97,99,104,101,46,102,114,111,109,91,48,93,46,115,116,121,108,101,46,118,105,115,105,98,105,108,105,116,121,61,34,104,105,100,100,101,110,34,44,116,104,105,115,46,36,99,97,99,104,101,46,116,111,91,48,93,46,115,116,121,108,101,46,118,105,115,105,98,105,108,105,116,121,61,34,104,105,100,100,101,110,34,44,116,104,105,115,46,36,99,97,99,104,101,46,115,104,97,100,95,115,105,110,103,108,101,61,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,102,105,110,100,40,34,46,115,104,97,100,111,119,45,115,105,110,103,108,101,34,41,41,58,40,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,97,112,112,101,110,100,40,39,60,115,112,97,110,32,99,108,97,115,115,61,34,105,114,115,45,115,104,97,100,111,119,32,115,104,97,100,111,119,45,102,114,111,109,34,62,60,47,115,112,97,110,62,60,115,112,97,110,32,99,108,97,115,115,61,34,105,114,115,45,115,104,97,100,111,119,32,115,104,97,100,111,119,45,116,111,34,62,60,47,115,112,97,110,62,60,115,112,97,110,32,99,108,97,115,115,61,34,105,114,115,45,115,108,105,100,101,114,32,102,114,111,109,34,62,60,47,115,112,97,110,62,60,115,112,97,110,32,99,108,97,115,115,61,34,105,114,115,45,115,108,105,100,101,114,32,116,111,34,62,60,47,115,112,97,110,62,39,41,44,116,104,105,115,46,36,99,97,99,104,101,46,115,95,102,114,111,109,61,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,102,105,110,100,40,34,46,102,114,111,109,34,41,44,10,116,104,105,115,46,36,99,97,99,104,101,46,115,95,116,111,61,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,102,105,110,100,40,34,46,116,111,34,41,44,116,104,105,115,46,36,99,97,99,104,101,46,115,104,97,100,95,102,114,111,109,61,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,102,105,110,100,40,34,46,115,104,97,100,111,119,45,102,114,111,109,34,41,44,116,104,105,115,46,36,99,97,99,104,101,46,115,104,97,100,95,116,111,61,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,102,105,110,100,40,34,46,115,104,97,100,111,119,45,116,111,34,41,44,116,104,105,115,46,115,101,116,84,111,112,72,97,110,100,108,101,114,40,41,41,59,116,104,105,115,46,111,112,116,105,111,110,115,46,104,105,100,101,95,102,114,111,109,95,116,111,38,38,40,116,104,105,115,46,36,99,97,99,104,101,46,102,114,111,109,91,48,93,46,115,116,121,108,101,46,100,105,115,112,108,97,121,61,34,110,111,110,101,34,44,116,104,105,115,46,36,99,97,99,104,101,46,116,111,91,48,93,46,115,116,121,108,101,46,100,105,115,112,108,97,121,61,34,110,111,110,101,34,44,116,104,105,115,46,36,99,97,99,104,101,46,115,105,110,103,108,101,91,48,93,46,115,116,121,108,101,46,100,105,115,112,108,97,121,61,34,110,111,110,101,34,41,59,116,104,105,115,46,97,112,112,101,110,100,71,114,105,100,40,41,59,116,104,105,115,46,111,112,116,105,111,110,115,46,100,105,115,97,98,108,101,63,40,116,104,105,115,46,97,112,112,101,110,100,68,105,115,97,98,108,101,77,97,115,107,40,41,44,116,104,105,115,46,36,99,97,99,104,101,46,105,110,112,117,116,91,48,93,46,100,105,115,97,98,108,101,100,61,33,48,41,58,40,116,104,105,115,46,36,99,97,99,104,101,46,105,110,112,117,116,91,48,93,46,100,105,115,97,98,108,101,100,61,33,49,44,116,104,105,115,46,114,101,109,111,118,101,68,105,115,97,98,108,101,77,97,115,107,40,41,44,116,104,105,115,46,98,105,110,100,69,118,101,110,116,115,40,41,41,59,10,116,104,105,115,46,111,112,116,105,111,110,115,46,100,105,115,97,98,108,101,124,124,40,116,104,105,115,46,111,112,116,105,111,110,115,46,98,108,111,99,107,63,116,104,105,115,46,97,112,112,101,110,100,68,105,115,97,98,108,101,77,97,115,107,40,41,58,116,104,105,115,46,114,101,109,111,118,101,68,105,115,97,98,108,101,77,97,115,107,40,41,41,59,116,104,105,115,46,111,112,116,105,111,110,115,46,100,114,97,103,95,105,110,116,101,114,118,97,108,38,38,40,116,104,105,115,46,36,99,97,99,104,101,46,98,97,114,91,48,93,46,115,116,121,108,101,46,99,117,114,115,111,114,61,34,109,111,118,101,34,41,125,44,115,101,116,84,111,112,72,97,110,100,108,101,114,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,97,61,116,104,105,115,46,111,112,116,105,111,110,115,46,109,97,120,44,98,61,116,104,105,115,46,111,112,116,105,111,110,115,46,116,111,59,116,104,105,115,46,111,112,116,105,111,110,115,46,102,114,111,109,62,116,104,105,115,46,111,112,116,105,111,110,115,46,109,105,110,38,38,98,61,61,61,97,63,116,104,105,115,46,36,99,97,99,104,101,46,115,95,102,114,111,109,46,97,100,100,67,108,97,115,115,40,34,116,121,112,101,95,108,97,115,116,34,41,58,98,60,97,38,38,116,104,105,115,46,36,99,97,99,104,101,46,115,95,116,111,46,97,100,100,67,108,97,115,115,40,34,116,121,112,101,95,108,97,115,116,34,41,125,44,99,104,97,110,103,101,76,101,118,101,108,58,102,117,110,99,116,105,111,110,40,97,41,123,115,119,105,116,99,104,40,97,41,123,99,97,115,101,32,34,115,105,110,103,108,101,34,58,116,104,105,115,46,99,111,111,114,100,115,46,112,95,103,97,112,61,116,104,105,115,46,116,111,70,105,120,101,100,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,112,111,105,110,116,101,114,45,116,104,105,115,46,99,111,111,114,100,115,46,112,95,115,105,110,103,108,101,95,102,97,107,101,41,59,116,104,105,115,46,36,99,97,99,104,101,46,115,95,115,105,110,103,108,101,46,97,100,100,67,108,97,115,115,40,34,115,116,97,116,101,95,104,111,118,101,114,34,41,59,10,98,114,101,97,107,59,99,97,115,101,32,34,102,114,111,109,34,58,116,104,105,115,46,99,111,111,114,100,115,46,112,95,103,97,112,61,116,104,105,115,46,116,111,70,105,120,101,100,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,112,111,105,110,116,101,114,45,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,102,97,107,101,41,59,116,104,105,115,46,36,99,97,99,104,101,46,115,95,102,114,111,109,46,97,100,100,67,108,97,115,115,40,34,115,116,97,116,101,95,104,111,118,101,114,34,41,59,116,104,105,115,46,36,99,97,99,104,101,46,115,95,102,114,111,109,46,97,100,100,67,108,97,115,115,40,34,116,121,112,101,95,108,97,115,116,34,41,59,116,104,105,115,46,36,99,97,99,104,101,46,115,95,116,111,46,114,101,109,111,118,101,67,108,97,115,115,40,34,116,121,112,101,95,108,97,115,116,34,41,59,98,114,101,97,107,59,99,97,115,101,32,34,116,111,34,58,116,104,105,115,46,99,111,111,114,100,115,46,112,95,103,97,112,61,116,104,105,115,46,116,111,70,105,120,101,100,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,112,111,105,110,116,101,114,45,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,102,97,107,101,41,59,116,104,105,115,46,36,99,97,99,104,101,46,115,95,116,111,46,97,100,100,67,108,97,115,115,40,34,115,116,97,116,101,95,104,111,118,101,114,34,41,59,116,104,105,115,46,36,99,97,99,104,101,46,115,95,116,111,46,97,100,100,67,108,97,115,115,40,34,116,121,112,101,95,108,97,115,116,34,41,59,116,104,105,115,46,36,99,97,99,104,101,46,115,95,102,114,111,109,46,114,101,109,111,118,101,67,108,97,115,115,40,34,116,121,112,101,95,108,97,115,116,34,41,59,98,114,101,97,107,59,99,97,115,101,32,34,98,111,116,104,34,58,116,104,105,115,46,99,111,111,114,100,115,46,112,95,103,97,112,95,108,101,102,116,61,116,104,105,115,46,116,111,70,105,120,101,100,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,112,111,105,110,116,101,114,45,10,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,102,97,107,101,41,44,116,104,105,115,46,99,111,111,114,100,115,46,112,95,103,97,112,95,114,105,103,104,116,61,116,104,105,115,46,116,111,70,105,120,101,100,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,102,97,107,101,45,116,104,105,115,46,99,111,111,114,100,115,46,112,95,112,111,105,110,116,101,114,41,44,116,104,105,115,46,36,99,97,99,104,101,46,115,95,116,111,46,114,101,109,111,118,101,67,108,97,115,115,40,34,116,121,112,101,95,108,97,115,116,34,41,44,116,104,105,115,46,36,99,97,99,104,101,46,115,95,102,114,111,109,46,114,101,109,111,118,101,67,108,97,115,115,40,34,116,121,112,101,95,108,97,115,116,34,41,125,125,44,97,112,112,101,110,100,68,105,115,97,98,108,101,77,97,115,107,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,97,112,112,101,110,100,40,39,60,115,112,97,110,32,99,108,97,115,115,61,34,105,114,115,45,100,105,115,97,98,108,101,45,109,97,115,107,34,62,60,47,115,112,97,110,62,39,41,59,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,97,100,100,67,108,97,115,115,40,34,105,114,115,45,100,105,115,97,98,108,101,100,34,41,125,44,114,101,109,111,118,101,68,105,115,97,98,108,101,77,97,115,107,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,114,101,109,111,118,101,40,34,46,105,114,115,45,100,105,115,97,98,108,101,45,109,97,115,107,34,41,59,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,114,101,109,111,118,101,67,108,97,115,115,40,34,105,114,115,45,100,105,115,97,98,108,101,100,34,41,125,44,114,101,109,111,118,101,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,114,101,109,111,118,101,40,41,59,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,61,10,110,117,108,108,59,116,104,105,115,46,36,99,97,99,104,101,46,108,105,110,101,46,111,102,102,40,34,107,101,121,100,111,119,110,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,41,59,116,104,105,115,46,36,99,97,99,104,101,46,98,111,100,121,46,111,102,102,40,34,116,111,117,99,104,109,111,118,101,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,41,59,116,104,105,115,46,36,99,97,99,104,101,46,98,111,100,121,46,111,102,102,40,34,109,111,117,115,101,109,111,118,101,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,41,59,116,104,105,115,46,36,99,97,99,104,101,46,119,105,110,46,111,102,102,40,34,116,111,117,99,104,101,110,100,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,41,59,116,104,105,115,46,36,99,97,99,104,101,46,119,105,110,46,111,102,102,40,34,109,111,117,115,101,117,112,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,41,59,109,38,38,40,116,104,105,115,46,36,99,97,99,104,101,46,98,111,100,121,46,111,102,102,40,34,109,111,117,115,101,117,112,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,41,44,116,104,105,115,46,36,99,97,99,104,101,46,98,111,100,121,46,111,102,102,40,34,109,111,117,115,101,108,101,97,118,101,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,41,41,59,116,104,105,115,46,36,99,97,99,104,101,46,103,114,105,100,95,108,97,98,101,108,115,61,91,93,59,116,104,105,115,46,99,111,111,114,100,115,46,98,105,103,61,91,93,59,116,104,105,115,46,99,111,111,114,100,115,46,98,105,103,95,119,61,91,93,59,116,104,105,115,46,99,111,111,114,100,115,46,98,105,103,95,112,61,91,93,59,116,104,105,115,46,99,111,111,114,100,115,46,98,105,103,95,120,61,10,91,93,59,99,97,110,99,101,108,65,110,105,109,97,116,105,111,110,70,114,97,109,101,40,116,104,105,115,46,114,97,102,95,105,100,41,125,44,98,105,110,100,69,118,101,110,116,115,58,102,117,110,99,116,105,111,110,40,41,123,105,102,40,33,116,104,105,115,46,110,111,95,100,105,97,112,97,115,111,110,41,123,116,104,105,115,46,36,99,97,99,104,101,46,98,111,100,121,46,111,110,40,34,116,111,117,99,104,109,111,118,101,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,77,111,118,101,46,98,105,110,100,40,116,104,105,115,41,41,59,116,104,105,115,46,36,99,97,99,104,101,46,98,111,100,121,46,111,110,40,34,109,111,117,115,101,109,111,118,101,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,77,111,118,101,46,98,105,110,100,40,116,104,105,115,41,41,59,116,104,105,115,46,36,99,97,99,104,101,46,119,105,110,46,111,110,40,34,116,111,117,99,104,101,110,100,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,85,112,46,98,105,110,100,40,116,104,105,115,41,41,59,116,104,105,115,46,36,99,97,99,104,101,46,119,105,110,46,111,110,40,34,109,111,117,115,101,117,112,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,85,112,46,98,105,110,100,40,116,104,105,115,41,41,59,116,104,105,115,46,36,99,97,99,104,101,46,108,105,110,101,46,111,110,40,34,116,111,117,99,104,115,116,97,114,116,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,67,108,105,99,107,46,98,105,110,100,40,116,104,105,115,44,34,99,108,105,99,107,34,41,41,59,10,116,104,105,115,46,36,99,97,99,104,101,46,108,105,110,101,46,111,110,40,34,109,111,117,115,101,100,111,119,110,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,67,108,105,99,107,46,98,105,110,100,40,116,104,105,115,44,34,99,108,105,99,107,34,41,41,59,116,104,105,115,46,36,99,97,99,104,101,46,108,105,110,101,46,111,110,40,34,102,111,99,117,115,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,70,111,99,117,115,46,98,105,110,100,40,116,104,105,115,41,41,59,116,104,105,115,46,111,112,116,105,111,110,115,46,100,114,97,103,95,105,110,116,101,114,118,97,108,38,38,34,100,111,117,98,108,101,34,61,61,61,116,104,105,115,46,111,112,116,105,111,110,115,46,116,121,112,101,63,40,116,104,105,115,46,36,99,97,99,104,101,46,98,97,114,46,111,110,40,34,116,111,117,99,104,115,116,97,114,116,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,68,111,119,110,46,98,105,110,100,40,116,104,105,115,44,34,98,111,116,104,34,41,41,44,116,104,105,115,46,36,99,97,99,104,101,46,98,97,114,46,111,110,40,34,109,111,117,115,101,100,111,119,110,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,68,111,119,110,46,98,105,110,100,40,116,104,105,115,44,34,98,111,116,104,34,41,41,41,58,40,116,104,105,115,46,36,99,97,99,104,101,46,98,97,114,46,111,110,40,34,116,111,117,99,104,115,116,97,114,116,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,67,108,105,99,107,46,98,105,110,100,40,116,104,105,115,44,34,99,108,105,99,107,34,41,41,44,10,116,104,105,115,46,36,99,97,99,104,101,46,98,97,114,46,111,110,40,34,109,111,117,115,101,100,111,119,110,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,67,108,105,99,107,46,98,105,110,100,40,116,104,105,115,44,34,99,108,105,99,107,34,41,41,41,59,34,115,105,110,103,108,101,34,61,61,61,116,104,105,115,46,111,112,116,105,111,110,115,46,116,121,112,101,63,40,116,104,105,115,46,36,99,97,99,104,101,46,115,105,110,103,108,101,46,111,110,40,34,116,111,117,99,104,115,116,97,114,116,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,68,111,119,110,46,98,105,110,100,40,116,104,105,115,44,34,115,105,110,103,108,101,34,41,41,44,116,104,105,115,46,36,99,97,99,104,101,46,115,95,115,105,110,103,108,101,46,111,110,40,34,116,111,117,99,104,115,116,97,114,116,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,68,111,119,110,46,98,105,110,100,40,116,104,105,115,44,34,115,105,110,103,108,101,34,41,41,44,116,104,105,115,46,36,99,97,99,104,101,46,115,104,97,100,95,115,105,110,103,108,101,46,111,110,40,34,116,111,117,99,104,115,116,97,114,116,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,67,108,105,99,107,46,98,105,110,100,40,116,104,105,115,44,34,99,108,105,99,107,34,41,41,44,116,104,105,115,46,36,99,97,99,104,101,46,115,105,110,103,108,101,46,111,110,40,34,109,111,117,115,101,100,111,119,110,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,68,111,119,110,46,98,105,110,100,40,116,104,105,115,44,10,34,115,105,110,103,108,101,34,41,41,44,116,104,105,115,46,36,99,97,99,104,101,46,115,95,115,105,110,103,108,101,46,111,110,40,34,109,111,117,115,101,100,111,119,110,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,68,111,119,110,46,98,105,110,100,40,116,104,105,115,44,34,115,105,110,103,108,101,34,41,41,44,116,104,105,115,46,36,99,97,99,104,101,46,101,100,103,101,46,111,110,40,34,109,111,117,115,101,100,111,119,110,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,67,108,105,99,107,46,98,105,110,100,40,116,104,105,115,44,34,99,108,105,99,107,34,41,41,44,116,104,105,115,46,36,99,97,99,104,101,46,115,104,97,100,95,115,105,110,103,108,101,46,111,110,40,34,109,111,117,115,101,100,111,119,110,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,67,108,105,99,107,46,98,105,110,100,40,116,104,105,115,44,34,99,108,105,99,107,34,41,41,41,58,40,116,104,105,115,46,36,99,97,99,104,101,46,115,105,110,103,108,101,46,111,110,40,34,116,111,117,99,104,115,116,97,114,116,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,68,111,119,110,46,98,105,110,100,40,116,104,105,115,44,110,117,108,108,41,41,44,116,104,105,115,46,36,99,97,99,104,101,46,115,105,110,103,108,101,46,111,110,40,34,109,111,117,115,101,100,111,119,110,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,68,111,119,110,46,98,105,110,100,40,116,104,105,115,44,110,117,108,108,41,41,44,116,104,105,115,46,36,99,97,99,104,101,46,102,114,111,109,46,111,110,40,34,116,111,117,99,104,115,116,97,114,116,46,105,114,115,95,34,43,10,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,68,111,119,110,46,98,105,110,100,40,116,104,105,115,44,34,102,114,111,109,34,41,41,44,116,104,105,115,46,36,99,97,99,104,101,46,115,95,102,114,111,109,46,111,110,40,34,116,111,117,99,104,115,116,97,114,116,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,68,111,119,110,46,98,105,110,100,40,116,104,105,115,44,34,102,114,111,109,34,41,41,44,116,104,105,115,46,36,99,97,99,104,101,46,116,111,46,111,110,40,34,116,111,117,99,104,115,116,97,114,116,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,68,111,119,110,46,98,105,110,100,40,116,104,105,115,44,34,116,111,34,41,41,44,116,104,105,115,46,36,99,97,99,104,101,46,115,95,116,111,46,111,110,40,34,116,111,117,99,104,115,116,97,114,116,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,68,111,119,110,46,98,105,110,100,40,116,104,105,115,44,34,116,111,34,41,41,44,116,104,105,115,46,36,99,97,99,104,101,46,115,104,97,100,95,102,114,111,109,46,111,110,40,34,116,111,117,99,104,115,116,97,114,116,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,67,108,105,99,107,46,98,105,110,100,40,116,104,105,115,44,34,99,108,105,99,107,34,41,41,44,116,104,105,115,46,36,99,97,99,104,101,46,115,104,97,100,95,116,111,46,111,110,40,34,116,111,117,99,104,115,116,97,114,116,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,67,108,105,99,107,46,98,105,110,100,40,116,104,105,115,44,10,34,99,108,105,99,107,34,41,41,44,116,104,105,115,46,36,99,97,99,104,101,46,102,114,111,109,46,111,110,40,34,109,111,117,115,101,100,111,119,110,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,68,111,119,110,46,98,105,110,100,40,116,104,105,115,44,34,102,114,111,109,34,41,41,44,116,104,105,115,46,36,99,97,99,104,101,46,115,95,102,114,111,109,46,111,110,40,34,109,111,117,115,101,100,111,119,110,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,68,111,119,110,46,98,105,110,100,40,116,104,105,115,44,34,102,114,111,109,34,41,41,44,116,104,105,115,46,36,99,97,99,104,101,46,116,111,46,111,110,40,34,109,111,117,115,101,100,111,119,110,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,68,111,119,110,46,98,105,110,100,40,116,104,105,115,44,34,116,111,34,41,41,44,116,104,105,115,46,36,99,97,99,104,101,46,115,95,116,111,46,111,110,40,34,109,111,117,115,101,100,111,119,110,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,68,111,119,110,46,98,105,110,100,40,116,104,105,115,44,34,116,111,34,41,41,44,116,104,105,115,46,36,99,97,99,104,101,46,115,104,97,100,95,102,114,111,109,46,111,110,40,34,109,111,117,115,101,100,111,119,110,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,67,108,105,99,107,46,98,105,110,100,40,116,104,105,115,44,34,99,108,105,99,107,34,41,41,44,116,104,105,115,46,36,99,97,99,104,101,46,115,104,97,100,95,116,111,46,111,110,40,34,109,111,117,115,101,100,111,119,110,46,105,114,115,95,34,43,10,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,67,108,105,99,107,46,98,105,110,100,40,116,104,105,115,44,34,99,108,105,99,107,34,41,41,41,59,105,102,40,116,104,105,115,46,111,112,116,105,111,110,115,46,107,101,121,98,111,97,114,100,41,116,104,105,115,46,36,99,97,99,104,101,46,108,105,110,101,46,111,110,40,34,107,101,121,100,111,119,110,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,107,101,121,46,98,105,110,100,40,116,104,105,115,44,34,107,101,121,98,111,97,114,100,34,41,41,59,109,38,38,40,116,104,105,115,46,36,99,97,99,104,101,46,98,111,100,121,46,111,110,40,34,109,111,117,115,101,117,112,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,85,112,46,98,105,110,100,40,116,104,105,115,41,41,44,116,104,105,115,46,36,99,97,99,104,101,46,98,111,100,121,46,111,110,40,34,109,111,117,115,101,108,101,97,118,101,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,85,112,46,98,105,110,100,40,116,104,105,115,41,41,41,125,125,44,112,111,105,110,116,101,114,70,111,99,117,115,58,102,117,110,99,116,105,111,110,40,97,41,123,105,102,40,33,116,104,105,115,46,116,97,114,103,101,116,41,123,118,97,114,32,98,61,34,115,105,110,103,108,101,34,61,61,61,116,104,105,115,46,111,112,116,105,111,110,115,46,116,121,112,101,63,116,104,105,115,46,36,99,97,99,104,101,46,115,105,110,103,108,101,58,116,104,105,115,46,36,99,97,99,104,101,46,102,114,111,109,59,97,61,98,46,111,102,102,115,101,116,40,41,46,108,101,102,116,59,97,43,61,98,46,119,105,100,116,104,40,41,47,50,45,49,59,116,104,105,115,46,112,111,105,110,116,101,114,67,108,105,99,107,40,34,115,105,110,103,108,101,34,44,10,123,112,114,101,118,101,110,116,68,101,102,97,117,108,116,58,102,117,110,99,116,105,111,110,40,41,123,125,44,112,97,103,101,88,58,97,125,41,125,125,44,112,111,105,110,116,101,114,77,111,118,101,58,102,117,110,99,116,105,111,110,40,97,41,123,116,104,105,115,46,100,114,97,103,103,105,110,103,38,38,40,116,104,105,115,46,99,111,111,114,100,115,46,120,95,112,111,105,110,116,101,114,61,40,97,46,112,97,103,101,88,124,124,97,46,111,114,105,103,105,110,97,108,69,118,101,110,116,46,116,111,117,99,104,101,115,38,38,97,46,111,114,105,103,105,110,97,108,69,118,101,110,116,46,116,111,117,99,104,101,115,91,48,93,46,112,97,103,101,88,41,45,116,104,105,115,46,99,111,111,114,100,115,46,120,95,103,97,112,44,116,104,105,115,46,99,97,108,99,40,41,41,125,44,112,111,105,110,116,101,114,85,112,58,102,117,110,99,116,105,111,110,40,97,41,123,116,104,105,115,46,99,117,114,114,101,110,116,95,112,108,117,103,105,110,61,61,61,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,38,38,116,104,105,115,46,105,115,95,97,99,116,105,118,101,38,38,40,116,104,105,115,46,105,115,95,97,99,116,105,118,101,61,33,49,44,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,102,105,110,100,40,34,46,115,116,97,116,101,95,104,111,118,101,114,34,41,46,114,101,109,111,118,101,67,108,97,115,115,40,34,115,116,97,116,101,95,104,111,118,101,114,34,41,44,116,104,105,115,46,102,111,114,99,101,95,114,101,100,114,97,119,61,33,48,44,109,38,38,102,40,34,42,34,41,46,112,114,111,112,40,34,117,110,115,101,108,101,99,116,97,98,108,101,34,44,33,49,41,44,116,104,105,115,46,117,112,100,97,116,101,83,99,101,110,101,40,41,44,116,104,105,115,46,114,101,115,116,111,114,101,79,114,105,103,105,110,97,108,77,105,110,73,110,116,101,114,118,97,108,40,41,44,40,102,46,99,111,110,116,97,105,110,115,40,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,91,48,93,44,10,97,46,116,97,114,103,101,116,41,124,124,116,104,105,115,46,100,114,97,103,103,105,110,103,41,38,38,116,104,105,115,46,99,97,108,108,79,110,70,105,110,105,115,104,40,41,44,116,104,105,115,46,100,114,97,103,103,105,110,103,61,33,49,41,125,44,112,111,105,110,116,101,114,68,111,119,110,58,102,117,110,99,116,105,111,110,40,97,44,98,41,123,98,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,59,118,97,114,32,100,61,98,46,112,97,103,101,88,124,124,98,46,111,114,105,103,105,110,97,108,69,118,101,110,116,46,116,111,117,99,104,101,115,38,38,98,46,111,114,105,103,105,110,97,108,69,118,101,110,116,46,116,111,117,99,104,101,115,91,48,93,46,112,97,103,101,88,59,50,33,61,61,98,46,98,117,116,116,111,110,38,38,40,34,98,111,116,104,34,61,61,61,97,38,38,116,104,105,115,46,115,101,116,84,101,109,112,77,105,110,73,110,116,101,114,118,97,108,40,41,44,97,124,124,40,97,61,116,104,105,115,46,116,97,114,103,101,116,124,124,34,102,114,111,109,34,41,44,116,104,105,115,46,99,117,114,114,101,110,116,95,112,108,117,103,105,110,61,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,116,97,114,103,101,116,61,97,44,116,104,105,115,46,100,114,97,103,103,105,110,103,61,116,104,105,115,46,105,115,95,97,99,116,105,118,101,61,33,48,44,116,104,105,115,46,99,111,111,114,100,115,46,120,95,103,97,112,61,116,104,105,115,46,36,99,97,99,104,101,46,114,115,46,111,102,102,115,101,116,40,41,46,108,101,102,116,44,116,104,105,115,46,99,111,111,114,100,115,46,120,95,112,111,105,110,116,101,114,61,100,45,116,104,105,115,46,99,111,111,114,100,115,46,120,95,103,97,112,44,116,104,105,115,46,99,97,108,99,80,111,105,110,116,101,114,80,101,114,99,101,110,116,40,41,44,116,104,105,115,46,99,104,97,110,103,101,76,101,118,101,108,40,97,41,44,109,38,38,102,40,34,42,34,41,46,112,114,111,112,40,34,117,110,115,101,108,101,99,116,97,98,108,101,34,44,10,33,48,41,44,116,104,105,115,46,36,99,97,99,104,101,46,108,105,110,101,46,116,114,105,103,103,101,114,40,34,102,111,99,117,115,34,41,44,116,104,105,115,46,117,112,100,97,116,101,83,99,101,110,101,40,41,41,125,44,112,111,105,110,116,101,114,67,108,105,99,107,58,102,117,110,99,116,105,111,110,40,97,44,98,41,123,98,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,59,118,97,114,32,100,61,98,46,112,97,103,101,88,124,124,98,46,111,114,105,103,105,110,97,108,69,118,101,110,116,46,116,111,117,99,104,101,115,38,38,98,46,111,114,105,103,105,110,97,108,69,118,101,110,116,46,116,111,117,99,104,101,115,91,48,93,46,112,97,103,101,88,59,50,33,61,61,98,46,98,117,116,116,111,110,38,38,40,116,104,105,115,46,99,117,114,114,101,110,116,95,112,108,117,103,105,110,61,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,116,97,114,103,101,116,61,97,44,116,104,105,115,46,105,115,95,99,108,105,99,107,61,33,48,44,116,104,105,115,46,99,111,111,114,100,115,46,120,95,103,97,112,61,116,104,105,115,46,36,99,97,99,104,101,46,114,115,46,111,102,102,115,101,116,40,41,46,108,101,102,116,44,116,104,105,115,46,99,111,111,114,100,115,46,120,95,112,111,105,110,116,101,114,61,43,40,100,45,116,104,105,115,46,99,111,111,114,100,115,46,120,95,103,97,112,41,46,116,111,70,105,120,101,100,40,41,44,116,104,105,115,46,102,111,114,99,101,95,114,101,100,114,97,119,61,33,48,44,116,104,105,115,46,99,97,108,99,40,41,44,116,104,105,115,46,36,99,97,99,104,101,46,108,105,110,101,46,116,114,105,103,103,101,114,40,34,102,111,99,117,115,34,41,41,125,44,107,101,121,58,102,117,110,99,116,105,111,110,40,97,44,98,41,123,105,102,40,33,40,116,104,105,115,46,99,117,114,114,101,110,116,95,112,108,117,103,105,110,33,61,61,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,124,124,98,46,97,108,116,75,101,121,124,124,10,98,46,99,116,114,108,75,101,121,124,124,98,46,115,104,105,102,116,75,101,121,124,124,98,46,109,101,116,97,75,101,121,41,41,123,115,119,105,116,99,104,40,98,46,119,104,105,99,104,41,123,99,97,115,101,32,56,51,58,99,97,115,101,32,54,53,58,99,97,115,101,32,52,48,58,99,97,115,101,32,51,55,58,98,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,59,116,104,105,115,46,109,111,118,101,66,121,75,101,121,40,33,49,41,59,98,114,101,97,107,59,99,97,115,101,32,56,55,58,99,97,115,101,32,54,56,58,99,97,115,101,32,51,56,58,99,97,115,101,32,51,57,58,98,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,116,104,105,115,46,109,111,118,101,66,121,75,101,121,40,33,48,41,125,114,101,116,117,114,110,33,48,125,125,44,109,111,118,101,66,121,75,101,121,58,102,117,110,99,116,105,111,110,40,97,41,123,118,97,114,32,98,61,116,104,105,115,46,99,111,111,114,100,115,46,112,95,112,111,105,110,116,101,114,44,100,61,40,116,104,105,115,46,111,112,116,105,111,110,115,46,109,97,120,45,116,104,105,115,46,111,112,116,105,111,110,115,46,109,105,110,41,47,49,48,48,44,100,61,116,104,105,115,46,111,112,116,105,111,110,115,46,115,116,101,112,47,100,59,116,104,105,115,46,99,111,111,114,100,115,46,120,95,112,111,105,110,116,101,114,61,116,104,105,115,46,116,111,70,105,120,101,100,40,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,47,49,48,48,42,40,97,63,98,43,100,58,98,45,100,41,41,59,116,104,105,115,46,105,115,95,107,101,121,61,33,48,59,116,104,105,115,46,99,97,108,99,40,41,125,44,115,101,116,77,105,110,77,97,120,58,102,117,110,99,116,105,111,110,40,41,123,105,102,40,116,104,105,115,46,111,112,116,105,111,110,115,41,105,102,40,116,104,105,115,46,111,112,116,105,111,110,115,46,104,105,100,101,95,109,105,110,95,109,97,120,41,116,104,105,115,46,36,99,97,99,104,101,46,109,105,110,91,48,93,46,115,116,121,108,101,46,100,105,115,112,108,97,121,61,10,34,110,111,110,101,34,44,116,104,105,115,46,36,99,97,99,104,101,46,109,97,120,91,48,93,46,115,116,121,108,101,46,100,105,115,112,108,97,121,61,34,110,111,110,101,34,59,101,108,115,101,123,105,102,40,116,104,105,115,46,111,112,116,105,111,110,115,46,118,97,108,117,101,115,46,108,101,110,103,116,104,41,116,104,105,115,46,36,99,97,99,104,101,46,109,105,110,46,104,116,109,108,40,116,104,105,115,46,100,101,99,111,114,97,116,101,40,116,104,105,115,46,111,112,116,105,111,110,115,46,112,95,118,97,108,117,101,115,91,116,104,105,115,46,111,112,116,105,111,110,115,46,109,105,110,93,41,41,44,116,104,105,115,46,36,99,97,99,104,101,46,109,97,120,46,104,116,109,108,40,116,104,105,115,46,100,101,99,111,114,97,116,101,40,116,104,105,115,46,111,112,116,105,111,110,115,46,112,95,118,97,108,117,101,115,91,116,104,105,115,46,111,112,116,105,111,110,115,46,109,97,120,93,41,41,59,101,108,115,101,123,118,97,114,32,97,61,116,104,105,115,46,95,112,114,101,116,116,105,102,121,40,116,104,105,115,46,111,112,116,105,111,110,115,46,109,105,110,41,44,98,61,116,104,105,115,46,95,112,114,101,116,116,105,102,121,40,116,104,105,115,46,111,112,116,105,111,110,115,46,109,97,120,41,59,116,104,105,115,46,114,101,115,117,108,116,46,109,105,110,95,112,114,101,116,116,121,61,97,59,116,104,105,115,46,114,101,115,117,108,116,46,109,97,120,95,112,114,101,116,116,121,61,98,59,116,104,105,115,46,36,99,97,99,104,101,46,109,105,110,46,104,116,109,108,40,116,104,105,115,46,100,101,99,111,114,97,116,101,40,97,44,116,104,105,115,46,111,112,116,105,111,110,115,46,109,105,110,41,41,59,116,104,105,115,46,36,99,97,99,104,101,46,109,97,120,46,104,116,109,108,40,116,104,105,115,46,100,101,99,111,114,97,116,101,40,98,44,116,104,105,115,46,111,112,116,105,111,110,115,46,109,97,120,41,41,125,116,104,105,115,46,108,97,98,101,108,115,46,119,95,109,105,110,61,116,104,105,115,46,36,99,97,99,104,101,46,109,105,110,46,111,117,116,101,114,87,105,100,116,104,40,33,49,41,59,10,116,104,105,115,46,108,97,98,101,108,115,46,119,95,109,97,120,61,116,104,105,115,46,36,99,97,99,104,101,46,109,97,120,46,111,117,116,101,114,87,105,100,116,104,40,33,49,41,125,125,44,115,101,116,84,101,109,112,77,105,110,73,110,116,101,114,118,97,108,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,97,61,116,104,105,115,46,114,101,115,117,108,116,46,116,111,45,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,59,110,117,108,108,61,61,61,116,104,105,115,46,111,108,100,95,109,105,110,95,105,110,116,101,114,118,97,108,38,38,40,116,104,105,115,46,111,108,100,95,109,105,110,95,105,110,116,101,114,118,97,108,61,116,104,105,115,46,111,112,116,105,111,110,115,46,109,105,110,95,105,110,116,101,114,118,97,108,41,59,116,104,105,115,46,111,112,116,105,111,110,115,46,109,105,110,95,105,110,116,101,114,118,97,108,61,97,125,44,114,101,115,116,111,114,101,79,114,105,103,105,110,97,108,77,105,110,73,110,116,101,114,118,97,108,58,102,117,110,99,116,105,111,110,40,41,123,110,117,108,108,33,61,61,116,104,105,115,46,111,108,100,95,109,105,110,95,105,110,116,101,114,118,97,108,38,38,40,116,104,105,115,46,111,112,116,105,111,110,115,46,109,105,110,95,105,110,116,101,114,118,97,108,61,116,104,105,115,46,111,108,100,95,109,105,110,95,105,110,116,101,114,118,97,108,44,116,104,105,115,46,111,108,100,95,109,105,110,95,105,110,116,101,114,118,97,108,61,110,117,108,108,41,125,44,99,97,108,99,58,102,117,110,99,116,105,111,110,40,97,41,123,105,102,40,116,104,105,115,46,111,112,116,105,111,110,115,41,123,116,104,105,115,46,99,97,108,99,95,99,111,117,110,116,43,43,59,105,102,40,49,48,61,61,61,116,104,105,115,46,99,97,108,99,95,99,111,117,110,116,124,124,97,41,116,104,105,115,46,99,97,108,99,95,99,111,117,110,116,61,48,44,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,61,116,104,105,115,46,36,99,97,99,104,101,46,114,115,46,111,117,116,101,114,87,105,100,116,104,40,33,49,41,44,10,116,104,105,115,46,99,97,108,99,72,97,110,100,108,101,80,101,114,99,101,110,116,40,41,59,105,102,40,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,41,123,116,104,105,115,46,99,97,108,99,80,111,105,110,116,101,114,80,101,114,99,101,110,116,40,41,59,97,61,116,104,105,115,46,103,101,116,72,97,110,100,108,101,88,40,41,59,34,98,111,116,104,34,61,61,61,116,104,105,115,46,116,97,114,103,101,116,38,38,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,103,97,112,61,48,44,97,61,116,104,105,115,46,103,101,116,72,97,110,100,108,101,88,40,41,41,59,34,99,108,105,99,107,34,61,61,61,116,104,105,115,46,116,97,114,103,101,116,38,38,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,103,97,112,61,116,104,105,115,46,99,111,111,114,100,115,46,112,95,104,97,110,100,108,101,47,50,44,97,61,116,104,105,115,46,103,101,116,72,97,110,100,108,101,88,40,41,44,116,104,105,115,46,116,97,114,103,101,116,61,116,104,105,115,46,111,112,116,105,111,110,115,46,100,114,97,103,95,105,110,116,101,114,118,97,108,63,34,98,111,116,104,95,111,110,101,34,58,116,104,105,115,46,99,104,111,111,115,101,72,97,110,100,108,101,40,97,41,41,59,115,119,105,116,99,104,40,116,104,105,115,46,116,97,114,103,101,116,41,123,99,97,115,101,32,34,98,97,115,101,34,58,118,97,114,32,98,61,40,116,104,105,115,46,111,112,116,105,111,110,115,46,109,97,120,45,116,104,105,115,46,111,112,116,105,111,110,115,46,109,105,110,41,47,49,48,48,59,97,61,40,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,45,116,104,105,115,46,111,112,116,105,111,110,115,46,109,105,110,41,47,98,59,98,61,40,116,104,105,115,46,114,101,115,117,108,116,46,116,111,45,116,104,105,115,46,111,112,116,105,111,110,115,46,109,105,110,41,47,98,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,115,105,110,103,108,101,95,114,101,97,108,61,116,104,105,115,46,116,111,70,105,120,101,100,40,97,41,59,10,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,61,116,104,105,115,46,116,111,70,105,120,101,100,40,97,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,61,116,104,105,115,46,116,111,70,105,120,101,100,40,98,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,115,105,110,103,108,101,95,114,101,97,108,61,116,104,105,115,46,99,104,101,99,107,68,105,97,112,97,115,111,110,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,115,105,110,103,108,101,95,114,101,97,108,44,116,104,105,115,46,111,112,116,105,111,110,115,46,102,114,111,109,95,109,105,110,44,116,104,105,115,46,111,112,116,105,111,110,115,46,102,114,111,109,95,109,97,120,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,61,116,104,105,115,46,99,104,101,99,107,68,105,97,112,97,115,111,110,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,44,116,104,105,115,46,111,112,116,105,111,110,115,46,102,114,111,109,95,109,105,110,44,116,104,105,115,46,111,112,116,105,111,110,115,46,102,114,111,109,95,109,97,120,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,61,116,104,105,115,46,99,104,101,99,107,68,105,97,112,97,115,111,110,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,44,116,104,105,115,46,111,112,116,105,111,110,115,46,116,111,95,109,105,110,44,116,104,105,115,46,111,112,116,105,111,110,115,46,116,111,95,109,97,120,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,115,105,110,103,108,101,95,102,97,107,101,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,70,97,107,101,80,101,114,99,101,110,116,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,115,105,110,103,108,101,95,114,101,97,108,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,102,97,107,101,61,10,116,104,105,115,46,99,111,110,118,101,114,116,84,111,70,97,107,101,80,101,114,99,101,110,116,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,102,97,107,101,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,70,97,107,101,80,101,114,99,101,110,116,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,41,59,116,104,105,115,46,116,97,114,103,101,116,61,110,117,108,108,59,98,114,101,97,107,59,99,97,115,101,32,34,115,105,110,103,108,101,34,58,105,102,40,116,104,105,115,46,111,112,116,105,111,110,115,46,102,114,111,109,95,102,105,120,101,100,41,98,114,101,97,107,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,115,105,110,103,108,101,95,114,101,97,108,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,82,101,97,108,80,101,114,99,101,110,116,40,97,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,115,105,110,103,108,101,95,114,101,97,108,61,116,104,105,115,46,99,97,108,99,87,105,116,104,83,116,101,112,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,115,105,110,103,108,101,95,114,101,97,108,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,115,105,110,103,108,101,95,114,101,97,108,61,116,104,105,115,46,99,104,101,99,107,68,105,97,112,97,115,111,110,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,115,105,110,103,108,101,95,114,101,97,108,44,116,104,105,115,46,111,112,116,105,111,110,115,46,102,114,111,109,95,109,105,110,44,116,104,105,115,46,111,112,116,105,111,110,115,46,102,114,111,109,95,109,97,120,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,115,105,110,103,108,101,95,102,97,107,101,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,70,97,107,101,80,101,114,99,101,110,116,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,115,105,110,103,108,101,95,114,101,97,108,41,59,10,98,114,101,97,107,59,99,97,115,101,32,34,102,114,111,109,34,58,105,102,40,116,104,105,115,46,111,112,116,105,111,110,115,46,102,114,111,109,95,102,105,120,101,100,41,98,114,101,97,107,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,82,101,97,108,80,101,114,99,101,110,116,40,97,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,61,116,104,105,115,46,99,97,108,99,87,105,116,104,83,116,101,112,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,62,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,38,38,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,61,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,61,116,104,105,115,46,99,104,101,99,107,68,105,97,112,97,115,111,110,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,44,116,104,105,115,46,111,112,116,105,111,110,115,46,102,114,111,109,95,109,105,110,44,116,104,105,115,46,111,112,116,105,111,110,115,46,102,114,111,109,95,109,97,120,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,61,116,104,105,115,46,99,104,101,99,107,77,105,110,73,110,116,101,114,118,97,108,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,44,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,44,34,102,114,111,109,34,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,61,10,116,104,105,115,46,99,104,101,99,107,77,97,120,73,110,116,101,114,118,97,108,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,44,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,44,34,102,114,111,109,34,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,102,97,107,101,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,70,97,107,101,80,101,114,99,101,110,116,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,41,59,98,114,101,97,107,59,99,97,115,101,32,34,116,111,34,58,105,102,40,116,104,105,115,46,111,112,116,105,111,110,115,46,116,111,95,102,105,120,101,100,41,98,114,101,97,107,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,82,101,97,108,80,101,114,99,101,110,116,40,97,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,61,116,104,105,115,46,99,97,108,99,87,105,116,104,83,116,101,112,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,60,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,38,38,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,61,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,61,116,104,105,115,46,99,104,101,99,107,68,105,97,112,97,115,111,110,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,44,116,104,105,115,46,111,112,116,105,111,110,115,46,116,111,95,109,105,110,44,116,104,105,115,46,111,112,116,105,111,110,115,46,116,111,95,109,97,120,41,59,10,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,61,116,104,105,115,46,99,104,101,99,107,77,105,110,73,110,116,101,114,118,97,108,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,44,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,44,34,116,111,34,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,61,116,104,105,115,46,99,104,101,99,107,77,97,120,73,110,116,101,114,118,97,108,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,44,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,44,34,116,111,34,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,102,97,107,101,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,70,97,107,101,80,101,114,99,101,110,116,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,41,59,98,114,101,97,107,59,99,97,115,101,32,34,98,111,116,104,34,58,105,102,40,116,104,105,115,46,111,112,116,105,111,110,115,46,102,114,111,109,95,102,105,120,101,100,124,124,116,104,105,115,46,111,112,116,105,111,110,115,46,116,111,95,102,105,120,101,100,41,98,114,101,97,107,59,97,61,116,104,105,115,46,116,111,70,105,120,101,100,40,97,43,46,48,48,49,42,116,104,105,115,46,99,111,111,114,100,115,46,112,95,104,97,110,100,108,101,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,82,101,97,108,80,101,114,99,101,110,116,40,97,41,45,116,104,105,115,46,99,111,111,114,100,115,46,112,95,103,97,112,95,108,101,102,116,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,61,116,104,105,115,46,99,97,108,99,87,105,116,104,83,116,101,112,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,41,59,10,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,61,116,104,105,115,46,99,104,101,99,107,68,105,97,112,97,115,111,110,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,44,116,104,105,115,46,111,112,116,105,111,110,115,46,102,114,111,109,95,109,105,110,44,116,104,105,115,46,111,112,116,105,111,110,115,46,102,114,111,109,95,109,97,120,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,61,116,104,105,115,46,99,104,101,99,107,77,105,110,73,110,116,101,114,118,97,108,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,44,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,44,34,102,114,111,109,34,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,102,97,107,101,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,70,97,107,101,80,101,114,99,101,110,116,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,82,101,97,108,80,101,114,99,101,110,116,40,97,41,43,116,104,105,115,46,99,111,111,114,100,115,46,112,95,103,97,112,95,114,105,103,104,116,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,61,116,104,105,115,46,99,97,108,99,87,105,116,104,83,116,101,112,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,61,116,104,105,115,46,99,104,101,99,107,68,105,97,112,97,115,111,110,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,44,116,104,105,115,46,111,112,116,105,111,110,115,46,116,111,95,109,105,110,44,10,116,104,105,115,46,111,112,116,105,111,110,115,46,116,111,95,109,97,120,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,61,116,104,105,115,46,99,104,101,99,107,77,105,110,73,110,116,101,114,118,97,108,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,44,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,44,34,116,111,34,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,102,97,107,101,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,70,97,107,101,80,101,114,99,101,110,116,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,41,59,98,114,101,97,107,59,99,97,115,101,32,34,98,111,116,104,95,111,110,101,34,58,105,102,40,33,116,104,105,115,46,111,112,116,105,111,110,115,46,102,114,111,109,95,102,105,120,101,100,38,38,33,116,104,105,115,46,111,112,116,105,111,110,115,46,116,111,95,102,105,120,101,100,41,123,118,97,114,32,100,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,82,101,97,108,80,101,114,99,101,110,116,40,97,41,59,97,61,116,104,105,115,46,114,101,115,117,108,116,46,116,111,95,112,101,114,99,101,110,116,45,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,95,112,101,114,99,101,110,116,59,118,97,114,32,99,61,97,47,50,44,98,61,100,45,99,44,100,61,100,43,99,59,48,62,98,38,38,40,98,61,48,44,100,61,98,43,97,41,59,49,48,48,60,100,38,38,40,100,61,49,48,48,44,98,61,100,45,97,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,61,116,104,105,115,46,99,97,108,99,87,105,116,104,83,116,101,112,40,98,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,61,116,104,105,115,46,99,104,101,99,107,68,105,97,112,97,115,111,110,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,44,10,116,104,105,115,46,111,112,116,105,111,110,115,46,102,114,111,109,95,109,105,110,44,116,104,105,115,46,111,112,116,105,111,110,115,46,102,114,111,109,95,109,97,120,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,102,97,107,101,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,70,97,107,101,80,101,114,99,101,110,116,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,61,116,104,105,115,46,99,97,108,99,87,105,116,104,83,116,101,112,40,100,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,61,116,104,105,115,46,99,104,101,99,107,68,105,97,112,97,115,111,110,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,44,116,104,105,115,46,111,112,116,105,111,110,115,46,116,111,95,109,105,110,44,116,104,105,115,46,111,112,116,105,111,110,115,46,116,111,95,109,97,120,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,102,97,107,101,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,70,97,107,101,80,101,114,99,101,110,116,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,41,125,125,34,115,105,110,103,108,101,34,61,61,61,116,104,105,115,46,111,112,116,105,111,110,115,46,116,121,112,101,63,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,98,97,114,95,120,61,116,104,105,115,46,99,111,111,114,100,115,46,112,95,104,97,110,100,108,101,47,50,44,116,104,105,115,46,99,111,111,114,100,115,46,112,95,98,97,114,95,119,61,116,104,105,115,46,99,111,111,114,100,115,46,112,95,115,105,110,103,108,101,95,102,97,107,101,44,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,95,112,101,114,99,101,110,116,61,116,104,105,115,46,99,111,111,114,100,115,46,112,95,115,105,110,103,108,101,95,114,101,97,108,44,10,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,86,97,108,117,101,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,115,105,110,103,108,101,95,114,101,97,108,41,44,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,95,112,114,101,116,116,121,61,116,104,105,115,46,95,112,114,101,116,116,105,102,121,40,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,41,44,116,104,105,115,46,111,112,116,105,111,110,115,46,118,97,108,117,101,115,46,108,101,110,103,116,104,38,38,40,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,95,118,97,108,117,101,61,116,104,105,115,46,111,112,116,105,111,110,115,46,118,97,108,117,101,115,91,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,93,41,41,58,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,98,97,114,95,120,61,116,104,105,115,46,116,111,70,105,120,101,100,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,102,97,107,101,43,116,104,105,115,46,99,111,111,114,100,115,46,112,95,104,97,110,100,108,101,47,50,41,44,116,104,105,115,46,99,111,111,114,100,115,46,112,95,98,97,114,95,119,61,116,104,105,115,46,116,111,70,105,120,101,100,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,102,97,107,101,45,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,102,97,107,101,41,44,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,95,112,101,114,99,101,110,116,61,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,44,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,86,97,108,117,101,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,41,44,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,95,112,114,101,116,116,121,61,10,116,104,105,115,46,95,112,114,101,116,116,105,102,121,40,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,41,44,116,104,105,115,46,114,101,115,117,108,116,46,116,111,95,112,101,114,99,101,110,116,61,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,44,116,104,105,115,46,114,101,115,117,108,116,46,116,111,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,86,97,108,117,101,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,41,44,116,104,105,115,46,114,101,115,117,108,116,46,116,111,95,112,114,101,116,116,121,61,116,104,105,115,46,95,112,114,101,116,116,105,102,121,40,116,104,105,115,46,114,101,115,117,108,116,46,116,111,41,44,116,104,105,115,46,111,112,116,105,111,110,115,46,118,97,108,117,101,115,46,108,101,110,103,116,104,38,38,40,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,95,118,97,108,117,101,61,116,104,105,115,46,111,112,116,105,111,110,115,46,118,97,108,117,101,115,91,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,93,44,116,104,105,115,46,114,101,115,117,108,116,46,116,111,95,118,97,108,117,101,61,116,104,105,115,46,111,112,116,105,111,110,115,46,118,97,108,117,101,115,91,116,104,105,115,46,114,101,115,117,108,116,46,116,111,93,41,41,59,116,104,105,115,46,99,97,108,99,77,105,110,77,97,120,40,41,59,116,104,105,115,46,99,97,108,99,76,97,98,101,108,115,40,41,125,125,125,44,99,97,108,99,80,111,105,110,116,101,114,80,101,114,99,101,110,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,63,40,48,62,116,104,105,115,46,99,111,111,114,100,115,46,120,95,112,111,105,110,116,101,114,124,124,105,115,78,97,78,40,116,104,105,115,46,99,111,111,114,100,115,46,120,95,112,111,105,110,116,101,114,41,63,116,104,105,115,46,99,111,111,114,100,115,46,120,95,112,111,105,110,116,101,114,61,10,48,58,116,104,105,115,46,99,111,111,114,100,115,46,120,95,112,111,105,110,116,101,114,62,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,38,38,40,116,104,105,115,46,99,111,111,114,100,115,46,120,95,112,111,105,110,116,101,114,61,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,41,44,116,104,105,115,46,99,111,111,114,100,115,46,112,95,112,111,105,110,116,101,114,61,116,104,105,115,46,116,111,70,105,120,101,100,40,116,104,105,115,46,99,111,111,114,100,115,46,120,95,112,111,105,110,116,101,114,47,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,42,49,48,48,41,41,58,116,104,105,115,46,99,111,111,114,100,115,46,112,95,112,111,105,110,116,101,114,61,48,125,44,99,111,110,118,101,114,116,84,111,82,101,97,108,80,101,114,99,101,110,116,58,102,117,110,99,116,105,111,110,40,97,41,123,114,101,116,117,114,110,32,97,47,40,49,48,48,45,116,104,105,115,46,99,111,111,114,100,115,46,112,95,104,97,110,100,108,101,41,42,49,48,48,125,44,99,111,110,118,101,114,116,84,111,70,97,107,101,80,101,114,99,101,110,116,58,102,117,110,99,116,105,111,110,40,97,41,123,114,101,116,117,114,110,32,97,47,49,48,48,42,40,49,48,48,45,116,104,105,115,46,99,111,111,114,100,115,46,112,95,104,97,110,100,108,101,41,125,44,103,101,116,72,97,110,100,108,101,88,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,97,61,49,48,48,45,116,104,105,115,46,99,111,111,114,100,115,46,112,95,104,97,110,100,108,101,44,98,61,116,104,105,115,46,116,111,70,105,120,101,100,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,112,111,105,110,116,101,114,45,116,104,105,115,46,99,111,111,114,100,115,46,112,95,103,97,112,41,59,48,62,98,63,98,61,48,58,98,62,97,38,38,40,98,61,97,41,59,114,101,116,117,114,110,32,98,125,44,99,97,108,99,72,97,110,100,108,101,80,101,114,99,101,110,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,99,111,111,114,100,115,46,119,95,104,97,110,100,108,101,61,10,34,115,105,110,103,108,101,34,61,61,61,116,104,105,115,46,111,112,116,105,111,110,115,46,116,121,112,101,63,116,104,105,115,46,36,99,97,99,104,101,46,115,95,115,105,110,103,108,101,46,111,117,116,101,114,87,105,100,116,104,40,33,49,41,58,116,104,105,115,46,36,99,97,99,104,101,46,115,95,102,114,111,109,46,111,117,116,101,114,87,105,100,116,104,40,33,49,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,104,97,110,100,108,101,61,116,104,105,115,46,116,111,70,105,120,101,100,40,116,104,105,115,46,99,111,111,114,100,115,46,119,95,104,97,110,100,108,101,47,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,42,49,48,48,41,125,44,99,104,111,111,115,101,72,97,110,100,108,101,58,102,117,110,99,116,105,111,110,40,97,41,123,114,101,116,117,114,110,34,115,105,110,103,108,101,34,61,61,61,116,104,105,115,46,111,112,116,105,111,110,115,46,116,121,112,101,63,34,115,105,110,103,108,101,34,58,97,62,61,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,43,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,45,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,41,47,50,63,116,104,105,115,46,111,112,116,105,111,110,115,46,116,111,95,102,105,120,101,100,63,34,102,114,111,109,34,58,34,116,111,34,58,116,104,105,115,46,111,112,116,105,111,110,115,46,102,114,111,109,95,102,105,120,101,100,63,34,116,111,34,58,34,102,114,111,109,34,125,44,99,97,108,99,77,105,110,77,97,120,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,38,38,40,116,104,105,115,46,108,97,98,101,108,115,46,112,95,109,105,110,61,116,104,105,115,46,108,97,98,101,108,115,46,119,95,109,105,110,47,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,42,49,48,48,44,116,104,105,115,46,108,97,98,101,108,115,46,112,95,109,97,120,61,10,116,104,105,115,46,108,97,98,101,108,115,46,119,95,109,97,120,47,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,42,49,48,48,41,125,44,99,97,108,99,76,97,98,101,108,115,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,38,38,33,116,104,105,115,46,111,112,116,105,111,110,115,46,104,105,100,101,95,102,114,111,109,95,116,111,38,38,40,34,115,105,110,103,108,101,34,61,61,61,116,104,105,115,46,111,112,116,105,111,110,115,46,116,121,112,101,63,40,116,104,105,115,46,108,97,98,101,108,115,46,119,95,115,105,110,103,108,101,61,116,104,105,115,46,36,99,97,99,104,101,46,115,105,110,103,108,101,46,111,117,116,101,114,87,105,100,116,104,40,33,49,41,44,116,104,105,115,46,108,97,98,101,108,115,46,112,95,115,105,110,103,108,101,95,102,97,107,101,61,116,104,105,115,46,108,97,98,101,108,115,46,119,95,115,105,110,103,108,101,47,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,42,49,48,48,44,116,104,105,115,46,108,97,98,101,108,115,46,112,95,115,105,110,103,108,101,95,108,101,102,116,61,116,104,105,115,46,99,111,111,114,100,115,46,112,95,115,105,110,103,108,101,95,102,97,107,101,43,116,104,105,115,46,99,111,111,114,100,115,46,112,95,104,97,110,100,108,101,47,50,45,116,104,105,115,46,108,97,98,101,108,115,46,112,95,115,105,110,103,108,101,95,102,97,107,101,47,50,41,58,40,116,104,105,115,46,108,97,98,101,108,115,46,119,95,102,114,111,109,61,116,104,105,115,46,36,99,97,99,104,101,46,102,114,111,109,46,111,117,116,101,114,87,105,100,116,104,40,33,49,41,44,116,104,105,115,46,108,97,98,101,108,115,46,112,95,102,114,111,109,95,102,97,107,101,61,116,104,105,115,46,108,97,98,101,108,115,46,119,95,102,114,111,109,47,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,42,49,48,48,44,116,104,105,115,46,108,97,98,101,108,115,46,112,95,102,114,111,109,95,108,101,102,116,61,10,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,102,97,107,101,43,116,104,105,115,46,99,111,111,114,100,115,46,112,95,104,97,110,100,108,101,47,50,45,116,104,105,115,46,108,97,98,101,108,115,46,112,95,102,114,111,109,95,102,97,107,101,47,50,44,116,104,105,115,46,108,97,98,101,108,115,46,112,95,102,114,111,109,95,108,101,102,116,61,116,104,105,115,46,116,111,70,105,120,101,100,40,116,104,105,115,46,108,97,98,101,108,115,46,112,95,102,114,111,109,95,108,101,102,116,41,44,116,104,105,115,46,108,97,98,101,108,115,46,112,95,102,114,111,109,95,108,101,102,116,61,116,104,105,115,46,99,104,101,99,107,69,100,103,101,115,40,116,104,105,115,46,108,97,98,101,108,115,46,112,95,102,114,111,109,95,108,101,102,116,44,116,104,105,115,46,108,97,98,101,108,115,46,112,95,102,114,111,109,95,102,97,107,101,41,44,116,104,105,115,46,108,97,98,101,108,115,46,119,95,116,111,61,116,104,105,115,46,36,99,97,99,104,101,46,116,111,46,111,117,116,101,114,87,105,100,116,104,40,33,49,41,44,116,104,105,115,46,108,97,98,101,108,115,46,112,95,116,111,95,102,97,107,101,61,116,104,105,115,46,108,97,98,101,108,115,46,119,95,116,111,47,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,42,49,48,48,44,116,104,105,115,46,108,97,98,101,108,115,46,112,95,116,111,95,108,101,102,116,61,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,102,97,107,101,43,116,104,105,115,46,99,111,111,114,100,115,46,112,95,104,97,110,100,108,101,47,50,45,116,104,105,115,46,108,97,98,101,108,115,46,112,95,116,111,95,102,97,107,101,47,50,44,116,104,105,115,46,108,97,98,101,108,115,46,112,95,116,111,95,108,101,102,116,61,116,104,105,115,46,116,111,70,105,120,101,100,40,116,104,105,115,46,108,97,98,101,108,115,46,112,95,116,111,95,108,101,102,116,41,44,116,104,105,115,46,108,97,98,101,108,115,46,112,95,116,111,95,108,101,102,116,61,10,116,104,105,115,46,99,104,101,99,107,69,100,103,101,115,40,116,104,105,115,46,108,97,98,101,108,115,46,112,95,116,111,95,108,101,102,116,44,116,104,105,115,46,108,97,98,101,108,115,46,112,95,116,111,95,102,97,107,101,41,44,116,104,105,115,46,108,97,98,101,108,115,46,119,95,115,105,110,103,108,101,61,116,104,105,115,46,36,99,97,99,104,101,46,115,105,110,103,108,101,46,111,117,116,101,114,87,105,100,116,104,40,33,49,41,44,116,104,105,115,46,108,97,98,101,108,115,46,112,95,115,105,110,103,108,101,95,102,97,107,101,61,116,104,105,115,46,108,97,98,101,108,115,46,119,95,115,105,110,103,108,101,47,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,42,49,48,48,44,116,104,105,115,46,108,97,98,101,108,115,46,112,95,115,105,110,103,108,101,95,108,101,102,116,61,40,116,104,105,115,46,108,97,98,101,108,115,46,112,95,102,114,111,109,95,108,101,102,116,43,116,104,105,115,46,108,97,98,101,108,115,46,112,95,116,111,95,108,101,102,116,43,116,104,105,115,46,108,97,98,101,108,115,46,112,95,116,111,95,102,97,107,101,41,47,50,45,116,104,105,115,46,108,97,98,101,108,115,46,112,95,115,105,110,103,108,101,95,102,97,107,101,47,50,44,116,104,105,115,46,108,97,98,101,108,115,46,112,95,115,105,110,103,108,101,95,108,101,102,116,61,116,104,105,115,46,116,111,70,105,120,101,100,40,116,104,105,115,46,108,97,98,101,108,115,46,112,95,115,105,110,103,108,101,95,108,101,102,116,41,41,44,116,104,105,115,46,108,97,98,101,108,115,46,112,95,115,105,110,103,108,101,95,108,101,102,116,61,116,104,105,115,46,99,104,101,99,107,69,100,103,101,115,40,116,104,105,115,46,108,97,98,101,108,115,46,112,95,115,105,110,103,108,101,95,108,101,102,116,44,116,104,105,115,46,108,97,98,101,108,115,46,112,95,115,105,110,103,108,101,95,102,97,107,101,41,41,125,44,117,112,100,97,116,101,83,99,101,110,101,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,114,97,102,95,105,100,38,38,10,40,99,97,110,99,101,108,65,110,105,109,97,116,105,111,110,70,114,97,109,101,40,116,104,105,115,46,114,97,102,95,105,100,41,44,116,104,105,115,46,114,97,102,95,105,100,61,110,117,108,108,41,59,99,108,101,97,114,84,105,109,101,111,117,116,40,116,104,105,115,46,117,112,100,97,116,101,95,116,109,41,59,116,104,105,115,46,117,112,100,97,116,101,95,116,109,61,110,117,108,108,59,116,104,105,115,46,111,112,116,105,111,110,115,38,38,40,116,104,105,115,46,100,114,97,119,72,97,110,100,108,101,115,40,41,44,116,104,105,115,46,105,115,95,97,99,116,105,118,101,63,116,104,105,115,46,114,97,102,95,105,100,61,114,101,113,117,101,115,116,65,110,105,109,97,116,105,111,110,70,114,97,109,101,40,116,104,105,115,46,117,112,100,97,116,101,83,99,101,110,101,46,98,105,110,100,40,116,104,105,115,41,41,58,116,104,105,115,46,117,112,100,97,116,101,95,116,109,61,115,101,116,84,105,109,101,111,117,116,40,116,104,105,115,46,117,112,100,97,116,101,83,99,101,110,101,46,98,105,110,100,40,116,104,105,115,41,44,51,48,48,41,41,125,44,100,114,97,119,72,97,110,100,108,101,115,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,61,116,104,105,115,46,36,99,97,99,104,101,46,114,115,46,111,117,116,101,114,87,105,100,116,104,40,33,49,41,59,105,102,40,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,41,123,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,33,61,61,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,95,111,108,100,38,38,40,116,104,105,115,46,116,97,114,103,101,116,61,34,98,97,115,101,34,44,116,104,105,115,46,105,115,95,114,101,115,105,122,101,61,33,48,41,59,105,102,40,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,33,61,61,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,95,111,108,100,124,124,116,104,105,115,46,102,111,114,99,101,95,114,101,100,114,97,119,41,116,104,105,115,46,115,101,116,77,105,110,77,97,120,40,41,44,10,116,104,105,115,46,99,97,108,99,40,33,48,41,44,116,104,105,115,46,100,114,97,119,76,97,98,101,108,115,40,41,44,116,104,105,115,46,111,112,116,105,111,110,115,46,103,114,105,100,38,38,40,116,104,105,115,46,99,97,108,99,71,114,105,100,77,97,114,103,105,110,40,41,44,116,104,105,115,46,99,97,108,99,71,114,105,100,76,97,98,101,108,115,40,41,41,44,116,104,105,115,46,102,111,114,99,101,95,114,101,100,114,97,119,61,33,48,44,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,95,111,108,100,61,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,44,116,104,105,115,46,100,114,97,119,83,104,97,100,111,119,40,41,59,105,102,40,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,38,38,40,116,104,105,115,46,100,114,97,103,103,105,110,103,124,124,116,104,105,115,46,102,111,114,99,101,95,114,101,100,114,97,119,124,124,116,104,105,115,46,105,115,95,107,101,121,41,41,123,105,102,40,116,104,105,115,46,111,108,100,95,102,114,111,109,33,61,61,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,124,124,116,104,105,115,46,111,108,100,95,116,111,33,61,61,116,104,105,115,46,114,101,115,117,108,116,46,116,111,124,124,116,104,105,115,46,102,111,114,99,101,95,114,101,100,114,97,119,124,124,116,104,105,115,46,105,115,95,107,101,121,41,123,116,104,105,115,46,100,114,97,119,76,97,98,101,108,115,40,41,59,116,104,105,115,46,36,99,97,99,104,101,46,98,97,114,91,48,93,46,115,116,121,108,101,46,108,101,102,116,61,116,104,105,115,46,99,111,111,114,100,115,46,112,95,98,97,114,95,120,43,34,37,34,59,116,104,105,115,46,36,99,97,99,104,101,46,98,97,114,91,48,93,46,115,116,121,108,101,46,119,105,100,116,104,61,116,104,105,115,46,99,111,111,114,100,115,46,112,95,98,97,114,95,119,43,34,37,34,59,105,102,40,34,115,105,110,103,108,101,34,61,61,61,116,104,105,115,46,111,112,116,105,111,110,115,46,116,121,112,101,41,116,104,105,115,46,36,99,97,99,104,101,46,115,95,115,105,110,103,108,101,91,48,93,46,115,116,121,108,101,46,108,101,102,116,61,10,116,104,105,115,46,99,111,111,114,100,115,46,112,95,115,105,110,103,108,101,95,102,97,107,101,43,34,37,34,59,101,108,115,101,123,116,104,105,115,46,36,99,97,99,104,101,46,115,95,102,114,111,109,91,48,93,46,115,116,121,108,101,46,108,101,102,116,61,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,102,97,107,101,43,34,37,34,59,116,104,105,115,46,36,99,97,99,104,101,46,115,95,116,111,91,48,93,46,115,116,121,108,101,46,108,101,102,116,61,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,102,97,107,101,43,34,37,34,59,105,102,40,116,104,105,115,46,111,108,100,95,102,114,111,109,33,61,61,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,124,124,116,104,105,115,46,102,111,114,99,101,95,114,101,100,114,97,119,41,116,104,105,115,46,36,99,97,99,104,101,46,102,114,111,109,91,48,93,46,115,116,121,108,101,46,108,101,102,116,61,116,104,105,115,46,108,97,98,101,108,115,46,112,95,102,114,111,109,95,108,101,102,116,43,34,37,34,59,105,102,40,116,104,105,115,46,111,108,100,95,116,111,33,61,61,116,104,105,115,46,114,101,115,117,108,116,46,116,111,124,124,116,104,105,115,46,102,111,114,99,101,95,114,101,100,114,97,119,41,116,104,105,115,46,36,99,97,99,104,101,46,116,111,91,48,93,46,115,116,121,108,101,46,108,101,102,116,61,116,104,105,115,46,108,97,98,101,108,115,46,112,95,116,111,95,108,101,102,116,43,34,37,34,125,116,104,105,115,46,36,99,97,99,104,101,46,115,105,110,103,108,101,91,48,93,46,115,116,121,108,101,46,108,101,102,116,61,116,104,105,115,46,108,97,98,101,108,115,46,112,95,115,105,110,103,108,101,95,108,101,102,116,43,34,37,34,59,116,104,105,115,46,119,114,105,116,101,84,111,73,110,112,117,116,40,41,59,116,104,105,115,46,111,108,100,95,102,114,111,109,61,61,61,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,38,38,116,104,105,115,46,111,108,100,95,116,111,61,61,61,10,116,104,105,115,46,114,101,115,117,108,116,46,116,111,124,124,116,104,105,115,46,105,115,95,115,116,97,114,116,124,124,40,116,104,105,115,46,36,99,97,99,104,101,46,105,110,112,117,116,46,116,114,105,103,103,101,114,40,34,99,104,97,110,103,101,34,41,44,116,104,105,115,46,36,99,97,99,104,101,46,105,110,112,117,116,46,116,114,105,103,103,101,114,40,34,105,110,112,117,116,34,41,41,59,116,104,105,115,46,111,108,100,95,102,114,111,109,61,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,59,116,104,105,115,46,111,108,100,95,116,111,61,116,104,105,115,46,114,101,115,117,108,116,46,116,111,59,116,104,105,115,46,105,115,95,114,101,115,105,122,101,124,124,116,104,105,115,46,105,115,95,117,112,100,97,116,101,124,124,116,104,105,115,46,105,115,95,115,116,97,114,116,124,124,116,104,105,115,46,105,115,95,102,105,110,105,115,104,124,124,116,104,105,115,46,99,97,108,108,79,110,67,104,97,110,103,101,40,41,59,105,102,40,116,104,105,115,46,105,115,95,107,101,121,124,124,116,104,105,115,46,105,115,95,99,108,105,99,107,41,116,104,105,115,46,105,115,95,99,108,105,99,107,61,116,104,105,115,46,105,115,95,107,101,121,61,33,49,44,116,104,105,115,46,99,97,108,108,79,110,70,105,110,105,115,104,40,41,59,116,104,105,115,46,105,115,95,102,105,110,105,115,104,61,116,104,105,115,46,105,115,95,114,101,115,105,122,101,61,116,104,105,115,46,105,115,95,117,112,100,97,116,101,61,33,49,125,116,104,105,115,46,102,111,114,99,101,95,114,101,100,114,97,119,61,116,104,105,115,46,105,115,95,99,108,105,99,107,61,116,104,105,115,46,105,115,95,107,101,121,61,116,104,105,115,46,105,115,95,115,116,97,114,116,61,33,49,125,125,125,44,100,114,97,119,76,97,98,101,108,115,58,102,117,110,99,116,105,111,110,40,41,123,105,102,40,116,104,105,115,46,111,112,116,105,111,110,115,41,123,118,97,114,32,97,61,116,104,105,115,46,111,112,116,105,111,110,115,46,118,97,108,117,101,115,46,108,101,110,103,116,104,44,10,98,61,116,104,105,115,46,111,112,116,105,111,110,115,46,112,95,118,97,108,117,101,115,59,105,102,40,33,116,104,105,115,46,111,112,116,105,111,110,115,46,104,105,100,101,95,102,114,111,109,95,116,111,41,105,102,40,34,115,105,110,103,108,101,34,61,61,61,116,104,105,115,46,111,112,116,105,111,110,115,46,116,121,112,101,41,123,105,102,40,97,41,97,61,116,104,105,115,46,100,101,99,111,114,97,116,101,40,98,91,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,93,41,59,101,108,115,101,123,118,97,114,32,100,61,116,104,105,115,46,95,112,114,101,116,116,105,102,121,40,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,41,59,97,61,116,104,105,115,46,100,101,99,111,114,97,116,101,40,100,44,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,41,125,116,104,105,115,46,36,99,97,99,104,101,46,115,105,110,103,108,101,46,104,116,109,108,40,97,41,59,116,104,105,115,46,99,97,108,99,76,97,98,101,108,115,40,41,59,116,104,105,115,46,36,99,97,99,104,101,46,109,105,110,91,48,93,46,115,116,121,108,101,46,118,105,115,105,98,105,108,105,116,121,61,116,104,105,115,46,108,97,98,101,108,115,46,112,95,115,105,110,103,108,101,95,108,101,102,116,60,116,104,105,115,46,108,97,98,101,108,115,46,112,95,109,105,110,43,49,63,34,104,105,100,100,101,110,34,58,34,118,105,115,105,98,108,101,34,59,116,104,105,115,46,36,99,97,99,104,101,46,109,97,120,91,48,93,46,115,116,121,108,101,46,118,105,115,105,98,105,108,105,116,121,61,116,104,105,115,46,108,97,98,101,108,115,46,112,95,115,105,110,103,108,101,95,108,101,102,116,43,116,104,105,115,46,108,97,98,101,108,115,46,112,95,115,105,110,103,108,101,95,102,97,107,101,62,49,48,48,45,116,104,105,115,46,108,97,98,101,108,115,46,112,95,109,97,120,45,49,63,34,104,105,100,100,101,110,34,58,34,118,105,115,105,98,108,101,34,125,101,108,115,101,123,97,63,40,116,104,105,115,46,111,112,116,105,111,110,115,46,100,101,99,111,114,97,116,101,95,98,111,116,104,63,10,40,97,61,116,104,105,115,46,100,101,99,111,114,97,116,101,40,98,91,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,93,41,44,97,43,61,116,104,105,115,46,111,112,116,105,111,110,115,46,118,97,108,117,101,115,95,115,101,112,97,114,97,116,111,114,44,97,43,61,116,104,105,115,46,100,101,99,111,114,97,116,101,40,98,91,116,104,105,115,46,114,101,115,117,108,116,46,116,111,93,41,41,58,97,61,116,104,105,115,46,100,101,99,111,114,97,116,101,40,98,91,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,93,43,116,104,105,115,46,111,112,116,105,111,110,115,46,118,97,108,117,101,115,95,115,101,112,97,114,97,116,111,114,43,98,91,116,104,105,115,46,114,101,115,117,108,116,46,116,111,93,41,44,100,61,116,104,105,115,46,100,101,99,111,114,97,116,101,40,98,91,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,93,41,44,98,61,116,104,105,115,46,100,101,99,111,114,97,116,101,40,98,91,116,104,105,115,46,114,101,115,117,108,116,46,116,111,93,41,41,58,40,100,61,116,104,105,115,46,95,112,114,101,116,116,105,102,121,40,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,41,44,98,61,116,104,105,115,46,95,112,114,101,116,116,105,102,121,40,116,104,105,115,46,114,101,115,117,108,116,46,116,111,41,44,116,104,105,115,46,111,112,116,105,111,110,115,46,100,101,99,111,114,97,116,101,95,98,111,116,104,63,40,97,61,116,104,105,115,46,100,101,99,111,114,97,116,101,40,100,44,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,41,44,97,43,61,116,104,105,115,46,111,112,116,105,111,110,115,46,118,97,108,117,101,115,95,115,101,112,97,114,97,116,111,114,44,97,43,61,116,104,105,115,46,100,101,99,111,114,97,116,101,40,98,44,116,104,105,115,46,114,101,115,117,108,116,46,116,111,41,41,58,97,61,116,104,105,115,46,100,101,99,111,114,97,116,101,40,100,43,116,104,105,115,46,111,112,116,105,111,110,115,46,118,97,108,117,101,115,95,115,101,112,97,114,97,116,111,114,43,10,98,44,116,104,105,115,46,114,101,115,117,108,116,46,116,111,41,44,100,61,116,104,105,115,46,100,101,99,111,114,97,116,101,40,100,44,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,41,44,98,61,116,104,105,115,46,100,101,99,111,114,97,116,101,40,98,44,116,104,105,115,46,114,101,115,117,108,116,46,116,111,41,41,59,116,104,105,115,46,36,99,97,99,104,101,46,115,105,110,103,108,101,46,104,116,109,108,40,97,41,59,116,104,105,115,46,36,99,97,99,104,101,46,102,114,111,109,46,104,116,109,108,40,100,41,59,116,104,105,115,46,36,99,97,99,104,101,46,116,111,46,104,116,109,108,40,98,41,59,116,104,105,115,46,99,97,108,99,76,97,98,101,108,115,40,41,59,97,61,77,97,116,104,46,109,105,110,40,116,104,105,115,46,108,97,98,101,108,115,46,112,95,115,105,110,103,108,101,95,108,101,102,116,44,116,104,105,115,46,108,97,98,101,108,115,46,112,95,102,114,111,109,95,108,101,102,116,41,59,100,61,116,104,105,115,46,108,97,98,101,108,115,46,112,95,115,105,110,103,108,101,95,108,101,102,116,43,116,104,105,115,46,108,97,98,101,108,115,46,112,95,115,105,110,103,108,101,95,102,97,107,101,59,118,97,114,32,98,61,116,104,105,115,46,108,97,98,101,108,115,46,112,95,116,111,95,108,101,102,116,43,116,104,105,115,46,108,97,98,101,108,115,46,112,95,116,111,95,102,97,107,101,44,99,61,77,97,116,104,46,109,97,120,40,100,44,98,41,59,116,104,105,115,46,108,97,98,101,108,115,46,112,95,102,114,111,109,95,108,101,102,116,43,116,104,105,115,46,108,97,98,101,108,115,46,112,95,102,114,111,109,95,102,97,107,101,62,61,116,104,105,115,46,108,97,98,101,108,115,46,112,95,116,111,95,108,101,102,116,63,40,116,104,105,115,46,36,99,97,99,104,101,46,102,114,111,109,91,48,93,46,115,116,121,108,101,46,118,105,115,105,98,105,108,105,116,121,61,34,104,105,100,100,101,110,34,44,116,104,105,115,46,36,99,97,99,104,101,46,116,111,91,48,93,46,115,116,121,108,101,46,118,105,115,105,98,105,108,105,116,121,61,10,34,104,105,100,100,101,110,34,44,116,104,105,115,46,36,99,97,99,104,101,46,115,105,110,103,108,101,91,48,93,46,115,116,121,108,101,46,118,105,115,105,98,105,108,105,116,121,61,34,118,105,115,105,98,108,101,34,44,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,61,61,61,116,104,105,115,46,114,101,115,117,108,116,46,116,111,63,40,34,102,114,111,109,34,61,61,61,116,104,105,115,46,116,97,114,103,101,116,63,116,104,105,115,46,36,99,97,99,104,101,46,102,114,111,109,91,48,93,46,115,116,121,108,101,46,118,105,115,105,98,105,108,105,116,121,61,34,118,105,115,105,98,108,101,34,58,34,116,111,34,61,61,61,116,104,105,115,46,116,97,114,103,101,116,63,116,104,105,115,46,36,99,97,99,104,101,46,116,111,91,48,93,46,115,116,121,108,101,46,118,105,115,105,98,105,108,105,116,121,61,34,118,105,115,105,98,108,101,34,58,116,104,105,115,46,116,97,114,103,101,116,124,124,40,116,104,105,115,46,36,99,97,99,104,101,46,102,114,111,109,91,48,93,46,115,116,121,108,101,46,118,105,115,105,98,105,108,105,116,121,61,34,118,105,115,105,98,108,101,34,41,44,116,104,105,115,46,36,99,97,99,104,101,46,115,105,110,103,108,101,91,48,93,46,115,116,121,108,101,46,118,105,115,105,98,105,108,105,116,121,61,34,104,105,100,100,101,110,34,44,99,61,98,41,58,40,116,104,105,115,46,36,99,97,99,104,101,46,102,114,111,109,91,48,93,46,115,116,121,108,101,46,118,105,115,105,98,105,108,105,116,121,61,34,104,105,100,100,101,110,34,44,116,104,105,115,46,36,99,97,99,104,101,46,116,111,91,48,93,46,115,116,121,108,101,46,118,105,115,105,98,105,108,105,116,121,61,34,104,105,100,100,101,110,34,44,116,104,105,115,46,36,99,97,99,104,101,46,115,105,110,103,108,101,91,48,93,46,115,116,121,108,101,46,118,105,115,105,98,105,108,105,116,121,61,34,118,105,115,105,98,108,101,34,44,99,61,77,97,116,104,46,109,97,120,40,100,44,98,41,41,41,58,40,116,104,105,115,46,36,99,97,99,104,101,46,102,114,111,109,91,48,93,46,115,116,121,108,101,46,118,105,115,105,98,105,108,105,116,121,61,10,34,118,105,115,105,98,108,101,34,44,116,104,105,115,46,36,99,97,99,104,101,46,116,111,91,48,93,46,115,116,121,108,101,46,118,105,115,105,98,105,108,105,116,121,61,34,118,105,115,105,98,108,101,34,44,116,104,105,115,46,36,99,97,99,104,101,46,115,105,110,103,108,101,91,48,93,46,115,116,121,108,101,46,118,105,115,105,98,105,108,105,116,121,61,34,104,105,100,100,101,110,34,41,59,116,104,105,115,46,36,99,97,99,104,101,46,109,105,110,91,48,93,46,115,116,121,108,101,46,118,105,115,105,98,105,108,105,116,121,61,97,60,116,104,105,115,46,108,97,98,101,108,115,46,112,95,109,105,110,43,49,63,34,104,105,100,100,101,110,34,58,34,118,105,115,105,98,108,101,34,59,116,104,105,115,46,36,99,97,99,104,101,46,109,97,120,91,48,93,46,115,116,121,108,101,46,118,105,115,105,98,105,108,105,116,121,61,99,62,49,48,48,45,116,104,105,115,46,108,97,98,101,108,115,46,112,95,109,97,120,45,49,63,34,104,105,100,100,101,110,34,58,34,118,105,115,105,98,108,101,34,125,125,125,44,100,114,97,119,83,104,97,100,111,119,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,97,61,116,104,105,115,46,111,112,116,105,111,110,115,44,98,61,116,104,105,115,46,36,99,97,99,104,101,44,100,61,34,110,117,109,98,101,114,34,61,61,61,116,121,112,101,111,102,32,97,46,102,114,111,109,95,109,105,110,38,38,33,105,115,78,97,78,40,97,46,102,114,111,109,95,109,105,110,41,44,99,61,34,110,117,109,98,101,114,34,61,61,61,116,121,112,101,111,102,32,97,46,102,114,111,109,95,109,97,120,38,38,33,105,115,78,97,78,40,97,46,102,114,111,109,95,109,97,120,41,44,101,61,34,110,117,109,98,101,114,34,61,61,61,116,121,112,101,111,102,32,97,46,116,111,95,109,105,110,38,38,33,105,115,78,97,78,40,97,46,116,111,95,109,105,110,41,44,103,61,34,110,117,109,98,101,114,34,61,61,61,116,121,112,101,111,102,32,97,46,116,111,95,109,97,120,38,38,33,105,115,78,97,78,40,97,46,116,111,95,109,97,120,41,59,10,34,115,105,110,103,108,101,34,61,61,61,97,46,116,121,112,101,63,97,46,102,114,111,109,95,115,104,97,100,111,119,38,38,40,100,124,124,99,41,63,40,100,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,80,101,114,99,101,110,116,40,100,63,97,46,102,114,111,109,95,109,105,110,58,97,46,109,105,110,41,44,99,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,80,101,114,99,101,110,116,40,99,63,97,46,102,114,111,109,95,109,97,120,58,97,46,109,97,120,41,45,100,44,100,61,116,104,105,115,46,116,111,70,105,120,101,100,40,100,45,116,104,105,115,46,99,111,111,114,100,115,46,112,95,104,97,110,100,108,101,47,49,48,48,42,100,41,44,99,61,116,104,105,115,46,116,111,70,105,120,101,100,40,99,45,116,104,105,115,46,99,111,111,114,100,115,46,112,95,104,97,110,100,108,101,47,49,48,48,42,99,41,44,100,43,61,116,104,105,115,46,99,111,111,114,100,115,46,112,95,104,97,110,100,108,101,47,50,44,98,46,115,104,97,100,95,115,105,110,103,108,101,91,48,93,46,115,116,121,108,101,46,100,105,115,112,108,97,121,61,34,98,108,111,99,107,34,44,98,46,115,104,97,100,95,115,105,110,103,108,101,91,48,93,46,115,116,121,108,101,46,108,101,102,116,61,100,43,34,37,34,44,98,46,115,104,97,100,95,115,105,110,103,108,101,91,48,93,46,115,116,121,108,101,46,119,105,100,116,104,61,99,43,34,37,34,41,58,98,46,115,104,97,100,95,115,105,110,103,108,101,91,48,93,46,115,116,121,108,101,46,100,105,115,112,108,97,121,61,34,110,111,110,101,34,58,40,97,46,102,114,111,109,95,115,104,97,100,111,119,38,38,40,100,124,124,99,41,63,40,100,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,80,101,114,99,101,110,116,40,100,63,97,46,102,114,111,109,95,109,105,110,58,97,46,109,105,110,41,44,99,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,80,101,114,99,101,110,116,40,99,63,97,46,102,114,111,109,95,109,97,120,58,97,46,109,97,120,41,45,10,100,44,100,61,116,104,105,115,46,116,111,70,105,120,101,100,40,100,45,116,104,105,115,46,99,111,111,114,100,115,46,112,95,104,97,110,100,108,101,47,49,48,48,42,100,41,44,99,61,116,104,105,115,46,116,111,70,105,120,101,100,40,99,45,116,104,105,115,46,99,111,111,114,100,115,46,112,95,104,97,110,100,108,101,47,49,48,48,42,99,41,44,100,43,61,116,104,105,115,46,99,111,111,114,100,115,46,112,95,104,97,110,100,108,101,47,50,44,98,46,115,104,97,100,95,102,114,111,109,91,48,93,46,115,116,121,108,101,46,100,105,115,112,108,97,121,61,34,98,108,111,99,107,34,44,98,46,115,104,97,100,95,102,114,111,109,91,48,93,46,115,116,121,108,101,46,108,101,102,116,61,100,43,34,37,34,44,98,46,115,104,97,100,95,102,114,111,109,91,48,93,46,115,116,121,108,101,46,119,105,100,116,104,61,99,43,34,37,34,41,58,98,46,115,104,97,100,95,102,114,111,109,91,48,93,46,115,116,121,108,101,46,100,105,115,112,108,97,121,61,34,110,111,110,101,34,44,97,46,116,111,95,115,104,97,100,111,119,38,38,40,101,124,124,103,41,63,40,101,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,80,101,114,99,101,110,116,40,101,63,97,46,116,111,95,109,105,110,58,97,46,109,105,110,41,44,97,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,80,101,114,99,101,110,116,40,103,63,97,46,116,111,95,109,97,120,58,97,46,109,97,120,41,45,101,44,101,61,116,104,105,115,46,116,111,70,105,120,101,100,40,101,45,116,104,105,115,46,99,111,111,114,100,115,46,112,95,104,97,110,100,108,101,47,49,48,48,42,101,41,44,97,61,116,104,105,115,46,116,111,70,105,120,101,100,40,97,45,116,104,105,115,46,99,111,111,114,100,115,46,112,95,104,97,110,100,108,101,47,49,48,48,42,97,41,44,101,43,61,116,104,105,115,46,99,111,111,114,100,115,46,112,95,104,97,110,100,108,101,47,50,44,98,46,115,104,97,100,95,116,111,91,48,93,46,115,116,121,108,101,46,100,105,115,112,108,97,121,61,10,34,98,108,111,99,107,34,44,98,46,115,104,97,100,95,116,111,91,48,93,46,115,116,121,108,101,46,108,101,102,116,61,101,43,34,37,34,44,98,46,115,104,97,100,95,116,111,91,48,93,46,115,116,121,108,101,46,119,105,100,116,104,61,97,43,34,37,34,41,58,98,46,115,104,97,100,95,116,111,91,48,93,46,115,116,121,108,101,46,100,105,115,112,108,97,121,61,34,110,111,110,101,34,41,125,44,119,114,105,116,101,84,111,73,110,112,117,116,58,102,117,110,99,116,105,111,110,40,41,123,34,115,105,110,103,108,101,34,61,61,61,116,104,105,115,46,111,112,116,105,111,110,115,46,116,121,112,101,63,40,116,104,105,115,46,111,112,116,105,111,110,115,46,118,97,108,117,101,115,46,108,101,110,103,116,104,63,116,104,105,115,46,36,99,97,99,104,101,46,105,110,112,117,116,46,112,114,111,112,40,34,118,97,108,117,101,34,44,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,95,118,97,108,117,101,41,58,116,104,105,115,46,36,99,97,99,104,101,46,105,110,112,117,116,46,112,114,111,112,40,34,118,97,108,117,101,34,44,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,41,44,116,104,105,115,46,36,99,97,99,104,101,46,105,110,112,117,116,46,100,97,116,97,40,34,102,114,111,109,34,44,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,41,41,58,40,116,104,105,115,46,111,112,116,105,111,110,115,46,118,97,108,117,101,115,46,108,101,110,103,116,104,63,116,104,105,115,46,36,99,97,99,104,101,46,105,110,112,117,116,46,112,114,111,112,40,34,118,97,108,117,101,34,44,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,95,118,97,108,117,101,43,116,104,105,115,46,111,112,116,105,111,110,115,46,105,110,112,117,116,95,118,97,108,117,101,115,95,115,101,112,97,114,97,116,111,114,43,116,104,105,115,46,114,101,115,117,108,116,46,116,111,95,118,97,108,117,101,41,58,116,104,105,115,46,36,99,97,99,104,101,46,105,110,112,117,116,46,112,114,111,112,40,34,118,97,108,117,101,34,44,10,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,43,116,104,105,115,46,111,112,116,105,111,110,115,46,105,110,112,117,116,95,118,97,108,117,101,115,95,115,101,112,97,114,97,116,111,114,43,116,104,105,115,46,114,101,115,117,108,116,46,116,111,41,44,116,104,105,115,46,36,99,97,99,104,101,46,105,110,112,117,116,46,100,97,116,97,40,34,102,114,111,109,34,44,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,41,44,116,104,105,115,46,36,99,97,99,104,101,46,105,110,112,117,116,46,100,97,116,97,40,34,116,111,34,44,116,104,105,115,46,114,101,115,117,108,116,46,116,111,41,41,125,44,99,97,108,108,79,110,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,119,114,105,116,101,84,111,73,110,112,117,116,40,41,59,105,102,40,116,104,105,115,46,111,112,116,105,111,110,115,46,111,110,83,116,97,114,116,38,38,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,116,104,105,115,46,111,112,116,105,111,110,115,46,111,110,83,116,97,114,116,41,105,102,40,116,104,105,115,46,111,112,116,105,111,110,115,46,115,99,111,112,101,41,116,104,105,115,46,111,112,116,105,111,110,115,46,111,110,83,116,97,114,116,46,99,97,108,108,40,116,104,105,115,46,111,112,116,105,111,110,115,46,115,99,111,112,101,44,116,104,105,115,46,114,101,115,117,108,116,41,59,101,108,115,101,32,116,104,105,115,46,111,112,116,105,111,110,115,46,111,110,83,116,97,114,116,40,116,104,105,115,46,114,101,115,117,108,116,41,125,44,99,97,108,108,79,110,67,104,97,110,103,101,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,119,114,105,116,101,84,111,73,110,112,117,116,40,41,59,105,102,40,116,104,105,115,46,111,112,116,105,111,110,115,46,111,110,67,104,97,110,103,101,38,38,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,116,104,105,115,46,111,112,116,105,111,110,115,46,111,110,67,104,97,110,103,101,41,105,102,40,116,104,105,115,46,111,112,116,105,111,110,115,46,115,99,111,112,101,41,116,104,105,115,46,111,112,116,105,111,110,115,46,111,110,67,104,97,110,103,101,46,99,97,108,108,40,116,104,105,115,46,111,112,116,105,111,110,115,46,115,99,111,112,101,44,10,116,104,105,115,46,114,101,115,117,108,116,41,59,101,108,115,101,32,116,104,105,115,46,111,112,116,105,111,110,115,46,111,110,67,104,97,110,103,101,40,116,104,105,115,46,114,101,115,117,108,116,41,125,44,99,97,108,108,79,110,70,105,110,105,115,104,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,119,114,105,116,101,84,111,73,110,112,117,116,40,41,59,105,102,40,116,104,105,115,46,111,112,116,105,111,110,115,46,111,110,70,105,110,105,115,104,38,38,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,116,104,105,115,46,111,112,116,105,111,110,115,46,111,110,70,105,110,105,115,104,41,105,102,40,116,104,105,115,46,111,112,116,105,111,110,115,46,115,99,111,112,101,41,116,104,105,115,46,111,112,116,105,111,110,115,46,111,110,70,105,110,105,115,104,46,99,97,108,108,40,116,104,105,115,46,111,112,116,105,111,110,115,46,115,99,111,112,101,44,116,104,105,115,46,114,101,115,117,108,116,41,59,101,108,115,101,32,116,104,105,115,46,111,112,116,105,111,110,115,46,111,110,70,105,110,105,115,104,40,116,104,105,115,46,114,101,115,117,108,116,41,125,44,99,97,108,108,79,110,85,112,100,97,116,101,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,119,114,105,116,101,84,111,73,110,112,117,116,40,41,59,105,102,40,116,104,105,115,46,111,112,116,105,111,110,115,46,111,110,85,112,100,97,116,101,38,38,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,116,104,105,115,46,111,112,116,105,111,110,115,46,111,110,85,112,100,97,116,101,41,105,102,40,116,104,105,115,46,111,112,116,105,111,110,115,46,115,99,111,112,101,41,116,104,105,115,46,111,112,116,105,111,110,115,46,111,110,85,112,100,97,116,101,46,99,97,108,108,40,116,104,105,115,46,111,112,116,105,111,110,115,46,115,99,111,112,101,44,116,104,105,115,46,114,101,115,117,108,116,41,59,101,108,115,101,32,116,104,105,115,46,111,112,116,105,111,110,115,46,111,110,85,112,100,97,116,101,40,116,104,105,115,46,114,101,115,117,108,116,41,125,44,10,116,111,103,103,108,101,73,110,112,117,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,36,99,97,99,104,101,46,105,110,112,117,116,46,116,111,103,103,108,101,67,108,97,115,115,40,34,105,114,115,45,104,105,100,100,101,110,45,105,110,112,117,116,34,41,59,116,104,105,115,46,104,97,115,95,116,97,98,95,105,110,100,101,120,63,116,104,105,115,46,36,99,97,99,104,101,46,105,110,112,117,116,46,112,114,111,112,40,34,116,97,98,105,110,100,101,120,34,44,45,49,41,58,116,104,105,115,46,36,99,97,99,104,101,46,105,110,112,117,116,46,114,101,109,111,118,101,80,114,111,112,40,34,116,97,98,105,110,100,101,120,34,41,59,116,104,105,115,46,104,97,115,95,116,97,98,95,105,110,100,101,120,61,33,116,104,105,115,46,104,97,115,95,116,97,98,95,105,110,100,101,120,125,44,99,111,110,118,101,114,116,84,111,80,101,114,99,101,110,116,58,102,117,110,99,116,105,111,110,40,97,44,98,41,123,118,97,114,32,100,61,116,104,105,115,46,111,112,116,105,111,110,115,46,109,97,120,45,116,104,105,115,46,111,112,116,105,111,110,115,46,109,105,110,59,114,101,116,117,114,110,32,100,63,116,104,105,115,46,116,111,70,105,120,101,100,40,40,98,63,97,58,97,45,116,104,105,115,46,111,112,116,105,111,110,115,46,109,105,110,41,47,40,100,47,49,48,48,41,41,58,40,116,104,105,115,46,110,111,95,100,105,97,112,97,115,111,110,61,33,48,44,48,41,125,44,99,111,110,118,101,114,116,84,111,86,97,108,117,101,58,102,117,110,99,116,105,111,110,40,97,41,123,118,97,114,32,98,61,116,104,105,115,46,111,112,116,105,111,110,115,46,109,105,110,44,100,61,116,104,105,115,46,111,112,116,105,111,110,115,46,109,97,120,44,99,61,98,46,116,111,83,116,114,105,110,103,40,41,46,115,112,108,105,116,40,34,46,34,41,91,49,93,44,101,61,100,46,116,111,83,116,114,105,110,103,40,41,46,115,112,108,105,116,40,34,46,34,41,91,49,93,44,103,44,108,44,102,61,48,44,104,61,48,59,10,105,102,40,48,61,61,61,97,41,114,101,116,117,114,110,32,116,104,105,115,46,111,112,116,105,111,110,115,46,109,105,110,59,105,102,40,49,48,48,61,61,61,97,41,114,101,116,117,114,110,32,116,104,105,115,46,111,112,116,105,111,110,115,46,109,97,120,59,99,38,38,40,102,61,103,61,99,46,108,101,110,103,116,104,41,59,101,38,38,40,102,61,108,61,101,46,108,101,110,103,116,104,41,59,103,38,38,108,38,38,40,102,61,103,62,61,108,63,103,58,108,41,59,48,62,98,38,38,40,104,61,77,97,116,104,46,97,98,115,40,98,41,44,98,61,43,40,98,43,104,41,46,116,111,70,105,120,101,100,40,102,41,44,100,61,43,40,100,43,104,41,46,116,111,70,105,120,101,100,40,102,41,41,59,97,61,40,100,45,98,41,47,49,48,48,42,97,43,98,59,40,98,61,116,104,105,115,46,111,112,116,105,111,110,115,46,115,116,101,112,46,116,111,83,116,114,105,110,103,40,41,46,115,112,108,105,116,40,34,46,34,41,91,49,93,41,63,97,61,43,97,46,116,111,70,105,120,101,100,40,98,46,108,101,110,103,116,104,41,58,40,97,47,61,116,104,105,115,46,111,112,116,105,111,110,115,46,115,116,101,112,44,97,42,61,116,104,105,115,46,111,112,116,105,111,110,115,46,115,116,101,112,44,97,61,43,97,46,116,111,70,105,120,101,100,40,48,41,41,59,104,38,38,40,97,45,61,104,41,59,104,61,98,63,43,97,46,116,111,70,105,120,101,100,40,98,46,108,101,110,103,116,104,41,58,116,104,105,115,46,116,111,70,105,120,101,100,40,97,41,59,104,60,116,104,105,115,46,111,112,116,105,111,110,115,46,109,105,110,63,104,61,116,104,105,115,46,111,112,116,105,111,110,115,46,109,105,110,58,104,62,116,104,105,115,46,111,112,116,105,111,110,115,46,109,97,120,38,38,40,104,61,116,104,105,115,46,111,112,116,105,111,110,115,46,109,97,120,41,59,114,101,116,117,114,110,32,104,125,44,99,97,108,99,87,105,116,104,83,116,101,112,58,102,117,110,99,116,105,111,110,40,97,41,123,118,97,114,32,98,61,10,77,97,116,104,46,114,111,117,110,100,40,97,47,116,104,105,115,46,99,111,111,114,100,115,46,112,95,115,116,101,112,41,42,116,104,105,115,46,99,111,111,114,100,115,46,112,95,115,116,101,112,59,49,48,48,60,98,38,38,40,98,61,49,48,48,41,59,49,48,48,61,61,61,97,38,38,40,98,61,49,48,48,41,59,114,101,116,117,114,110,32,116,104,105,115,46,116,111,70,105,120,101,100,40,98,41,125,44,99,104,101,99,107,77,105,110,73,110,116,101,114,118,97,108,58,102,117,110,99,116,105,111,110,40,97,44,98,44,100,41,123,118,97,114,32,99,61,116,104,105,115,46,111,112,116,105,111,110,115,59,105,102,40,33,99,46,109,105,110,95,105,110,116,101,114,118,97,108,41,114,101,116,117,114,110,32,97,59,97,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,86,97,108,117,101,40,97,41,59,98,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,86,97,108,117,101,40,98,41,59,34,102,114,111,109,34,61,61,61,100,63,98,45,97,60,99,46,109,105,110,95,105,110,116,101,114,118,97,108,38,38,40,97,61,98,45,99,46,109,105,110,95,105,110,116,101,114,118,97,108,41,58,97,45,98,60,99,46,109,105,110,95,105,110,116,101,114,118,97,108,38,38,40,97,61,98,43,99,46,109,105,110,95,105,110,116,101,114,118,97,108,41,59,114,101,116,117,114,110,32,116,104,105,115,46,99,111,110,118,101,114,116,84,111,80,101,114,99,101,110,116,40,97,41,125,44,99,104,101,99,107,77,97,120,73,110,116,101,114,118,97,108,58,102,117,110,99,116,105,111,110,40,97,44,98,44,100,41,123,118,97,114,32,99,61,116,104,105,115,46,111,112,116,105,111,110,115,59,105,102,40,33,99,46,109,97,120,95,105,110,116,101,114,118,97,108,41,114,101,116,117,114,110,32,97,59,97,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,86,97,108,117,101,40,97,41,59,98,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,86,97,108,117,101,40,98,41,59,34,102,114,111,109,34,61,61,61,10,100,63,98,45,97,62,99,46,109,97,120,95,105,110,116,101,114,118,97,108,38,38,40,97,61,98,45,99,46,109,97,120,95,105,110,116,101,114,118,97,108,41,58,97,45,98,62,99,46,109,97,120,95,105,110,116,101,114,118,97,108,38,38,40,97,61,98,43,99,46,109,97,120,95,105,110,116,101,114,118,97,108,41,59,114,101,116,117,114,110,32,116,104,105,115,46,99,111,110,118,101,114,116,84,111,80,101,114,99,101,110,116,40,97,41,125,44,99,104,101,99,107,68,105,97,112,97,115,111,110,58,102,117,110,99,116,105,111,110,40,97,44,98,44,100,41,123,97,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,86,97,108,117,101,40,97,41,59,118,97,114,32,99,61,116,104,105,115,46,111,112,116,105,111,110,115,59,34,110,117,109,98,101,114,34,33,61,61,116,121,112,101,111,102,32,98,38,38,40,98,61,99,46,109,105,110,41,59,34,110,117,109,98,101,114,34,33,61,61,116,121,112,101,111,102,32,100,38,38,40,100,61,99,46,109,97,120,41,59,97,60,98,38,38,40,97,61,98,41,59,97,62,100,38,38,40,97,61,100,41,59,114,101,116,117,114,110,32,116,104,105,115,46,99,111,110,118,101,114,116,84,111,80,101,114,99,101,110,116,40,97,41,125,44,116,111,70,105,120,101,100,58,102,117,110,99,116,105,111,110,40,97,41,123,97,61,97,46,116,111,70,105,120,101,100,40,50,48,41,59,114,101,116,117,114,110,43,97,125,44,95,112,114,101,116,116,105,102,121,58,102,117,110,99,116,105,111,110,40,97,41,123,114,101,116,117,114,110,32,116,104,105,115,46,111,112,116,105,111,110,115,46,112,114,101,116,116,105,102,121,95,101,110,97,98,108,101,100,63,116,104,105,115,46,111,112,116,105,111,110,115,46,112,114,101,116,116,105,102,121,38,38,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,116,104,105,115,46,111,112,116,105,111,110,115,46,112,114,101,116,116,105,102,121,63,116,104,105,115,46,111,112,116,105,111,110,115,46,112,114,101,116,116,105,102,121,40,97,41,58,10,116,104,105,115,46,112,114,101,116,116,105,102,121,40,97,41,58,97,125,44,112,114,101,116,116,105,102,121,58,102,117,110,99,116,105,111,110,40,97,41,123,114,101,116,117,114,110,32,97,46,116,111,83,116,114,105,110,103,40,41,46,114,101,112,108,97,99,101,40,47,40,92,100,123,49,44,51,125,40,63,61,40,63,58,92,100,92,100,92,100,41,43,40,63,33,92,100,41,41,41,47,103,44,34,36,49,34,43,116,104,105,115,46,111,112,116,105,111,110,115,46,112,114,101,116,116,105,102,121,95,115,101,112,97,114,97,116,111,114,41,125,44,99,104,101,99,107,69,100,103,101,115,58,102,117,110,99,116,105,111,110,40,97,44,98,41,123,105,102,40,33,116,104,105,115,46,111,112,116,105,111,110,115,46,102,111,114,99,101,95,101,100,103,101,115,41,114,101,116,117,114,110,32,116,104,105,115,46,116,111,70,105,120,101,100,40,97,41,59,48,62,97,63,97,61,48,58,97,62,49,48,48,45,98,38,38,40,97,61,49,48,48,45,98,41,59,114,101,116,117,114,110,32,116,104,105,115,46,116,111,70,105,120,101,100,40,97,41,125,44,118,97,108,105,100,97,116,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,97,61,116,104,105,115,46,111,112,116,105,111,110,115,44,98,61,116,104,105,115,46,114,101,115,117,108,116,44,100,61,97,46,118,97,108,117,101,115,44,99,61,100,46,108,101,110,103,116,104,44,101,59,34,115,116,114,105,110,103,34,61,61,61,116,121,112,101,111,102,32,97,46,109,105,110,38,38,40,97,46,109,105,110,61,43,97,46,109,105,110,41,59,34,115,116,114,105,110,103,34,61,61,61,116,121,112,101,111,102,32,97,46,109,97,120,38,38,40,97,46,109,97,120,61,43,97,46,109,97,120,41,59,34,115,116,114,105,110,103,34,61,61,61,116,121,112,101,111,102,32,97,46,102,114,111,109,38,38,40,97,46,102,114,111,109,61,43,97,46,102,114,111,109,41,59,34,115,116,114,105,110,103,34,61,61,61,116,121,112,101,111,102,32,97,46,116,111,38,38,40,97,46,116,111,61,43,97,46,116,111,41,59,10,34,115,116,114,105,110,103,34,61,61,61,116,121,112,101,111,102,32,97,46,115,116,101,112,38,38,40,97,46,115,116,101,112,61,43,97,46,115,116,101,112,41,59,34,115,116,114,105,110,103,34,61,61,61,116,121,112,101,111,102,32,97,46,102,114,111,109,95,109,105,110,38,38,40,97,46,102,114,111,109,95,109,105,110,61,43,97,46,102,114,111,109,95,109,105,110,41,59,34,115,116,114,105,110,103,34,61,61,61,116,121,112,101,111,102,32,97,46,102,114,111,109,95,109,97,120,38,38,40,97,46,102,114,111,109,95,109,97,120,61,43,97,46,102,114,111,109,95,109,97,120,41,59,34,115,116,114,105,110,103,34,61,61,61,116,121,112,101,111,102,32,97,46,116,111,95,109,105,110,38,38,40,97,46,116,111,95,109,105,110,61,43,97,46,116,111,95,109,105,110,41,59,34,115,116,114,105,110,103,34,61,61,61,116,121,112,101,111,102,32,97,46,116,111,95,109,97,120,38,38,40,97,46,116,111,95,109,97,120,61,43,97,46,116,111,95,109,97,120,41,59,34,115,116,114,105,110,103,34,61,61,61,116,121,112,101,111,102,32,97,46,103,114,105,100,95,110,117,109,38,38,40,97,46,103,114,105,100,95,110,117,109,61,43,97,46,103,114,105,100,95,110,117,109,41,59,97,46,109,97,120,60,97,46,109,105,110,38,38,40,97,46,109,97,120,61,97,46,109,105,110,41,59,105,102,40,99,41,102,111,114,40,97,46,112,95,118,97,108,117,101,115,61,91,93,44,97,46,109,105,110,61,48,44,97,46,109,97,120,61,99,45,49,44,97,46,115,116,101,112,61,49,44,97,46,103,114,105,100,95,110,117,109,61,97,46,109,97,120,44,97,46,103,114,105,100,95,115,110,97,112,61,33,48,44,101,61,48,59,101,60,99,59,101,43,43,41,123,118,97,114,32,103,61,43,100,91,101,93,59,105,115,78,97,78,40,103,41,63,103,61,100,91,101,93,58,40,100,91,101,93,61,103,44,103,61,116,104,105,115,46,95,112,114,101,116,116,105,102,121,40,103,41,41,59,97,46,112,95,118,97,108,117,101,115,46,112,117,115,104,40,103,41,125,105,102,40,34,110,117,109,98,101,114,34,33,61,61,10,116,121,112,101,111,102,32,97,46,102,114,111,109,124,124,105,115,78,97,78,40,97,46,102,114,111,109,41,41,97,46,102,114,111,109,61,97,46,109,105,110,59,105,102,40,34,110,117,109,98,101,114,34,33,61,61,116,121,112,101,111,102,32,97,46,116,111,124,124,105,115,78,97,78,40,97,46,116,111,41,41,97,46,116,111,61,97,46,109,97,120,59,34,115,105,110,103,108,101,34,61,61,61,97,46,116,121,112,101,63,40,97,46,102,114,111,109,60,97,46,109,105,110,38,38,40,97,46,102,114,111,109,61,97,46,109,105,110,41,44,97,46,102,114,111,109,62,97,46,109,97,120,38,38,40,97,46,102,114,111,109,61,97,46,109,97,120,41,41,58,40,97,46,102,114,111,109,60,97,46,109,105,110,38,38,40,97,46,102,114,111,109,61,97,46,109,105,110,41,44,97,46,102,114,111,109,62,97,46,109,97,120,38,38,40,97,46,102,114,111,109,61,97,46,109,97,120,41,44,97,46,116,111,60,97,46,109,105,110,38,38,40,97,46,116,111,61,97,46,109,105,110,41,44,97,46,116,111,62,97,46,109,97,120,38,38,40,97,46,116,111,61,97,46,109,97,120,41,44,116,104,105,115,46,117,112,100,97,116,101,95,99,104,101,99,107,46,102,114,111,109,38,38,40,116,104,105,115,46,117,112,100,97,116,101,95,99,104,101,99,107,46,102,114,111,109,33,61,61,97,46,102,114,111,109,38,38,97,46,102,114,111,109,62,97,46,116,111,38,38,40,97,46,102,114,111,109,61,97,46,116,111,41,44,116,104,105,115,46,117,112,100,97,116,101,95,99,104,101,99,107,46,116,111,33,61,61,97,46,116,111,38,38,97,46,116,111,60,97,46,102,114,111,109,38,38,40,97,46,116,111,61,97,46,102,114,111,109,41,41,44,97,46,102,114,111,109,62,97,46,116,111,38,38,40,97,46,102,114,111,109,61,97,46,116,111,41,44,97,46,116,111,60,97,46,102,114,111,109,38,38,40,97,46,116,111,61,97,46,102,114,111,109,41,41,59,105,102,40,34,110,117,109,98,101,114,34,33,61,61,116,121,112,101,111,102,32,97,46,115,116,101,112,124,124,10,105,115,78,97,78,40,97,46,115,116,101,112,41,124,124,33,97,46,115,116,101,112,124,124,48,62,97,46,115,116,101,112,41,97,46,115,116,101,112,61,49,59,34,110,117,109,98,101,114,34,61,61,61,116,121,112,101,111,102,32,97,46,102,114,111,109,95,109,105,110,38,38,97,46,102,114,111,109,60,97,46,102,114,111,109,95,109,105,110,38,38,40,97,46,102,114,111,109,61,97,46,102,114,111,109,95,109,105,110,41,59,34,110,117,109,98,101,114,34,61,61,61,116,121,112,101,111,102,32,97,46,102,114,111,109,95,109,97,120,38,38,97,46,102,114,111,109,62,97,46,102,114,111,109,95,109,97,120,38,38,40,97,46,102,114,111,109,61,97,46,102,114,111,109,95,109,97,120,41,59,34,110,117,109,98,101,114,34,61,61,61,116,121,112,101,111,102,32,97,46,116,111,95,109,105,110,38,38,97,46,116,111,60,97,46,116,111,95,109,105,110,38,38,40,97,46,116,111,61,97,46,116,111,95,109,105,110,41,59,34,110,117,109,98,101,114,34,61,61,61,116,121,112,101,111,102,32,97,46,116,111,95,109,97,120,38,38,97,46,102,114,111,109,62,97,46,116,111,95,109,97,120,38,38,40,97,46,116,111,61,97,46,116,111,95,109,97,120,41,59,105,102,40,98,41,123,98,46,109,105,110,33,61,61,97,46,109,105,110,38,38,40,98,46,109,105,110,61,97,46,109,105,110,41,59,98,46,109,97,120,33,61,61,97,46,109,97,120,38,38,40,98,46,109,97,120,61,97,46,109,97,120,41,59,105,102,40,98,46,102,114,111,109,60,98,46,109,105,110,124,124,98,46,102,114,111,109,62,98,46,109,97,120,41,98,46,102,114,111,109,61,97,46,102,114,111,109,59,105,102,40,98,46,116,111,60,98,46,109,105,110,124,124,98,46,116,111,62,98,46,109,97,120,41,98,46,116,111,61,97,46,116,111,125,105,102,40,34,110,117,109,98,101,114,34,33,61,61,116,121,112,101,111,102,32,97,46,109,105,110,95,105,110,116,101,114,118,97,108,124,124,105,115,78,97,78,40,97,46,109,105,110,95,105,110,116,101,114,118,97,108,41,124,124,10,33,97,46,109,105,110,95,105,110,116,101,114,118,97,108,124,124,48,62,97,46,109,105,110,95,105,110,116,101,114,118,97,108,41,97,46,109,105,110,95,105,110,116,101,114,118,97,108,61,48,59,105,102,40,34,110,117,109,98,101,114,34,33,61,61,116,121,112,101,111,102,32,97,46,109,97,120,95,105,110,116,101,114,118,97,108,124,124,105,115,78,97,78,40,97,46,109,97,120,95,105,110,116,101,114,118,97,108,41,124,124,33,97,46,109,97,120,95,105,110,116,101,114,118,97,108,124,124,48,62,97,46,109,97,120,95,105,110,116,101,114,118,97,108,41,97,46,109,97,120,95,105,110,116,101,114,118,97,108,61,48,59,97,46,109,105,110,95,105,110,116,101,114,118,97,108,38,38,97,46,109,105,110,95,105,110,116,101,114,118,97,108,62,97,46,109,97,120,45,97,46,109,105,110,38,38,40,97,46,109,105,110,95,105,110,116,101,114,118,97,108,61,97,46,109,97,120,45,97,46,109,105,110,41,59,97,46,109,97,120,95,105,110,116,101,114,118,97,108,38,38,97,46,109,97,120,95,105,110,116,101,114,118,97,108,62,97,46,109,97,120,45,97,46,109,105,110,38,38,40,97,46,109,97,120,95,105,110,116,101,114,118,97,108,61,97,46,109,97,120,45,97,46,109,105,110,41,125,44,100,101,99,111,114,97,116,101,58,102,117,110,99,116,105,111,110,40,97,44,98,41,123,118,97,114,32,100,61,34,34,44,99,61,116,104,105,115,46,111,112,116,105,111,110,115,59,99,46,112,114,101,102,105,120,38,38,40,100,43,61,99,46,112,114,101,102,105,120,41,59,100,43,61,97,59,99,46,109,97,120,95,112,111,115,116,102,105,120,38,38,40,99,46,118,97,108,117,101,115,46,108,101,110,103,116,104,38,38,97,61,61,61,99,46,112,95,118,97,108,117,101,115,91,99,46,109,97,120,93,63,40,100,43,61,99,46,109,97,120,95,112,111,115,116,102,105,120,44,99,46,112,111,115,116,102,105,120,38,38,40,100,43,61,34,32,34,41,41,58,98,61,61,61,99,46,109,97,120,38,38,40,100,43,61,99,46,109,97,120,95,112,111,115,116,102,105,120,44,10,99,46,112,111,115,116,102,105,120,38,38,40,100,43,61,34,32,34,41,41,41,59,99,46,112,111,115,116,102,105,120,38,38,40,100,43,61,99,46,112,111,115,116,102,105,120,41,59,114,101,116,117,114,110,32,100,125,44,117,112,100,97,116,101,70,114,111,109,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,61,116,104,105,115,46,111,112,116,105,111,110,115,46,102,114,111,109,59,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,95,112,101,114,99,101,110,116,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,80,101,114,99,101,110,116,40,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,41,59,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,95,112,114,101,116,116,121,61,116,104,105,115,46,95,112,114,101,116,116,105,102,121,40,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,41,59,116,104,105,115,46,111,112,116,105,111,110,115,46,118,97,108,117,101,115,38,38,40,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,95,118,97,108,117,101,61,116,104,105,115,46,111,112,116,105,111,110,115,46,118,97,108,117,101,115,91,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,93,41,125,44,117,112,100,97,116,101,84,111,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,114,101,115,117,108,116,46,116,111,61,116,104,105,115,46,111,112,116,105,111,110,115,46,116,111,59,116,104,105,115,46,114,101,115,117,108,116,46,116,111,95,112,101,114,99,101,110,116,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,80,101,114,99,101,110,116,40,116,104,105,115,46,114,101,115,117,108,116,46,116,111,41,59,116,104,105,115,46,114,101,115,117,108,116,46,116,111,95,112,114,101,116,116,121,61,116,104,105,115,46,95,112,114,101,116,116,105,102,121,40,116,104,105,115,46,114,101,115,117,108,116,46,116,111,41,59,116,104,105,115,46,111,112,116,105,111,110,115,46,118,97,108,117,101,115,38,38,10,40,116,104,105,115,46,114,101,115,117,108,116,46,116,111,95,118,97,108,117,101,61,116,104,105,115,46,111,112,116,105,111,110,115,46,118,97,108,117,101,115,91,116,104,105,115,46,114,101,115,117,108,116,46,116,111,93,41,125,44,117,112,100,97,116,101,82,101,115,117,108,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,114,101,115,117,108,116,46,109,105,110,61,116,104,105,115,46,111,112,116,105,111,110,115,46,109,105,110,59,116,104,105,115,46,114,101,115,117,108,116,46,109,97,120,61,116,104,105,115,46,111,112,116,105,111,110,115,46,109,97,120,59,116,104,105,115,46,117,112,100,97,116,101,70,114,111,109,40,41,59,116,104,105,115,46,117,112,100,97,116,101,84,111,40,41,125,44,97,112,112,101,110,100,71,114,105,100,58,102,117,110,99,116,105,111,110,40,41,123,105,102,40,116,104,105,115,46,111,112,116,105,111,110,115,46,103,114,105,100,41,123,118,97,114,32,97,61,116,104,105,115,46,111,112,116,105,111,110,115,44,98,59,118,97,114,32,100,61,97,46,109,97,120,45,97,46,109,105,110,59,118,97,114,32,99,61,97,46,103,114,105,100,95,110,117,109,44,101,61,52,44,103,61,34,34,59,116,104,105,115,46,99,97,108,99,71,114,105,100,77,97,114,103,105,110,40,41,59,105,102,40,97,46,103,114,105,100,95,115,110,97,112,41,105,102,40,53,48,60,100,41,123,99,61,53,48,47,97,46,115,116,101,112,59,118,97,114,32,102,61,116,104,105,115,46,116,111,70,105,120,101,100,40,97,46,115,116,101,112,47,46,53,41,125,101,108,115,101,32,99,61,100,47,97,46,115,116,101,112,44,102,61,116,104,105,115,46,116,111,70,105,120,101,100,40,97,46,115,116,101,112,47,40,100,47,49,48,48,41,41,59,101,108,115,101,32,102,61,116,104,105,115,46,116,111,70,105,120,101,100,40,49,48,48,47,99,41,59,52,60,99,38,38,40,101,61,51,41,59,55,60,99,38,38,40,101,61,50,41,59,49,52,60,99,38,38,40,101,61,49,41,59,50,56,60,99,38,38,40,101,61,48,41,59,10,102,111,114,40,100,61,48,59,100,60,99,43,49,59,100,43,43,41,123,118,97,114,32,107,61,101,59,118,97,114,32,104,61,116,104,105,115,46,116,111,70,105,120,101,100,40,102,42,100,41,59,49,48,48,60,104,38,38,40,104,61,49,48,48,41,59,116,104,105,115,46,99,111,111,114,100,115,46,98,105,103,91,100,93,61,104,59,118,97,114,32,109,61,40,104,45,102,42,40,100,45,49,41,41,47,40,107,43,49,41,59,102,111,114,40,98,61,49,59,98,60,61,107,38,38,48,33,61,61,104,59,98,43,43,41,123,118,97,114,32,110,61,116,104,105,115,46,116,111,70,105,120,101,100,40,104,45,109,42,98,41,59,103,43,61,39,60,115,112,97,110,32,99,108,97,115,115,61,34,105,114,115,45,103,114,105,100,45,112,111,108,32,115,109,97,108,108,34,32,115,116,121,108,101,61,34,108,101,102,116,58,32,39,43,110,43,39,37,34,62,60,47,115,112,97,110,62,39,125,103,43,61,39,60,115,112,97,110,32,99,108,97,115,115,61,34,105,114,115,45,103,114,105,100,45,112,111,108,34,32,115,116,121,108,101,61,34,108,101,102,116,58,32,39,43,104,43,39,37,34,62,60,47,115,112,97,110,62,39,59,98,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,86,97,108,117,101,40,104,41,59,98,61,97,46,118,97,108,117,101,115,46,108,101,110,103,116,104,63,97,46,112,95,118,97,108,117,101,115,91,98,93,58,116,104,105,115,46,95,112,114,101,116,116,105,102,121,40,98,41,59,103,43,61,39,60,115,112,97,110,32,99,108,97,115,115,61,34,105,114,115,45,103,114,105,100,45,116,101,120,116,32,106,115,45,103,114,105,100,45,116,101,120,116,45,39,43,100,43,39,34,32,115,116,121,108,101,61,34,108,101,102,116,58,32,39,43,104,43,39,37,34,62,39,43,98,43,34,60,47,115,112,97,110,62,34,125,116,104,105,115,46,99,111,111,114,100,115,46,98,105,103,95,110,117,109,61,77,97,116,104,46,99,101,105,108,40,99,43,49,41,59,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,97,100,100,67,108,97,115,115,40,34,105,114,115,45,119,105,116,104,45,103,114,105,100,34,41,59,10,116,104,105,115,46,36,99,97,99,104,101,46,103,114,105,100,46,104,116,109,108,40,103,41,59,116,104,105,115,46,99,97,99,104,101,71,114,105,100,76,97,98,101,108,115,40,41,125,125,44,99,97,99,104,101,71,114,105,100,76,97,98,101,108,115,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,97,44,98,61,116,104,105,115,46,99,111,111,114,100,115,46,98,105,103,95,110,117,109,59,102,111,114,40,97,61,48,59,97,60,98,59,97,43,43,41,123,118,97,114,32,100,61,116,104,105,115,46,36,99,97,99,104,101,46,103,114,105,100,46,102,105,110,100,40,34,46,106,115,45,103,114,105,100,45,116,101,120,116,45,34,43,97,41,59,116,104,105,115,46,36,99,97,99,104,101,46,103,114,105,100,95,108,97,98,101,108,115,46,112,117,115,104,40,100,41,125,116,104,105,115,46,99,97,108,99,71,114,105,100,76,97,98,101,108,115,40,41,125,44,99,97,108,99,71,114,105,100,76,97,98,101,108,115,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,97,59,118,97,114,32,98,61,91,93,59,118,97,114,32,100,61,91,93,44,99,61,116,104,105,115,46,99,111,111,114,100,115,46,98,105,103,95,110,117,109,59,102,111,114,40,97,61,48,59,97,60,99,59,97,43,43,41,116,104,105,115,46,99,111,111,114,100,115,46,98,105,103,95,119,91,97,93,61,116,104,105,115,46,36,99,97,99,104,101,46,103,114,105,100,95,108,97,98,101,108,115,91,97,93,46,111,117,116,101,114,87,105,100,116,104,40,33,49,41,44,116,104,105,115,46,99,111,111,114,100,115,46,98,105,103,95,112,91,97,93,61,116,104,105,115,46,116,111,70,105,120,101,100,40,116,104,105,115,46,99,111,111,114,100,115,46,98,105,103,95,119,91,97,93,47,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,42,49,48,48,41,44,116,104,105,115,46,99,111,111,114,100,115,46,98,105,103,95,120,91,97,93,61,116,104,105,115,46,116,111,70,105,120,101,100,40,116,104,105,115,46,99,111,111,114,100,115,46,98,105,103,95,112,91,97,93,47,10,50,41,44,98,91,97,93,61,116,104,105,115,46,116,111,70,105,120,101,100,40,116,104,105,115,46,99,111,111,114,100,115,46,98,105,103,91,97,93,45,116,104,105,115,46,99,111,111,114,100,115,46,98,105,103,95,120,91,97,93,41,44,100,91,97,93,61,116,104,105,115,46,116,111,70,105,120,101,100,40,98,91,97,93,43,116,104,105,115,46,99,111,111,114,100,115,46,98,105,103,95,112,91,97,93,41,59,116,104,105,115,46,111,112,116,105,111,110,115,46,102,111,114,99,101,95,101,100,103,101,115,38,38,40,98,91,48,93,60,45,116,104,105,115,46,99,111,111,114,100,115,46,103,114,105,100,95,103,97,112,38,38,40,98,91,48,93,61,45,116,104,105,115,46,99,111,111,114,100,115,46,103,114,105,100,95,103,97,112,44,100,91,48,93,61,116,104,105,115,46,116,111,70,105,120,101,100,40,98,91,48,93,43,116,104,105,115,46,99,111,111,114,100,115,46,98,105,103,95,112,91,48,93,41,44,116,104,105,115,46,99,111,111,114,100,115,46,98,105,103,95,120,91,48,93,61,116,104,105,115,46,99,111,111,114,100,115,46,103,114,105,100,95,103,97,112,41,44,100,91,99,45,49,93,62,49,48,48,43,116,104,105,115,46,99,111,111,114,100,115,46,103,114,105,100,95,103,97,112,38,38,40,100,91,99,45,49,93,61,49,48,48,43,116,104,105,115,46,99,111,111,114,100,115,46,103,114,105,100,95,103,97,112,44,98,91,99,45,49,93,61,116,104,105,115,46,116,111,70,105,120,101,100,40,100,91,99,45,49,93,45,116,104,105,115,46,99,111,111,114,100,115,46,98,105,103,95,112,91,99,45,49,93,41,44,116,104,105,115,46,99,111,111,114,100,115,46,98,105,103,95,120,91,99,45,49,93,61,116,104,105,115,46,116,111,70,105,120,101,100,40,116,104,105,115,46,99,111,111,114,100,115,46,98,105,103,95,112,91,99,45,49,93,45,116,104,105,115,46,99,111,111,114,100,115,46,103,114,105,100,95,103,97,112,41,41,41,59,116,104,105,115,46,99,97,108,99,71,114,105,100,67,111,108,108,105,115,105,111,110,40,50,44,10,98,44,100,41,59,116,104,105,115,46,99,97,108,99,71,114,105,100,67,111,108,108,105,115,105,111,110,40,52,44,98,44,100,41,59,102,111,114,40,97,61,48,59,97,60,99,59,97,43,43,41,98,61,116,104,105,115,46,36,99,97,99,104,101,46,103,114,105,100,95,108,97,98,101,108,115,91,97,93,91,48,93,44,116,104,105,115,46,99,111,111,114,100,115,46,98,105,103,95,120,91,97,93,33,61,61,78,117,109,98,101,114,46,80,79,83,73,84,73,86,69,95,73,78,70,73,78,73,84,89,38,38,40,98,46,115,116,121,108,101,46,109,97,114,103,105,110,76,101,102,116,61,45,116,104,105,115,46,99,111,111,114,100,115,46,98,105,103,95,120,91,97,93,43,34,37,34,41,125,44,99,97,108,99,71,114,105,100,67,111,108,108,105,115,105,111,110,58,102,117,110,99,116,105,111,110,40,97,44,98,44,100,41,123,118,97,114,32,99,44,101,61,116,104,105,115,46,99,111,111,114,100,115,46,98,105,103,95,110,117,109,59,102,111,114,40,99,61,48,59,99,60,101,59,99,43,61,97,41,123,118,97,114,32,103,61,99,43,97,47,50,59,105,102,40,103,62,61,101,41,98,114,101,97,107,59,118,97,114,32,102,61,116,104,105,115,46,36,99,97,99,104,101,46,103,114,105,100,95,108,97,98,101,108,115,91,103,93,91,48,93,59,102,46,115,116,121,108,101,46,118,105,115,105,98,105,108,105,116,121,61,100,91,99,93,60,61,98,91,103,93,63,34,118,105,115,105,98,108,101,34,58,34,104,105,100,100,101,110,34,125,125,44,99,97,108,99,71,114,105,100,77,97,114,103,105,110,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,111,112,116,105,111,110,115,46,103,114,105,100,95,109,97,114,103,105,110,38,38,40,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,61,116,104,105,115,46,36,99,97,99,104,101,46,114,115,46,111,117,116,101,114,87,105,100,116,104,40,33,49,41,44,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,38,38,40,116,104,105,115,46,99,111,111,114,100,115,46,119,95,104,97,110,100,108,101,61,10,34,115,105,110,103,108,101,34,61,61,61,116,104,105,115,46,111,112,116,105,111,110,115,46,116,121,112,101,63,116,104,105,115,46,36,99,97,99,104,101,46,115,95,115,105,110,103,108,101,46,111,117,116,101,114,87,105,100,116,104,40,33,49,41,58,116,104,105,115,46,36,99,97,99,104,101,46,115,95,102,114,111,109,46,111,117,116,101,114,87,105,100,116,104,40,33,49,41,44,116,104,105,115,46,99,111,111,114,100,115,46,112,95,104,97,110,100,108,101,61,116,104,105,115,46,116,111,70,105,120,101,100,40,116,104,105,115,46,99,111,111,114,100,115,46,119,95,104,97,110,100,108,101,47,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,42,49,48,48,41,44,116,104,105,115,46,99,111,111,114,100,115,46,103,114,105,100,95,103,97,112,61,116,104,105,115,46,116,111,70,105,120,101,100,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,104,97,110,100,108,101,47,50,45,46,49,41,44,116,104,105,115,46,36,99,97,99,104,101,46,103,114,105,100,91,48,93,46,115,116,121,108,101,46,119,105,100,116,104,61,116,104,105,115,46,116,111,70,105,120,101,100,40,49,48,48,45,116,104,105,115,46,99,111,111,114,100,115,46,112,95,104,97,110,100,108,101,41,43,34,37,34,44,116,104,105,115,46,36,99,97,99,104,101,46,103,114,105,100,91,48,93,46,115,116,121,108,101,46,108,101,102,116,61,116,104,105,115,46,99,111,111,114,100,115,46,103,114,105,100,95,103,97,112,43,34,37,34,41,41,125,44,117,112,100,97,116,101,58,102,117,110,99,116,105,111,110,40,97,41,123,116,104,105,115,46,105,110,112,117,116,38,38,40,116,104,105,115,46,105,115,95,117,112,100,97,116,101,61,33,48,44,116,104,105,115,46,111,112,116,105,111,110,115,46,102,114,111,109,61,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,44,116,104,105,115,46,111,112,116,105,111,110,115,46,116,111,61,116,104,105,115,46,114,101,115,117,108,116,46,116,111,44,116,104,105,115,46,117,112,100,97,116,101,95,99,104,101,99,107,46,102,114,111,109,61,10,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,44,116,104,105,115,46,117,112,100,97,116,101,95,99,104,101,99,107,46,116,111,61,116,104,105,115,46,114,101,115,117,108,116,46,116,111,44,116,104,105,115,46,111,112,116,105,111,110,115,61,102,46,101,120,116,101,110,100,40,116,104,105,115,46,111,112,116,105,111,110,115,44,97,41,44,116,104,105,115,46,118,97,108,105,100,97,116,101,40,41,44,116,104,105,115,46,117,112,100,97,116,101,82,101,115,117,108,116,40,97,41,44,116,104,105,115,46,116,111,103,103,108,101,73,110,112,117,116,40,41,44,116,104,105,115,46,114,101,109,111,118,101,40,41,44,116,104,105,115,46,105,110,105,116,40,33,48,41,41,125,44,114,101,115,101,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,105,110,112,117,116,38,38,40,116,104,105,115,46,117,112,100,97,116,101,82,101,115,117,108,116,40,41,44,116,104,105,115,46,117,112,100,97,116,101,40,41,41,125,44,100,101,115,116,114,111,121,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,105,110,112,117,116,38,38,40,116,104,105,115,46,116,111,103,103,108,101,73,110,112,117,116,40,41,44,116,104,105,115,46,36,99,97,99,104,101,46,105,110,112,117,116,46,112,114,111,112,40,34,114,101,97,100,111,110,108,121,34,44,33,49,41,44,102,46,100,97,116,97,40,116,104,105,115,46,105,110,112,117,116,44,34,105,111,110,82,97,110,103,101,83,108,105,100,101,114,34,44,110,117,108,108,41,44,116,104,105,115,46,114,101,109,111,118,101,40,41,44,116,104,105,115,46,111,112,116,105,111,110,115,61,116,104,105,115,46,105,110,112,117,116,61,110,117,108,108,41,125,125,59,102,46,102,110,46,105,111,110,82,97,110,103,101,83,108,105,100,101,114,61,102,117,110,99,116,105,111,110,40,97,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,102,46,100,97,116,97,40,116,104,105,115,44,34,105,111,110,82,97,110,103,101,83,108,105,100,101,114,34,41,124,124,10,102,46,100,97,116,97,40,116,104,105,115,44,34,105,111,110,82,97,110,103,101,83,108,105,100,101,114,34,44,110,101,119,32,113,40,116,104,105,115,44,97,44,116,43,43,41,41,125,41,125,59,40,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,118,97,114,32,97,61,48,44,98,61,91,34,109,115,34,44,34,109,111,122,34,44,34,119,101,98,107,105,116,34,44,34,111,34,93,44,100,61,48,59,100,60,98,46,108,101,110,103,116,104,38,38,33,107,46,114,101,113,117,101,115,116,65,110,105,109,97,116,105,111,110,70,114,97,109,101,59,43,43,100,41,107,46,114,101,113,117,101,115,116,65,110,105,109,97,116,105,111,110,70,114,97,109,101,61,107,91,98,91,100,93,43,34,82,101,113,117,101,115,116,65,110,105,109,97,116,105,111,110,70,114,97,109,101,34,93,44,107,46,99,97,110,99,101,108,65,110,105,109,97,116,105,111,110,70,114,97,109,101,61,107,91,98,91,100,93,43,34,67,97,110,99,101,108,65,110,105,109,97,116,105,111,110,70,114,97,109,101,34,93,124,124,107,91,98,91,100,93,43,34,67,97,110,99,101,108,82,101,113,117,101,115,116,65,110,105,109,97,116,105,111,110,70,114,97,109,101,34,93,59,107,46,114,101,113,117,101,115,116,65,110,105,109,97,116,105,111,110,70,114,97,109,101,124,124,40,107,46,114,101,113,117,101,115,116,65,110,105,109,97,116,105,111,110,70,114,97,109,101,61,102,117,110,99,116,105,111,110,40,98,44,100,41,123,118,97,114,32,99,61,40,110,101,119,32,68,97,116,101,41,46,103,101,116,84,105,109,101,40,41,44,101,61,77,97,116,104,46,109,97,120,40,48,44,49,54,45,40,99,45,97,41,41,44,102,61,107,46,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,40,41,123,98,40,99,43,101,41,125,44,101,41,59,97,61,99,43,101,59,114,101,116,117,114,110,32,102,125,41,59,107,46,99,97,110,99,101,108,65,110,105,109,97,116,105,111,110,70,114,97,109,101,124,124,40,107,46,99,97,110,99,101,108,65,110,105,109,97,116,105,111,110,70,114,97,109,101,61,10,102,117,110,99,116,105,111,110,40,97,41,123,99,108,101,97,114,84,105,109,101,111,117,116,40,97,41,125,41,125,41,40,41,125,41,59,10,10,47,42,33,32,76,105,116,121,32,45,32,118,51,46,48,46,48,45,100,101,118,32,45,32,50,48,49,57,45,48,56,45,48,55,10,42,32,104,116,116,112,58,47,47,115,111,114,103,97,108,108,97,46,99,111,109,47,108,105,116,121,47,10,42,32,67,111,112,121,114,105,103,104,116,32,40,99,41,32,50,48,49,53,45,50,48,49,57,32,74,97,110,32,83,111,114,103,97,108,108,97,59,32,76,105,99,101,110,115,101,100,32,77,73,84,32,42,47,10,10,33,102,117,110,99,116,105,111,110,40,97,44,98,41,123,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,100,101,102,105,110,101,38,38,100,101,102,105,110,101,46,97,109,100,63,100,101,102,105,110,101,40,91,34,106,113,117,101,114,121,34,93,44,102,117,110,99,116,105,111,110,40,99,41,123,114,101,116,117,114,110,32,98,40,97,44,99,41,125,41,58,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,109,111,100,117,108,101,38,38,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,109,111,100,117,108,101,46,101,120,112,111,114,116,115,63,109,111,100,117,108,101,46,101,120,112,111,114,116,115,61,98,40,97,44,114,101,113,117,105,114,101,40,34,106,113,117,101,114,121,34,41,41,58,97,46,108,105,116,121,61,98,40,97,44,97,46,106,81,117,101,114,121,124,124,97,46,90,101,112,116,111,41,125,40,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,119,105,110,100,111,119,63,119,105,110,100,111,119,58,116,104,105,115,44,102,117,110,99,116,105,111,110,40,97,44,98,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,102,117,110,99,116,105,111,110,32,99,40,97,41,123,118,97,114,32,98,61,121,40,41,59,114,101,116,117,114,110,32,71,38,38,97,46,108,101,110,103,116,104,63,40,97,46,111,110,101,40,71,44,98,46,114,101,115,111,108,118,101,41,44,115,101,116,84,105,109,101,111,117,116,40,98,46,114,101,115,111,108,118,101,44,53,48,48,41,41,58,98,46,114,101,115,111,108,118,101,40,41,44,98,46,112,114,111,109,105,115,101,40,41,125,102,117,110,99,116,105,111,110,32,100,40,97,44,99,44,100,41,123,105,102,40,49,61,61,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,114,101,116,117,114,110,32,98,46,101,120,116,101,110,100,40,123,125,44,97,41,59,105,102,40,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,99,41,123,105,102,40,118,111,105,100,32,48,61,61,61,100,41,114,101,116,117,114,110,32,118,111,105,100,32,48,61,61,61,97,91,99,93,63,110,117,108,108,58,97,91,99,93,59,97,91,99,93,61,100,125,101,108,115,101,32,98,46,101,120,116,101,110,100,40,97,44,99,41,59,114,101,116,117,114,110,32,116,104,105,115,125,102,117,110,99,116,105,111,110,32,101,40,97,41,123,118,97,114,32,98,61,97,46,105,110,100,101,120,79,102,40,34,63,34,41,59,98,62,45,49,38,38,40,97,61,97,46,115,117,98,115,116,114,40,98,43,49,41,41,59,102,111,114,40,118,97,114,32,99,44,100,61,100,101,99,111,100,101,85,82,73,40,97,46,115,112,108,105,116,40,34,35,34,41,91,48,93,41,46,115,112,108,105,116,40,34,38,34,41,44,101,61,123,125,44,102,61,48,44,103,61,100,46,108,101,110,103,116,104,59,102,60,103,59,102,43,43,41,100,91,102,93,38,38,40,99,61,100,91,102,93,46,115,112,108,105,116,40,34,61,34,41,44,101,91,99,91,48,93,93,61,99,91,49,93,41,59,114,101,116,117,114,110,32,101,125,102,117,110,99,116,105,111,110,32,102,40,97,44,99,41,123,105,102,40,33,99,41,114,101,116,117,114,110,32,97,59,105,102,40,34,115,116,114,105,110,103,34,61,61,61,98,46,116,121,112,101,40,99,41,38,38,40,99,61,101,40,99,41,41,44,97,46,105,110,100,101,120,79,102,40,34,63,34,41,62,45,49,41,123,118,97,114,32,100,61,97,46,115,112,108,105,116,40,34,63,34,41,59,97,61,100,46,115,104,105,102,116,40,41,44,99,61,98,46,101,120,116,101,110,100,40,123,125,44,101,40,100,91,48,93,41,44,99,41,125,114,101,116,117,114,110,32,97,43,34,63,34,43,98,46,112,97,114,97,109,40,99,41,125,102,117,110,99,116,105,111,110,32,103,40,97,44,98,41,123,118,97,114,32,99,61,97,46,105,110,100,101,120,79,102,40,34,35,34,41,59,114,101,116,117,114,110,45,49,61,61,61,99,63,98,58,40,99,62,48,38,38,40,97,61,97,46,115,117,98,115,116,114,40,99,41,41,44,98,43,97,41,125,102,117,110,99,116,105,111,110,32,104,40,97,44,98,44,99,44,100,41,123,114,101,116,117,114,110,32,98,38,38,98,46,101,108,101,109,101,110,116,40,41,46,97,100,100,67,108,97,115,115,40,34,108,105,116,121,45,105,102,114,97,109,101,34,41,44,99,38,38,40,97,61,102,40,97,44,99,41,41,44,100,38,38,40,97,61,103,40,100,44,97,41,41,44,39,60,100,105,118,32,99,108,97,115,115,61,34,108,105,116,121,45,105,102,114,97,109,101,45,99,111,110,116,97,105,110,101,114,34,62,60,105,102,114,97,109,101,32,102,114,97,109,101,98,111,114,100,101,114,61,34,48,34,32,97,108,108,111,119,102,117,108,108,115,99,114,101,101,110,32,97,108,108,111,119,61,34,102,117,108,108,115,99,114,101,101,110,34,32,115,114,99,61,34,39,43,97,43,39,34,47,62,60,47,100,105,118,62,39,125,102,117,110,99,116,105,111,110,32,105,40,97,41,123,114,101,116,117,114,110,32,98,40,39,60,115,112,97,110,32,99,108,97,115,115,61,34,108,105,116,121,45,101,114,114,111,114,34,47,62,39,41,46,97,112,112,101,110,100,40,97,41,125,102,117,110,99,116,105,111,110,32,106,40,97,44,99,41,123,118,97,114,32,100,61,99,46,111,112,101,110,101,114,40,41,38,38,99,46,111,112,101,110,101,114,40,41,46,100,97,116,97,40,34,108,105,116,121,45,100,101,115,99,34,41,124,124,34,105,109,103,34,44,101,61,98,40,39,60,105,109,103,32,115,114,99,61,34,39,43,97,43,39,34,32,97,108,116,61,34,39,43,100,43,39,34,47,62,39,41,44,102,61,121,40,41,44,103,61,102,117,110,99,116,105,111,110,40,41,123,102,46,114,101,106,101,99,116,40,105,40,34,70,97,105,108,101,100,32,108,111,97,100,105,110,103,32,105,109,97,103,101,34,41,41,125,59,114,101,116,117,114,110,32,101,46,111,110,40,34,108,111,97,100,34,44,102,117,110,99,116,105,111,110,40,41,123,105,102,40,48,61,61,61,116,104,105,115,46,110,97,116,117,114,97,108,87,105,100,116,104,41,114,101,116,117,114,110,32,103,40,41,59,102,46,114,101,115,111,108,118,101,40,101,41,125,41,46,111,110,40,34,101,114,114,111,114,34,44,103,41,44,102,46,112,114,111,109,105,115,101,40,41,125,102,117,110,99,116,105,111,110,32,107,40,97,44,99,41,123,118,97,114,32,100,44,101,44,102,59,116,114,121,123,100,61,98,40,97,41,125,99,97,116,99,104,40,97,41,123,114,101,116,117,114,110,33,49,125,114,101,116,117,114,110,33,33,100,46,108,101,110,103,116,104,38,38,40,101,61,98,40,39,60,105,32,115,116,121,108,101,61,34,100,105,115,112,108,97,121,58,110,111,110,101,32,33,105,109,112,111,114,116,97,110,116,34,47,62,39,41,44,102,61,100,46,104,97,115,67,108,97,115,115,40,34,108,105,116,121,45,104,105,100,101,34,41,44,99,46,101,108,101,109,101,110,116,40,41,46,111,110,101,40,34,108,105,116,121,58,114,101,109,111,118,101,34,44,102,117,110,99,116,105,111,110,40,41,123,101,46,98,101,102,111,114,101,40,100,41,46,114,101,109,111,118,101,40,41,44,102,38,38,33,100,46,99,108,111,115,101,115,116,40,34,46,108,105,116,121,45,99,111,110,116,101,110,116,34,41,46,108,101,110,103,116,104,38,38,100,46,97,100,100,67,108,97,115,115,40,34,108,105,116,121,45,104,105,100,101,34,41,125,41,44,100,46,114,101,109,111,118,101,67,108,97,115,115,40,34,108,105,116,121,45,104,105,100,101,34,41,46,97,102,116,101,114,40,101,41,41,125,102,117,110,99,116,105,111,110,32,108,40,97,44,98,41,123,114,101,116,117,114,110,32,104,40,97,44,98,41,125,102,117,110,99,116,105,111,110,32,109,40,41,123,114,101,116,117,114,110,32,119,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,46,99,108,105,101,110,116,72,101,105,103,104,116,63,119,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,46,99,108,105,101,110,116,72,101,105,103,104,116,58,77,97,116,104,46,114,111,117,110,100,40,120,46,104,101,105,103,104,116,40,41,41,125,102,117,110,99,116,105,111,110,32,110,40,97,41,123,118,97,114,32,98,61,115,40,41,59,98,38,38,40,50,55,61,61,61,97,46,107,101,121,67,111,100,101,38,38,98,46,111,112,116,105,111,110,115,40,34,101,115,99,34,41,38,38,98,46,99,108,111,115,101,40,41,44,57,61,61,61,97,46,107,101,121,67,111,100,101,38,38,111,40,97,44,98,41,41,125,102,117,110,99,116,105,111,110,32,111,40,97,44,98,41,123,118,97,114,32,99,61,98,46,101,108,101,109,101,110,116,40,41,46,102,105,110,100,40,68,41,44,100,61,99,46,105,110,100,101,120,40,119,46,97,99,116,105,118,101,69,108,101,109,101,110,116,41,59,97,46,115,104,105,102,116,75,101,121,38,38,100,60,61,48,63,40,99,46,103,101,116,40,99,46,108,101,110,103,116,104,45,49,41,46,102,111,99,117,115,40,41,44,97,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,41,58,97,46,115,104,105,102,116,75,101,121,124,124,100,33,61,61,99,46,108,101,110,103,116,104,45,49,124,124,40,99,46,103,101,116,40,48,41,46,102,111,99,117,115,40,41,44,97,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,41,125,102,117,110,99,116,105,111,110,32,112,40,41,123,98,46,101,97,99,104,40,65,44,102,117,110,99,116,105,111,110,40,97,44,98,41,123,98,46,114,101,115,105,122,101,40,41,125,41,125,102,117,110,99,116,105,111,110,32,113,40,97,41,123,49,61,61,61,65,46,117,110,115,104,105,102,116,40,97,41,38,38,40,122,46,97,100,100,67,108,97,115,115,40,34,108,105,116,121,45,97,99,116,105,118,101,34,41,44,120,46,111,110,40,123,114,101,115,105,122,101,58,112,44,107,101,121,100,111,119,110,58,110,125,41,41,44,98,40,34,98,111,100,121,32,62,32,42,34,41,46,110,111,116,40,97,46,101,108,101,109,101,110,116,40,41,41,46,97,100,100,67,108,97,115,115,40,34,108,105,116,121,45,104,105,100,100,101,110,34,41,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,97,61,98,40,116,104,105,115,41,59,118,111,105,100,32,48,61,61,61,97,46,100,97,116,97,40,67,41,38,38,97,46,100,97,116,97,40,67,44,97,46,97,116,116,114,40,66,41,124,124,110,117,108,108,41,125,41,46,97,116,116,114,40,66,44,34,116,114,117,101,34,41,125,102,117,110,99,116,105,111,110,32,114,40,97,41,123,118,97,114,32,99,59,97,46,101,108,101,109,101,110,116,40,41,46,97,116,116,114,40,66,44,34,116,114,117,101,34,41,44,49,61,61,61,65,46,108,101,110,103,116,104,38,38,40,122,46,114,101,109,111,118,101,67,108,97,115,115,40,34,108,105,116,121,45,97,99,116,105,118,101,34,41,44,120,46,111,102,102,40,123,114,101,115,105,122,101,58,112,44,107,101,121,100,111,119,110,58,110,125,41,41,44,65,61,98,46,103,114,101,112,40,65,44,102,117,110,99,116,105,111,110,40,98,41,123,114,101,116,117,114,110,32,97,33,61,61,98,125,41,44,99,61,65,46,108,101,110,103,116,104,63,65,91,48,93,46,101,108,101,109,101,110,116,40,41,58,98,40,34,46,108,105,116,121,45,104,105,100,100,101,110,34,41,44,99,46,114,101,109,111,118,101,67,108,97,115,115,40,34,108,105,116,121,45,104,105,100,100,101,110,34,41,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,97,61,98,40,116,104,105,115,41,44,99,61,97,46,100,97,116,97,40,67,41,59,99,63,97,46,97,116,116,114,40,66,44,99,41,58,97,46,114,101,109,111,118,101,65,116,116,114,40,66,41,44,97,46,114,101,109,111,118,101,68,97,116,97,40,67,41,125,41,125,102,117,110,99,116,105,111,110,32,115,40,41,123,114,101,116,117,114,110,32,48,61,61,61,65,46,108,101,110,103,116,104,63,110,117,108,108,58,65,91,48,93,125,102,117,110,99,116,105,111,110,32,116,40,97,44,99,44,100,44,101,41,123,118,97,114,32,102,44,103,61,34,105,110,108,105,110,101,34,44,104,61,98,46,101,120,116,101,110,100,40,123,125,44,100,41,59,114,101,116,117,114,110,32,101,38,38,104,91,101,93,63,40,102,61,104,91,101,93,40,97,44,99,41,44,103,61,101,41,58,40,98,46,101,97,99,104,40,91,34,105,110,108,105,110,101,34,44,34,105,102,114,97,109,101,34,93,44,102,117,110,99,116,105,111,110,40,97,44,98,41,123,100,101,108,101,116,101,32,104,91,98,93,44,104,91,98,93,61,100,91,98,93,125,41,44,98,46,101,97,99,104,40,104,44,102,117,110,99,116,105,111,110,40,98,44,100,41,123,114,101,116,117,114,110,33,100,124,124,40,33,40,33,100,46,116,101,115,116,124,124,100,46,116,101,115,116,40,97,44,99,41,41,124,124,40,102,61,100,40,97,44,99,41,44,33,49,33,61,61,102,63,40,103,61,98,44,33,49,41,58,118,111,105,100,32,48,41,41,125,41,41,44,123,104,97,110,100,108,101,114,58,103,44,99,111,110,116,101,110,116,58,102,124,124,34,34,125,125,102,117,110,99,116,105,111,110,32,117,40,97,44,101,44,102,44,103,41,123,102,117,110,99,116,105,111,110,32,104,40,97,41,123,107,61,98,40,97,41,46,99,115,115,40,34,109,97,120,45,104,101,105,103,104,116,34,44,109,40,41,43,34,112,120,34,41,44,106,46,102,105,110,100,40,34,46,108,105,116,121,45,108,111,97,100,101,114,34,41,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,97,61,98,40,116,104,105,115,41,59,99,40,97,41,46,97,108,119,97,121,115,40,102,117,110,99,116,105,111,110,40,41,123,97,46,114,101,109,111,118,101,40,41,125,41,125,41,44,106,46,114,101,109,111,118,101,67,108,97,115,115,40,34,108,105,116,121,45,108,111,97,100,105,110,103,34,41,46,102,105,110,100,40,34,46,108,105,116,121,45,99,111,110,116,101,110,116,34,41,46,101,109,112,116,121,40,41,46,97,112,112,101,110,100,40,107,41,44,110,61,33,48,44,107,46,116,114,105,103,103,101,114,40,34,108,105,116,121,58,114,101,97,100,121,34,44,91,108,93,41,125,118,97,114,32,105,44,106,44,107,44,108,61,116,104,105,115,44,110,61,33,49,44,111,61,33,49,59,101,61,98,46,101,120,116,101,110,100,40,123,125,44,69,44,101,41,44,106,61,98,40,101,46,116,101,109,112,108,97,116,101,41,44,108,46,101,108,101,109,101,110,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,106,125,44,108,46,111,112,101,110,101,114,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,102,125,44,108,46,99,111,110,116,101,110,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,107,125,44,108,46,111,112,116,105,111,110,115,61,98,46,112,114,111,120,121,40,100,44,108,44,101,41,44,108,46,104,97,110,100,108,101,114,115,61,98,46,112,114,111,120,121,40,100,44,108,44,101,46,104,97,110,100,108,101,114,115,41,44,108,46,114,101,115,105,122,101,61,102,117,110,99,116,105,111,110,40,41,123,110,38,38,33,111,38,38,107,46,99,115,115,40,34,109,97,120,45,104,101,105,103,104,116,34,44,109,40,41,43,34,112,120,34,41,46,116,114,105,103,103,101,114,40,34,108,105,116,121,58,114,101,115,105,122,101,34,44,91,108,93,41,125,44,108,46,99,108,111,115,101,61,102,117,110,99,116,105,111,110,40,41,123,105,102,40,110,38,38,33,111,41,123,111,61,33,48,44,114,40,108,41,59,118,97,114,32,97,61,121,40,41,59,105,102,40,103,38,38,40,119,46,97,99,116,105,118,101,69,108,101,109,101,110,116,61,61,61,106,91,48,93,124,124,98,46,99,111,110,116,97,105,110,115,40,106,91,48,93,44,119,46,97,99,116,105,118,101,69,108,101,109,101,110,116,41,41,41,116,114,121,123,103,46,102,111,99,117,115,40,41,125,99,97,116,99,104,40,97,41,123,125,114,101,116,117,114,110,32,107,46,116,114,105,103,103,101,114,40,34,108,105,116,121,58,99,108,111,115,101,34,44,91,108,93,41,44,106,46,114,101,109,111,118,101,67,108,97,115,115,40,34,108,105,116,121,45,111,112,101,110,101,100,34,41,46,97,100,100,67,108,97,115,115,40,34,108,105,116,121,45,99,108,111,115,101,100,34,41,44,99,40,107,46,97,100,100,40,106,41,41,46,97,108,119,97,121,115,40,102,117,110,99,116,105,111,110,40,41,123,107,46,116,114,105,103,103,101,114,40,34,108,105,116,121,58,114,101,109,111,118,101,34,44,91,108,93,41,44,106,46,114,101,109,111,118,101,40,41,44,106,61,118,111,105,100,32,48,44,97,46,114,101,115,111,108,118,101,40,41,125,41,44,97,46,112,114,111,109,105,115,101,40,41,125,125,44,105,61,116,40,97,44,108,44,101,46,104,97,110,100,108,101,114,115,44,101,46,104,97,110,100,108,101,114,41,44,106,46,97,116,116,114,40,66,44,34,102,97,108,115,101,34,41,46,97,100,100,67,108,97,115,115,40,34,108,105,116,121,45,108,111,97,100,105,110,103,32,108,105,116,121,45,111,112,101,110,101,100,32,108,105,116,121,45,34,43,105,46,104,97,110,100,108,101,114,41,46,97,112,112,101,110,100,84,111,40,34,98,111,100,121,34,41,46,102,111,99,117,115,40,41,46,111,110,40,34,99,108,105,99,107,34,44,34,91,100,97,116,97,45,108,105,116,121,45,99,108,111,115,101,93,34,44,102,117,110,99,116,105,111,110,40,97,41,123,98,40,97,46,116,97,114,103,101,116,41,46,105,115,40,34,91,100,97,116,97,45,108,105,116,121,45,99,108,111,115,101,93,34,41,38,38,108,46,99,108,111,115,101,40,41,125,41,46,116,114,105,103,103,101,114,40,34,108,105,116,121,58,111,112,101,110,34,44,91,108,93,41,44,113,40,108,41,44,98,46,119,104,101,110,40,105,46,99,111,110,116,101,110,116,41,46,97,108,119,97,121,115,40,104,41,125,102,117,110,99,116,105,111,110,32,118,40,97,44,99,44,100,41,123,97,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,63,40,97,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,100,61,98,40,116,104,105,115,41,44,97,61,100,46,100,97,116,97,40,34,108,105,116,121,45,116,97,114,103,101,116,34,41,124,124,100,46,97,116,116,114,40,34,104,114,101,102,34,41,124,124,100,46,97,116,116,114,40,34,115,114,99,34,41,41,58,100,61,98,40,100,41,59,118,97,114,32,101,61,110,101,119,32,117,40,97,44,98,46,101,120,116,101,110,100,40,123,125,44,100,46,100,97,116,97,40,34,108,105,116,121,45,111,112,116,105,111,110,115,34,41,124,124,100,46,100,97,116,97,40,34,108,105,116,121,34,41,44,99,41,44,100,44,119,46,97,99,116,105,118,101,69,108,101,109,101,110,116,41,59,105,102,40,33,97,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,41,114,101,116,117,114,110,32,101,125,118,97,114,32,119,61,97,46,100,111,99,117,109,101,110,116,44,120,61,98,40,97,41,44,121,61,98,46,68,101,102,101,114,114,101,100,44,122,61,98,40,34,104,116,109,108,34,41,44,65,61,91,93,44,66,61,34,97,114,105,97,45,104,105,100,100,101,110,34,44,67,61,34,108,105,116,121,45,34,43,66,44,68,61,39,97,91,104,114,101,102,93,44,97,114,101,97,91,104,114,101,102,93,44,105,110,112,117,116,58,110,111,116,40,91,100,105,115,97,98,108,101,100,93,41,44,115,101,108,101,99,116,58,110,111,116,40,91,100,105,115,97,98,108,101,100,93,41,44,116,101,120,116,97,114,101,97,58,110,111,116,40,91,100,105,115,97,98,108,101,100,93,41,44,98,117,116,116,111,110,58,110,111,116,40,91,100,105,115,97,98,108,101,100,93,41,44,105,102,114,97,109,101,44,111,98,106,101,99,116,44,101,109,98,101,100,44,91,99,111,110,116,101,110,116,101,100,105,116,97,98,108,101,93,44,91,116,97,98,105,110,100,101,120,93,58,110,111,116,40,91,116,97,98,105,110,100,101,120,94,61,34,45,34,93,41,39,44,69,61,123,101,115,99,58,33,48,44,104,97,110,100,108,101,114,58,110,117,108,108,44,104,97,110,100,108,101,114,115,58,123,105,109,97,103,101,58,106,44,105,110,108,105,110,101,58,107,44,105,102,114,97,109,101,58,108,125,44,116,101,109,112,108,97,116,101,58,39,60,100,105,118,32,99,108,97,115,115,61,34,108,105,116,121,34,32,114,111,108,101,61,34,100,105,97,108,111,103,34,32,97,114,105,97,45,108,97,98,101,108,61,34,68,105,97,108,111,103,32,87,105,110,100,111,119,32,40,80,114,101,115,115,32,101,115,99,97,112,101,32,116,111,32,99,108,111,115,101,41,34,32,116,97,98,105,110,100,101,120,61,34,45,49,34,62,60,100,105,118,32,99,108,97,115,115,61,34,108,105,116,121,45,119,114,97,112,34,32,100,97,116,97,45,108,105,116,121,45,99,108,111,115,101,32,114,111,108,101,61,34,100,111,99,117,109,101,110,116,34,62,60,100,105,118,32,99,108,97,115,115,61,34,108,105,116,121,45,108,111,97,100,101,114,34,32,97,114,105,97,45,104,105,100,100,101,110,61,34,116,114,117,101,34,62,76,111,97,100,105,110,103,46,46,46,60,47,100,105,118,62,60,100,105,118,32,99,108,97,115,115,61,34,108,105,116,121,45,99,111,110,116,97,105,110,101,114,34,62,60,100,105,118,32,99,108,97,115,115,61,34,108,105,116,121,45,99,111,110,116,101,110,116,34,62,60,47,100,105,118,62,60,98,117,116,116,111,110,32,99,108,97,115,115,61,34,108,105,116,121,45,99,108,111,115,101,34,32,116,121,112,101,61,34,98,117,116,116,111,110,34,32,97,114,105,97,45,108,97,98,101,108,61,34,67,108,111,115,101,32,40,80,114,101,115,115,32,101,115,99,97,112,101,32,116,111,32,99,108,111,115,101,41,34,32,100,97,116,97,45,108,105,116,121,45,99,108,111,115,101,62,38,116,105,109,101,115,59,60,47,98,117,116,116,111,110,62,60,47,100,105,118,62,60,47,100,105,118,62,60,47,100,105,118,62,39,125,44,70,61,47,40,94,100,97,116,97,58,105,109,97,103,101,92,47,41,124,40,92,46,40,112,110,103,124,106,112,101,63,103,124,103,105,102,124,115,118,103,124,119,101,98,112,124,98,109,112,124,105,99,111,124,116,105,102,102,63,41,40,92,63,92,83,42,41,63,36,41,47,105,44,71,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,97,61,119,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,44,98,61,123,87,101,98,107,105,116,84,114,97,110,115,105,116,105,111,110,58,34,119,101,98,107,105,116,84,114,97,110,115,105,116,105,111,110,69,110,100,34,44,77,111,122,84,114,97,110,115,105,116,105,111,110,58,34,116,114,97,110,115,105,116,105,111,110,101,110,100,34,44,79,84,114,97,110,115,105,116,105,111,110,58,34,111,84,114,97,110,115,105,116,105,111,110,69,110,100,32,111,116,114,97,110,115,105,116,105,111,110,101,110,100,34,44,116,114,97,110,115,105,116,105,111,110,58,34,116,114,97,110,115,105,116,105,111,110,101,110,100,34,125,59,102,111,114,40,118,97,114,32,99,32,105,110,32,98,41,105,102,40,118,111,105,100,32,48,33,61,61,97,46,115,116,121,108,101,91,99,93,41,114,101,116,117,114,110,32,98,91,99,93,59,114,101,116,117,114,110,33,49,125,40,41,59,114,101,116,117,114,110,32,106,46,116,101,115,116,61,102,117,110,99,116,105,111,110,40,97,41,123,114,101,116,117,114,110,32,70,46,116,101,115,116,40,97,41,125,44,118,46,118,101,114,115,105,111,110,61,34,51,46,48,46,48,45,100,101,118,34,44,118,46,111,112,116,105,111,110,115,61,98,46,112,114,111,120,121,40,100,44,118,44,69,41,44,118,46,104,97,110,100,108,101,114,115,61,98,46,112,114,111,120,121,40,100,44,118,44,69,46,104,97,110,100,108,101,114,115,41,44,118,46,99,117,114,114,101,110,116,61,115,44,118,46,105,102,114,97,109,101,61,104,44,98,40,119,41,46,111,110,40,34,99,108,105,99,107,46,108,105,116,121,34,44,34,91,100,97,116,97,45,108,105,116,121,93,34,44,118,41,44,118,125,41,59,47,42,42,10,32,42,32,104,116,116,112,115,58,47,47,115,116,97,99,107,111,118,101,114,102,108,111,119,46,99,111,109,47,113,117,101,115,116,105,111,110,115,47,49,48,52,50,48,51,53,50,10,32,42,47,10,102,117,110,99,116,105,111,110,32,104,117,109,97,110,70,105,108,101,83,105,122,101,40,98,121,116,101,115,41,32,123,10,32,32,32,32,105,102,32,40,98,121,116,101,115,32,61,61,61,32,48,41,32,123,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,34,48,32,66,34,10,32,32,32,32,125,10,10,32,32,32,32,108,101,116,32,116,104,114,101,115,104,32,61,32,49,48,48,48,59,10,32,32,32,32,105,102,32,40,77,97,116,104,46,97,98,115,40,98,121,116,101,115,41,32,60,32,116,104,114,101,115,104,41,32,123,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,98,121,116,101,115,32,43,32,39,32,66,39,59,10,32,32,32,32,125,10,32,32,32,32,108,101,116,32,117,110,105,116,115,32,61,32,91,39,107,39,44,32,39,77,39,44,32,39,71,39,44,32,39,84,39,44,32,39,80,39,44,32,39,69,39,44,32,39,90,39,44,32,39,89,39,93,59,10,32,32,32,32,108,101,116,32,117,32,61,32,45,49,59,10,32,32,32,32,100,111,32,123,10,32,32,32,32,32,32,32,32,98,121,116,101,115,32,47,61,32,116,104,114,101,115,104,59,10,32,32,32,32,32,32,32,32,43,43,117,59,10,32,32,32,32,125,32,119,104,105,108,101,32,40,77,97,116,104,46,97,98,115,40,98,121,116,101,115,41,32,62,61,32,116,104,114,101,115,104,32,38,38,32,117,32,60,32,117,110,105,116,115,46,108,101,110,103,116,104,32,45,32,49,41,59,10,10,32,32,32,32,114,101,116,117,114,110,32,98,121,116,101,115,46,116,111,70,105,120,101,100,40,49,41,32,43,32,117,110,105,116,115,91,117,93,59,10,125,10,10,47,42,42,10,32,42,32,104,116,116,112,115,58,47,47,115,116,97,99,107,111,118,101,114,102,108,111,119,46,99,111,109,47,113,117,101,115,116,105,111,110,115,47,54,51,49,50,57,57,51,10,32,42,47,10,102,117,110,99,116,105,111,110,32,104,117,109,97,110,84,105,109,101,40,115,101,99,95,110,117,109,41,32,123,10,32,32,32,32,115,101,99,95,110,117,109,32,61,32,77,97,116,104,46,102,108,111,111,114,40,115,101,99,95,110,117,109,41,59,10,32,32,32,32,108,101,116,32,104,111,117,114,115,32,61,32,77,97,116,104,46,102,108,111,111,114,40,115,101,99,95,110,117,109,32,47,32,51,54,48,48,41,59,10,32,32,32,32,108,101,116,32,109,105,110,117,116,101,115,32,61,32,77,97,116,104,46,102,108,111,111,114,40,40,115,101,99,95,110,117,109,32,45,32,40,104,111,117,114,115,32,42,32,51,54,48,48,41,41,32,47,32,54,48,41,59,10,32,32,32,32,108,101,116,32,115,101,99,111,110,100,115,32,61,32,115,101,99,95,110,117,109,32,45,32,40,104,111,117,114,115,32,42,32,51,54,48,48,41,32,45,32,40,109,105,110,117,116,101,115,32,42,32,54,48,41,59,10,10,32,32,32,32,105,102,32,40,104,111,117,114,115,32,60,32,49,48,41,32,123,10,32,32,32,32,32,32,32,32,104,111,117,114,115,32,61,32,34,48,34,32,43,32,104,111,117,114,115,59,10,32,32,32,32,125,10,32,32,32,32,105,102,32,40,109,105,110,117,116,101,115,32,60,32,49,48,41,32,123,10,32,32,32,32,32,32,32,32,109,105,110,117,116,101,115,32,61,32,34,48,34,32,43,32,109,105,110,117,116,101,115,59,10,32,32,32,32,125,10,32,32,32,32,105,102,32,40,115,101,99,111,110,100,115,32,60,32,49,48,41,32,123,10,32,32,32,32,32,32,32,32,115,101,99,111,110,100,115,32,61,32,34,48,34,32,43,32,115,101,99,111,110,100,115,59,10,32,32,32,32,125,10,32,32,32,32,114,101,116,117,114,110,32,104,111,117,114,115,32,43,32,34,58,34,32,43,32,109,105,110,117,116,101,115,32,43,32,34,58,34,32,43,32,115,101,99,111,110,100,115,59,10,125,10,10,102,117,110,99,116,105,111,110,32,100,101,98,111,117,110,99,101,40,102,117,110,99,44,32,119,97,105,116,41,32,123,10,32,32,32,32,108,101,116,32,116,105,109,101,111,117,116,59,10,32,32,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,40,41,32,123,10,32,32,32,32,32,32,32,32,108,101,116,32,99,111,110,116,101,120,116,32,61,32,116,104,105,115,44,32,97,114,103,115,32,61,32,97,114,103,117,109,101,110,116,115,59,10,32,32,32,32,32,32,32,32,108,101,116,32,108,97,116,101,114,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,116,105,109,101,111,117,116,32,61,32,110,117,108,108,59,10,32,32,32,32,32,32,32,32,32,32,32,32,102,117,110,99,46,97,112,112,108,121,40,99,111,110,116,101,120,116,44,32,97,114,103,115,41,59,10,32,32,32,32,32,32,32,32,125,59,10,32,32,32,32,32,32,32,32,99,108,101,97,114,84,105,109,101,111,117,116,40,116,105,109,101,111,117,116,41,59,10,32,32,32,32,32,32,32,32,116,105,109,101,111,117,116,32,61,32,115,101,116,84,105,109,101,111,117,116,40,108,97,116,101,114,44,32,119,97,105,116,41,59,10,32,32,32,32,32,32,32,32,102,117,110,99,46,97,112,112,108,121,40,99,111,110,116,101,120,116,44,32,97,114,103,115,41,59,10,32,32,32,32,125,59,10,125,10,10,102,117,110,99,116,105,111,110,32,108,117,109,40,99,41,32,123,10,32,32,32,32,99,32,61,32,99,46,115,117,98,115,116,114,105,110,103,40,49,41,59,10,32,32,32,32,108,101,116,32,114,103,98,32,61,32,112,97,114,115,101,73,110,116,40,99,44,32,49,54,41,59,10,32,32,32,32,108,101,116,32,114,32,61,32,40,114,103,98,32,62,62,32,49,54,41,32,38,32,48,120,102,102,59,10,32,32,32,32,108,101,116,32,103,32,61,32,40,114,103,98,32,62,62,32,56,41,32,38,32,48,120,102,102,59,10,32,32,32,32,108,101,116,32,98,32,61,32,40,114,103,98,32,62,62,32,48,41,32,38,32,48,120,102,102,59,10,10,32,32,32,32,114,101,116,117,114,110,32,48,46,50,49,50,54,32,42,32,114,32,43,32,48,46,55,49,53,50,32,42,32,103,32,43,32,48,46,48,55,50,50,32,42,32,98,59,10,125,10,10,102,117,110,99,116,105,111,110,32,115,116,114,85,110,101,115,99,97,112,101,40,115,116,114,41,32,123,10,32,32,32,32,108,101,116,32,114,101,115,117,108,116,32,61,32,34,34,59,10,10,32,32,32,32,102,111,114,32,40,108,101,116,32,105,32,61,32,48,59,32,105,32,60,32,115,116,114,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,10,32,32,32,32,32,32,32,32,99,111,110,115,116,32,99,32,61,32,115,116,114,91,105,93,59,10,32,32,32,32,32,32,32,32,99,111,110,115,116,32,110,101,120,116,32,61,32,115,116,114,91,105,43,49,93,59,10,10,32,32,32,32,32,32,32,32,105,102,32,40,99,32,61,61,61,32,39,93,39,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,110,101,120,116,32,61,61,61,32,39,93,39,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,115,117,108,116,32,43,61,32,99,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,32,43,61,32,49,59,10,32,32,32,32,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,115,117,108,116,32,43,61,32,83,116,114,105,110,103,46,102,114,111,109,67,104,97,114,67,111,100,101,40,112,97,114,115,101,73,110,116,40,115,116,114,46,115,108,105,99,101,40,105,44,32,105,32,43,32,50,41,44,32,49,54,41,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,32,43,61,32,50,59,10,32,32,32,32,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,114,101,115,117,108,116,32,43,61,32,99,59,10,32,32,32,32,32,32,32,32,125,10,32,32,32,32,125,10,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,10,125,10,10,99,111,110,115,116,32,67,79,78,70,32,61,32,110,101,119,32,83,101,116,116,105,110,103,115,40,41,59,10,10,99,111,110,115,116,32,95,100,101,102,97,117,108,116,115,32,61,32,123,10,32,32,32,32,100,105,115,112,108,97,121,58,32,34,103,114,105,100,34,44,10,32,32,32,32,102,117,122,122,121,58,32,116,114,117,101,44,10,32,32,32,32,104,105,103,104,108,105,103,104,116,58,32,116,114,117,101,44,10,32,32,32,32,115,111,114,116,58,32,34,115,99,111,114,101,34,44,10,32,32,32,32,115,101,97,114,99,104,73,110,80,97,116,104,58,32,102,97,108,115,101,44,10,32,32,32,32,116,114,101,101,109,97,112,84,121,112,101,58,32,34,99,97,115,99,97,100,101,100,34,44,10,32,32,32,32,116,114,101,101,109,97,112,84,105,108,105,110,103,58,32,34,115,113,117,97,114,105,102,121,34,44,10,32,32,32,32,116,114,101,101,109,97,112,71,114,111,117,112,105,110,103,68,101,112,116,104,58,32,51,44,10,32,32,32,32,116,114,101,101,109,97,112,67,111,108,111,114,58,32,34,80,117,66,117,71,110,34,44,10,32,32,32,32,116,114,101,101,109,97,112,83,105,122,101,58,32,34,108,97,114,103,101,34,44,10,32,32,32,32,115,117,103,103,101,115,116,80,97,116,104,58,32,116,114,117,101,44,10,32,32,32,32,102,114,97,103,109,101,110,116,83,105,122,101,58,32,49,48,48,44,10,32,32,32,32,99,111,108,117,109,110,115,58,32,53,10,125,59,10,10,102,117,110,99,116,105,111,110,32,108,111,97,100,83,101,116,116,105,110,103,115,40,41,32,123,10,32,32,32,32,67,79,78,70,46,108,111,97,100,40,41,59,10,10,32,32,32,32,36,40,34,35,115,101,116,116,105,110,103,68,105,115,112,108,97,121,34,41,46,118,97,108,40,67,79,78,70,46,111,112,116,105,111,110,115,46,100,105,115,112,108,97,121,41,59,10,32,32,32,32,36,40,34,35,115,101,116,116,105,110,103,70,117,122,122,121,34,41,46,112,114,111,112,40,34,99,104,101,99,107,101,100,34,44,32,67,79,78,70,46,111,112,116,105,111,110,115,46,102,117,122,122,121,41,59,10,32,32,32,32,36,40,34,35,115,101,116,116,105,110,103,72,105,103,104,108,105,103,104,116,34,41,46,112,114,111,112,40,34,99,104,101,99,107,101,100,34,44,32,67,79,78,70,46,111,112,116,105,111,110,115,46,104,105,103,104,108,105,103,104,116,41,59,10,32,32,32,32,36,40,34,35,115,101,116,116,105,110,103,83,101,97,114,99,104,73,110,80,97,116,104,34,41,46,112,114,111,112,40,34,99,104,101,99,107,101,100,34,44,32,67,79,78,70,46,111,112,116,105,111,110,115,46,115,101,97,114,99,104,73,110,80,97,116,104,41,59,10,32,32,32,32,36,40,34,35,115,101,116,116,105,110,103,84,114,101,101,109,97,112,84,105,108,105,110,103,34,41,46,118,97,108,40,67,79,78,70,46,111,112,116,105,111,110,115,46,116,114,101,101,109,97,112,84,105,108,105,110,103,41,59,10,32,32,32,32,36,40,34,35,115,101,116,116,105,110,103,84,114,101,101,109,97,112,71,114,111,117,112,105,110,103,68,101,112,116,104,34,41,46,118,97,108,40,67,79,78,70,46,111,112,116,105,111,110,115,46,116,114,101,101,109,97,112,71,114,111,117,112,105,110,103,68,101,112,116,104,41,59,10,32,32,32,32,36,40,34,35,115,101,116,116,105,110,103,84,114,101,101,109,97,112,67,111,108,111,114,34,41,46,118,97,108,40,67,79,78,70,46,111,112,116,105,111,110,115,46,116,114,101,101,109,97,112,67,111,108,111,114,41,59,10,32,32,32,32,36,40,34,35,115,101,116,116,105,110,103,84,114,101,101,109,97,112,83,105,122,101,34,41,46,118,97,108,40,67,79,78,70,46,111,112,116,105,111,110,115,46,116,114,101,101,109,97,112,83,105,122,101,41,59,10,32,32,32,32,36,40,34,35,115,101,116,116,105,110,103,84,114,101,101,109,97,112,84,121,112,101,34,41,46,118,97,108,40,67,79,78,70,46,111,112,116,105,111,110,115,46,116,114,101,101,109,97,112,84,121,112,101,41,59,10,32,32,32,32,36,40,34,35,115,101,116,116,105,110,103,83,117,103,103,101,115,116,80,97,116,104,34,41,46,112,114,111,112,40,34,99,104,101,99,107,101,100,34,44,32,67,79,78,70,46,111,112,116,105,111,110,115,46,115,117,103,103,101,115,116,80,97,116,104,41,59,10,32,32,32,32,36,40,34,35,115,101,116,116,105,110,103,70,114,97,103,109,101,110,116,83,105,122,101,34,41,46,118,97,108,40,67,79,78,70,46,111,112,116,105,111,110,115,46,102,114,97,103,109,101,110,116,83,105,122,101,41,59,10,32,32,32,32,36,40,34,35,115,101,116,116,105,110,103,67,111,108,117,109,110,115,34,41,46,118,97,108,40,67,79,78,70,46,111,112,116,105,111,110,115,46,99,111,108,117,109,110,115,41,59,10,125,10,10,102,117,110,99,116,105,111,110,32,83,101,116,116,105,110,103,115,40,41,32,123,10,32,32,32,32,116,104,105,115,46,111,112,116,105,111,110,115,32,61,32,123,125,59,10,10,32,32,32,32,116,104,105,115,46,95,111,110,85,112,100,97,116,101,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,10,32,32,32,32,32,32,32,32,36,40,34,35,102,117,122,122,121,84,111,103,103,108,101,34,41,46,112,114,111,112,40,34,99,104,101,99,107,101,100,34,44,32,116,104,105,115,46,111,112,116,105,111,110,115,46,102,117,122,122,121,41,59,10,32,32,32,32,32,32,32,32,117,112,100,97,116,101,67,111,108,117,109,110,83,116,121,108,101,40,41,59,10,32,32,32,32,125,59,10,10,32,32,32,32,116,104,105,115,46,108,111,97,100,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,10,32,32,32,32,32,32,32,32,99,111,110,115,116,32,114,97,119,32,61,32,119,105,110,100,111,119,46,108,111,99,97,108,83,116,111,114,97,103,101,46,103,101,116,73,116,101,109,40,34,111,112,116,105,111,110,115,34,41,59,10,32,32,32,32,32,32,32,32,105,102,32,40,114,97,119,32,61,61,61,32,110,117,108,108,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,111,112,116,105,111,110,115,32,61,32,95,100,101,102,97,117,108,116,115,59,10,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,99,111,110,115,116,32,106,32,61,32,74,83,79,78,46,112,97,114,115,101,40,114,97,119,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,106,32,124,124,32,79,98,106,101,99,116,46,107,101,121,115,40,95,100,101,102,97,117,108,116,115,41,46,115,111,109,101,40,107,32,61,62,32,33,106,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,107,41,41,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,111,112,116,105,111,110,115,32,61,32,95,100,101,102,97,117,108,116,115,59,10,32,32,32,32,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,111,112,116,105,111,110,115,32,61,32,106,59,10,32,32,32,32,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,125,10,10,32,32,32,32,32,32,32,32,116,104,105,115,46,95,111,110,85,112,100,97,116,101,40,41,59,10,32,32,32,32,125,59,10,10,32,32,32,32,116,104,105,115,46,115,97,118,101,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,10,32,32,32,32,32,32,32,32,119,105,110,100,111,119,46,108,111,99,97,108,83,116,111,114,97,103,101,46,115,101,116,73,116,101,109,40,34,111,112,116,105,111,110,115,34,44,32,74,83,79,78,46,115,116,114,105,110,103,105,102,121,40,116,104,105,115,46,111,112,116,105,111,110,115,41,41,59,10,32,32,32,32,32,32,32,32,116,104,105,115,46,95,111,110,85,112,100,97,116,101,40,41,59,10,32,32,32,32,125,10,125,10,10,102,117,110,99,116,105,111,110,32,117,112,100,97,116,101,83,101,116,116,105,110,103,115,40,41,32,123,10,32,32,32,32,67,79,78,70,46,111,112,116,105,111,110,115,46,100,105,115,112,108,97,121,32,61,32,36,40,34,35,115,101,116,116,105,110,103,68,105,115,112,108,97,121,34,41,46,118,97,108,40,41,59,10,32,32,32,32,67,79,78,70,46,111,112,116,105,111,110,115,46,102,117,122,122,121,32,61,32,36,40,34,35,115,101,116,116,105,110,103,70,117,122,122,121,34,41,46,112,114,111,112,40,34,99,104,101,99,107,101,100,34,41,59,10,32,32,32,32,67,79,78,70,46,111,112,116,105,111,110,115,46,104,105,103,104,108,105,103,104,116,32,61,32,36,40,34,35,115,101,116,116,105,110,103,72,105,103,104,108,105,103,104,116,34,41,46,112,114,111,112,40,34,99,104,101,99,107,101,100,34,41,59,10,32,32,32,32,67,79,78,70,46,111,112,116,105,111,110,115,46,115,101,97,114,99,104,73,110,80,97,116,104,32,61,32,36,40,34,35,115,101,116,116,105,110,103,83,101,97,114,99,104,73,110,80,97,116,104,34,41,46,112,114,111,112,40,34,99,104,101,99,107,101,100,34,41,59,10,32,32,32,32,67,79,78,70,46,111,112,116,105,111,110,115,46,116,114,101,101,109,97,112,84,105,108,105,110,103,32,61,32,36,40,34,35,115,101,116,116,105,110,103,84,114,101,101,109,97,112,84,105,108,105,110,103,34,41,46,118,97,108,40,41,59,10,32,32,32,32,67,79,78,70,46,111,112,116,105,111,110,115,46,116,114,101,101,109,97,112,71,114,111,117,112,105,110,103,68,101,112,116,104,32,61,32,36,40,34,35,115,101,116,116,105,110,103,84,114,101,101,109,97,112,71,114,111,117,112,105,110,103,68,101,112,116,104,34,41,46,118,97,108,40,41,59,10,32,32,32,32,67,79,78,70,46,111,112,116,105,111,110,115,46,116,114,101,101,109,97,112,67,111,108,111,114,32,61,32,36,40,34,35,115,101,116,116,105,110,103,84,114,101,101,109,97,112,67,111,108,111,114,34,41,46,118,97,108,40,41,59,10,32,32,32,32,67,79,78,70,46,111,112,116,105,111,110,115,46,116,114,101,101,109,97,112,83,105,122,101,32,61,32,36,40,34,35,115,101,116,116,105,110,103,84,114,101,101,109,97,112,83,105,122,101,34,41,46,118,97,108,40,41,59,10,32,32,32,32,67,79,78,70,46,111,112,116,105,111,110,115,46,116,114,101,101,109,97,112,84,121,112,101,32,61,32,36,40,34,35,115,101,116,116,105,110,103,84,114,101,101,109,97,112,84,121,112,101,34,41,46,118,97,108,40,41,59,10,32,32,32,32,67,79,78,70,46,111,112,116,105,111,110,115,46,115,117,103,103,101,115,116,80,97,116,104,32,61,32,36,40,34,35,115,101,116,116,105,110,103,83,117,103,103,101,115,116,80,97,116,104,34,41,46,112,114,111,112,40,34,99,104,101,99,107,101,100,34,41,59,10,32,32,32,32,67,79,78,70,46,111,112,116,105,111,110,115,46,102,114,97,103,109,101,110,116,83,105,122,101,32,61,32,36,40,34,35,115,101,116,116,105,110,103,70,114,97,103,109,101,110,116,83,105,122,101,34,41,46,118,97,108,40,41,59,10,32,32,32,32,67,79,78,70,46,111,112,116,105,111,110,115,46,99,111,108,117,109,110,115,32,61,32,36,40,34,35,115,101,116,116,105,110,103,67,111,108,117,109,110,115,34,41,46,118,97,108,40,41,59,10,32,32,32,32,67,79,78,70,46,115,97,118,101,40,41,59,10,10,32,32,32,32,105,102,32,40,116,121,112,101,111,102,32,115,101,97,114,99,104,68,101,98,111,117,110,99,101,100,32,33,61,61,32,34,117,110,100,101,102,105,110,101,100,34,41,32,123,10,32,32,32,32,32,32,32,32,115,101,97,114,99,104,68,101,98,111,117,110,99,101,100,40,41,59,10,32,32,32,32,125,10,10,32,32,32,32,105,102,32,40,116,121,112,101,111,102,32,117,112,100,97,116,101,83,116,97,116,115,32,33,61,61,32,34,117,110,100,101,102,105,110,101,100,34,41,32,123,10,32,32,32,32,32,32,32,32,117,112,100,97,116,101,83,116,97,116,115,40,41,59,10,32,32,32,32,125,10,10,32,32,32,32,36,46,116,111,97,115,116,40,123,10,32,32,32,32,32,32,32,32,104,101,97,100,105,110,103,58,32,34,83,101,116,116,105,110,103,115,32,117,112,100,97,116,101,100,34,44,10,32,32,32,32,32,32,32,32,116,101,120,116,58,32,34,83,101,116,116,105,110,103,115,32,115,97,118,101,100,32,116,111,32,98,114,111,119,115,101,114,32,115,116,111,114,97,103,101,34,44,10,32,32,32,32,32,32,32,32,115,116,97,99,107,58,32,51,44,10,32,32,32,32,32,32,32,32,98,103,67,111,108,111,114,58,32,34,35,48,48,97,52,98,99,34,44,10,32,32,32,32,32,32,32,32,116,101,120,116,67,111,108,111,114,58,32,34,35,102,102,102,34,44,10,32,32,32,32,32,32,32,32,112,111,115,105,116,105,111,110,58,32,39,98,111,116,116,111,109,45,114,105,103,104,116,39,44,10,32,32,32,32,32,32,32,32,104,105,100,101,65,102,116,101,114,58,32,51,48,48,48,44,10,32,32,32,32,32,32,32,32,108,111,97,100,101,114,66,103,58,32,34,35,48,56,99,55,101,56,34,44,10,32,32,32,32,125,41,59,10,125,10,10,106,81,117,101,114,121,91,34,106,115,111,110,80,111,115,116,34,93,32,61,32,102,117,110,99,116,105,111,110,32,40,117,114,108,44,32,100,97,116,97,41,32,123,10,32,32,32,32,114,101,116,117,114,110,32,106,81,117,101,114,121,46,97,106,97,120,40,123,10,32,32,32,32,32,32,32,32,117,114,108,58,32,117,114,108,44,10,32,32,32,32,32,32,32,32,116,121,112,101,58,32,34,112,111,115,116,34,44,10,32,32,32,32,32,32,32,32,100,97,116,97,58,32,74,83,79,78,46,115,116,114,105,110,103,105,102,121,40,100,97,116,97,41,44,10,32,32,32,32,32,32,32,32,99,111,110,116,101,110,116,84,121,112,101,58,32,34,97,112,112,108,105,99,97,116,105,111,110,47,106,115,111,110,34,10,32,32,32,32,125,41,46,102,97,105,108,40,101,114,114,32,61,62,32,123,10,32,32,32,32,32,32,32,32,115,104,111,119,69,115,69,114,114,111,114,40,41,59,10,32,32,32,32,32,32,32,32,99,111,110,115,111,108,101,46,108,111,103,40,101,114,114,41,59,10,32,32,32,32,125,41,59,10,125,59,10,10,102,117,110,99,116,105,111,110,32,116,111,103,103,108,101,84,104,101,109,101,40,41,32,123,10,32,32,32,32,105,102,32,40,33,100,111,99,117,109,101,110,116,46,99,111,111,107,105,101,46,105,110,99,108,117,100,101,115,40,34,115,105,115,116,34,41,41,32,123,10,32,32,32,32,32,32,32,32,100,111,99,117,109,101,110,116,46,99,111,111,107,105,101,32,61,32,34,115,105,115,116,61,100,97,114,107,59,83,97,109,101,83,105,116,101,61,83,116,114,105,99,116,34,59,10,32,32,32,32,125,32,101,108,115,101,32,123,10,32,32,32,32,32,32,32,32,100,111,99,117,109,101,110,116,46,99,111,111,107,105,101,32,61,32,34,115,105,115,116,61,59,32,77,97,120,45,65,103,101,61,45,57,57,57,57,57,57,57,57,59,34,59,10,32,32,32,32,125,10,32,32,32,32,119,105,110,100,111,119,46,108,111,99,97,116,105,111,110,46,114,101,108,111,97,100,40,41,59,10,125,10,10,102,117,110,99,116,105,111,110,32,117,112,100,97,116,101,67,111,108,117,109,110,83,116,121,108,101,40,41,32,123,10,32,32,32,32,99,111,110,115,116,32,115,116,121,108,101,32,61,32,100,111,99,117,109,101,110,116,46,103,101,116,69,108,101,109,101,110,116,66,121,73,100,40,34,115,116,121,108,101,34,41,59,10,32,32,32,32,105,102,32,40,115,116,121,108,101,41,32,123,10,32,32,32,32,32,32,32,32,115,116,121,108,101,46,105,110,110,101,114,72,84,77,76,32,61,10,32,32,32,32,32,32,32,32,96,10,64,109,101,100,105,97,32,115,99,114,101,101,110,32,97,110,100,32,40,109,105,110,45,119,105,100,116,104,58,32,49,53,48,48,112,120,41,32,123,10,32,32,32,32,46,99,111,110,116,97,105,110,101,114,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,109,97,120,45,119,105,100,116,104,58,32,49,52,52,48,112,120,59,10,32,32,32,32,32,32,32,32,125,10,10,32,32,32,32,46,98,114,105,99,107,108,97,121,101,114,45,99,111,108,117,109,110,45,115,105,122,101,114,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,119,105,100,116,104,58,32,36,123,49,48,48,32,47,32,67,79,78,70,46,111,112,116,105,111,110,115,46,99,111,108,117,109,110,115,125,37,32,33,105,109,112,111,114,116,97,110,116,59,10,32,32,32,32,32,32,32,32,125,10,10,32,32,32,32,46,98,114,105,99,107,108,97,121,101,114,45,99,111,108,117,109,110,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,109,97,120,45,119,105,100,116,104,58,32,36,123,49,48,48,32,47,32,67,79,78,70,46,111,112,116,105,111,110,115,46,99,111,108,117,109,110,115,125,37,59,10,32,32,32,32,32,32,32,32,125,10,32,32,32,32,125,10,125,10,32,32,32,32,32,32,32,32,96,10,32,32,32,32,125,10,125,47,42,42,10,32,42,32,69,110,97,98,108,101,32,103,105,102,32,108,111,97,100,105,110,103,32,111,110,32,104,111,118,101,114,10,32,42,47,10,102,117,110,99,116,105,111,110,32,103,105,102,79,118,101,114,40,116,104,117,109,98,110,97,105,108,44,32,104,105,116,41,32,123,10,32,32,32,32,108,101,116,32,99,97,108,108,101,101,32,61,32,97,114,103,117,109,101,110,116,115,46,99,97,108,108,101,101,59,10,10,32,32,32,32,116,104,117,109,98,110,97,105,108,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,109,111,117,115,101,111,118,101,114,34,44,32,102,117,110,99,116,105,111,110,32,40,41,32,123,10,10,32,32,32,32,32,32,32,32,116,104,117,109,98,110,97,105,108,46,109,111,117,115,101,83,116,97,121,101,100,79,118,101,114,32,61,32,116,114,117,101,59,10,10,32,32,32,32,32,32,32,32,119,105,110,100,111,119,46,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,32,40,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,116,104,117,109,98,110,97,105,108,46,109,111,117,115,101,83,116,97,121,101,100,79,118,101,114,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,117,109,98,110,97,105,108,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,40,39,109,111,117,115,101,111,118,101,114,39,44,32,99,97,108,108,101,101,44,32,102,97,108,115,101,41,59,10,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,76,111,97,100,32,103,105,102,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,117,109,98,110,97,105,108,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,115,114,99,34,44,32,34,102,47,34,32,43,32,104,105,116,91,34,95,105,100,34,93,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,125,44,32,54,48,48,41,59,10,10,32,32,32,32,125,41,59,10,10,32,32,32,32,116,104,117,109,98,110,97,105,108,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,109,111,117,115,101,111,117,116,34,44,32,102,117,110,99,116,105,111,110,32,40,41,32,123,10,32,32,32,32,32,32,32,32,47,47,82,101,115,101,116,32,116,105,109,101,114,10,32,32,32,32,32,32,32,32,116,104,117,109,98,110,97,105,108,46,109,111,117,115,101,83,116,97,121,101,100,79,118,101,114,32,61,32,102,97,108,115,101,59,10,32,32,32,32,32,32,32,32,116,104,117,109,98,110,97,105,108,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,115,114,99,34,44,32,96,116,47,36,123,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,105,110,100,101,120,34,93,125,47,36,123,104,105,116,91,34,95,105,100,34,93,125,96,41,59,10,32,32,32,32,125,41,10,125,10,10,102,117,110,99,116,105,111,110,32,103,101,116,67,111,110,116,101,110,116,72,105,103,104,108,105,103,104,116,40,104,105,116,41,32,123,10,32,32,32,32,105,102,32,40,104,105,116,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,34,104,105,103,104,108,105,103,104,116,34,41,41,32,123,10,32,32,32,32,32,32,32,32,105,102,32,40,104,105,116,91,34,104,105,103,104,108,105,103,104,116,34,93,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,34,99,111,110,116,101,110,116,34,41,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,104,105,116,91,34,104,105,103,104,108,105,103,104,116,34,93,91,34,99,111,110,116,101,110,116,34,93,91,48,93,59,10,10,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,104,105,116,91,34,104,105,103,104,108,105,103,104,116,34,93,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,34,99,111,110,116,101,110,116,46,110,71,114,97,109,34,41,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,104,105,116,91,34,104,105,103,104,108,105,103,104,116,34,93,91,34,99,111,110,116,101,110,116,46,110,71,114,97,109,34,93,91,48,93,59,10,32,32,32,32,32,32,32,32,125,10,32,32,32,32,125,10,10,32,32,32,32,114,101,116,117,114,110,32,117,110,100,101,102,105,110,101,100,59,10,125,10,10,102,117,110,99,116,105,111,110,32,103,101,116,80,97,116,104,72,105,103,104,108,105,103,104,116,40,104,105,116,41,32,123,10,32,32,32,32,105,102,32,40,104,105,116,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,34,104,105,103,104,108,105,103,104,116,34,41,41,32,123,10,32,32,32,32,32,32,32,32,105,102,32,40,104,105,116,91,34,104,105,103,104,108,105,103,104,116,34,93,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,34,112,97,116,104,46,116,101,120,116,34,41,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,104,105,116,91,34,104,105,103,104,108,105,103,104,116,34,93,91,34,112,97,116,104,46,116,101,120,116,34,93,91,48,93,59,10,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,104,105,116,91,34,104,105,103,104,108,105,103,104,116,34,93,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,34,112,97,116,104,46,110,71,114,97,109,34,41,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,104,105,116,91,34,104,105,103,104,108,105,103,104,116,34,93,91,34,112,97,116,104,46,110,71,114,97,109,34,93,91,48,93,59,10,32,32,32,32,32,32,32,32,125,10,32,32,32,32,125,10,10,32,32,32,32,114,101,116,117,114,110,32,117,110,100,101,102,105,110,101,100,59,10,125,10,10,102,117,110,99,116,105,111,110,32,97,112,112,108,121,78,97,109,101,84,111,84,105,116,108,101,40,104,105,116,44,32,116,105,116,108,101,44,32,101,120,116,101,110,115,105,111,110,41,32,123,10,32,32,32,32,105,102,32,40,104,105,116,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,34,104,105,103,104,108,105,103,104,116,34,41,41,32,123,10,32,32,32,32,32,32,32,32,105,102,32,40,104,105,116,91,34,104,105,103,104,108,105,103,104,116,34,93,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,34,110,97,109,101,34,41,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,116,105,116,108,101,46,105,110,115,101,114,116,65,100,106,97,99,101,110,116,72,84,77,76,40,39,97,102,116,101,114,98,101,103,105,110,39,44,32,104,105,116,91,34,104,105,103,104,108,105,103,104,116,34,93,91,34,110,97,109,101,34,93,32,43,32,101,120,116,101,110,115,105,111,110,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,10,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,104,105,116,91,34,104,105,103,104,108,105,103,104,116,34,93,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,34,110,97,109,101,46,110,71,114,97,109,34,41,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,116,105,116,108,101,46,105,110,115,101,114,116,65,100,106,97,99,101,110,116,72,84,77,76,40,39,97,102,116,101,114,98,101,103,105,110,39,44,32,104,105,116,91,34,104,105,103,104,108,105,103,104,116,34,93,91,34,110,97,109,101,46,110,71,114,97,109,34,93,32,43,32,101,120,116,101,110,115,105,111,110,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,10,32,32,32,32,32,32,32,32,125,10,32,32,32,32,125,10,10,32,32,32,32,116,105,116,108,101,46,97,112,112,101,110,100,67,104,105,108,100,40,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,84,101,120,116,78,111,100,101,40,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,110,97,109,101,34,93,32,43,32,101,120,116,101,110,115,105,111,110,41,41,59,10,125,10,10,102,117,110,99,116,105,111,110,32,115,104,111,117,108,100,80,108,97,121,86,105,100,101,111,40,104,105,116,41,32,123,10,32,32,32,32,99,111,110,115,116,32,118,105,100,101,111,99,32,61,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,118,105,100,101,111,99,34,93,59,10,32,32,32,32,99,111,110,115,116,32,109,105,109,101,32,61,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,109,105,109,101,34,93,59,10,10,32,32,32,32,114,101,116,117,114,110,32,109,105,109,101,32,38,38,10,32,32,32,32,32,32,32,32,109,105,109,101,46,115,116,97,114,116,115,87,105,116,104,40,34,118,105,100,101,111,47,34,41,32,38,38,10,32,32,32,32,32,32,32,32,33,40,34,112,97,114,101,110,116,34,32,105,110,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,41,32,38,38,10,32,32,32,32,32,32,32,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,101,120,116,101,110,115,105,111,110,34,93,32,33,61,61,32,34,109,107,118,34,32,38,38,10,32,32,32,32,32,32,32,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,101,120,116,101,110,115,105,111,110,34,93,32,33,61,61,32,34,97,118,105,34,32,38,38,10,32,32,32,32,32,32,32,32,118,105,100,101,111,99,32,33,61,61,32,34,104,101,118,99,34,32,38,38,10,32,32,32,32,32,32,32,32,118,105,100,101,111,99,32,33,61,61,32,34,109,112,101,103,50,118,105,100,101,111,34,32,38,38,10,32,32,32,32,32,32,32,32,118,105,100,101,111,99,32,33,61,61,32,34,119,109,118,51,34,59,10,125,10,10,102,117,110,99,116,105,111,110,32,115,104,111,117,108,100,68,105,115,112,108,97,121,82,97,119,73,109,97,103,101,40,104,105,116,41,32,123,10,32,32,32,32,99,111,110,115,116,32,109,105,109,101,32,61,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,109,105,109,101,34,93,59,10,10,32,32,32,32,114,101,116,117,114,110,32,109,105,109,101,32,38,38,10,32,32,32,32,32,32,32,32,109,105,109,101,46,115,116,97,114,116,115,87,105,116,104,40,34,105,109,97,103,101,47,34,41,32,38,38,10,32,32,32,32,32,32,32,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,109,105,109,101,34,93,32,38,38,10,32,32,32,32,32,32,32,32,33,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,112,97,114,101,110,116,34,93,32,38,38,10,32,32,32,32,32,32,32,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,118,105,100,101,111,99,34,93,32,33,61,61,32,34,116,105,102,102,34,32,38,38,10,32,32,32,32,32,32,32,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,118,105,100,101,111,99,34,93,32,33,61,61,32,34,114,97,119,34,32,38,38,10,32,32,32,32,32,32,32,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,118,105,100,101,111,99,34,93,32,33,61,61,32,34,112,112,109,34,59,10,125,10,10,102,117,110,99,116,105,111,110,32,109,97,107,101,80,108,97,99,101,104,111,108,100,101,114,40,119,44,32,104,44,32,115,109,97,108,108,41,32,123,10,32,32,32,32,108,101,116,32,99,97,108,99,59,10,32,32,32,32,105,102,32,40,115,109,97,108,108,41,32,123,10,32,32,32,32,32,32,32,32,99,97,108,99,32,61,32,119,32,62,32,104,10,32,32,32,32,32,32,32,32,32,32,32,32,63,32,40,54,52,32,47,32,119,32,47,32,104,41,32,62,61,32,49,48,48,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,63,32,40,54,52,32,42,32,119,32,47,32,104,41,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,58,32,54,52,10,32,32,32,32,32,32,32,32,32,32,32,32,58,32,54,52,59,10,32,32,32,32,125,32,101,108,115,101,32,123,10,32,32,32,32,32,32,32,32,99,97,108,99,32,61,32,119,32,62,32,104,10,32,32,32,32,32,32,32,32,32,32,32,32,63,32,40,49,55,53,32,47,32,119,32,47,32,104,41,32,62,61,32,50,55,50,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,63,32,40,49,55,53,32,42,32,119,32,47,32,104,41,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,58,32,49,55,53,10,32,32,32,32,32,32,32,32,32,32,32,32,58,32,49,55,53,59,10,32,32,32,32,125,10,10,32,32,32,32,99,111,110,115,116,32,101,108,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,101,108,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,115,116,121,108,101,34,44,32,96,104,101,105,103,104,116,58,32,36,123,99,97,108,99,125,112,120,96,41,59,10,32,32,32,32,114,101,116,117,114,110,32,101,108,59,10,125,10,10,102,117,110,99,116,105,111,110,32,101,120,116,40,104,105,116,41,32,123,10,32,32,32,32,114,101,116,117,114,110,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,34,101,120,116,101,110,115,105,111,110,34,41,32,38,38,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,101,120,116,101,110,115,105,111,110,34,93,32,33,61,61,32,34,34,32,63,32,34,46,34,32,43,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,101,120,116,101,110,115,105,111,110,34,93,32,58,32,34,34,59,10,125,10,10,102,117,110,99,116,105,111,110,32,109,97,107,101,84,105,116,108,101,40,104,105,116,41,32,123,10,32,32,32,32,108,101,116,32,116,105,116,108,101,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,116,105,116,108,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,102,105,108,101,45,116,105,116,108,101,34,41,59,10,32,32,32,32,108,101,116,32,101,120,116,101,110,115,105,111,110,32,61,32,101,120,116,40,104,105,116,41,59,10,10,32,32,32,32,97,112,112,108,121,78,97,109,101,84,111,84,105,116,108,101,40,104,105,116,44,32,116,105,116,108,101,44,32,101,120,116,101,110,115,105,111,110,41,59,10,10,32,32,32,32,116,105,116,108,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,116,105,116,108,101,34,44,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,112,97,116,104,34,93,32,43,32,34,47,34,32,43,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,110,97,109,101,34,93,32,43,32,101,120,116,101,110,115,105,111,110,41,59,10,32,32,32,32,114,101,116,117,114,110,32,116,105,116,108,101,59,10,125,10,10,102,117,110,99,116,105,111,110,32,103,101,116,84,97,103,115,40,104,105,116,44,32,109,105,109,101,67,97,116,101,103,111,114,121,41,32,123,10,10,32,32,32,32,108,101,116,32,116,97,103,115,32,61,32,91,93,59,10,32,32,32,32,115,119,105,116,99,104,32,40,109,105,109,101,67,97,116,101,103,111,114,121,41,32,123,10,32,32,32,32,32,32,32,32,99,97,115,101,32,34,118,105,100,101,111,34,58,10,32,32,32,32,32,32,32,32,99,97,115,101,32,34,105,109,97,103,101,34,58,10,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,104,105,116,91,34,95,115,111,117,114,99,101,34,93,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,34,118,105,100,101,111,99,34,41,32,38,38,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,118,105,100,101,111,99,34,93,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,111,110,115,116,32,102,111,114,109,97,116,84,97,103,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,115,112,97,110,34,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,111,114,109,97,116,84,97,103,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,98,97,100,103,101,32,98,97,100,103,101,45,112,105,108,108,32,98,97,100,103,101,45,118,105,100,101,111,34,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,111,114,109,97,116,84,97,103,46,97,112,112,101,110,100,67,104,105,108,100,40,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,84,101,120,116,78,111,100,101,40,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,118,105,100,101,111,99,34,93,46,114,101,112,108,97,99,101,40,34,32,34,44,32,34,34,41,41,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,97,103,115,46,112,117,115,104,40,102,111,114,109,97,116,84,97,103,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,32,32,32,32,98,114,101,97,107,59,10,32,32,32,32,32,32,32,32,99,97,115,101,32,34,97,117,100,105,111,34,58,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,104,105,116,91,34,95,115,111,117,114,99,101,34,93,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,34,97,117,100,105,111,99,34,41,32,38,38,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,97,117,100,105,111,99,34,93,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,108,101,116,32,102,111,114,109,97,116,84,97,103,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,115,112,97,110,34,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,111,114,109,97,116,84,97,103,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,98,97,100,103,101,32,98,97,100,103,101,45,112,105,108,108,32,98,97,100,103,101,45,97,117,100,105,111,34,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,111,114,109,97,116,84,97,103,46,97,112,112,101,110,100,67,104,105,108,100,40,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,84,101,120,116,78,111,100,101,40,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,97,117,100,105,111,99,34,93,41,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,97,103,115,46,112,117,115,104,40,102,111,114,109,97,116,84,97,103,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,32,32,32,32,98,114,101,97,107,59,10,32,32,32,32,125,10,32,32,32,32,47,47,32,85,115,101,114,32,116,97,103,115,10,32,32,32,32,105,102,32,40,104,105,116,91,34,95,115,111,117,114,99,101,34,93,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,34,116,97,103,34,41,41,32,123,10,32,32,32,32,32,32,32,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,116,97,103,34,93,46,102,111,114,69,97,99,104,40,116,97,103,32,61,62,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,116,97,103,115,46,112,117,115,104,40,109,97,107,101,85,115,101,114,84,97,103,40,116,97,103,44,32,104,105,116,41,41,59,10,32,32,32,32,32,32,32,32,125,41,10,32,32,32,32,125,10,10,32,32,32,32,114,101,116,117,114,110,32,116,97,103,115,10,125,10,10,102,117,110,99,116,105,111,110,32,109,97,107,101,85,115,101,114,84,97,103,40,116,97,103,44,32,104,105,116,41,32,123,10,32,32,32,32,99,111,110,115,116,32,117,115,101,114,84,97,103,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,115,112,97,110,34,41,59,10,32,32,32,32,117,115,101,114,84,97,103,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,98,97,100,103,101,32,98,97,100,103,101,45,112,105,108,108,32,98,97,100,103,101,45,117,115,101,114,34,41,59,10,32,32,32,32,117,115,101,114,84,97,103,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,116,105,116,108,101,34,44,32,116,97,103,46,115,112,108,105,116,40,34,35,34,41,91,48,93,41,10,10,32,32,32,32,99,111,110,115,116,32,116,111,107,101,110,115,32,61,32,116,97,103,46,115,112,108,105,116,40,34,35,34,41,59,10,10,32,32,32,32,105,102,32,40,116,111,107,101,110,115,46,108,101,110,103,116,104,32,62,32,49,41,32,123,10,32,32,32,32,32,32,32,32,99,111,110,115,116,32,98,103,32,61,32,34,35,34,32,43,32,116,111,107,101,110,115,91,49,93,59,10,32,32,32,32,32,32,32,32,99,111,110,115,116,32,102,103,32,61,32,108,117,109,40,116,111,107,101,110,115,91,49,93,41,32,62,32,53,48,32,63,32,34,35,48,48,48,34,32,58,32,34,35,102,102,102,34,59,10,32,32,32,32,32,32,32,32,117,115,101,114,84,97,103,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,115,116,121,108,101,34,44,32,96,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,36,123,98,103,125,59,32,99,111,108,111,114,58,32,36,123,102,103,125,96,41,59,10,32,32,32,32,125,10,10,32,32,32,32,99,111,110,115,116,32,100,101,108,101,116,101,66,117,116,116,111,110,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,115,112,97,110,34,41,59,10,32,32,32,32,100,101,108,101,116,101,66,117,116,116,111,110,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,98,97,100,103,101,32,98,97,100,103,101,45,112,105,108,108,32,98,97,100,103,101,45,100,101,108,101,116,101,34,41,10,32,32,32,32,100,101,108,101,116,101,66,117,116,116,111,110,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,116,105,116,108,101,34,44,32,34,68,101,108,101,116,101,32,116,97,103,34,41,10,32,32,32,32,100,101,108,101,116,101,66,117,116,116,111,110,46,97,112,112,101,110,100,67,104,105,108,100,40,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,84,101,120,116,78,111,100,101,40,34,88,34,41,41,59,10,32,32,32,32,100,101,108,101,116,101,66,117,116,116,111,110,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,99,108,105,99,107,34,44,32,40,41,32,61,62,32,123,10,32,32,32,32,32,32,32,32,100,101,108,101,116,101,84,97,103,40,116,97,103,44,32,104,105,116,41,46,116,104,101,110,40,40,41,32,61,62,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,117,115,101,114,84,97,103,46,114,101,109,111,118,101,40,41,59,10,32,32,32,32,32,32,32,32,125,41,59,10,32,32,32,32,125,41,59,10,32,32,32,32,117,115,101,114,84,97,103,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,109,111,117,115,101,101,110,116,101,114,34,44,32,40,41,32,61,62,32,117,115,101,114,84,97,103,46,97,112,112,101,110,100,67,104,105,108,100,40,100,101,108,101,116,101,66,117,116,116,111,110,41,41,59,10,32,32,32,32,117,115,101,114,84,97,103,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,109,111,117,115,101,108,101,97,118,101,34,44,32,40,41,32,61,62,32,100,101,108,101,116,101,66,117,116,116,111,110,46,114,101,109,111,118,101,40,41,41,59,10,10,32,32,32,32,99,111,110,115,116,32,110,97,109,101,32,61,32,116,111,107,101,110,115,91,48,93,46,115,112,108,105,116,40,34,46,34,41,91,116,111,107,101,110,115,91,48,93,46,115,112,108,105,116,40,34,46,34,41,46,108,101,110,103,116,104,32,45,32,49,93,59,10,32,32,32,32,117,115,101,114,84,97,103,46,97,112,112,101,110,100,67,104,105,108,100,40,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,84,101,120,116,78,111,100,101,40,110,97,109,101,41,41,59,10,10,32,32,32,32,114,101,116,117,114,110,32,117,115,101,114,84,97,103,59,10,125,10,10,102,117,110,99,116,105,111,110,32,105,110,102,111,66,117,116,116,111,110,67,98,40,104,105,116,41,32,123,10,32,32,32,32,114,101,116,117,114,110,32,40,41,32,61,62,32,123,10,32,32,32,32,32,32,32,32,103,101,116,68,111,99,117,109,101,110,116,73,110,102,111,40,104,105,116,91,34,95,105,100,34,93,41,46,116,104,101,110,40,100,111,99,32,61,62,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,36,40,34,35,109,111,100,97,108,45,116,105,116,108,101,34,41,46,116,101,120,116,40,100,111,99,91,34,110,97,109,101,34,93,32,43,32,101,120,116,40,104,105,116,41,41,59,10,10,32,32,32,32,32,32,32,32,32,32,32,32,99,111,110,115,116,32,116,98,111,100,121,32,61,32,36,40,34,60,116,98,111,100,121,62,34,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,36,40,34,35,109,111,100,97,108,45,98,111,100,121,34,41,46,101,109,112,116,121,40,41,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,46,97,112,112,101,110,100,40,36,40,34,60,116,97,98,108,101,32,99,108,97,115,115,61,39,116,97,98,108,101,32,116,97,98,108,101,45,115,109,39,62,34,41,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,46,97,112,112,101,110,100,40,36,40,34,60,116,104,101,97,100,62,34,41,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,46,97,112,112,101,110,100,40,36,40,34,60,116,114,62,34,41,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,46,97,112,112,101,110,100,40,36,40,34,60,116,104,62,34,41,46,116,101,120,116,40,34,70,105,101,108,100,34,41,41,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,46,97,112,112,101,110,100,40,36,40,34,60,116,104,62,34,41,46,116,101,120,116,40,34,86,97,108,117,101,34,41,41,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,41,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,41,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,46,97,112,112,101,110,100,40,116,98,111,100,121,41,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,41,59,10,10,32,32,32,32,32,32,32,32,32,32,32,32,99,111,110,115,116,32,100,105,115,112,108,97,121,70,105,101,108,100,115,32,61,32,110,101,119,32,83,101,116,40,91,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,34,109,105,109,101,34,44,32,34,115,105,122,101,34,44,32,34,109,116,105,109,101,34,44,32,34,112,97,116,104,34,44,32,34,116,105,116,108,101,34,44,32,34,119,105,100,116,104,34,44,32,34,104,101,105,103,104,116,34,44,32,34,100,117,114,97,116,105,111,110,34,44,32,34,97,117,100,105,111,99,34,44,32,34,118,105,100,101,111,99,34,44,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,34,98,105,116,114,97,116,101,34,44,32,34,97,114,116,105,115,116,34,44,32,34,97,108,98,117,109,34,44,32,34,97,108,98,117,109,95,97,114,116,105,115,116,34,44,32,34,103,101,110,114,101,34,44,32,34,116,105,116,108,101,34,44,32,34,102,111,110,116,95,110,97,109,101,34,44,32,34,116,97,103,34,44,32,34,97,117,116,104,111,114,34,44,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,34,109,111,100,105,102,105,101,100,95,98,121,34,10,32,32,32,32,32,32,32,32,32,32,32,32,93,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,79,98,106,101,99,116,46,107,101,121,115,40,100,111,99,41,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,46,102,105,108,116,101,114,40,107,101,121,32,61,62,32,107,101,121,46,115,116,97,114,116,115,87,105,116,104,40,34,95,107,101,121,119,111,114,100,46,34,41,32,124,124,32,107,101,121,46,115,116,97,114,116,115,87,105,116,104,40,34,95,116,101,120,116,46,34,41,32,124,124,32,100,105,115,112,108,97,121,70,105,101,108,100,115,46,104,97,115,40,107,101,121,41,32,124,124,32,107,101,121,46,115,116,97,114,116,115,87,105,116,104,40,34,101,120,105,102,95,34,41,41,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,46,102,111,114,69,97,99,104,40,107,101,121,32,61,62,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,98,111,100,121,46,97,112,112,101,110,100,40,36,40,34,60,116,114,62,34,41,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,46,97,112,112,101,110,100,40,36,40,34,60,116,100,62,34,41,46,116,101,120,116,40,107,101,121,41,41,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,46,97,112,112,101,110,100,40,36,40,34,60,116,100,62,34,41,46,116,101,120,116,40,100,111,99,91,107,101,121,93,41,41,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,100,111,99,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,34,99,111,110,116,101,110,116,34,41,32,38,38,32,100,111,99,91,34,99,111,110,116,101,110,116,34,93,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,36,40,34,35,109,111,100,97,108,45,98,111,100,121,34,41,46,97,112,112,101,110,100,40,36,40,34,60,100,105,118,32,99,108,97,115,115,61,39,99,111,110,116,101,110,116,45,100,105,118,39,62,34,41,46,116,101,120,116,40,100,111,99,91,34,99,111,110,116,101,110,116,34,93,41,41,10,32,32,32,32,32,32,32,32,32,32,32,32,125,10,10,32,32,32,32,32,32,32,32,32,32,32,32,36,40,34,35,109,111,100,97,108,34,41,46,109,111,100,97,108,40,41,59,10,32,32,32,32,32,32,32,32,125,41,59,10,32,32,32,32,125,10,125,10,10,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,68,111,99,67,97,114,100,40,104,105,116,41,32,123,10,32,32,32,32,108,101,116,32,100,111,99,67,97,114,100,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,100,111,99,67,97,114,100,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,99,97,114,100,34,41,59,10,10,32,32,32,32,108,101,116,32,100,111,99,67,97,114,100,66,111,100,121,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,100,111,99,67,97,114,100,66,111,100,121,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,99,97,114,100,45,98,111,100,121,32,100,111,99,117,109,101,110,116,34,41,59,10,10,32,32,32,32,47,47,84,105,116,108,101,10,32,32,32,32,108,101,116,32,116,105,116,108,101,32,61,32,109,97,107,101,84,105,116,108,101,40,104,105,116,41,59,10,32,32,32,32,108,101,116,32,105,115,83,117,98,68,111,99,117,109,101,110,116,32,61,32,102,97,108,115,101,59,10,10,32,32,32,32,108,101,116,32,108,105,110,107,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,97,34,41,59,10,32,32,32,32,108,105,110,107,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,104,114,101,102,34,44,32,34,102,47,34,32,43,32,104,105,116,91,34,95,105,100,34,93,41,59,10,32,32,32,32,108,105,110,107,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,116,97,114,103,101,116,34,44,32,34,95,98,108,97,110,107,34,41,59,10,32,32,32,32,108,105,110,107,46,115,116,121,108,101,46,109,97,120,87,105,100,116,104,32,61,32,34,99,97,108,99,40,49,48,48,37,32,45,32,49,46,50,114,101,109,41,34,59,10,32,32,32,32,108,105,110,107,46,97,112,112,101,110,100,67,104,105,108,100,40,116,105,116,108,101,41,59,10,10,32,32,32,32,105,102,32,40,104,105,116,91,34,95,115,111,117,114,99,101,34,93,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,34,112,97,114,101,110,116,34,41,41,32,123,10,32,32,32,32,32,32,32,32,100,111,99,67,97,114,100,46,99,108,97,115,115,76,105,115,116,46,97,100,100,40,34,115,117,98,45,100,111,99,117,109,101,110,116,34,41,59,10,32,32,32,32,32,32,32,32,105,115,83,117,98,68,111,99,117,109,101,110,116,32,61,32,116,114,117,101,59,10,32,32,32,32,125,10,10,32,32,32,32,108,101,116,32,116,97,103,67,111,110,116,97,105,110,101,114,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,116,97,103,67,111,110,116,97,105,110,101,114,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,99,97,114,100,45,116,101,120,116,34,41,59,10,10,32,32,32,32,105,102,32,40,104,105,116,91,34,95,115,111,117,114,99,101,34,93,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,34,109,105,109,101,34,41,32,38,38,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,109,105,109,101,34,93,32,33,61,61,32,110,117,108,108,41,32,123,10,10,32,32,32,32,32,32,32,32,108,101,116,32,116,104,117,109,98,110,97,105,108,79,118,101,114,108,97,121,32,61,32,110,117,108,108,59,10,32,32,32,32,32,32,32,32,108,101,116,32,105,109,103,87,114,97,112,112,101,114,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,32,32,32,32,105,109,103,87,114,97,112,112,101,114,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,115,116,121,108,101,34,44,32,34,112,111,115,105,116,105,111,110,58,32,114,101,108,97,116,105,118,101,34,41,59,10,32,32,32,32,32,32,32,32,105,109,103,87,114,97,112,112,101,114,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,105,109,103,45,119,114,97,112,112,101,114,34,41,59,10,10,32,32,32,32,32,32,32,32,108,101,116,32,109,105,109,101,67,97,116,101,103,111,114,121,32,61,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,109,105,109,101,34,93,46,115,112,108,105,116,40,34,47,34,41,91,48,93,59,10,10,32,32,32,32,32,32,32,32,47,47,84,104,117,109,98,110,97,105,108,10,32,32,32,32,32,32,32,32,108,101,116,32,116,104,117,109,98,110,97,105,108,32,61,32,109,97,107,101,84,104,117,109,98,110,97,105,108,40,109,105,109,101,67,97,116,101,103,111,114,121,44,32,104,105,116,44,32,105,109,103,87,114,97,112,112,101,114,44,32,102,97,108,115,101,41,59,10,10,32,32,32,32,32,32,32,32,47,47,84,104,117,109,98,110,97,105,108,32,111,118,101,114,108,97,121,10,32,32,32,32,32,32,32,32,115,119,105,116,99,104,32,40,109,105,109,101,67,97,116,101,103,111,114,121,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,34,105,109,97,103,101,34,58,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,117,109,98,110,97,105,108,79,118,101,114,108,97,121,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,117,109,98,110,97,105,108,79,118,101,114,108,97,121,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,99,97,114,100,45,105,109,103,45,111,118,101,114,108,97,121,34,41,59,10,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,82,101,115,111,108,117,116,105,111,110,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,104,105,116,91,34,95,115,111,117,114,99,101,34,93,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,34,119,105,100,116,104,34,41,32,38,38,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,119,105,100,116,104,34,93,32,62,32,51,50,32,38,38,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,104,101,105,103,104,116,34,93,32,62,32,51,50,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,108,101,116,32,114,101,115,111,108,117,116,105,111,110,66,97,100,103,101,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,115,112,97,110,34,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,115,111,108,117,116,105,111,110,66,97,100,103,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,98,97,100,103,101,32,98,97,100,103,101,45,114,101,115,111,108,117,116,105,111,110,34,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,104,105,116,91,34,95,115,111,117,114,99,101,34,93,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,34,119,105,100,116,104,34,41,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,115,111,108,117,116,105,111,110,66,97,100,103,101,46,97,112,112,101,110,100,67,104,105,108,100,40,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,84,101,120,116,78,111,100,101,40,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,119,105,100,116,104,34,93,32,43,32,34,120,34,32,43,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,104,101,105,103,104,116,34,93,41,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,117,109,98,110,97,105,108,79,118,101,114,108,97,121,46,97,112,112,101,110,100,67,104,105,108,100,40,114,101,115,111,108,117,116,105,111,110,66,97,100,103,101,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,10,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,72,111,118,101,114,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,116,104,117,109,98,110,97,105,108,32,38,38,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,118,105,100,101,111,99,34,93,32,61,61,61,32,34,103,105,102,34,32,38,38,32,33,105,115,83,117,98,68,111,99,117,109,101,110,116,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,103,105,102,79,118,101,114,40,116,104,117,109,98,110,97,105,108,44,32,104,105,116,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,98,114,101,97,107,59,10,10,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,34,118,105,100,101,111,34,58,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,68,117,114,97,116,105,111,110,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,104,105,116,91,34,95,115,111,117,114,99,101,34,93,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,34,100,117,114,97,116,105,111,110,34,41,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,117,109,98,110,97,105,108,79,118,101,114,108,97,121,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,117,109,98,110,97,105,108,79,118,101,114,108,97,121,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,99,97,114,100,45,105,109,103,45,111,118,101,114,108,97,121,34,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,111,110,115,116,32,100,117,114,97,116,105,111,110,66,97,100,103,101,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,115,112,97,110,34,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,100,117,114,97,116,105,111,110,66,97,100,103,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,98,97,100,103,101,32,98,97,100,103,101,45,114,101,115,111,108,117,116,105,111,110,34,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,100,117,114,97,116,105,111,110,66,97,100,103,101,46,97,112,112,101,110,100,67,104,105,108,100,40,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,84,101,120,116,78,111,100,101,40,104,117,109,97,110,84,105,109,101,40,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,100,117,114,97,116,105,111,110,34,93,41,41,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,117,109,98,110,97,105,108,79,118,101,114,108,97,121,46,97,112,112,101,110,100,67,104,105,108,100,40,100,117,114,97,116,105,111,110,66,97,100,103,101,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,125,10,10,32,32,32,32,32,32,32,32,47,47,32,84,97,103,115,10,32,32,32,32,32,32,32,32,108,101,116,32,116,97,103,115,32,61,32,103,101,116,84,97,103,115,40,104,105,116,44,32,109,105,109,101,67,97,116,101,103,111,114,121,41,59,10,32,32,32,32,32,32,32,32,102,111,114,32,40,108,101,116,32,105,32,61,32,48,59,32,105,32,60,32,116,97,103,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,116,97,103,67,111,110,116,97,105,110,101,114,46,97,112,112,101,110,100,67,104,105,108,100,40,116,97,103,115,91,105,93,41,59,10,32,32,32,32,32,32,32,32,125,10,10,32,32,32,32,32,32,32,32,47,47,67,111,110,116,101,110,116,10,32,32,32,32,32,32,32,32,108,101,116,32,99,111,110,116,101,110,116,72,108,32,61,32,103,101,116,67,111,110,116,101,110,116,72,105,103,104,108,105,103,104,116,40,104,105,116,41,59,10,32,32,32,32,32,32,32,32,105,102,32,40,99,111,110,116,101,110,116,72,108,32,33,61,61,32,117,110,100,101,102,105,110,101,100,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,99,111,110,115,116,32,99,111,110,116,101,110,116,68,105,118,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,99,111,110,116,101,110,116,68,105,118,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,99,111,110,116,101,110,116,45,100,105,118,34,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,99,111,110,116,101,110,116,68,105,118,46,105,110,115,101,114,116,65,100,106,97,99,101,110,116,72,84,77,76,40,39,97,102,116,101,114,98,101,103,105,110,39,44,32,99,111,110,116,101,110,116,72,108,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,100,111,99,67,97,114,100,46,97,112,112,101,110,100,67,104,105,108,100,40,99,111,110,116,101,110,116,68,105,118,41,59,10,32,32,32,32,32,32,32,32,125,10,10,32,32,32,32,32,32,32,32,105,102,32,40,116,104,117,109,98,110,97,105,108,32,33,61,61,32,110,117,108,108,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,100,111,99,67,97,114,100,46,97,112,112,101,110,100,67,104,105,108,100,40,105,109,103,87,114,97,112,112,101,114,41,59,10,32,32,32,32,32,32,32,32,125,10,10,32,32,32,32,32,32,32,32,47,47,65,117,100,105,111,10,32,32,32,32,32,32,32,32,105,102,32,40,109,105,109,101,67,97,116,101,103,111,114,121,32,61,61,61,32,34,97,117,100,105,111,34,32,38,38,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,34,97,117,100,105,111,99,34,41,32,38,38,32,33,105,115,83,117,98,68,111,99,117,109,101,110,116,41,32,123,10,10,32,32,32,32,32,32,32,32,32,32,32,32,108,101,116,32,97,117,100,105,111,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,97,117,100,105,111,34,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,97,117,100,105,111,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,112,114,101,108,111,97,100,34,44,32,34,110,111,110,101,34,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,97,117,100,105,111,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,97,117,100,105,111,45,102,105,116,32,102,105,116,34,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,97,117,100,105,111,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,111,110,116,114,111,108,115,34,44,32,34,34,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,97,117,100,105,111,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,116,121,112,101,34,44,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,109,105,109,101,34,93,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,97,117,100,105,111,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,115,114,99,34,44,32,34,102,47,34,32,43,32,104,105,116,91,34,95,105,100,34,93,41,59,10,10,32,32,32,32,32,32,32,32,32,32,32,32,100,111,99,67,97,114,100,46,97,112,112,101,110,100,67,104,105,108,100,40,97,117,100,105,111,41,10,32,32,32,32,32,32,32,32,125,10,10,32,32,32,32,32,32,32,32,105,102,32,40,116,104,117,109,98,110,97,105,108,79,118,101,114,108,97,121,32,33,61,61,32,110,117,108,108,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,105,109,103,87,114,97,112,112,101,114,46,97,112,112,101,110,100,67,104,105,108,100,40,116,104,117,109,98,110,97,105,108,79,118,101,114,108,97,121,41,59,10,32,32,32,32,32,32,32,32,125,10,32,32,32,32,125,10,10,32,32,32,32,47,47,83,105,122,101,32,116,97,103,10,32,32,32,32,108,101,116,32,115,105,122,101,84,97,103,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,115,109,97,108,108,34,41,59,10,32,32,32,32,115,105,122,101,84,97,103,46,97,112,112,101,110,100,67,104,105,108,100,40,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,84,101,120,116,78,111,100,101,40,104,117,109,97,110,70,105,108,101,83,105,122,101,40,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,115,105,122,101,34,93,41,41,41,59,10,32,32,32,32,115,105,122,101,84,97,103,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,116,101,120,116,45,109,117,116,101,100,34,41,59,10,32,32,32,32,116,97,103,67,111,110,116,97,105,110,101,114,46,97,112,112,101,110,100,67,104,105,108,100,40,115,105,122,101,84,97,103,41,59,10,10,32,32,32,32,99,111,110,115,116,32,116,105,116,108,101,87,114,97,112,112,101,114,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,116,105,116,108,101,87,114,97,112,112,101,114,46,115,116,121,108,101,46,100,105,115,112,108,97,121,32,61,32,34,102,108,101,120,34,59,10,10,32,32,32,32,99,111,110,115,116,32,105,110,102,111,66,117,116,116,111,110,32,61,32,109,97,107,101,73,110,102,111,66,117,116,116,111,110,40,104,105,116,41,59,10,10,32,32,32,32,116,105,116,108,101,87,114,97,112,112,101,114,46,97,112,112,101,110,100,67,104,105,108,100,40,105,110,102,111,66,117,116,116,111,110,41,59,10,32,32,32,32,116,105,116,108,101,87,114,97,112,112,101,114,46,97,112,112,101,110,100,67,104,105,108,100,40,108,105,110,107,41,59,10,10,32,32,32,32,100,111,99,67,97,114,100,66,111,100,121,46,97,112,112,101,110,100,67,104,105,108,100,40,116,105,116,108,101,87,114,97,112,112,101,114,41,59,10,32,32,32,32,100,111,99,67,97,114,100,46,97,112,112,101,110,100,67,104,105,108,100,40,100,111,99,67,97,114,100,66,111,100,121,41,59,10,10,32,32,32,32,100,111,99,67,97,114,100,66,111,100,121,46,97,112,112,101,110,100,67,104,105,108,100,40,116,97,103,67,111,110,116,97,105,110,101,114,41,59,10,10,32,32,32,32,97,116,116,97,99,104,84,97,103,67,111,110,116,97,105,110,101,114,69,118,101,110,116,76,105,115,116,101,110,101,114,40,116,97,103,67,111,110,116,97,105,110,101,114,44,32,104,105,116,41,59,10,32,32,32,32,114,101,116,117,114,110,32,100,111,99,67,97,114,100,59,10,125,10,10,102,117,110,99,116,105,111,110,32,97,116,116,97,99,104,84,97,103,67,111,110,116,97,105,110,101,114,69,118,101,110,116,76,105,115,116,101,110,101,114,40,116,97,103,67,111,110,116,97,105,110,101,114,44,32,104,105,116,41,32,123,10,32,32,32,32,99,111,110,115,116,32,115,105,122,101,84,97,103,32,61,32,65,114,114,97,121,46,102,114,111,109,40,116,97,103,67,111,110,116,97,105,110,101,114,46,99,104,105,108,100,114,101,110,41,46,102,105,110,100,40,99,104,105,108,100,32,61,62,32,99,104,105,108,100,46,116,97,103,78,97,109,101,32,61,61,61,32,34,83,77,65,76,76,34,41,59,10,10,32,32,32,32,99,111,110,115,116,32,97,100,100,84,97,103,66,117,116,116,111,110,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,115,112,97,110,34,41,59,10,32,32,32,32,97,100,100,84,97,103,66,117,116,116,111,110,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,98,97,100,103,101,32,98,97,100,103,101,45,112,105,108,108,32,97,100,100,45,116,97,103,45,98,117,116,116,111,110,34,41,59,10,32,32,32,32,97,100,100,84,97,103,66,117,116,116,111,110,46,97,112,112,101,110,100,67,104,105,108,100,40,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,84,101,120,116,78,111,100,101,40,34,43,65,100,100,34,41,41,59,10,10,32,32,32,32,116,97,103,67,111,110,116,97,105,110,101,114,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,109,111,117,115,101,101,110,116,101,114,34,44,32,40,41,32,61,62,32,116,97,103,67,111,110,116,97,105,110,101,114,46,105,110,115,101,114,116,66,101,102,111,114,101,40,97,100,100,84,97,103,66,117,116,116,111,110,44,32,115,105,122,101,84,97,103,41,41,59,10,32,32,32,32,116,97,103,67,111,110,116,97,105,110,101,114,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,109,111,117,115,101,108,101,97,118,101,34,44,32,40,41,32,61,62,32,97,100,100,84,97,103,66,117,116,116,111,110,46,114,101,109,111,118,101,40,41,41,59,10,10,32,32,32,32,97,100,100,84,97,103,66,117,116,116,111,110,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,99,108,105,99,107,34,44,32,40,41,32,61,62,32,123,10,32,32,32,32,32,32,32,32,116,97,103,66,97,114,46,118,97,108,117,101,32,61,32,34,34,59,10,32,32,32,32,32,32,32,32,99,117,114,114,101,110,116,68,111,99,84,111,84,97,103,32,61,32,104,105,116,59,10,32,32,32,32,32,32,32,32,99,117,114,114,101,110,116,84,97,103,67,97,108,108,98,97,99,107,32,61,32,116,97,103,32,61,62,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,116,97,103,67,111,110,116,97,105,110,101,114,46,105,110,115,101,114,116,66,101,102,111,114,101,40,109,97,107,101,85,115,101,114,84,97,103,40,116,97,103,44,32,104,105,116,41,44,32,115,105,122,101,84,97,103,41,59,10,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,36,40,34,35,116,97,103,77,111,100,97,108,34,41,46,109,111,100,97,108,40,34,115,104,111,119,34,41,59,10,32,32,32,32,32,32,32,32,116,97,103,66,97,114,46,102,111,99,117,115,40,41,59,10,32,32,32,32,125,41,59,10,125,10,10,102,117,110,99,116,105,111,110,32,109,97,107,101,84,104,117,109,98,110,97,105,108,40,109,105,109,101,67,97,116,101,103,111,114,121,44,32,104,105,116,44,32,105,109,103,87,114,97,112,112,101,114,44,32,115,109,97,108,108,41,32,123,10,10,32,32,32,32,105,102,32,40,33,104,105,116,91,34,95,115,111,117,114,99,101,34,93,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,34,116,104,117,109,98,110,97,105,108,34,41,41,32,123,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,110,117,108,108,59,10,32,32,32,32,125,10,10,32,32,32,32,108,101,116,32,116,104,117,109,98,110,97,105,108,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,105,109,103,34,41,59,10,32,32,32,32,105,102,32,40,115,109,97,108,108,41,32,123,10,32,32,32,32,32,32,32,32,116,104,117,109,98,110,97,105,108,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,102,105,116,45,115,109,34,41,59,10,32,32,32,32,125,32,101,108,115,101,32,123,10,32,32,32,32,32,32,32,32,105,102,32,40,104,105,116,91,34,95,115,111,117,114,99,101,34,93,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,34,112,97,114,101,110,116,34,41,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,116,104,117,109,98,110,97,105,108,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,99,97,114,100,45,105,109,103,45,116,111,112,32,102,105,116,32,105,109,103,45,112,97,100,100,105,110,103,34,41,59,10,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,116,104,117,109,98,110,97,105,108,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,99,97,114,100,45,105,109,103,45,116,111,112,32,102,105,116,34,41,59,10,32,32,32,32,32,32,32,32,125,10,32,32,32,32,125,10,32,32,32,32,116,104,117,109,98,110,97,105,108,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,115,114,99,34,44,32,96,116,47,36,123,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,105,110,100,101,120,34,93,125,47,36,123,104,105,116,91,34,95,105,100,34,93,125,96,41,59,10,10,32,32,32,32,105,102,32,40,115,104,111,117,108,100,68,105,115,112,108,97,121,82,97,119,73,109,97,103,101,40,104,105,116,41,41,32,123,10,32,32,32,32,32,32,32,32,116,104,117,109,98,110,97,105,108,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,99,108,105,99,107,34,44,32,40,41,32,61,62,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,99,111,110,115,116,32,108,32,61,32,108,105,116,121,40,96,102,47,36,123,104,105,116,91,34,95,105,100,34,93,125,35,46,106,112,103,96,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,119,105,110,100,111,119,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,115,99,114,111,108,108,34,44,32,40,41,32,61,62,32,108,46,99,108,111,115,101,40,41,41,59,10,32,32,32,32,32,32,32,32,125,41,59,10,10,32,32,32,32,32,32,32,32,116,104,117,109,98,110,97,105,108,46,99,108,97,115,115,76,105,115,116,46,97,100,100,40,34,112,111,105,110,116,101,114,34,41,59,10,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,115,104,111,117,108,100,80,108,97,121,86,105,100,101,111,40,104,105,116,41,41,32,123,10,32,32,32,32,32,32,32,32,116,104,117,109,98,110,97,105,108,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,99,108,105,99,107,34,44,32,40,41,32,61,62,32,108,105,116,121,40,96,102,47,36,123,104,105,116,91,34,95,105,100,34,93,125,35,46,109,112,52,96,41,41,59,10,10,32,32,32,32,32,32,32,32,116,104,117,109,98,110,97,105,108,46,99,108,97,115,115,76,105,115,116,46,97,100,100,40,34,112,111,105,110,116,101,114,34,41,59,10,10,32,32,32,32,32,32,32,32,105,102,32,40,33,115,109,97,108,108,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,99,111,110,115,116,32,112,108,97,121,79,118,101,114,108,97,121,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,112,108,97,121,79,118,101,114,108,97,121,46,105,110,110,101,114,72,84,77,76,32,61,32,39,60,115,118,103,32,118,105,101,119,66,111,120,61,34,48,32,48,32,52,57,52,46,57,52,50,32,52,57,52,46,57,52,50,34,32,120,109,108,110,115,61,34,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,115,118,103,34,62,60,112,97,116,104,32,100,61,34,109,51,53,46,51,53,51,32,48,32,52,50,52,46,50,51,54,32,50,52,55,46,52,55,49,45,52,50,52,46,50,51,54,32,50,52,55,46,52,55,49,122,34,47,62,60,47,115,118,103,62,39,59,10,32,32,32,32,32,32,32,32,32,32,32,32,112,108,97,121,79,118,101,114,108,97,121,46,99,108,97,115,115,76,105,115,116,46,97,100,100,40,34,112,108,97,121,34,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,105,109,103,87,114,97,112,112,101,114,46,112,114,101,112,101,110,100,40,112,108,97,121,79,118,101,114,108,97,121,41,59,10,32,32,32,32,32,32,32,32,125,10,32,32,32,32,125,10,10,32,32,32,32,99,111,110,115,116,32,112,108,97,99,101,104,111,108,100,101,114,32,61,32,109,97,107,101,80,108,97,99,101,104,111,108,100,101,114,40,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,119,105,100,116,104,34,93,44,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,104,101,105,103,104,116,34,93,44,32,115,109,97,108,108,41,59,10,32,32,32,32,105,109,103,87,114,97,112,112,101,114,46,97,112,112,101,110,100,67,104,105,108,100,40,112,108,97,99,101,104,111,108,100,101,114,41,59,10,10,32,32,32,32,116,104,117,109,98,110,97,105,108,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,101,114,114,111,114,34,44,32,40,41,32,61,62,32,123,10,32,32,32,32,32,32,32,32,105,109,103,87,114,97,112,112,101,114,46,114,101,109,111,118,101,40,41,59,10,32,32,32,32,125,41,59,10,32,32,32,32,116,104,117,109,98,110,97,105,108,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,108,111,97,100,34,44,32,40,41,32,61,62,32,123,10,32,32,32,32,32,32,32,32,112,108,97,99,101,104,111,108,100,101,114,46,114,101,109,111,118,101,40,41,59,10,32,32,32,32,32,32,32,32,105,109,103,87,114,97,112,112,101,114,46,97,112,112,101,110,100,67,104,105,108,100,40,116,104,117,109,98,110,97,105,108,41,59,10,32,32,32,32,125,41,59,10,10,32,32,32,32,114,101,116,117,114,110,32,116,104,117,109,98,110,97,105,108,59,10,125,10,10,102,117,110,99,116,105,111,110,32,109,97,107,101,73,110,102,111,66,117,116,116,111,110,40,104,105,116,41,32,123,10,32,32,32,32,99,111,110,115,116,32,105,110,102,111,66,117,116,116,111,110,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,115,112,97,110,34,41,59,10,32,32,32,32,105,110,102,111,66,117,116,116,111,110,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,105,110,102,111,45,105,99,111,110,34,41,59,10,32,32,32,32,105,110,102,111,66,117,116,116,111,110,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,99,108,105,99,107,34,44,32,105,110,102,111,66,117,116,116,111,110,67,98,40,104,105,116,41,41,59,10,32,32,32,32,114,101,116,117,114,110,32,105,110,102,111,66,117,116,116,111,110,59,10,125,10,10,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,68,111,99,76,105,110,101,40,104,105,116,41,32,123,10,10,32,32,32,32,99,111,110,115,116,32,109,105,109,101,32,61,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,109,105,109,101,34,93,59,10,32,32,32,32,108,101,116,32,109,105,109,101,67,97,116,101,103,111,114,121,32,61,32,109,105,109,101,32,63,32,109,105,109,101,46,115,112,108,105,116,40,34,47,34,41,91,48,93,32,58,32,110,117,108,108,59,10,32,32,32,32,108,101,116,32,116,97,103,115,32,61,32,103,101,116,84,97,103,115,40,104,105,116,44,32,109,105,109,101,67,97,116,101,103,111,114,121,41,59,10,10,32,32,32,32,108,101,116,32,105,109,103,87,114,97,112,112,101,114,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,105,109,103,87,114,97,112,112,101,114,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,97,108,105,103,110,45,115,101,108,102,45,115,116,97,114,116,32,109,114,45,49,32,119,114,97,112,112,101,114,45,115,109,34,41,59,10,10,32,32,32,32,108,101,116,32,109,101,100,105,97,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,109,101,100,105,97,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,109,101,100,105,97,34,41,59,10,10,32,32,32,32,99,111,110,115,116,32,108,105,110,101,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,108,105,110,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,32,102,108,101,120,45,99,111,108,117,109,110,32,97,108,105,103,110,45,105,116,101,109,115,45,115,116,97,114,116,34,41,59,10,10,32,32,32,32,105,102,32,40,104,105,116,91,34,95,115,111,117,114,99,101,34,93,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,34,112,97,114,101,110,116,34,41,41,32,123,10,32,32,32,32,32,32,32,32,108,105,110,101,46,99,108,97,115,115,76,105,115,116,46,97,100,100,40,34,115,117,98,45,100,111,99,117,109,101,110,116,34,41,59,10,32,32,32,32,125,10,10,32,32,32,32,99,111,110,115,116,32,105,110,102,111,66,117,116,116,111,110,32,61,32,109,97,107,101,73,110,102,111,66,117,116,116,111,110,40,104,105,116,41,59,10,10,32,32,32,32,99,111,110,115,116,32,116,105,116,108,101,32,61,32,109,97,107,101,84,105,116,108,101,40,104,105,116,41,59,10,10,32,32,32,32,108,101,116,32,108,105,110,107,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,97,34,41,59,10,32,32,32,32,108,105,110,107,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,104,114,101,102,34,44,32,34,102,47,34,32,43,32,104,105,116,91,34,95,105,100,34,93,41,59,10,32,32,32,32,108,105,110,107,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,116,97,114,103,101,116,34,44,32,34,95,98,108,97,110,107,34,41,59,10,32,32,32,32,108,105,110,107,46,115,116,121,108,101,46,109,97,120,87,105,100,116,104,32,61,32,34,99,97,108,99,40,49,48,48,37,32,45,32,49,46,50,114,101,109,41,34,59,10,32,32,32,32,108,105,110,107,46,97,112,112,101,110,100,67,104,105,108,100,40,116,105,116,108,101,41,59,10,10,32,32,32,32,99,111,110,115,116,32,116,105,116,108,101,68,105,118,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,10,32,32,32,32,99,111,110,115,116,32,116,105,116,108,101,87,114,97,112,112,101,114,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,116,105,116,108,101,87,114,97,112,112,101,114,46,115,116,121,108,101,46,100,105,115,112,108,97,121,32,61,32,34,102,108,101,120,34,59,10,32,32,32,32,116,105,116,108,101,87,114,97,112,112,101,114,46,97,112,112,101,110,100,67,104,105,108,100,40,105,110,102,111,66,117,116,116,111,110,41,59,10,32,32,32,32,116,105,116,108,101,87,114,97,112,112,101,114,46,97,112,112,101,110,100,67,104,105,108,100,40,108,105,110,107,41,59,10,10,32,32,32,32,116,105,116,108,101,68,105,118,46,97,112,112,101,110,100,67,104,105,108,100,40,116,105,116,108,101,87,114,97,112,112,101,114,41,59,10,10,32,32,32,32,108,105,110,101,46,97,112,112,101,110,100,67,104,105,108,100,40,109,101,100,105,97,41,59,10,10,32,32,32,32,108,101,116,32,116,104,117,109,98,110,97,105,108,32,61,32,109,97,107,101,84,104,117,109,98,110,97,105,108,40,109,105,109,101,67,97,116,101,103,111,114,121,44,32,104,105,116,44,32,105,109,103,87,114,97,112,112,101,114,44,32,116,114,117,101,41,59,10,32,32,32,32,105,102,32,40,116,104,117,109,98,110,97,105,108,41,32,123,10,32,32,32,32,32,32,32,32,109,101,100,105,97,46,97,112,112,101,110,100,67,104,105,108,100,40,105,109,103,87,114,97,112,112,101,114,41,59,10,32,32,32,32,32,32,32,32,116,105,116,108,101,68,105,118,46,115,116,121,108,101,46,109,97,120,87,105,100,116,104,32,61,32,34,99,97,108,99,40,49,48,48,37,32,45,32,54,52,112,120,41,34,59,10,32,32,32,32,125,32,101,108,115,101,32,123,10,32,32,32,32,32,32,32,32,116,105,116,108,101,68,105,118,46,115,116,121,108,101,46,109,97,120,87,105,100,116,104,32,61,32,34,49,48,48,37,34,59,10,32,32,32,32,125,10,32,32,32,32,109,101,100,105,97,46,97,112,112,101,110,100,67,104,105,108,100,40,116,105,116,108,101,68,105,118,41,59,10,10,32,32,32,32,47,47,32,67,111,110,116,101,110,116,10,32,32,32,32,108,101,116,32,99,111,110,116,101,110,116,72,108,32,61,32,103,101,116,67,111,110,116,101,110,116,72,105,103,104,108,105,103,104,116,40,104,105,116,41,59,10,32,32,32,32,105,102,32,40,99,111,110,116,101,110,116,72,108,32,33,61,61,32,117,110,100,101,102,105,110,101,100,41,32,123,10,32,32,32,32,32,32,32,32,99,111,110,115,116,32,99,111,110,116,101,110,116,68,105,118,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,32,32,32,32,99,111,110,116,101,110,116,68,105,118,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,99,111,110,116,101,110,116,45,100,105,118,34,41,59,10,32,32,32,32,32,32,32,32,99,111,110,116,101,110,116,68,105,118,46,105,110,115,101,114,116,65,100,106,97,99,101,110,116,72,84,77,76,40,34,97,102,116,101,114,98,101,103,105,110,34,44,32,99,111,110,116,101,110,116,72,108,41,59,10,32,32,32,32,32,32,32,32,116,105,116,108,101,68,105,118,46,97,112,112,101,110,100,67,104,105,108,100,40,99,111,110,116,101,110,116,68,105,118,41,59,10,32,32,32,32,125,10,10,32,32,32,32,108,101,116,32,112,97,116,104,76,105,110,101,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,112,97,116,104,76,105,110,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,112,97,116,104,45,114,111,119,34,41,59,10,10,32,32,32,32,108,101,116,32,112,97,116,104,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,112,97,116,104,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,112,97,116,104,45,108,105,110,101,34,41,59,10,32,32,32,32,112,97,116,104,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,116,105,116,108,101,34,44,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,112,97,116,104,34,93,32,43,32,34,47,34,41,59,10,10,32,32,32,32,99,111,110,115,116,32,112,97,116,104,72,105,103,104,108,105,103,104,116,32,61,32,103,101,116,80,97,116,104,72,105,103,104,108,105,103,104,116,40,104,105,116,41,59,10,32,32,32,32,105,102,32,40,112,97,116,104,72,105,103,104,108,105,103,104,116,41,32,123,10,32,32,32,32,32,32,32,32,112,97,116,104,46,105,110,115,101,114,116,65,100,106,97,99,101,110,116,72,84,77,76,40,34,97,102,116,101,114,98,101,103,105,110,34,44,32,112,97,116,104,72,105,103,104,108,105,103,104,116,32,43,32,34,47,34,41,59,10,32,32,32,32,125,32,101,108,115,101,32,123,10,32,32,32,32,32,32,32,32,112,97,116,104,46,97,112,112,101,110,100,67,104,105,108,100,40,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,84,101,120,116,78,111,100,101,40,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,112,97,116,104,34,93,32,43,32,34,47,34,41,41,59,10,32,32,32,32,125,10,10,32,32,32,32,108,101,116,32,116,97,103,67,111,110,116,97,105,110,101,114,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,116,97,103,67,111,110,116,97,105,110,101,114,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,116,97,103,45,99,111,110,116,97,105,110,101,114,34,41,59,10,10,32,32,32,32,102,111,114,32,40,108,101,116,32,105,32,61,32,48,59,32,105,32,60,32,116,97,103,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,10,32,32,32,32,32,32,32,32,116,97,103,67,111,110,116,97,105,110,101,114,46,97,112,112,101,110,100,67,104,105,108,100,40,116,97,103,115,91,105,93,41,59,10,32,32,32,32,125,10,10,32,32,32,32,47,47,83,105,122,101,32,116,97,103,10,32,32,32,32,108,101,116,32,115,105,122,101,84,97,103,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,115,109,97,108,108,34,41,59,10,32,32,32,32,115,105,122,101,84,97,103,46,97,112,112,101,110,100,67,104,105,108,100,40,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,84,101,120,116,78,111,100,101,40,104,117,109,97,110,70,105,108,101,83,105,122,101,40,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,115,105,122,101,34,93,41,41,41,59,10,32,32,32,32,115,105,122,101,84,97,103,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,116,101,120,116,45,109,117,116,101,100,34,41,59,10,32,32,32,32,116,97,103,67,111,110,116,97,105,110,101,114,46,97,112,112,101,110,100,67,104,105,108,100,40,115,105,122,101,84,97,103,41,59,10,10,32,32,32,32,116,105,116,108,101,68,105,118,46,97,112,112,101,110,100,67,104,105,108,100,40,112,97,116,104,76,105,110,101,41,59,10,32,32,32,32,112,97,116,104,76,105,110,101,46,97,112,112,101,110,100,67,104,105,108,100,40,112,97,116,104,41,59,10,32,32,32,32,112,97,116,104,76,105,110,101,46,97,112,112,101,110,100,67,104,105,108,100,40,116,97,103,67,111,110,116,97,105,110,101,114,41,59,10,10,32,32,32,32,97,116,116,97,99,104,84,97,103,67,111,110,116,97,105,110,101,114,69,118,101,110,116,76,105,115,116,101,110,101,114,40,116,97,103,67,111,110,116,97,105,110,101,114,44,32,104,105,116,41,59,10,10,32,32,32,32,114,101,116,117,114,110,32,108,105,110,101,59,10,125,10,10,102,117,110,99,116,105,111,110,32,109,97,107,101,80,114,101,108,111,97,100,101,114,40,41,32,123,10,32,32,32,32,99,111,110,115,116,32,101,108,101,109,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,101,108,101,109,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,112,114,111,103,114,101,115,115,34,41,59,10,32,32,32,32,99,111,110,115,116,32,98,97,114,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,98,97,114,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,112,114,111,103,114,101,115,115,45,98,97,114,32,112,114,111,103,114,101,115,115,45,98,97,114,45,115,116,114,105,112,101,100,32,112,114,111,103,114,101,115,115,45,98,97,114,45,97,110,105,109,97,116,101,100,34,41,59,10,32,32,32,32,98,97,114,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,115,116,121,108,101,34,44,32,34,119,105,100,116,104,58,32,49,48,48,37,34,41,59,10,32,32,32,32,101,108,101,109,46,97,112,112,101,110,100,67,104,105,108,100,40,98,97,114,41,59,10,10,32,32,32,32,114,101,116,117,114,110,32,101,108,101,109,59,10,125,10,10,102,117,110,99,116,105,111,110,32,109,97,107,101,80,97,103,101,73,110,100,105,99,97,116,111,114,40,115,101,97,114,99,104,82,101,115,117,108,116,41,32,123,10,32,32,32,32,108,101,116,32,112,97,103,101,73,110,100,105,99,97,116,111,114,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,112,97,103,101,73,110,100,105,99,97,116,111,114,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,112,97,103,101,45,105,110,100,105,99,97,116,111,114,32,102,111,110,116,45,119,101,105,103,104,116,45,108,105,103,104,116,34,41,59,10,32,32,32,32,99,111,110,115,116,32,116,111,116,97,108,72,105,116,115,32,61,32,115,101,97,114,99,104,82,101,115,117,108,116,91,34,97,103,103,114,101,103,97,116,105,111,110,115,34,93,91,34,116,111,116,97,108,95,99,111,117,110,116,34,93,91,34,118,97,108,117,101,34,93,59,10,32,32,32,32,112,97,103,101,73,110,100,105,99,97,116,111,114,46,97,112,112,101,110,100,67,104,105,108,100,40,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,84,101,120,116,78,111,100,101,40,100,111,99,67,111,117,110,116,32,43,32,34,32,47,32,34,32,43,32,116,111,116,97,108,72,105,116,115,41,41,59,10,32,32,32,32,114,101,116,117,114,110,32,112,97,103,101,73,110,100,105,99,97,116,111,114,59,10,125,10,10,10,102,117,110,99,116,105,111,110,32,109,97,107,101,83,116,97,116,115,67,97,114,100,40,115,101,97,114,99,104,82,101,115,117,108,116,41,32,123,10,10,32,32,32,32,108,101,116,32,115,116,97,116,115,67,97,114,100,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,115,116,97,116,115,67,97,114,100,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,99,97,114,100,32,115,116,97,116,34,41,59,10,32,32,32,32,108,101,116,32,115,116,97,116,115,67,97,114,100,66,111,100,121,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,115,116,97,116,115,67,97,114,100,66,111,100,121,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,99,97,114,100,45,98,111,100,121,34,41,59,10,10,32,32,32,32,47,47,32,83,116,97,116,115,10,32,32,32,32,108,101,116,32,115,116,97,116,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,115,112,97,110,34,41,59,10,32,32,32,32,99,111,110,115,116,32,116,111,116,97,108,72,105,116,115,32,61,32,115,101,97,114,99,104,82,101,115,117,108,116,91,34,97,103,103,114,101,103,97,116,105,111,110,115,34,93,91,34,116,111,116,97,108,95,99,111,117,110,116,34,93,91,34,118,97,108,117,101,34,93,59,10,32,32,32,32,115,116,97,116,46,97,112,112,101,110,100,67,104,105,108,100,40,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,84,101,120,116,78,111,100,101,40,116,111,116,97,108,72,105,116,115,32,43,32,34,32,114,101,115,117,108,116,115,32,105,110,32,34,32,43,32,115,101,97,114,99,104,82,101,115,117,108,116,91,34,116,111,111,107,34,93,32,43,32,34,109,115,34,41,41,59,10,10,32,32,32,32,115,116,97,116,115,67,97,114,100,66,111,100,121,46,97,112,112,101,110,100,67,104,105,108,100,40,115,116,97,116,41,59,10,10,32,32,32,32,47,47,32,68,105,115,112,108,97,121,32,109,111,100,101,10,32,32,32,32,99,111,110,115,116,32,114,101,115,117,108,116,77,111,100,101,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,114,101,115,117,108,116,77,111,100,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,98,116,110,45,103,114,111,117,112,32,98,116,110,45,103,114,111,117,112,45,116,111,103,103,108,101,34,41,59,10,32,32,32,32,114,101,115,117,108,116,77,111,100,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,100,97,116,97,45,116,111,103,103,108,101,34,44,32,34,98,117,116,116,111,110,115,34,41,59,10,32,32,32,32,114,101,115,117,108,116,77,111,100,101,46,115,116,121,108,101,46,99,115,115,70,108,111,97,116,32,61,32,34,114,105,103,104,116,34,59,10,10,32,32,32,32,99,111,110,115,116,32,108,105,115,116,77,111,100,101,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,108,97,98,101,108,34,41,59,10,32,32,32,32,108,105,115,116,77,111,100,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,98,116,110,32,98,116,110,45,112,114,105,109,97,114,121,34,41,59,10,32,32,32,32,108,105,115,116,77,111,100,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,116,105,116,108,101,34,44,32,34,76,105,115,116,32,109,111,100,101,34,41,59,10,32,32,32,32,108,105,115,116,77,111,100,101,46,105,110,110,101,114,72,84,77,76,32,61,32,39,60,115,118,103,32,119,105,100,116,104,61,34,50,48,112,120,34,32,104,101,105,103,104,116,61,34,50,48,112,120,34,32,114,111,108,101,61,34,105,109,103,34,32,120,109,108,110,115,61,34,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,115,118,103,34,32,118,105,101,119,66,111,120,61,34,48,32,48,32,53,49,50,32,53,49,50,34,62,60,112,97,116,104,32,102,105,108,108,61,34,99,117,114,114,101,110,116,67,111,108,111,114,34,32,100,61,34,77,56,48,32,51,54,56,72,49,54,97,49,54,32,49,54,32,48,32,48,32,48,45,49,54,32,49,54,118,54,52,97,49,54,32,49,54,32,48,32,48,32,48,32,49,54,32,49,54,104,54,52,97,49,54,32,49,54,32,48,32,48,32,48,32,49,54,45,49,54,118,45,54,52,97,49,54,32,49,54,32,48,32,48,32,48,45,49,54,45,49,54,122,109,48,45,51,50,48,72,49,54,65,49,54,32,49,54,32,48,32,48,32,48,32,48,32,54,52,118,54,52,97,49,54,32,49,54,32,48,32,48,32,48,32,49,54,32,49,54,104,54,52,97,49,54,32,49,54,32,48,32,48,32,48,32,49,54,45,49,54,86,54,52,97,49,54,32,49,54,32,48,32,48,32,48,45,49,54,45,49,54,122,109,48,32,49,54,48,72,49,54,97,49,54,32,49,54,32,48,32,48,32,48,45,49,54,32,49,54,118,54,52,97,49,54,32,49,54,32,48,32,48,32,48,32,49,54,32,49,54,104,54,52,97,49,54,32,49,54,32,48,32,48,32,48,32,49,54,45,49,54,118,45,54,52,97,49,54,32,49,54,32,48,32,48,32,48,45,49,54,45,49,54,122,109,52,49,54,32,49,55,54,72,49,55,54,97,49,54,32,49,54,32,48,32,48,32,48,45,49,54,32,49,54,118,51,50,97,49,54,32,49,54,32,48,32,48,32,48,32,49,54,32,49,54,104,51,50,48,97,49,54,32,49,54,32,48,32,48,32,48,32,49,54,45,49,54,118,45,51,50,97,49,54,32,49,54,32,48,32,48,32,48,45,49,54,45,49,54,122,109,48,45,51,50,48,72,49,55,54,97,49,54,32,49,54,32,48,32,48,32,48,45,49,54,32,49,54,118,51,50,97,49,54,32,49,54,32,48,32,48,32,48,32,49,54,32,49,54,104,51,50,48,97,49,54,32,49,54,32,48,32,48,32,48,32,49,54,45,49,54,86,56,48,97,49,54,32,49,54,32,48,32,48,32,48,45,49,54,45,49,54,122,109,48,32,49,54,48,72,49,55,54,97,49,54,32,49,54,32,48,32,48,32,48,45,49,54,32,49,54,118,51,50,97,49,54,32,49,54,32,48,32,48,32,48,32,49,54,32,49,54,104,51,50,48,97,49,54,32,49,54,32,48,32,48,32,48,32,49,54,45,49,54,118,45,51,50,97,49,54,32,49,54,32,48,32,48,32,48,45,49,54,45,49,54,122,34,62,60,47,112,97,116,104,62,60,47,115,118,103,62,39,59,10,10,32,32,32,32,99,111,110,115,116,32,103,114,105,100,77,111,100,101,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,108,97,98,101,108,34,41,59,10,32,32,32,32,103,114,105,100,77,111,100,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,98,116,110,32,98,116,110,45,112,114,105,109,97,114,121,34,41,59,10,32,32,32,32,103,114,105,100,77,111,100,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,116,105,116,108,101,34,44,32,34,71,114,105,100,32,109,111,100,101,34,41,59,10,32,32,32,32,103,114,105,100,77,111,100,101,46,105,110,110,101,114,72,84,77,76,32,61,32,39,60,115,118,103,32,119,105,100,116,104,61,34,50,48,112,120,34,32,104,101,105,103,104,116,61,34,50,48,112,120,34,32,114,111,108,101,61,34,105,109,103,34,32,120,109,108,110,115,61,34,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,115,118,103,34,32,118,105,101,119,66,111,120,61,34,48,32,48,32,53,49,50,32,53,49,50,34,62,60,112,97,116,104,32,102,105,108,108,61,34,99,117,114,114,101,110,116,67,111,108,111,114,34,32,100,61,34,77,49,52,57,46,51,51,51,32,53,54,118,56,48,99,48,32,49,51,46,50,53,53,45,49,48,46,55,52,53,32,50,52,45,50,52,32,50,52,72,50,52,99,45,49,51,46,50,53,53,32,48,45,50,52,45,49,48,46,55,52,53,45,50,52,45,50,52,86,53,54,99,48,45,49,51,46,50,53,53,32,49,48,46,55,52,53,45,50,52,32,50,52,45,50,52,104,49,48,49,46,51,51,51,99,49,51,46,50,53,53,32,48,32,50,52,32,49,48,46,55,52,53,32,50,52,32,50,52,122,109,49,56,49,46,51,51,52,32,50,52,48,118,45,56,48,99,48,45,49,51,46,50,53,53,45,49,48,46,55,52,53,45,50,52,45,50,52,45,50,52,72,50,48,53,46,51,51,51,99,45,49,51,46,50,53,53,32,48,45,50,52,32,49,48,46,55,52,53,45,50,52,32,50,52,118,56,48,99,48,32,49,51,46,50,53,53,32,49,48,46,55,52,53,32,50,52,32,50,52,32,50,52,104,49,48,49,46,51,51,51,99,49,51,46,50,53,54,32,48,32,50,52,46,48,48,49,45,49,48,46,55,52,53,32,50,52,46,48,48,49,45,50,52,122,109,51,50,45,50,52,48,118,56,48,99,48,32,49,51,46,50,53,53,32,49,48,46,55,52,53,32,50,52,32,50,52,32,50,52,72,52,56,56,99,49,51,46,50,53,53,32,48,32,50,52,45,49,48,46,55,52,53,32,50,52,45,50,52,86,53,54,99,48,45,49,51,46,50,53,53,45,49,48,46,55,52,53,45,50,52,45,50,52,45,50,52,72,51,56,54,46,54,54,55,99,45,49,51,46,50,53,53,32,48,45,50,52,32,49,48,46,55,52,53,45,50,52,32,50,52,122,109,45,51,50,32,56,48,86,53,54,99,48,45,49,51,46,50,53,53,45,49,48,46,55,52,53,45,50,52,45,50,52,45,50,52,72,50,48,53,46,51,51,51,99,45,49,51,46,50,53,53,32,48,45,50,52,32,49,48,46,55,52,53,45,50,52,32,50,52,118,56,48,99,48,32,49,51,46,50,53,53,32,49,48,46,55,52,53,32,50,52,32,50,52,32,50,52,104,49,48,49,46,51,51,51,99,49,51,46,50,53,54,32,48,32,50,52,46,48,48,49,45,49,48,46,55,52,53,32,50,52,46,48,48,49,45,50,52,122,109,45,50,48,53,46,51,51,52,32,53,54,72,50,52,99,45,49,51,46,50,53,53,32,48,45,50,52,32,49,48,46,55,52,53,45,50,52,32,50,52,118,56,48,99,48,32,49,51,46,50,53,53,32,49,48,46,55,52,53,32,50,52,32,50,52,32,50,52,104,49,48,49,46,51,51,51,99,49,51,46,50,53,53,32,48,32,50,52,45,49,48,46,55,52,53,32,50,52,45,50,52,118,45,56,48,99,48,45,49,51,46,50,53,53,45,49,48,46,55,52,53,45,50,52,45,50,52,45,50,52,122,77,48,32,51,55,54,118,56,48,99,48,32,49,51,46,50,53,53,32,49,48,46,55,52,53,32,50,52,32,50,52,32,50,52,104,49,48,49,46,51,51,51,99,49,51,46,50,53,53,32,48,32,50,52,45,49,48,46,55,52,53,32,50,52,45,50,52,118,45,56,48,99,48,45,49,51,46,50,53,53,45,49,48,46,55,52,53,45,50,52,45,50,52,45,50,52,72,50,52,99,45,49,51,46,50,53,53,32,48,45,50,52,32,49,48,46,55,52,53,45,50,52,32,50,52,122,109,51,56,54,46,54,54,55,45,53,54,72,52,56,56,99,49,51,46,50,53,53,32,48,32,50,52,45,49,48,46,55,52,53,32,50,52,45,50,52,118,45,56,48,99,48,45,49,51,46,50,53,53,45,49,48,46,55,52,53,45,50,52,45,50,52,45,50,52,72,51,56,54,46,54,54,55,99,45,49,51,46,50,53,53,32,48,45,50,52,32,49,48,46,55,52,53,45,50,52,32,50,52,118,56,48,99,48,32,49,51,46,50,53,53,32,49,48,46,55,52,53,32,50,52,32,50,52,32,50,52,122,109,48,32,49,54,48,72,52,56,56,99,49,51,46,50,53,53,32,48,32,50,52,45,49,48,46,55,52,53,32,50,52,45,50,52,118,45,56,48,99,48,45,49,51,46,50,53,53,45,49,48,46,55,52,53,45,50,52,45,50,52,45,50,52,72,51,56,54,46,54,54,55,99,45,49,51,46,50,53,53,32,48,45,50,52,32,49,48,46,55,52,53,45,50,52,32,50,52,118,56,48,99,48,32,49,51,46,50,53,53,32,49,48,46,55,52,53,32,50,52,32,50,52,32,50,52,122,77,49,56,49,46,51,51,51,32,51,55,54,118,56,48,99,48,32,49,51,46,50,53,53,32,49,48,46,55,52,53,32,50,52,32,50,52,32,50,52,104,49,48,49,46,51,51,51,99,49,51,46,50,53,53,32,48,32,50,52,45,49,48,46,55,52,53,32,50,52,45,50,52,118,45,56,48,99,48,45,49,51,46,50,53,53,45,49,48,46,55,52,53,45,50,52,45,50,52,45,50,52,72,50,48,53,46,51,51,51,99,45,49,51,46,50,53,53,32,48,45,50,52,32,49,48,46,55,52,53,45,50,52,32,50,52,122,34,62,60,47,112,97,116,104,62,60,47,115,118,103,62,39,59,10,10,32,32,32,32,114,101,115,117,108,116,77,111,100,101,46,97,112,112,101,110,100,67,104,105,108,100,40,103,114,105,100,77,111,100,101,41,59,10,32,32,32,32,114,101,115,117,108,116,77,111,100,101,46,97,112,112,101,110,100,67,104,105,108,100,40,108,105,115,116,77,111,100,101,41,59,10,10,32,32,32,32,105,102,32,40,67,79,78,70,46,111,112,116,105,111,110,115,46,100,105,115,112,108,97,121,32,61,61,61,32,34,103,114,105,100,34,41,32,123,10,32,32,32,32,32,32,32,32,103,114,105,100,77,111,100,101,46,99,108,97,115,115,76,105,115,116,46,97,100,100,40,34,97,99,116,105,118,101,34,41,10,32,32,32,32,125,32,101,108,115,101,32,123,10,32,32,32,32,32,32,32,32,108,105,115,116,77,111,100,101,46,99,108,97,115,115,76,105,115,116,46,97,100,100,40,34,97,99,116,105,118,101,34,41,10,32,32,32,32,125,10,10,32,32,32,32,103,114,105,100,77,111,100,101,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,99,108,105,99,107,34,44,32,40,41,32,61,62,32,123,10,32,32,32,32,32,32,32,32,67,79,78,70,46,111,112,116,105,111,110,115,46,100,105,115,112,108,97,121,32,61,32,34,103,114,105,100,34,59,10,32,32,32,32,32,32,32,32,67,79,78,70,46,115,97,118,101,40,41,59,10,32,32,32,32,32,32,32,32,115,101,97,114,99,104,68,101,98,111,117,110,99,101,100,40,41,59,10,32,32,32,32,125,41,59,10,32,32,32,32,108,105,115,116,77,111,100,101,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,99,108,105,99,107,34,44,32,40,41,32,61,62,32,123,10,32,32,32,32,32,32,32,32,67,79,78,70,46,111,112,116,105,111,110,115,46,100,105,115,112,108,97,121,32,61,32,34,108,105,115,116,34,59,10,32,32,32,32,32,32,32,32,67,79,78,70,46,115,97,118,101,40,41,59,10,32,32,32,32,32,32,32,32,115,101,97,114,99,104,68,101,98,111,117,110,99,101,100,40,41,59,10,32,32,32,32,125,41,59,10,10,32,32,32,32,115,116,97,116,115,67,97,114,100,66,111,100,121,46,97,112,112,101,110,100,67,104,105,108,100,40,114,101,115,117,108,116,77,111,100,101,41,59,10,10,32,32,32,32,47,47,32,83,111,114,116,32,109,111,100,101,10,32,32,32,32,99,111,110,115,116,32,115,111,114,116,77,111,100,101,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,115,111,114,116,77,111,100,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,100,114,111,112,100,111,119,110,34,41,59,10,32,32,32,32,115,111,114,116,77,111,100,101,46,115,116,121,108,101,46,99,115,115,70,108,111,97,116,32,61,32,34,114,105,103,104,116,34,59,10,32,32,32,32,115,111,114,116,77,111,100,101,46,115,116,121,108,101,46,109,97,114,103,105,110,82,105,103,104,116,32,61,32,34,49,48,112,120,34,59,10,10,32,32,32,32,99,111,110,115,116,32,115,111,114,116,77,111,100,101,66,116,110,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,98,117,116,116,111,110,34,41,59,10,32,32,32,32,115,111,114,116,77,111,100,101,66,116,110,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,98,116,110,32,98,116,110,45,109,100,32,98,116,110,45,112,114,105,109,97,114,121,32,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,34,41,59,10,32,32,32,32,115,111,114,116,77,111,100,101,66,116,110,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,105,100,34,44,32,34,115,111,114,116,77,111,100,101,66,116,110,34,41,59,10,32,32,32,32,115,111,114,116,77,111,100,101,66,116,110,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,116,121,112,101,34,44,32,34,98,117,116,116,111,110,34,41,59,10,32,32,32,32,115,111,114,116,77,111,100,101,66,116,110,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,100,97,116,97,45,116,111,103,103,108,101,34,44,32,34,100,114,111,112,100,111,119,110,34,41,59,10,32,32,32,32,115,111,114,116,77,111,100,101,66,116,110,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,97,114,105,97,45,104,97,115,112,111,112,117,112,34,44,32,34,116,114,117,101,34,41,59,10,32,32,32,32,115,111,114,116,77,111,100,101,66,116,110,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,97,114,105,97,45,101,120,112,97,110,100,101,100,34,44,32,34,102,97,108,115,101,34,41,59,10,32,32,32,32,115,111,114,116,77,111,100,101,66,116,110,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,116,105,116,108,101,34,44,32,34,83,111,114,116,32,111,112,116,105,111,110,115,34,41,59,10,32,32,32,32,115,111,114,116,77,111,100,101,66,116,110,46,105,110,110,101,114,72,84,77,76,32,61,32,39,60,115,118,103,32,97,114,105,97,45,104,105,100,100,101,110,61,34,116,114,117,101,34,32,119,105,100,116,104,61,34,50,48,112,120,34,32,104,101,105,103,104,116,61,34,50,48,112,120,34,32,120,109,108,110,115,61,34,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,115,118,103,34,32,118,105,101,119,66,111,120,61,34,48,32,48,32,51,50,48,32,53,49,50,34,62,60,112,97,116,104,32,102,105,108,108,61,34,99,117,114,114,101,110,116,67,111,108,111,114,34,32,100,61,34,77,52,49,32,50,56,56,104,50,51,56,99,50,49,46,52,32,48,32,51,50,46,49,32,50,53,46,57,32,49,55,32,52,49,76,49,55,55,32,52,52,56,99,45,57,46,52,32,57,46,52,45,50,52,46,54,32,57,46,52,45,51,51,46,57,32,48,76,50,52,32,51,50,57,99,45,49,53,46,49,45,49,53,46,49,45,52,46,52,45,52,49,32,49,55,45,52,49,122,109,50,53,53,45,49,48,53,76,49,55,55,32,54,52,99,45,57,46,52,45,57,46,52,45,50,52,46,54,45,57,46,52,45,51,51,46,57,32,48,76,50,52,32,49,56,51,99,45,49,53,46,49,32,49,53,46,49,45,52,46,52,32,52,49,32,49,55,32,52,49,104,50,51,56,99,50,49,46,52,32,48,32,51,50,46,49,45,50,53,46,57,32,49,55,45,52,49,122,34,62,60,47,112,97,116,104,62,60,47,115,118,103,62,39,59,10,10,32,32,32,32,99,111,110,115,116,32,115,111,114,116,77,111,100,101,77,101,110,117,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,115,111,114,116,77,111,100,101,77,101,110,117,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,100,114,111,112,100,111,119,110,45,109,101,110,117,34,41,59,10,32,32,32,32,115,111,114,116,77,111,100,101,77,101,110,117,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,97,114,105,97,45,108,97,98,101,108,108,101,100,98,121,34,44,32,34,115,111,114,116,77,111,100,101,66,116,110,34,41,59,10,10,32,32,32,32,79,98,106,101,99,116,46,107,101,121,115,40,83,79,82,84,95,77,79,68,69,83,41,46,102,111,114,69,97,99,104,40,109,111,100,101,32,61,62,32,123,10,32,32,32,32,32,32,32,32,99,111,110,115,116,32,105,116,101,109,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,32,32,32,32,105,116,101,109,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,100,114,111,112,100,111,119,110,45,105,116,101,109,34,41,59,10,32,32,32,32,32,32,32,32,105,116,101,109,46,97,112,112,101,110,100,67,104,105,108,100,40,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,84,101,120,116,78,111,100,101,40,83,79,82,84,95,77,79,68,69,83,91,109,111,100,101,93,46,116,101,120,116,41,41,59,10,32,32,32,32,32,32,32,32,115,111,114,116,77,111,100,101,77,101,110,117,46,97,112,112,101,110,100,67,104,105,108,100,40,105,116,101,109,41,59,10,10,32,32,32,32,32,32,32,32,105,116,101,109,46,111,110,99,108,105,99,107,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,67,79,78,70,46,111,112,116,105,111,110,115,46,115,111,114,116,32,61,32,109,111,100,101,59,10,32,32,32,32,32,32,32,32,32,32,32,32,67,79,78,70,46,115,97,118,101,40,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,115,101,97,114,99,104,68,101,98,111,117,110,99,101,100,40,41,59,10,32,32,32,32,32,32,32,32,125,59,10,32,32,32,32,125,41,59,10,10,32,32,32,32,115,111,114,116,77,111,100,101,46,97,112,112,101,110,100,67,104,105,108,100,40,115,111,114,116,77,111,100,101,66,116,110,41,59,10,32,32,32,32,115,111,114,116,77,111,100,101,46,97,112,112,101,110,100,67,104,105,108,100,40,115,111,114,116,77,111,100,101,77,101,110,117,41,59,10,10,32,32,32,32,115,116,97,116,115,67,97,114,100,66,111,100,121,46,97,112,112,101,110,100,67,104,105,108,100,40,115,111,114,116,77,111,100,101,41,59,10,10,32,32,32,32,105,102,32,40,116,111,116,97,108,72,105,116,115,32,33,61,61,32,48,41,32,123,10,32,32,32,32,32,32,32,32,108,101,116,32,115,105,122,101,83,116,97,116,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,32,32,32,32,115,105,122,101,83,116,97,116,46,97,112,112,101,110,100,67,104,105,108,100,40,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,84,101,120,116,78,111,100,101,40,104,117,109,97,110,70,105,108,101,83,105,122,101,40,115,101,97,114,99,104,82,101,115,117,108,116,91,34,97,103,103,114,101,103,97,116,105,111,110,115,34,93,91,34,116,111,116,97,108,95,115,105,122,101,34,93,91,34,118,97,108,117,101,34,93,41,41,41,59,10,32,32,32,32,32,32,32,32,115,116,97,116,115,67,97,114,100,66,111,100,121,46,97,112,112,101,110,100,67,104,105,108,100,40,115,105,122,101,83,116,97,116,41,59,10,32,32,32,32,125,10,10,32,32,32,32,115,116,97,116,115,67,97,114,100,46,97,112,112,101,110,100,67,104,105,108,100,40,115,116,97,116,115,67,97,114,100,66,111,100,121,41,59,10,10,32,32,32,32,114,101,116,117,114,110,32,115,116,97,116,115,67,97,114,100,59,10,125,10,10,102,117,110,99,116,105,111,110,32,109,97,107,101,82,101,115,117,108,116,67,111,110,116,97,105,110,101,114,40,41,32,123,10,32,32,32,32,108,101,116,32,114,101,115,117,108,116,67,111,110,116,97,105,110,101,114,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,10,32,32,32,32,105,102,32,40,67,79,78,70,46,111,112,116,105,111,110,115,46,100,105,115,112,108,97,121,32,61,61,61,32,34,103,114,105,100,34,41,32,123,10,32,32,32,32,32,32,32,32,114,101,115,117,108,116,67,111,110,116,97,105,110,101,114,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,98,114,105,99,107,108,97,121,101,114,34,41,59,10,32,32,32,32,125,32,101,108,115,101,32,123,10,32,32,32,32,32,32,32,32,114,101,115,117,108,116,67,111,110,116,97,105,110,101,114,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,108,105,115,116,45,103,114,111,117,112,34,41,59,10,32,32,32,32,125,10,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,67,111,110,116,97,105,110,101,114,59,10,125,10}; +char bundle_js[759173] = {47,42,33,32,106,81,117,101,114,121,32,118,51,46,52,46,49,32,124,32,40,99,41,32,74,83,32,70,111,117,110,100,97,116,105,111,110,32,97,110,100,32,111,116,104,101,114,32,99,111,110,116,114,105,98,117,116,111,114,115,32,124,32,106,113,117,101,114,121,46,111,114,103,47,108,105,99,101,110,115,101,32,42,47,10,33,102,117,110,99,116,105,111,110,40,101,44,116,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,109,111,100,117,108,101,38,38,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,109,111,100,117,108,101,46,101,120,112,111,114,116,115,63,109,111,100,117,108,101,46,101,120,112,111,114,116,115,61,101,46,100,111,99,117,109,101,110,116,63,116,40,101,44,33,48,41,58,102,117,110,99,116,105,111,110,40,101,41,123,105,102,40,33,101,46,100,111,99,117,109,101,110,116,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,106,81,117,101,114,121,32,114,101,113,117,105,114,101,115,32,97,32,119,105,110,100,111,119,32,119,105,116,104,32,97,32,100,111,99,117,109,101,110,116,34,41,59,114,101,116,117,114,110,32,116,40,101,41,125,58,116,40,101,41,125,40,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,119,105,110,100,111,119,63,119,105,110,100,111,119,58,116,104,105,115,44,102,117,110,99,116,105,111,110,40,67,44,101,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,118,97,114,32,116,61,91,93,44,69,61,67,46,100,111,99,117,109,101,110,116,44,114,61,79,98,106,101,99,116,46,103,101,116,80,114,111,116,111,116,121,112,101,79,102,44,115,61,116,46,115,108,105,99,101,44,103,61,116,46,99,111,110,99,97,116,44,117,61,116,46,112,117,115,104,44,105,61,116,46,105,110,100,101,120,79,102,44,110,61,123,125,44,111,61,110,46,116,111,83,116,114,105,110,103,44,118,61,110,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,44,97,61,118,46,116,111,83,116,114,105,110,103,44,108,61,97,46,99,97,108,108,40,79,98,106,101,99,116,41,44,121,61,123,125,44,109,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,101,38,38,34,110,117,109,98,101,114,34,33,61,116,121,112,101,111,102,32,101,46,110,111,100,101,84,121,112,101,125,44,120,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,110,117,108,108,33,61,101,38,38,101,61,61,61,101,46,119,105,110,100,111,119,125,44,99,61,123,116,121,112,101,58,33,48,44,115,114,99,58,33,48,44,110,111,110,99,101,58,33,48,44,110,111,77,111,100,117,108,101,58,33,48,125,59,102,117,110,99,116,105,111,110,32,98,40,101,44,116,44,110,41,123,118,97,114,32,114,44,105,44,111,61,40,110,61,110,124,124,69,41,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,115,99,114,105,112,116,34,41,59,105,102,40,111,46,116,101,120,116,61,101,44,116,41,102,111,114,40,114,32,105,110,32,99,41,40,105,61,116,91,114,93,124,124,116,46,103,101,116,65,116,116,114,105,98,117,116,101,38,38,116,46,103,101,116,65,116,116,114,105,98,117,116,101,40,114,41,41,38,38,111,46,115,101,116,65,116,116,114,105,98,117,116,101,40,114,44,105,41,59,110,46,104,101,97,100,46,97,112,112,101,110,100,67,104,105,108,100,40,111,41,46,112,97,114,101,110,116,78,111,100,101,46,114,101,109,111,118,101,67,104,105,108,100,40,111,41,125,102,117,110,99,116,105,111,110,32,119,40,101,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,101,63,101,43,34,34,58,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,101,124,124,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,101,63,110,91,111,46,99,97,108,108,40,101,41,93,124,124,34,111,98,106,101,99,116,34,58,116,121,112,101,111,102,32,101,125,118,97,114,32,102,61,34,51,46,52,46,49,34,44,107,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,110,101,119,32,107,46,102,110,46,105,110,105,116,40,101,44,116,41,125,44,112,61,47,94,91,92,115,92,117,70,69,70,70,92,120,65,48,93,43,124,91,92,115,92,117,70,69,70,70,92,120,65,48,93,43,36,47,103,59,102,117,110,99,116,105,111,110,32,100,40,101,41,123,118,97,114,32,116,61,33,33,101,38,38,34,108,101,110,103,116,104,34,105,110,32,101,38,38,101,46,108,101,110,103,116,104,44,110,61,119,40,101,41,59,114,101,116,117,114,110,33,109,40,101,41,38,38,33,120,40,101,41,38,38,40,34,97,114,114,97,121,34,61,61,61,110,124,124,48,61,61,61,116,124,124,34,110,117,109,98,101,114,34,61,61,116,121,112,101,111,102,32,116,38,38,48,60,116,38,38,116,45,49,32,105,110,32,101,41,125,107,46,102,110,61,107,46,112,114,111,116,111,116,121,112,101,61,123,106,113,117,101,114,121,58,102,44,99,111,110,115,116,114,117,99,116,111,114,58,107,44,108,101,110,103,116,104,58,48,44,116,111,65,114,114,97,121,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,115,46,99,97,108,108,40,116,104,105,115,41,125,44,103,101,116,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,101,63,115,46,99,97,108,108,40,116,104,105,115,41,58,101,60,48,63,116,104,105,115,91,101,43,116,104,105,115,46,108,101,110,103,116,104,93,58,116,104,105,115,91,101,93,125,44,112,117,115,104,83,116,97,99,107,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,107,46,109,101,114,103,101,40,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,40,41,44,101,41,59,114,101,116,117,114,110,32,116,46,112,114,101,118,79,98,106,101,99,116,61,116,104,105,115,44,116,125,44,101,97,99,104,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,107,46,101,97,99,104,40,116,104,105,115,44,101,41,125,44,109,97,112,58,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,104,105,115,46,112,117,115,104,83,116,97,99,107,40,107,46,109,97,112,40,116,104,105,115,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,110,46,99,97,108,108,40,101,44,116,44,101,41,125,41,41,125,44,115,108,105,99,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,112,117,115,104,83,116,97,99,107,40,115,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,41,125,44,102,105,114,115,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,113,40,48,41,125,44,108,97,115,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,113,40,45,49,41,125,44,101,113,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,116,104,105,115,46,108,101,110,103,116,104,44,110,61,43,101,43,40,101,60,48,63,116,58,48,41,59,114,101,116,117,114,110,32,116,104,105,115,46,112,117,115,104,83,116,97,99,107,40,48,60,61,110,38,38,110,60,116,63,91,116,104,105,115,91,110,93,93,58,91,93,41,125,44,101,110,100,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,112,114,101,118,79,98,106,101,99,116,124,124,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,40,41,125,44,112,117,115,104,58,117,44,115,111,114,116,58,116,46,115,111,114,116,44,115,112,108,105,99,101,58,116,46,115,112,108,105,99,101,125,44,107,46,101,120,116,101,110,100,61,107,46,102,110,46,101,120,116,101,110,100,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,44,116,44,110,44,114,44,105,44,111,44,97,61,97,114,103,117,109,101,110,116,115,91,48,93,124,124,123,125,44,115,61,49,44,117,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,44,108,61,33,49,59,102,111,114,40,34,98,111,111,108,101,97,110,34,61,61,116,121,112,101,111,102,32,97,38,38,40,108,61,97,44,97,61,97,114,103,117,109,101,110,116,115,91,115,93,124,124,123,125,44,115,43,43,41,44,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,97,124,124,109,40,97,41,124,124,40,97,61,123,125,41,44,115,61,61,61,117,38,38,40,97,61,116,104,105,115,44,115,45,45,41,59,115,60,117,59,115,43,43,41,105,102,40,110,117,108,108,33,61,40,101,61,97,114,103,117,109,101,110,116,115,91,115,93,41,41,102,111,114,40,116,32,105,110,32,101,41,114,61,101,91,116,93,44,34,95,95,112,114,111,116,111,95,95,34,33,61,61,116,38,38,97,33,61,61,114,38,38,40,108,38,38,114,38,38,40,107,46,105,115,80,108,97,105,110,79,98,106,101,99,116,40,114,41,124,124,40,105,61,65,114,114,97,121,46,105,115,65,114,114,97,121,40,114,41,41,41,63,40,110,61,97,91,116,93,44,111,61,105,38,38,33,65,114,114,97,121,46,105,115,65,114,114,97,121,40,110,41,63,91,93,58,105,124,124,107,46,105,115,80,108,97,105,110,79,98,106,101,99,116,40,110,41,63,110,58,123,125,44,105,61,33,49,44,97,91,116,93,61,107,46,101,120,116,101,110,100,40,108,44,111,44,114,41,41,58,118,111,105,100,32,48,33,61,61,114,38,38,40,97,91,116,93,61,114,41,41,59,114,101,116,117,114,110,32,97,125,44,107,46,101,120,116,101,110,100,40,123,101,120,112,97,110,100,111,58,34,106,81,117,101,114,121,34,43,40,102,43,77,97,116,104,46,114,97,110,100,111,109,40,41,41,46,114,101,112,108,97,99,101,40,47,92,68,47,103,44,34,34,41,44,105,115,82,101,97,100,121,58,33,48,44,101,114,114,111,114,58,102,117,110,99,116,105,111,110,40,101,41,123,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,101,41,125,44,110,111,111,112,58,102,117,110,99,116,105,111,110,40,41,123,125,44,105,115,80,108,97,105,110,79,98,106,101,99,116,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,44,110,59,114,101,116,117,114,110,33,40,33,101,124,124,34,91,111,98,106,101,99,116,32,79,98,106,101,99,116,93,34,33,61,61,111,46,99,97,108,108,40,101,41,41,38,38,40,33,40,116,61,114,40,101,41,41,124,124,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,40,110,61,118,46,99,97,108,108,40,116,44,34,99,111,110,115,116,114,117,99,116,111,114,34,41,38,38,116,46,99,111,110,115,116,114,117,99,116,111,114,41,38,38,97,46,99,97,108,108,40,110,41,61,61,61,108,41,125,44,105,115,69,109,112,116,121,79,98,106,101,99,116,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,59,102,111,114,40,116,32,105,110,32,101,41,114,101,116,117,114,110,33,49,59,114,101,116,117,114,110,33,48,125,44,103,108,111,98,97,108,69,118,97,108,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,98,40,101,44,123,110,111,110,99,101,58,116,38,38,116,46,110,111,110,99,101,125,41,125,44,101,97,99,104,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,44,114,61,48,59,105,102,40,100,40,101,41,41,123,102,111,114,40,110,61,101,46,108,101,110,103,116,104,59,114,60,110,59,114,43,43,41,105,102,40,33,49,61,61,61,116,46,99,97,108,108,40,101,91,114,93,44,114,44,101,91,114,93,41,41,98,114,101,97,107,125,101,108,115,101,32,102,111,114,40,114,32,105,110,32,101,41,105,102,40,33,49,61,61,61,116,46,99,97,108,108,40,101,91,114,93,44,114,44,101,91,114,93,41,41,98,114,101,97,107,59,114,101,116,117,114,110,32,101,125,44,116,114,105,109,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,101,63,34,34,58,40,101,43,34,34,41,46,114,101,112,108,97,99,101,40,112,44,34,34,41,125,44,109,97,107,101,65,114,114,97,121,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,61,116,124,124,91,93,59,114,101,116,117,114,110,32,110,117,108,108,33,61,101,38,38,40,100,40,79,98,106,101,99,116,40,101,41,41,63,107,46,109,101,114,103,101,40,110,44,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,101,63,91,101,93,58,101,41,58,117,46,99,97,108,108,40,110,44,101,41,41,44,110,125,44,105,110,65,114,114,97,121,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,116,63,45,49,58,105,46,99,97,108,108,40,116,44,101,44,110,41,125,44,109,101,114,103,101,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,102,111,114,40,118,97,114,32,110,61,43,116,46,108,101,110,103,116,104,44,114,61,48,44,105,61,101,46,108,101,110,103,116,104,59,114,60,110,59,114,43,43,41,101,91,105,43,43,93,61,116,91,114,93,59,114,101,116,117,114,110,32,101,46,108,101,110,103,116,104,61,105,44,101,125,44,103,114,101,112,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,102,111,114,40,118,97,114,32,114,61,91,93,44,105,61,48,44,111,61,101,46,108,101,110,103,116,104,44,97,61,33,110,59,105,60,111,59,105,43,43,41,33,116,40,101,91,105,93,44,105,41,33,61,61,97,38,38,114,46,112,117,115,104,40,101,91,105,93,41,59,114,101,116,117,114,110,32,114,125,44,109,97,112,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,44,105,44,111,61,48,44,97,61,91,93,59,105,102,40,100,40,101,41,41,102,111,114,40,114,61,101,46,108,101,110,103,116,104,59,111,60,114,59,111,43,43,41,110,117,108,108,33,61,40,105,61,116,40,101,91,111,93,44,111,44,110,41,41,38,38,97,46,112,117,115,104,40,105,41,59,101,108,115,101,32,102,111,114,40,111,32,105,110,32,101,41,110,117,108,108,33,61,40,105,61,116,40,101,91,111,93,44,111,44,110,41,41,38,38,97,46,112,117,115,104,40,105,41,59,114,101,116,117,114,110,32,103,46,97,112,112,108,121,40,91,93,44,97,41,125,44,103,117,105,100,58,49,44,115,117,112,112,111,114,116,58,121,125,41,44,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,83,121,109,98,111,108,38,38,40,107,46,102,110,91,83,121,109,98,111,108,46,105,116,101,114,97,116,111,114,93,61,116,91,83,121,109,98,111,108,46,105,116,101,114,97,116,111,114,93,41,44,107,46,101,97,99,104,40,34,66,111,111,108,101,97,110,32,78,117,109,98,101,114,32,83,116,114,105,110,103,32,70,117,110,99,116,105,111,110,32,65,114,114,97,121,32,68,97,116,101,32,82,101,103,69,120,112,32,79,98,106,101,99,116,32,69,114,114,111,114,32,83,121,109,98,111,108,34,46,115,112,108,105,116,40,34,32,34,41,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,110,91,34,91,111,98,106,101,99,116,32,34,43,116,43,34,93,34,93,61,116,46,116,111,76,111,119,101,114,67,97,115,101,40,41,125,41,59,118,97,114,32,104,61,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,101,44,100,44,98,44,111,44,105,44,104,44,102,44,103,44,119,44,117,44,108,44,84,44,67,44,97,44,69,44,118,44,115,44,99,44,121,44,107,61,34,115,105,122,122,108,101,34,43,49,42,110,101,119,32,68,97,116,101,44,109,61,110,46,100,111,99,117,109,101,110,116,44,83,61,48,44,114,61,48,44,112,61,117,101,40,41,44,120,61,117,101,40,41,44,78,61,117,101,40,41,44,65,61,117,101,40,41,44,68,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,101,61,61,61,116,38,38,40,108,61,33,48,41,44,48,125,44,106,61,123,125,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,44,116,61,91,93,44,113,61,116,46,112,111,112,44,76,61,116,46,112,117,115,104,44,72,61,116,46,112,117,115,104,44,79,61,116,46,115,108,105,99,101,44,80,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,102,111,114,40,118,97,114,32,110,61,48,44,114,61,101,46,108,101,110,103,116,104,59,110,60,114,59,110,43,43,41,105,102,40,101,91,110,93,61,61,61,116,41,114,101,116,117,114,110,32,110,59,114,101,116,117,114,110,45,49,125,44,82,61,34,99,104,101,99,107,101,100,124,115,101,108,101,99,116,101,100,124,97,115,121,110,99,124,97,117,116,111,102,111,99,117,115,124,97,117,116,111,112,108,97,121,124,99,111,110,116,114,111,108,115,124,100,101,102,101,114,124,100,105,115,97,98,108,101,100,124,104,105,100,100,101,110,124,105,115,109,97,112,124,108,111,111,112,124,109,117,108,116,105,112,108,101,124,111,112,101,110,124,114,101,97,100,111,110,108,121,124,114,101,113,117,105,114,101,100,124,115,99,111,112,101,100,34,44,77,61,34,91,92,92,120,50,48,92,92,116,92,92,114,92,92,110,92,92,102,93,34,44,73,61,34,40,63,58,92,92,92,92,46,124,91,92,92,119,45,93,124,91,94,92,48,45,92,92,120,97,48,93,41,43,34,44,87,61,34,92,92,91,34,43,77,43,34,42,40,34,43,73,43,34,41,40,63,58,34,43,77,43,34,42,40,91,42,94,36,124,33,126,93,63,61,41,34,43,77,43,34,42,40,63,58,39,40,40,63,58,92,92,92,92,46,124,91,94,92,92,92,92,39,93,41,42,41,39,124,92,34,40,40,63,58,92,92,92,92,46,124,91,94,92,92,92,92,92,34,93,41,42,41,92,34,124,40,34,43,73,43,34,41,41,124,41,34,43,77,43,34,42,92,92,93,34,44,36,61,34,58,40,34,43,73,43,34,41,40,63,58,92,92,40,40,40,39,40,40,63,58,92,92,92,92,46,124,91,94,92,92,92,92,39,93,41,42,41,39,124,92,34,40,40,63,58,92,92,92,92,46,124,91,94,92,92,92,92,92,34,93,41,42,41,92,34,41,124,40,40,63,58,92,92,92,92,46,124,91,94,92,92,92,92,40,41,91,92,92,93,93,124,34,43,87,43,34,41,42,41,124,46,42,41,92,92,41,124,41,34,44,70,61,110,101,119,32,82,101,103,69,120,112,40,77,43,34,43,34,44,34,103,34,41,44,66,61,110,101,119,32,82,101,103,69,120,112,40,34,94,34,43,77,43,34,43,124,40,40,63,58,94,124,91,94,92,92,92,92,93,41,40,63,58,92,92,92,92,46,41,42,41,34,43,77,43,34,43,36,34,44,34,103,34,41,44,95,61,110,101,119,32,82,101,103,69,120,112,40,34,94,34,43,77,43,34,42,44,34,43,77,43,34,42,34,41,44,122,61,110,101,119,32,82,101,103,69,120,112,40,34,94,34,43,77,43,34,42,40,91,62,43,126,93,124,34,43,77,43,34,41,34,43,77,43,34,42,34,41,44,85,61,110,101,119,32,82,101,103,69,120,112,40,77,43,34,124,62,34,41,44,88,61,110,101,119,32,82,101,103,69,120,112,40,36,41,44,86,61,110,101,119,32,82,101,103,69,120,112,40,34,94,34,43,73,43,34,36,34,41,44,71,61,123,73,68,58,110,101,119,32,82,101,103,69,120,112,40,34,94,35,40,34,43,73,43,34,41,34,41,44,67,76,65,83,83,58,110,101,119,32,82,101,103,69,120,112,40,34,94,92,92,46,40,34,43,73,43,34,41,34,41,44,84,65,71,58,110,101,119,32,82,101,103,69,120,112,40,34,94,40,34,43,73,43,34,124,91,42,93,41,34,41,44,65,84,84,82,58,110,101,119,32,82,101,103,69,120,112,40,34,94,34,43,87,41,44,80,83,69,85,68,79,58,110,101,119,32,82,101,103,69,120,112,40,34,94,34,43,36,41,44,67,72,73,76,68,58,110,101,119,32,82,101,103,69,120,112,40,34,94,58,40,111,110,108,121,124,102,105,114,115,116,124,108,97,115,116,124,110,116,104,124,110,116,104,45,108,97,115,116,41,45,40,99,104,105,108,100,124,111,102,45,116,121,112,101,41,40,63,58,92,92,40,34,43,77,43,34,42,40,101,118,101,110,124,111,100,100,124,40,40,91,43,45,93,124,41,40,92,92,100,42,41,110,124,41,34,43,77,43,34,42,40,63,58,40,91,43,45,93,124,41,34,43,77,43,34,42,40,92,92,100,43,41,124,41,41,34,43,77,43,34,42,92,92,41,124,41,34,44,34,105,34,41,44,98,111,111,108,58,110,101,119,32,82,101,103,69,120,112,40,34,94,40,63,58,34,43,82,43,34,41,36,34,44,34,105,34,41,44,110,101,101,100,115,67,111,110,116,101,120,116,58,110,101,119,32,82,101,103,69,120,112,40,34,94,34,43,77,43,34,42,91,62,43,126,93,124,58,40,101,118,101,110,124,111,100,100,124,101,113,124,103,116,124,108,116,124,110,116,104,124,102,105,114,115,116,124,108,97,115,116,41,40,63,58,92,92,40,34,43,77,43,34,42,40,40,63,58,45,92,92,100,41,63,92,92,100,42,41,34,43,77,43,34,42,92,92,41,124,41,40,63,61,91,94,45,93,124,36,41,34,44,34,105,34,41,125,44,89,61,47,72,84,77,76,36,47,105,44,81,61,47,94,40,63,58,105,110,112,117,116,124,115,101,108,101,99,116,124,116,101,120,116,97,114,101,97,124,98,117,116,116,111,110,41,36,47,105,44,74,61,47,94,104,92,100,36,47,105,44,75,61,47,94,91,94,123,93,43,92,123,92,115,42,92,91,110,97,116,105,118,101,32,92,119,47,44,90,61,47,94,40,63,58,35,40,91,92,119,45,93,43,41,124,40,92,119,43,41,124,92,46,40,91,92,119,45,93,43,41,41,36,47,44,101,101,61,47,91,43,126,93,47,44,116,101,61,110,101,119,32,82,101,103,69,120,112,40,34,92,92,92,92,40,91,92,92,100,97,45,102,93,123,49,44,54,125,34,43,77,43,34,63,124,40,34,43,77,43,34,41,124,46,41,34,44,34,105,103,34,41,44,110,101,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,61,34,48,120,34,43,116,45,54,53,53,51,54,59,114,101,116,117,114,110,32,114,33,61,114,124,124,110,63,116,58,114,60,48,63,83,116,114,105,110,103,46,102,114,111,109,67,104,97,114,67,111,100,101,40,114,43,54,53,53,51,54,41,58,83,116,114,105,110,103,46,102,114,111,109,67,104,97,114,67,111,100,101,40,114,62,62,49,48,124,53,53,50,57,54,44,49,48,50,51,38,114,124,53,54,51,50,48,41,125,44,114,101,61,47,40,91,92,48,45,92,120,49,102,92,120,55,102,93,124,94,45,63,92,100,41,124,94,45,36,124,91,94,92,48,45,92,120,49,102,92,120,55,102,45,92,117,70,70,70,70,92,119,45,93,47,103,44,105,101,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,116,63,34,92,48,34,61,61,61,101,63,34,92,117,102,102,102,100,34,58,101,46,115,108,105,99,101,40,48,44,45,49,41,43,34,92,92,34,43,101,46,99,104,97,114,67,111,100,101,65,116,40,101,46,108,101,110,103,116,104,45,49,41,46,116,111,83,116,114,105,110,103,40,49,54,41,43,34,32,34,58,34,92,92,34,43,101,125,44,111,101,61,102,117,110,99,116,105,111,110,40,41,123,84,40,41,125,44,97,101,61,98,101,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,33,48,61,61,61,101,46,100,105,115,97,98,108,101,100,38,38,34,102,105,101,108,100,115,101,116,34,61,61,61,101,46,110,111,100,101,78,97,109,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,125,44,123,100,105,114,58,34,112,97,114,101,110,116,78,111,100,101,34,44,110,101,120,116,58,34,108,101,103,101,110,100,34,125,41,59,116,114,121,123,72,46,97,112,112,108,121,40,116,61,79,46,99,97,108,108,40,109,46,99,104,105,108,100,78,111,100,101,115,41,44,109,46,99,104,105,108,100,78,111,100,101,115,41,44,116,91,109,46,99,104,105,108,100,78,111,100,101,115,46,108,101,110,103,116,104,93,46,110,111,100,101,84,121,112,101,125,99,97,116,99,104,40,101,41,123,72,61,123,97,112,112,108,121,58,116,46,108,101,110,103,116,104,63,102,117,110,99,116,105,111,110,40,101,44,116,41,123,76,46,97,112,112,108,121,40,101,44,79,46,99,97,108,108,40,116,41,41,125,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,61,101,46,108,101,110,103,116,104,44,114,61,48,59,119,104,105,108,101,40,101,91,110,43,43,93,61,116,91,114,43,43,93,41,59,101,46,108,101,110,103,116,104,61,110,45,49,125,125,125,102,117,110,99,116,105,111,110,32,115,101,40,116,44,101,44,110,44,114,41,123,118,97,114,32,105,44,111,44,97,44,115,44,117,44,108,44,99,44,102,61,101,38,38,101,46,111,119,110,101,114,68,111,99,117,109,101,110,116,44,112,61,101,63,101,46,110,111,100,101,84,121,112,101,58,57,59,105,102,40,110,61,110,124,124,91,93,44,34,115,116,114,105,110,103,34,33,61,116,121,112,101,111,102,32,116,124,124,33,116,124,124,49,33,61,61,112,38,38,57,33,61,61,112,38,38,49,49,33,61,61,112,41,114,101,116,117,114,110,32,110,59,105,102,40,33,114,38,38,40,40,101,63,101,46,111,119,110,101,114,68,111,99,117,109,101,110,116,124,124,101,58,109,41,33,61,61,67,38,38,84,40,101,41,44,101,61,101,124,124,67,44,69,41,41,123,105,102,40,49,49,33,61,61,112,38,38,40,117,61,90,46,101,120,101,99,40,116,41,41,41,105,102,40,105,61,117,91,49,93,41,123,105,102,40,57,61,61,61,112,41,123,105,102,40,33,40,97,61,101,46,103,101,116,69,108,101,109,101,110,116,66,121,73,100,40,105,41,41,41,114,101,116,117,114,110,32,110,59,105,102,40,97,46,105,100,61,61,61,105,41,114,101,116,117,114,110,32,110,46,112,117,115,104,40,97,41,44,110,125,101,108,115,101,32,105,102,40,102,38,38,40,97,61,102,46,103,101,116,69,108,101,109,101,110,116,66,121,73,100,40,105,41,41,38,38,121,40,101,44,97,41,38,38,97,46,105,100,61,61,61,105,41,114,101,116,117,114,110,32,110,46,112,117,115,104,40,97,41,44,110,125,101,108,115,101,123,105,102,40,117,91,50,93,41,114,101,116,117,114,110,32,72,46,97,112,112,108,121,40,110,44,101,46,103,101,116,69,108,101,109,101,110,116,115,66,121,84,97,103,78,97,109,101,40,116,41,41,44,110,59,105,102,40,40,105,61,117,91,51,93,41,38,38,100,46,103,101,116,69,108,101,109,101,110,116,115,66,121,67,108,97,115,115,78,97,109,101,38,38,101,46,103,101,116,69,108,101,109,101,110,116,115,66,121,67,108,97,115,115,78,97,109,101,41,114,101,116,117,114,110,32,72,46,97,112,112,108,121,40,110,44,101,46,103,101,116,69,108,101,109,101,110,116,115,66,121,67,108,97,115,115,78,97,109,101,40,105,41,41,44,110,125,105,102,40,100,46,113,115,97,38,38,33,65,91,116,43,34,32,34,93,38,38,40,33,118,124,124,33,118,46,116,101,115,116,40,116,41,41,38,38,40,49,33,61,61,112,124,124,34,111,98,106,101,99,116,34,33,61,61,101,46,110,111,100,101,78,97,109,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,41,41,123,105,102,40,99,61,116,44,102,61,101,44,49,61,61,61,112,38,38,85,46,116,101,115,116,40,116,41,41,123,40,115,61,101,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,105,100,34,41,41,63,115,61,115,46,114,101,112,108,97,99,101,40,114,101,44,105,101,41,58,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,105,100,34,44,115,61,107,41,44,111,61,40,108,61,104,40,116,41,41,46,108,101,110,103,116,104,59,119,104,105,108,101,40,111,45,45,41,108,91,111,93,61,34,35,34,43,115,43,34,32,34,43,120,101,40,108,91,111,93,41,59,99,61,108,46,106,111,105,110,40,34,44,34,41,44,102,61,101,101,46,116,101,115,116,40,116,41,38,38,121,101,40,101,46,112,97,114,101,110,116,78,111,100,101,41,124,124,101,125,116,114,121,123,114,101,116,117,114,110,32,72,46,97,112,112,108,121,40,110,44,102,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,99,41,41,44,110,125,99,97,116,99,104,40,101,41,123,65,40,116,44,33,48,41,125,102,105,110,97,108,108,121,123,115,61,61,61,107,38,38,101,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,40,34,105,100,34,41,125,125,125,114,101,116,117,114,110,32,103,40,116,46,114,101,112,108,97,99,101,40,66,44,34,36,49,34,41,44,101,44,110,44,114,41,125,102,117,110,99,116,105,111,110,32,117,101,40,41,123,118,97,114,32,114,61,91,93,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,101,40,116,44,110,41,123,114,101,116,117,114,110,32,114,46,112,117,115,104,40,116,43,34,32,34,41,62,98,46,99,97,99,104,101,76,101,110,103,116,104,38,38,100,101,108,101,116,101,32,101,91,114,46,115,104,105,102,116,40,41,93,44,101,91,116,43,34,32,34,93,61,110,125,125,102,117,110,99,116,105,111,110,32,108,101,40,101,41,123,114,101,116,117,114,110,32,101,91,107,93,61,33,48,44,101,125,102,117,110,99,116,105,111,110,32,99,101,40,101,41,123,118,97,114,32,116,61,67,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,102,105,101,108,100,115,101,116,34,41,59,116,114,121,123,114,101,116,117,114,110,33,33,101,40,116,41,125,99,97,116,99,104,40,101,41,123,114,101,116,117,114,110,33,49,125,102,105,110,97,108,108,121,123,116,46,112,97,114,101,110,116,78,111,100,101,38,38,116,46,112,97,114,101,110,116,78,111,100,101,46,114,101,109,111,118,101,67,104,105,108,100,40,116,41,44,116,61,110,117,108,108,125,125,102,117,110,99,116,105,111,110,32,102,101,40,101,44,116,41,123,118,97,114,32,110,61,101,46,115,112,108,105,116,40,34,124,34,41,44,114,61,110,46,108,101,110,103,116,104,59,119,104,105,108,101,40,114,45,45,41,98,46,97,116,116,114,72,97,110,100,108,101,91,110,91,114,93,93,61,116,125,102,117,110,99,116,105,111,110,32,112,101,40,101,44,116,41,123,118,97,114,32,110,61,116,38,38,101,44,114,61,110,38,38,49,61,61,61,101,46,110,111,100,101,84,121,112,101,38,38,49,61,61,61,116,46,110,111,100,101,84,121,112,101,38,38,101,46,115,111,117,114,99,101,73,110,100,101,120,45,116,46,115,111,117,114,99,101,73,110,100,101,120,59,105,102,40,114,41,114,101,116,117,114,110,32,114,59,105,102,40,110,41,119,104,105,108,101,40,110,61,110,46,110,101,120,116,83,105,98,108,105,110,103,41,105,102,40,110,61,61,61,116,41,114,101,116,117,114,110,45,49,59,114,101,116,117,114,110,32,101,63,49,58,45,49,125,102,117,110,99,116,105,111,110,32,100,101,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,34,105,110,112,117,116,34,61,61,61,101,46,110,111,100,101,78,97,109,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,38,38,101,46,116,121,112,101,61,61,61,116,125,125,102,117,110,99,116,105,111,110,32,104,101,40,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,46,110,111,100,101,78,97,109,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,59,114,101,116,117,114,110,40,34,105,110,112,117,116,34,61,61,61,116,124,124,34,98,117,116,116,111,110,34,61,61,61,116,41,38,38,101,46,116,121,112,101,61,61,61,110,125,125,102,117,110,99,116,105,111,110,32,103,101,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,34,102,111,114,109,34,105,110,32,101,63,101,46,112,97,114,101,110,116,78,111,100,101,38,38,33,49,61,61,61,101,46,100,105,115,97,98,108,101,100,63,34,108,97,98,101,108,34,105,110,32,101,63,34,108,97,98,101,108,34,105,110,32,101,46,112,97,114,101,110,116,78,111,100,101,63,101,46,112,97,114,101,110,116,78,111,100,101,46,100,105,115,97,98,108,101,100,61,61,61,116,58,101,46,100,105,115,97,98,108,101,100,61,61,61,116,58,101,46,105,115,68,105,115,97,98,108,101,100,61,61,61,116,124,124,101,46,105,115,68,105,115,97,98,108,101,100,33,61,61,33,116,38,38,97,101,40,101,41,61,61,61,116,58,101,46,100,105,115,97,98,108,101,100,61,61,61,116,58,34,108,97,98,101,108,34,105,110,32,101,38,38,101,46,100,105,115,97,98,108,101,100,61,61,61,116,125,125,102,117,110,99,116,105,111,110,32,118,101,40,97,41,123,114,101,116,117,114,110,32,108,101,40,102,117,110,99,116,105,111,110,40,111,41,123,114,101,116,117,114,110,32,111,61,43,111,44,108,101,40,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,44,114,61,97,40,91,93,44,101,46,108,101,110,103,116,104,44,111,41,44,105,61,114,46,108,101,110,103,116,104,59,119,104,105,108,101,40,105,45,45,41,101,91,110,61,114,91,105,93,93,38,38,40,101,91,110,93,61,33,40,116,91,110,93,61,101,91,110,93,41,41,125,41,125,41,125,102,117,110,99,116,105,111,110,32,121,101,40,101,41,123,114,101,116,117,114,110,32,101,38,38,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,101,46,103,101,116,69,108,101,109,101,110,116,115,66,121,84,97,103,78,97,109,101,38,38,101,125,102,111,114,40,101,32,105,110,32,100,61,115,101,46,115,117,112,112,111,114,116,61,123,125,44,105,61,115,101,46,105,115,88,77,76,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,46,110,97,109,101,115,112,97,99,101,85,82,73,44,110,61,40,101,46,111,119,110,101,114,68,111,99,117,109,101,110,116,124,124,101,41,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,59,114,101,116,117,114,110,33,89,46,116,101,115,116,40,116,124,124,110,38,38,110,46,110,111,100,101,78,97,109,101,124,124,34,72,84,77,76,34,41,125,44,84,61,115,101,46,115,101,116,68,111,99,117,109,101,110,116,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,44,110,44,114,61,101,63,101,46,111,119,110,101,114,68,111,99,117,109,101,110,116,124,124,101,58,109,59,114,101,116,117,114,110,32,114,33,61,61,67,38,38,57,61,61,61,114,46,110,111,100,101,84,121,112,101,38,38,114,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,38,38,40,97,61,40,67,61,114,41,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,44,69,61,33,105,40,67,41,44,109,33,61,61,67,38,38,40,110,61,67,46,100,101,102,97,117,108,116,86,105,101,119,41,38,38,110,46,116,111,112,33,61,61,110,38,38,40,110,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,63,110,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,117,110,108,111,97,100,34,44,111,101,44,33,49,41,58,110,46,97,116,116,97,99,104,69,118,101,110,116,38,38,110,46,97,116,116,97,99,104,69,118,101,110,116,40,34,111,110,117,110,108,111,97,100,34,44,111,101,41,41,44,100,46,97,116,116,114,105,98,117,116,101,115,61,99,101,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,46,99,108,97,115,115,78,97,109,101,61,34,105,34,44,33,101,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,78,97,109,101,34,41,125,41,44,100,46,103,101,116,69,108,101,109,101,110,116,115,66,121,84,97,103,78,97,109,101,61,99,101,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,46,97,112,112,101,110,100,67,104,105,108,100,40,67,46,99,114,101,97,116,101,67,111,109,109,101,110,116,40,34,34,41,41,44,33,101,46,103,101,116,69,108,101,109,101,110,116,115,66,121,84,97,103,78,97,109,101,40,34,42,34,41,46,108,101,110,103,116,104,125,41,44,100,46,103,101,116,69,108,101,109,101,110,116,115,66,121,67,108,97,115,115,78,97,109,101,61,75,46,116,101,115,116,40,67,46,103,101,116,69,108,101,109,101,110,116,115,66,121,67,108,97,115,115,78,97,109,101,41,44,100,46,103,101,116,66,121,73,100,61,99,101,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,97,46,97,112,112,101,110,100,67,104,105,108,100,40,101,41,46,105,100,61,107,44,33,67,46,103,101,116,69,108,101,109,101,110,116,115,66,121,78,97,109,101,124,124,33,67,46,103,101,116,69,108,101,109,101,110,116,115,66,121,78,97,109,101,40,107,41,46,108,101,110,103,116,104,125,41,44,100,46,103,101,116,66,121,73,100,63,40,98,46,102,105,108,116,101,114,46,73,68,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,46,114,101,112,108,97,99,101,40,116,101,44,110,101,41,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,105,100,34,41,61,61,61,116,125,125,44,98,46,102,105,110,100,46,73,68,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,102,40,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,116,46,103,101,116,69,108,101,109,101,110,116,66,121,73,100,38,38,69,41,123,118,97,114,32,110,61,116,46,103,101,116,69,108,101,109,101,110,116,66,121,73,100,40,101,41,59,114,101,116,117,114,110,32,110,63,91,110,93,58,91,93,125,125,41,58,40,98,46,102,105,108,116,101,114,46,73,68,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,110,61,101,46,114,101,112,108,97,99,101,40,116,101,44,110,101,41,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,101,46,103,101,116,65,116,116,114,105,98,117,116,101,78,111,100,101,38,38,101,46,103,101,116,65,116,116,114,105,98,117,116,101,78,111,100,101,40,34,105,100,34,41,59,114,101,116,117,114,110,32,116,38,38,116,46,118,97,108,117,101,61,61,61,110,125,125,44,98,46,102,105,110,100,46,73,68,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,102,40,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,116,46,103,101,116,69,108,101,109,101,110,116,66,121,73,100,38,38,69,41,123,118,97,114,32,110,44,114,44,105,44,111,61,116,46,103,101,116,69,108,101,109,101,110,116,66,121,73,100,40,101,41,59,105,102,40,111,41,123,105,102,40,40,110,61,111,46,103,101,116,65,116,116,114,105,98,117,116,101,78,111,100,101,40,34,105,100,34,41,41,38,38,110,46,118,97,108,117,101,61,61,61,101,41,114,101,116,117,114,110,91,111,93,59,105,61,116,46,103,101,116,69,108,101,109,101,110,116,115,66,121,78,97,109,101,40,101,41,44,114,61,48,59,119,104,105,108,101,40,111,61,105,91,114,43,43,93,41,105,102,40,40,110,61,111,46,103,101,116,65,116,116,114,105,98,117,116,101,78,111,100,101,40,34,105,100,34,41,41,38,38,110,46,118,97,108,117,101,61,61,61,101,41,114,101,116,117,114,110,91,111,93,125,114,101,116,117,114,110,91,93,125,125,41,44,98,46,102,105,110,100,46,84,65,71,61,100,46,103,101,116,69,108,101,109,101,110,116,115,66,121,84,97,103,78,97,109,101,63,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,116,46,103,101,116,69,108,101,109,101,110,116,115,66,121,84,97,103,78,97,109,101,63,116,46,103,101,116,69,108,101,109,101,110,116,115,66,121,84,97,103,78,97,109,101,40,101,41,58,100,46,113,115,97,63,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,101,41,58,118,111,105,100,32,48,125,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,44,114,61,91,93,44,105,61,48,44,111,61,116,46,103,101,116,69,108,101,109,101,110,116,115,66,121,84,97,103,78,97,109,101,40,101,41,59,105,102,40,34,42,34,61,61,61,101,41,123,119,104,105,108,101,40,110,61,111,91,105,43,43,93,41,49,61,61,61,110,46,110,111,100,101,84,121,112,101,38,38,114,46,112,117,115,104,40,110,41,59,114,101,116,117,114,110,32,114,125,114,101,116,117,114,110,32,111,125,44,98,46,102,105,110,100,46,67,76,65,83,83,61,100,46,103,101,116,69,108,101,109,101,110,116,115,66,121,67,108,97,115,115,78,97,109,101,38,38,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,102,40,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,116,46,103,101,116,69,108,101,109,101,110,116,115,66,121,67,108,97,115,115,78,97,109,101,38,38,69,41,114,101,116,117,114,110,32,116,46,103,101,116,69,108,101,109,101,110,116,115,66,121,67,108,97,115,115,78,97,109,101,40,101,41,125,44,115,61,91,93,44,118,61,91,93,44,40,100,46,113,115,97,61,75,46,116,101,115,116,40,67,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,41,41,38,38,40,99,101,40,102,117,110,99,116,105,111,110,40,101,41,123,97,46,97,112,112,101,110,100,67,104,105,108,100,40,101,41,46,105,110,110,101,114,72,84,77,76,61,34,60,97,32,105,100,61,39,34,43,107,43,34,39,62,60,47,97,62,60,115,101,108,101,99,116,32,105,100,61,39,34,43,107,43,34,45,92,114,92,92,39,32,109,115,97,108,108,111,119,99,97,112,116,117,114,101,61,39,39,62,60,111,112,116,105,111,110,32,115,101,108,101,99,116,101,100,61,39,39,62,60,47,111,112,116,105,111,110,62,60,47,115,101,108,101,99,116,62,34,44,101,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,34,91,109,115,97,108,108,111,119,99,97,112,116,117,114,101,94,61,39,39,93,34,41,46,108,101,110,103,116,104,38,38,118,46,112,117,115,104,40,34,91,42,94,36,93,61,34,43,77,43,34,42,40,63,58,39,39,124,92,34,92,34,41,34,41,44,101,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,34,91,115,101,108,101,99,116,101,100,93,34,41,46,108,101,110,103,116,104,124,124,118,46,112,117,115,104,40,34,92,92,91,34,43,77,43,34,42,40,63,58,118,97,108,117,101,124,34,43,82,43,34,41,34,41,44,101,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,34,91,105,100,126,61,34,43,107,43,34,45,93,34,41,46,108,101,110,103,116,104,124,124,118,46,112,117,115,104,40,34,126,61,34,41,44,101,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,34,58,99,104,101,99,107,101,100,34,41,46,108,101,110,103,116,104,124,124,118,46,112,117,115,104,40,34,58,99,104,101,99,107,101,100,34,41,44,101,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,34,97,35,34,43,107,43,34,43,42,34,41,46,108,101,110,103,116,104,124,124,118,46,112,117,115,104,40,34,46,35,46,43,91,43,126,93,34,41,125,41,44,99,101,40,102,117,110,99,116,105,111,110,40,101,41,123,101,46,105,110,110,101,114,72,84,77,76,61,34,60,97,32,104,114,101,102,61,39,39,32,100,105,115,97,98,108,101,100,61,39,100,105,115,97,98,108,101,100,39,62,60,47,97,62,60,115,101,108,101,99,116,32,100,105,115,97,98,108,101,100,61,39,100,105,115,97,98,108,101,100,39,62,60,111,112,116,105,111,110,47,62,60,47,115,101,108,101,99,116,62,34,59,118,97,114,32,116,61,67,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,105,110,112,117,116,34,41,59,116,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,116,121,112,101,34,44,34,104,105,100,100,101,110,34,41,44,101,46,97,112,112,101,110,100,67,104,105,108,100,40,116,41,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,110,97,109,101,34,44,34,68,34,41,44,101,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,34,91,110,97,109,101,61,100,93,34,41,46,108,101,110,103,116,104,38,38,118,46,112,117,115,104,40,34,110,97,109,101,34,43,77,43,34,42,91,42,94,36,124,33,126,93,63,61,34,41,44,50,33,61,61,101,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,34,58,101,110,97,98,108,101,100,34,41,46,108,101,110,103,116,104,38,38,118,46,112,117,115,104,40,34,58,101,110,97,98,108,101,100,34,44,34,58,100,105,115,97,98,108,101,100,34,41,44,97,46,97,112,112,101,110,100,67,104,105,108,100,40,101,41,46,100,105,115,97,98,108,101,100,61,33,48,44,50,33,61,61,101,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,34,58,100,105,115,97,98,108,101,100,34,41,46,108,101,110,103,116,104,38,38,118,46,112,117,115,104,40,34,58,101,110,97,98,108,101,100,34,44,34,58,100,105,115,97,98,108,101,100,34,41,44,101,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,34,42,44,58,120,34,41,44,118,46,112,117,115,104,40,34,44,46,42,58,34,41,125,41,41,44,40,100,46,109,97,116,99,104,101,115,83,101,108,101,99,116,111,114,61,75,46,116,101,115,116,40,99,61,97,46,109,97,116,99,104,101,115,124,124,97,46,119,101,98,107,105,116,77,97,116,99,104,101,115,83,101,108,101,99,116,111,114,124,124,97,46,109,111,122,77,97,116,99,104,101,115,83,101,108,101,99,116,111,114,124,124,97,46,111,77,97,116,99,104,101,115,83,101,108,101,99,116,111,114,124,124,97,46,109,115,77,97,116,99,104,101,115,83,101,108,101,99,116,111,114,41,41,38,38,99,101,40,102,117,110,99,116,105,111,110,40,101,41,123,100,46,100,105,115,99,111,110,110,101,99,116,101,100,77,97,116,99,104,61,99,46,99,97,108,108,40,101,44,34,42,34,41,44,99,46,99,97,108,108,40,101,44,34,91,115,33,61,39,39,93,58,120,34,41,44,115,46,112,117,115,104,40,34,33,61,34,44,36,41,125,41,44,118,61,118,46,108,101,110,103,116,104,38,38,110,101,119,32,82,101,103,69,120,112,40,118,46,106,111,105,110,40,34,124,34,41,41,44,115,61,115,46,108,101,110,103,116,104,38,38,110,101,119,32,82,101,103,69,120,112,40,115,46,106,111,105,110,40,34,124,34,41,41,44,116,61,75,46,116,101,115,116,40,97,46,99,111,109,112,97,114,101,68,111,99,117,109,101,110,116,80,111,115,105,116,105,111,110,41,44,121,61,116,124,124,75,46,116,101,115,116,40,97,46,99,111,110,116,97,105,110,115,41,63,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,61,57,61,61,61,101,46,110,111,100,101,84,121,112,101,63,101,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,58,101,44,114,61,116,38,38,116,46,112,97,114,101,110,116,78,111,100,101,59,114,101,116,117,114,110,32,101,61,61,61,114,124,124,33,40,33,114,124,124,49,33,61,61,114,46,110,111,100,101,84,121,112,101,124,124,33,40,110,46,99,111,110,116,97,105,110,115,63,110,46,99,111,110,116,97,105,110,115,40,114,41,58,101,46,99,111,109,112,97,114,101,68,111,99,117,109,101,110,116,80,111,115,105,116,105,111,110,38,38,49,54,38,101,46,99,111,109,112,97,114,101,68,111,99,117,109,101,110,116,80,111,115,105,116,105,111,110,40,114,41,41,41,125,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,102,40,116,41,119,104,105,108,101,40,116,61,116,46,112,97,114,101,110,116,78,111,100,101,41,105,102,40,116,61,61,61,101,41,114,101,116,117,114,110,33,48,59,114,101,116,117,114,110,33,49,125,44,68,61,116,63,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,102,40,101,61,61,61,116,41,114,101,116,117,114,110,32,108,61,33,48,44,48,59,118,97,114,32,110,61,33,101,46,99,111,109,112,97,114,101,68,111,99,117,109,101,110,116,80,111,115,105,116,105,111,110,45,33,116,46,99,111,109,112,97,114,101,68,111,99,117,109,101,110,116,80,111,115,105,116,105,111,110,59,114,101,116,117,114,110,32,110,124,124,40,49,38,40,110,61,40,101,46,111,119,110,101,114,68,111,99,117,109,101,110,116,124,124,101,41,61,61,61,40,116,46,111,119,110,101,114,68,111,99,117,109,101,110,116,124,124,116,41,63,101,46,99,111,109,112,97,114,101,68,111,99,117,109,101,110,116,80,111,115,105,116,105,111,110,40,116,41,58,49,41,124,124,33,100,46,115,111,114,116,68,101,116,97,99,104,101,100,38,38,116,46,99,111,109,112,97,114,101,68,111,99,117,109,101,110,116,80,111,115,105,116,105,111,110,40,101,41,61,61,61,110,63,101,61,61,61,67,124,124,101,46,111,119,110,101,114,68,111,99,117,109,101,110,116,61,61,61,109,38,38,121,40,109,44,101,41,63,45,49,58,116,61,61,61,67,124,124,116,46,111,119,110,101,114,68,111,99,117,109,101,110,116,61,61,61,109,38,38,121,40,109,44,116,41,63,49,58,117,63,80,40,117,44,101,41,45,80,40,117,44,116,41,58,48,58,52,38,110,63,45,49,58,49,41,125,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,102,40,101,61,61,61,116,41,114,101,116,117,114,110,32,108,61,33,48,44,48,59,118,97,114,32,110,44,114,61,48,44,105,61,101,46,112,97,114,101,110,116,78,111,100,101,44,111,61,116,46,112,97,114,101,110,116,78,111,100,101,44,97,61,91,101,93,44,115,61,91,116,93,59,105,102,40,33,105,124,124,33,111,41,114,101,116,117,114,110,32,101,61,61,61,67,63,45,49,58,116,61,61,61,67,63,49,58,105,63,45,49,58,111,63,49,58,117,63,80,40,117,44,101,41,45,80,40,117,44,116,41,58,48,59,105,102,40,105,61,61,61,111,41,114,101,116,117,114,110,32,112,101,40,101,44,116,41,59,110,61,101,59,119,104,105,108,101,40,110,61,110,46,112,97,114,101,110,116,78,111,100,101,41,97,46,117,110,115,104,105,102,116,40,110,41,59,110,61,116,59,119,104,105,108,101,40,110,61,110,46,112,97,114,101,110,116,78,111,100,101,41,115,46,117,110,115,104,105,102,116,40,110,41,59,119,104,105,108,101,40,97,91,114,93,61,61,61,115,91,114,93,41,114,43,43,59,114,101,116,117,114,110,32,114,63,112,101,40,97,91,114,93,44,115,91,114,93,41,58,97,91,114,93,61,61,61,109,63,45,49,58,115,91,114,93,61,61,61,109,63,49,58,48,125,41,44,67,125,44,115,101,46,109,97,116,99,104,101,115,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,115,101,40,101,44,110,117,108,108,44,110,117,108,108,44,116,41,125,44,115,101,46,109,97,116,99,104,101,115,83,101,108,101,99,116,111,114,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,102,40,40,101,46,111,119,110,101,114,68,111,99,117,109,101,110,116,124,124,101,41,33,61,61,67,38,38,84,40,101,41,44,100,46,109,97,116,99,104,101,115,83,101,108,101,99,116,111,114,38,38,69,38,38,33,65,91,116,43,34,32,34,93,38,38,40,33,115,124,124,33,115,46,116,101,115,116,40,116,41,41,38,38,40,33,118,124,124,33,118,46,116,101,115,116,40,116,41,41,41,116,114,121,123,118,97,114,32,110,61,99,46,99,97,108,108,40,101,44,116,41,59,105,102,40,110,124,124,100,46,100,105,115,99,111,110,110,101,99,116,101,100,77,97,116,99,104,124,124,101,46,100,111,99,117,109,101,110,116,38,38,49,49,33,61,61,101,46,100,111,99,117,109,101,110,116,46,110,111,100,101,84,121,112,101,41,114,101,116,117,114,110,32,110,125,99,97,116,99,104,40,101,41,123,65,40,116,44,33,48,41,125,114,101,116,117,114,110,32,48,60,115,101,40,116,44,67,44,110,117,108,108,44,91,101,93,41,46,108,101,110,103,116,104,125,44,115,101,46,99,111,110,116,97,105,110,115,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,40,101,46,111,119,110,101,114,68,111,99,117,109,101,110,116,124,124,101,41,33,61,61,67,38,38,84,40,101,41,44,121,40,101,44,116,41,125,44,115,101,46,97,116,116,114,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,40,101,46,111,119,110,101,114,68,111,99,117,109,101,110,116,124,124,101,41,33,61,61,67,38,38,84,40,101,41,59,118,97,114,32,110,61,98,46,97,116,116,114,72,97,110,100,108,101,91,116,46,116,111,76,111,119,101,114,67,97,115,101,40,41,93,44,114,61,110,38,38,106,46,99,97,108,108,40,98,46,97,116,116,114,72,97,110,100,108,101,44,116,46,116,111,76,111,119,101,114,67,97,115,101,40,41,41,63,110,40,101,44,116,44,33,69,41,58,118,111,105,100,32,48,59,114,101,116,117,114,110,32,118,111,105,100,32,48,33,61,61,114,63,114,58,100,46,97,116,116,114,105,98,117,116,101,115,124,124,33,69,63,101,46,103,101,116,65,116,116,114,105,98,117,116,101,40,116,41,58,40,114,61,101,46,103,101,116,65,116,116,114,105,98,117,116,101,78,111,100,101,40,116,41,41,38,38,114,46,115,112,101,99,105,102,105,101,100,63,114,46,118,97,108,117,101,58,110,117,108,108,125,44,115,101,46,101,115,99,97,112,101,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,40,101,43,34,34,41,46,114,101,112,108,97,99,101,40,114,101,44,105,101,41,125,44,115,101,46,101,114,114,111,114,61,102,117,110,99,116,105,111,110,40,101,41,123,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,83,121,110,116,97,120,32,101,114,114,111,114,44,32,117,110,114,101,99,111,103,110,105,122,101,100,32,101,120,112,114,101,115,115,105,111,110,58,32,34,43,101,41,125,44,115,101,46,117,110,105,113,117,101,83,111,114,116,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,44,110,61,91,93,44,114,61,48,44,105,61,48,59,105,102,40,108,61,33,100,46,100,101,116,101,99,116,68,117,112,108,105,99,97,116,101,115,44,117,61,33,100,46,115,111,114,116,83,116,97,98,108,101,38,38,101,46,115,108,105,99,101,40,48,41,44,101,46,115,111,114,116,40,68,41,44,108,41,123,119,104,105,108,101,40,116,61,101,91,105,43,43,93,41,116,61,61,61,101,91,105,93,38,38,40,114,61,110,46,112,117,115,104,40,105,41,41,59,119,104,105,108,101,40,114,45,45,41,101,46,115,112,108,105,99,101,40,110,91,114,93,44,49,41,125,114,101,116,117,114,110,32,117,61,110,117,108,108,44,101,125,44,111,61,115,101,46,103,101,116,84,101,120,116,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,44,110,61,34,34,44,114,61,48,44,105,61,101,46,110,111,100,101,84,121,112,101,59,105,102,40,105,41,123,105,102,40,49,61,61,61,105,124,124,57,61,61,61,105,124,124,49,49,61,61,61,105,41,123,105,102,40,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,101,46,116,101,120,116,67,111,110,116,101,110,116,41,114,101,116,117,114,110,32,101,46,116,101,120,116,67,111,110,116,101,110,116,59,102,111,114,40,101,61,101,46,102,105,114,115,116,67,104,105,108,100,59,101,59,101,61,101,46,110,101,120,116,83,105,98,108,105,110,103,41,110,43,61,111,40,101,41,125,101,108,115,101,32,105,102,40,51,61,61,61,105,124,124,52,61,61,61,105,41,114,101,116,117,114,110,32,101,46,110,111,100,101,86,97,108,117,101,125,101,108,115,101,32,119,104,105,108,101,40,116,61,101,91,114,43,43,93,41,110,43,61,111,40,116,41,59,114,101,116,117,114,110,32,110,125,44,40,98,61,115,101,46,115,101,108,101,99,116,111,114,115,61,123,99,97,99,104,101,76,101,110,103,116,104,58,53,48,44,99,114,101,97,116,101,80,115,101,117,100,111,58,108,101,44,109,97,116,99,104,58,71,44,97,116,116,114,72,97,110,100,108,101,58,123,125,44,102,105,110,100,58,123,125,44,114,101,108,97,116,105,118,101,58,123,34,62,34,58,123,100,105,114,58,34,112,97,114,101,110,116,78,111,100,101,34,44,102,105,114,115,116,58,33,48,125,44,34,32,34,58,123,100,105,114,58,34,112,97,114,101,110,116,78,111,100,101,34,125,44,34,43,34,58,123,100,105,114,58,34,112,114,101,118,105,111,117,115,83,105,98,108,105,110,103,34,44,102,105,114,115,116,58,33,48,125,44,34,126,34,58,123,100,105,114,58,34,112,114,101,118,105,111,117,115,83,105,98,108,105,110,103,34,125,125,44,112,114,101,70,105,108,116,101,114,58,123,65,84,84,82,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,91,49,93,61,101,91,49,93,46,114,101,112,108,97,99,101,40,116,101,44,110,101,41,44,101,91,51,93,61,40,101,91,51,93,124,124,101,91,52,93,124,124,101,91,53,93,124,124,34,34,41,46,114,101,112,108,97,99,101,40,116,101,44,110,101,41,44,34,126,61,34,61,61,61,101,91,50,93,38,38,40,101,91,51,93,61,34,32,34,43,101,91,51,93,43,34,32,34,41,44,101,46,115,108,105,99,101,40,48,44,52,41,125,44,67,72,73,76,68,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,91,49,93,61,101,91,49,93,46,116,111,76,111,119,101,114,67,97,115,101,40,41,44,34,110,116,104,34,61,61,61,101,91,49,93,46,115,108,105,99,101,40,48,44,51,41,63,40,101,91,51,93,124,124,115,101,46,101,114,114,111,114,40,101,91,48,93,41,44,101,91,52,93,61,43,40,101,91,52,93,63,101,91,53,93,43,40,101,91,54,93,124,124,49,41,58,50,42,40,34,101,118,101,110,34,61,61,61,101,91,51,93,124,124,34,111,100,100,34,61,61,61,101,91,51,93,41,41,44,101,91,53,93,61,43,40,101,91,55,93,43,101,91,56,93,124,124,34,111,100,100,34,61,61,61,101,91,51,93,41,41,58,101,91,51,93,38,38,115,101,46,101,114,114,111,114,40,101,91,48,93,41,44,101,125,44,80,83,69,85,68,79,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,44,110,61,33,101,91,54,93,38,38,101,91,50,93,59,114,101,116,117,114,110,32,71,46,67,72,73,76,68,46,116,101,115,116,40,101,91,48,93,41,63,110,117,108,108,58,40,101,91,51,93,63,101,91,50,93,61,101,91,52,93,124,124,101,91,53,93,124,124,34,34,58,110,38,38,88,46,116,101,115,116,40,110,41,38,38,40,116,61,104,40,110,44,33,48,41,41,38,38,40,116,61,110,46,105,110,100,101,120,79,102,40,34,41,34,44,110,46,108,101,110,103,116,104,45,116,41,45,110,46,108,101,110,103,116,104,41,38,38,40,101,91,48,93,61,101,91,48,93,46,115,108,105,99,101,40,48,44,116,41,44,101,91,50,93,61,110,46,115,108,105,99,101,40,48,44,116,41,41,44,101,46,115,108,105,99,101,40,48,44,51,41,41,125,125,44,102,105,108,116,101,114,58,123,84,65,71,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,46,114,101,112,108,97,99,101,40,116,101,44,110,101,41,46,116,111,76,111,119,101,114,67,97,115,101,40,41,59,114,101,116,117,114,110,34,42,34,61,61,61,101,63,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,33,48,125,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,46,110,111,100,101,78,97,109,101,38,38,101,46,110,111,100,101,78,97,109,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,61,61,61,116,125,125,44,67,76,65,83,83,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,112,91,101,43,34,32,34,93,59,114,101,116,117,114,110,32,116,124,124,40,116,61,110,101,119,32,82,101,103,69,120,112,40,34,40,94,124,34,43,77,43,34,41,34,43,101,43,34,40,34,43,77,43,34,124,36,41,34,41,41,38,38,112,40,101,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,46,116,101,115,116,40,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,101,46,99,108,97,115,115,78,97,109,101,38,38,101,46,99,108,97,115,115,78,97,109,101,124,124,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,101,46,103,101,116,65,116,116,114,105,98,117,116,101,38,38,101,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,41,124,124,34,34,41,125,41,125,44,65,84,84,82,58,102,117,110,99,116,105,111,110,40,110,44,114,44,105,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,115,101,46,97,116,116,114,40,101,44,110,41,59,114,101,116,117,114,110,32,110,117,108,108,61,61,116,63,34,33,61,34,61,61,61,114,58,33,114,124,124,40,116,43,61,34,34,44,34,61,34,61,61,61,114,63,116,61,61,61,105,58,34,33,61,34,61,61,61,114,63,116,33,61,61,105,58,34,94,61,34,61,61,61,114,63,105,38,38,48,61,61,61,116,46,105,110,100,101,120,79,102,40,105,41,58,34,42,61,34,61,61,61,114,63,105,38,38,45,49,60,116,46,105,110,100,101,120,79,102,40,105,41,58,34,36,61,34,61,61,61,114,63,105,38,38,116,46,115,108,105,99,101,40,45,105,46,108,101,110,103,116,104,41,61,61,61,105,58,34,126,61,34,61,61,61,114,63,45,49,60,40,34,32,34,43,116,46,114,101,112,108,97,99,101,40,70,44,34,32,34,41,43,34,32,34,41,46,105,110,100,101,120,79,102,40,105,41,58,34,124,61,34,61,61,61,114,38,38,40,116,61,61,61,105,124,124,116,46,115,108,105,99,101,40,48,44,105,46,108,101,110,103,116,104,43,49,41,61,61,61,105,43,34,45,34,41,41,125,125,44,67,72,73,76,68,58,102,117,110,99,116,105,111,110,40,104,44,101,44,116,44,103,44,118,41,123,118,97,114,32,121,61,34,110,116,104,34,33,61,61,104,46,115,108,105,99,101,40,48,44,51,41,44,109,61,34,108,97,115,116,34,33,61,61,104,46,115,108,105,99,101,40,45,52,41,44,120,61,34,111,102,45,116,121,112,101,34,61,61,61,101,59,114,101,116,117,114,110,32,49,61,61,61,103,38,38,48,61,61,61,118,63,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,33,33,101,46,112,97,114,101,110,116,78,111,100,101,125,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,44,105,44,111,44,97,44,115,44,117,44,108,61,121,33,61,61,109,63,34,110,101,120,116,83,105,98,108,105,110,103,34,58,34,112,114,101,118,105,111,117,115,83,105,98,108,105,110,103,34,44,99,61,101,46,112,97,114,101,110,116,78,111,100,101,44,102,61,120,38,38,101,46,110,111,100,101,78,97,109,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,44,112,61,33,110,38,38,33,120,44,100,61,33,49,59,105,102,40,99,41,123,105,102,40,121,41,123,119,104,105,108,101,40,108,41,123,97,61,101,59,119,104,105,108,101,40,97,61,97,91,108,93,41,105,102,40,120,63,97,46,110,111,100,101,78,97,109,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,61,61,61,102,58,49,61,61,61,97,46,110,111,100,101,84,121,112,101,41,114,101,116,117,114,110,33,49,59,117,61,108,61,34,111,110,108,121,34,61,61,61,104,38,38,33,117,38,38,34,110,101,120,116,83,105,98,108,105,110,103,34,125,114,101,116,117,114,110,33,48,125,105,102,40,117,61,91,109,63,99,46,102,105,114,115,116,67,104,105,108,100,58,99,46,108,97,115,116,67,104,105,108,100,93,44,109,38,38,112,41,123,100,61,40,115,61,40,114,61,40,105,61,40,111,61,40,97,61,99,41,91,107,93,124,124,40,97,91,107,93,61,123,125,41,41,91,97,46,117,110,105,113,117,101,73,68,93,124,124,40,111,91,97,46,117,110,105,113,117,101,73,68,93,61,123,125,41,41,91,104,93,124,124,91,93,41,91,48,93,61,61,61,83,38,38,114,91,49,93,41,38,38,114,91,50,93,44,97,61,115,38,38,99,46,99,104,105,108,100,78,111,100,101,115,91,115,93,59,119,104,105,108,101,40,97,61,43,43,115,38,38,97,38,38,97,91,108,93,124,124,40,100,61,115,61,48,41,124,124,117,46,112,111,112,40,41,41,105,102,40,49,61,61,61,97,46,110,111,100,101,84,121,112,101,38,38,43,43,100,38,38,97,61,61,61,101,41,123,105,91,104,93,61,91,83,44,115,44,100,93,59,98,114,101,97,107,125,125,101,108,115,101,32,105,102,40,112,38,38,40,100,61,115,61,40,114,61,40,105,61,40,111,61,40,97,61,101,41,91,107,93,124,124,40,97,91,107,93,61,123,125,41,41,91,97,46,117,110,105,113,117,101,73,68,93,124,124,40,111,91,97,46,117,110,105,113,117,101,73,68,93,61,123,125,41,41,91,104,93,124,124,91,93,41,91,48,93,61,61,61,83,38,38,114,91,49,93,41,44,33,49,61,61,61,100,41,119,104,105,108,101,40,97,61,43,43,115,38,38,97,38,38,97,91,108,93,124,124,40,100,61,115,61,48,41,124,124,117,46,112,111,112,40,41,41,105,102,40,40,120,63,97,46,110,111,100,101,78,97,109,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,61,61,61,102,58,49,61,61,61,97,46,110,111,100,101,84,121,112,101,41,38,38,43,43,100,38,38,40,112,38,38,40,40,105,61,40,111,61,97,91,107,93,124,124,40,97,91,107,93,61,123,125,41,41,91,97,46,117,110,105,113,117,101,73,68,93,124,124,40,111,91,97,46,117,110,105,113,117,101,73,68,93,61,123,125,41,41,91,104,93,61,91,83,44,100,93,41,44,97,61,61,61,101,41,41,98,114,101,97,107,59,114,101,116,117,114,110,40,100,45,61,118,41,61,61,61,103,124,124,100,37,103,61,61,48,38,38,48,60,61,100,47,103,125,125,125,44,80,83,69,85,68,79,58,102,117,110,99,116,105,111,110,40,101,44,111,41,123,118,97,114,32,116,44,97,61,98,46,112,115,101,117,100,111,115,91,101,93,124,124,98,46,115,101,116,70,105,108,116,101,114,115,91,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,93,124,124,115,101,46,101,114,114,111,114,40,34,117,110,115,117,112,112,111,114,116,101,100,32,112,115,101,117,100,111,58,32,34,43,101,41,59,114,101,116,117,114,110,32,97,91,107,93,63,97,40,111,41,58,49,60,97,46,108,101,110,103,116,104,63,40,116,61,91,101,44,101,44,34,34,44,111,93,44,98,46,115,101,116,70,105,108,116,101,114,115,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,41,63,108,101,40,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,44,114,61,97,40,101,44,111,41,44,105,61,114,46,108,101,110,103,116,104,59,119,104,105,108,101,40,105,45,45,41,101,91,110,61,80,40,101,44,114,91,105,93,41,93,61,33,40,116,91,110,93,61,114,91,105,93,41,125,41,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,97,40,101,44,48,44,116,41,125,41,58,97,125,125,44,112,115,101,117,100,111,115,58,123,110,111,116,58,108,101,40,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,114,61,91,93,44,105,61,91,93,44,115,61,102,40,101,46,114,101,112,108,97,99,101,40,66,44,34,36,49,34,41,41,59,114,101,116,117,114,110,32,115,91,107,93,63,108,101,40,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,114,41,123,118,97,114,32,105,44,111,61,115,40,101,44,110,117,108,108,44,114,44,91,93,41,44,97,61,101,46,108,101,110,103,116,104,59,119,104,105,108,101,40,97,45,45,41,40,105,61,111,91,97,93,41,38,38,40,101,91,97,93,61,33,40,116,91,97,93,61,105,41,41,125,41,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,114,101,116,117,114,110,32,114,91,48,93,61,101,44,115,40,114,44,110,117,108,108,44,110,44,105,41,44,114,91,48,93,61,110,117,108,108,44,33,105,46,112,111,112,40,41,125,125,41,44,104,97,115,58,108,101,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,48,60,115,101,40,116,44,101,41,46,108,101,110,103,116,104,125,125,41,44,99,111,110,116,97,105,110,115,58,108,101,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,61,116,46,114,101,112,108,97,99,101,40,116,101,44,110,101,41,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,45,49,60,40,101,46,116,101,120,116,67,111,110,116,101,110,116,124,124,111,40,101,41,41,46,105,110,100,101,120,79,102,40,116,41,125,125,41,44,108,97,110,103,58,108,101,40,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,86,46,116,101,115,116,40,110,124,124,34,34,41,124,124,115,101,46,101,114,114,111,114,40,34,117,110,115,117,112,112,111,114,116,101,100,32,108,97,110,103,58,32,34,43,110,41,44,110,61,110,46,114,101,112,108,97,99,101,40,116,101,44,110,101,41,46,116,111,76,111,119,101,114,67,97,115,101,40,41,44,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,59,100,111,123,105,102,40,116,61,69,63,101,46,108,97,110,103,58,101,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,120,109,108,58,108,97,110,103,34,41,124,124,101,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,108,97,110,103,34,41,41,114,101,116,117,114,110,40,116,61,116,46,116,111,76,111,119,101,114,67,97,115,101,40,41,41,61,61,61,110,124,124,48,61,61,61,116,46,105,110,100,101,120,79,102,40,110,43,34,45,34,41,125,119,104,105,108,101,40,40,101,61,101,46,112,97,114,101,110,116,78,111,100,101,41,38,38,49,61,61,61,101,46,110,111,100,101,84,121,112,101,41,59,114,101,116,117,114,110,33,49,125,125,41,44,116,97,114,103,101,116,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,110,46,108,111,99,97,116,105,111,110,38,38,110,46,108,111,99,97,116,105,111,110,46,104,97,115,104,59,114,101,116,117,114,110,32,116,38,38,116,46,115,108,105,99,101,40,49,41,61,61,61,101,46,105,100,125,44,114,111,111,116,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,61,61,61,97,125,44,102,111,99,117,115,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,61,61,61,67,46,97,99,116,105,118,101,69,108,101,109,101,110,116,38,38,40,33,67,46,104,97,115,70,111,99,117,115,124,124,67,46,104,97,115,70,111,99,117,115,40,41,41,38,38,33,33,40,101,46,116,121,112,101,124,124,101,46,104,114,101,102,124,124,126,101,46,116,97,98,73,110,100,101,120,41,125,44,101,110,97,98,108,101,100,58,103,101,40,33,49,41,44,100,105,115,97,98,108,101,100,58,103,101,40,33,48,41,44,99,104,101,99,107,101,100,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,46,110,111,100,101,78,97,109,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,59,114,101,116,117,114,110,34,105,110,112,117,116,34,61,61,61,116,38,38,33,33,101,46,99,104,101,99,107,101,100,124,124,34,111,112,116,105,111,110,34,61,61,61,116,38,38,33,33,101,46,115,101,108,101,99,116,101,100,125,44,115,101,108,101,99,116,101,100,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,46,112,97,114,101,110,116,78,111,100,101,38,38,101,46,112,97,114,101,110,116,78,111,100,101,46,115,101,108,101,99,116,101,100,73,110,100,101,120,44,33,48,61,61,61,101,46,115,101,108,101,99,116,101,100,125,44,101,109,112,116,121,58,102,117,110,99,116,105,111,110,40,101,41,123,102,111,114,40,101,61,101,46,102,105,114,115,116,67,104,105,108,100,59,101,59,101,61,101,46,110,101,120,116,83,105,98,108,105,110,103,41,105,102,40,101,46,110,111,100,101,84,121,112,101,60,54,41,114,101,116,117,114,110,33,49,59,114,101,116,117,114,110,33,48,125,44,112,97,114,101,110,116,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,33,98,46,112,115,101,117,100,111,115,46,101,109,112,116,121,40,101,41,125,44,104,101,97,100,101,114,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,74,46,116,101,115,116,40,101,46,110,111,100,101,78,97,109,101,41,125,44,105,110,112,117,116,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,81,46,116,101,115,116,40,101,46,110,111,100,101,78,97,109,101,41,125,44,98,117,116,116,111,110,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,46,110,111,100,101,78,97,109,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,59,114,101,116,117,114,110,34,105,110,112,117,116,34,61,61,61,116,38,38,34,98,117,116,116,111,110,34,61,61,61,101,46,116,121,112,101,124,124,34,98,117,116,116,111,110,34,61,61,61,116,125,44,116,101,120,116,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,59,114,101,116,117,114,110,34,105,110,112,117,116,34,61,61,61,101,46,110,111,100,101,78,97,109,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,38,38,34,116,101,120,116,34,61,61,61,101,46,116,121,112,101,38,38,40,110,117,108,108,61,61,40,116,61,101,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,116,121,112,101,34,41,41,124,124,34,116,101,120,116,34,61,61,61,116,46,116,111,76,111,119,101,114,67,97,115,101,40,41,41,125,44,102,105,114,115,116,58,118,101,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,91,48,93,125,41,44,108,97,115,116,58,118,101,40,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,91,116,45,49,93,125,41,44,101,113,58,118,101,40,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,114,101,116,117,114,110,91,110,60,48,63,110,43,116,58,110,93,125,41,44,101,118,101,110,58,118,101,40,102,117,110,99,116,105,111,110,40,101,44,116,41,123,102,111,114,40,118,97,114,32,110,61,48,59,110,60,116,59,110,43,61,50,41,101,46,112,117,115,104,40,110,41,59,114,101,116,117,114,110,32,101,125,41,44,111,100,100,58,118,101,40,102,117,110,99,116,105,111,110,40,101,44,116,41,123,102,111,114,40,118,97,114,32,110,61,49,59,110,60,116,59,110,43,61,50,41,101,46,112,117,115,104,40,110,41,59,114,101,116,117,114,110,32,101,125,41,44,108,116,58,118,101,40,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,102,111,114,40,118,97,114,32,114,61,110,60,48,63,110,43,116,58,116,60,110,63,116,58,110,59,48,60,61,45,45,114,59,41,101,46,112,117,115,104,40,114,41,59,114,101,116,117,114,110,32,101,125,41,44,103,116,58,118,101,40,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,102,111,114,40,118,97,114,32,114,61,110,60,48,63,110,43,116,58,110,59,43,43,114,60,116,59,41,101,46,112,117,115,104,40,114,41,59,114,101,116,117,114,110,32,101,125,41,125,125,41,46,112,115,101,117,100,111,115,46,110,116,104,61,98,46,112,115,101,117,100,111,115,46,101,113,44,123,114,97,100,105,111,58,33,48,44,99,104,101,99,107,98,111,120,58,33,48,44,102,105,108,101,58,33,48,44,112,97,115,115,119,111,114,100,58,33,48,44,105,109,97,103,101,58,33,48,125,41,98,46,112,115,101,117,100,111,115,91,101,93,61,100,101,40,101,41,59,102,111,114,40,101,32,105,110,123,115,117,98,109,105,116,58,33,48,44,114,101,115,101,116,58,33,48,125,41,98,46,112,115,101,117,100,111,115,91,101,93,61,104,101,40,101,41,59,102,117,110,99,116,105,111,110,32,109,101,40,41,123,125,102,117,110,99,116,105,111,110,32,120,101,40,101,41,123,102,111,114,40,118,97,114,32,116,61,48,44,110,61,101,46,108,101,110,103,116,104,44,114,61,34,34,59,116,60,110,59,116,43,43,41,114,43,61,101,91,116,93,46,118,97,108,117,101,59,114,101,116,117,114,110,32,114,125,102,117,110,99,116,105,111,110,32,98,101,40,115,44,101,44,116,41,123,118,97,114,32,117,61,101,46,100,105,114,44,108,61,101,46,110,101,120,116,44,99,61,108,124,124,117,44,102,61,116,38,38,34,112,97,114,101,110,116,78,111,100,101,34,61,61,61,99,44,112,61,114,43,43,59,114,101,116,117,114,110,32,101,46,102,105,114,115,116,63,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,119,104,105,108,101,40,101,61,101,91,117,93,41,105,102,40,49,61,61,61,101,46,110,111,100,101,84,121,112,101,124,124,102,41,114,101,116,117,114,110,32,115,40,101,44,116,44,110,41,59,114,101,116,117,114,110,33,49,125,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,44,105,44,111,44,97,61,91,83,44,112,93,59,105,102,40,110,41,123,119,104,105,108,101,40,101,61,101,91,117,93,41,105,102,40,40,49,61,61,61,101,46,110,111,100,101,84,121,112,101,124,124,102,41,38,38,115,40,101,44,116,44,110,41,41,114,101,116,117,114,110,33,48,125,101,108,115,101,32,119,104,105,108,101,40,101,61,101,91,117,93,41,105,102,40,49,61,61,61,101,46,110,111,100,101,84,121,112,101,124,124,102,41,105,102,40,105,61,40,111,61,101,91,107,93,124,124,40,101,91,107,93,61,123,125,41,41,91,101,46,117,110,105,113,117,101,73,68,93,124,124,40,111,91,101,46,117,110,105,113,117,101,73,68,93,61,123,125,41,44,108,38,38,108,61,61,61,101,46,110,111,100,101,78,97,109,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,41,101,61,101,91,117,93,124,124,101,59,101,108,115,101,123,105,102,40,40,114,61,105,91,99,93,41,38,38,114,91,48,93,61,61,61,83,38,38,114,91,49,93,61,61,61,112,41,114,101,116,117,114,110,32,97,91,50,93,61,114,91,50,93,59,105,102,40,40,105,91,99,93,61,97,41,91,50,93,61,115,40,101,44,116,44,110,41,41,114,101,116,117,114,110,33,48,125,114,101,116,117,114,110,33,49,125,125,102,117,110,99,116,105,111,110,32,119,101,40,105,41,123,114,101,116,117,114,110,32,49,60,105,46,108,101,110,103,116,104,63,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,61,105,46,108,101,110,103,116,104,59,119,104,105,108,101,40,114,45,45,41,105,102,40,33,105,91,114,93,40,101,44,116,44,110,41,41,114,101,116,117,114,110,33,49,59,114,101,116,117,114,110,33,48,125,58,105,91,48,93,125,102,117,110,99,116,105,111,110,32,84,101,40,101,44,116,44,110,44,114,44,105,41,123,102,111,114,40,118,97,114,32,111,44,97,61,91,93,44,115,61,48,44,117,61,101,46,108,101,110,103,116,104,44,108,61,110,117,108,108,33,61,116,59,115,60,117,59,115,43,43,41,40,111,61,101,91,115,93,41,38,38,40,110,38,38,33,110,40,111,44,114,44,105,41,124,124,40,97,46,112,117,115,104,40,111,41,44,108,38,38,116,46,112,117,115,104,40,115,41,41,41,59,114,101,116,117,114,110,32,97,125,102,117,110,99,116,105,111,110,32,67,101,40,100,44,104,44,103,44,118,44,121,44,101,41,123,114,101,116,117,114,110,32,118,38,38,33,118,91,107,93,38,38,40,118,61,67,101,40,118,41,41,44,121,38,38,33,121,91,107,93,38,38,40,121,61,67,101,40,121,44,101,41,41,44,108,101,40,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,114,41,123,118,97,114,32,105,44,111,44,97,44,115,61,91,93,44,117,61,91,93,44,108,61,116,46,108,101,110,103,116,104,44,99,61,101,124,124,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,102,111,114,40,118,97,114,32,114,61,48,44,105,61,116,46,108,101,110,103,116,104,59,114,60,105,59,114,43,43,41,115,101,40,101,44,116,91,114,93,44,110,41,59,114,101,116,117,114,110,32,110,125,40,104,124,124,34,42,34,44,110,46,110,111,100,101,84,121,112,101,63,91,110,93,58,110,44,91,93,41,44,102,61,33,100,124,124,33,101,38,38,104,63,99,58,84,101,40,99,44,115,44,100,44,110,44,114,41,44,112,61,103,63,121,124,124,40,101,63,100,58,108,124,124,118,41,63,91,93,58,116,58,102,59,105,102,40,103,38,38,103,40,102,44,112,44,110,44,114,41,44,118,41,123,105,61,84,101,40,112,44,117,41,44,118,40,105,44,91,93,44,110,44,114,41,44,111,61,105,46,108,101,110,103,116,104,59,119,104,105,108,101,40,111,45,45,41,40,97,61,105,91,111,93,41,38,38,40,112,91,117,91,111,93,93,61,33,40,102,91,117,91,111,93,93,61,97,41,41,125,105,102,40,101,41,123,105,102,40,121,124,124,100,41,123,105,102,40,121,41,123,105,61,91,93,44,111,61,112,46,108,101,110,103,116,104,59,119,104,105,108,101,40,111,45,45,41,40,97,61,112,91,111,93,41,38,38,105,46,112,117,115,104,40,102,91,111,93,61,97,41,59,121,40,110,117,108,108,44,112,61,91,93,44,105,44,114,41,125,111,61,112,46,108,101,110,103,116,104,59,119,104,105,108,101,40,111,45,45,41,40,97,61,112,91,111,93,41,38,38,45,49,60,40,105,61,121,63,80,40,101,44,97,41,58,115,91,111,93,41,38,38,40,101,91,105,93,61,33,40,116,91,105,93,61,97,41,41,125,125,101,108,115,101,32,112,61,84,101,40,112,61,61,61,116,63,112,46,115,112,108,105,99,101,40,108,44,112,46,108,101,110,103,116,104,41,58,112,41,44,121,63,121,40,110,117,108,108,44,116,44,112,44,114,41,58,72,46,97,112,112,108,121,40,116,44,112,41,125,41,125,102,117,110,99,116,105,111,110,32,69,101,40,101,41,123,102,111,114,40,118,97,114,32,105,44,116,44,110,44,114,61,101,46,108,101,110,103,116,104,44,111,61,98,46,114,101,108,97,116,105,118,101,91,101,91,48,93,46,116,121,112,101,93,44,97,61,111,124,124,98,46,114,101,108,97,116,105,118,101,91,34,32,34,93,44,115,61,111,63,49,58,48,44,117,61,98,101,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,61,61,61,105,125,44,97,44,33,48,41,44,108,61,98,101,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,45,49,60,80,40,105,44,101,41,125,44,97,44,33,48,41,44,99,61,91,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,61,33,111,38,38,40,110,124,124,116,33,61,61,119,41,124,124,40,40,105,61,116,41,46,110,111,100,101,84,121,112,101,63,117,40,101,44,116,44,110,41,58,108,40,101,44,116,44,110,41,41,59,114,101,116,117,114,110,32,105,61,110,117,108,108,44,114,125,93,59,115,60,114,59,115,43,43,41,105,102,40,116,61,98,46,114,101,108,97,116,105,118,101,91,101,91,115,93,46,116,121,112,101,93,41,99,61,91,98,101,40,119,101,40,99,41,44,116,41,93,59,101,108,115,101,123,105,102,40,40,116,61,98,46,102,105,108,116,101,114,91,101,91,115,93,46,116,121,112,101,93,46,97,112,112,108,121,40,110,117,108,108,44,101,91,115,93,46,109,97,116,99,104,101,115,41,41,91,107,93,41,123,102,111,114,40,110,61,43,43,115,59,110,60,114,59,110,43,43,41,105,102,40,98,46,114,101,108,97,116,105,118,101,91,101,91,110,93,46,116,121,112,101,93,41,98,114,101,97,107,59,114,101,116,117,114,110,32,67,101,40,49,60,115,38,38,119,101,40,99,41,44,49,60,115,38,38,120,101,40,101,46,115,108,105,99,101,40,48,44,115,45,49,41,46,99,111,110,99,97,116,40,123,118,97,108,117,101,58,34,32,34,61,61,61,101,91,115,45,50,93,46,116,121,112,101,63,34,42,34,58,34,34,125,41,41,46,114,101,112,108,97,99,101,40,66,44,34,36,49,34,41,44,116,44,115,60,110,38,38,69,101,40,101,46,115,108,105,99,101,40,115,44,110,41,41,44,110,60,114,38,38,69,101,40,101,61,101,46,115,108,105,99,101,40,110,41,41,44,110,60,114,38,38,120,101,40,101,41,41,125,99,46,112,117,115,104,40,116,41,125,114,101,116,117,114,110,32,119,101,40,99,41,125,114,101,116,117,114,110,32,109,101,46,112,114,111,116,111,116,121,112,101,61,98,46,102,105,108,116,101,114,115,61,98,46,112,115,101,117,100,111,115,44,98,46,115,101,116,70,105,108,116,101,114,115,61,110,101,119,32,109,101,44,104,61,115,101,46,116,111,107,101,110,105,122,101,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,44,114,44,105,44,111,44,97,44,115,44,117,44,108,61,120,91,101,43,34,32,34,93,59,105,102,40,108,41,114,101,116,117,114,110,32,116,63,48,58,108,46,115,108,105,99,101,40,48,41,59,97,61,101,44,115,61,91,93,44,117,61,98,46,112,114,101,70,105,108,116,101,114,59,119,104,105,108,101,40,97,41,123,102,111,114,40,111,32,105,110,32,110,38,38,33,40,114,61,95,46,101,120,101,99,40,97,41,41,124,124,40,114,38,38,40,97,61,97,46,115,108,105,99,101,40,114,91,48,93,46,108,101,110,103,116,104,41,124,124,97,41,44,115,46,112,117,115,104,40,105,61,91,93,41,41,44,110,61,33,49,44,40,114,61,122,46,101,120,101,99,40,97,41,41,38,38,40,110,61,114,46,115,104,105,102,116,40,41,44,105,46,112,117,115,104,40,123,118,97,108,117,101,58,110,44,116,121,112,101,58,114,91,48,93,46,114,101,112,108,97,99,101,40,66,44,34,32,34,41,125,41,44,97,61,97,46,115,108,105,99,101,40,110,46,108,101,110,103,116,104,41,41,44,98,46,102,105,108,116,101,114,41,33,40,114,61,71,91,111,93,46,101,120,101,99,40,97,41,41,124,124,117,91,111,93,38,38,33,40,114,61,117,91,111,93,40,114,41,41,124,124,40,110,61,114,46,115,104,105,102,116,40,41,44,105,46,112,117,115,104,40,123,118,97,108,117,101,58,110,44,116,121,112,101,58,111,44,109,97,116,99,104,101,115,58,114,125,41,44,97,61,97,46,115,108,105,99,101,40,110,46,108,101,110,103,116,104,41,41,59,105,102,40,33,110,41,98,114,101,97,107,125,114,101,116,117,114,110,32,116,63,97,46,108,101,110,103,116,104,58,97,63,115,101,46,101,114,114,111,114,40,101,41,58,120,40,101,44,115,41,46,115,108,105,99,101,40,48,41,125,44,102,61,115,101,46,99,111,109,112,105,108,101,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,44,118,44,121,44,109,44,120,44,114,44,105,61,91,93,44,111,61,91,93,44,97,61,78,91,101,43,34,32,34,93,59,105,102,40,33,97,41,123,116,124,124,40,116,61,104,40,101,41,41,44,110,61,116,46,108,101,110,103,116,104,59,119,104,105,108,101,40,110,45,45,41,40,97,61,69,101,40,116,91,110,93,41,41,91,107,93,63,105,46,112,117,115,104,40,97,41,58,111,46,112,117,115,104,40,97,41,59,40,97,61,78,40,101,44,40,118,61,111,44,109,61,48,60,40,121,61,105,41,46,108,101,110,103,116,104,44,120,61,48,60,118,46,108,101,110,103,116,104,44,114,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,114,44,105,41,123,118,97,114,32,111,44,97,44,115,44,117,61,48,44,108,61,34,48,34,44,99,61,101,38,38,91,93,44,102,61,91,93,44,112,61,119,44,100,61,101,124,124,120,38,38,98,46,102,105,110,100,46,84,65,71,40,34,42,34,44,105,41,44,104,61,83,43,61,110,117,108,108,61,61,112,63,49,58,77,97,116,104,46,114,97,110,100,111,109,40,41,124,124,46,49,44,103,61,100,46,108,101,110,103,116,104,59,102,111,114,40,105,38,38,40,119,61,116,61,61,61,67,124,124,116,124,124,105,41,59,108,33,61,61,103,38,38,110,117,108,108,33,61,40,111,61,100,91,108,93,41,59,108,43,43,41,123,105,102,40,120,38,38,111,41,123,97,61,48,44,116,124,124,111,46,111,119,110,101,114,68,111,99,117,109,101,110,116,61,61,61,67,124,124,40,84,40,111,41,44,110,61,33,69,41,59,119,104,105,108,101,40,115,61,118,91,97,43,43,93,41,105,102,40,115,40,111,44,116,124,124,67,44,110,41,41,123,114,46,112,117,115,104,40,111,41,59,98,114,101,97,107,125,105,38,38,40,83,61,104,41,125,109,38,38,40,40,111,61,33,115,38,38,111,41,38,38,117,45,45,44,101,38,38,99,46,112,117,115,104,40,111,41,41,125,105,102,40,117,43,61,108,44,109,38,38,108,33,61,61,117,41,123,97,61,48,59,119,104,105,108,101,40,115,61,121,91,97,43,43,93,41,115,40,99,44,102,44,116,44,110,41,59,105,102,40,101,41,123,105,102,40,48,60,117,41,119,104,105,108,101,40,108,45,45,41,99,91,108,93,124,124,102,91,108,93,124,124,40,102,91,108,93,61,113,46,99,97,108,108,40,114,41,41,59,102,61,84,101,40,102,41,125,72,46,97,112,112,108,121,40,114,44,102,41,44,105,38,38,33,101,38,38,48,60,102,46,108,101,110,103,116,104,38,38,49,60,117,43,121,46,108,101,110,103,116,104,38,38,115,101,46,117,110,105,113,117,101,83,111,114,116,40,114,41,125,114,101,116,117,114,110,32,105,38,38,40,83,61,104,44,119,61,112,41,44,99,125,44,109,63,108,101,40,114,41,58,114,41,41,41,46,115,101,108,101,99,116,111,114,61,101,125,114,101,116,117,114,110,32,97,125,44,103,61,115,101,46,115,101,108,101,99,116,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,114,41,123,118,97,114,32,105,44,111,44,97,44,115,44,117,44,108,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,101,38,38,101,44,99,61,33,114,38,38,104,40,101,61,108,46,115,101,108,101,99,116,111,114,124,124,101,41,59,105,102,40,110,61,110,124,124,91,93,44,49,61,61,61,99,46,108,101,110,103,116,104,41,123,105,102,40,50,60,40,111,61,99,91,48,93,61,99,91,48,93,46,115,108,105,99,101,40,48,41,41,46,108,101,110,103,116,104,38,38,34,73,68,34,61,61,61,40,97,61,111,91,48,93,41,46,116,121,112,101,38,38,57,61,61,61,116,46,110,111,100,101,84,121,112,101,38,38,69,38,38,98,46,114,101,108,97,116,105,118,101,91,111,91,49,93,46,116,121,112,101,93,41,123,105,102,40,33,40,116,61,40,98,46,102,105,110,100,46,73,68,40,97,46,109,97,116,99,104,101,115,91,48,93,46,114,101,112,108,97,99,101,40,116,101,44,110,101,41,44,116,41,124,124,91,93,41,91,48,93,41,41,114,101,116,117,114,110,32,110,59,108,38,38,40,116,61,116,46,112,97,114,101,110,116,78,111,100,101,41,44,101,61,101,46,115,108,105,99,101,40,111,46,115,104,105,102,116,40,41,46,118,97,108,117,101,46,108,101,110,103,116,104,41,125,105,61,71,46,110,101,101,100,115,67,111,110,116,101,120,116,46,116,101,115,116,40,101,41,63,48,58,111,46,108,101,110,103,116,104,59,119,104,105,108,101,40,105,45,45,41,123,105,102,40,97,61,111,91,105,93,44,98,46,114,101,108,97,116,105,118,101,91,115,61,97,46,116,121,112,101,93,41,98,114,101,97,107,59,105,102,40,40,117,61,98,46,102,105,110,100,91,115,93,41,38,38,40,114,61,117,40,97,46,109,97,116,99,104,101,115,91,48,93,46,114,101,112,108,97,99,101,40,116,101,44,110,101,41,44,101,101,46,116,101,115,116,40,111,91,48,93,46,116,121,112,101,41,38,38,121,101,40,116,46,112,97,114,101,110,116,78,111,100,101,41,124,124,116,41,41,41,123,105,102,40,111,46,115,112,108,105,99,101,40,105,44,49,41,44,33,40,101,61,114,46,108,101,110,103,116,104,38,38,120,101,40,111,41,41,41,114,101,116,117,114,110,32,72,46,97,112,112,108,121,40,110,44,114,41,44,110,59,98,114,101,97,107,125,125,125,114,101,116,117,114,110,40,108,124,124,102,40,101,44,99,41,41,40,114,44,116,44,33,69,44,110,44,33,116,124,124,101,101,46,116,101,115,116,40,101,41,38,38,121,101,40,116,46,112,97,114,101,110,116,78,111,100,101,41,124,124,116,41,44,110,125,44,100,46,115,111,114,116,83,116,97,98,108,101,61,107,46,115,112,108,105,116,40,34,34,41,46,115,111,114,116,40,68,41,46,106,111,105,110,40,34,34,41,61,61,61,107,44,100,46,100,101,116,101,99,116,68,117,112,108,105,99,97,116,101,115,61,33,33,108,44,84,40,41,44,100,46,115,111,114,116,68,101,116,97,99,104,101,100,61,99,101,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,49,38,101,46,99,111,109,112,97,114,101,68,111,99,117,109,101,110,116,80,111,115,105,116,105,111,110,40,67,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,102,105,101,108,100,115,101,116,34,41,41,125,41,44,99,101,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,46,105,110,110,101,114,72,84,77,76,61,34,60,97,32,104,114,101,102,61,39,35,39,62,60,47,97,62,34,44,34,35,34,61,61,61,101,46,102,105,114,115,116,67,104,105,108,100,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,104,114,101,102,34,41,125,41,124,124,102,101,40,34,116,121,112,101,124,104,114,101,102,124,104,101,105,103,104,116,124,119,105,100,116,104,34,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,105,102,40,33,110,41,114,101,116,117,114,110,32,101,46,103,101,116,65,116,116,114,105,98,117,116,101,40,116,44,34,116,121,112,101,34,61,61,61,116,46,116,111,76,111,119,101,114,67,97,115,101,40,41,63,49,58,50,41,125,41,44,100,46,97,116,116,114,105,98,117,116,101,115,38,38,99,101,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,46,105,110,110,101,114,72,84,77,76,61,34,60,105,110,112,117,116,47,62,34,44,101,46,102,105,114,115,116,67,104,105,108,100,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,118,97,108,117,101,34,44,34,34,41,44,34,34,61,61,61,101,46,102,105,114,115,116,67,104,105,108,100,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,118,97,108,117,101,34,41,125,41,124,124,102,101,40,34,118,97,108,117,101,34,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,105,102,40,33,110,38,38,34,105,110,112,117,116,34,61,61,61,101,46,110,111,100,101,78,97,109,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,41,114,101,116,117,114,110,32,101,46,100,101,102,97,117,108,116,86,97,108,117,101,125,41,44,99,101,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,101,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,100,105,115,97,98,108,101,100,34,41,125,41,124,124,102,101,40,82,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,59,105,102,40,33,110,41,114,101,116,117,114,110,33,48,61,61,61,101,91,116,93,63,116,46,116,111,76,111,119,101,114,67,97,115,101,40,41,58,40,114,61,101,46,103,101,116,65,116,116,114,105,98,117,116,101,78,111,100,101,40,116,41,41,38,38,114,46,115,112,101,99,105,102,105,101,100,63,114,46,118,97,108,117,101,58,110,117,108,108,125,41,44,115,101,125,40,67,41,59,107,46,102,105,110,100,61,104,44,107,46,101,120,112,114,61,104,46,115,101,108,101,99,116,111,114,115,44,107,46,101,120,112,114,91,34,58,34,93,61,107,46,101,120,112,114,46,112,115,101,117,100,111,115,44,107,46,117,110,105,113,117,101,83,111,114,116,61,107,46,117,110,105,113,117,101,61,104,46,117,110,105,113,117,101,83,111,114,116,44,107,46,116,101,120,116,61,104,46,103,101,116,84,101,120,116,44,107,46,105,115,88,77,76,68,111,99,61,104,46,105,115,88,77,76,44,107,46,99,111,110,116,97,105,110,115,61,104,46,99,111,110,116,97,105,110,115,44,107,46,101,115,99,97,112,101,83,101,108,101,99,116,111,114,61,104,46,101,115,99,97,112,101,59,118,97,114,32,84,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,61,91,93,44,105,61,118,111,105,100,32,48,33,61,61,110,59,119,104,105,108,101,40,40,101,61,101,91,116,93,41,38,38,57,33,61,61,101,46,110,111,100,101,84,121,112,101,41,105,102,40,49,61,61,61,101,46,110,111,100,101,84,121,112,101,41,123,105,102,40,105,38,38,107,40,101,41,46,105,115,40,110,41,41,98,114,101,97,107,59,114,46,112,117,115,104,40,101,41,125,114,101,116,117,114,110,32,114,125,44,83,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,102,111,114,40,118,97,114,32,110,61,91,93,59,101,59,101,61,101,46,110,101,120,116,83,105,98,108,105,110,103,41,49,61,61,61,101,46,110,111,100,101,84,121,112,101,38,38,101,33,61,61,116,38,38,110,46,112,117,115,104,40,101,41,59,114,101,116,117,114,110,32,110,125,44,78,61,107,46,101,120,112,114,46,109,97,116,99,104,46,110,101,101,100,115,67,111,110,116,101,120,116,59,102,117,110,99,116,105,111,110,32,65,40,101,44,116,41,123,114,101,116,117,114,110,32,101,46,110,111,100,101,78,97,109,101,38,38,101,46,110,111,100,101,78,97,109,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,61,61,61,116,46,116,111,76,111,119,101,114,67,97,115,101,40,41,125,118,97,114,32,68,61,47,94,60,40,91,97,45,122,93,91,94,92,47,92,48,62,58,92,120,50,48,92,116,92,114,92,110,92,102,93,42,41,91,92,120,50,48,92,116,92,114,92,110,92,102,93,42,92,47,63,62,40,63,58,60,92,47,92,49,62,124,41,36,47,105,59,102,117,110,99,116,105,111,110,32,106,40,101,44,110,44,114,41,123,114,101,116,117,114,110,32,109,40,110,41,63,107,46,103,114,101,112,40,101,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,33,33,110,46,99,97,108,108,40,101,44,116,44,101,41,33,61,61,114,125,41,58,110,46,110,111,100,101,84,121,112,101,63,107,46,103,114,101,112,40,101,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,61,61,61,110,33,61,61,114,125,41,58,34,115,116,114,105,110,103,34,33,61,116,121,112,101,111,102,32,110,63,107,46,103,114,101,112,40,101,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,45,49,60,105,46,99,97,108,108,40,110,44,101,41,33,61,61,114,125,41,58,107,46,102,105,108,116,101,114,40,110,44,101,44,114,41,125,107,46,102,105,108,116,101,114,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,61,116,91,48,93,59,114,101,116,117,114,110,32,110,38,38,40,101,61,34,58,110,111,116,40,34,43,101,43,34,41,34,41,44,49,61,61,61,116,46,108,101,110,103,116,104,38,38,49,61,61,61,114,46,110,111,100,101,84,121,112,101,63,107,46,102,105,110,100,46,109,97,116,99,104,101,115,83,101,108,101,99,116,111,114,40,114,44,101,41,63,91,114,93,58,91,93,58,107,46,102,105,110,100,46,109,97,116,99,104,101,115,40,101,44,107,46,103,114,101,112,40,116,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,49,61,61,61,101,46,110,111,100,101,84,121,112,101,125,41,41,125,44,107,46,102,110,46,101,120,116,101,110,100,40,123,102,105,110,100,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,44,110,44,114,61,116,104,105,115,46,108,101,110,103,116,104,44,105,61,116,104,105,115,59,105,102,40,34,115,116,114,105,110,103,34,33,61,116,121,112,101,111,102,32,101,41,114,101,116,117,114,110,32,116,104,105,115,46,112,117,115,104,83,116,97,99,107,40,107,40,101,41,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,116,61,48,59,116,60,114,59,116,43,43,41,105,102,40,107,46,99,111,110,116,97,105,110,115,40,105,91,116,93,44,116,104,105,115,41,41,114,101,116,117,114,110,33,48,125,41,41,59,102,111,114,40,110,61,116,104,105,115,46,112,117,115,104,83,116,97,99,107,40,91,93,41,44,116,61,48,59,116,60,114,59,116,43,43,41,107,46,102,105,110,100,40,101,44,105,91,116,93,44,110,41,59,114,101,116,117,114,110,32,49,60,114,63,107,46,117,110,105,113,117,101,83,111,114,116,40,110,41,58,110,125,44,102,105,108,116,101,114,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,112,117,115,104,83,116,97,99,107,40,106,40,116,104,105,115,44,101,124,124,91,93,44,33,49,41,41,125,44,110,111,116,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,112,117,115,104,83,116,97,99,107,40,106,40,116,104,105,115,44,101,124,124,91,93,44,33,48,41,41,125,44,105,115,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,33,33,106,40,116,104,105,115,44,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,101,38,38,78,46,116,101,115,116,40,101,41,63,107,40,101,41,58,101,124,124,91,93,44,33,49,41,46,108,101,110,103,116,104,125,125,41,59,118,97,114,32,113,44,76,61,47,94,40,63,58,92,115,42,40,60,91,92,119,92,87,93,43,62,41,91,94,62,93,42,124,35,40,91,92,119,45,93,43,41,41,36,47,59,40,107,46,102,110,46,105,110,105,116,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,44,105,59,105,102,40,33,101,41,114,101,116,117,114,110,32,116,104,105,115,59,105,102,40,110,61,110,124,124,113,44,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,101,41,123,105,102,40,33,40,114,61,34,60,34,61,61,61,101,91,48,93,38,38,34,62,34,61,61,61,101,91,101,46,108,101,110,103,116,104,45,49,93,38,38,51,60,61,101,46,108,101,110,103,116,104,63,91,110,117,108,108,44,101,44,110,117,108,108,93,58,76,46,101,120,101,99,40,101,41,41,124,124,33,114,91,49,93,38,38,116,41,114,101,116,117,114,110,33,116,124,124,116,46,106,113,117,101,114,121,63,40,116,124,124,110,41,46,102,105,110,100,40,101,41,58,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,40,116,41,46,102,105,110,100,40,101,41,59,105,102,40,114,91,49,93,41,123,105,102,40,116,61,116,32,105,110,115,116,97,110,99,101,111,102,32,107,63,116,91,48,93,58,116,44,107,46,109,101,114,103,101,40,116,104,105,115,44,107,46,112,97,114,115,101,72,84,77,76,40,114,91,49,93,44,116,38,38,116,46,110,111,100,101,84,121,112,101,63,116,46,111,119,110,101,114,68,111,99,117,109,101,110,116,124,124,116,58,69,44,33,48,41,41,44,68,46,116,101,115,116,40,114,91,49,93,41,38,38,107,46,105,115,80,108,97,105,110,79,98,106,101,99,116,40,116,41,41,102,111,114,40,114,32,105,110,32,116,41,109,40,116,104,105,115,91,114,93,41,63,116,104,105,115,91,114,93,40,116,91,114,93,41,58,116,104,105,115,46,97,116,116,114,40,114,44,116,91,114,93,41,59,114,101,116,117,114,110,32,116,104,105,115,125,114,101,116,117,114,110,40,105,61,69,46,103,101,116,69,108,101,109,101,110,116,66,121,73,100,40,114,91,50,93,41,41,38,38,40,116,104,105,115,91,48,93,61,105,44,116,104,105,115,46,108,101,110,103,116,104,61,49,41,44,116,104,105,115,125,114,101,116,117,114,110,32,101,46,110,111,100,101,84,121,112,101,63,40,116,104,105,115,91,48,93,61,101,44,116,104,105,115,46,108,101,110,103,116,104,61,49,44,116,104,105,115,41,58,109,40,101,41,63,118,111,105,100,32,48,33,61,61,110,46,114,101,97,100,121,63,110,46,114,101,97,100,121,40,101,41,58,101,40,107,41,58,107,46,109,97,107,101,65,114,114,97,121,40,101,44,116,104,105,115,41,125,41,46,112,114,111,116,111,116,121,112,101,61,107,46,102,110,44,113,61,107,40,69,41,59,118,97,114,32,72,61,47,94,40,63,58,112,97,114,101,110,116,115,124,112,114,101,118,40,63,58,85,110,116,105,108,124,65,108,108,41,41,47,44,79,61,123,99,104,105,108,100,114,101,110,58,33,48,44,99,111,110,116,101,110,116,115,58,33,48,44,110,101,120,116,58,33,48,44,112,114,101,118,58,33,48,125,59,102,117,110,99,116,105,111,110,32,80,40,101,44,116,41,123,119,104,105,108,101,40,40,101,61,101,91,116,93,41,38,38,49,33,61,61,101,46,110,111,100,101,84,121,112,101,41,59,114,101,116,117,114,110,32,101,125,107,46,102,110,46,101,120,116,101,110,100,40,123,104,97,115,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,107,40,101,44,116,104,105,115,41,44,110,61,116,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,116,104,105,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,118,97,114,32,101,61,48,59,101,60,110,59,101,43,43,41,105,102,40,107,46,99,111,110,116,97,105,110,115,40,116,104,105,115,44,116,91,101,93,41,41,114,101,116,117,114,110,33,48,125,41,125,44,99,108,111,115,101,115,116,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,44,114,61,48,44,105,61,116,104,105,115,46,108,101,110,103,116,104,44,111,61,91,93,44,97,61,34,115,116,114,105,110,103,34,33,61,116,121,112,101,111,102,32,101,38,38,107,40,101,41,59,105,102,40,33,78,46,116,101,115,116,40,101,41,41,102,111,114,40,59,114,60,105,59,114,43,43,41,102,111,114,40,110,61,116,104,105,115,91,114,93,59,110,38,38,110,33,61,61,116,59,110,61,110,46,112,97,114,101,110,116,78,111,100,101,41,105,102,40,110,46,110,111,100,101,84,121,112,101,60,49,49,38,38,40,97,63,45,49,60,97,46,105,110,100,101,120,40,110,41,58,49,61,61,61,110,46,110,111,100,101,84,121,112,101,38,38,107,46,102,105,110,100,46,109,97,116,99,104,101,115,83,101,108,101,99,116,111,114,40,110,44,101,41,41,41,123,111,46,112,117,115,104,40,110,41,59,98,114,101,97,107,125,114,101,116,117,114,110,32,116,104,105,115,46,112,117,115,104,83,116,97,99,107,40,49,60,111,46,108,101,110,103,116,104,63,107,46,117,110,105,113,117,101,83,111,114,116,40,111,41,58,111,41,125,44,105,110,100,101,120,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,63,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,101,63,105,46,99,97,108,108,40,107,40,101,41,44,116,104,105,115,91,48,93,41,58,105,46,99,97,108,108,40,116,104,105,115,44,101,46,106,113,117,101,114,121,63,101,91,48,93,58,101,41,58,116,104,105,115,91,48,93,38,38,116,104,105,115,91,48,93,46,112,97,114,101,110,116,78,111,100,101,63,116,104,105,115,46,102,105,114,115,116,40,41,46,112,114,101,118,65,108,108,40,41,46,108,101,110,103,116,104,58,45,49,125,44,97,100,100,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,116,104,105,115,46,112,117,115,104,83,116,97,99,107,40,107,46,117,110,105,113,117,101,83,111,114,116,40,107,46,109,101,114,103,101,40,116,104,105,115,46,103,101,116,40,41,44,107,40,101,44,116,41,41,41,41,125,44,97,100,100,66,97,99,107,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,97,100,100,40,110,117,108,108,61,61,101,63,116,104,105,115,46,112,114,101,118,79,98,106,101,99,116,58,116,104,105,115,46,112,114,101,118,79,98,106,101,99,116,46,102,105,108,116,101,114,40,101,41,41,125,125,41,44,107,46,101,97,99,104,40,123,112,97,114,101,110,116,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,46,112,97,114,101,110,116,78,111,100,101,59,114,101,116,117,114,110,32,116,38,38,49,49,33,61,61,116,46,110,111,100,101,84,121,112,101,63,116,58,110,117,108,108,125,44,112,97,114,101,110,116,115,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,84,40,101,44,34,112,97,114,101,110,116,78,111,100,101,34,41,125,44,112,97,114,101,110,116,115,85,110,116,105,108,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,114,101,116,117,114,110,32,84,40,101,44,34,112,97,114,101,110,116,78,111,100,101,34,44,110,41,125,44,110,101,120,116,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,80,40,101,44,34,110,101,120,116,83,105,98,108,105,110,103,34,41,125,44,112,114,101,118,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,80,40,101,44,34,112,114,101,118,105,111,117,115,83,105,98,108,105,110,103,34,41,125,44,110,101,120,116,65,108,108,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,84,40,101,44,34,110,101,120,116,83,105,98,108,105,110,103,34,41,125,44,112,114,101,118,65,108,108,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,84,40,101,44,34,112,114,101,118,105,111,117,115,83,105,98,108,105,110,103,34,41,125,44,110,101,120,116,85,110,116,105,108,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,114,101,116,117,114,110,32,84,40,101,44,34,110,101,120,116,83,105,98,108,105,110,103,34,44,110,41,125,44,112,114,101,118,85,110,116,105,108,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,114,101,116,117,114,110,32,84,40,101,44,34,112,114,101,118,105,111,117,115,83,105,98,108,105,110,103,34,44,110,41,125,44,115,105,98,108,105,110,103,115,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,83,40,40,101,46,112,97,114,101,110,116,78,111,100,101,124,124,123,125,41,46,102,105,114,115,116,67,104,105,108,100,44,101,41,125,44,99,104,105,108,100,114,101,110,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,83,40,101,46,102,105,114,115,116,67,104,105,108,100,41,125,44,99,111,110,116,101,110,116,115,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,101,46,99,111,110,116,101,110,116,68,111,99,117,109,101,110,116,63,101,46,99,111,110,116,101,110,116,68,111,99,117,109,101,110,116,58,40,65,40,101,44,34,116,101,109,112,108,97,116,101,34,41,38,38,40,101,61,101,46,99,111,110,116,101,110,116,124,124,101,41,44,107,46,109,101,114,103,101,40,91,93,44,101,46,99,104,105,108,100,78,111,100,101,115,41,41,125,125,44,102,117,110,99,116,105,111,110,40,114,44,105,41,123,107,46,102,110,91,114,93,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,61,107,46,109,97,112,40,116,104,105,115,44,105,44,101,41,59,114,101,116,117,114,110,34,85,110,116,105,108,34,33,61,61,114,46,115,108,105,99,101,40,45,53,41,38,38,40,116,61,101,41,44,116,38,38,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,116,38,38,40,110,61,107,46,102,105,108,116,101,114,40,116,44,110,41,41,44,49,60,116,104,105,115,46,108,101,110,103,116,104,38,38,40,79,91,114,93,124,124,107,46,117,110,105,113,117,101,83,111,114,116,40,110,41,44,72,46,116,101,115,116,40,114,41,38,38,110,46,114,101,118,101,114,115,101,40,41,41,44,116,104,105,115,46,112,117,115,104,83,116,97,99,107,40,110,41,125,125,41,59,118,97,114,32,82,61,47,91,94,92,120,50,48,92,116,92,114,92,110,92,102,93,43,47,103,59,102,117,110,99,116,105,111,110,32,77,40,101,41,123,114,101,116,117,114,110,32,101,125,102,117,110,99,116,105,111,110,32,73,40,101,41,123,116,104,114,111,119,32,101,125,102,117,110,99,116,105,111,110,32,87,40,101,44,116,44,110,44,114,41,123,118,97,114,32,105,59,116,114,121,123,101,38,38,109,40,105,61,101,46,112,114,111,109,105,115,101,41,63,105,46,99,97,108,108,40,101,41,46,100,111,110,101,40,116,41,46,102,97,105,108,40,110,41,58,101,38,38,109,40,105,61,101,46,116,104,101,110,41,63,105,46,99,97,108,108,40,101,44,116,44,110,41,58,116,46,97,112,112,108,121,40,118,111,105,100,32,48,44,91,101,93,46,115,108,105,99,101,40,114,41,41,125,99,97,116,99,104,40,101,41,123,110,46,97,112,112,108,121,40,118,111,105,100,32,48,44,91,101,93,41,125,125,107,46,67,97,108,108,98,97,99,107,115,61,102,117,110,99,116,105,111,110,40,114,41,123,118,97,114,32,101,44,110,59,114,61,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,114,63,40,101,61,114,44,110,61,123,125,44,107,46,101,97,99,104,40,101,46,109,97,116,99,104,40,82,41,124,124,91,93,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,110,91,116,93,61,33,48,125,41,44,110,41,58,107,46,101,120,116,101,110,100,40,123,125,44,114,41,59,118,97,114,32,105,44,116,44,111,44,97,44,115,61,91,93,44,117,61,91,93,44,108,61,45,49,44,99,61,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,97,61,97,124,124,114,46,111,110,99,101,44,111,61,105,61,33,48,59,117,46,108,101,110,103,116,104,59,108,61,45,49,41,123,116,61,117,46,115,104,105,102,116,40,41,59,119,104,105,108,101,40,43,43,108,60,115,46,108,101,110,103,116,104,41,33,49,61,61,61,115,91,108,93,46,97,112,112,108,121,40,116,91,48,93,44,116,91,49,93,41,38,38,114,46,115,116,111,112,79,110,70,97,108,115,101,38,38,40,108,61,115,46,108,101,110,103,116,104,44,116,61,33,49,41,125,114,46,109,101,109,111,114,121,124,124,40,116,61,33,49,41,44,105,61,33,49,44,97,38,38,40,115,61,116,63,91,93,58,34,34,41,125,44,102,61,123,97,100,100,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,115,38,38,40,116,38,38,33,105,38,38,40,108,61,115,46,108,101,110,103,116,104,45,49,44,117,46,112,117,115,104,40,116,41,41,44,102,117,110,99,116,105,111,110,32,110,40,101,41,123,107,46,101,97,99,104,40,101,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,109,40,116,41,63,114,46,117,110,105,113,117,101,38,38,102,46,104,97,115,40,116,41,124,124,115,46,112,117,115,104,40,116,41,58,116,38,38,116,46,108,101,110,103,116,104,38,38,34,115,116,114,105,110,103,34,33,61,61,119,40,116,41,38,38,110,40,116,41,125,41,125,40,97,114,103,117,109,101,110,116,115,41,44,116,38,38,33,105,38,38,99,40,41,41,44,116,104,105,115,125,44,114,101,109,111,118,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,107,46,101,97,99,104,40,97,114,103,117,109,101,110,116,115,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,59,119,104,105,108,101,40,45,49,60,40,110,61,107,46,105,110,65,114,114,97,121,40,116,44,115,44,110,41,41,41,115,46,115,112,108,105,99,101,40,110,44,49,41,44,110,60,61,108,38,38,108,45,45,125,41,44,116,104,105,115,125,44,104,97,115,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,63,45,49,60,107,46,105,110,65,114,114,97,121,40,101,44,115,41,58,48,60,115,46,108,101,110,103,116,104,125,44,101,109,112,116,121,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,115,38,38,40,115,61,91,93,41,44,116,104,105,115,125,44,100,105,115,97,98,108,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,97,61,117,61,91,93,44,115,61,116,61,34,34,44,116,104,105,115,125,44,100,105,115,97,98,108,101,100,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,33,115,125,44,108,111,99,107,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,97,61,117,61,91,93,44,116,124,124,105,124,124,40,115,61,116,61,34,34,41,44,116,104,105,115,125,44,108,111,99,107,101,100,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,33,33,97,125,44,102,105,114,101,87,105,116,104,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,97,124,124,40,116,61,91,101,44,40,116,61,116,124,124,91,93,41,46,115,108,105,99,101,63,116,46,115,108,105,99,101,40,41,58,116,93,44,117,46,112,117,115,104,40,116,41,44,105,124,124,99,40,41,41,44,116,104,105,115,125,44,102,105,114,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,102,46,102,105,114,101,87,105,116,104,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,44,116,104,105,115,125,44,102,105,114,101,100,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,33,33,111,125,125,59,114,101,116,117,114,110,32,102,125,44,107,46,101,120,116,101,110,100,40,123,68,101,102,101,114,114,101,100,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,111,61,91,91,34,110,111,116,105,102,121,34,44,34,112,114,111,103,114,101,115,115,34,44,107,46,67,97,108,108,98,97,99,107,115,40,34,109,101,109,111,114,121,34,41,44,107,46,67,97,108,108,98,97,99,107,115,40,34,109,101,109,111,114,121,34,41,44,50,93,44,91,34,114,101,115,111,108,118,101,34,44,34,100,111,110,101,34,44,107,46,67,97,108,108,98,97,99,107,115,40,34,111,110,99,101,32,109,101,109,111,114,121,34,41,44,107,46,67,97,108,108,98,97,99,107,115,40,34,111,110,99,101,32,109,101,109,111,114,121,34,41,44,48,44,34,114,101,115,111,108,118,101,100,34,93,44,91,34,114,101,106,101,99,116,34,44,34,102,97,105,108,34,44,107,46,67,97,108,108,98,97,99,107,115,40,34,111,110,99,101,32,109,101,109,111,114,121,34,41,44,107,46,67,97,108,108,98,97,99,107,115,40,34,111,110,99,101,32,109,101,109,111,114,121,34,41,44,49,44,34,114,101,106,101,99,116,101,100,34,93,93,44,105,61,34,112,101,110,100,105,110,103,34,44,97,61,123,115,116,97,116,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,105,125,44,97,108,119,97,121,115,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,115,46,100,111,110,101,40,97,114,103,117,109,101,110,116,115,41,46,102,97,105,108,40,97,114,103,117,109,101,110,116,115,41,44,116,104,105,115,125,44,34,99,97,116,99,104,34,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,97,46,116,104,101,110,40,110,117,108,108,44,101,41,125,44,112,105,112,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,105,61,97,114,103,117,109,101,110,116,115,59,114,101,116,117,114,110,32,107,46,68,101,102,101,114,114,101,100,40,102,117,110,99,116,105,111,110,40,114,41,123,107,46,101,97,99,104,40,111,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,61,109,40,105,91,116,91,52,93,93,41,38,38,105,91,116,91,52,93,93,59,115,91,116,91,49,93,93,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,110,38,38,110,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,59,101,38,38,109,40,101,46,112,114,111,109,105,115,101,41,63,101,46,112,114,111,109,105,115,101,40,41,46,112,114,111,103,114,101,115,115,40,114,46,110,111,116,105,102,121,41,46,100,111,110,101,40,114,46,114,101,115,111,108,118,101,41,46,102,97,105,108,40,114,46,114,101,106,101,99,116,41,58,114,91,116,91,48,93,43,34,87,105,116,104,34,93,40,116,104,105,115,44,110,63,91,101,93,58,97,114,103,117,109,101,110,116,115,41,125,41,125,41,44,105,61,110,117,108,108,125,41,46,112,114,111,109,105,115,101,40,41,125,44,116,104,101,110,58,102,117,110,99,116,105,111,110,40,116,44,110,44,114,41,123,118,97,114,32,117,61,48,59,102,117,110,99,116,105,111,110,32,108,40,105,44,111,44,97,44,115,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,110,61,116,104,105,115,44,114,61,97,114,103,117,109,101,110,116,115,44,101,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,44,116,59,105,102,40,33,40,105,60,117,41,41,123,105,102,40,40,101,61,97,46,97,112,112,108,121,40,110,44,114,41,41,61,61,61,111,46,112,114,111,109,105,115,101,40,41,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,84,104,101,110,97,98,108,101,32,115,101,108,102,45,114,101,115,111,108,117,116,105,111,110,34,41,59,116,61,101,38,38,40,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,101,124,124,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,101,41,38,38,101,46,116,104,101,110,44,109,40,116,41,63,115,63,116,46,99,97,108,108,40,101,44,108,40,117,44,111,44,77,44,115,41,44,108,40,117,44,111,44,73,44,115,41,41,58,40,117,43,43,44,116,46,99,97,108,108,40,101,44,108,40,117,44,111,44,77,44,115,41,44,108,40,117,44,111,44,73,44,115,41,44,108,40,117,44,111,44,77,44,111,46,110,111,116,105,102,121,87,105,116,104,41,41,41,58,40,97,33,61,61,77,38,38,40,110,61,118,111,105,100,32,48,44,114,61,91,101,93,41,44,40,115,124,124,111,46,114,101,115,111,108,118,101,87,105,116,104,41,40,110,44,114,41,41,125,125,44,116,61,115,63,101,58,102,117,110,99,116,105,111,110,40,41,123,116,114,121,123,101,40,41,125,99,97,116,99,104,40,101,41,123,107,46,68,101,102,101,114,114,101,100,46,101,120,99,101,112,116,105,111,110,72,111,111,107,38,38,107,46,68,101,102,101,114,114,101,100,46,101,120,99,101,112,116,105,111,110,72,111,111,107,40,101,44,116,46,115,116,97,99,107,84,114,97,99,101,41,44,117,60,61,105,43,49,38,38,40,97,33,61,61,73,38,38,40,110,61,118,111,105,100,32,48,44,114,61,91,101,93,41,44,111,46,114,101,106,101,99,116,87,105,116,104,40,110,44,114,41,41,125,125,59,105,63,116,40,41,58,40,107,46,68,101,102,101,114,114,101,100,46,103,101,116,83,116,97,99,107,72,111,111,107,38,38,40,116,46,115,116,97,99,107,84,114,97,99,101,61,107,46,68,101,102,101,114,114,101,100,46,103,101,116,83,116,97,99,107,72,111,111,107,40,41,41,44,67,46,115,101,116,84,105,109,101,111,117,116,40,116,41,41,125,125,114,101,116,117,114,110,32,107,46,68,101,102,101,114,114,101,100,40,102,117,110,99,116,105,111,110,40,101,41,123,111,91,48,93,91,51,93,46,97,100,100,40,108,40,48,44,101,44,109,40,114,41,63,114,58,77,44,101,46,110,111,116,105,102,121,87,105,116,104,41,41,44,111,91,49,93,91,51,93,46,97,100,100,40,108,40,48,44,101,44,109,40,116,41,63,116,58,77,41,41,44,111,91,50,93,91,51,93,46,97,100,100,40,108,40,48,44,101,44,109,40,110,41,63,110,58,73,41,41,125,41,46,112,114,111,109,105,115,101,40,41,125,44,112,114,111,109,105,115,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,110,117,108,108,33,61,101,63,107,46,101,120,116,101,110,100,40,101,44,97,41,58,97,125,125,44,115,61,123,125,59,114,101,116,117,114,110,32,107,46,101,97,99,104,40,111,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,61,116,91,50,93,44,114,61,116,91,53,93,59,97,91,116,91,49,93,93,61,110,46,97,100,100,44,114,38,38,110,46,97,100,100,40,102,117,110,99,116,105,111,110,40,41,123,105,61,114,125,44,111,91,51,45,101,93,91,50,93,46,100,105,115,97,98,108,101,44,111,91,51,45,101,93,91,51,93,46,100,105,115,97,98,108,101,44,111,91,48,93,91,50,93,46,108,111,99,107,44,111,91,48,93,91,51,93,46,108,111,99,107,41,44,110,46,97,100,100,40,116,91,51,93,46,102,105,114,101,41,44,115,91,116,91,48,93,93,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,115,91,116,91,48,93,43,34,87,105,116,104,34,93,40,116,104,105,115,61,61,61,115,63,118,111,105,100,32,48,58,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,44,116,104,105,115,125,44,115,91,116,91,48,93,43,34,87,105,116,104,34,93,61,110,46,102,105,114,101,87,105,116,104,125,41,44,97,46,112,114,111,109,105,115,101,40,115,41,44,101,38,38,101,46,99,97,108,108,40,115,44,115,41,44,115,125,44,119,104,101,110,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,110,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,44,116,61,110,44,114,61,65,114,114,97,121,40,116,41,44,105,61,115,46,99,97,108,108,40,97,114,103,117,109,101,110,116,115,41,44,111,61,107,46,68,101,102,101,114,114,101,100,40,41,44,97,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,101,41,123,114,91,116,93,61,116,104,105,115,44,105,91,116,93,61,49,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,115,46,99,97,108,108,40,97,114,103,117,109,101,110,116,115,41,58,101,44,45,45,110,124,124,111,46,114,101,115,111,108,118,101,87,105,116,104,40,114,44,105,41,125,125,59,105,102,40,110,60,61,49,38,38,40,87,40,101,44,111,46,100,111,110,101,40,97,40,116,41,41,46,114,101,115,111,108,118,101,44,111,46,114,101,106,101,99,116,44,33,110,41,44,34,112,101,110,100,105,110,103,34,61,61,61,111,46,115,116,97,116,101,40,41,124,124,109,40,105,91,116,93,38,38,105,91,116,93,46,116,104,101,110,41,41,41,114,101,116,117,114,110,32,111,46,116,104,101,110,40,41,59,119,104,105,108,101,40,116,45,45,41,87,40,105,91,116,93,44,97,40,116,41,44,111,46,114,101,106,101,99,116,41,59,114,101,116,117,114,110,32,111,46,112,114,111,109,105,115,101,40,41,125,125,41,59,118,97,114,32,36,61,47,94,40,69,118,97,108,124,73,110,116,101,114,110,97,108,124,82,97,110,103,101,124,82,101,102,101,114,101,110,99,101,124,83,121,110,116,97,120,124,84,121,112,101,124,85,82,73,41,69,114,114,111,114,36,47,59,107,46,68,101,102,101,114,114,101,100,46,101,120,99,101,112,116,105,111,110,72,111,111,107,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,67,46,99,111,110,115,111,108,101,38,38,67,46,99,111,110,115,111,108,101,46,119,97,114,110,38,38,101,38,38,36,46,116,101,115,116,40,101,46,110,97,109,101,41,38,38,67,46,99,111,110,115,111,108,101,46,119,97,114,110,40,34,106,81,117,101,114,121,46,68,101,102,101,114,114,101,100,32,101,120,99,101,112,116,105,111,110,58,32,34,43,101,46,109,101,115,115,97,103,101,44,101,46,115,116,97,99,107,44,116,41,125,44,107,46,114,101,97,100,121,69,120,99,101,112,116,105,111,110,61,102,117,110,99,116,105,111,110,40,101,41,123,67,46,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,40,41,123,116,104,114,111,119,32,101,125,41,125,59,118,97,114,32,70,61,107,46,68,101,102,101,114,114,101,100,40,41,59,102,117,110,99,116,105,111,110,32,66,40,41,123,69,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,68,79,77,67,111,110,116,101,110,116,76,111,97,100,101,100,34,44,66,41,44,67,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,108,111,97,100,34,44,66,41,44,107,46,114,101,97,100,121,40,41,125,107,46,102,110,46,114,101,97,100,121,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,70,46,116,104,101,110,40,101,41,91,34,99,97,116,99,104,34,93,40,102,117,110,99,116,105,111,110,40,101,41,123,107,46,114,101,97,100,121,69,120,99,101,112,116,105,111,110,40,101,41,125,41,44,116,104,105,115,125,44,107,46,101,120,116,101,110,100,40,123,105,115,82,101,97,100,121,58,33,49,44,114,101,97,100,121,87,97,105,116,58,49,44,114,101,97,100,121,58,102,117,110,99,116,105,111,110,40,101,41,123,40,33,48,61,61,61,101,63,45,45,107,46,114,101,97,100,121,87,97,105,116,58,107,46,105,115,82,101,97,100,121,41,124,124,40,107,46,105,115,82,101,97,100,121,61,33,48,41,33,61,61,101,38,38,48,60,45,45,107,46,114,101,97,100,121,87,97,105,116,124,124,70,46,114,101,115,111,108,118,101,87,105,116,104,40,69,44,91,107,93,41,125,125,41,44,107,46,114,101,97,100,121,46,116,104,101,110,61,70,46,116,104,101,110,44,34,99,111,109,112,108,101,116,101,34,61,61,61,69,46,114,101,97,100,121,83,116,97,116,101,124,124,34,108,111,97,100,105,110,103,34,33,61,61,69,46,114,101,97,100,121,83,116,97,116,101,38,38,33,69,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,46,100,111,83,99,114,111,108,108,63,67,46,115,101,116,84,105,109,101,111,117,116,40,107,46,114,101,97,100,121,41,58,40,69,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,68,79,77,67,111,110,116,101,110,116,76,111,97,100,101,100,34,44,66,41,44,67,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,108,111,97,100,34,44,66,41,41,59,118,97,114,32,95,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,114,44,105,44,111,44,97,41,123,118,97,114,32,115,61,48,44,117,61,101,46,108,101,110,103,116,104,44,108,61,110,117,108,108,61,61,110,59,105,102,40,34,111,98,106,101,99,116,34,61,61,61,119,40,110,41,41,102,111,114,40,115,32,105,110,32,105,61,33,48,44,110,41,95,40,101,44,116,44,115,44,110,91,115,93,44,33,48,44,111,44,97,41,59,101,108,115,101,32,105,102,40,118,111,105,100,32,48,33,61,61,114,38,38,40,105,61,33,48,44,109,40,114,41,124,124,40,97,61,33,48,41,44,108,38,38,40,97,63,40,116,46,99,97,108,108,40,101,44,114,41,44,116,61,110,117,108,108,41,58,40,108,61,116,44,116,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,114,101,116,117,114,110,32,108,46,99,97,108,108,40,107,40,101,41,44,110,41,125,41,41,44,116,41,41,102,111,114,40,59,115,60,117,59,115,43,43,41,116,40,101,91,115,93,44,110,44,97,63,114,58,114,46,99,97,108,108,40,101,91,115,93,44,115,44,116,40,101,91,115,93,44,110,41,41,41,59,114,101,116,117,114,110,32,105,63,101,58,108,63,116,46,99,97,108,108,40,101,41,58,117,63,116,40,101,91,48,93,44,110,41,58,111,125,44,122,61,47,94,45,109,115,45,47,44,85,61,47,45,40,91,97,45,122,93,41,47,103,59,102,117,110,99,116,105,111,110,32,88,40,101,44,116,41,123,114,101,116,117,114,110,32,116,46,116,111,85,112,112,101,114,67,97,115,101,40,41,125,102,117,110,99,116,105,111,110,32,86,40,101,41,123,114,101,116,117,114,110,32,101,46,114,101,112,108,97,99,101,40,122,44,34,109,115,45,34,41,46,114,101,112,108,97,99,101,40,85,44,88,41,125,118,97,114,32,71,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,49,61,61,61,101,46,110,111,100,101,84,121,112,101,124,124,57,61,61,61,101,46,110,111,100,101,84,121,112,101,124,124,33,43,101,46,110,111,100,101,84,121,112,101,125,59,102,117,110,99,116,105,111,110,32,89,40,41,123,116,104,105,115,46,101,120,112,97,110,100,111,61,107,46,101,120,112,97,110,100,111,43,89,46,117,105,100,43,43,125,89,46,117,105,100,61,49,44,89,46,112,114,111,116,111,116,121,112,101,61,123,99,97,99,104,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,91,116,104,105,115,46,101,120,112,97,110,100,111,93,59,114,101,116,117,114,110,32,116,124,124,40,116,61,123,125,44,71,40,101,41,38,38,40,101,46,110,111,100,101,84,121,112,101,63,101,91,116,104,105,115,46,101,120,112,97,110,100,111,93,61,116,58,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,101,44,116,104,105,115,46,101,120,112,97,110,100,111,44,123,118,97,108,117,101,58,116,44,99,111,110,102,105,103,117,114,97,98,108,101,58,33,48,125,41,41,41,44,116,125,44,115,101,116,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,44,105,61,116,104,105,115,46,99,97,99,104,101,40,101,41,59,105,102,40,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,116,41,105,91,86,40,116,41,93,61,110,59,101,108,115,101,32,102,111,114,40,114,32,105,110,32,116,41,105,91,86,40,114,41,93,61,116,91,114,93,59,114,101,116,117,114,110,32,105,125,44,103,101,116,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,118,111,105,100,32,48,61,61,61,116,63,116,104,105,115,46,99,97,99,104,101,40,101,41,58,101,91,116,104,105,115,46,101,120,112,97,110,100,111,93,38,38,101,91,116,104,105,115,46,101,120,112,97,110,100,111,93,91,86,40,116,41,93,125,44,97,99,99,101,115,115,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,114,101,116,117,114,110,32,118,111,105,100,32,48,61,61,61,116,124,124,116,38,38,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,116,38,38,118,111,105,100,32,48,61,61,61,110,63,116,104,105,115,46,103,101,116,40,101,44,116,41,58,40,116,104,105,115,46,115,101,116,40,101,44,116,44,110,41,44,118,111,105,100,32,48,33,61,61,110,63,110,58,116,41,125,44,114,101,109,111,118,101,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,44,114,61,101,91,116,104,105,115,46,101,120,112,97,110,100,111,93,59,105,102,40,118,111,105,100,32,48,33,61,61,114,41,123,105,102,40,118,111,105,100,32,48,33,61,61,116,41,123,110,61,40,116,61,65,114,114,97,121,46,105,115,65,114,114,97,121,40,116,41,63,116,46,109,97,112,40,86,41,58,40,116,61,86,40,116,41,41,105,110,32,114,63,91,116,93,58,116,46,109,97,116,99,104,40,82,41,124,124,91,93,41,46,108,101,110,103,116,104,59,119,104,105,108,101,40,110,45,45,41,100,101,108,101,116,101,32,114,91,116,91,110,93,93,125,40,118,111,105,100,32,48,61,61,61,116,124,124,107,46,105,115,69,109,112,116,121,79,98,106,101,99,116,40,114,41,41,38,38,40,101,46,110,111,100,101,84,121,112,101,63,101,91,116,104,105,115,46,101,120,112,97,110,100,111,93,61,118,111,105,100,32,48,58,100,101,108,101,116,101,32,101,91,116,104,105,115,46,101,120,112,97,110,100,111,93,41,125,125,44,104,97,115,68,97,116,97,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,91,116,104,105,115,46,101,120,112,97,110,100,111,93,59,114,101,116,117,114,110,32,118,111,105,100,32,48,33,61,61,116,38,38,33,107,46,105,115,69,109,112,116,121,79,98,106,101,99,116,40,116,41,125,125,59,118,97,114,32,81,61,110,101,119,32,89,44,74,61,110,101,119,32,89,44,75,61,47,94,40,63,58,92,123,91,92,119,92,87,93,42,92,125,124,92,91,91,92,119,92,87,93,42,92,93,41,36,47,44,90,61,47,91,65,45,90,93,47,103,59,102,117,110,99,116,105,111,110,32,101,101,40,101,44,116,44,110,41,123,118,97,114,32,114,44,105,59,105,102,40,118,111,105,100,32,48,61,61,61,110,38,38,49,61,61,61,101,46,110,111,100,101,84,121,112,101,41,105,102,40,114,61,34,100,97,116,97,45,34,43,116,46,114,101,112,108,97,99,101,40,90,44,34,45,36,38,34,41,46,116,111,76,111,119,101,114,67,97,115,101,40,41,44,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,40,110,61,101,46,103,101,116,65,116,116,114,105,98,117,116,101,40,114,41,41,41,123,116,114,121,123,110,61,34,116,114,117,101,34,61,61,61,40,105,61,110,41,124,124,34,102,97,108,115,101,34,33,61,61,105,38,38,40,34,110,117,108,108,34,61,61,61,105,63,110,117,108,108,58,105,61,61,61,43,105,43,34,34,63,43,105,58,75,46,116,101,115,116,40,105,41,63,74,83,79,78,46,112,97,114,115,101,40,105,41,58,105,41,125,99,97,116,99,104,40,101,41,123,125,74,46,115,101,116,40,101,44,116,44,110,41,125,101,108,115,101,32,110,61,118,111,105,100,32,48,59,114,101,116,117,114,110,32,110,125,107,46,101,120,116,101,110,100,40,123,104,97,115,68,97,116,97,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,74,46,104,97,115,68,97,116,97,40,101,41,124,124,81,46,104,97,115,68,97,116,97,40,101,41,125,44,100,97,116,97,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,114,101,116,117,114,110,32,74,46,97,99,99,101,115,115,40,101,44,116,44,110,41,125,44,114,101,109,111,118,101,68,97,116,97,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,74,46,114,101,109,111,118,101,40,101,44,116,41,125,44,95,100,97,116,97,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,114,101,116,117,114,110,32,81,46,97,99,99,101,115,115,40,101,44,116,44,110,41,125,44,95,114,101,109,111,118,101,68,97,116,97,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,81,46,114,101,109,111,118,101,40,101,44,116,41,125,125,41,44,107,46,102,110,46,101,120,116,101,110,100,40,123,100,97,116,97,58,102,117,110,99,116,105,111,110,40,110,44,101,41,123,118,97,114,32,116,44,114,44,105,44,111,61,116,104,105,115,91,48,93,44,97,61,111,38,38,111,46,97,116,116,114,105,98,117,116,101,115,59,105,102,40,118,111,105,100,32,48,61,61,61,110,41,123,105,102,40,116,104,105,115,46,108,101,110,103,116,104,38,38,40,105,61,74,46,103,101,116,40,111,41,44,49,61,61,61,111,46,110,111,100,101,84,121,112,101,38,38,33,81,46,103,101,116,40,111,44,34,104,97,115,68,97,116,97,65,116,116,114,115,34,41,41,41,123,116,61,97,46,108,101,110,103,116,104,59,119,104,105,108,101,40,116,45,45,41,97,91,116,93,38,38,48,61,61,61,40,114,61,97,91,116,93,46,110,97,109,101,41,46,105,110,100,101,120,79,102,40,34,100,97,116,97,45,34,41,38,38,40,114,61,86,40,114,46,115,108,105,99,101,40,53,41,41,44,101,101,40,111,44,114,44,105,91,114,93,41,41,59,81,46,115,101,116,40,111,44,34,104,97,115,68,97,116,97,65,116,116,114,115,34,44,33,48,41,125,114,101,116,117,114,110,32,105,125,114,101,116,117,114,110,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,110,63,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,74,46,115,101,116,40,116,104,105,115,44,110,41,125,41,58,95,40,116,104,105,115,44,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,59,105,102,40,111,38,38,118,111,105,100,32,48,61,61,61,101,41,114,101,116,117,114,110,32,118,111,105,100,32,48,33,61,61,40,116,61,74,46,103,101,116,40,111,44,110,41,41,63,116,58,118,111,105,100,32,48,33,61,61,40,116,61,101,101,40,111,44,110,41,41,63,116,58,118,111,105,100,32,48,59,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,74,46,115,101,116,40,116,104,105,115,44,110,44,101,41,125,41,125,44,110,117,108,108,44,101,44,49,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,44,110,117,108,108,44,33,48,41,125,44,114,101,109,111,118,101,68,97,116,97,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,74,46,114,101,109,111,118,101,40,116,104,105,115,44,101,41,125,41,125,125,41,44,107,46,101,120,116,101,110,100,40,123,113,117,101,117,101,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,59,105,102,40,101,41,114,101,116,117,114,110,32,116,61,40,116,124,124,34,102,120,34,41,43,34,113,117,101,117,101,34,44,114,61,81,46,103,101,116,40,101,44,116,41,44,110,38,38,40,33,114,124,124,65,114,114,97,121,46,105,115,65,114,114,97,121,40,110,41,63,114,61,81,46,97,99,99,101,115,115,40,101,44,116,44,107,46,109,97,107,101,65,114,114,97,121,40,110,41,41,58,114,46,112,117,115,104,40,110,41,41,44,114,124,124,91,93,125,44,100,101,113,117,101,117,101,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,116,61,116,124,124,34,102,120,34,59,118,97,114,32,110,61,107,46,113,117,101,117,101,40,101,44,116,41,44,114,61,110,46,108,101,110,103,116,104,44,105,61,110,46,115,104,105,102,116,40,41,44,111,61,107,46,95,113,117,101,117,101,72,111,111,107,115,40,101,44,116,41,59,34,105,110,112,114,111,103,114,101,115,115,34,61,61,61,105,38,38,40,105,61,110,46,115,104,105,102,116,40,41,44,114,45,45,41,44,105,38,38,40,34,102,120,34,61,61,61,116,38,38,110,46,117,110,115,104,105,102,116,40,34,105,110,112,114,111,103,114,101,115,115,34,41,44,100,101,108,101,116,101,32,111,46,115,116,111,112,44,105,46,99,97,108,108,40,101,44,102,117,110,99,116,105,111,110,40,41,123,107,46,100,101,113,117,101,117,101,40,101,44,116,41,125,44,111,41,41,44,33,114,38,38,111,38,38,111,46,101,109,112,116,121,46,102,105,114,101,40,41,125,44,95,113,117,101,117,101,72,111,111,107,115,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,61,116,43,34,113,117,101,117,101,72,111,111,107,115,34,59,114,101,116,117,114,110,32,81,46,103,101,116,40,101,44,110,41,124,124,81,46,97,99,99,101,115,115,40,101,44,110,44,123,101,109,112,116,121,58,107,46,67,97,108,108,98,97,99,107,115,40,34,111,110,99,101,32,109,101,109,111,114,121,34,41,46,97,100,100,40,102,117,110,99,116,105,111,110,40,41,123,81,46,114,101,109,111,118,101,40,101,44,91,116,43,34,113,117,101,117,101,34,44,110,93,41,125,41,125,41,125,125,41,44,107,46,102,110,46,101,120,116,101,110,100,40,123,113,117,101,117,101,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,61,50,59,114,101,116,117,114,110,34,115,116,114,105,110,103,34,33,61,116,121,112,101,111,102,32,116,38,38,40,110,61,116,44,116,61,34,102,120,34,44,101,45,45,41,44,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,60,101,63,107,46,113,117,101,117,101,40,116,104,105,115,91,48,93,44,116,41,58,118,111,105,100,32,48,61,61,61,110,63,116,104,105,115,58,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,107,46,113,117,101,117,101,40,116,104,105,115,44,116,44,110,41,59,107,46,95,113,117,101,117,101,72,111,111,107,115,40,116,104,105,115,44,116,41,44,34,102,120,34,61,61,61,116,38,38,34,105,110,112,114,111,103,114,101,115,115,34,33,61,61,101,91,48,93,38,38,107,46,100,101,113,117,101,117,101,40,116,104,105,115,44,116,41,125,41,125,44,100,101,113,117,101,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,107,46,100,101,113,117,101,117,101,40,116,104,105,115,44,101,41,125,41,125,44,99,108,101,97,114,81,117,101,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,113,117,101,117,101,40,101,124,124,34,102,120,34,44,91,93,41,125,44,112,114,111,109,105,115,101,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,44,114,61,49,44,105,61,107,46,68,101,102,101,114,114,101,100,40,41,44,111,61,116,104,105,115,44,97,61,116,104,105,115,46,108,101,110,103,116,104,44,115,61,102,117,110,99,116,105,111,110,40,41,123,45,45,114,124,124,105,46,114,101,115,111,108,118,101,87,105,116,104,40,111,44,91,111,93,41,125,59,34,115,116,114,105,110,103,34,33,61,116,121,112,101,111,102,32,101,38,38,40,116,61,101,44,101,61,118,111,105,100,32,48,41,44,101,61,101,124,124,34,102,120,34,59,119,104,105,108,101,40,97,45,45,41,40,110,61,81,46,103,101,116,40,111,91,97,93,44,101,43,34,113,117,101,117,101,72,111,111,107,115,34,41,41,38,38,110,46,101,109,112,116,121,38,38,40,114,43,43,44,110,46,101,109,112,116,121,46,97,100,100,40,115,41,41,59,114,101,116,117,114,110,32,115,40,41,44,105,46,112,114,111,109,105,115,101,40,116,41,125,125,41,59,118,97,114,32,116,101,61,47,91,43,45,93,63,40,63,58,92,100,42,92,46,124,41,92,100,43,40,63,58,91,101,69,93,91,43,45,93,63,92,100,43,124,41,47,46,115,111,117,114,99,101,44,110,101,61,110,101,119,32,82,101,103,69,120,112,40,34,94,40,63,58,40,91,43,45,93,41,61,124,41,40,34,43,116,101,43,34,41,40,91,97,45,122,37,93,42,41,36,34,44,34,105,34,41,44,114,101,61,91,34,84,111,112,34,44,34,82,105,103,104,116,34,44,34,66,111,116,116,111,109,34,44,34,76,101,102,116,34,93,44,105,101,61,69,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,44,111,101,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,107,46,99,111,110,116,97,105,110,115,40,101,46,111,119,110,101,114,68,111,99,117,109,101,110,116,44,101,41,125,44,97,101,61,123,99,111,109,112,111,115,101,100,58,33,48,125,59,105,101,46,103,101,116,82,111,111,116,78,111,100,101,38,38,40,111,101,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,107,46,99,111,110,116,97,105,110,115,40,101,46,111,119,110,101,114,68,111,99,117,109,101,110,116,44,101,41,124,124,101,46,103,101,116,82,111,111,116,78,111,100,101,40,97,101,41,61,61,61,101,46,111,119,110,101,114,68,111,99,117,109,101,110,116,125,41,59,118,97,114,32,115,101,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,34,110,111,110,101,34,61,61,61,40,101,61,116,124,124,101,41,46,115,116,121,108,101,46,100,105,115,112,108,97,121,124,124,34,34,61,61,61,101,46,115,116,121,108,101,46,100,105,115,112,108,97,121,38,38,111,101,40,101,41,38,38,34,110,111,110,101,34,61,61,61,107,46,99,115,115,40,101,44,34,100,105,115,112,108,97,121,34,41,125,44,117,101,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,114,41,123,118,97,114,32,105,44,111,44,97,61,123,125,59,102,111,114,40,111,32,105,110,32,116,41,97,91,111,93,61,101,46,115,116,121,108,101,91,111,93,44,101,46,115,116,121,108,101,91,111,93,61,116,91,111,93,59,102,111,114,40,111,32,105,110,32,105,61,110,46,97,112,112,108,121,40,101,44,114,124,124,91,93,41,44,116,41,101,46,115,116,121,108,101,91,111,93,61,97,91,111,93,59,114,101,116,117,114,110,32,105,125,59,102,117,110,99,116,105,111,110,32,108,101,40,101,44,116,44,110,44,114,41,123,118,97,114,32,105,44,111,44,97,61,50,48,44,115,61,114,63,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,114,46,99,117,114,40,41,125,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,107,46,99,115,115,40,101,44,116,44,34,34,41,125,44,117,61,115,40,41,44,108,61,110,38,38,110,91,51,93,124,124,40,107,46,99,115,115,78,117,109,98,101,114,91,116,93,63,34,34,58,34,112,120,34,41,44,99,61,101,46,110,111,100,101,84,121,112,101,38,38,40,107,46,99,115,115,78,117,109,98,101,114,91,116,93,124,124,34,112,120,34,33,61,61,108,38,38,43,117,41,38,38,110,101,46,101,120,101,99,40,107,46,99,115,115,40,101,44,116,41,41,59,105,102,40,99,38,38,99,91,51,93,33,61,61,108,41,123,117,47,61,50,44,108,61,108,124,124,99,91,51,93,44,99,61,43,117,124,124,49,59,119,104,105,108,101,40,97,45,45,41,107,46,115,116,121,108,101,40,101,44,116,44,99,43,108,41,44,40,49,45,111,41,42,40,49,45,40,111,61,115,40,41,47,117,124,124,46,53,41,41,60,61,48,38,38,40,97,61,48,41,44,99,47,61,111,59,99,42,61,50,44,107,46,115,116,121,108,101,40,101,44,116,44,99,43,108,41,44,110,61,110,124,124,91,93,125,114,101,116,117,114,110,32,110,38,38,40,99,61,43,99,124,124,43,117,124,124,48,44,105,61,110,91,49,93,63,99,43,40,110,91,49,93,43,49,41,42,110,91,50,93,58,43,110,91,50,93,44,114,38,38,40,114,46,117,110,105,116,61,108,44,114,46,115,116,97,114,116,61,99,44,114,46,101,110,100,61,105,41,41,44,105,125,118,97,114,32,99,101,61,123,125,59,102,117,110,99,116,105,111,110,32,102,101,40,101,44,116,41,123,102,111,114,40,118,97,114,32,110,44,114,44,105,44,111,44,97,44,115,44,117,44,108,61,91,93,44,99,61,48,44,102,61,101,46,108,101,110,103,116,104,59,99,60,102,59,99,43,43,41,40,114,61,101,91,99,93,41,46,115,116,121,108,101,38,38,40,110,61,114,46,115,116,121,108,101,46,100,105,115,112,108,97,121,44,116,63,40,34,110,111,110,101,34,61,61,61,110,38,38,40,108,91,99,93,61,81,46,103,101,116,40,114,44,34,100,105,115,112,108,97,121,34,41,124,124,110,117,108,108,44,108,91,99,93,124,124,40,114,46,115,116,121,108,101,46,100,105,115,112,108,97,121,61,34,34,41,41,44,34,34,61,61,61,114,46,115,116,121,108,101,46,100,105,115,112,108,97,121,38,38,115,101,40,114,41,38,38,40,108,91,99,93,61,40,117,61,97,61,111,61,118,111,105,100,32,48,44,97,61,40,105,61,114,41,46,111,119,110,101,114,68,111,99,117,109,101,110,116,44,115,61,105,46,110,111,100,101,78,97,109,101,44,40,117,61,99,101,91,115,93,41,124,124,40,111,61,97,46,98,111,100,121,46,97,112,112,101,110,100,67,104,105,108,100,40,97,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,115,41,41,44,117,61,107,46,99,115,115,40,111,44,34,100,105,115,112,108,97,121,34,41,44,111,46,112,97,114,101,110,116,78,111,100,101,46,114,101,109,111,118,101,67,104,105,108,100,40,111,41,44,34,110,111,110,101,34,61,61,61,117,38,38,40,117,61,34,98,108,111,99,107,34,41,44,99,101,91,115,93,61,117,41,41,41,41,58,34,110,111,110,101,34,33,61,61,110,38,38,40,108,91,99,93,61,34,110,111,110,101,34,44,81,46,115,101,116,40,114,44,34,100,105,115,112,108,97,121,34,44,110,41,41,41,59,102,111,114,40,99,61,48,59,99,60,102,59,99,43,43,41,110,117,108,108,33,61,108,91,99,93,38,38,40,101,91,99,93,46,115,116,121,108,101,46,100,105,115,112,108,97,121,61,108,91,99,93,41,59,114,101,116,117,114,110,32,101,125,107,46,102,110,46,101,120,116,101,110,100,40,123,115,104,111,119,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,102,101,40,116,104,105,115,44,33,48,41,125,44,104,105,100,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,102,101,40,116,104,105,115,41,125,44,116,111,103,103,108,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,34,98,111,111,108,101,97,110,34,61,61,116,121,112,101,111,102,32,101,63,101,63,116,104,105,115,46,115,104,111,119,40,41,58,116,104,105,115,46,104,105,100,101,40,41,58,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,115,101,40,116,104,105,115,41,63,107,40,116,104,105,115,41,46,115,104,111,119,40,41,58,107,40,116,104,105,115,41,46,104,105,100,101,40,41,125,41,125,125,41,59,118,97,114,32,112,101,61,47,94,40,63,58,99,104,101,99,107,98,111,120,124,114,97,100,105,111,41,36,47,105,44,100,101,61,47,60,40,91,97,45,122,93,91,94,92,47,92,48,62,92,120,50,48,92,116,92,114,92,110,92,102,93,42,41,47,105,44,104,101,61,47,94,36,124,94,109,111,100,117,108,101,36,124,92,47,40,63,58,106,97,118,97,124,101,99,109,97,41,115,99,114,105,112,116,47,105,44,103,101,61,123,111,112,116,105,111,110,58,91,49,44,34,60,115,101,108,101,99,116,32,109,117,108,116,105,112,108,101,61,39,109,117,108,116,105,112,108,101,39,62,34,44,34,60,47,115,101,108,101,99,116,62,34,93,44,116,104,101,97,100,58,91,49,44,34,60,116,97,98,108,101,62,34,44,34,60,47,116,97,98,108,101,62,34,93,44,99,111,108,58,91,50,44,34,60,116,97,98,108,101,62,60,99,111,108,103,114,111,117,112,62,34,44,34,60,47,99,111,108,103,114,111,117,112,62,60,47,116,97,98,108,101,62,34,93,44,116,114,58,91,50,44,34,60,116,97,98,108,101,62,60,116,98,111,100,121,62,34,44,34,60,47,116,98,111,100,121,62,60,47,116,97,98,108,101,62,34,93,44,116,100,58,91,51,44,34,60,116,97,98,108,101,62,60,116,98,111,100,121,62,60,116,114,62,34,44,34,60,47,116,114,62,60,47,116,98,111,100,121,62,60,47,116,97,98,108,101,62,34,93,44,95,100,101,102,97,117,108,116,58,91,48,44,34,34,44,34,34,93,125,59,102,117,110,99,116,105,111,110,32,118,101,40,101,44,116,41,123,118,97,114,32,110,59,114,101,116,117,114,110,32,110,61,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,101,46,103,101,116,69,108,101,109,101,110,116,115,66,121,84,97,103,78,97,109,101,63,101,46,103,101,116,69,108,101,109,101,110,116,115,66,121,84,97,103,78,97,109,101,40,116,124,124,34,42,34,41,58,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,101,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,63,101,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,116,124,124,34,42,34,41,58,91,93,44,118,111,105,100,32,48,61,61,61,116,124,124,116,38,38,65,40,101,44,116,41,63,107,46,109,101,114,103,101,40,91,101,93,44,110,41,58,110,125,102,117,110,99,116,105,111,110,32,121,101,40,101,44,116,41,123,102,111,114,40,118,97,114,32,110,61,48,44,114,61,101,46,108,101,110,103,116,104,59,110,60,114,59,110,43,43,41,81,46,115,101,116,40,101,91,110,93,44,34,103,108,111,98,97,108,69,118,97,108,34,44,33,116,124,124,81,46,103,101,116,40,116,91,110,93,44,34,103,108,111,98,97,108,69,118,97,108,34,41,41,125,103,101,46,111,112,116,103,114,111,117,112,61,103,101,46,111,112,116,105,111,110,44,103,101,46,116,98,111,100,121,61,103,101,46,116,102,111,111,116,61,103,101,46,99,111,108,103,114,111,117,112,61,103,101,46,99,97,112,116,105,111,110,61,103,101,46,116,104,101,97,100,44,103,101,46,116,104,61,103,101,46,116,100,59,118,97,114,32,109,101,44,120,101,44,98,101,61,47,60,124,38,35,63,92,119,43,59,47,59,102,117,110,99,116,105,111,110,32,119,101,40,101,44,116,44,110,44,114,44,105,41,123,102,111,114,40,118,97,114,32,111,44,97,44,115,44,117,44,108,44,99,44,102,61,116,46,99,114,101,97,116,101,68,111,99,117,109,101,110,116,70,114,97,103,109,101,110,116,40,41,44,112,61,91,93,44,100,61,48,44,104,61,101,46,108,101,110,103,116,104,59,100,60,104,59,100,43,43,41,105,102,40,40,111,61,101,91,100,93,41,124,124,48,61,61,61,111,41,105,102,40,34,111,98,106,101,99,116,34,61,61,61,119,40,111,41,41,107,46,109,101,114,103,101,40,112,44,111,46,110,111,100,101,84,121,112,101,63,91,111,93,58,111,41,59,101,108,115,101,32,105,102,40,98,101,46,116,101,115,116,40,111,41,41,123,97,61,97,124,124,102,46,97,112,112,101,110,100,67,104,105,108,100,40,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,41,44,115,61,40,100,101,46,101,120,101,99,40,111,41,124,124,91,34,34,44,34,34,93,41,91,49,93,46,116,111,76,111,119,101,114,67,97,115,101,40,41,44,117,61,103,101,91,115,93,124,124,103,101,46,95,100,101,102,97,117,108,116,44,97,46,105,110,110,101,114,72,84,77,76,61,117,91,49,93,43,107,46,104,116,109,108,80,114,101,102,105,108,116,101,114,40,111,41,43,117,91,50,93,44,99,61,117,91,48,93,59,119,104,105,108,101,40,99,45,45,41,97,61,97,46,108,97,115,116,67,104,105,108,100,59,107,46,109,101,114,103,101,40,112,44,97,46,99,104,105,108,100,78,111,100,101,115,41,44,40,97,61,102,46,102,105,114,115,116,67,104,105,108,100,41,46,116,101,120,116,67,111,110,116,101,110,116,61,34,34,125,101,108,115,101,32,112,46,112,117,115,104,40,116,46,99,114,101,97,116,101,84,101,120,116,78,111,100,101,40,111,41,41,59,102,46,116,101,120,116,67,111,110,116,101,110,116,61,34,34,44,100,61,48,59,119,104,105,108,101,40,111,61,112,91,100,43,43,93,41,105,102,40,114,38,38,45,49,60,107,46,105,110,65,114,114,97,121,40,111,44,114,41,41,105,38,38,105,46,112,117,115,104,40,111,41,59,101,108,115,101,32,105,102,40,108,61,111,101,40,111,41,44,97,61,118,101,40,102,46,97,112,112,101,110,100,67,104,105,108,100,40,111,41,44,34,115,99,114,105,112,116,34,41,44,108,38,38,121,101,40,97,41,44,110,41,123,99,61,48,59,119,104,105,108,101,40,111,61,97,91,99,43,43,93,41,104,101,46,116,101,115,116,40,111,46,116,121,112,101,124,124,34,34,41,38,38,110,46,112,117,115,104,40,111,41,125,114,101,116,117,114,110,32,102,125,109,101,61,69,46,99,114,101,97,116,101,68,111,99,117,109,101,110,116,70,114,97,103,109,101,110,116,40,41,46,97,112,112,101,110,100,67,104,105,108,100,40,69,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,41,44,40,120,101,61,69,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,105,110,112,117,116,34,41,41,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,116,121,112,101,34,44,34,114,97,100,105,111,34,41,44,120,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,104,101,99,107,101,100,34,44,34,99,104,101,99,107,101,100,34,41,44,120,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,110,97,109,101,34,44,34,116,34,41,44,109,101,46,97,112,112,101,110,100,67,104,105,108,100,40,120,101,41,44,121,46,99,104,101,99,107,67,108,111,110,101,61,109,101,46,99,108,111,110,101,78,111,100,101,40,33,48,41,46,99,108,111,110,101,78,111,100,101,40,33,48,41,46,108,97,115,116,67,104,105,108,100,46,99,104,101,99,107,101,100,44,109,101,46,105,110,110,101,114,72,84,77,76,61,34,60,116,101,120,116,97,114,101,97,62,120,60,47,116,101,120,116,97,114,101,97,62,34,44,121,46,110,111,67,108,111,110,101,67,104,101,99,107,101,100,61,33,33,109,101,46,99,108,111,110,101,78,111,100,101,40,33,48,41,46,108,97,115,116,67,104,105,108,100,46,100,101,102,97,117,108,116,86,97,108,117,101,59,118,97,114,32,84,101,61,47,94,107,101,121,47,44,67,101,61,47,94,40,63,58,109,111,117,115,101,124,112,111,105,110,116,101,114,124,99,111,110,116,101,120,116,109,101,110,117,124,100,114,97,103,124,100,114,111,112,41,124,99,108,105,99,107,47,44,69,101,61,47,94,40,91,94,46,93,42,41,40,63,58,92,46,40,46,43,41,124,41,47,59,102,117,110,99,116,105,111,110,32,107,101,40,41,123,114,101,116,117,114,110,33,48,125,102,117,110,99,116,105,111,110,32,83,101,40,41,123,114,101,116,117,114,110,33,49,125,102,117,110,99,116,105,111,110,32,78,101,40,101,44,116,41,123,114,101,116,117,114,110,32,101,61,61,61,102,117,110,99,116,105,111,110,40,41,123,116,114,121,123,114,101,116,117,114,110,32,69,46,97,99,116,105,118,101,69,108,101,109,101,110,116,125,99,97,116,99,104,40,101,41,123,125,125,40,41,61,61,40,34,102,111,99,117,115,34,61,61,61,116,41,125,102,117,110,99,116,105,111,110,32,65,101,40,101,44,116,44,110,44,114,44,105,44,111,41,123,118,97,114,32,97,44,115,59,105,102,40,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,116,41,123,102,111,114,40,115,32,105,110,34,115,116,114,105,110,103,34,33,61,116,121,112,101,111,102,32,110,38,38,40,114,61,114,124,124,110,44,110,61,118,111,105,100,32,48,41,44,116,41,65,101,40,101,44,115,44,110,44,114,44,116,91,115,93,44,111,41,59,114,101,116,117,114,110,32,101,125,105,102,40,110,117,108,108,61,61,114,38,38,110,117,108,108,61,61,105,63,40,105,61,110,44,114,61,110,61,118,111,105,100,32,48,41,58,110,117,108,108,61,61,105,38,38,40,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,110,63,40,105,61,114,44,114,61,118,111,105,100,32,48,41,58,40,105,61,114,44,114,61,110,44,110,61,118,111,105,100,32,48,41,41,44,33,49,61,61,61,105,41,105,61,83,101,59,101,108,115,101,32,105,102,40,33,105,41,114,101,116,117,114,110,32,101,59,114,101,116,117,114,110,32,49,61,61,61,111,38,38,40,97,61,105,44,40,105,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,107,40,41,46,111,102,102,40,101,41,44,97,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,125,41,46,103,117,105,100,61,97,46,103,117,105,100,124,124,40,97,46,103,117,105,100,61,107,46,103,117,105,100,43,43,41,41,44,101,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,107,46,101,118,101,110,116,46,97,100,100,40,116,104,105,115,44,116,44,105,44,114,44,110,41,125,41,125,102,117,110,99,116,105,111,110,32,68,101,40,101,44,105,44,111,41,123,111,63,40,81,46,115,101,116,40,101,44,105,44,33,49,41,44,107,46,101,118,101,110,116,46,97,100,100,40,101,44,105,44,123,110,97,109,101,115,112,97,99,101,58,33,49,44,104,97,110,100,108,101,114,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,44,110,44,114,61,81,46,103,101,116,40,116,104,105,115,44,105,41,59,105,102,40,49,38,101,46,105,115,84,114,105,103,103,101,114,38,38,116,104,105,115,91,105,93,41,123,105,102,40,114,46,108,101,110,103,116,104,41,40,107,46,101,118,101,110,116,46,115,112,101,99,105,97,108,91,105,93,124,124,123,125,41,46,100,101,108,101,103,97,116,101,84,121,112,101,38,38,101,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,59,101,108,115,101,32,105,102,40,114,61,115,46,99,97,108,108,40,97,114,103,117,109,101,110,116,115,41,44,81,46,115,101,116,40,116,104,105,115,44,105,44,114,41,44,116,61,111,40,116,104,105,115,44,105,41,44,116,104,105,115,91,105,93,40,41,44,114,33,61,61,40,110,61,81,46,103,101,116,40,116,104,105,115,44,105,41,41,124,124,116,63,81,46,115,101,116,40,116,104,105,115,44,105,44,33,49,41,58,110,61,123,125,44,114,33,61,61,110,41,114,101,116,117,114,110,32,101,46,115,116,111,112,73,109,109,101,100,105,97,116,101,80,114,111,112,97,103,97,116,105,111,110,40,41,44,101,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,110,46,118,97,108,117,101,125,101,108,115,101,32,114,46,108,101,110,103,116,104,38,38,40,81,46,115,101,116,40,116,104,105,115,44,105,44,123,118,97,108,117,101,58,107,46,101,118,101,110,116,46,116,114,105,103,103,101,114,40,107,46,101,120,116,101,110,100,40,114,91,48,93,44,107,46,69,118,101,110,116,46,112,114,111,116,111,116,121,112,101,41,44,114,46,115,108,105,99,101,40,49,41,44,116,104,105,115,41,125,41,44,101,46,115,116,111,112,73,109,109,101,100,105,97,116,101,80,114,111,112,97,103,97,116,105,111,110,40,41,41,125,125,41,41,58,118,111,105,100,32,48,61,61,61,81,46,103,101,116,40,101,44,105,41,38,38,107,46,101,118,101,110,116,46,97,100,100,40,101,44,105,44,107,101,41,125,107,46,101,118,101,110,116,61,123,103,108,111,98,97,108,58,123,125,44,97,100,100,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,44,114,44,105,41,123,118,97,114,32,111,44,97,44,115,44,117,44,108,44,99,44,102,44,112,44,100,44,104,44,103,44,118,61,81,46,103,101,116,40,116,41,59,105,102,40,118,41,123,110,46,104,97,110,100,108,101,114,38,38,40,110,61,40,111,61,110,41,46,104,97,110,100,108,101,114,44,105,61,111,46,115,101,108,101,99,116,111,114,41,44,105,38,38,107,46,102,105,110,100,46,109,97,116,99,104,101,115,83,101,108,101,99,116,111,114,40,105,101,44,105,41,44,110,46,103,117,105,100,124,124,40,110,46,103,117,105,100,61,107,46,103,117,105,100,43,43,41,44,40,117,61,118,46,101,118,101,110,116,115,41,124,124,40,117,61,118,46,101,118,101,110,116,115,61,123,125,41,44,40,97,61,118,46,104,97,110,100,108,101,41,124,124,40,97,61,118,46,104,97,110,100,108,101,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,107,38,38,107,46,101,118,101,110,116,46,116,114,105,103,103,101,114,101,100,33,61,61,101,46,116,121,112,101,63,107,46,101,118,101,110,116,46,100,105,115,112,97,116,99,104,46,97,112,112,108,121,40,116,44,97,114,103,117,109,101,110,116,115,41,58,118,111,105,100,32,48,125,41,44,108,61,40,101,61,40,101,124,124,34,34,41,46,109,97,116,99,104,40,82,41,124,124,91,34,34,93,41,46,108,101,110,103,116,104,59,119,104,105,108,101,40,108,45,45,41,100,61,103,61,40,115,61,69,101,46,101,120,101,99,40,101,91,108,93,41,124,124,91,93,41,91,49,93,44,104,61,40,115,91,50,93,124,124,34,34,41,46,115,112,108,105,116,40,34,46,34,41,46,115,111,114,116,40,41,44,100,38,38,40,102,61,107,46,101,118,101,110,116,46,115,112,101,99,105,97,108,91,100,93,124,124,123,125,44,100,61,40,105,63,102,46,100,101,108,101,103,97,116,101,84,121,112,101,58,102,46,98,105,110,100,84,121,112,101,41,124,124,100,44,102,61,107,46,101,118,101,110,116,46,115,112,101,99,105,97,108,91,100,93,124,124,123,125,44,99,61,107,46,101,120,116,101,110,100,40,123,116,121,112,101,58,100,44,111,114,105,103,84,121,112,101,58,103,44,100,97,116,97,58,114,44,104,97,110,100,108,101,114,58,110,44,103,117,105,100,58,110,46,103,117,105,100,44,115,101,108,101,99,116,111,114,58,105,44,110,101,101,100,115,67,111,110,116,101,120,116,58,105,38,38,107,46,101,120,112,114,46,109,97,116,99,104,46,110,101,101,100,115,67,111,110,116,101,120,116,46,116,101,115,116,40,105,41,44,110,97,109,101,115,112,97,99,101,58,104,46,106,111,105,110,40,34,46,34,41,125,44,111,41,44,40,112,61,117,91,100,93,41,124,124,40,40,112,61,117,91,100,93,61,91,93,41,46,100,101,108,101,103,97,116,101,67,111,117,110,116,61,48,44,102,46,115,101,116,117,112,38,38,33,49,33,61,61,102,46,115,101,116,117,112,46,99,97,108,108,40,116,44,114,44,104,44,97,41,124,124,116,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,38,38,116,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,100,44,97,41,41,44,102,46,97,100,100,38,38,40,102,46,97,100,100,46,99,97,108,108,40,116,44,99,41,44,99,46,104,97,110,100,108,101,114,46,103,117,105,100,124,124,40,99,46,104,97,110,100,108,101,114,46,103,117,105,100,61,110,46,103,117,105,100,41,41,44,105,63,112,46,115,112,108,105,99,101,40,112,46,100,101,108,101,103,97,116,101,67,111,117,110,116,43,43,44,48,44,99,41,58,112,46,112,117,115,104,40,99,41,44,107,46,101,118,101,110,116,46,103,108,111,98,97,108,91,100,93,61,33,48,41,125,125,44,114,101,109,111,118,101,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,114,44,105,41,123,118,97,114,32,111,44,97,44,115,44,117,44,108,44,99,44,102,44,112,44,100,44,104,44,103,44,118,61,81,46,104,97,115,68,97,116,97,40,101,41,38,38,81,46,103,101,116,40,101,41,59,105,102,40,118,38,38,40,117,61,118,46,101,118,101,110,116,115,41,41,123,108,61,40,116,61,40,116,124,124,34,34,41,46,109,97,116,99,104,40,82,41,124,124,91,34,34,93,41,46,108,101,110,103,116,104,59,119,104,105,108,101,40,108,45,45,41,105,102,40,100,61,103,61,40,115,61,69,101,46,101,120,101,99,40,116,91,108,93,41,124,124,91,93,41,91,49,93,44,104,61,40,115,91,50,93,124,124,34,34,41,46,115,112,108,105,116,40,34,46,34,41,46,115,111,114,116,40,41,44,100,41,123,102,61,107,46,101,118,101,110,116,46,115,112,101,99,105,97,108,91,100,93,124,124,123,125,44,112,61,117,91,100,61,40,114,63,102,46,100,101,108,101,103,97,116,101,84,121,112,101,58,102,46,98,105,110,100,84,121,112,101,41,124,124,100,93,124,124,91,93,44,115,61,115,91,50,93,38,38,110,101,119,32,82,101,103,69,120,112,40,34,40,94,124,92,92,46,41,34,43,104,46,106,111,105,110,40,34,92,92,46,40,63,58,46,42,92,92,46,124,41,34,41,43,34,40,92,92,46,124,36,41,34,41,44,97,61,111,61,112,46,108,101,110,103,116,104,59,119,104,105,108,101,40,111,45,45,41,99,61,112,91,111,93,44,33,105,38,38,103,33,61,61,99,46,111,114,105,103,84,121,112,101,124,124,110,38,38,110,46,103,117,105,100,33,61,61,99,46,103,117,105,100,124,124,115,38,38,33,115,46,116,101,115,116,40,99,46,110,97,109,101,115,112,97,99,101,41,124,124,114,38,38,114,33,61,61,99,46,115,101,108,101,99,116,111,114,38,38,40,34,42,42,34,33,61,61,114,124,124,33,99,46,115,101,108,101,99,116,111,114,41,124,124,40,112,46,115,112,108,105,99,101,40,111,44,49,41,44,99,46,115,101,108,101,99,116,111,114,38,38,112,46,100,101,108,101,103,97,116,101,67,111,117,110,116,45,45,44,102,46,114,101,109,111,118,101,38,38,102,46,114,101,109,111,118,101,46,99,97,108,108,40,101,44,99,41,41,59,97,38,38,33,112,46,108,101,110,103,116,104,38,38,40,102,46,116,101,97,114,100,111,119,110,38,38,33,49,33,61,61,102,46,116,101,97,114,100,111,119,110,46,99,97,108,108,40,101,44,104,44,118,46,104,97,110,100,108,101,41,124,124,107,46,114,101,109,111,118,101,69,118,101,110,116,40,101,44,100,44,118,46,104,97,110,100,108,101,41,44,100,101,108,101,116,101,32,117,91,100,93,41,125,101,108,115,101,32,102,111,114,40,100,32,105,110,32,117,41,107,46,101,118,101,110,116,46,114,101,109,111,118,101,40,101,44,100,43,116,91,108,93,44,110,44,114,44,33,48,41,59,107,46,105,115,69,109,112,116,121,79,98,106,101,99,116,40,117,41,38,38,81,46,114,101,109,111,118,101,40,101,44,34,104,97,110,100,108,101,32,101,118,101,110,116,115,34,41,125,125,44,100,105,115,112,97,116,99,104,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,44,110,44,114,44,105,44,111,44,97,44,115,61,107,46,101,118,101,110,116,46,102,105,120,40,101,41,44,117,61,110,101,119,32,65,114,114,97,121,40,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,44,108,61,40,81,46,103,101,116,40,116,104,105,115,44,34,101,118,101,110,116,115,34,41,124,124,123,125,41,91,115,46,116,121,112,101,93,124,124,91,93,44,99,61,107,46,101,118,101,110,116,46,115,112,101,99,105,97,108,91,115,46,116,121,112,101,93,124,124,123,125,59,102,111,114,40,117,91,48,93,61,115,44,116,61,49,59,116,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,116,43,43,41,117,91,116,93,61,97,114,103,117,109,101,110,116,115,91,116,93,59,105,102,40,115,46,100,101,108,101,103,97,116,101,84,97,114,103,101,116,61,116,104,105,115,44,33,99,46,112,114,101,68,105,115,112,97,116,99,104,124,124,33,49,33,61,61,99,46,112,114,101,68,105,115,112,97,116,99,104,46,99,97,108,108,40,116,104,105,115,44,115,41,41,123,97,61,107,46,101,118,101,110,116,46,104,97,110,100,108,101,114,115,46,99,97,108,108,40,116,104,105,115,44,115,44,108,41,44,116,61,48,59,119,104,105,108,101,40,40,105,61,97,91,116,43,43,93,41,38,38,33,115,46,105,115,80,114,111,112,97,103,97,116,105,111,110,83,116,111,112,112,101,100,40,41,41,123,115,46,99,117,114,114,101,110,116,84,97,114,103,101,116,61,105,46,101,108,101,109,44,110,61,48,59,119,104,105,108,101,40,40,111,61,105,46,104,97,110,100,108,101,114,115,91,110,43,43,93,41,38,38,33,115,46,105,115,73,109,109,101,100,105,97,116,101,80,114,111,112,97,103,97,116,105,111,110,83,116,111,112,112,101,100,40,41,41,115,46,114,110,97,109,101,115,112,97,99,101,38,38,33,49,33,61,61,111,46,110,97,109,101,115,112,97,99,101,38,38,33,115,46,114,110,97,109,101,115,112,97,99,101,46,116,101,115,116,40,111,46,110,97,109,101,115,112,97,99,101,41,124,124,40,115,46,104,97,110,100,108,101,79,98,106,61,111,44,115,46,100,97,116,97,61,111,46,100,97,116,97,44,118,111,105,100,32,48,33,61,61,40,114,61,40,40,107,46,101,118,101,110,116,46,115,112,101,99,105,97,108,91,111,46,111,114,105,103,84,121,112,101,93,124,124,123,125,41,46,104,97,110,100,108,101,124,124,111,46,104,97,110,100,108,101,114,41,46,97,112,112,108,121,40,105,46,101,108,101,109,44,117,41,41,38,38,33,49,61,61,61,40,115,46,114,101,115,117,108,116,61,114,41,38,38,40,115,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,115,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,41,41,125,114,101,116,117,114,110,32,99,46,112,111,115,116,68,105,115,112,97,116,99,104,38,38,99,46,112,111,115,116,68,105,115,112,97,116,99,104,46,99,97,108,108,40,116,104,105,115,44,115,41,44,115,46,114,101,115,117,108,116,125,125,44,104,97,110,100,108,101,114,115,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,44,114,44,105,44,111,44,97,44,115,61,91,93,44,117,61,116,46,100,101,108,101,103,97,116,101,67,111,117,110,116,44,108,61,101,46,116,97,114,103,101,116,59,105,102,40,117,38,38,108,46,110,111,100,101,84,121,112,101,38,38,33,40,34,99,108,105,99,107,34,61,61,61,101,46,116,121,112,101,38,38,49,60,61,101,46,98,117,116,116,111,110,41,41,102,111,114,40,59,108,33,61,61,116,104,105,115,59,108,61,108,46,112,97,114,101,110,116,78,111,100,101,124,124,116,104,105,115,41,105,102,40,49,61,61,61,108,46,110,111,100,101,84,121,112,101,38,38,40,34,99,108,105,99,107,34,33,61,61,101,46,116,121,112,101,124,124,33,48,33,61,61,108,46,100,105,115,97,98,108,101,100,41,41,123,102,111,114,40,111,61,91,93,44,97,61,123,125,44,110,61,48,59,110,60,117,59,110,43,43,41,118,111,105,100,32,48,61,61,61,97,91,105,61,40,114,61,116,91,110,93,41,46,115,101,108,101,99,116,111,114,43,34,32,34,93,38,38,40,97,91,105,93,61,114,46,110,101,101,100,115,67,111,110,116,101,120,116,63,45,49,60,107,40,105,44,116,104,105,115,41,46,105,110,100,101,120,40,108,41,58,107,46,102,105,110,100,40,105,44,116,104,105,115,44,110,117,108,108,44,91,108,93,41,46,108,101,110,103,116,104,41,44,97,91,105,93,38,38,111,46,112,117,115,104,40,114,41,59,111,46,108,101,110,103,116,104,38,38,115,46,112,117,115,104,40,123,101,108,101,109,58,108,44,104,97,110,100,108,101,114,115,58,111,125,41,125,114,101,116,117,114,110,32,108,61,116,104,105,115,44,117,60,116,46,108,101,110,103,116,104,38,38,115,46,112,117,115,104,40,123,101,108,101,109,58,108,44,104,97,110,100,108,101,114,115,58,116,46,115,108,105,99,101,40,117,41,125,41,44,115,125,44,97,100,100,80,114,111,112,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,107,46,69,118,101,110,116,46,112,114,111,116,111,116,121,112,101,44,116,44,123,101,110,117,109,101,114,97,98,108,101,58,33,48,44,99,111,110,102,105,103,117,114,97,98,108,101,58,33,48,44,103,101,116,58,109,40,101,41,63,102,117,110,99,116,105,111,110,40,41,123,105,102,40,116,104,105,115,46,111,114,105,103,105,110,97,108,69,118,101,110,116,41,114,101,116,117,114,110,32,101,40,116,104,105,115,46,111,114,105,103,105,110,97,108,69,118,101,110,116,41,125,58,102,117,110,99,116,105,111,110,40,41,123,105,102,40,116,104,105,115,46,111,114,105,103,105,110,97,108,69,118,101,110,116,41,114,101,116,117,114,110,32,116,104,105,115,46,111,114,105,103,105,110,97,108,69,118,101,110,116,91,116,93,125,44,115,101,116,58,102,117,110,99,116,105,111,110,40,101,41,123,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,104,105,115,44,116,44,123,101,110,117,109,101,114,97,98,108,101,58,33,48,44,99,111,110,102,105,103,117,114,97,98,108,101,58,33,48,44,119,114,105,116,97,98,108,101,58,33,48,44,118,97,108,117,101,58,101,125,41,125,125,41,125,44,102,105,120,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,91,107,46,101,120,112,97,110,100,111,93,63,101,58,110,101,119,32,107,46,69,118,101,110,116,40,101,41,125,44,115,112,101,99,105,97,108,58,123,108,111,97,100,58,123,110,111,66,117,98,98,108,101,58,33,48,125,44,99,108,105,99,107,58,123,115,101,116,117,112,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,116,104,105,115,124,124,101,59,114,101,116,117,114,110,32,112,101,46,116,101,115,116,40,116,46,116,121,112,101,41,38,38,116,46,99,108,105,99,107,38,38,65,40,116,44,34,105,110,112,117,116,34,41,38,38,68,101,40,116,44,34,99,108,105,99,107,34,44,107,101,41,44,33,49,125,44,116,114,105,103,103,101,114,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,116,104,105,115,124,124,101,59,114,101,116,117,114,110,32,112,101,46,116,101,115,116,40,116,46,116,121,112,101,41,38,38,116,46,99,108,105,99,107,38,38,65,40,116,44,34,105,110,112,117,116,34,41,38,38,68,101,40,116,44,34,99,108,105,99,107,34,41,44,33,48,125,44,95,100,101,102,97,117,108,116,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,46,116,97,114,103,101,116,59,114,101,116,117,114,110,32,112,101,46,116,101,115,116,40,116,46,116,121,112,101,41,38,38,116,46,99,108,105,99,107,38,38,65,40,116,44,34,105,110,112,117,116,34,41,38,38,81,46,103,101,116,40,116,44,34,99,108,105,99,107,34,41,124,124,65,40,116,44,34,97,34,41,125,125,44,98,101,102,111,114,101,117,110,108,111,97,100,58,123,112,111,115,116,68,105,115,112,97,116,99,104,58,102,117,110,99,116,105,111,110,40,101,41,123,118,111,105,100,32,48,33,61,61,101,46,114,101,115,117,108,116,38,38,101,46,111,114,105,103,105,110,97,108,69,118,101,110,116,38,38,40,101,46,111,114,105,103,105,110,97,108,69,118,101,110,116,46,114,101,116,117,114,110,86,97,108,117,101,61,101,46,114,101,115,117,108,116,41,125,125,125,125,44,107,46,114,101,109,111,118,101,69,118,101,110,116,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,101,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,38,38,101,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,40,116,44,110,41,125,44,107,46,69,118,101,110,116,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,102,40,33,40,116,104,105,115,32,105,110,115,116,97,110,99,101,111,102,32,107,46,69,118,101,110,116,41,41,114,101,116,117,114,110,32,110,101,119,32,107,46,69,118,101,110,116,40,101,44,116,41,59,101,38,38,101,46,116,121,112,101,63,40,116,104,105,115,46,111,114,105,103,105,110,97,108,69,118,101,110,116,61,101,44,116,104,105,115,46,116,121,112,101,61,101,46,116,121,112,101,44,116,104,105,115,46,105,115,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,61,101,46,100,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,124,124,118,111,105,100,32,48,61,61,61,101,46,100,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,38,38,33,49,61,61,61,101,46,114,101,116,117,114,110,86,97,108,117,101,63,107,101,58,83,101,44,116,104,105,115,46,116,97,114,103,101,116,61,101,46,116,97,114,103,101,116,38,38,51,61,61,61,101,46,116,97,114,103,101,116,46,110,111,100,101,84,121,112,101,63,101,46,116,97,114,103,101,116,46,112,97,114,101,110,116,78,111,100,101,58,101,46,116,97,114,103,101,116,44,116,104,105,115,46,99,117,114,114,101,110,116,84,97,114,103,101,116,61,101,46,99,117,114,114,101,110,116,84,97,114,103,101,116,44,116,104,105,115,46,114,101,108,97,116,101,100,84,97,114,103,101,116,61,101,46,114,101,108,97,116,101,100,84,97,114,103,101,116,41,58,116,104,105,115,46,116,121,112,101,61,101,44,116,38,38,107,46,101,120,116,101,110,100,40,116,104,105,115,44,116,41,44,116,104,105,115,46,116,105,109,101,83,116,97,109,112,61,101,38,38,101,46,116,105,109,101,83,116,97,109,112,124,124,68,97,116,101,46,110,111,119,40,41,44,116,104,105,115,91,107,46,101,120,112,97,110,100,111,93,61,33,48,125,44,107,46,69,118,101,110,116,46,112,114,111,116,111,116,121,112,101,61,123,99,111,110,115,116,114,117,99,116,111,114,58,107,46,69,118,101,110,116,44,105,115,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,58,83,101,44,105,115,80,114,111,112,97,103,97,116,105,111,110,83,116,111,112,112,101,100,58,83,101,44,105,115,73,109,109,101,100,105,97,116,101,80,114,111,112,97,103,97,116,105,111,110,83,116,111,112,112,101,100,58,83,101,44,105,115,83,105,109,117,108,97,116,101,100,58,33,49,44,112,114,101,118,101,110,116,68,101,102,97,117,108,116,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,111,114,105,103,105,110,97,108,69,118,101,110,116,59,116,104,105,115,46,105,115,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,61,107,101,44,101,38,38,33,116,104,105,115,46,105,115,83,105,109,117,108,97,116,101,100,38,38,101,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,125,44,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,111,114,105,103,105,110,97,108,69,118,101,110,116,59,116,104,105,115,46,105,115,80,114,111,112,97,103,97,116,105,111,110,83,116,111,112,112,101,100,61,107,101,44,101,38,38,33,116,104,105,115,46,105,115,83,105,109,117,108,97,116,101,100,38,38,101,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,125,44,115,116,111,112,73,109,109,101,100,105,97,116,101,80,114,111,112,97,103,97,116,105,111,110,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,111,114,105,103,105,110,97,108,69,118,101,110,116,59,116,104,105,115,46,105,115,73,109,109,101,100,105,97,116,101,80,114,111,112,97,103,97,116,105,111,110,83,116,111,112,112,101,100,61,107,101,44,101,38,38,33,116,104,105,115,46,105,115,83,105,109,117,108,97,116,101,100,38,38,101,46,115,116,111,112,73,109,109,101,100,105,97,116,101,80,114,111,112,97,103,97,116,105,111,110,40,41,44,116,104,105,115,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,125,125,44,107,46,101,97,99,104,40,123,97,108,116,75,101,121,58,33,48,44,98,117,98,98,108,101,115,58,33,48,44,99,97,110,99,101,108,97,98,108,101,58,33,48,44,99,104,97,110,103,101,100,84,111,117,99,104,101,115,58,33,48,44,99,116,114,108,75,101,121,58,33,48,44,100,101,116,97,105,108,58,33,48,44,101,118,101,110,116,80,104,97,115,101,58,33,48,44,109,101,116,97,75,101,121,58,33,48,44,112,97,103,101,88,58,33,48,44,112,97,103,101,89,58,33,48,44,115,104,105,102,116,75,101,121,58,33,48,44,118,105,101,119,58,33,48,44,34,99,104,97,114,34,58,33,48,44,99,111,100,101,58,33,48,44,99,104,97,114,67,111,100,101,58,33,48,44,107,101,121,58,33,48,44,107,101,121,67,111,100,101,58,33,48,44,98,117,116,116,111,110,58,33,48,44,98,117,116,116,111,110,115,58,33,48,44,99,108,105,101,110,116,88,58,33,48,44,99,108,105,101,110,116,89,58,33,48,44,111,102,102,115,101,116,88,58,33,48,44,111,102,102,115,101,116,89,58,33,48,44,112,111,105,110,116,101,114,73,100,58,33,48,44,112,111,105,110,116,101,114,84,121,112,101,58,33,48,44,115,99,114,101,101,110,88,58,33,48,44,115,99,114,101,101,110,89,58,33,48,44,116,97,114,103,101,116,84,111,117,99,104,101,115,58,33,48,44,116,111,69,108,101,109,101,110,116,58,33,48,44,116,111,117,99,104,101,115,58,33,48,44,119,104,105,99,104,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,46,98,117,116,116,111,110,59,114,101,116,117,114,110,32,110,117,108,108,61,61,101,46,119,104,105,99,104,38,38,84,101,46,116,101,115,116,40,101,46,116,121,112,101,41,63,110,117,108,108,33,61,101,46,99,104,97,114,67,111,100,101,63,101,46,99,104,97,114,67,111,100,101,58,101,46,107,101,121,67,111,100,101,58,33,101,46,119,104,105,99,104,38,38,118,111,105,100,32,48,33,61,61,116,38,38,67,101,46,116,101,115,116,40,101,46,116,121,112,101,41,63,49,38,116,63,49,58,50,38,116,63,51,58,52,38,116,63,50,58,48,58,101,46,119,104,105,99,104,125,125,44,107,46,101,118,101,110,116,46,97,100,100,80,114,111,112,41,44,107,46,101,97,99,104,40,123,102,111,99,117,115,58,34,102,111,99,117,115,105,110,34,44,98,108,117,114,58,34,102,111,99,117,115,111,117,116,34,125,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,107,46,101,118,101,110,116,46,115,112,101,99,105,97,108,91,101,93,61,123,115,101,116,117,112,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,68,101,40,116,104,105,115,44,101,44,78,101,41,44,33,49,125,44,116,114,105,103,103,101,114,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,68,101,40,116,104,105,115,44,101,41,44,33,48,125,44,100,101,108,101,103,97,116,101,84,121,112,101,58,116,125,125,41,44,107,46,101,97,99,104,40,123,109,111,117,115,101,101,110,116,101,114,58,34,109,111,117,115,101,111,118,101,114,34,44,109,111,117,115,101,108,101,97,118,101,58,34,109,111,117,115,101,111,117,116,34,44,112,111,105,110,116,101,114,101,110,116,101,114,58,34,112,111,105,110,116,101,114,111,118,101,114,34,44,112,111,105,110,116,101,114,108,101,97,118,101,58,34,112,111,105,110,116,101,114,111,117,116,34,125,44,102,117,110,99,116,105,111,110,40,101,44,105,41,123,107,46,101,118,101,110,116,46,115,112,101,99,105,97,108,91,101,93,61,123,100,101,108,101,103,97,116,101,84,121,112,101,58,105,44,98,105,110,100,84,121,112,101,58,105,44,104,97,110,100,108,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,44,110,61,101,46,114,101,108,97,116,101,100,84,97,114,103,101,116,44,114,61,101,46,104,97,110,100,108,101,79,98,106,59,114,101,116,117,114,110,32,110,38,38,40,110,61,61,61,116,104,105,115,124,124,107,46,99,111,110,116,97,105,110,115,40,116,104,105,115,44,110,41,41,124,124,40,101,46,116,121,112,101,61,114,46,111,114,105,103,84,121,112,101,44,116,61,114,46,104,97,110,100,108,101,114,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,44,101,46,116,121,112,101,61,105,41,44,116,125,125,125,41,44,107,46,102,110,46,101,120,116,101,110,100,40,123,111,110,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,114,41,123,114,101,116,117,114,110,32,65,101,40,116,104,105,115,44,101,44,116,44,110,44,114,41,125,44,111,110,101,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,114,41,123,114,101,116,117,114,110,32,65,101,40,116,104,105,115,44,101,44,116,44,110,44,114,44,49,41,125,44,111,102,102,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,44,105,59,105,102,40,101,38,38,101,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,38,38,101,46,104,97,110,100,108,101,79,98,106,41,114,101,116,117,114,110,32,114,61,101,46,104,97,110,100,108,101,79,98,106,44,107,40,101,46,100,101,108,101,103,97,116,101,84,97,114,103,101,116,41,46,111,102,102,40,114,46,110,97,109,101,115,112,97,99,101,63,114,46,111,114,105,103,84,121,112,101,43,34,46,34,43,114,46,110,97,109,101,115,112,97,99,101,58,114,46,111,114,105,103,84,121,112,101,44,114,46,115,101,108,101,99,116,111,114,44,114,46,104,97,110,100,108,101,114,41,44,116,104,105,115,59,105,102,40,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,101,41,123,102,111,114,40,105,32,105,110,32,101,41,116,104,105,115,46,111,102,102,40,105,44,116,44,101,91,105,93,41,59,114,101,116,117,114,110,32,116,104,105,115,125,114,101,116,117,114,110,33,49,33,61,61,116,38,38,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,116,124,124,40,110,61,116,44,116,61,118,111,105,100,32,48,41,44,33,49,61,61,61,110,38,38,40,110,61,83,101,41,44,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,107,46,101,118,101,110,116,46,114,101,109,111,118,101,40,116,104,105,115,44,101,44,110,44,116,41,125,41,125,125,41,59,118,97,114,32,106,101,61,47,60,40,63,33,97,114,101,97,124,98,114,124,99,111,108,124,101,109,98,101,100,124,104,114,124,105,109,103,124,105,110,112,117,116,124,108,105,110,107,124,109,101,116,97,124,112,97,114,97,109,41,40,40,91,97,45,122,93,91,94,92,47,92,48,62,92,120,50,48,92,116,92,114,92,110,92,102,93,42,41,91,94,62,93,42,41,92,47,62,47,103,105,44,113,101,61,47,60,115,99,114,105,112,116,124,60,115,116,121,108,101,124,60,108,105,110,107,47,105,44,76,101,61,47,99,104,101,99,107,101,100,92,115,42,40,63,58,91,94,61,93,124,61,92,115,42,46,99,104,101,99,107,101,100,46,41,47,105,44,72,101,61,47,94,92,115,42,60,33,40,63,58,92,91,67,68,65,84,65,92,91,124,45,45,41,124,40,63,58,92,93,92,93,124,45,45,41,62,92,115,42,36,47,103,59,102,117,110,99,116,105,111,110,32,79,101,40,101,44,116,41,123,114,101,116,117,114,110,32,65,40,101,44,34,116,97,98,108,101,34,41,38,38,65,40,49,49,33,61,61,116,46,110,111,100,101,84,121,112,101,63,116,58,116,46,102,105,114,115,116,67,104,105,108,100,44,34,116,114,34,41,38,38,107,40,101,41,46,99,104,105,108,100,114,101,110,40,34,116,98,111,100,121,34,41,91,48,93,124,124,101,125,102,117,110,99,116,105,111,110,32,80,101,40,101,41,123,114,101,116,117,114,110,32,101,46,116,121,112,101,61,40,110,117,108,108,33,61,61,101,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,116,121,112,101,34,41,41,43,34,47,34,43,101,46,116,121,112,101,44,101,125,102,117,110,99,116,105,111,110,32,82,101,40,101,41,123,114,101,116,117,114,110,34,116,114,117,101,47,34,61,61,61,40,101,46,116,121,112,101,124,124,34,34,41,46,115,108,105,99,101,40,48,44,53,41,63,101,46,116,121,112,101,61,101,46,116,121,112,101,46,115,108,105,99,101,40,53,41,58,101,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,40,34,116,121,112,101,34,41,44,101,125,102,117,110,99,116,105,111,110,32,77,101,40,101,44,116,41,123,118,97,114,32,110,44,114,44,105,44,111,44,97,44,115,44,117,44,108,59,105,102,40,49,61,61,61,116,46,110,111,100,101,84,121,112,101,41,123,105,102,40,81,46,104,97,115,68,97,116,97,40,101,41,38,38,40,111,61,81,46,97,99,99,101,115,115,40,101,41,44,97,61,81,46,115,101,116,40,116,44,111,41,44,108,61,111,46,101,118,101,110,116,115,41,41,102,111,114,40,105,32,105,110,32,100,101,108,101,116,101,32,97,46,104,97,110,100,108,101,44,97,46,101,118,101,110,116,115,61,123,125,44,108,41,102,111,114,40,110,61,48,44,114,61,108,91,105,93,46,108,101,110,103,116,104,59,110,60,114,59,110,43,43,41,107,46,101,118,101,110,116,46,97,100,100,40,116,44,105,44,108,91,105,93,91,110,93,41,59,74,46,104,97,115,68,97,116,97,40,101,41,38,38,40,115,61,74,46,97,99,99,101,115,115,40,101,41,44,117,61,107,46,101,120,116,101,110,100,40,123,125,44,115,41,44,74,46,115,101,116,40,116,44,117,41,41,125,125,102,117,110,99,116,105,111,110,32,73,101,40,110,44,114,44,105,44,111,41,123,114,61,103,46,97,112,112,108,121,40,91,93,44,114,41,59,118,97,114,32,101,44,116,44,97,44,115,44,117,44,108,44,99,61,48,44,102,61,110,46,108,101,110,103,116,104,44,112,61,102,45,49,44,100,61,114,91,48,93,44,104,61,109,40,100,41,59,105,102,40,104,124,124,49,60,102,38,38,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,100,38,38,33,121,46,99,104,101,99,107,67,108,111,110,101,38,38,76,101,46,116,101,115,116,40,100,41,41,114,101,116,117,114,110,32,110,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,110,46,101,113,40,101,41,59,104,38,38,40,114,91,48,93,61,100,46,99,97,108,108,40,116,104,105,115,44,101,44,116,46,104,116,109,108,40,41,41,41,44,73,101,40,116,44,114,44,105,44,111,41,125,41,59,105,102,40,102,38,38,40,116,61,40,101,61,119,101,40,114,44,110,91,48,93,46,111,119,110,101,114,68,111,99,117,109,101,110,116,44,33,49,44,110,44,111,41,41,46,102,105,114,115,116,67,104,105,108,100,44,49,61,61,61,101,46,99,104,105,108,100,78,111,100,101,115,46,108,101,110,103,116,104,38,38,40,101,61,116,41,44,116,124,124,111,41,41,123,102,111,114,40,115,61,40,97,61,107,46,109,97,112,40,118,101,40,101,44,34,115,99,114,105,112,116,34,41,44,80,101,41,41,46,108,101,110,103,116,104,59,99,60,102,59,99,43,43,41,117,61,101,44,99,33,61,61,112,38,38,40,117,61,107,46,99,108,111,110,101,40,117,44,33,48,44,33,48,41,44,115,38,38,107,46,109,101,114,103,101,40,97,44,118,101,40,117,44,34,115,99,114,105,112,116,34,41,41,41,44,105,46,99,97,108,108,40,110,91,99,93,44,117,44,99,41,59,105,102,40,115,41,102,111,114,40,108,61,97,91,97,46,108,101,110,103,116,104,45,49,93,46,111,119,110,101,114,68,111,99,117,109,101,110,116,44,107,46,109,97,112,40,97,44,82,101,41,44,99,61,48,59,99,60,115,59,99,43,43,41,117,61,97,91,99,93,44,104,101,46,116,101,115,116,40,117,46,116,121,112,101,124,124,34,34,41,38,38,33,81,46,97,99,99,101,115,115,40,117,44,34,103,108,111,98,97,108,69,118,97,108,34,41,38,38,107,46,99,111,110,116,97,105,110,115,40,108,44,117,41,38,38,40,117,46,115,114,99,38,38,34,109,111,100,117,108,101,34,33,61,61,40,117,46,116,121,112,101,124,124,34,34,41,46,116,111,76,111,119,101,114,67,97,115,101,40,41,63,107,46,95,101,118,97,108,85,114,108,38,38,33,117,46,110,111,77,111,100,117,108,101,38,38,107,46,95,101,118,97,108,85,114,108,40,117,46,115,114,99,44,123,110,111,110,99,101,58,117,46,110,111,110,99,101,124,124,117,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,110,111,110,99,101,34,41,125,41,58,98,40,117,46,116,101,120,116,67,111,110,116,101,110,116,46,114,101,112,108,97,99,101,40,72,101,44,34,34,41,44,117,44,108,41,41,125,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,87,101,40,101,44,116,44,110,41,123,102,111,114,40,118,97,114,32,114,44,105,61,116,63,107,46,102,105,108,116,101,114,40,116,44,101,41,58,101,44,111,61,48,59,110,117,108,108,33,61,40,114,61,105,91,111,93,41,59,111,43,43,41,110,124,124,49,33,61,61,114,46,110,111,100,101,84,121,112,101,124,124,107,46,99,108,101,97,110,68,97,116,97,40,118,101,40,114,41,41,44,114,46,112,97,114,101,110,116,78,111,100,101,38,38,40,110,38,38,111,101,40,114,41,38,38,121,101,40,118,101,40,114,44,34,115,99,114,105,112,116,34,41,41,44,114,46,112,97,114,101,110,116,78,111,100,101,46,114,101,109,111,118,101,67,104,105,108,100,40,114,41,41,59,114,101,116,117,114,110,32,101,125,107,46,101,120,116,101,110,100,40,123,104,116,109,108,80,114,101,102,105,108,116,101,114,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,46,114,101,112,108,97,99,101,40,106,101,44,34,60,36,49,62,60,47,36,50,62,34,41,125,44,99,108,111,110,101,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,44,105,44,111,44,97,44,115,44,117,44,108,44,99,61,101,46,99,108,111,110,101,78,111,100,101,40,33,48,41,44,102,61,111,101,40,101,41,59,105,102,40,33,40,121,46,110,111,67,108,111,110,101,67,104,101,99,107,101,100,124,124,49,33,61,61,101,46,110,111,100,101,84,121,112,101,38,38,49,49,33,61,61,101,46,110,111,100,101,84,121,112,101,124,124,107,46,105,115,88,77,76,68,111,99,40,101,41,41,41,102,111,114,40,97,61,118,101,40,99,41,44,114,61,48,44,105,61,40,111,61,118,101,40,101,41,41,46,108,101,110,103,116,104,59,114,60,105,59,114,43,43,41,115,61,111,91,114,93,44,117,61,97,91,114,93,44,118,111,105,100,32,48,44,34,105,110,112,117,116,34,61,61,61,40,108,61,117,46,110,111,100,101,78,97,109,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,41,38,38,112,101,46,116,101,115,116,40,115,46,116,121,112,101,41,63,117,46,99,104,101,99,107,101,100,61,115,46,99,104,101,99,107,101,100,58,34,105,110,112,117,116,34,33,61,61,108,38,38,34,116,101,120,116,97,114,101,97,34,33,61,61,108,124,124,40,117,46,100,101,102,97,117,108,116,86,97,108,117,101,61,115,46,100,101,102,97,117,108,116,86,97,108,117,101,41,59,105,102,40,116,41,105,102,40,110,41,102,111,114,40,111,61,111,124,124,118,101,40,101,41,44,97,61,97,124,124,118,101,40,99,41,44,114,61,48,44,105,61,111,46,108,101,110,103,116,104,59,114,60,105,59,114,43,43,41,77,101,40,111,91,114,93,44,97,91,114,93,41,59,101,108,115,101,32,77,101,40,101,44,99,41,59,114,101,116,117,114,110,32,48,60,40,97,61,118,101,40,99,44,34,115,99,114,105,112,116,34,41,41,46,108,101,110,103,116,104,38,38,121,101,40,97,44,33,102,38,38,118,101,40,101,44,34,115,99,114,105,112,116,34,41,41,44,99,125,44,99,108,101,97,110,68,97,116,97,58,102,117,110,99,116,105,111,110,40,101,41,123,102,111,114,40,118,97,114,32,116,44,110,44,114,44,105,61,107,46,101,118,101,110,116,46,115,112,101,99,105,97,108,44,111,61,48,59,118,111,105,100,32,48,33,61,61,40,110,61,101,91,111,93,41,59,111,43,43,41,105,102,40,71,40,110,41,41,123,105,102,40,116,61,110,91,81,46,101,120,112,97,110,100,111,93,41,123,105,102,40,116,46,101,118,101,110,116,115,41,102,111,114,40,114,32,105,110,32,116,46,101,118,101,110,116,115,41,105,91,114,93,63,107,46,101,118,101,110,116,46,114,101,109,111,118,101,40,110,44,114,41,58,107,46,114,101,109,111,118,101,69,118,101,110,116,40,110,44,114,44,116,46,104,97,110,100,108,101,41,59,110,91,81,46,101,120,112,97,110,100,111,93,61,118,111,105,100,32,48,125,110,91,74,46,101,120,112,97,110,100,111,93,38,38,40,110,91,74,46,101,120,112,97,110,100,111,93,61,118,111,105,100,32,48,41,125,125,125,41,44,107,46,102,110,46,101,120,116,101,110,100,40,123,100,101,116,97,99,104,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,87,101,40,116,104,105,115,44,101,44,33,48,41,125,44,114,101,109,111,118,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,87,101,40,116,104,105,115,44,101,41,125,44,116,101,120,116,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,95,40,116,104,105,115,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,118,111,105,100,32,48,61,61,61,101,63,107,46,116,101,120,116,40,116,104,105,115,41,58,116,104,105,115,46,101,109,112,116,121,40,41,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,49,33,61,61,116,104,105,115,46,110,111,100,101,84,121,112,101,38,38,49,49,33,61,61,116,104,105,115,46,110,111,100,101,84,121,112,101,38,38,57,33,61,61,116,104,105,115,46,110,111,100,101,84,121,112,101,124,124,40,116,104,105,115,46,116,101,120,116,67,111,110,116,101,110,116,61,101,41,125,41,125,44,110,117,108,108,44,101,44,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,125,44,97,112,112,101,110,100,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,73,101,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,44,102,117,110,99,116,105,111,110,40,101,41,123,49,33,61,61,116,104,105,115,46,110,111,100,101,84,121,112,101,38,38,49,49,33,61,61,116,104,105,115,46,110,111,100,101,84,121,112,101,38,38,57,33,61,61,116,104,105,115,46,110,111,100,101,84,121,112,101,124,124,79,101,40,116,104,105,115,44,101,41,46,97,112,112,101,110,100,67,104,105,108,100,40,101,41,125,41,125,44,112,114,101,112,101,110,100,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,73,101,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,44,102,117,110,99,116,105,111,110,40,101,41,123,105,102,40,49,61,61,61,116,104,105,115,46,110,111,100,101,84,121,112,101,124,124,49,49,61,61,61,116,104,105,115,46,110,111,100,101,84,121,112,101,124,124,57,61,61,61,116,104,105,115,46,110,111,100,101,84,121,112,101,41,123,118,97,114,32,116,61,79,101,40,116,104,105,115,44,101,41,59,116,46,105,110,115,101,114,116,66,101,102,111,114,101,40,101,44,116,46,102,105,114,115,116,67,104,105,108,100,41,125,125,41,125,44,98,101,102,111,114,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,73,101,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,44,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,112,97,114,101,110,116,78,111,100,101,38,38,116,104,105,115,46,112,97,114,101,110,116,78,111,100,101,46,105,110,115,101,114,116,66,101,102,111,114,101,40,101,44,116,104,105,115,41,125,41,125,44,97,102,116,101,114,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,73,101,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,44,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,112,97,114,101,110,116,78,111,100,101,38,38,116,104,105,115,46,112,97,114,101,110,116,78,111,100,101,46,105,110,115,101,114,116,66,101,102,111,114,101,40,101,44,116,104,105,115,46,110,101,120,116,83,105,98,108,105,110,103,41,125,41,125,44,101,109,112,116,121,58,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,118,97,114,32,101,44,116,61,48,59,110,117,108,108,33,61,40,101,61,116,104,105,115,91,116,93,41,59,116,43,43,41,49,61,61,61,101,46,110,111,100,101,84,121,112,101,38,38,40,107,46,99,108,101,97,110,68,97,116,97,40,118,101,40,101,44,33,49,41,41,44,101,46,116,101,120,116,67,111,110,116,101,110,116,61,34,34,41,59,114,101,116,117,114,110,32,116,104,105,115,125,44,99,108,111,110,101,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,101,61,110,117,108,108,33,61,101,38,38,101,44,116,61,110,117,108,108,61,61,116,63,101,58,116,44,116,104,105,115,46,109,97,112,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,107,46,99,108,111,110,101,40,116,104,105,115,44,101,44,116,41,125,41,125,44,104,116,109,108,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,95,40,116,104,105,115,44,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,116,104,105,115,91,48,93,124,124,123,125,44,110,61,48,44,114,61,116,104,105,115,46,108,101,110,103,116,104,59,105,102,40,118,111,105,100,32,48,61,61,61,101,38,38,49,61,61,61,116,46,110,111,100,101,84,121,112,101,41,114,101,116,117,114,110,32,116,46,105,110,110,101,114,72,84,77,76,59,105,102,40,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,101,38,38,33,113,101,46,116,101,115,116,40,101,41,38,38,33,103,101,91,40,100,101,46,101,120,101,99,40,101,41,124,124,91,34,34,44,34,34,93,41,91,49,93,46,116,111,76,111,119,101,114,67,97,115,101,40,41,93,41,123,101,61,107,46,104,116,109,108,80,114,101,102,105,108,116,101,114,40,101,41,59,116,114,121,123,102,111,114,40,59,110,60,114,59,110,43,43,41,49,61,61,61,40,116,61,116,104,105,115,91,110,93,124,124,123,125,41,46,110,111,100,101,84,121,112,101,38,38,40,107,46,99,108,101,97,110,68,97,116,97,40,118,101,40,116,44,33,49,41,41,44,116,46,105,110,110,101,114,72,84,77,76,61,101,41,59,116,61,48,125,99,97,116,99,104,40,101,41,123,125,125,116,38,38,116,104,105,115,46,101,109,112,116,121,40,41,46,97,112,112,101,110,100,40,101,41,125,44,110,117,108,108,44,101,44,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,125,44,114,101,112,108,97,99,101,87,105,116,104,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,110,61,91,93,59,114,101,116,117,114,110,32,73,101,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,44,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,116,104,105,115,46,112,97,114,101,110,116,78,111,100,101,59,107,46,105,110,65,114,114,97,121,40,116,104,105,115,44,110,41,60,48,38,38,40,107,46,99,108,101,97,110,68,97,116,97,40,118,101,40,116,104,105,115,41,41,44,116,38,38,116,46,114,101,112,108,97,99,101,67,104,105,108,100,40,101,44,116,104,105,115,41,41,125,44,110,41,125,125,41,44,107,46,101,97,99,104,40,123,97,112,112,101,110,100,84,111,58,34,97,112,112,101,110,100,34,44,112,114,101,112,101,110,100,84,111,58,34,112,114,101,112,101,110,100,34,44,105,110,115,101,114,116,66,101,102,111,114,101,58,34,98,101,102,111,114,101,34,44,105,110,115,101,114,116,65,102,116,101,114,58,34,97,102,116,101,114,34,44,114,101,112,108,97,99,101,65,108,108,58,34,114,101,112,108,97,99,101,87,105,116,104,34,125,44,102,117,110,99,116,105,111,110,40,101,44,97,41,123,107,46,102,110,91,101,93,61,102,117,110,99,116,105,111,110,40,101,41,123,102,111,114,40,118,97,114,32,116,44,110,61,91,93,44,114,61,107,40,101,41,44,105,61,114,46,108,101,110,103,116,104,45,49,44,111,61,48,59,111,60,61,105,59,111,43,43,41,116,61,111,61,61,61,105,63,116,104,105,115,58,116,104,105,115,46,99,108,111,110,101,40,33,48,41,44,107,40,114,91,111,93,41,91,97,93,40,116,41,44,117,46,97,112,112,108,121,40,110,44,116,46,103,101,116,40,41,41,59,114,101,116,117,114,110,32,116,104,105,115,46,112,117,115,104,83,116,97,99,107,40,110,41,125,125,41,59,118,97,114,32,36,101,61,110,101,119,32,82,101,103,69,120,112,40,34,94,40,34,43,116,101,43,34,41,40,63,33,112,120,41,91,97,45,122,37,93,43,36,34,44,34,105,34,41,44,70,101,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,46,111,119,110,101,114,68,111,99,117,109,101,110,116,46,100,101,102,97,117,108,116,86,105,101,119,59,114,101,116,117,114,110,32,116,38,38,116,46,111,112,101,110,101,114,124,124,40,116,61,67,41,44,116,46,103,101,116,67,111,109,112,117,116,101,100,83,116,121,108,101,40,101,41,125,44,66,101,61,110,101,119,32,82,101,103,69,120,112,40,114,101,46,106,111,105,110,40,34,124,34,41,44,34,105,34,41,59,102,117,110,99,116,105,111,110,32,95,101,40,101,44,116,44,110,41,123,118,97,114,32,114,44,105,44,111,44,97,44,115,61,101,46,115,116,121,108,101,59,114,101,116,117,114,110,40,110,61,110,124,124,70,101,40,101,41,41,38,38,40,34,34,33,61,61,40,97,61,110,46,103,101,116,80,114,111,112,101,114,116,121,86,97,108,117,101,40,116,41,124,124,110,91,116,93,41,124,124,111,101,40,101,41,124,124,40,97,61,107,46,115,116,121,108,101,40,101,44,116,41,41,44,33,121,46,112,105,120,101,108,66,111,120,83,116,121,108,101,115,40,41,38,38,36,101,46,116,101,115,116,40,97,41,38,38,66,101,46,116,101,115,116,40,116,41,38,38,40,114,61,115,46,119,105,100,116,104,44,105,61,115,46,109,105,110,87,105,100,116,104,44,111,61,115,46,109,97,120,87,105,100,116,104,44,115,46,109,105,110,87,105,100,116,104,61,115,46,109,97,120,87,105,100,116,104,61,115,46,119,105,100,116,104,61,97,44,97,61,110,46,119,105,100,116,104,44,115,46,119,105,100,116,104,61,114,44,115,46,109,105,110,87,105,100,116,104,61,105,44,115,46,109,97,120,87,105,100,116,104,61,111,41,41,44,118,111,105,100,32,48,33,61,61,97,63,97,43,34,34,58,97,125,102,117,110,99,116,105,111,110,32,122,101,40,101,44,116,41,123,114,101,116,117,114,110,123,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,105,102,40,33,101,40,41,41,114,101,116,117,114,110,40,116,104,105,115,46,103,101,116,61,116,41,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,59,100,101,108,101,116,101,32,116,104,105,115,46,103,101,116,125,125,125,33,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,101,40,41,123,105,102,40,117,41,123,115,46,115,116,121,108,101,46,99,115,115,84,101,120,116,61,34,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,108,101,102,116,58,45,49,49,49,49,49,112,120,59,119,105,100,116,104,58,54,48,112,120,59,109,97,114,103,105,110,45,116,111,112,58,49,112,120,59,112,97,100,100,105,110,103,58,48,59,98,111,114,100,101,114,58,48,34,44,117,46,115,116,121,108,101,46,99,115,115,84,101,120,116,61,34,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,98,111,120,45,115,105,122,105,110,103,58,98,111,114,100,101,114,45,98,111,120,59,111,118,101,114,102,108,111,119,58,115,99,114,111,108,108,59,109,97,114,103,105,110,58,97,117,116,111,59,98,111,114,100,101,114,58,49,112,120,59,112,97,100,100,105,110,103,58,49,112,120,59,119,105,100,116,104,58,54,48,37,59,116,111,112,58,49,37,34,44,105,101,46,97,112,112,101,110,100,67,104,105,108,100,40,115,41,46,97,112,112,101,110,100,67,104,105,108,100,40,117,41,59,118,97,114,32,101,61,67,46,103,101,116,67,111,109,112,117,116,101,100,83,116,121,108,101,40,117,41,59,110,61,34,49,37,34,33,61,61,101,46,116,111,112,44,97,61,49,50,61,61,61,116,40,101,46,109,97,114,103,105,110,76,101,102,116,41,44,117,46,115,116,121,108,101,46,114,105,103,104,116,61,34,54,48,37,34,44,111,61,51,54,61,61,61,116,40,101,46,114,105,103,104,116,41,44,114,61,51,54,61,61,61,116,40,101,46,119,105,100,116,104,41,44,117,46,115,116,121,108,101,46,112,111,115,105,116,105,111,110,61,34,97,98,115,111,108,117,116,101,34,44,105,61,49,50,61,61,61,116,40,117,46,111,102,102,115,101,116,87,105,100,116,104,47,51,41,44,105,101,46,114,101,109,111,118,101,67,104,105,108,100,40,115,41,44,117,61,110,117,108,108,125,125,102,117,110,99,116,105,111,110,32,116,40,101,41,123,114,101,116,117,114,110,32,77,97,116,104,46,114,111,117,110,100,40,112,97,114,115,101,70,108,111,97,116,40,101,41,41,125,118,97,114,32,110,44,114,44,105,44,111,44,97,44,115,61,69,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,44,117,61,69,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,117,46,115,116,121,108,101,38,38,40,117,46,115,116,121,108,101,46,98,97,99,107,103,114,111,117,110,100,67,108,105,112,61,34,99,111,110,116,101,110,116,45,98,111,120,34,44,117,46,99,108,111,110,101,78,111,100,101,40,33,48,41,46,115,116,121,108,101,46,98,97,99,107,103,114,111,117,110,100,67,108,105,112,61,34,34,44,121,46,99,108,101,97,114,67,108,111,110,101,83,116,121,108,101,61,34,99,111,110,116,101,110,116,45,98,111,120,34,61,61,61,117,46,115,116,121,108,101,46,98,97,99,107,103,114,111,117,110,100,67,108,105,112,44,107,46,101,120,116,101,110,100,40,121,44,123,98,111,120,83,105,122,105,110,103,82,101,108,105,97,98,108,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,101,40,41,44,114,125,44,112,105,120,101,108,66,111,120,83,116,121,108,101,115,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,101,40,41,44,111,125,44,112,105,120,101,108,80,111,115,105,116,105,111,110,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,101,40,41,44,110,125,44,114,101,108,105,97,98,108,101,77,97,114,103,105,110,76,101,102,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,101,40,41,44,97,125,44,115,99,114,111,108,108,98,111,120,83,105,122,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,101,40,41,44,105,125,125,41,41,125,40,41,59,118,97,114,32,85,101,61,91,34,87,101,98,107,105,116,34,44,34,77,111,122,34,44,34,109,115,34,93,44,88,101,61,69,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,46,115,116,121,108,101,44,86,101,61,123,125,59,102,117,110,99,116,105,111,110,32,71,101,40,101,41,123,118,97,114,32,116,61,107,46,99,115,115,80,114,111,112,115,91,101,93,124,124,86,101,91,101,93,59,114,101,116,117,114,110,32,116,124,124,40,101,32,105,110,32,88,101,63,101,58,86,101,91,101,93,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,91,48,93,46,116,111,85,112,112,101,114,67,97,115,101,40,41,43,101,46,115,108,105,99,101,40,49,41,44,110,61,85,101,46,108,101,110,103,116,104,59,119,104,105,108,101,40,110,45,45,41,105,102,40,40,101,61,85,101,91,110,93,43,116,41,105,110,32,88,101,41,114,101,116,117,114,110,32,101,125,40,101,41,124,124,101,41,125,118,97,114,32,89,101,61,47,94,40,110,111,110,101,124,116,97,98,108,101,40,63,33,45,99,91,101,97,93,41,46,43,41,47,44,81,101,61,47,94,45,45,47,44,74,101,61,123,112,111,115,105,116,105,111,110,58,34,97,98,115,111,108,117,116,101,34,44,118,105,115,105,98,105,108,105,116,121,58,34,104,105,100,100,101,110,34,44,100,105,115,112,108,97,121,58,34,98,108,111,99,107,34,125,44,75,101,61,123,108,101,116,116,101,114,83,112,97,99,105,110,103,58,34,48,34,44,102,111,110,116,87,101,105,103,104,116,58,34,52,48,48,34,125,59,102,117,110,99,116,105,111,110,32,90,101,40,101,44,116,44,110,41,123,118,97,114,32,114,61,110,101,46,101,120,101,99,40,116,41,59,114,101,116,117,114,110,32,114,63,77,97,116,104,46,109,97,120,40,48,44,114,91,50,93,45,40,110,124,124,48,41,41,43,40,114,91,51,93,124,124,34,112,120,34,41,58,116,125,102,117,110,99,116,105,111,110,32,101,116,40,101,44,116,44,110,44,114,44,105,44,111,41,123,118,97,114,32,97,61,34,119,105,100,116,104,34,61,61,61,116,63,49,58,48,44,115,61,48,44,117,61,48,59,105,102,40,110,61,61,61,40,114,63,34,98,111,114,100,101,114,34,58,34,99,111,110,116,101,110,116,34,41,41,114,101,116,117,114,110,32,48,59,102,111,114,40,59,97,60,52,59,97,43,61,50,41,34,109,97,114,103,105,110,34,61,61,61,110,38,38,40,117,43,61,107,46,99,115,115,40,101,44,110,43,114,101,91,97,93,44,33,48,44,105,41,41,44,114,63,40,34,99,111,110,116,101,110,116,34,61,61,61,110,38,38,40,117,45,61,107,46,99,115,115,40,101,44,34,112,97,100,100,105,110,103,34,43,114,101,91,97,93,44,33,48,44,105,41,41,44,34,109,97,114,103,105,110,34,33,61,61,110,38,38,40,117,45,61,107,46,99,115,115,40,101,44,34,98,111,114,100,101,114,34,43,114,101,91,97,93,43,34,87,105,100,116,104,34,44,33,48,44,105,41,41,41,58,40,117,43,61,107,46,99,115,115,40,101,44,34,112,97,100,100,105,110,103,34,43,114,101,91,97,93,44,33,48,44,105,41,44,34,112,97,100,100,105,110,103,34,33,61,61,110,63,117,43,61,107,46,99,115,115,40,101,44,34,98,111,114,100,101,114,34,43,114,101,91,97,93,43,34,87,105,100,116,104,34,44,33,48,44,105,41,58,115,43,61,107,46,99,115,115,40,101,44,34,98,111,114,100,101,114,34,43,114,101,91,97,93,43,34,87,105,100,116,104,34,44,33,48,44,105,41,41,59,114,101,116,117,114,110,33,114,38,38,48,60,61,111,38,38,40,117,43,61,77,97,116,104,46,109,97,120,40,48,44,77,97,116,104,46,99,101,105,108,40,101,91,34,111,102,102,115,101,116,34,43,116,91,48,93,46,116,111,85,112,112,101,114,67,97,115,101,40,41,43,116,46,115,108,105,99,101,40,49,41,93,45,111,45,117,45,115,45,46,53,41,41,124,124,48,41,44,117,125,102,117,110,99,116,105,111,110,32,116,116,40,101,44,116,44,110,41,123,118,97,114,32,114,61,70,101,40,101,41,44,105,61,40,33,121,46,98,111,120,83,105,122,105,110,103,82,101,108,105,97,98,108,101,40,41,124,124,110,41,38,38,34,98,111,114,100,101,114,45,98,111,120,34,61,61,61,107,46,99,115,115,40,101,44,34,98,111,120,83,105,122,105,110,103,34,44,33,49,44,114,41,44,111,61,105,44,97,61,95,101,40,101,44,116,44,114,41,44,115,61,34,111,102,102,115,101,116,34,43,116,91,48,93,46,116,111,85,112,112,101,114,67,97,115,101,40,41,43,116,46,115,108,105,99,101,40,49,41,59,105,102,40,36,101,46,116,101,115,116,40,97,41,41,123,105,102,40,33,110,41,114,101,116,117,114,110,32,97,59,97,61,34,97,117,116,111,34,125,114,101,116,117,114,110,40,33,121,46,98,111,120,83,105,122,105,110,103,82,101,108,105,97,98,108,101,40,41,38,38,105,124,124,34,97,117,116,111,34,61,61,61,97,124,124,33,112,97,114,115,101,70,108,111,97,116,40,97,41,38,38,34,105,110,108,105,110,101,34,61,61,61,107,46,99,115,115,40,101,44,34,100,105,115,112,108,97,121,34,44,33,49,44,114,41,41,38,38,101,46,103,101,116,67,108,105,101,110,116,82,101,99,116,115,40,41,46,108,101,110,103,116,104,38,38,40,105,61,34,98,111,114,100,101,114,45,98,111,120,34,61,61,61,107,46,99,115,115,40,101,44,34,98,111,120,83,105,122,105,110,103,34,44,33,49,44,114,41,44,40,111,61,115,32,105,110,32,101,41,38,38,40,97,61,101,91,115,93,41,41,44,40,97,61,112,97,114,115,101,70,108,111,97,116,40,97,41,124,124,48,41,43,101,116,40,101,44,116,44,110,124,124,40,105,63,34,98,111,114,100,101,114,34,58,34,99,111,110,116,101,110,116,34,41,44,111,44,114,44,97,41,43,34,112,120,34,125,102,117,110,99,116,105,111,110,32,110,116,40,101,44,116,44,110,44,114,44,105,41,123,114,101,116,117,114,110,32,110,101,119,32,110,116,46,112,114,111,116,111,116,121,112,101,46,105,110,105,116,40,101,44,116,44,110,44,114,44,105,41,125,107,46,101,120,116,101,110,100,40,123,99,115,115,72,111,111,107,115,58,123,111,112,97,99,105,116,121,58,123,103,101,116,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,102,40,116,41,123,118,97,114,32,110,61,95,101,40,101,44,34,111,112,97,99,105,116,121,34,41,59,114,101,116,117,114,110,34,34,61,61,61,110,63,34,49,34,58,110,125,125,125,125,44,99,115,115,78,117,109,98,101,114,58,123,97,110,105,109,97,116,105,111,110,73,116,101,114,97,116,105,111,110,67,111,117,110,116,58,33,48,44,99,111,108,117,109,110,67,111,117,110,116,58,33,48,44,102,105,108,108,79,112,97,99,105,116,121,58,33,48,44,102,108,101,120,71,114,111,119,58,33,48,44,102,108,101,120,83,104,114,105,110,107,58,33,48,44,102,111,110,116,87,101,105,103,104,116,58,33,48,44,103,114,105,100,65,114,101,97,58,33,48,44,103,114,105,100,67,111,108,117,109,110,58,33,48,44,103,114,105,100,67,111,108,117,109,110,69,110,100,58,33,48,44,103,114,105,100,67,111,108,117,109,110,83,116,97,114,116,58,33,48,44,103,114,105,100,82,111,119,58,33,48,44,103,114,105,100,82,111,119,69,110,100,58,33,48,44,103,114,105,100,82,111,119,83,116,97,114,116,58,33,48,44,108,105,110,101,72,101,105,103,104,116,58,33,48,44,111,112,97,99,105,116,121,58,33,48,44,111,114,100,101,114,58,33,48,44,111,114,112,104,97,110,115,58,33,48,44,119,105,100,111,119,115,58,33,48,44,122,73,110,100,101,120,58,33,48,44,122,111,111,109,58,33,48,125,44,99,115,115,80,114,111,112,115,58,123,125,44,115,116,121,108,101,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,114,41,123,105,102,40,101,38,38,51,33,61,61,101,46,110,111,100,101,84,121,112,101,38,38,56,33,61,61,101,46,110,111,100,101,84,121,112,101,38,38,101,46,115,116,121,108,101,41,123,118,97,114,32,105,44,111,44,97,44,115,61,86,40,116,41,44,117,61,81,101,46,116,101,115,116,40,116,41,44,108,61,101,46,115,116,121,108,101,59,105,102,40,117,124,124,40,116,61,71,101,40,115,41,41,44,97,61,107,46,99,115,115,72,111,111,107,115,91,116,93,124,124,107,46,99,115,115,72,111,111,107,115,91,115,93,44,118,111,105,100,32,48,61,61,61,110,41,114,101,116,117,114,110,32,97,38,38,34,103,101,116,34,105,110,32,97,38,38,118,111,105,100,32,48,33,61,61,40,105,61,97,46,103,101,116,40,101,44,33,49,44,114,41,41,63,105,58,108,91,116,93,59,34,115,116,114,105,110,103,34,61,61,61,40,111,61,116,121,112,101,111,102,32,110,41,38,38,40,105,61,110,101,46,101,120,101,99,40,110,41,41,38,38,105,91,49,93,38,38,40,110,61,108,101,40,101,44,116,44,105,41,44,111,61,34,110,117,109,98,101,114,34,41,44,110,117,108,108,33,61,110,38,38,110,61,61,110,38,38,40,34,110,117,109,98,101,114,34,33,61,61,111,124,124,117,124,124,40,110,43,61,105,38,38,105,91,51,93,124,124,40,107,46,99,115,115,78,117,109,98,101,114,91,115,93,63,34,34,58,34,112,120,34,41,41,44,121,46,99,108,101,97,114,67,108,111,110,101,83,116,121,108,101,124,124,34,34,33,61,61,110,124,124,48,33,61,61,116,46,105,110,100,101,120,79,102,40,34,98,97,99,107,103,114,111,117,110,100,34,41,124,124,40,108,91,116,93,61,34,105,110,104,101,114,105,116,34,41,44,97,38,38,34,115,101,116,34,105,110,32,97,38,38,118,111,105,100,32,48,61,61,61,40,110,61,97,46,115,101,116,40,101,44,110,44,114,41,41,124,124,40,117,63,108,46,115,101,116,80,114,111,112,101,114,116,121,40,116,44,110,41,58,108,91,116,93,61,110,41,41,125,125,44,99,115,115,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,114,41,123,118,97,114,32,105,44,111,44,97,44,115,61,86,40,116,41,59,114,101,116,117,114,110,32,81,101,46,116,101,115,116,40,116,41,124,124,40,116,61,71,101,40,115,41,41,44,40,97,61,107,46,99,115,115,72,111,111,107,115,91,116,93,124,124,107,46,99,115,115,72,111,111,107,115,91,115,93,41,38,38,34,103,101,116,34,105,110,32,97,38,38,40,105,61,97,46,103,101,116,40,101,44,33,48,44,110,41,41,44,118,111,105,100,32,48,61,61,61,105,38,38,40,105,61,95,101,40,101,44,116,44,114,41,41,44,34,110,111,114,109,97,108,34,61,61,61,105,38,38,116,32,105,110,32,75,101,38,38,40,105,61,75,101,91,116,93,41,44,34,34,61,61,61,110,124,124,110,63,40,111,61,112,97,114,115,101,70,108,111,97,116,40,105,41,44,33,48,61,61,61,110,124,124,105,115,70,105,110,105,116,101,40,111,41,63,111,124,124,48,58,105,41,58,105,125,125,41,44,107,46,101,97,99,104,40,91,34,104,101,105,103,104,116,34,44,34,119,105,100,116,104,34,93,44,102,117,110,99,116,105,111,110,40,101,44,117,41,123,107,46,99,115,115,72,111,111,107,115,91,117,93,61,123,103,101,116,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,105,102,40,116,41,114,101,116,117,114,110,33,89,101,46,116,101,115,116,40,107,46,99,115,115,40,101,44,34,100,105,115,112,108,97,121,34,41,41,124,124,101,46,103,101,116,67,108,105,101,110,116,82,101,99,116,115,40,41,46,108,101,110,103,116,104,38,38,101,46,103,101,116,66,111,117,110,100,105,110,103,67,108,105,101,110,116,82,101,99,116,40,41,46,119,105,100,116,104,63,116,116,40,101,44,117,44,110,41,58,117,101,40,101,44,74,101,44,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,116,40,101,44,117,44,110,41,125,41,125,44,115,101,116,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,44,105,61,70,101,40,101,41,44,111,61,33,121,46,115,99,114,111,108,108,98,111,120,83,105,122,101,40,41,38,38,34,97,98,115,111,108,117,116,101,34,61,61,61,105,46,112,111,115,105,116,105,111,110,44,97,61,40,111,124,124,110,41,38,38,34,98,111,114,100,101,114,45,98,111,120,34,61,61,61,107,46,99,115,115,40,101,44,34,98,111,120,83,105,122,105,110,103,34,44,33,49,44,105,41,44,115,61,110,63,101,116,40,101,44,117,44,110,44,97,44,105,41,58,48,59,114,101,116,117,114,110,32,97,38,38,111,38,38,40,115,45,61,77,97,116,104,46,99,101,105,108,40,101,91,34,111,102,102,115,101,116,34,43,117,91,48,93,46,116,111,85,112,112,101,114,67,97,115,101,40,41,43,117,46,115,108,105,99,101,40,49,41,93,45,112,97,114,115,101,70,108,111,97,116,40,105,91,117,93,41,45,101,116,40,101,44,117,44,34,98,111,114,100,101,114,34,44,33,49,44,105,41,45,46,53,41,41,44,115,38,38,40,114,61,110,101,46,101,120,101,99,40,116,41,41,38,38,34,112,120,34,33,61,61,40,114,91,51,93,124,124,34,112,120,34,41,38,38,40,101,46,115,116,121,108,101,91,117,93,61,116,44,116,61,107,46,99,115,115,40,101,44,117,41,41,44,90,101,40,48,44,116,44,115,41,125,125,125,41,44,107,46,99,115,115,72,111,111,107,115,46,109,97,114,103,105,110,76,101,102,116,61,122,101,40,121,46,114,101,108,105,97,98,108,101,77,97,114,103,105,110,76,101,102,116,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,102,40,116,41,114,101,116,117,114,110,40,112,97,114,115,101,70,108,111,97,116,40,95,101,40,101,44,34,109,97,114,103,105,110,76,101,102,116,34,41,41,124,124,101,46,103,101,116,66,111,117,110,100,105,110,103,67,108,105,101,110,116,82,101,99,116,40,41,46,108,101,102,116,45,117,101,40,101,44,123,109,97,114,103,105,110,76,101,102,116,58,48,125,44,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,101,46,103,101,116,66,111,117,110,100,105,110,103,67,108,105,101,110,116,82,101,99,116,40,41,46,108,101,102,116,125,41,41,43,34,112,120,34,125,41,44,107,46,101,97,99,104,40,123,109,97,114,103,105,110,58,34,34,44,112,97,100,100,105,110,103,58,34,34,44,98,111,114,100,101,114,58,34,87,105,100,116,104,34,125,44,102,117,110,99,116,105,111,110,40,105,44,111,41,123,107,46,99,115,115,72,111,111,107,115,91,105,43,111,93,61,123,101,120,112,97,110,100,58,102,117,110,99,116,105,111,110,40,101,41,123,102,111,114,40,118,97,114,32,116,61,48,44,110,61,123,125,44,114,61,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,101,63,101,46,115,112,108,105,116,40,34,32,34,41,58,91,101,93,59,116,60,52,59,116,43,43,41,110,91,105,43,114,101,91,116,93,43,111,93,61,114,91,116,93,124,124,114,91,116,45,50,93,124,124,114,91,48,93,59,114,101,116,117,114,110,32,110,125,125,44,34,109,97,114,103,105,110,34,33,61,61,105,38,38,40,107,46,99,115,115,72,111,111,107,115,91,105,43,111,93,46,115,101,116,61,90,101,41,125,41,44,107,46,102,110,46,101,120,116,101,110,100,40,123,99,115,115,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,95,40,116,104,105,115,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,44,105,44,111,61,123,125,44,97,61,48,59,105,102,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,116,41,41,123,102,111,114,40,114,61,70,101,40,101,41,44,105,61,116,46,108,101,110,103,116,104,59,97,60,105,59,97,43,43,41,111,91,116,91,97,93,93,61,107,46,99,115,115,40,101,44,116,91,97,93,44,33,49,44,114,41,59,114,101,116,117,114,110,32,111,125,114,101,116,117,114,110,32,118,111,105,100,32,48,33,61,61,110,63,107,46,115,116,121,108,101,40,101,44,116,44,110,41,58,107,46,99,115,115,40,101,44,116,41,125,44,101,44,116,44,49,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,125,125,41,44,40,40,107,46,84,119,101,101,110,61,110,116,41,46,112,114,111,116,111,116,121,112,101,61,123,99,111,110,115,116,114,117,99,116,111,114,58,110,116,44,105,110,105,116,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,114,44,105,44,111,41,123,116,104,105,115,46,101,108,101,109,61,101,44,116,104,105,115,46,112,114,111,112,61,110,44,116,104,105,115,46,101,97,115,105,110,103,61,105,124,124,107,46,101,97,115,105,110,103,46,95,100,101,102,97,117,108,116,44,116,104,105,115,46,111,112,116,105,111,110,115,61,116,44,116,104,105,115,46,115,116,97,114,116,61,116,104,105,115,46,110,111,119,61,116,104,105,115,46,99,117,114,40,41,44,116,104,105,115,46,101,110,100,61,114,44,116,104,105,115,46,117,110,105,116,61,111,124,124,40,107,46,99,115,115,78,117,109,98,101,114,91,110,93,63,34,34,58,34,112,120,34,41,125,44,99,117,114,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,110,116,46,112,114,111,112,72,111,111,107,115,91,116,104,105,115,46,112,114,111,112,93,59,114,101,116,117,114,110,32,101,38,38,101,46,103,101,116,63,101,46,103,101,116,40,116,104,105,115,41,58,110,116,46,112,114,111,112,72,111,111,107,115,46,95,100,101,102,97,117,108,116,46,103,101,116,40,116,104,105,115,41,125,44,114,117,110,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,44,110,61,110,116,46,112,114,111,112,72,111,111,107,115,91,116,104,105,115,46,112,114,111,112,93,59,114,101,116,117,114,110,32,116,104,105,115,46,111,112,116,105,111,110,115,46,100,117,114,97,116,105,111,110,63,116,104,105,115,46,112,111,115,61,116,61,107,46,101,97,115,105,110,103,91,116,104,105,115,46,101,97,115,105,110,103,93,40,101,44,116,104,105,115,46,111,112,116,105,111,110,115,46,100,117,114,97,116,105,111,110,42,101,44,48,44,49,44,116,104,105,115,46,111,112,116,105,111,110,115,46,100,117,114,97,116,105,111,110,41,58,116,104,105,115,46,112,111,115,61,116,61,101,44,116,104,105,115,46,110,111,119,61,40,116,104,105,115,46,101,110,100,45,116,104,105,115,46,115,116,97,114,116,41,42,116,43,116,104,105,115,46,115,116,97,114,116,44,116,104,105,115,46,111,112,116,105,111,110,115,46,115,116,101,112,38,38,116,104,105,115,46,111,112,116,105,111,110,115,46,115,116,101,112,46,99,97,108,108,40,116,104,105,115,46,101,108,101,109,44,116,104,105,115,46,110,111,119,44,116,104,105,115,41,44,110,38,38,110,46,115,101,116,63,110,46,115,101,116,40,116,104,105,115,41,58,110,116,46,112,114,111,112,72,111,111,107,115,46,95,100,101,102,97,117,108,116,46,115,101,116,40,116,104,105,115,41,44,116,104,105,115,125,125,41,46,105,110,105,116,46,112,114,111,116,111,116,121,112,101,61,110,116,46,112,114,111,116,111,116,121,112,101,44,40,110,116,46,112,114,111,112,72,111,111,107,115,61,123,95,100,101,102,97,117,108,116,58,123,103,101,116,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,59,114,101,116,117,114,110,32,49,33,61,61,101,46,101,108,101,109,46,110,111,100,101,84,121,112,101,124,124,110,117,108,108,33,61,101,46,101,108,101,109,91,101,46,112,114,111,112,93,38,38,110,117,108,108,61,61,101,46,101,108,101,109,46,115,116,121,108,101,91,101,46,112,114,111,112,93,63,101,46,101,108,101,109,91,101,46,112,114,111,112,93,58,40,116,61,107,46,99,115,115,40,101,46,101,108,101,109,44,101,46,112,114,111,112,44,34,34,41,41,38,38,34,97,117,116,111,34,33,61,61,116,63,116,58,48,125,44,115,101,116,58,102,117,110,99,116,105,111,110,40,101,41,123,107,46,102,120,46,115,116,101,112,91,101,46,112,114,111,112,93,63,107,46,102,120,46,115,116,101,112,91,101,46,112,114,111,112,93,40,101,41,58,49,33,61,61,101,46,101,108,101,109,46,110,111,100,101,84,121,112,101,124,124,33,107,46,99,115,115,72,111,111,107,115,91,101,46,112,114,111,112,93,38,38,110,117,108,108,61,61,101,46,101,108,101,109,46,115,116,121,108,101,91,71,101,40,101,46,112,114,111,112,41,93,63,101,46,101,108,101,109,91,101,46,112,114,111,112,93,61,101,46,110,111,119,58,107,46,115,116,121,108,101,40,101,46,101,108,101,109,44,101,46,112,114,111,112,44,101,46,110,111,119,43,101,46,117,110,105,116,41,125,125,125,41,46,115,99,114,111,108,108,84,111,112,61,110,116,46,112,114,111,112,72,111,111,107,115,46,115,99,114,111,108,108,76,101,102,116,61,123,115,101,116,58,102,117,110,99,116,105,111,110,40,101,41,123,101,46,101,108,101,109,46,110,111,100,101,84,121,112,101,38,38,101,46,101,108,101,109,46,112,97,114,101,110,116,78,111,100,101,38,38,40,101,46,101,108,101,109,91,101,46,112,114,111,112,93,61,101,46,110,111,119,41,125,125,44,107,46,101,97,115,105,110,103,61,123,108,105,110,101,97,114,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,125,44,115,119,105,110,103,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,46,53,45,77,97,116,104,46,99,111,115,40,101,42,77,97,116,104,46,80,73,41,47,50,125,44,95,100,101,102,97,117,108,116,58,34,115,119,105,110,103,34,125,44,107,46,102,120,61,110,116,46,112,114,111,116,111,116,121,112,101,46,105,110,105,116,44,107,46,102,120,46,115,116,101,112,61,123,125,59,118,97,114,32,114,116,44,105,116,44,111,116,44,97,116,44,115,116,61,47,94,40,63,58,116,111,103,103,108,101,124,115,104,111,119,124,104,105,100,101,41,36,47,44,117,116,61,47,113,117,101,117,101,72,111,111,107,115,36,47,59,102,117,110,99,116,105,111,110,32,108,116,40,41,123,105,116,38,38,40,33,49,61,61,61,69,46,104,105,100,100,101,110,38,38,67,46,114,101,113,117,101,115,116,65,110,105,109,97,116,105,111,110,70,114,97,109,101,63,67,46,114,101,113,117,101,115,116,65,110,105,109,97,116,105,111,110,70,114,97,109,101,40,108,116,41,58,67,46,115,101,116,84,105,109,101,111,117,116,40,108,116,44,107,46,102,120,46,105,110,116,101,114,118,97,108,41,44,107,46,102,120,46,116,105,99,107,40,41,41,125,102,117,110,99,116,105,111,110,32,99,116,40,41,123,114,101,116,117,114,110,32,67,46,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,40,41,123,114,116,61,118,111,105,100,32,48,125,41,44,114,116,61,68,97,116,101,46,110,111,119,40,41,125,102,117,110,99,116,105,111,110,32,102,116,40,101,44,116,41,123,118,97,114,32,110,44,114,61,48,44,105,61,123,104,101,105,103,104,116,58,101,125,59,102,111,114,40,116,61,116,63,49,58,48,59,114,60,52,59,114,43,61,50,45,116,41,105,91,34,109,97,114,103,105,110,34,43,40,110,61,114,101,91,114,93,41,93,61,105,91,34,112,97,100,100,105,110,103,34,43,110,93,61,101,59,114,101,116,117,114,110,32,116,38,38,40,105,46,111,112,97,99,105,116,121,61,105,46,119,105,100,116,104,61,101,41,44,105,125,102,117,110,99,116,105,111,110,32,112,116,40,101,44,116,44,110,41,123,102,111,114,40,118,97,114,32,114,44,105,61,40,100,116,46,116,119,101,101,110,101,114,115,91,116,93,124,124,91,93,41,46,99,111,110,99,97,116,40,100,116,46,116,119,101,101,110,101,114,115,91,34,42,34,93,41,44,111,61,48,44,97,61,105,46,108,101,110,103,116,104,59,111,60,97,59,111,43,43,41,105,102,40,114,61,105,91,111,93,46,99,97,108,108,40,110,44,116,44,101,41,41,114,101,116,117,114,110,32,114,125,102,117,110,99,116,105,111,110,32,100,116,40,111,44,101,44,116,41,123,118,97,114,32,110,44,97,44,114,61,48,44,105,61,100,116,46,112,114,101,102,105,108,116,101,114,115,46,108,101,110,103,116,104,44,115,61,107,46,68,101,102,101,114,114,101,100,40,41,46,97,108,119,97,121,115,40,102,117,110,99,116,105,111,110,40,41,123,100,101,108,101,116,101,32,117,46,101,108,101,109,125,41,44,117,61,102,117,110,99,116,105,111,110,40,41,123,105,102,40,97,41,114,101,116,117,114,110,33,49,59,102,111,114,40,118,97,114,32,101,61,114,116,124,124,99,116,40,41,44,116,61,77,97,116,104,46,109,97,120,40,48,44,108,46,115,116,97,114,116,84,105,109,101,43,108,46,100,117,114,97,116,105,111,110,45,101,41,44,110,61,49,45,40,116,47,108,46,100,117,114,97,116,105,111,110,124,124,48,41,44,114,61,48,44,105,61,108,46,116,119,101,101,110,115,46,108,101,110,103,116,104,59,114,60,105,59,114,43,43,41,108,46,116,119,101,101,110,115,91,114,93,46,114,117,110,40,110,41,59,114,101,116,117,114,110,32,115,46,110,111,116,105,102,121,87,105,116,104,40,111,44,91,108,44,110,44,116,93,41,44,110,60,49,38,38,105,63,116,58,40,105,124,124,115,46,110,111,116,105,102,121,87,105,116,104,40,111,44,91,108,44,49,44,48,93,41,44,115,46,114,101,115,111,108,118,101,87,105,116,104,40,111,44,91,108,93,41,44,33,49,41,125,44,108,61,115,46,112,114,111,109,105,115,101,40,123,101,108,101,109,58,111,44,112,114,111,112,115,58,107,46,101,120,116,101,110,100,40,123,125,44,101,41,44,111,112,116,115,58,107,46,101,120,116,101,110,100,40,33,48,44,123,115,112,101,99,105,97,108,69,97,115,105,110,103,58,123,125,44,101,97,115,105,110,103,58,107,46,101,97,115,105,110,103,46,95,100,101,102,97,117,108,116,125,44,116,41,44,111,114,105,103,105,110,97,108,80,114,111,112,101,114,116,105,101,115,58,101,44,111,114,105,103,105,110,97,108,79,112,116,105,111,110,115,58,116,44,115,116,97,114,116,84,105,109,101,58,114,116,124,124,99,116,40,41,44,100,117,114,97,116,105,111,110,58,116,46,100,117,114,97,116,105,111,110,44,116,119,101,101,110,115,58,91,93,44,99,114,101,97,116,101,84,119,101,101,110,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,61,107,46,84,119,101,101,110,40,111,44,108,46,111,112,116,115,44,101,44,116,44,108,46,111,112,116,115,46,115,112,101,99,105,97,108,69,97,115,105,110,103,91,101,93,124,124,108,46,111,112,116,115,46,101,97,115,105,110,103,41,59,114,101,116,117,114,110,32,108,46,116,119,101,101,110,115,46,112,117,115,104,40,110,41,44,110,125,44,115,116,111,112,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,48,44,110,61,101,63,108,46,116,119,101,101,110,115,46,108,101,110,103,116,104,58,48,59,105,102,40,97,41,114,101,116,117,114,110,32,116,104,105,115,59,102,111,114,40,97,61,33,48,59,116,60,110,59,116,43,43,41,108,46,116,119,101,101,110,115,91,116,93,46,114,117,110,40,49,41,59,114,101,116,117,114,110,32,101,63,40,115,46,110,111,116,105,102,121,87,105,116,104,40,111,44,91,108,44,49,44,48,93,41,44,115,46,114,101,115,111,108,118,101,87,105,116,104,40,111,44,91,108,44,101,93,41,41,58,115,46,114,101,106,101,99,116,87,105,116,104,40,111,44,91,108,44,101,93,41,44,116,104,105,115,125,125,41,44,99,61,108,46,112,114,111,112,115,59,102,111,114,40,33,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,44,114,44,105,44,111,44,97,59,102,111,114,40,110,32,105,110,32,101,41,105,102,40,105,61,116,91,114,61,86,40,110,41,93,44,111,61,101,91,110,93,44,65,114,114,97,121,46,105,115,65,114,114,97,121,40,111,41,38,38,40,105,61,111,91,49,93,44,111,61,101,91,110,93,61,111,91,48,93,41,44,110,33,61,61,114,38,38,40,101,91,114,93,61,111,44,100,101,108,101,116,101,32,101,91,110,93,41,44,40,97,61,107,46,99,115,115,72,111,111,107,115,91,114,93,41,38,38,34,101,120,112,97,110,100,34,105,110,32,97,41,102,111,114,40,110,32,105,110,32,111,61,97,46,101,120,112,97,110,100,40,111,41,44,100,101,108,101,116,101,32,101,91,114,93,44,111,41,110,32,105,110,32,101,124,124,40,101,91,110,93,61,111,91,110,93,44,116,91,110,93,61,105,41,59,101,108,115,101,32,116,91,114,93,61,105,125,40,99,44,108,46,111,112,116,115,46,115,112,101,99,105,97,108,69,97,115,105,110,103,41,59,114,60,105,59,114,43,43,41,105,102,40,110,61,100,116,46,112,114,101,102,105,108,116,101,114,115,91,114,93,46,99,97,108,108,40,108,44,111,44,99,44,108,46,111,112,116,115,41,41,114,101,116,117,114,110,32,109,40,110,46,115,116,111,112,41,38,38,40,107,46,95,113,117,101,117,101,72,111,111,107,115,40,108,46,101,108,101,109,44,108,46,111,112,116,115,46,113,117,101,117,101,41,46,115,116,111,112,61,110,46,115,116,111,112,46,98,105,110,100,40,110,41,41,44,110,59,114,101,116,117,114,110,32,107,46,109,97,112,40,99,44,112,116,44,108,41,44,109,40,108,46,111,112,116,115,46,115,116,97,114,116,41,38,38,108,46,111,112,116,115,46,115,116,97,114,116,46,99,97,108,108,40,111,44,108,41,44,108,46,112,114,111,103,114,101,115,115,40,108,46,111,112,116,115,46,112,114,111,103,114,101,115,115,41,46,100,111,110,101,40,108,46,111,112,116,115,46,100,111,110,101,44,108,46,111,112,116,115,46,99,111,109,112,108,101,116,101,41,46,102,97,105,108,40,108,46,111,112,116,115,46,102,97,105,108,41,46,97,108,119,97,121,115,40,108,46,111,112,116,115,46,97,108,119,97,121,115,41,44,107,46,102,120,46,116,105,109,101,114,40,107,46,101,120,116,101,110,100,40,117,44,123,101,108,101,109,58,111,44,97,110,105,109,58,108,44,113,117,101,117,101,58,108,46,111,112,116,115,46,113,117,101,117,101,125,41,41,44,108,125,107,46,65,110,105,109,97,116,105,111,110,61,107,46,101,120,116,101,110,100,40,100,116,44,123,116,119,101,101,110,101,114,115,58,123,34,42,34,58,91,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,61,116,104,105,115,46,99,114,101,97,116,101,84,119,101,101,110,40,101,44,116,41,59,114,101,116,117,114,110,32,108,101,40,110,46,101,108,101,109,44,101,44,110,101,46,101,120,101,99,40,116,41,44,110,41,44,110,125,93,125,44,116,119,101,101,110,101,114,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,109,40,101,41,63,40,116,61,101,44,101,61,91,34,42,34,93,41,58,101,61,101,46,109,97,116,99,104,40,82,41,59,102,111,114,40,118,97,114,32,110,44,114,61,48,44,105,61,101,46,108,101,110,103,116,104,59,114,60,105,59,114,43,43,41,110,61,101,91,114,93,44,100,116,46,116,119,101,101,110,101,114,115,91,110,93,61,100,116,46,116,119,101,101,110,101,114,115,91,110,93,124,124,91,93,44,100,116,46,116,119,101,101,110,101,114,115,91,110,93,46,117,110,115,104,105,102,116,40,116,41,125,44,112,114,101,102,105,108,116,101,114,115,58,91,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,44,105,44,111,44,97,44,115,44,117,44,108,44,99,44,102,61,34,119,105,100,116,104,34,105,110,32,116,124,124,34,104,101,105,103,104,116,34,105,110,32,116,44,112,61,116,104,105,115,44,100,61,123,125,44,104,61,101,46,115,116,121,108,101,44,103,61,101,46,110,111,100,101,84,121,112,101,38,38,115,101,40,101,41,44,118,61,81,46,103,101,116,40,101,44,34,102,120,115,104,111,119,34,41,59,102,111,114,40,114,32,105,110,32,110,46,113,117,101,117,101,124,124,40,110,117,108,108,61,61,40,97,61,107,46,95,113,117,101,117,101,72,111,111,107,115,40,101,44,34,102,120,34,41,41,46,117,110,113,117,101,117,101,100,38,38,40,97,46,117,110,113,117,101,117,101,100,61,48,44,115,61,97,46,101,109,112,116,121,46,102,105,114,101,44,97,46,101,109,112,116,121,46,102,105,114,101,61,102,117,110,99,116,105,111,110,40,41,123,97,46,117,110,113,117,101,117,101,100,124,124,115,40,41,125,41,44,97,46,117,110,113,117,101,117,101,100,43,43,44,112,46,97,108,119,97,121,115,40,102,117,110,99,116,105,111,110,40,41,123,112,46,97,108,119,97,121,115,40,102,117,110,99,116,105,111,110,40,41,123,97,46,117,110,113,117,101,117,101,100,45,45,44,107,46,113,117,101,117,101,40,101,44,34,102,120,34,41,46,108,101,110,103,116,104,124,124,97,46,101,109,112,116,121,46,102,105,114,101,40,41,125,41,125,41,41,44,116,41,105,102,40,105,61,116,91,114,93,44,115,116,46,116,101,115,116,40,105,41,41,123,105,102,40,100,101,108,101,116,101,32,116,91,114,93,44,111,61,111,124,124,34,116,111,103,103,108,101,34,61,61,61,105,44,105,61,61,61,40,103,63,34,104,105,100,101,34,58,34,115,104,111,119,34,41,41,123,105,102,40,34,115,104,111,119,34,33,61,61,105,124,124,33,118,124,124,118,111,105,100,32,48,61,61,61,118,91,114,93,41,99,111,110,116,105,110,117,101,59,103,61,33,48,125,100,91,114,93,61,118,38,38,118,91,114,93,124,124,107,46,115,116,121,108,101,40,101,44,114,41,125,105,102,40,40,117,61,33,107,46,105,115,69,109,112,116,121,79,98,106,101,99,116,40,116,41,41,124,124,33,107,46,105,115,69,109,112,116,121,79,98,106,101,99,116,40,100,41,41,102,111,114,40,114,32,105,110,32,102,38,38,49,61,61,61,101,46,110,111,100,101,84,121,112,101,38,38,40,110,46,111,118,101,114,102,108,111,119,61,91,104,46,111,118,101,114,102,108,111,119,44,104,46,111,118,101,114,102,108,111,119,88,44,104,46,111,118,101,114,102,108,111,119,89,93,44,110,117,108,108,61,61,40,108,61,118,38,38,118,46,100,105,115,112,108,97,121,41,38,38,40,108,61,81,46,103,101,116,40,101,44,34,100,105,115,112,108,97,121,34,41,41,44,34,110,111,110,101,34,61,61,61,40,99,61,107,46,99,115,115,40,101,44,34,100,105,115,112,108,97,121,34,41,41,38,38,40,108,63,99,61,108,58,40,102,101,40,91,101,93,44,33,48,41,44,108,61,101,46,115,116,121,108,101,46,100,105,115,112,108,97,121,124,124,108,44,99,61,107,46,99,115,115,40,101,44,34,100,105,115,112,108,97,121,34,41,44,102,101,40,91,101,93,41,41,41,44,40,34,105,110,108,105,110,101,34,61,61,61,99,124,124,34,105,110,108,105,110,101,45,98,108,111,99,107,34,61,61,61,99,38,38,110,117,108,108,33,61,108,41,38,38,34,110,111,110,101,34,61,61,61,107,46,99,115,115,40,101,44,34,102,108,111,97,116,34,41,38,38,40,117,124,124,40,112,46,100,111,110,101,40,102,117,110,99,116,105,111,110,40,41,123,104,46,100,105,115,112,108,97,121,61,108,125,41,44,110,117,108,108,61,61,108,38,38,40,99,61,104,46,100,105,115,112,108,97,121,44,108,61,34,110,111,110,101,34,61,61,61,99,63,34,34,58,99,41,41,44,104,46,100,105,115,112,108,97,121,61,34,105,110,108,105,110,101,45,98,108,111,99,107,34,41,41,44,110,46,111,118,101,114,102,108,111,119,38,38,40,104,46,111,118,101,114,102,108,111,119,61,34,104,105,100,100,101,110,34,44,112,46,97,108,119,97,121,115,40,102,117,110,99,116,105,111,110,40,41,123,104,46,111,118,101,114,102,108,111,119,61,110,46,111,118,101,114,102,108,111,119,91,48,93,44,104,46,111,118,101,114,102,108,111,119,88,61,110,46,111,118,101,114,102,108,111,119,91,49,93,44,104,46,111,118,101,114,102,108,111,119,89,61,110,46,111,118,101,114,102,108,111,119,91,50,93,125,41,41,44,117,61,33,49,44,100,41,117,124,124,40,118,63,34,104,105,100,100,101,110,34,105,110,32,118,38,38,40,103,61,118,46,104,105,100,100,101,110,41,58,118,61,81,46,97,99,99,101,115,115,40,101,44,34,102,120,115,104,111,119,34,44,123,100,105,115,112,108,97,121,58,108,125,41,44,111,38,38,40,118,46,104,105,100,100,101,110,61,33,103,41,44,103,38,38,102,101,40,91,101,93,44,33,48,41,44,112,46,100,111,110,101,40,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,114,32,105,110,32,103,124,124,102,101,40,91,101,93,41,44,81,46,114,101,109,111,118,101,40,101,44,34,102,120,115,104,111,119,34,41,44,100,41,107,46,115,116,121,108,101,40,101,44,114,44,100,91,114,93,41,125,41,41,44,117,61,112,116,40,103,63,118,91,114,93,58,48,44,114,44,112,41,44,114,32,105,110,32,118,124,124,40,118,91,114,93,61,117,46,115,116,97,114,116,44,103,38,38,40,117,46,101,110,100,61,117,46,115,116,97,114,116,44,117,46,115,116,97,114,116,61,48,41,41,125,93,44,112,114,101,102,105,108,116,101,114,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,116,63,100,116,46,112,114,101,102,105,108,116,101,114,115,46,117,110,115,104,105,102,116,40,101,41,58,100,116,46,112,114,101,102,105,108,116,101,114,115,46,112,117,115,104,40,101,41,125,125,41,44,107,46,115,112,101,101,100,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,61,101,38,38,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,101,63,107,46,101,120,116,101,110,100,40,123,125,44,101,41,58,123,99,111,109,112,108,101,116,101,58,110,124,124,33,110,38,38,116,124,124,109,40,101,41,38,38,101,44,100,117,114,97,116,105,111,110,58,101,44,101,97,115,105,110,103,58,110,38,38,116,124,124,116,38,38,33,109,40,116,41,38,38,116,125,59,114,101,116,117,114,110,32,107,46,102,120,46,111,102,102,63,114,46,100,117,114,97,116,105,111,110,61,48,58,34,110,117,109,98,101,114,34,33,61,116,121,112,101,111,102,32,114,46,100,117,114,97,116,105,111,110,38,38,40,114,46,100,117,114,97,116,105,111,110,32,105,110,32,107,46,102,120,46,115,112,101,101,100,115,63,114,46,100,117,114,97,116,105,111,110,61,107,46,102,120,46,115,112,101,101,100,115,91,114,46,100,117,114,97,116,105,111,110,93,58,114,46,100,117,114,97,116,105,111,110,61,107,46,102,120,46,115,112,101,101,100,115,46,95,100,101,102,97,117,108,116,41,44,110,117,108,108,33,61,114,46,113,117,101,117,101,38,38,33,48,33,61,61,114,46,113,117,101,117,101,124,124,40,114,46,113,117,101,117,101,61,34,102,120,34,41,44,114,46,111,108,100,61,114,46,99,111,109,112,108,101,116,101,44,114,46,99,111,109,112,108,101,116,101,61,102,117,110,99,116,105,111,110,40,41,123,109,40,114,46,111,108,100,41,38,38,114,46,111,108,100,46,99,97,108,108,40,116,104,105,115,41,44,114,46,113,117,101,117,101,38,38,107,46,100,101,113,117,101,117,101,40,116,104,105,115,44,114,46,113,117,101,117,101,41,125,44,114,125,44,107,46,102,110,46,101,120,116,101,110,100,40,123,102,97,100,101,84,111,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,114,41,123,114,101,116,117,114,110,32,116,104,105,115,46,102,105,108,116,101,114,40,115,101,41,46,99,115,115,40,34,111,112,97,99,105,116,121,34,44,48,41,46,115,104,111,119,40,41,46,101,110,100,40,41,46,97,110,105,109,97,116,101,40,123,111,112,97,99,105,116,121,58,116,125,44,101,44,110,44,114,41,125,44,97,110,105,109,97,116,101,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,44,114,41,123,118,97,114,32,105,61,107,46,105,115,69,109,112,116,121,79,98,106,101,99,116,40,116,41,44,111,61,107,46,115,112,101,101,100,40,101,44,110,44,114,41,44,97,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,100,116,40,116,104,105,115,44,107,46,101,120,116,101,110,100,40,123,125,44,116,41,44,111,41,59,40,105,124,124,81,46,103,101,116,40,116,104,105,115,44,34,102,105,110,105,115,104,34,41,41,38,38,101,46,115,116,111,112,40,33,48,41,125,59,114,101,116,117,114,110,32,97,46,102,105,110,105,115,104,61,97,44,105,124,124,33,49,61,61,61,111,46,113,117,101,117,101,63,116,104,105,115,46,101,97,99,104,40,97,41,58,116,104,105,115,46,113,117,101,117,101,40,111,46,113,117,101,117,101,44,97,41,125,44,115,116,111,112,58,102,117,110,99,116,105,111,110,40,105,44,101,44,111,41,123,118,97,114,32,97,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,46,115,116,111,112,59,100,101,108,101,116,101,32,101,46,115,116,111,112,44,116,40,111,41,125,59,114,101,116,117,114,110,34,115,116,114,105,110,103,34,33,61,116,121,112,101,111,102,32,105,38,38,40,111,61,101,44,101,61,105,44,105,61,118,111,105,100,32,48,41,44,101,38,38,33,49,33,61,61,105,38,38,116,104,105,115,46,113,117,101,117,101,40,105,124,124,34,102,120,34,44,91,93,41,44,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,33,48,44,116,61,110,117,108,108,33,61,105,38,38,105,43,34,113,117,101,117,101,72,111,111,107,115,34,44,110,61,107,46,116,105,109,101,114,115,44,114,61,81,46,103,101,116,40,116,104,105,115,41,59,105,102,40,116,41,114,91,116,93,38,38,114,91,116,93,46,115,116,111,112,38,38,97,40,114,91,116,93,41,59,101,108,115,101,32,102,111,114,40,116,32,105,110,32,114,41,114,91,116,93,38,38,114,91,116,93,46,115,116,111,112,38,38,117,116,46,116,101,115,116,40,116,41,38,38,97,40,114,91,116,93,41,59,102,111,114,40,116,61,110,46,108,101,110,103,116,104,59,116,45,45,59,41,110,91,116,93,46,101,108,101,109,33,61,61,116,104,105,115,124,124,110,117,108,108,33,61,105,38,38,110,91,116,93,46,113,117,101,117,101,33,61,61,105,124,124,40,110,91,116,93,46,97,110,105,109,46,115,116,111,112,40,111,41,44,101,61,33,49,44,110,46,115,112,108,105,99,101,40,116,44,49,41,41,59,33,101,38,38,111,124,124,107,46,100,101,113,117,101,117,101,40,116,104,105,115,44,105,41,125,41,125,44,102,105,110,105,115,104,58,102,117,110,99,116,105,111,110,40,97,41,123,114,101,116,117,114,110,33,49,33,61,61,97,38,38,40,97,61,97,124,124,34,102,120,34,41,44,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,44,116,61,81,46,103,101,116,40,116,104,105,115,41,44,110,61,116,91,97,43,34,113,117,101,117,101,34,93,44,114,61,116,91,97,43,34,113,117,101,117,101,72,111,111,107,115,34,93,44,105,61,107,46,116,105,109,101,114,115,44,111,61,110,63,110,46,108,101,110,103,116,104,58,48,59,102,111,114,40,116,46,102,105,110,105,115,104,61,33,48,44,107,46,113,117,101,117,101,40,116,104,105,115,44,97,44,91,93,41,44,114,38,38,114,46,115,116,111,112,38,38,114,46,115,116,111,112,46,99,97,108,108,40,116,104,105,115,44,33,48,41,44,101,61,105,46,108,101,110,103,116,104,59,101,45,45,59,41,105,91,101,93,46,101,108,101,109,61,61,61,116,104,105,115,38,38,105,91,101,93,46,113,117,101,117,101,61,61,61,97,38,38,40,105,91,101,93,46,97,110,105,109,46,115,116,111,112,40,33,48,41,44,105,46,115,112,108,105,99,101,40,101,44,49,41,41,59,102,111,114,40,101,61,48,59,101,60,111,59,101,43,43,41,110,91,101,93,38,38,110,91,101,93,46,102,105,110,105,115,104,38,38,110,91,101,93,46,102,105,110,105,115,104,46,99,97,108,108,40,116,104,105,115,41,59,100,101,108,101,116,101,32,116,46,102,105,110,105,115,104,125,41,125,125,41,44,107,46,101,97,99,104,40,91,34,116,111,103,103,108,101,34,44,34,115,104,111,119,34,44,34,104,105,100,101,34,93,44,102,117,110,99,116,105,111,110,40,101,44,114,41,123,118,97,114,32,105,61,107,46,102,110,91,114,93,59,107,46,102,110,91,114,93,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,101,124,124,34,98,111,111,108,101,97,110,34,61,61,116,121,112,101,111,102,32,101,63,105,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,58,116,104,105,115,46,97,110,105,109,97,116,101,40,102,116,40,114,44,33,48,41,44,101,44,116,44,110,41,125,125,41,44,107,46,101,97,99,104,40,123,115,108,105,100,101,68,111,119,110,58,102,116,40,34,115,104,111,119,34,41,44,115,108,105,100,101,85,112,58,102,116,40,34,104,105,100,101,34,41,44,115,108,105,100,101,84,111,103,103,108,101,58,102,116,40,34,116,111,103,103,108,101,34,41,44,102,97,100,101,73,110,58,123,111,112,97,99,105,116,121,58,34,115,104,111,119,34,125,44,102,97,100,101,79,117,116,58,123,111,112,97,99,105,116,121,58,34,104,105,100,101,34,125,44,102,97,100,101,84,111,103,103,108,101,58,123,111,112,97,99,105,116,121,58,34,116,111,103,103,108,101,34,125,125,44,102,117,110,99,116,105,111,110,40,101,44,114,41,123,107,46,102,110,91,101,93,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,114,101,116,117,114,110,32,116,104,105,115,46,97,110,105,109,97,116,101,40,114,44,101,44,116,44,110,41,125,125,41,44,107,46,116,105,109,101,114,115,61,91,93,44,107,46,102,120,46,116,105,99,107,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,44,116,61,48,44,110,61,107,46,116,105,109,101,114,115,59,102,111,114,40,114,116,61,68,97,116,101,46,110,111,119,40,41,59,116,60,110,46,108,101,110,103,116,104,59,116,43,43,41,40,101,61,110,91,116,93,41,40,41,124,124,110,91,116,93,33,61,61,101,124,124,110,46,115,112,108,105,99,101,40,116,45,45,44,49,41,59,110,46,108,101,110,103,116,104,124,124,107,46,102,120,46,115,116,111,112,40,41,44,114,116,61,118,111,105,100,32,48,125,44,107,46,102,120,46,116,105,109,101,114,61,102,117,110,99,116,105,111,110,40,101,41,123,107,46,116,105,109,101,114,115,46,112,117,115,104,40,101,41,44,107,46,102,120,46,115,116,97,114,116,40,41,125,44,107,46,102,120,46,105,110,116,101,114,118,97,108,61,49,51,44,107,46,102,120,46,115,116,97,114,116,61,102,117,110,99,116,105,111,110,40,41,123,105,116,124,124,40,105,116,61,33,48,44,108,116,40,41,41,125,44,107,46,102,120,46,115,116,111,112,61,102,117,110,99,116,105,111,110,40,41,123,105,116,61,110,117,108,108,125,44,107,46,102,120,46,115,112,101,101,100,115,61,123,115,108,111,119,58,54,48,48,44,102,97,115,116,58,50,48,48,44,95,100,101,102,97,117,108,116,58,52,48,48,125,44,107,46,102,110,46,100,101,108,97,121,61,102,117,110,99,116,105,111,110,40,114,44,101,41,123,114,101,116,117,114,110,32,114,61,107,46,102,120,38,38,107,46,102,120,46,115,112,101,101,100,115,91,114,93,124,124,114,44,101,61,101,124,124,34,102,120,34,44,116,104,105,115,46,113,117,101,117,101,40,101,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,61,67,46,115,101,116,84,105,109,101,111,117,116,40,101,44,114,41,59,116,46,115,116,111,112,61,102,117,110,99,116,105,111,110,40,41,123,67,46,99,108,101,97,114,84,105,109,101,111,117,116,40,110,41,125,125,41,125,44,111,116,61,69,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,105,110,112,117,116,34,41,44,97,116,61,69,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,115,101,108,101,99,116,34,41,46,97,112,112,101,110,100,67,104,105,108,100,40,69,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,111,112,116,105,111,110,34,41,41,44,111,116,46,116,121,112,101,61,34,99,104,101,99,107,98,111,120,34,44,121,46,99,104,101,99,107,79,110,61,34,34,33,61,61,111,116,46,118,97,108,117,101,44,121,46,111,112,116,83,101,108,101,99,116,101,100,61,97,116,46,115,101,108,101,99,116,101,100,44,40,111,116,61,69,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,105,110,112,117,116,34,41,41,46,118,97,108,117,101,61,34,116,34,44,111,116,46,116,121,112,101,61,34,114,97,100,105,111,34,44,121,46,114,97,100,105,111,86,97,108,117,101,61,34,116,34,61,61,61,111,116,46,118,97,108,117,101,59,118,97,114,32,104,116,44,103,116,61,107,46,101,120,112,114,46,97,116,116,114,72,97,110,100,108,101,59,107,46,102,110,46,101,120,116,101,110,100,40,123,97,116,116,114,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,95,40,116,104,105,115,44,107,46,97,116,116,114,44,101,44,116,44,49,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,125,44,114,101,109,111,118,101,65,116,116,114,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,107,46,114,101,109,111,118,101,65,116,116,114,40,116,104,105,115,44,101,41,125,41,125,125,41,44,107,46,101,120,116,101,110,100,40,123,97,116,116,114,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,44,105,44,111,61,101,46,110,111,100,101,84,121,112,101,59,105,102,40,51,33,61,61,111,38,38,56,33,61,61,111,38,38,50,33,61,61,111,41,114,101,116,117,114,110,34,117,110,100,101,102,105,110,101,100,34,61,61,116,121,112,101,111,102,32,101,46,103,101,116,65,116,116,114,105,98,117,116,101,63,107,46,112,114,111,112,40,101,44,116,44,110,41,58,40,49,61,61,61,111,38,38,107,46,105,115,88,77,76,68,111,99,40,101,41,124,124,40,105,61,107,46,97,116,116,114,72,111,111,107,115,91,116,46,116,111,76,111,119,101,114,67,97,115,101,40,41,93,124,124,40,107,46,101,120,112,114,46,109,97,116,99,104,46,98,111,111,108,46,116,101,115,116,40,116,41,63,104,116,58,118,111,105,100,32,48,41,41,44,118,111,105,100,32,48,33,61,61,110,63,110,117,108,108,61,61,61,110,63,118,111,105,100,32,107,46,114,101,109,111,118,101,65,116,116,114,40,101,44,116,41,58,105,38,38,34,115,101,116,34,105,110,32,105,38,38,118,111,105,100,32,48,33,61,61,40,114,61,105,46,115,101,116,40,101,44,110,44,116,41,41,63,114,58,40,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,116,44,110,43,34,34,41,44,110,41,58,105,38,38,34,103,101,116,34,105,110,32,105,38,38,110,117,108,108,33,61,61,40,114,61,105,46,103,101,116,40,101,44,116,41,41,63,114,58,110,117,108,108,61,61,40,114,61,107,46,102,105,110,100,46,97,116,116,114,40,101,44,116,41,41,63,118,111,105,100,32,48,58,114,41,125,44,97,116,116,114,72,111,111,107,115,58,123,116,121,112,101,58,123,115,101,116,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,102,40,33,121,46,114,97,100,105,111,86,97,108,117,101,38,38,34,114,97,100,105,111,34,61,61,61,116,38,38,65,40,101,44,34,105,110,112,117,116,34,41,41,123,118,97,114,32,110,61,101,46,118,97,108,117,101,59,114,101,116,117,114,110,32,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,116,121,112,101,34,44,116,41,44,110,38,38,40,101,46,118,97,108,117,101,61,110,41,44,116,125,125,125,125,44,114,101,109,111,118,101,65,116,116,114,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,44,114,61,48,44,105,61,116,38,38,116,46,109,97,116,99,104,40,82,41,59,105,102,40,105,38,38,49,61,61,61,101,46,110,111,100,101,84,121,112,101,41,119,104,105,108,101,40,110,61,105,91,114,43,43,93,41,101,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,40,110,41,125,125,41,44,104,116,61,123,115,101,116,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,114,101,116,117,114,110,33,49,61,61,61,116,63,107,46,114,101,109,111,118,101,65,116,116,114,40,101,44,110,41,58,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,110,44,110,41,44,110,125,125,44,107,46,101,97,99,104,40,107,46,101,120,112,114,46,109,97,116,99,104,46,98,111,111,108,46,115,111,117,114,99,101,46,109,97,116,99,104,40,47,92,119,43,47,103,41,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,97,61,103,116,91,116,93,124,124,107,46,102,105,110,100,46,97,116,116,114,59,103,116,91,116,93,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,44,105,44,111,61,116,46,116,111,76,111,119,101,114,67,97,115,101,40,41,59,114,101,116,117,114,110,32,110,124,124,40,105,61,103,116,91,111,93,44,103,116,91,111,93,61,114,44,114,61,110,117,108,108,33,61,97,40,101,44,116,44,110,41,63,111,58,110,117,108,108,44,103,116,91,111,93,61,105,41,44,114,125,125,41,59,118,97,114,32,118,116,61,47,94,40,63,58,105,110,112,117,116,124,115,101,108,101,99,116,124,116,101,120,116,97,114,101,97,124,98,117,116,116,111,110,41,36,47,105,44,121,116,61,47,94,40,63,58,97,124,97,114,101,97,41,36,47,105,59,102,117,110,99,116,105,111,110,32,109,116,40,101,41,123,114,101,116,117,114,110,40,101,46,109,97,116,99,104,40,82,41,124,124,91,93,41,46,106,111,105,110,40,34,32,34,41,125,102,117,110,99,116,105,111,110,32,120,116,40,101,41,123,114,101,116,117,114,110,32,101,46,103,101,116,65,116,116,114,105,98,117,116,101,38,38,101,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,41,124,124,34,34,125,102,117,110,99,116,105,111,110,32,98,116,40,101,41,123,114,101,116,117,114,110,32,65,114,114,97,121,46,105,115,65,114,114,97,121,40,101,41,63,101,58,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,101,38,38,101,46,109,97,116,99,104,40,82,41,124,124,91,93,125,107,46,102,110,46,101,120,116,101,110,100,40,123,112,114,111,112,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,95,40,116,104,105,115,44,107,46,112,114,111,112,44,101,44,116,44,49,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,125,44,114,101,109,111,118,101,80,114,111,112,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,100,101,108,101,116,101,32,116,104,105,115,91,107,46,112,114,111,112,70,105,120,91,101,93,124,124,101,93,125,41,125,125,41,44,107,46,101,120,116,101,110,100,40,123,112,114,111,112,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,44,105,44,111,61,101,46,110,111,100,101,84,121,112,101,59,105,102,40,51,33,61,61,111,38,38,56,33,61,61,111,38,38,50,33,61,61,111,41,114,101,116,117,114,110,32,49,61,61,61,111,38,38,107,46,105,115,88,77,76,68,111,99,40,101,41,124,124,40,116,61,107,46,112,114,111,112,70,105,120,91,116,93,124,124,116,44,105,61,107,46,112,114,111,112,72,111,111,107,115,91,116,93,41,44,118,111,105,100,32,48,33,61,61,110,63,105,38,38,34,115,101,116,34,105,110,32,105,38,38,118,111,105,100,32,48,33,61,61,40,114,61,105,46,115,101,116,40,101,44,110,44,116,41,41,63,114,58,101,91,116,93,61,110,58,105,38,38,34,103,101,116,34,105,110,32,105,38,38,110,117,108,108,33,61,61,40,114,61,105,46,103,101,116,40,101,44,116,41,41,63,114,58,101,91,116,93,125,44,112,114,111,112,72,111,111,107,115,58,123,116,97,98,73,110,100,101,120,58,123,103,101,116,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,107,46,102,105,110,100,46,97,116,116,114,40,101,44,34,116,97,98,105,110,100,101,120,34,41,59,114,101,116,117,114,110,32,116,63,112,97,114,115,101,73,110,116,40,116,44,49,48,41,58,118,116,46,116,101,115,116,40,101,46,110,111,100,101,78,97,109,101,41,124,124,121,116,46,116,101,115,116,40,101,46,110,111,100,101,78,97,109,101,41,38,38,101,46,104,114,101,102,63,48,58,45,49,125,125,125,44,112,114,111,112,70,105,120,58,123,34,102,111,114,34,58,34,104,116,109,108,70,111,114,34,44,34,99,108,97,115,115,34,58,34,99,108,97,115,115,78,97,109,101,34,125,125,41,44,121,46,111,112,116,83,101,108,101,99,116,101,100,124,124,40,107,46,112,114,111,112,72,111,111,107,115,46,115,101,108,101,99,116,101,100,61,123,103,101,116,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,46,112,97,114,101,110,116,78,111,100,101,59,114,101,116,117,114,110,32,116,38,38,116,46,112,97,114,101,110,116,78,111,100,101,38,38,116,46,112,97,114,101,110,116,78,111,100,101,46,115,101,108,101,99,116,101,100,73,110,100,101,120,44,110,117,108,108,125,44,115,101,116,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,46,112,97,114,101,110,116,78,111,100,101,59,116,38,38,40,116,46,115,101,108,101,99,116,101,100,73,110,100,101,120,44,116,46,112,97,114,101,110,116,78,111,100,101,38,38,116,46,112,97,114,101,110,116,78,111,100,101,46,115,101,108,101,99,116,101,100,73,110,100,101,120,41,125,125,41,44,107,46,101,97,99,104,40,91,34,116,97,98,73,110,100,101,120,34,44,34,114,101,97,100,79,110,108,121,34,44,34,109,97,120,76,101,110,103,116,104,34,44,34,99,101,108,108,83,112,97,99,105,110,103,34,44,34,99,101,108,108,80,97,100,100,105,110,103,34,44,34,114,111,119,83,112,97,110,34,44,34,99,111,108,83,112,97,110,34,44,34,117,115,101,77,97,112,34,44,34,102,114,97,109,101,66,111,114,100,101,114,34,44,34,99,111,110,116,101,110,116,69,100,105,116,97,98,108,101,34,93,44,102,117,110,99,116,105,111,110,40,41,123,107,46,112,114,111,112,70,105,120,91,116,104,105,115,46,116,111,76,111,119,101,114,67,97,115,101,40,41,93,61,116,104,105,115,125,41,44,107,46,102,110,46,101,120,116,101,110,100,40,123,97,100,100,67,108,97,115,115,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,44,110,44,114,44,105,44,111,44,97,44,115,44,117,61,48,59,105,102,40,109,40,116,41,41,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,101,41,123,107,40,116,104,105,115,41,46,97,100,100,67,108,97,115,115,40,116,46,99,97,108,108,40,116,104,105,115,44,101,44,120,116,40,116,104,105,115,41,41,41,125,41,59,105,102,40,40,101,61,98,116,40,116,41,41,46,108,101,110,103,116,104,41,119,104,105,108,101,40,110,61,116,104,105,115,91,117,43,43,93,41,105,102,40,105,61,120,116,40,110,41,44,114,61,49,61,61,61,110,46,110,111,100,101,84,121,112,101,38,38,34,32,34,43,109,116,40,105,41,43,34,32,34,41,123,97,61,48,59,119,104,105,108,101,40,111,61,101,91,97,43,43,93,41,114,46,105,110,100,101,120,79,102,40,34,32,34,43,111,43,34,32,34,41,60,48,38,38,40,114,43,61,111,43,34,32,34,41,59,105,33,61,61,40,115,61,109,116,40,114,41,41,38,38,110,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,115,41,125,114,101,116,117,114,110,32,116,104,105,115,125,44,114,101,109,111,118,101,67,108,97,115,115,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,44,110,44,114,44,105,44,111,44,97,44,115,44,117,61,48,59,105,102,40,109,40,116,41,41,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,101,41,123,107,40,116,104,105,115,41,46,114,101,109,111,118,101,67,108,97,115,115,40,116,46,99,97,108,108,40,116,104,105,115,44,101,44,120,116,40,116,104,105,115,41,41,41,125,41,59,105,102,40,33,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,114,101,116,117,114,110,32,116,104,105,115,46,97,116,116,114,40,34,99,108,97,115,115,34,44,34,34,41,59,105,102,40,40,101,61,98,116,40,116,41,41,46,108,101,110,103,116,104,41,119,104,105,108,101,40,110,61,116,104,105,115,91,117,43,43,93,41,105,102,40,105,61,120,116,40,110,41,44,114,61,49,61,61,61,110,46,110,111,100,101,84,121,112,101,38,38,34,32,34,43,109,116,40,105,41,43,34,32,34,41,123,97,61,48,59,119,104,105,108,101,40,111,61,101,91,97,43,43,93,41,119,104,105,108,101,40,45,49,60,114,46,105,110,100,101,120,79,102,40,34,32,34,43,111,43,34,32,34,41,41,114,61,114,46,114,101,112,108,97,99,101,40,34,32,34,43,111,43,34,32,34,44,34,32,34,41,59,105,33,61,61,40,115,61,109,116,40,114,41,41,38,38,110,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,115,41,125,114,101,116,117,114,110,32,116,104,105,115,125,44,116,111,103,103,108,101,67,108,97,115,115,58,102,117,110,99,116,105,111,110,40,105,44,116,41,123,118,97,114,32,111,61,116,121,112,101,111,102,32,105,44,97,61,34,115,116,114,105,110,103,34,61,61,61,111,124,124,65,114,114,97,121,46,105,115,65,114,114,97,121,40,105,41,59,114,101,116,117,114,110,34,98,111,111,108,101,97,110,34,61,61,116,121,112,101,111,102,32,116,38,38,97,63,116,63,116,104,105,115,46,97,100,100,67,108,97,115,115,40,105,41,58,116,104,105,115,46,114,101,109,111,118,101,67,108,97,115,115,40,105,41,58,109,40,105,41,63,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,101,41,123,107,40,116,104,105,115,41,46,116,111,103,103,108,101,67,108,97,115,115,40,105,46,99,97,108,108,40,116,104,105,115,44,101,44,120,116,40,116,104,105,115,41,44,116,41,44,116,41,125,41,58,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,44,116,44,110,44,114,59,105,102,40,97,41,123,116,61,48,44,110,61,107,40,116,104,105,115,41,44,114,61,98,116,40,105,41,59,119,104,105,108,101,40,101,61,114,91,116,43,43,93,41,110,46,104,97,115,67,108,97,115,115,40,101,41,63,110,46,114,101,109,111,118,101,67,108,97,115,115,40,101,41,58,110,46,97,100,100,67,108,97,115,115,40,101,41,125,101,108,115,101,32,118,111,105,100,32,48,33,61,61,105,38,38,34,98,111,111,108,101,97,110,34,33,61,61,111,124,124,40,40,101,61,120,116,40,116,104,105,115,41,41,38,38,81,46,115,101,116,40,116,104,105,115,44,34,95,95,99,108,97,115,115,78,97,109,101,95,95,34,44,101,41,44,116,104,105,115,46,115,101,116,65,116,116,114,105,98,117,116,101,38,38,116,104,105,115,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,101,124,124,33,49,61,61,61,105,63,34,34,58,81,46,103,101,116,40,116,104,105,115,44,34,95,95,99,108,97,115,115,78,97,109,101,95,95,34,41,124,124,34,34,41,41,125,41,125,44,104,97,115,67,108,97,115,115,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,44,110,44,114,61,48,59,116,61,34,32,34,43,101,43,34,32,34,59,119,104,105,108,101,40,110,61,116,104,105,115,91,114,43,43,93,41,105,102,40,49,61,61,61,110,46,110,111,100,101,84,121,112,101,38,38,45,49,60,40,34,32,34,43,109,116,40,120,116,40,110,41,41,43,34,32,34,41,46,105,110,100,101,120,79,102,40,116,41,41,114,101,116,117,114,110,33,48,59,114,101,116,117,114,110,33,49,125,125,41,59,118,97,114,32,119,116,61,47,92,114,47,103,59,107,46,102,110,46,101,120,116,101,110,100,40,123,118,97,108,58,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,114,44,101,44,105,44,116,61,116,104,105,115,91,48,93,59,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,105,61,109,40,110,41,44,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,59,49,61,61,61,116,104,105,115,46,110,111,100,101,84,121,112,101,38,38,40,110,117,108,108,61,61,40,116,61,105,63,110,46,99,97,108,108,40,116,104,105,115,44,101,44,107,40,116,104,105,115,41,46,118,97,108,40,41,41,58,110,41,63,116,61,34,34,58,34,110,117,109,98,101,114,34,61,61,116,121,112,101,111,102,32,116,63,116,43,61,34,34,58,65,114,114,97,121,46,105,115,65,114,114,97,121,40,116,41,38,38,40,116,61,107,46,109,97,112,40,116,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,101,63,34,34,58,101,43,34,34,125,41,41,44,40,114,61,107,46,118,97,108,72,111,111,107,115,91,116,104,105,115,46,116,121,112,101,93,124,124,107,46,118,97,108,72,111,111,107,115,91,116,104,105,115,46,110,111,100,101,78,97,109,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,93,41,38,38,34,115,101,116,34,105,110,32,114,38,38,118,111,105,100,32,48,33,61,61,114,46,115,101,116,40,116,104,105,115,44,116,44,34,118,97,108,117,101,34,41,124,124,40,116,104,105,115,46,118,97,108,117,101,61,116,41,41,125,41,41,58,116,63,40,114,61,107,46,118,97,108,72,111,111,107,115,91,116,46,116,121,112,101,93,124,124,107,46,118,97,108,72,111,111,107,115,91,116,46,110,111,100,101,78,97,109,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,93,41,38,38,34,103,101,116,34,105,110,32,114,38,38,118,111,105,100,32,48,33,61,61,40,101,61,114,46,103,101,116,40,116,44,34,118,97,108,117,101,34,41,41,63,101,58,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,40,101,61,116,46,118,97,108,117,101,41,63,101,46,114,101,112,108,97,99,101,40,119,116,44,34,34,41,58,110,117,108,108,61,61,101,63,34,34,58,101,58,118,111,105,100,32,48,125,125,41,44,107,46,101,120,116,101,110,100,40,123,118,97,108,72,111,111,107,115,58,123,111,112,116,105,111,110,58,123,103,101,116,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,107,46,102,105,110,100,46,97,116,116,114,40,101,44,34,118,97,108,117,101,34,41,59,114,101,116,117,114,110,32,110,117,108,108,33,61,116,63,116,58,109,116,40,107,46,116,101,120,116,40,101,41,41,125,125,44,115,101,108,101,99,116,58,123,103,101,116,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,44,110,44,114,44,105,61,101,46,111,112,116,105,111,110,115,44,111,61,101,46,115,101,108,101,99,116,101,100,73,110,100,101,120,44,97,61,34,115,101,108,101,99,116,45,111,110,101,34,61,61,61,101,46,116,121,112,101,44,115,61,97,63,110,117,108,108,58,91,93,44,117,61,97,63,111,43,49,58,105,46,108,101,110,103,116,104,59,102,111,114,40,114,61,111,60,48,63,117,58,97,63,111,58,48,59,114,60,117,59,114,43,43,41,105,102,40,40,40,110,61,105,91,114,93,41,46,115,101,108,101,99,116,101,100,124,124,114,61,61,61,111,41,38,38,33,110,46,100,105,115,97,98,108,101,100,38,38,40,33,110,46,112,97,114,101,110,116,78,111,100,101,46,100,105,115,97,98,108,101,100,124,124,33,65,40,110,46,112,97,114,101,110,116,78,111,100,101,44,34,111,112,116,103,114,111,117,112,34,41,41,41,123,105,102,40,116,61,107,40,110,41,46,118,97,108,40,41,44,97,41,114,101,116,117,114,110,32,116,59,115,46,112,117,115,104,40,116,41,125,114,101,116,117,114,110,32,115,125,44,115,101,116,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,44,114,44,105,61,101,46,111,112,116,105,111,110,115,44,111,61,107,46,109,97,107,101,65,114,114,97,121,40,116,41,44,97,61,105,46,108,101,110,103,116,104,59,119,104,105,108,101,40,97,45,45,41,40,40,114,61,105,91,97,93,41,46,115,101,108,101,99,116,101,100,61,45,49,60,107,46,105,110,65,114,114,97,121,40,107,46,118,97,108,72,111,111,107,115,46,111,112,116,105,111,110,46,103,101,116,40,114,41,44,111,41,41,38,38,40,110,61,33,48,41,59,114,101,116,117,114,110,32,110,124,124,40,101,46,115,101,108,101,99,116,101,100,73,110,100,101,120,61,45,49,41,44,111,125,125,125,125,41,44,107,46,101,97,99,104,40,91,34,114,97,100,105,111,34,44,34,99,104,101,99,107,98,111,120,34,93,44,102,117,110,99,116,105,111,110,40,41,123,107,46,118,97,108,72,111,111,107,115,91,116,104,105,115,93,61,123,115,101,116,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,102,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,116,41,41,114,101,116,117,114,110,32,101,46,99,104,101,99,107,101,100,61,45,49,60,107,46,105,110,65,114,114,97,121,40,107,40,101,41,46,118,97,108,40,41,44,116,41,125,125,44,121,46,99,104,101,99,107,79,110,124,124,40,107,46,118,97,108,72,111,111,107,115,91,116,104,105,115,93,46,103,101,116,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,61,101,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,118,97,108,117,101,34,41,63,34,111,110,34,58,101,46,118,97,108,117,101,125,41,125,41,44,121,46,102,111,99,117,115,105,110,61,34,111,110,102,111,99,117,115,105,110,34,105,110,32,67,59,118,97,114,32,84,116,61,47,94,40,63,58,102,111,99,117,115,105,110,102,111,99,117,115,124,102,111,99,117,115,111,117,116,98,108,117,114,41,36,47,44,67,116,61,102,117,110,99,116,105,111,110,40,101,41,123,101,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,125,59,107,46,101,120,116,101,110,100,40,107,46,101,118,101,110,116,44,123,116,114,105,103,103,101,114,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,114,41,123,118,97,114,32,105,44,111,44,97,44,115,44,117,44,108,44,99,44,102,44,112,61,91,110,124,124,69,93,44,100,61,118,46,99,97,108,108,40,101,44,34,116,121,112,101,34,41,63,101,46,116,121,112,101,58,101,44,104,61,118,46,99,97,108,108,40,101,44,34,110,97,109,101,115,112,97,99,101,34,41,63,101,46,110,97,109,101,115,112,97,99,101,46,115,112,108,105,116,40,34,46,34,41,58,91,93,59,105,102,40,111,61,102,61,97,61,110,61,110,124,124,69,44,51,33,61,61,110,46,110,111,100,101,84,121,112,101,38,38,56,33,61,61,110,46,110,111,100,101,84,121,112,101,38,38,33,84,116,46,116,101,115,116,40,100,43,107,46,101,118,101,110,116,46,116,114,105,103,103,101,114,101,100,41,38,38,40,45,49,60,100,46,105,110,100,101,120,79,102,40,34,46,34,41,38,38,40,100,61,40,104,61,100,46,115,112,108,105,116,40,34,46,34,41,41,46,115,104,105,102,116,40,41,44,104,46,115,111,114,116,40,41,41,44,117,61,100,46,105,110,100,101,120,79,102,40,34,58,34,41,60,48,38,38,34,111,110,34,43,100,44,40,101,61,101,91,107,46,101,120,112,97,110,100,111,93,63,101,58,110,101,119,32,107,46,69,118,101,110,116,40,100,44,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,101,38,38,101,41,41,46,105,115,84,114,105,103,103,101,114,61,114,63,50,58,51,44,101,46,110,97,109,101,115,112,97,99,101,61,104,46,106,111,105,110,40,34,46,34,41,44,101,46,114,110,97,109,101,115,112,97,99,101,61,101,46,110,97,109,101,115,112,97,99,101,63,110,101,119,32,82,101,103,69,120,112,40,34,40,94,124,92,92,46,41,34,43,104,46,106,111,105,110,40,34,92,92,46,40,63,58,46,42,92,92,46,124,41,34,41,43,34,40,92,92,46,124,36,41,34,41,58,110,117,108,108,44,101,46,114,101,115,117,108,116,61,118,111,105,100,32,48,44,101,46,116,97,114,103,101,116,124,124,40,101,46,116,97,114,103,101,116,61,110,41,44,116,61,110,117,108,108,61,61,116,63,91,101,93,58,107,46,109,97,107,101,65,114,114,97,121,40,116,44,91,101,93,41,44,99,61,107,46,101,118,101,110,116,46,115,112,101,99,105,97,108,91,100,93,124,124,123,125,44,114,124,124,33,99,46,116,114,105,103,103,101,114,124,124,33,49,33,61,61,99,46,116,114,105,103,103,101,114,46,97,112,112,108,121,40,110,44,116,41,41,41,123,105,102,40,33,114,38,38,33,99,46,110,111,66,117,98,98,108,101,38,38,33,120,40,110,41,41,123,102,111,114,40,115,61,99,46,100,101,108,101,103,97,116,101,84,121,112,101,124,124,100,44,84,116,46,116,101,115,116,40,115,43,100,41,124,124,40,111,61,111,46,112,97,114,101,110,116,78,111,100,101,41,59,111,59,111,61,111,46,112,97,114,101,110,116,78,111,100,101,41,112,46,112,117,115,104,40,111,41,44,97,61,111,59,97,61,61,61,40,110,46,111,119,110,101,114,68,111,99,117,109,101,110,116,124,124,69,41,38,38,112,46,112,117,115,104,40,97,46,100,101,102,97,117,108,116,86,105,101,119,124,124,97,46,112,97,114,101,110,116,87,105,110,100,111,119,124,124,67,41,125,105,61,48,59,119,104,105,108,101,40,40,111,61,112,91,105,43,43,93,41,38,38,33,101,46,105,115,80,114,111,112,97,103,97,116,105,111,110,83,116,111,112,112,101,100,40,41,41,102,61,111,44,101,46,116,121,112,101,61,49,60,105,63,115,58,99,46,98,105,110,100,84,121,112,101,124,124,100,44,40,108,61,40,81,46,103,101,116,40,111,44,34,101,118,101,110,116,115,34,41,124,124,123,125,41,91,101,46,116,121,112,101,93,38,38,81,46,103,101,116,40,111,44,34,104,97,110,100,108,101,34,41,41,38,38,108,46,97,112,112,108,121,40,111,44,116,41,44,40,108,61,117,38,38,111,91,117,93,41,38,38,108,46,97,112,112,108,121,38,38,71,40,111,41,38,38,40,101,46,114,101,115,117,108,116,61,108,46,97,112,112,108,121,40,111,44,116,41,44,33,49,61,61,61,101,46,114,101,115,117,108,116,38,38,101,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,41,59,114,101,116,117,114,110,32,101,46,116,121,112,101,61,100,44,114,124,124,101,46,105,115,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,40,41,124,124,99,46,95,100,101,102,97,117,108,116,38,38,33,49,33,61,61,99,46,95,100,101,102,97,117,108,116,46,97,112,112,108,121,40,112,46,112,111,112,40,41,44,116,41,124,124,33,71,40,110,41,124,124,117,38,38,109,40,110,91,100,93,41,38,38,33,120,40,110,41,38,38,40,40,97,61,110,91,117,93,41,38,38,40,110,91,117,93,61,110,117,108,108,41,44,107,46,101,118,101,110,116,46,116,114,105,103,103,101,114,101,100,61,100,44,101,46,105,115,80,114,111,112,97,103,97,116,105,111,110,83,116,111,112,112,101,100,40,41,38,38,102,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,100,44,67,116,41,44,110,91,100,93,40,41,44,101,46,105,115,80,114,111,112,97,103,97,116,105,111,110,83,116,111,112,112,101,100,40,41,38,38,102,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,40,100,44,67,116,41,44,107,46,101,118,101,110,116,46,116,114,105,103,103,101,114,101,100,61,118,111,105,100,32,48,44,97,38,38,40,110,91,117,93,61,97,41,41,44,101,46,114,101,115,117,108,116,125,125,44,115,105,109,117,108,97,116,101,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,61,107,46,101,120,116,101,110,100,40,110,101,119,32,107,46,69,118,101,110,116,44,110,44,123,116,121,112,101,58,101,44,105,115,83,105,109,117,108,97,116,101,100,58,33,48,125,41,59,107,46,101,118,101,110,116,46,116,114,105,103,103,101,114,40,114,44,110,117,108,108,44,116,41,125,125,41,44,107,46,102,110,46,101,120,116,101,110,100,40,123,116,114,105,103,103,101,114,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,107,46,101,118,101,110,116,46,116,114,105,103,103,101,114,40,101,44,116,44,116,104,105,115,41,125,41,125,44,116,114,105,103,103,101,114,72,97,110,100,108,101,114,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,61,116,104,105,115,91,48,93,59,105,102,40,110,41,114,101,116,117,114,110,32,107,46,101,118,101,110,116,46,116,114,105,103,103,101,114,40,101,44,116,44,110,44,33,48,41,125,125,41,44,121,46,102,111,99,117,115,105,110,124,124,107,46,101,97,99,104,40,123,102,111,99,117,115,58,34,102,111,99,117,115,105,110,34,44,98,108,117,114,58,34,102,111,99,117,115,111,117,116,34,125,44,102,117,110,99,116,105,111,110,40,110,44,114,41,123,118,97,114,32,105,61,102,117,110,99,116,105,111,110,40,101,41,123,107,46,101,118,101,110,116,46,115,105,109,117,108,97,116,101,40,114,44,101,46,116,97,114,103,101,116,44,107,46,101,118,101,110,116,46,102,105,120,40,101,41,41,125,59,107,46,101,118,101,110,116,46,115,112,101,99,105,97,108,91,114,93,61,123,115,101,116,117,112,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,111,119,110,101,114,68,111,99,117,109,101,110,116,124,124,116,104,105,115,44,116,61,81,46,97,99,99,101,115,115,40,101,44,114,41,59,116,124,124,101,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,110,44,105,44,33,48,41,44,81,46,97,99,99,101,115,115,40,101,44,114,44,40,116,124,124,48,41,43,49,41,125,44,116,101,97,114,100,111,119,110,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,111,119,110,101,114,68,111,99,117,109,101,110,116,124,124,116,104,105,115,44,116,61,81,46,97,99,99,101,115,115,40,101,44,114,41,45,49,59,116,63,81,46,97,99,99,101,115,115,40,101,44,114,44,116,41,58,40,101,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,40,110,44,105,44,33,48,41,44,81,46,114,101,109,111,118,101,40,101,44,114,41,41,125,125,125,41,59,118,97,114,32,69,116,61,67,46,108,111,99,97,116,105,111,110,44,107,116,61,68,97,116,101,46,110,111,119,40,41,44,83,116,61,47,92,63,47,59,107,46,112,97,114,115,101,88,77,76,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,59,105,102,40,33,101,124,124,34,115,116,114,105,110,103,34,33,61,116,121,112,101,111,102,32,101,41,114,101,116,117,114,110,32,110,117,108,108,59,116,114,121,123,116,61,40,110,101,119,32,67,46,68,79,77,80,97,114,115,101,114,41,46,112,97,114,115,101,70,114,111,109,83,116,114,105,110,103,40,101,44,34,116,101,120,116,47,120,109,108,34,41,125,99,97,116,99,104,40,101,41,123,116,61,118,111,105,100,32,48,125,114,101,116,117,114,110,32,116,38,38,33,116,46,103,101,116,69,108,101,109,101,110,116,115,66,121,84,97,103,78,97,109,101,40,34,112,97,114,115,101,114,101,114,114,111,114,34,41,46,108,101,110,103,116,104,124,124,107,46,101,114,114,111,114,40,34,73,110,118,97,108,105,100,32,88,77,76,58,32,34,43,101,41,44,116,125,59,118,97,114,32,78,116,61,47,92,91,92,93,36,47,44,65,116,61,47,92,114,63,92,110,47,103,44,68,116,61,47,94,40,63,58,115,117,98,109,105,116,124,98,117,116,116,111,110,124,105,109,97,103,101,124,114,101,115,101,116,124,102,105,108,101,41,36,47,105,44,106,116,61,47,94,40,63,58,105,110,112,117,116,124,115,101,108,101,99,116,124,116,101,120,116,97,114,101,97,124,107,101,121,103,101,110,41,47,105,59,102,117,110,99,116,105,111,110,32,113,116,40,110,44,101,44,114,44,105,41,123,118,97,114,32,116,59,105,102,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,101,41,41,107,46,101,97,99,104,40,101,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,124,124,78,116,46,116,101,115,116,40,110,41,63,105,40,110,44,116,41,58,113,116,40,110,43,34,91,34,43,40,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,116,38,38,110,117,108,108,33,61,116,63,101,58,34,34,41,43,34,93,34,44,116,44,114,44,105,41,125,41,59,101,108,115,101,32,105,102,40,114,124,124,34,111,98,106,101,99,116,34,33,61,61,119,40,101,41,41,105,40,110,44,101,41,59,101,108,115,101,32,102,111,114,40,116,32,105,110,32,101,41,113,116,40,110,43,34,91,34,43,116,43,34,93,34,44,101,91,116,93,44,114,44,105,41,125,107,46,112,97,114,97,109,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,44,114,61,91,93,44,105,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,61,109,40,116,41,63,116,40,41,58,116,59,114,91,114,46,108,101,110,103,116,104,93,61,101,110,99,111,100,101,85,82,73,67,111,109,112,111,110,101,110,116,40,101,41,43,34,61,34,43,101,110,99,111,100,101,85,82,73,67,111,109,112,111,110,101,110,116,40,110,117,108,108,61,61,110,63,34,34,58,110,41,125,59,105,102,40,110,117,108,108,61,61,101,41,114,101,116,117,114,110,34,34,59,105,102,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,101,41,124,124,101,46,106,113,117,101,114,121,38,38,33,107,46,105,115,80,108,97,105,110,79,98,106,101,99,116,40,101,41,41,107,46,101,97,99,104,40,101,44,102,117,110,99,116,105,111,110,40,41,123,105,40,116,104,105,115,46,110,97,109,101,44,116,104,105,115,46,118,97,108,117,101,41,125,41,59,101,108,115,101,32,102,111,114,40,110,32,105,110,32,101,41,113,116,40,110,44,101,91,110,93,44,116,44,105,41,59,114,101,116,117,114,110,32,114,46,106,111,105,110,40,34,38,34,41,125,44,107,46,102,110,46,101,120,116,101,110,100,40,123,115,101,114,105,97,108,105,122,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,107,46,112,97,114,97,109,40,116,104,105,115,46,115,101,114,105,97,108,105,122,101,65,114,114,97,121,40,41,41,125,44,115,101,114,105,97,108,105,122,101,65,114,114,97,121,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,109,97,112,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,107,46,112,114,111,112,40,116,104,105,115,44,34,101,108,101,109,101,110,116,115,34,41,59,114,101,116,117,114,110,32,101,63,107,46,109,97,107,101,65,114,114,97,121,40,101,41,58,116,104,105,115,125,41,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,116,121,112,101,59,114,101,116,117,114,110,32,116,104,105,115,46,110,97,109,101,38,38,33,107,40,116,104,105,115,41,46,105,115,40,34,58,100,105,115,97,98,108,101,100,34,41,38,38,106,116,46,116,101,115,116,40,116,104,105,115,46,110,111,100,101,78,97,109,101,41,38,38,33,68,116,46,116,101,115,116,40,101,41,38,38,40,116,104,105,115,46,99,104,101,99,107,101,100,124,124,33,112,101,46,116,101,115,116,40,101,41,41,125,41,46,109,97,112,40,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,61,107,40,116,104,105,115,41,46,118,97,108,40,41,59,114,101,116,117,114,110,32,110,117,108,108,61,61,110,63,110,117,108,108,58,65,114,114,97,121,46,105,115,65,114,114,97,121,40,110,41,63,107,46,109,97,112,40,110,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,123,110,97,109,101,58,116,46,110,97,109,101,44,118,97,108,117,101,58,101,46,114,101,112,108,97,99,101,40,65,116,44,34,92,114,92,110,34,41,125,125,41,58,123,110,97,109,101,58,116,46,110,97,109,101,44,118,97,108,117,101,58,110,46,114,101,112,108,97,99,101,40,65,116,44,34,92,114,92,110,34,41,125,125,41,46,103,101,116,40,41,125,125,41,59,118,97,114,32,76,116,61,47,37,50,48,47,103,44,72,116,61,47,35,46,42,36,47,44,79,116,61,47,40,91,63,38,93,41,95,61,91,94,38,93,42,47,44,80,116,61,47,94,40,46,42,63,41,58,91,32,92,116,93,42,40,91,94,92,114,92,110,93,42,41,36,47,103,109,44,82,116,61,47,94,40,63,58,71,69,84,124,72,69,65,68,41,36,47,44,77,116,61,47,94,92,47,92,47,47,44,73,116,61,123,125,44,87,116,61,123,125,44,36,116,61,34,42,47,34,46,99,111,110,99,97,116,40,34,42,34,41,44,70,116,61,69,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,97,34,41,59,102,117,110,99,116,105,111,110,32,66,116,40,111,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,101,44,116,41,123,34,115,116,114,105,110,103,34,33,61,116,121,112,101,111,102,32,101,38,38,40,116,61,101,44,101,61,34,42,34,41,59,118,97,114,32,110,44,114,61,48,44,105,61,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,46,109,97,116,99,104,40,82,41,124,124,91,93,59,105,102,40,109,40,116,41,41,119,104,105,108,101,40,110,61,105,91,114,43,43,93,41,34,43,34,61,61,61,110,91,48,93,63,40,110,61,110,46,115,108,105,99,101,40,49,41,124,124,34,42,34,44,40,111,91,110,93,61,111,91,110,93,124,124,91,93,41,46,117,110,115,104,105,102,116,40,116,41,41,58,40,111,91,110,93,61,111,91,110,93,124,124,91,93,41,46,112,117,115,104,40,116,41,125,125,102,117,110,99,116,105,111,110,32,95,116,40,116,44,105,44,111,44,97,41,123,118,97,114,32,115,61,123,125,44,117,61,116,61,61,61,87,116,59,102,117,110,99,116,105,111,110,32,108,40,101,41,123,118,97,114,32,114,59,114,101,116,117,114,110,32,115,91,101,93,61,33,48,44,107,46,101,97,99,104,40,116,91,101,93,124,124,91,93,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,61,116,40,105,44,111,44,97,41,59,114,101,116,117,114,110,34,115,116,114,105,110,103,34,33,61,116,121,112,101,111,102,32,110,124,124,117,124,124,115,91,110,93,63,117,63,33,40,114,61,110,41,58,118,111,105,100,32,48,58,40,105,46,100,97,116,97,84,121,112,101,115,46,117,110,115,104,105,102,116,40,110,41,44,108,40,110,41,44,33,49,41,125,41,44,114,125,114,101,116,117,114,110,32,108,40,105,46,100,97,116,97,84,121,112,101,115,91,48,93,41,124,124,33,115,91,34,42,34,93,38,38,108,40,34,42,34,41,125,102,117,110,99,116,105,111,110,32,122,116,40,101,44,116,41,123,118,97,114,32,110,44,114,44,105,61,107,46,97,106,97,120,83,101,116,116,105,110,103,115,46,102,108,97,116,79,112,116,105,111,110,115,124,124,123,125,59,102,111,114,40,110,32,105,110,32,116,41,118,111,105,100,32,48,33,61,61,116,91,110,93,38,38,40,40,105,91,110,93,63,101,58,114,124,124,40,114,61,123,125,41,41,91,110,93,61,116,91,110,93,41,59,114,101,116,117,114,110,32,114,38,38,107,46,101,120,116,101,110,100,40,33,48,44,101,44,114,41,44,101,125,70,116,46,104,114,101,102,61,69,116,46,104,114,101,102,44,107,46,101,120,116,101,110,100,40,123,97,99,116,105,118,101,58,48,44,108,97,115,116,77,111,100,105,102,105,101,100,58,123,125,44,101,116,97,103,58,123,125,44,97,106,97,120,83,101,116,116,105,110,103,115,58,123,117,114,108,58,69,116,46,104,114,101,102,44,116,121,112,101,58,34,71,69,84,34,44,105,115,76,111,99,97,108,58,47,94,40,63,58,97,98,111,117,116,124,97,112,112,124,97,112,112,45,115,116,111,114,97,103,101,124,46,43,45,101,120,116,101,110,115,105,111,110,124,102,105,108,101,124,114,101,115,124,119,105,100,103,101,116,41,58,36,47,46,116,101,115,116,40,69,116,46,112,114,111,116,111,99,111,108,41,44,103,108,111,98,97,108,58,33,48,44,112,114,111,99,101,115,115,68,97,116,97,58,33,48,44,97,115,121,110,99,58,33,48,44,99,111,110,116,101,110,116,84,121,112,101,58,34,97,112,112,108,105,99,97,116,105,111,110,47,120,45,119,119,119,45,102,111,114,109,45,117,114,108,101,110,99,111,100,101,100,59,32,99,104,97,114,115,101,116,61,85,84,70,45,56,34,44,97,99,99,101,112,116,115,58,123,34,42,34,58,36,116,44,116,101,120,116,58,34,116,101,120,116,47,112,108,97,105,110,34,44,104,116,109,108,58,34,116,101,120,116,47,104,116,109,108,34,44,120,109,108,58,34,97,112,112,108,105,99,97,116,105,111,110,47,120,109,108,44,32,116,101,120,116,47,120,109,108,34,44,106,115,111,110,58,34,97,112,112,108,105,99,97,116,105,111,110,47,106,115,111,110,44,32,116,101,120,116,47,106,97,118,97,115,99,114,105,112,116,34,125,44,99,111,110,116,101,110,116,115,58,123,120,109,108,58,47,92,98,120,109,108,92,98,47,44,104,116,109,108,58,47,92,98,104,116,109,108,47,44,106,115,111,110,58,47,92,98,106,115,111,110,92,98,47,125,44,114,101,115,112,111,110,115,101,70,105,101,108,100,115,58,123,120,109,108,58,34,114,101,115,112,111,110,115,101,88,77,76,34,44,116,101,120,116,58,34,114,101,115,112,111,110,115,101,84,101,120,116,34,44,106,115,111,110,58,34,114,101,115,112,111,110,115,101,74,83,79,78,34,125,44,99,111,110,118,101,114,116,101,114,115,58,123,34,42,32,116,101,120,116,34,58,83,116,114,105,110,103,44,34,116,101,120,116,32,104,116,109,108,34,58,33,48,44,34,116,101,120,116,32,106,115,111,110,34,58,74,83,79,78,46,112,97,114,115,101,44,34,116,101,120,116,32,120,109,108,34,58,107,46,112,97,114,115,101,88,77,76,125,44,102,108,97,116,79,112,116,105,111,110,115,58,123,117,114,108,58,33,48,44,99,111,110,116,101,120,116,58,33,48,125,125,44,97,106,97,120,83,101,116,117,112,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,116,63,122,116,40,122,116,40,101,44,107,46,97,106,97,120,83,101,116,116,105,110,103,115,41,44,116,41,58,122,116,40,107,46,97,106,97,120,83,101,116,116,105,110,103,115,44,101,41,125,44,97,106,97,120,80,114,101,102,105,108,116,101,114,58,66,116,40,73,116,41,44,97,106,97,120,84,114,97,110,115,112,111,114,116,58,66,116,40,87,116,41,44,97,106,97,120,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,101,38,38,40,116,61,101,44,101,61,118,111,105,100,32,48,41,44,116,61,116,124,124,123,125,59,118,97,114,32,99,44,102,44,112,44,110,44,100,44,114,44,104,44,103,44,105,44,111,44,118,61,107,46,97,106,97,120,83,101,116,117,112,40,123,125,44,116,41,44,121,61,118,46,99,111,110,116,101,120,116,124,124,118,44,109,61,118,46,99,111,110,116,101,120,116,38,38,40,121,46,110,111,100,101,84,121,112,101,124,124,121,46,106,113,117,101,114,121,41,63,107,40,121,41,58,107,46,101,118,101,110,116,44,120,61,107,46,68,101,102,101,114,114,101,100,40,41,44,98,61,107,46,67,97,108,108,98,97,99,107,115,40,34,111,110,99,101,32,109,101,109,111,114,121,34,41,44,119,61,118,46,115,116,97,116,117,115,67,111,100,101,124,124,123,125,44,97,61,123,125,44,115,61,123,125,44,117,61,34,99,97,110,99,101,108,101,100,34,44,84,61,123,114,101,97,100,121,83,116,97,116,101,58,48,44,103,101,116,82,101,115,112,111,110,115,101,72,101,97,100,101,114,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,59,105,102,40,104,41,123,105,102,40,33,110,41,123,110,61,123,125,59,119,104,105,108,101,40,116,61,80,116,46,101,120,101,99,40,112,41,41,110,91,116,91,49,93,46,116,111,76,111,119,101,114,67,97,115,101,40,41,43,34,32,34,93,61,40,110,91,116,91,49,93,46,116,111,76,111,119,101,114,67,97,115,101,40,41,43,34,32,34,93,124,124,91,93,41,46,99,111,110,99,97,116,40,116,91,50,93,41,125,116,61,110,91,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,43,34,32,34,93,125,114,101,116,117,114,110,32,110,117,108,108,61,61,116,63,110,117,108,108,58,116,46,106,111,105,110,40,34,44,32,34,41,125,44,103,101,116,65,108,108,82,101,115,112,111,110,115,101,72,101,97,100,101,114,115,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,104,63,112,58,110,117,108,108,125,44,115,101,116,82,101,113,117,101,115,116,72,101,97,100,101,114,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,104,38,38,40,101,61,115,91,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,93,61,115,91,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,93,124,124,101,44,97,91,101,93,61,116,41,44,116,104,105,115,125,44,111,118,101,114,114,105,100,101,77,105,109,101,84,121,112,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,104,38,38,40,118,46,109,105,109,101,84,121,112,101,61,101,41,44,116,104,105,115,125,44,115,116,97,116,117,115,67,111,100,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,59,105,102,40,101,41,105,102,40,104,41,84,46,97,108,119,97,121,115,40,101,91,84,46,115,116,97,116,117,115,93,41,59,101,108,115,101,32,102,111,114,40,116,32,105,110,32,101,41,119,91,116,93,61,91,119,91,116,93,44,101,91,116,93,93,59,114,101,116,117,114,110,32,116,104,105,115,125,44,97,98,111,114,116,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,124,124,117,59,114,101,116,117,114,110,32,99,38,38,99,46,97,98,111,114,116,40,116,41,44,108,40,48,44,116,41,44,116,104,105,115,125,125,59,105,102,40,120,46,112,114,111,109,105,115,101,40,84,41,44,118,46,117,114,108,61,40,40,101,124,124,118,46,117,114,108,124,124,69,116,46,104,114,101,102,41,43,34,34,41,46,114,101,112,108,97,99,101,40,77,116,44,69,116,46,112,114,111,116,111,99,111,108,43,34,47,47,34,41,44,118,46,116,121,112,101,61,116,46,109,101,116,104,111,100,124,124,116,46,116,121,112,101,124,124,118,46,109,101,116,104,111,100,124,124,118,46,116,121,112,101,44,118,46,100,97,116,97,84,121,112,101,115,61,40,118,46,100,97,116,97,84,121,112,101,124,124,34,42,34,41,46,116,111,76,111,119,101,114,67,97,115,101,40,41,46,109,97,116,99,104,40,82,41,124,124,91,34,34,93,44,110,117,108,108,61,61,118,46,99,114,111,115,115,68,111,109,97,105,110,41,123,114,61,69,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,97,34,41,59,116,114,121,123,114,46,104,114,101,102,61,118,46,117,114,108,44,114,46,104,114,101,102,61,114,46,104,114,101,102,44,118,46,99,114,111,115,115,68,111,109,97,105,110,61,70,116,46,112,114,111,116,111,99,111,108,43,34,47,47,34,43,70,116,46,104,111,115,116,33,61,114,46,112,114,111,116,111,99,111,108,43,34,47,47,34,43,114,46,104,111,115,116,125,99,97,116,99,104,40,101,41,123,118,46,99,114,111,115,115,68,111,109,97,105,110,61,33,48,125,125,105,102,40,118,46,100,97,116,97,38,38,118,46,112,114,111,99,101,115,115,68,97,116,97,38,38,34,115,116,114,105,110,103,34,33,61,116,121,112,101,111,102,32,118,46,100,97,116,97,38,38,40,118,46,100,97,116,97,61,107,46,112,97,114,97,109,40,118,46,100,97,116,97,44,118,46,116,114,97,100,105,116,105,111,110,97,108,41,41,44,95,116,40,73,116,44,118,44,116,44,84,41,44,104,41,114,101,116,117,114,110,32,84,59,102,111,114,40,105,32,105,110,40,103,61,107,46,101,118,101,110,116,38,38,118,46,103,108,111,98,97,108,41,38,38,48,61,61,107,46,97,99,116,105,118,101,43,43,38,38,107,46,101,118,101,110,116,46,116,114,105,103,103,101,114,40,34,97,106,97,120,83,116,97,114,116,34,41,44,118,46,116,121,112,101,61,118,46,116,121,112,101,46,116,111,85,112,112,101,114,67,97,115,101,40,41,44,118,46,104,97,115,67,111,110,116,101,110,116,61,33,82,116,46,116,101,115,116,40,118,46,116,121,112,101,41,44,102,61,118,46,117,114,108,46,114,101,112,108,97,99,101,40,72,116,44,34,34,41,44,118,46,104,97,115,67,111,110,116,101,110,116,63,118,46,100,97,116,97,38,38,118,46,112,114,111,99,101,115,115,68,97,116,97,38,38,48,61,61,61,40,118,46,99,111,110,116,101,110,116,84,121,112,101,124,124,34,34,41,46,105,110,100,101,120,79,102,40,34,97,112,112,108,105,99,97,116,105,111,110,47,120,45,119,119,119,45,102,111,114,109,45,117,114,108,101,110,99,111,100,101,100,34,41,38,38,40,118,46,100,97,116,97,61,118,46,100,97,116,97,46,114,101,112,108,97,99,101,40,76,116,44,34,43,34,41,41,58,40,111,61,118,46,117,114,108,46,115,108,105,99,101,40,102,46,108,101,110,103,116,104,41,44,118,46,100,97,116,97,38,38,40,118,46,112,114,111,99,101,115,115,68,97,116,97,124,124,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,118,46,100,97,116,97,41,38,38,40,102,43,61,40,83,116,46,116,101,115,116,40,102,41,63,34,38,34,58,34,63,34,41,43,118,46,100,97,116,97,44,100,101,108,101,116,101,32,118,46,100,97,116,97,41,44,33,49,61,61,61,118,46,99,97,99,104,101,38,38,40,102,61,102,46,114,101,112,108,97,99,101,40,79,116,44,34,36,49,34,41,44,111,61,40,83,116,46,116,101,115,116,40,102,41,63,34,38,34,58,34,63,34,41,43,34,95,61,34,43,107,116,43,43,43,111,41,44,118,46,117,114,108,61,102,43,111,41,44,118,46,105,102,77,111,100,105,102,105,101,100,38,38,40,107,46,108,97,115,116,77,111,100,105,102,105,101,100,91,102,93,38,38,84,46,115,101,116,82,101,113,117,101,115,116,72,101,97,100,101,114,40,34,73,102,45,77,111,100,105,102,105,101,100,45,83,105,110,99,101,34,44,107,46,108,97,115,116,77,111,100,105,102,105,101,100,91,102,93,41,44,107,46,101,116,97,103,91,102,93,38,38,84,46,115,101,116,82,101,113,117,101,115,116,72,101,97,100,101,114,40,34,73,102,45,78,111,110,101,45,77,97,116,99,104,34,44,107,46,101,116,97,103,91,102,93,41,41,44,40,118,46,100,97,116,97,38,38,118,46,104,97,115,67,111,110,116,101,110,116,38,38,33,49,33,61,61,118,46,99,111,110,116,101,110,116,84,121,112,101,124,124,116,46,99,111,110,116,101,110,116,84,121,112,101,41,38,38,84,46,115,101,116,82,101,113,117,101,115,116,72,101,97,100,101,114,40,34,67,111,110,116,101,110,116,45,84,121,112,101,34,44,118,46,99,111,110,116,101,110,116,84,121,112,101,41,44,84,46,115,101,116,82,101,113,117,101,115,116,72,101,97,100,101,114,40,34,65,99,99,101,112,116,34,44,118,46,100,97,116,97,84,121,112,101,115,91,48,93,38,38,118,46,97,99,99,101,112,116,115,91,118,46,100,97,116,97,84,121,112,101,115,91,48,93,93,63,118,46,97,99,99,101,112,116,115,91,118,46,100,97,116,97,84,121,112,101,115,91,48,93,93,43,40,34,42,34,33,61,61,118,46,100,97,116,97,84,121,112,101,115,91,48,93,63,34,44,32,34,43,36,116,43,34,59,32,113,61,48,46,48,49,34,58,34,34,41,58,118,46,97,99,99,101,112,116,115,91,34,42,34,93,41,44,118,46,104,101,97,100,101,114,115,41,84,46,115,101,116,82,101,113,117,101,115,116,72,101,97,100,101,114,40,105,44,118,46,104,101,97,100,101,114,115,91,105,93,41,59,105,102,40,118,46,98,101,102,111,114,101,83,101,110,100,38,38,40,33,49,61,61,61,118,46,98,101,102,111,114,101,83,101,110,100,46,99,97,108,108,40,121,44,84,44,118,41,124,124,104,41,41,114,101,116,117,114,110,32,84,46,97,98,111,114,116,40,41,59,105,102,40,117,61,34,97,98,111,114,116,34,44,98,46,97,100,100,40,118,46,99,111,109,112,108,101,116,101,41,44,84,46,100,111,110,101,40,118,46,115,117,99,99,101,115,115,41,44,84,46,102,97,105,108,40,118,46,101,114,114,111,114,41,44,99,61,95,116,40,87,116,44,118,44,116,44,84,41,41,123,105,102,40,84,46,114,101,97,100,121,83,116,97,116,101,61,49,44,103,38,38,109,46,116,114,105,103,103,101,114,40,34,97,106,97,120,83,101,110,100,34,44,91,84,44,118,93,41,44,104,41,114,101,116,117,114,110,32,84,59,118,46,97,115,121,110,99,38,38,48,60,118,46,116,105,109,101,111,117,116,38,38,40,100,61,67,46,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,40,41,123,84,46,97,98,111,114,116,40,34,116,105,109,101,111,117,116,34,41,125,44,118,46,116,105,109,101,111,117,116,41,41,59,116,114,121,123,104,61,33,49,44,99,46,115,101,110,100,40,97,44,108,41,125,99,97,116,99,104,40,101,41,123,105,102,40,104,41,116,104,114,111,119,32,101,59,108,40,45,49,44,101,41,125,125,101,108,115,101,32,108,40,45,49,44,34,78,111,32,84,114,97,110,115,112,111,114,116,34,41,59,102,117,110,99,116,105,111,110,32,108,40,101,44,116,44,110,44,114,41,123,118,97,114,32,105,44,111,44,97,44,115,44,117,44,108,61,116,59,104,124,124,40,104,61,33,48,44,100,38,38,67,46,99,108,101,97,114,84,105,109,101,111,117,116,40,100,41,44,99,61,118,111,105,100,32,48,44,112,61,114,124,124,34,34,44,84,46,114,101,97,100,121,83,116,97,116,101,61,48,60,101,63,52,58,48,44,105,61,50,48,48,60,61,101,38,38,101,60,51,48,48,124,124,51,48,52,61,61,61,101,44,110,38,38,40,115,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,44,105,44,111,44,97,44,115,61,101,46,99,111,110,116,101,110,116,115,44,117,61,101,46,100,97,116,97,84,121,112,101,115,59,119,104,105,108,101,40,34,42,34,61,61,61,117,91,48,93,41,117,46,115,104,105,102,116,40,41,44,118,111,105,100,32,48,61,61,61,114,38,38,40,114,61,101,46,109,105,109,101,84,121,112,101,124,124,116,46,103,101,116,82,101,115,112,111,110,115,101,72,101,97,100,101,114,40,34,67,111,110,116,101,110,116,45,84,121,112,101,34,41,41,59,105,102,40,114,41,102,111,114,40,105,32,105,110,32,115,41,105,102,40,115,91,105,93,38,38,115,91,105,93,46,116,101,115,116,40,114,41,41,123,117,46,117,110,115,104,105,102,116,40,105,41,59,98,114,101,97,107,125,105,102,40,117,91,48,93,105,110,32,110,41,111,61,117,91,48,93,59,101,108,115,101,123,102,111,114,40,105,32,105,110,32,110,41,123,105,102,40,33,117,91,48,93,124,124,101,46,99,111,110,118,101,114,116,101,114,115,91,105,43,34,32,34,43,117,91,48,93,93,41,123,111,61,105,59,98,114,101,97,107,125,97,124,124,40,97,61,105,41,125,111,61,111,124,124,97,125,105,102,40,111,41,114,101,116,117,114,110,32,111,33,61,61,117,91,48,93,38,38,117,46,117,110,115,104,105,102,116,40,111,41,44,110,91,111,93,125,40,118,44,84,44,110,41,41,44,115,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,114,41,123,118,97,114,32,105,44,111,44,97,44,115,44,117,44,108,61,123,125,44,99,61,101,46,100,97,116,97,84,121,112,101,115,46,115,108,105,99,101,40,41,59,105,102,40,99,91,49,93,41,102,111,114,40,97,32,105,110,32,101,46,99,111,110,118,101,114,116,101,114,115,41,108,91,97,46,116,111,76,111,119,101,114,67,97,115,101,40,41,93,61,101,46,99,111,110,118,101,114,116,101,114,115,91,97,93,59,111,61,99,46,115,104,105,102,116,40,41,59,119,104,105,108,101,40,111,41,105,102,40,101,46,114,101,115,112,111,110,115,101,70,105,101,108,100,115,91,111,93,38,38,40,110,91,101,46,114,101,115,112,111,110,115,101,70,105,101,108,100,115,91,111,93,93,61,116,41,44,33,117,38,38,114,38,38,101,46,100,97,116,97,70,105,108,116,101,114,38,38,40,116,61,101,46,100,97,116,97,70,105,108,116,101,114,40,116,44,101,46,100,97,116,97,84,121,112,101,41,41,44,117,61,111,44,111,61,99,46,115,104,105,102,116,40,41,41,105,102,40,34,42,34,61,61,61,111,41,111,61,117,59,101,108,115,101,32,105,102,40,34,42,34,33,61,61,117,38,38,117,33,61,61,111,41,123,105,102,40,33,40,97,61,108,91,117,43,34,32,34,43,111,93,124,124,108,91,34,42,32,34,43,111,93,41,41,102,111,114,40,105,32,105,110,32,108,41,105,102,40,40,115,61,105,46,115,112,108,105,116,40,34,32,34,41,41,91,49,93,61,61,61,111,38,38,40,97,61,108,91,117,43,34,32,34,43,115,91,48,93,93,124,124,108,91,34,42,32,34,43,115,91,48,93,93,41,41,123,33,48,61,61,61,97,63,97,61,108,91,105,93,58,33,48,33,61,61,108,91,105,93,38,38,40,111,61,115,91,48,93,44,99,46,117,110,115,104,105,102,116,40,115,91,49,93,41,41,59,98,114,101,97,107,125,105,102,40,33,48,33,61,61,97,41,105,102,40,97,38,38,101,91,34,116,104,114,111,119,115,34,93,41,116,61,97,40,116,41,59,101,108,115,101,32,116,114,121,123,116,61,97,40,116,41,125,99,97,116,99,104,40,101,41,123,114,101,116,117,114,110,123,115,116,97,116,101,58,34,112,97,114,115,101,114,101,114,114,111,114,34,44,101,114,114,111,114,58,97,63,101,58,34,78,111,32,99,111,110,118,101,114,115,105,111,110,32,102,114,111,109,32,34,43,117,43,34,32,116,111,32,34,43,111,125,125,125,114,101,116,117,114,110,123,115,116,97,116,101,58,34,115,117,99,99,101,115,115,34,44,100,97,116,97,58,116,125,125,40,118,44,115,44,84,44,105,41,44,105,63,40,118,46,105,102,77,111,100,105,102,105,101,100,38,38,40,40,117,61,84,46,103,101,116,82,101,115,112,111,110,115,101,72,101,97,100,101,114,40,34,76,97,115,116,45,77,111,100,105,102,105,101,100,34,41,41,38,38,40,107,46,108,97,115,116,77,111,100,105,102,105,101,100,91,102,93,61,117,41,44,40,117,61,84,46,103,101,116,82,101,115,112,111,110,115,101,72,101,97,100,101,114,40,34,101,116,97,103,34,41,41,38,38,40,107,46,101,116,97,103,91,102,93,61,117,41,41,44,50,48,52,61,61,61,101,124,124,34,72,69,65,68,34,61,61,61,118,46,116,121,112,101,63,108,61,34,110,111,99,111,110,116,101,110,116,34,58,51,48,52,61,61,61,101,63,108,61,34,110,111,116,109,111,100,105,102,105,101,100,34,58,40,108,61,115,46,115,116,97,116,101,44,111,61,115,46,100,97,116,97,44,105,61,33,40,97,61,115,46,101,114,114,111,114,41,41,41,58,40,97,61,108,44,33,101,38,38,108,124,124,40,108,61,34,101,114,114,111,114,34,44,101,60,48,38,38,40,101,61,48,41,41,41,44,84,46,115,116,97,116,117,115,61,101,44,84,46,115,116,97,116,117,115,84,101,120,116,61,40,116,124,124,108,41,43,34,34,44,105,63,120,46,114,101,115,111,108,118,101,87,105,116,104,40,121,44,91,111,44,108,44,84,93,41,58,120,46,114,101,106,101,99,116,87,105,116,104,40,121,44,91,84,44,108,44,97,93,41,44,84,46,115,116,97,116,117,115,67,111,100,101,40,119,41,44,119,61,118,111,105,100,32,48,44,103,38,38,109,46,116,114,105,103,103,101,114,40,105,63,34,97,106,97,120,83,117,99,99,101,115,115,34,58,34,97,106,97,120,69,114,114,111,114,34,44,91,84,44,118,44,105,63,111,58,97,93,41,44,98,46,102,105,114,101,87,105,116,104,40,121,44,91,84,44,108,93,41,44,103,38,38,40,109,46,116,114,105,103,103,101,114,40,34,97,106,97,120,67,111,109,112,108,101,116,101,34,44,91,84,44,118,93,41,44,45,45,107,46,97,99,116,105,118,101,124,124,107,46,101,118,101,110,116,46,116,114,105,103,103,101,114,40,34,97,106,97,120,83,116,111,112,34,41,41,41,125,114,101,116,117,114,110,32,84,125,44,103,101,116,74,83,79,78,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,114,101,116,117,114,110,32,107,46,103,101,116,40,101,44,116,44,110,44,34,106,115,111,110,34,41,125,44,103,101,116,83,99,114,105,112,116,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,107,46,103,101,116,40,101,44,118,111,105,100,32,48,44,116,44,34,115,99,114,105,112,116,34,41,125,125,41,44,107,46,101,97,99,104,40,91,34,103,101,116,34,44,34,112,111,115,116,34,93,44,102,117,110,99,116,105,111,110,40,101,44,105,41,123,107,91,105,93,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,114,41,123,114,101,116,117,114,110,32,109,40,116,41,38,38,40,114,61,114,124,124,110,44,110,61,116,44,116,61,118,111,105,100,32,48,41,44,107,46,97,106,97,120,40,107,46,101,120,116,101,110,100,40,123,117,114,108,58,101,44,116,121,112,101,58,105,44,100,97,116,97,84,121,112,101,58,114,44,100,97,116,97,58,116,44,115,117,99,99,101,115,115,58,110,125,44,107,46,105,115,80,108,97,105,110,79,98,106,101,99,116,40,101,41,38,38,101,41,41,125,125,41,44,107,46,95,101,118,97,108,85,114,108,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,107,46,97,106,97,120,40,123,117,114,108,58,101,44,116,121,112,101,58,34,71,69,84,34,44,100,97,116,97,84,121,112,101,58,34,115,99,114,105,112,116,34,44,99,97,99,104,101,58,33,48,44,97,115,121,110,99,58,33,49,44,103,108,111,98,97,108,58,33,49,44,99,111,110,118,101,114,116,101,114,115,58,123,34,116,101,120,116,32,115,99,114,105,112,116,34,58,102,117,110,99,116,105,111,110,40,41,123,125,125,44,100,97,116,97,70,105,108,116,101,114,58,102,117,110,99,116,105,111,110,40,101,41,123,107,46,103,108,111,98,97,108,69,118,97,108,40,101,44,116,41,125,125,41,125,44,107,46,102,110,46,101,120,116,101,110,100,40,123,119,114,97,112,65,108,108,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,59,114,101,116,117,114,110,32,116,104,105,115,91,48,93,38,38,40,109,40,101,41,38,38,40,101,61,101,46,99,97,108,108,40,116,104,105,115,91,48,93,41,41,44,116,61,107,40,101,44,116,104,105,115,91,48,93,46,111,119,110,101,114,68,111,99,117,109,101,110,116,41,46,101,113,40,48,41,46,99,108,111,110,101,40,33,48,41,44,116,104,105,115,91,48,93,46,112,97,114,101,110,116,78,111,100,101,38,38,116,46,105,110,115,101,114,116,66,101,102,111,114,101,40,116,104,105,115,91,48,93,41,44,116,46,109,97,112,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,59,119,104,105,108,101,40,101,46,102,105,114,115,116,69,108,101,109,101,110,116,67,104,105,108,100,41,101,61,101,46,102,105,114,115,116,69,108,101,109,101,110,116,67,104,105,108,100,59,114,101,116,117,114,110,32,101,125,41,46,97,112,112,101,110,100,40,116,104,105,115,41,41,44,116,104,105,115,125,44,119,114,97,112,73,110,110,101,114,58,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,109,40,110,41,63,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,101,41,123,107,40,116,104,105,115,41,46,119,114,97,112,73,110,110,101,114,40,110,46,99,97,108,108,40,116,104,105,115,44,101,41,41,125,41,58,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,107,40,116,104,105,115,41,44,116,61,101,46,99,111,110,116,101,110,116,115,40,41,59,116,46,108,101,110,103,116,104,63,116,46,119,114,97,112,65,108,108,40,110,41,58,101,46,97,112,112,101,110,100,40,110,41,125,41,125,44,119,114,97,112,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,109,40,116,41,59,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,101,41,123,107,40,116,104,105,115,41,46,119,114,97,112,65,108,108,40,110,63,116,46,99,97,108,108,40,116,104,105,115,44,101,41,58,116,41,125,41,125,44,117,110,119,114,97,112,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,112,97,114,101,110,116,40,101,41,46,110,111,116,40,34,98,111,100,121,34,41,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,107,40,116,104,105,115,41,46,114,101,112,108,97,99,101,87,105,116,104,40,116,104,105,115,46,99,104,105,108,100,78,111,100,101,115,41,125,41,44,116,104,105,115,125,125,41,44,107,46,101,120,112,114,46,112,115,101,117,100,111,115,46,104,105,100,100,101,110,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,33,107,46,101,120,112,114,46,112,115,101,117,100,111,115,46,118,105,115,105,98,108,101,40,101,41,125,44,107,46,101,120,112,114,46,112,115,101,117,100,111,115,46,118,105,115,105,98,108,101,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,33,33,40,101,46,111,102,102,115,101,116,87,105,100,116,104,124,124,101,46,111,102,102,115,101,116,72,101,105,103,104,116,124,124,101,46,103,101,116,67,108,105,101,110,116,82,101,99,116,115,40,41,46,108,101,110,103,116,104,41,125,44,107,46,97,106,97,120,83,101,116,116,105,110,103,115,46,120,104,114,61,102,117,110,99,116,105,111,110,40,41,123,116,114,121,123,114,101,116,117,114,110,32,110,101,119,32,67,46,88,77,76,72,116,116,112,82,101,113,117,101,115,116,125,99,97,116,99,104,40,101,41,123,125,125,59,118,97,114,32,85,116,61,123,48,58,50,48,48,44,49,50,50,51,58,50,48,52,125,44,88,116,61,107,46,97,106,97,120,83,101,116,116,105,110,103,115,46,120,104,114,40,41,59,121,46,99,111,114,115,61,33,33,88,116,38,38,34,119,105,116,104,67,114,101,100,101,110,116,105,97,108,115,34,105,110,32,88,116,44,121,46,97,106,97,120,61,88,116,61,33,33,88,116,44,107,46,97,106,97,120,84,114,97,110,115,112,111,114,116,40,102,117,110,99,116,105,111,110,40,105,41,123,118,97,114,32,111,44,97,59,105,102,40,121,46,99,111,114,115,124,124,88,116,38,38,33,105,46,99,114,111,115,115,68,111,109,97,105,110,41,114,101,116,117,114,110,123,115,101,110,100,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,44,114,61,105,46,120,104,114,40,41,59,105,102,40,114,46,111,112,101,110,40,105,46,116,121,112,101,44,105,46,117,114,108,44,105,46,97,115,121,110,99,44,105,46,117,115,101,114,110,97,109,101,44,105,46,112,97,115,115,119,111,114,100,41,44,105,46,120,104,114,70,105,101,108,100,115,41,102,111,114,40,110,32,105,110,32,105,46,120,104,114,70,105,101,108,100,115,41,114,91,110,93,61,105,46,120,104,114,70,105,101,108,100,115,91,110,93,59,102,111,114,40,110,32,105,110,32,105,46,109,105,109,101,84,121,112,101,38,38,114,46,111,118,101,114,114,105,100,101,77,105,109,101,84,121,112,101,38,38,114,46,111,118,101,114,114,105,100,101,77,105,109,101,84,121,112,101,40,105,46,109,105,109,101,84,121,112,101,41,44,105,46,99,114,111,115,115,68,111,109,97,105,110,124,124,101,91,34,88,45,82,101,113,117,101,115,116,101,100,45,87,105,116,104,34,93,124,124,40,101,91,34,88,45,82,101,113,117,101,115,116,101,100,45,87,105,116,104,34,93,61,34,88,77,76,72,116,116,112,82,101,113,117,101,115,116,34,41,44,101,41,114,46,115,101,116,82,101,113,117,101,115,116,72,101,97,100,101,114,40,110,44,101,91,110,93,41,59,111,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,111,38,38,40,111,61,97,61,114,46,111,110,108,111,97,100,61,114,46,111,110,101,114,114,111,114,61,114,46,111,110,97,98,111,114,116,61,114,46,111,110,116,105,109,101,111,117,116,61,114,46,111,110,114,101,97,100,121,115,116,97,116,101,99,104,97,110,103,101,61,110,117,108,108,44,34,97,98,111,114,116,34,61,61,61,101,63,114,46,97,98,111,114,116,40,41,58,34,101,114,114,111,114,34,61,61,61,101,63,34,110,117,109,98,101,114,34,33,61,116,121,112,101,111,102,32,114,46,115,116,97,116,117,115,63,116,40,48,44,34,101,114,114,111,114,34,41,58,116,40,114,46,115,116,97,116,117,115,44,114,46,115,116,97,116,117,115,84,101,120,116,41,58,116,40,85,116,91,114,46,115,116,97,116,117,115,93,124,124,114,46,115,116,97,116,117,115,44,114,46,115,116,97,116,117,115,84,101,120,116,44,34,116,101,120,116,34,33,61,61,40,114,46,114,101,115,112,111,110,115,101,84,121,112,101,124,124,34,116,101,120,116,34,41,124,124,34,115,116,114,105,110,103,34,33,61,116,121,112,101,111,102,32,114,46,114,101,115,112,111,110,115,101,84,101,120,116,63,123,98,105,110,97,114,121,58,114,46,114,101,115,112,111,110,115,101,125,58,123,116,101,120,116,58,114,46,114,101,115,112,111,110,115,101,84,101,120,116,125,44,114,46,103,101,116,65,108,108,82,101,115,112,111,110,115,101,72,101,97,100,101,114,115,40,41,41,41,125,125,44,114,46,111,110,108,111,97,100,61,111,40,41,44,97,61,114,46,111,110,101,114,114,111,114,61,114,46,111,110,116,105,109,101,111,117,116,61,111,40,34,101,114,114,111,114,34,41,44,118,111,105,100,32,48,33,61,61,114,46,111,110,97,98,111,114,116,63,114,46,111,110,97,98,111,114,116,61,97,58,114,46,111,110,114,101,97,100,121,115,116,97,116,101,99,104,97,110,103,101,61,102,117,110,99,116,105,111,110,40,41,123,52,61,61,61,114,46,114,101,97,100,121,83,116,97,116,101,38,38,67,46,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,40,41,123,111,38,38,97,40,41,125,41,125,44,111,61,111,40,34,97,98,111,114,116,34,41,59,116,114,121,123,114,46,115,101,110,100,40,105,46,104,97,115,67,111,110,116,101,110,116,38,38,105,46,100,97,116,97,124,124,110,117,108,108,41,125,99,97,116,99,104,40,101,41,123,105,102,40,111,41,116,104,114,111,119,32,101,125,125,44,97,98,111,114,116,58,102,117,110,99,116,105,111,110,40,41,123,111,38,38,111,40,41,125,125,125,41,44,107,46,97,106,97,120,80,114,101,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,40,101,41,123,101,46,99,114,111,115,115,68,111,109,97,105,110,38,38,40,101,46,99,111,110,116,101,110,116,115,46,115,99,114,105,112,116,61,33,49,41,125,41,44,107,46,97,106,97,120,83,101,116,117,112,40,123,97,99,99,101,112,116,115,58,123,115,99,114,105,112,116,58,34,116,101,120,116,47,106,97,118,97,115,99,114,105,112,116,44,32,97,112,112,108,105,99,97,116,105,111,110,47,106,97,118,97,115,99,114,105,112,116,44,32,97,112,112,108,105,99,97,116,105,111,110,47,101,99,109,97,115,99,114,105,112,116,44,32,97,112,112,108,105,99,97,116,105,111,110,47,120,45,101,99,109,97,115,99,114,105,112,116,34,125,44,99,111,110,116,101,110,116,115,58,123,115,99,114,105,112,116,58,47,92,98,40,63,58,106,97,118,97,124,101,99,109,97,41,115,99,114,105,112,116,92,98,47,125,44,99,111,110,118,101,114,116,101,114,115,58,123,34,116,101,120,116,32,115,99,114,105,112,116,34,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,107,46,103,108,111,98,97,108,69,118,97,108,40,101,41,44,101,125,125,125,41,44,107,46,97,106,97,120,80,114,101,102,105,108,116,101,114,40,34,115,99,114,105,112,116,34,44,102,117,110,99,116,105,111,110,40,101,41,123,118,111,105,100,32,48,61,61,61,101,46,99,97,99,104,101,38,38,40,101,46,99,97,99,104,101,61,33,49,41,44,101,46,99,114,111,115,115,68,111,109,97,105,110,38,38,40,101,46,116,121,112,101,61,34,71,69,84,34,41,125,41,44,107,46,97,106,97,120,84,114,97,110,115,112,111,114,116,40,34,115,99,114,105,112,116,34,44,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,114,44,105,59,105,102,40,110,46,99,114,111,115,115,68,111,109,97,105,110,124,124,110,46,115,99,114,105,112,116,65,116,116,114,115,41,114,101,116,117,114,110,123,115,101,110,100,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,61,107,40,34,60,115,99,114,105,112,116,62,34,41,46,97,116,116,114,40,110,46,115,99,114,105,112,116,65,116,116,114,115,124,124,123,125,41,46,112,114,111,112,40,123,99,104,97,114,115,101,116,58,110,46,115,99,114,105,112,116,67,104,97,114,115,101,116,44,115,114,99,58,110,46,117,114,108,125,41,46,111,110,40,34,108,111,97,100,32,101,114,114,111,114,34,44,105,61,102,117,110,99,116,105,111,110,40,101,41,123,114,46,114,101,109,111,118,101,40,41,44,105,61,110,117,108,108,44,101,38,38,116,40,34,101,114,114,111,114,34,61,61,61,101,46,116,121,112,101,63,52,48,52,58,50,48,48,44,101,46,116,121,112,101,41,125,41,44,69,46,104,101,97,100,46,97,112,112,101,110,100,67,104,105,108,100,40,114,91,48,93,41,125,44,97,98,111,114,116,58,102,117,110,99,116,105,111,110,40,41,123,105,38,38,105,40,41,125,125,125,41,59,118,97,114,32,86,116,44,71,116,61,91,93,44,89,116,61,47,40,61,41,92,63,40,63,61,38,124,36,41,124,92,63,92,63,47,59,107,46,97,106,97,120,83,101,116,117,112,40,123,106,115,111,110,112,58,34,99,97,108,108,98,97,99,107,34,44,106,115,111,110,112,67,97,108,108,98,97,99,107,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,71,116,46,112,111,112,40,41,124,124,107,46,101,120,112,97,110,100,111,43,34,95,34,43,107,116,43,43,59,114,101,116,117,114,110,32,116,104,105,115,91,101,93,61,33,48,44,101,125,125,41,44,107,46,97,106,97,120,80,114,101,102,105,108,116,101,114,40,34,106,115,111,110,32,106,115,111,110,112,34,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,44,105,44,111,44,97,61,33,49,33,61,61,101,46,106,115,111,110,112,38,38,40,89,116,46,116,101,115,116,40,101,46,117,114,108,41,63,34,117,114,108,34,58,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,101,46,100,97,116,97,38,38,48,61,61,61,40,101,46,99,111,110,116,101,110,116,84,121,112,101,124,124,34,34,41,46,105,110,100,101,120,79,102,40,34,97,112,112,108,105,99,97,116,105,111,110,47,120,45,119,119,119,45,102,111,114,109,45,117,114,108,101,110,99,111,100,101,100,34,41,38,38,89,116,46,116,101,115,116,40,101,46,100,97,116,97,41,38,38,34,100,97,116,97,34,41,59,105,102,40,97,124,124,34,106,115,111,110,112,34,61,61,61,101,46,100,97,116,97,84,121,112,101,115,91,48,93,41,114,101,116,117,114,110,32,114,61,101,46,106,115,111,110,112,67,97,108,108,98,97,99,107,61,109,40,101,46,106,115,111,110,112,67,97,108,108,98,97,99,107,41,63,101,46,106,115,111,110,112,67,97,108,108,98,97,99,107,40,41,58,101,46,106,115,111,110,112,67,97,108,108,98,97,99,107,44,97,63,101,91,97,93,61,101,91,97,93,46,114,101,112,108,97,99,101,40,89,116,44,34,36,49,34,43,114,41,58,33,49,33,61,61,101,46,106,115,111,110,112,38,38,40,101,46,117,114,108,43,61,40,83,116,46,116,101,115,116,40,101,46,117,114,108,41,63,34,38,34,58,34,63,34,41,43,101,46,106,115,111,110,112,43,34,61,34,43,114,41,44,101,46,99,111,110,118,101,114,116,101,114,115,91,34,115,99,114,105,112,116,32,106,115,111,110,34,93,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,111,124,124,107,46,101,114,114,111,114,40,114,43,34,32,119,97,115,32,110,111,116,32,99,97,108,108,101,100,34,41,44,111,91,48,93,125,44,101,46,100,97,116,97,84,121,112,101,115,91,48,93,61,34,106,115,111,110,34,44,105,61,67,91,114,93,44,67,91,114,93,61,102,117,110,99,116,105,111,110,40,41,123,111,61,97,114,103,117,109,101,110,116,115,125,44,110,46,97,108,119,97,121,115,40,102,117,110,99,116,105,111,110,40,41,123,118,111,105,100,32,48,61,61,61,105,63,107,40,67,41,46,114,101,109,111,118,101,80,114,111,112,40,114,41,58,67,91,114,93,61,105,44,101,91,114,93,38,38,40,101,46,106,115,111,110,112,67,97,108,108,98,97,99,107,61,116,46,106,115,111,110,112,67,97,108,108,98,97,99,107,44,71,116,46,112,117,115,104,40,114,41,41,44,111,38,38,109,40,105,41,38,38,105,40,111,91,48,93,41,44,111,61,105,61,118,111,105,100,32,48,125,41,44,34,115,99,114,105,112,116,34,125,41,44,121,46,99,114,101,97,116,101,72,84,77,76,68,111,99,117,109,101,110,116,61,40,40,86,116,61,69,46,105,109,112,108,101,109,101,110,116,97,116,105,111,110,46,99,114,101,97,116,101,72,84,77,76,68,111,99,117,109,101,110,116,40,34,34,41,46,98,111,100,121,41,46,105,110,110,101,114,72,84,77,76,61,34,60,102,111,114,109,62,60,47,102,111,114,109,62,60,102,111,114,109,62,60,47,102,111,114,109,62,34,44,50,61,61,61,86,116,46,99,104,105,108,100,78,111,100,101,115,46,108,101,110,103,116,104,41,44,107,46,112,97,114,115,101,72,84,77,76,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,114,101,116,117,114,110,34,115,116,114,105,110,103,34,33,61,116,121,112,101,111,102,32,101,63,91,93,58,40,34,98,111,111,108,101,97,110,34,61,61,116,121,112,101,111,102,32,116,38,38,40,110,61,116,44,116,61,33,49,41,44,116,124,124,40,121,46,99,114,101,97,116,101,72,84,77,76,68,111,99,117,109,101,110,116,63,40,40,114,61,40,116,61,69,46,105,109,112,108,101,109,101,110,116,97,116,105,111,110,46,99,114,101,97,116,101,72,84,77,76,68,111,99,117,109,101,110,116,40,34,34,41,41,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,98,97,115,101,34,41,41,46,104,114,101,102,61,69,46,108,111,99,97,116,105,111,110,46,104,114,101,102,44,116,46,104,101,97,100,46,97,112,112,101,110,100,67,104,105,108,100,40,114,41,41,58,116,61,69,41,44,111,61,33,110,38,38,91,93,44,40,105,61,68,46,101,120,101,99,40,101,41,41,63,91,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,105,91,49,93,41,93,58,40,105,61,119,101,40,91,101,93,44,116,44,111,41,44,111,38,38,111,46,108,101,110,103,116,104,38,38,107,40,111,41,46,114,101,109,111,118,101,40,41,44,107,46,109,101,114,103,101,40,91,93,44,105,46,99,104,105,108,100,78,111,100,101,115,41,41,41,59,118,97,114,32,114,44,105,44,111,125,44,107,46,102,110,46,108,111,97,100,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,44,105,44,111,44,97,61,116,104,105,115,44,115,61,101,46,105,110,100,101,120,79,102,40,34,32,34,41,59,114,101,116,117,114,110,45,49,60,115,38,38,40,114,61,109,116,40,101,46,115,108,105,99,101,40,115,41,41,44,101,61,101,46,115,108,105,99,101,40,48,44,115,41,41,44,109,40,116,41,63,40,110,61,116,44,116,61,118,111,105,100,32,48,41,58,116,38,38,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,116,38,38,40,105,61,34,80,79,83,84,34,41,44,48,60,97,46,108,101,110,103,116,104,38,38,107,46,97,106,97,120,40,123,117,114,108,58,101,44,116,121,112,101,58,105,124,124,34,71,69,84,34,44,100,97,116,97,84,121,112,101,58,34,104,116,109,108,34,44,100,97,116,97,58,116,125,41,46,100,111,110,101,40,102,117,110,99,116,105,111,110,40,101,41,123,111,61,97,114,103,117,109,101,110,116,115,44,97,46,104,116,109,108,40,114,63,107,40,34,60,100,105,118,62,34,41,46,97,112,112,101,110,100,40,107,46,112,97,114,115,101,72,84,77,76,40,101,41,41,46,102,105,110,100,40,114,41,58,101,41,125,41,46,97,108,119,97,121,115,40,110,38,38,102,117,110,99,116,105,111,110,40,101,44,116,41,123,97,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,110,46,97,112,112,108,121,40,116,104,105,115,44,111,124,124,91,101,46,114,101,115,112,111,110,115,101,84,101,120,116,44,116,44,101,93,41,125,41,125,41,44,116,104,105,115,125,44,107,46,101,97,99,104,40,91,34,97,106,97,120,83,116,97,114,116,34,44,34,97,106,97,120,83,116,111,112,34,44,34,97,106,97,120,67,111,109,112,108,101,116,101,34,44,34,97,106,97,120,69,114,114,111,114,34,44,34,97,106,97,120,83,117,99,99,101,115,115,34,44,34,97,106,97,120,83,101,110,100,34,93,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,107,46,102,110,91,116,93,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,111,110,40,116,44,101,41,125,125,41,44,107,46,101,120,112,114,46,112,115,101,117,100,111,115,46,97,110,105,109,97,116,101,100,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,107,46,103,114,101,112,40,107,46,116,105,109,101,114,115,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,61,61,61,101,46,101,108,101,109,125,41,46,108,101,110,103,116,104,125,44,107,46,111,102,102,115,101,116,61,123,115,101,116,79,102,102,115,101,116,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,44,105,44,111,44,97,44,115,44,117,44,108,61,107,46,99,115,115,40,101,44,34,112,111,115,105,116,105,111,110,34,41,44,99,61,107,40,101,41,44,102,61,123,125,59,34,115,116,97,116,105,99,34,61,61,61,108,38,38,40,101,46,115,116,121,108,101,46,112,111,115,105,116,105,111,110,61,34,114,101,108,97,116,105,118,101,34,41,44,115,61,99,46,111,102,102,115,101,116,40,41,44,111,61,107,46,99,115,115,40,101,44,34,116,111,112,34,41,44,117,61,107,46,99,115,115,40,101,44,34,108,101,102,116,34,41,44,40,34,97,98,115,111,108,117,116,101,34,61,61,61,108,124,124,34,102,105,120,101,100,34,61,61,61,108,41,38,38,45,49,60,40,111,43,117,41,46,105,110,100,101,120,79,102,40,34,97,117,116,111,34,41,63,40,97,61,40,114,61,99,46,112,111,115,105,116,105,111,110,40,41,41,46,116,111,112,44,105,61,114,46,108,101,102,116,41,58,40,97,61,112,97,114,115,101,70,108,111,97,116,40,111,41,124,124,48,44,105,61,112,97,114,115,101,70,108,111,97,116,40,117,41,124,124,48,41,44,109,40,116,41,38,38,40,116,61,116,46,99,97,108,108,40,101,44,110,44,107,46,101,120,116,101,110,100,40,123,125,44,115,41,41,41,44,110,117,108,108,33,61,116,46,116,111,112,38,38,40,102,46,116,111,112,61,116,46,116,111,112,45,115,46,116,111,112,43,97,41,44,110,117,108,108,33,61,116,46,108,101,102,116,38,38,40,102,46,108,101,102,116,61,116,46,108,101,102,116,45,115,46,108,101,102,116,43,105,41,44,34,117,115,105,110,103,34,105,110,32,116,63,116,46,117,115,105,110,103,46,99,97,108,108,40,101,44,102,41,58,99,46,99,115,115,40,102,41,125,125,44,107,46,102,110,46,101,120,116,101,110,100,40,123,111,102,102,115,101,116,58,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,114,101,116,117,114,110,32,118,111,105,100,32,48,61,61,61,116,63,116,104,105,115,58,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,101,41,123,107,46,111,102,102,115,101,116,46,115,101,116,79,102,102,115,101,116,40,116,104,105,115,44,116,44,101,41,125,41,59,118,97,114,32,101,44,110,44,114,61,116,104,105,115,91,48,93,59,114,101,116,117,114,110,32,114,63,114,46,103,101,116,67,108,105,101,110,116,82,101,99,116,115,40,41,46,108,101,110,103,116,104,63,40,101,61,114,46,103,101,116,66,111,117,110,100,105,110,103,67,108,105,101,110,116,82,101,99,116,40,41,44,110,61,114,46,111,119,110,101,114,68,111,99,117,109,101,110,116,46,100,101,102,97,117,108,116,86,105,101,119,44,123,116,111,112,58,101,46,116,111,112,43,110,46,112,97,103,101,89,79,102,102,115,101,116,44,108,101,102,116,58,101,46,108,101,102,116,43,110,46,112,97,103,101,88,79,102,102,115,101,116,125,41,58,123,116,111,112,58,48,44,108,101,102,116,58,48,125,58,118,111,105,100,32,48,125,44,112,111,115,105,116,105,111,110,58,102,117,110,99,116,105,111,110,40,41,123,105,102,40,116,104,105,115,91,48,93,41,123,118,97,114,32,101,44,116,44,110,44,114,61,116,104,105,115,91,48,93,44,105,61,123,116,111,112,58,48,44,108,101,102,116,58,48,125,59,105,102,40,34,102,105,120,101,100,34,61,61,61,107,46,99,115,115,40,114,44,34,112,111,115,105,116,105,111,110,34,41,41,116,61,114,46,103,101,116,66,111,117,110,100,105,110,103,67,108,105,101,110,116,82,101,99,116,40,41,59,101,108,115,101,123,116,61,116,104,105,115,46,111,102,102,115,101,116,40,41,44,110,61,114,46,111,119,110,101,114,68,111,99,117,109,101,110,116,44,101,61,114,46,111,102,102,115,101,116,80,97,114,101,110,116,124,124,110,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,59,119,104,105,108,101,40,101,38,38,40,101,61,61,61,110,46,98,111,100,121,124,124,101,61,61,61,110,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,41,38,38,34,115,116,97,116,105,99,34,61,61,61,107,46,99,115,115,40,101,44,34,112,111,115,105,116,105,111,110,34,41,41,101,61,101,46,112,97,114,101,110,116,78,111,100,101,59,101,38,38,101,33,61,61,114,38,38,49,61,61,61,101,46,110,111,100,101,84,121,112,101,38,38,40,40,105,61,107,40,101,41,46,111,102,102,115,101,116,40,41,41,46,116,111,112,43,61,107,46,99,115,115,40,101,44,34,98,111,114,100,101,114,84,111,112,87,105,100,116,104,34,44,33,48,41,44,105,46,108,101,102,116,43,61,107,46,99,115,115,40,101,44,34,98,111,114,100,101,114,76,101,102,116,87,105,100,116,104,34,44,33,48,41,41,125,114,101,116,117,114,110,123,116,111,112,58,116,46,116,111,112,45,105,46,116,111,112,45,107,46,99,115,115,40,114,44,34,109,97,114,103,105,110,84,111,112,34,44,33,48,41,44,108,101,102,116,58,116,46,108,101,102,116,45,105,46,108,101,102,116,45,107,46,99,115,115,40,114,44,34,109,97,114,103,105,110,76,101,102,116,34,44,33,48,41,125,125,125,44,111,102,102,115,101,116,80,97,114,101,110,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,109,97,112,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,111,102,102,115,101,116,80,97,114,101,110,116,59,119,104,105,108,101,40,101,38,38,34,115,116,97,116,105,99,34,61,61,61,107,46,99,115,115,40,101,44,34,112,111,115,105,116,105,111,110,34,41,41,101,61,101,46,111,102,102,115,101,116,80,97,114,101,110,116,59,114,101,116,117,114,110,32,101,124,124,105,101,125,41,125,125,41,44,107,46,101,97,99,104,40,123,115,99,114,111,108,108,76,101,102,116,58,34,112,97,103,101,88,79,102,102,115,101,116,34,44,115,99,114,111,108,108,84,111,112,58,34,112,97,103,101,89,79,102,102,115,101,116,34,125,44,102,117,110,99,116,105,111,110,40,116,44,105,41,123,118,97,114,32,111,61,34,112,97,103,101,89,79,102,102,115,101,116,34,61,61,61,105,59,107,46,102,110,91,116,93,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,95,40,116,104,105,115,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,59,105,102,40,120,40,101,41,63,114,61,101,58,57,61,61,61,101,46,110,111,100,101,84,121,112,101,38,38,40,114,61,101,46,100,101,102,97,117,108,116,86,105,101,119,41,44,118,111,105,100,32,48,61,61,61,110,41,114,101,116,117,114,110,32,114,63,114,91,105,93,58,101,91,116,93,59,114,63,114,46,115,99,114,111,108,108,84,111,40,111,63,114,46,112,97,103,101,88,79,102,102,115,101,116,58,110,44,111,63,110,58,114,46,112,97,103,101,89,79,102,102,115,101,116,41,58,101,91,116,93,61,110,125,44,116,44,101,44,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,125,125,41,44,107,46,101,97,99,104,40,91,34,116,111,112,34,44,34,108,101,102,116,34,93,44,102,117,110,99,116,105,111,110,40,101,44,110,41,123,107,46,99,115,115,72,111,111,107,115,91,110,93,61,122,101,40,121,46,112,105,120,101,108,80,111,115,105,116,105,111,110,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,102,40,116,41,114,101,116,117,114,110,32,116,61,95,101,40,101,44,110,41,44,36,101,46,116,101,115,116,40,116,41,63,107,40,101,41,46,112,111,115,105,116,105,111,110,40,41,91,110,93,43,34,112,120,34,58,116,125,41,125,41,44,107,46,101,97,99,104,40,123,72,101,105,103,104,116,58,34,104,101,105,103,104,116,34,44,87,105,100,116,104,58,34,119,105,100,116,104,34,125,44,102,117,110,99,116,105,111,110,40,97,44,115,41,123,107,46,101,97,99,104,40,123,112,97,100,100,105,110,103,58,34,105,110,110,101,114,34,43,97,44,99,111,110,116,101,110,116,58,115,44,34,34,58,34,111,117,116,101,114,34,43,97,125,44,102,117,110,99,116,105,111,110,40,114,44,111,41,123,107,46,102,110,91,111,93,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,38,38,40,114,124,124,34,98,111,111,108,101,97,110,34,33,61,116,121,112,101,111,102,32,101,41,44,105,61,114,124,124,40,33,48,61,61,61,101,124,124,33,48,61,61,61,116,63,34,109,97,114,103,105,110,34,58,34,98,111,114,100,101,114,34,41,59,114,101,116,117,114,110,32,95,40,116,104,105,115,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,59,114,101,116,117,114,110,32,120,40,101,41,63,48,61,61,61,111,46,105,110,100,101,120,79,102,40,34,111,117,116,101,114,34,41,63,101,91,34,105,110,110,101,114,34,43,97,93,58,101,46,100,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,91,34,99,108,105,101,110,116,34,43,97,93,58,57,61,61,61,101,46,110,111,100,101,84,121,112,101,63,40,114,61,101,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,44,77,97,116,104,46,109,97,120,40,101,46,98,111,100,121,91,34,115,99,114,111,108,108,34,43,97,93,44,114,91,34,115,99,114,111,108,108,34,43,97,93,44,101,46,98,111,100,121,91,34,111,102,102,115,101,116,34,43,97,93,44,114,91,34,111,102,102,115,101,116,34,43,97,93,44,114,91,34,99,108,105,101,110,116,34,43,97,93,41,41,58,118,111,105,100,32,48,61,61,61,110,63,107,46,99,115,115,40,101,44,116,44,105,41,58,107,46,115,116,121,108,101,40,101,44,116,44,110,44,105,41,125,44,115,44,110,63,101,58,118,111,105,100,32,48,44,110,41,125,125,41,125,41,44,107,46,101,97,99,104,40,34,98,108,117,114,32,102,111,99,117,115,32,102,111,99,117,115,105,110,32,102,111,99,117,115,111,117,116,32,114,101,115,105,122,101,32,115,99,114,111,108,108,32,99,108,105,99,107,32,100,98,108,99,108,105,99,107,32,109,111,117,115,101,100,111,119,110,32,109,111,117,115,101,117,112,32,109,111,117,115,101,109,111,118,101,32,109,111,117,115,101,111,118,101,114,32,109,111,117,115,101,111,117,116,32,109,111,117,115,101,101,110,116,101,114,32,109,111,117,115,101,108,101,97,118,101,32,99,104,97,110,103,101,32,115,101,108,101,99,116,32,115,117,98,109,105,116,32,107,101,121,100,111,119,110,32,107,101,121,112,114,101,115,115,32,107,101,121,117,112,32,99,111,110,116,101,120,116,109,101,110,117,34,46,115,112,108,105,116,40,34,32,34,41,44,102,117,110,99,116,105,111,110,40,101,44,110,41,123,107,46,102,110,91,110,93,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,48,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,116,104,105,115,46,111,110,40,110,44,110,117,108,108,44,101,44,116,41,58,116,104,105,115,46,116,114,105,103,103,101,114,40,110,41,125,125,41,44,107,46,102,110,46,101,120,116,101,110,100,40,123,104,111,118,101,114,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,116,104,105,115,46,109,111,117,115,101,101,110,116,101,114,40,101,41,46,109,111,117,115,101,108,101,97,118,101,40,116,124,124,101,41,125,125,41,44,107,46,102,110,46,101,120,116,101,110,100,40,123,98,105,110,100,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,114,101,116,117,114,110,32,116,104,105,115,46,111,110,40,101,44,110,117,108,108,44,116,44,110,41,125,44,117,110,98,105,110,100,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,116,104,105,115,46,111,102,102,40,101,44,110,117,108,108,44,116,41,125,44,100,101,108,101,103,97,116,101,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,114,41,123,114,101,116,117,114,110,32,116,104,105,115,46,111,110,40,116,44,101,44,110,44,114,41,125,44,117,110,100,101,108,101,103,97,116,101,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,114,101,116,117,114,110,32,49,61,61,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,116,104,105,115,46,111,102,102,40,101,44,34,42,42,34,41,58,116,104,105,115,46,111,102,102,40,116,44,101,124,124,34,42,42,34,44,110,41,125,125,41,44,107,46,112,114,111,120,121,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,44,114,44,105,59,105,102,40,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,116,38,38,40,110,61,101,91,116,93,44,116,61,101,44,101,61,110,41,44,109,40,101,41,41,114,101,116,117,114,110,32,114,61,115,46,99,97,108,108,40,97,114,103,117,109,101,110,116,115,44,50,41,44,40,105,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,101,46,97,112,112,108,121,40,116,124,124,116,104,105,115,44,114,46,99,111,110,99,97,116,40,115,46,99,97,108,108,40,97,114,103,117,109,101,110,116,115,41,41,41,125,41,46,103,117,105,100,61,101,46,103,117,105,100,61,101,46,103,117,105,100,124,124,107,46,103,117,105,100,43,43,44,105,125,44,107,46,104,111,108,100,82,101,97,100,121,61,102,117,110,99,116,105,111,110,40,101,41,123,101,63,107,46,114,101,97,100,121,87,97,105,116,43,43,58,107,46,114,101,97,100,121,40,33,48,41,125,44,107,46,105,115,65,114,114,97,121,61,65,114,114,97,121,46,105,115,65,114,114,97,121,44,107,46,112,97,114,115,101,74,83,79,78,61,74,83,79,78,46,112,97,114,115,101,44,107,46,110,111,100,101,78,97,109,101,61,65,44,107,46,105,115,70,117,110,99,116,105,111,110,61,109,44,107,46,105,115,87,105,110,100,111,119,61,120,44,107,46,99,97,109,101,108,67,97,115,101,61,86,44,107,46,116,121,112,101,61,119,44,107,46,110,111,119,61,68,97,116,101,46,110,111,119,44,107,46,105,115,78,117,109,101,114,105,99,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,107,46,116,121,112,101,40,101,41,59,114,101,116,117,114,110,40,34,110,117,109,98,101,114,34,61,61,61,116,124,124,34,115,116,114,105,110,103,34,61,61,61,116,41,38,38,33,105,115,78,97,78,40,101,45,112,97,114,115,101,70,108,111,97,116,40,101,41,41,125,44,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,100,101,102,105,110,101,38,38,100,101,102,105,110,101,46,97,109,100,38,38,100,101,102,105,110,101,40,34,106,113,117,101,114,121,34,44,91,93,44,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,107,125,41,59,118,97,114,32,81,116,61,67,46,106,81,117,101,114,121,44,74,116,61,67,46,36,59,114,101,116,117,114,110,32,107,46,110,111,67,111,110,102,108,105,99,116,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,67,46,36,61,61,61,107,38,38,40,67,46,36,61,74,116,41,44,101,38,38,67,46,106,81,117,101,114,121,61,61,61,107,38,38,40,67,46,106,81,117,101,114,121,61,81,116,41,44,107,125,44,101,124,124,40,67,46,106,81,117,101,114,121,61,67,46,36,61,107,41,44,107,125,41,59,10,47,42,33,10,32,32,42,32,66,111,111,116,115,116,114,97,112,32,118,52,46,51,46,49,32,40,104,116,116,112,115,58,47,47,103,101,116,98,111,111,116,115,116,114,97,112,46,99,111,109,47,41,10,32,32,42,32,67,111,112,121,114,105,103,104,116,32,50,48,49,49,45,50,48,49,57,32,84,104,101,32,66,111,111,116,115,116,114,97,112,32,65,117,116,104,111,114,115,32,40,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,116,119,98,115,47,98,111,111,116,115,116,114,97,112,47,103,114,97,112,104,115,47,99,111,110,116,114,105,98,117,116,111,114,115,41,10,32,32,42,32,76,105,99,101,110,115,101,100,32,117,110,100,101,114,32,77,73,84,32,40,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,116,119,98,115,47,98,111,111,116,115,116,114,97,112,47,98,108,111,98,47,109,97,115,116,101,114,47,76,73,67,69,78,83,69,41,10,32,32,42,47,10,33,102,117,110,99,116,105,111,110,40,116,44,101,41,123,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,101,120,112,111,114,116,115,38,38,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,109,111,100,117,108,101,63,101,40,101,120,112,111,114,116,115,44,114,101,113,117,105,114,101,40,34,106,113,117,101,114,121,34,41,41,58,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,100,101,102,105,110,101,38,38,100,101,102,105,110,101,46,97,109,100,63,100,101,102,105,110,101,40,91,34,101,120,112,111,114,116,115,34,44,34,106,113,117,101,114,121,34,93,44,101,41,58,101,40,40,116,61,116,124,124,115,101,108,102,41,46,98,111,111,116,115,116,114,97,112,61,123,125,44,116,46,106,81,117,101,114,121,41,125,40,116,104,105,115,44,102,117,110,99,116,105,111,110,40,116,44,112,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,102,117,110,99,116,105,111,110,32,105,40,116,44,101,41,123,102,111,114,40,118,97,114,32,110,61,48,59,110,60,101,46,108,101,110,103,116,104,59,110,43,43,41,123,118,97,114,32,105,61,101,91,110,93,59,105,46,101,110,117,109,101,114,97,98,108,101,61,105,46,101,110,117,109,101,114,97,98,108,101,124,124,33,49,44,105,46,99,111,110,102,105,103,117,114,97,98,108,101,61,33,48,44,34,118,97,108,117,101,34,105,110,32,105,38,38,40,105,46,119,114,105,116,97,98,108,101,61,33,48,41,44,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,44,105,46,107,101,121,44,105,41,125,125,102,117,110,99,116,105,111,110,32,115,40,116,44,101,44,110,41,123,114,101,116,117,114,110,32,101,38,38,105,40,116,46,112,114,111,116,111,116,121,112,101,44,101,41,44,110,38,38,105,40,116,44,110,41,44,116,125,102,117,110,99,116,105,111,110,32,108,40,111,41,123,102,111,114,40,118,97,114,32,116,61,49,59,116,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,116,43,43,41,123,118,97,114,32,114,61,110,117,108,108,33,61,97,114,103,117,109,101,110,116,115,91,116,93,63,97,114,103,117,109,101,110,116,115,91,116,93,58,123,125,44,101,61,79,98,106,101,99,116,46,107,101,121,115,40,114,41,59,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,79,98,106,101,99,116,46,103,101,116,79,119,110,80,114,111,112,101,114,116,121,83,121,109,98,111,108,115,38,38,40,101,61,101,46,99,111,110,99,97,116,40,79,98,106,101,99,116,46,103,101,116,79,119,110,80,114,111,112,101,114,116,121,83,121,109,98,111,108,115,40,114,41,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,79,98,106,101,99,116,46,103,101,116,79,119,110,80,114,111,112,101,114,116,121,68,101,115,99,114,105,112,116,111,114,40,114,44,116,41,46,101,110,117,109,101,114,97,98,108,101,125,41,41,41,44,101,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,44,110,44,105,59,101,61,111,44,105,61,114,91,110,61,116,93,44,110,32,105,110,32,101,63,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,101,44,110,44,123,118,97,108,117,101,58,105,44,101,110,117,109,101,114,97,98,108,101,58,33,48,44,99,111,110,102,105,103,117,114,97,98,108,101,58,33,48,44,119,114,105,116,97,98,108,101,58,33,48,125,41,58,101,91,110,93,61,105,125,41,125,114,101,116,117,114,110,32,111,125,112,61,112,38,38,112,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,34,100,101,102,97,117,108,116,34,41,63,112,46,100,101,102,97,117,108,116,58,112,59,118,97,114,32,101,61,34,116,114,97,110,115,105,116,105,111,110,101,110,100,34,59,102,117,110,99,116,105,111,110,32,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,44,110,61,33,49,59,114,101,116,117,114,110,32,112,40,116,104,105,115,41,46,111,110,101,40,109,46,84,82,65,78,83,73,84,73,79,78,95,69,78,68,44,102,117,110,99,116,105,111,110,40,41,123,110,61,33,48,125,41,44,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,40,41,123,110,124,124,109,46,116,114,105,103,103,101,114,84,114,97,110,115,105,116,105,111,110,69,110,100,40,101,41,125,44,116,41,44,116,104,105,115,125,118,97,114,32,109,61,123,84,82,65,78,83,73,84,73,79,78,95,69,78,68,58,34,98,115,84,114,97,110,115,105,116,105,111,110,69,110,100,34,44,103,101,116,85,73,68,58,102,117,110,99,116,105,111,110,40,116,41,123,102,111,114,40,59,116,43,61,126,126,40,49,101,54,42,77,97,116,104,46,114,97,110,100,111,109,40,41,41,44,100,111,99,117,109,101,110,116,46,103,101,116,69,108,101,109,101,110,116,66,121,73,100,40,116,41,59,41,59,114,101,116,117,114,110,32,116,125,44,103,101,116,83,101,108,101,99,116,111,114,70,114,111,109,69,108,101,109,101,110,116,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,100,97,116,97,45,116,97,114,103,101,116,34,41,59,105,102,40,33,101,124,124,34,35,34,61,61,61,101,41,123,118,97,114,32,110,61,116,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,104,114,101,102,34,41,59,101,61,110,38,38,34,35,34,33,61,61,110,63,110,46,116,114,105,109,40,41,58,34,34,125,116,114,121,123,114,101,116,117,114,110,32,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,101,41,63,101,58,110,117,108,108,125,99,97,116,99,104,40,116,41,123,114,101,116,117,114,110,32,110,117,108,108,125,125,44,103,101,116,84,114,97,110,115,105,116,105,111,110,68,117,114,97,116,105,111,110,70,114,111,109,69,108,101,109,101,110,116,58,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,33,116,41,114,101,116,117,114,110,32,48,59,118,97,114,32,101,61,112,40,116,41,46,99,115,115,40,34,116,114,97,110,115,105,116,105,111,110,45,100,117,114,97,116,105,111,110,34,41,44,110,61,112,40,116,41,46,99,115,115,40,34,116,114,97,110,115,105,116,105,111,110,45,100,101,108,97,121,34,41,44,105,61,112,97,114,115,101,70,108,111,97,116,40,101,41,44,111,61,112,97,114,115,101,70,108,111,97,116,40,110,41,59,114,101,116,117,114,110,32,105,124,124,111,63,40,101,61,101,46,115,112,108,105,116,40,34,44,34,41,91,48,93,44,110,61,110,46,115,112,108,105,116,40,34,44,34,41,91,48,93,44,49,101,51,42,40,112,97,114,115,101,70,108,111,97,116,40,101,41,43,112,97,114,115,101,70,108,111,97,116,40,110,41,41,41,58,48,125,44,114,101,102,108,111,119,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,111,102,102,115,101,116,72,101,105,103,104,116,125,44,116,114,105,103,103,101,114,84,114,97,110,115,105,116,105,111,110,69,110,100,58,102,117,110,99,116,105,111,110,40,116,41,123,112,40,116,41,46,116,114,105,103,103,101,114,40,101,41,125,44,115,117,112,112,111,114,116,115,84,114,97,110,115,105,116,105,111,110,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,66,111,111,108,101,97,110,40,101,41,125,44,105,115,69,108,101,109,101,110,116,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,40,116,91,48,93,124,124,116,41,46,110,111,100,101,84,121,112,101,125,44,116,121,112,101,67,104,101,99,107,67,111,110,102,105,103,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,102,111,114,40,118,97,114,32,105,32,105,110,32,110,41,105,102,40,79,98,106,101,99,116,46,112,114,111,116,111,116,121,112,101,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,46,99,97,108,108,40,110,44,105,41,41,123,118,97,114,32,111,61,110,91,105,93,44,114,61,101,91,105,93,44,115,61,114,38,38,109,46,105,115,69,108,101,109,101,110,116,40,114,41,63,34,101,108,101,109,101,110,116,34,58,40,97,61,114,44,123,125,46,116,111,83,116,114,105,110,103,46,99,97,108,108,40,97,41,46,109,97,116,99,104,40,47,92,115,40,91,97,45,122,93,43,41,47,105,41,91,49,93,46,116,111,76,111,119,101,114,67,97,115,101,40,41,41,59,105,102,40,33,110,101,119,32,82,101,103,69,120,112,40,111,41,46,116,101,115,116,40,115,41,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,116,46,116,111,85,112,112,101,114,67,97,115,101,40,41,43,39,58,32,79,112,116,105,111,110,32,34,39,43,105,43,39,34,32,112,114,111,118,105,100,101,100,32,116,121,112,101,32,34,39,43,115,43,39,34,32,98,117,116,32,101,120,112,101,99,116,101,100,32,116,121,112,101,32,34,39,43,111,43,39,34,46,39,41,125,118,97,114,32,97,125,44,102,105,110,100,83,104,97,100,111,119,82,111,111,116,58,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,33,100,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,46,97,116,116,97,99,104,83,104,97,100,111,119,41,114,101,116,117,114,110,32,110,117,108,108,59,105,102,40,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,116,46,103,101,116,82,111,111,116,78,111,100,101,41,114,101,116,117,114,110,32,116,32,105,110,115,116,97,110,99,101,111,102,32,83,104,97,100,111,119,82,111,111,116,63,116,58,116,46,112,97,114,101,110,116,78,111,100,101,63,109,46,102,105,110,100,83,104,97,100,111,119,82,111,111,116,40,116,46,112,97,114,101,110,116,78,111,100,101,41,58,110,117,108,108,59,118,97,114,32,101,61,116,46,103,101,116,82,111,111,116,78,111,100,101,40,41,59,114,101,116,117,114,110,32,101,32,105,110,115,116,97,110,99,101,111,102,32,83,104,97,100,111,119,82,111,111,116,63,101,58,110,117,108,108,125,125,59,112,46,102,110,46,101,109,117,108,97,116,101,84,114,97,110,115,105,116,105,111,110,69,110,100,61,110,44,112,46,101,118,101,110,116,46,115,112,101,99,105,97,108,91,109,46,84,82,65,78,83,73,84,73,79,78,95,69,78,68,93,61,123,98,105,110,100,84,121,112,101,58,101,44,100,101,108,101,103,97,116,101,84,121,112,101,58,101,44,104,97,110,100,108,101,58,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,112,40,116,46,116,97,114,103,101,116,41,46,105,115,40,116,104,105,115,41,41,114,101,116,117,114,110,32,116,46,104,97,110,100,108,101,79,98,106,46,104,97,110,100,108,101,114,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,125,125,59,118,97,114,32,111,61,34,97,108,101,114,116,34,44,114,61,34,98,115,46,97,108,101,114,116,34,44,97,61,34,46,34,43,114,44,99,61,112,46,102,110,91,111,93,44,104,61,123,67,76,79,83,69,58,34,99,108,111,115,101,34,43,97,44,67,76,79,83,69,68,58,34,99,108,111,115,101,100,34,43,97,44,67,76,73,67,75,95,68,65,84,65,95,65,80,73,58,34,99,108,105,99,107,34,43,97,43,34,46,100,97,116,97,45,97,112,105,34,125,44,117,61,34,97,108,101,114,116,34,44,102,61,34,102,97,100,101,34,44,100,61,34,115,104,111,119,34,44,103,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,105,40,116,41,123,116,104,105,115,46,95,101,108,101,109,101,110,116,61,116,125,118,97,114,32,116,61,105,46,112,114,111,116,111,116,121,112,101,59,114,101,116,117,114,110,32,116,46,99,108,111,115,101,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,46,95,101,108,101,109,101,110,116,59,116,38,38,40,101,61,116,104,105,115,46,95,103,101,116,82,111,111,116,69,108,101,109,101,110,116,40,116,41,41,44,116,104,105,115,46,95,116,114,105,103,103,101,114,67,108,111,115,101,69,118,101,110,116,40,101,41,46,105,115,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,40,41,124,124,116,104,105,115,46,95,114,101,109,111,118,101,69,108,101,109,101,110,116,40,101,41,125,44,116,46,100,105,115,112,111,115,101,61,102,117,110,99,116,105,111,110,40,41,123,112,46,114,101,109,111,118,101,68,97,116,97,40,116,104,105,115,46,95,101,108,101,109,101,110,116,44,114,41,44,116,104,105,115,46,95,101,108,101,109,101,110,116,61,110,117,108,108,125,44,116,46,95,103,101,116,82,111,111,116,69,108,101,109,101,110,116,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,109,46,103,101,116,83,101,108,101,99,116,111,114,70,114,111,109,69,108,101,109,101,110,116,40,116,41,44,110,61,33,49,59,114,101,116,117,114,110,32,101,38,38,40,110,61,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,101,41,41,44,110,124,124,40,110,61,112,40,116,41,46,99,108,111,115,101,115,116,40,34,46,34,43,117,41,91,48,93,41,44,110,125,44,116,46,95,116,114,105,103,103,101,114,67,108,111,115,101,69,118,101,110,116,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,112,46,69,118,101,110,116,40,104,46,67,76,79,83,69,41,59,114,101,116,117,114,110,32,112,40,116,41,46,116,114,105,103,103,101,114,40,101,41,44,101,125,44,116,46,95,114,101,109,111,118,101,69,108,101,109,101,110,116,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,110,61,116,104,105,115,59,105,102,40,112,40,101,41,46,114,101,109,111,118,101,67,108,97,115,115,40,100,41,44,112,40,101,41,46,104,97,115,67,108,97,115,115,40,102,41,41,123,118,97,114,32,116,61,109,46,103,101,116,84,114,97,110,115,105,116,105,111,110,68,117,114,97,116,105,111,110,70,114,111,109,69,108,101,109,101,110,116,40,101,41,59,112,40,101,41,46,111,110,101,40,109,46,84,82,65,78,83,73,84,73,79,78,95,69,78,68,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,46,95,100,101,115,116,114,111,121,69,108,101,109,101,110,116,40,101,44,116,41,125,41,46,101,109,117,108,97,116,101,84,114,97,110,115,105,116,105,111,110,69,110,100,40,116,41,125,101,108,115,101,32,116,104,105,115,46,95,100,101,115,116,114,111,121,69,108,101,109,101,110,116,40,101,41,125,44,116,46,95,100,101,115,116,114,111,121,69,108,101,109,101,110,116,61,102,117,110,99,116,105,111,110,40,116,41,123,112,40,116,41,46,100,101,116,97,99,104,40,41,46,116,114,105,103,103,101,114,40,104,46,67,76,79,83,69,68,41,46,114,101,109,111,118,101,40,41,125,44,105,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,112,40,116,104,105,115,41,44,101,61,116,46,100,97,116,97,40,114,41,59,101,124,124,40,101,61,110,101,119,32,105,40,116,104,105,115,41,44,116,46,100,97,116,97,40,114,44,101,41,41,44,34,99,108,111,115,101,34,61,61,61,110,38,38,101,91,110,93,40,116,104,105,115,41,125,41,125,44,105,46,95,104,97,110,100,108,101,68,105,115,109,105,115,115,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,41,123,116,38,38,116,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,101,46,99,108,111,115,101,40,116,104,105,115,41,125,125,44,115,40,105,44,110,117,108,108,44,91,123,107,101,121,58,34,86,69,82,83,73,79,78,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,34,52,46,51,46,49,34,125,125,93,41,44,105,125,40,41,59,112,40,100,111,99,117,109,101,110,116,41,46,111,110,40,104,46,67,76,73,67,75,95,68,65,84,65,95,65,80,73,44,39,91,100,97,116,97,45,100,105,115,109,105,115,115,61,34,97,108,101,114,116,34,93,39,44,103,46,95,104,97,110,100,108,101,68,105,115,109,105,115,115,40,110,101,119,32,103,41,41,44,112,46,102,110,91,111,93,61,103,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,44,112,46,102,110,91,111,93,46,67,111,110,115,116,114,117,99,116,111,114,61,103,44,112,46,102,110,91,111,93,46,110,111,67,111,110,102,108,105,99,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,112,46,102,110,91,111,93,61,99,44,103,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,125,59,118,97,114,32,95,61,34,98,117,116,116,111,110,34,44,118,61,34,98,115,46,98,117,116,116,111,110,34,44,121,61,34,46,34,43,118,44,69,61,34,46,100,97,116,97,45,97,112,105,34,44,98,61,112,46,102,110,91,95,93,44,119,61,34,97,99,116,105,118,101,34,44,67,61,34,98,116,110,34,44,84,61,34,102,111,99,117,115,34,44,83,61,39,91,100,97,116,97,45,116,111,103,103,108,101,94,61,34,98,117,116,116,111,110,34,93,39,44,68,61,39,91,100,97,116,97,45,116,111,103,103,108,101,61,34,98,117,116,116,111,110,115,34,93,39,44,73,61,39,105,110,112,117,116,58,110,111,116,40,91,116,121,112,101,61,34,104,105,100,100,101,110,34,93,41,39,44,65,61,34,46,97,99,116,105,118,101,34,44,79,61,34,46,98,116,110,34,44,78,61,123,67,76,73,67,75,95,68,65,84,65,95,65,80,73,58,34,99,108,105,99,107,34,43,121,43,69,44,70,79,67,85,83,95,66,76,85,82,95,68,65,84,65,95,65,80,73,58,34,102,111,99,117,115,34,43,121,43,69,43,34,32,98,108,117,114,34,43,121,43,69,125,44,107,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,110,40,116,41,123,116,104,105,115,46,95,101,108,101,109,101,110,116,61,116,125,118,97,114,32,116,61,110,46,112,114,111,116,111,116,121,112,101,59,114,101,116,117,114,110,32,116,46,116,111,103,103,108,101,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,33,48,44,101,61,33,48,44,110,61,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,99,108,111,115,101,115,116,40,68,41,91,48,93,59,105,102,40,110,41,123,118,97,114,32,105,61,116,104,105,115,46,95,101,108,101,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,73,41,59,105,102,40,105,41,123,105,102,40,34,114,97,100,105,111,34,61,61,61,105,46,116,121,112,101,41,105,102,40,105,46,99,104,101,99,107,101,100,38,38,116,104,105,115,46,95,101,108,101,109,101,110,116,46,99,108,97,115,115,76,105,115,116,46,99,111,110,116,97,105,110,115,40,119,41,41,116,61,33,49,59,101,108,115,101,123,118,97,114,32,111,61,110,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,65,41,59,111,38,38,112,40,111,41,46,114,101,109,111,118,101,67,108,97,115,115,40,119,41,125,105,102,40,116,41,123,105,102,40,105,46,104,97,115,65,116,116,114,105,98,117,116,101,40,34,100,105,115,97,98,108,101,100,34,41,124,124,110,46,104,97,115,65,116,116,114,105,98,117,116,101,40,34,100,105,115,97,98,108,101,100,34,41,124,124,105,46,99,108,97,115,115,76,105,115,116,46,99,111,110,116,97,105,110,115,40,34,100,105,115,97,98,108,101,100,34,41,124,124,110,46,99,108,97,115,115,76,105,115,116,46,99,111,110,116,97,105,110,115,40,34,100,105,115,97,98,108,101,100,34,41,41,114,101,116,117,114,110,59,105,46,99,104,101,99,107,101,100,61,33,116,104,105,115,46,95,101,108,101,109,101,110,116,46,99,108,97,115,115,76,105,115,116,46,99,111,110,116,97,105,110,115,40,119,41,44,112,40,105,41,46,116,114,105,103,103,101,114,40,34,99,104,97,110,103,101,34,41,125,105,46,102,111,99,117,115,40,41,44,101,61,33,49,125,125,101,38,38,116,104,105,115,46,95,101,108,101,109,101,110,116,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,97,114,105,97,45,112,114,101,115,115,101,100,34,44,33,116,104,105,115,46,95,101,108,101,109,101,110,116,46,99,108,97,115,115,76,105,115,116,46,99,111,110,116,97,105,110,115,40,119,41,41,44,116,38,38,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,116,111,103,103,108,101,67,108,97,115,115,40,119,41,125,44,116,46,100,105,115,112,111,115,101,61,102,117,110,99,116,105,111,110,40,41,123,112,46,114,101,109,111,118,101,68,97,116,97,40,116,104,105,115,46,95,101,108,101,109,101,110,116,44,118,41,44,116,104,105,115,46,95,101,108,101,109,101,110,116,61,110,117,108,108,125,44,110,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,112,40,116,104,105,115,41,46,100,97,116,97,40,118,41,59,116,124,124,40,116,61,110,101,119,32,110,40,116,104,105,115,41,44,112,40,116,104,105,115,41,46,100,97,116,97,40,118,44,116,41,41,44,34,116,111,103,103,108,101,34,61,61,61,101,38,38,116,91,101,93,40,41,125,41,125,44,115,40,110,44,110,117,108,108,44,91,123,107,101,121,58,34,86,69,82,83,73,79,78,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,34,52,46,51,46,49,34,125,125,93,41,44,110,125,40,41,59,112,40,100,111,99,117,109,101,110,116,41,46,111,110,40,78,46,67,76,73,67,75,95,68,65,84,65,95,65,80,73,44,83,44,102,117,110,99,116,105,111,110,40,116,41,123,116,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,59,118,97,114,32,101,61,116,46,116,97,114,103,101,116,59,112,40,101,41,46,104,97,115,67,108,97,115,115,40,67,41,124,124,40,101,61,112,40,101,41,46,99,108,111,115,101,115,116,40,79,41,41,44,107,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,46,99,97,108,108,40,112,40,101,41,44,34,116,111,103,103,108,101,34,41,125,41,46,111,110,40,78,46,70,79,67,85,83,95,66,76,85,82,95,68,65,84,65,95,65,80,73,44,83,44,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,112,40,116,46,116,97,114,103,101,116,41,46,99,108,111,115,101,115,116,40,79,41,91,48,93,59,112,40,101,41,46,116,111,103,103,108,101,67,108,97,115,115,40,84,44,47,94,102,111,99,117,115,40,105,110,41,63,36,47,46,116,101,115,116,40,116,46,116,121,112,101,41,41,125,41,44,112,46,102,110,91,95,93,61,107,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,44,112,46,102,110,91,95,93,46,67,111,110,115,116,114,117,99,116,111,114,61,107,44,112,46,102,110,91,95,93,46,110,111,67,111,110,102,108,105,99,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,112,46,102,110,91,95,93,61,98,44,107,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,125,59,118,97,114,32,76,61,34,99,97,114,111,117,115,101,108,34,44,120,61,34,98,115,46,99,97,114,111,117,115,101,108,34,44,80,61,34,46,34,43,120,44,72,61,34,46,100,97,116,97,45,97,112,105,34,44,106,61,112,46,102,110,91,76,93,44,82,61,123,105,110,116,101,114,118,97,108,58,53,101,51,44,107,101,121,98,111,97,114,100,58,33,48,44,115,108,105,100,101,58,33,49,44,112,97,117,115,101,58,34,104,111,118,101,114,34,44,119,114,97,112,58,33,48,44,116,111,117,99,104,58,33,48,125,44,70,61,123,105,110,116,101,114,118,97,108,58,34,40,110,117,109,98,101,114,124,98,111,111,108,101,97,110,41,34,44,107,101,121,98,111,97,114,100,58,34,98,111,111,108,101,97,110,34,44,115,108,105,100,101,58,34,40,98,111,111,108,101,97,110,124,115,116,114,105,110,103,41,34,44,112,97,117,115,101,58,34,40,115,116,114,105,110,103,124,98,111,111,108,101,97,110,41,34,44,119,114,97,112,58,34,98,111,111,108,101,97,110,34,44,116,111,117,99,104,58,34,98,111,111,108,101,97,110,34,125,44,77,61,34,110,101,120,116,34,44,87,61,34,112,114,101,118,34,44,85,61,34,108,101,102,116,34,44,66,61,34,114,105,103,104,116,34,44,113,61,123,83,76,73,68,69,58,34,115,108,105,100,101,34,43,80,44,83,76,73,68,58,34,115,108,105,100,34,43,80,44,75,69,89,68,79,87,78,58,34,107,101,121,100,111,119,110,34,43,80,44,77,79,85,83,69,69,78,84,69,82,58,34,109,111,117,115,101,101,110,116,101,114,34,43,80,44,77,79,85,83,69,76,69,65,86,69,58,34,109,111,117,115,101,108,101,97,118,101,34,43,80,44,84,79,85,67,72,83,84,65,82,84,58,34,116,111,117,99,104,115,116,97,114,116,34,43,80,44,84,79,85,67,72,77,79,86,69,58,34,116,111,117,99,104,109,111,118,101,34,43,80,44,84,79,85,67,72,69,78,68,58,34,116,111,117,99,104,101,110,100,34,43,80,44,80,79,73,78,84,69,82,68,79,87,78,58,34,112,111,105,110,116,101,114,100,111,119,110,34,43,80,44,80,79,73,78,84,69,82,85,80,58,34,112,111,105,110,116,101,114,117,112,34,43,80,44,68,82,65,71,95,83,84,65,82,84,58,34,100,114,97,103,115,116,97,114,116,34,43,80,44,76,79,65,68,95,68,65,84,65,95,65,80,73,58,34,108,111,97,100,34,43,80,43,72,44,67,76,73,67,75,95,68,65,84,65,95,65,80,73,58,34,99,108,105,99,107,34,43,80,43,72,125,44,75,61,34,99,97,114,111,117,115,101,108,34,44,81,61,34,97,99,116,105,118,101,34,44,86,61,34,115,108,105,100,101,34,44,89,61,34,99,97,114,111,117,115,101,108,45,105,116,101,109,45,114,105,103,104,116,34,44,122,61,34,99,97,114,111,117,115,101,108,45,105,116,101,109,45,108,101,102,116,34,44,88,61,34,99,97,114,111,117,115,101,108,45,105,116,101,109,45,110,101,120,116,34,44,71,61,34,99,97,114,111,117,115,101,108,45,105,116,101,109,45,112,114,101,118,34,44,36,61,34,112,111,105,110,116,101,114,45,101,118,101,110,116,34,44,74,61,34,46,97,99,116,105,118,101,34,44,90,61,34,46,97,99,116,105,118,101,46,99,97,114,111,117,115,101,108,45,105,116,101,109,34,44,116,116,61,34,46,99,97,114,111,117,115,101,108,45,105,116,101,109,34,44,101,116,61,34,46,99,97,114,111,117,115,101,108,45,105,116,101,109,32,105,109,103,34,44,110,116,61,34,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,110,101,120,116,44,32,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,112,114,101,118,34,44,105,116,61,34,46,99,97,114,111,117,115,101,108,45,105,110,100,105,99,97,116,111,114,115,34,44,111,116,61,34,91,100,97,116,97,45,115,108,105,100,101,93,44,32,91,100,97,116,97,45,115,108,105,100,101,45,116,111,93,34,44,114,116,61,39,91,100,97,116,97,45,114,105,100,101,61,34,99,97,114,111,117,115,101,108,34,93,39,44,115,116,61,123,84,79,85,67,72,58,34,116,111,117,99,104,34,44,80,69,78,58,34,112,101,110,34,125,44,97,116,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,114,40,116,44,101,41,123,116,104,105,115,46,95,105,116,101,109,115,61,110,117,108,108,44,116,104,105,115,46,95,105,110,116,101,114,118,97,108,61,110,117,108,108,44,116,104,105,115,46,95,97,99,116,105,118,101,69,108,101,109,101,110,116,61,110,117,108,108,44,116,104,105,115,46,95,105,115,80,97,117,115,101,100,61,33,49,44,116,104,105,115,46,95,105,115,83,108,105,100,105,110,103,61,33,49,44,116,104,105,115,46,116,111,117,99,104,84,105,109,101,111,117,116,61,110,117,108,108,44,116,104,105,115,46,116,111,117,99,104,83,116,97,114,116,88,61,48,44,116,104,105,115,46,116,111,117,99,104,68,101,108,116,97,88,61,48,44,116,104,105,115,46,95,99,111,110,102,105,103,61,116,104,105,115,46,95,103,101,116,67,111,110,102,105,103,40,101,41,44,116,104,105,115,46,95,101,108,101,109,101,110,116,61,116,44,116,104,105,115,46,95,105,110,100,105,99,97,116,111,114,115,69,108,101,109,101,110,116,61,116,104,105,115,46,95,101,108,101,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,105,116,41,44,116,104,105,115,46,95,116,111,117,99,104,83,117,112,112,111,114,116,101,100,61,34,111,110,116,111,117,99,104,115,116,97,114,116,34,105,110,32,100,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,124,124,48,60,110,97,118,105,103,97,116,111,114,46,109,97,120,84,111,117,99,104,80,111,105,110,116,115,44,116,104,105,115,46,95,112,111,105,110,116,101,114,69,118,101,110,116,61,66,111,111,108,101,97,110,40,119,105,110,100,111,119,46,80,111,105,110,116,101,114,69,118,101,110,116,124,124,119,105,110,100,111,119,46,77,83,80,111,105,110,116,101,114,69,118,101,110,116,41,44,116,104,105,115,46,95,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,115,40,41,125,118,97,114,32,116,61,114,46,112,114,111,116,111,116,121,112,101,59,114,101,116,117,114,110,32,116,46,110,101,120,116,61,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,105,115,83,108,105,100,105,110,103,124,124,116,104,105,115,46,95,115,108,105,100,101,40,77,41,125,44,116,46,110,101,120,116,87,104,101,110,86,105,115,105,98,108,101,61,102,117,110,99,116,105,111,110,40,41,123,33,100,111,99,117,109,101,110,116,46,104,105,100,100,101,110,38,38,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,105,115,40,34,58,118,105,115,105,98,108,101,34,41,38,38,34,104,105,100,100,101,110,34,33,61,61,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,99,115,115,40,34,118,105,115,105,98,105,108,105,116,121,34,41,38,38,116,104,105,115,46,110,101,120,116,40,41,125,44,116,46,112,114,101,118,61,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,105,115,83,108,105,100,105,110,103,124,124,116,104,105,115,46,95,115,108,105,100,101,40,87,41,125,44,116,46,112,97,117,115,101,61,102,117,110,99,116,105,111,110,40,116,41,123,116,124,124,40,116,104,105,115,46,95,105,115,80,97,117,115,101,100,61,33,48,41,44,116,104,105,115,46,95,101,108,101,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,110,116,41,38,38,40,109,46,116,114,105,103,103,101,114,84,114,97,110,115,105,116,105,111,110,69,110,100,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,44,116,104,105,115,46,99,121,99,108,101,40,33,48,41,41,44,99,108,101,97,114,73,110,116,101,114,118,97,108,40,116,104,105,115,46,95,105,110,116,101,114,118,97,108,41,44,116,104,105,115,46,95,105,110,116,101,114,118,97,108,61,110,117,108,108,125,44,116,46,99,121,99,108,101,61,102,117,110,99,116,105,111,110,40,116,41,123,116,124,124,40,116,104,105,115,46,95,105,115,80,97,117,115,101,100,61,33,49,41,44,116,104,105,115,46,95,105,110,116,101,114,118,97,108,38,38,40,99,108,101,97,114,73,110,116,101,114,118,97,108,40,116,104,105,115,46,95,105,110,116,101,114,118,97,108,41,44,116,104,105,115,46,95,105,110,116,101,114,118,97,108,61,110,117,108,108,41,44,116,104,105,115,46,95,99,111,110,102,105,103,46,105,110,116,101,114,118,97,108,38,38,33,116,104,105,115,46,95,105,115,80,97,117,115,101,100,38,38,40,116,104,105,115,46,95,105,110,116,101,114,118,97,108,61,115,101,116,73,110,116,101,114,118,97,108,40,40,100,111,99,117,109,101,110,116,46,118,105,115,105,98,105,108,105,116,121,83,116,97,116,101,63,116,104,105,115,46,110,101,120,116,87,104,101,110,86,105,115,105,98,108,101,58,116,104,105,115,46,110,101,120,116,41,46,98,105,110,100,40,116,104,105,115,41,44,116,104,105,115,46,95,99,111,110,102,105,103,46,105,110,116,101,114,118,97,108,41,41,125,44,116,46,116,111,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,59,116,104,105,115,46,95,97,99,116,105,118,101,69,108,101,109,101,110,116,61,116,104,105,115,46,95,101,108,101,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,90,41,59,118,97,114,32,110,61,116,104,105,115,46,95,103,101,116,73,116,101,109,73,110,100,101,120,40,116,104,105,115,46,95,97,99,116,105,118,101,69,108,101,109,101,110,116,41,59,105,102,40,33,40,116,62,116,104,105,115,46,95,105,116,101,109,115,46,108,101,110,103,116,104,45,49,124,124,116,60,48,41,41,105,102,40,116,104,105,115,46,95,105,115,83,108,105,100,105,110,103,41,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,111,110,101,40,113,46,83,76,73,68,44,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,101,46,116,111,40,116,41,125,41,59,101,108,115,101,123,105,102,40,110,61,61,61,116,41,114,101,116,117,114,110,32,116,104,105,115,46,112,97,117,115,101,40,41,44,118,111,105,100,32,116,104,105,115,46,99,121,99,108,101,40,41,59,118,97,114,32,105,61,110,60,116,63,77,58,87,59,116,104,105,115,46,95,115,108,105,100,101,40,105,44,116,104,105,115,46,95,105,116,101,109,115,91,116,93,41,125,125,44,116,46,100,105,115,112,111,115,101,61,102,117,110,99,116,105,111,110,40,41,123,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,111,102,102,40,80,41,44,112,46,114,101,109,111,118,101,68,97,116,97,40,116,104,105,115,46,95,101,108,101,109,101,110,116,44,120,41,44,116,104,105,115,46,95,105,116,101,109,115,61,110,117,108,108,44,116,104,105,115,46,95,99,111,110,102,105,103,61,110,117,108,108,44,116,104,105,115,46,95,101,108,101,109,101,110,116,61,110,117,108,108,44,116,104,105,115,46,95,105,110,116,101,114,118,97,108,61,110,117,108,108,44,116,104,105,115,46,95,105,115,80,97,117,115,101,100,61,110,117,108,108,44,116,104,105,115,46,95,105,115,83,108,105,100,105,110,103,61,110,117,108,108,44,116,104,105,115,46,95,97,99,116,105,118,101,69,108,101,109,101,110,116,61,110,117,108,108,44,116,104,105,115,46,95,105,110,100,105,99,97,116,111,114,115,69,108,101,109,101,110,116,61,110,117,108,108,125,44,116,46,95,103,101,116,67,111,110,102,105,103,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,61,108,40,123,125,44,82,44,116,41,44,109,46,116,121,112,101,67,104,101,99,107,67,111,110,102,105,103,40,76,44,116,44,70,41,44,116,125,44,116,46,95,104,97,110,100,108,101,83,119,105,112,101,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,77,97,116,104,46,97,98,115,40,116,104,105,115,46,116,111,117,99,104,68,101,108,116,97,88,41,59,105,102,40,33,40,116,60,61,52,48,41,41,123,118,97,114,32,101,61,116,47,116,104,105,115,46,116,111,117,99,104,68,101,108,116,97,88,59,48,60,101,38,38,116,104,105,115,46,112,114,101,118,40,41,44,101,60,48,38,38,116,104,105,115,46,110,101,120,116,40,41,125,125,44,116,46,95,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,115,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,59,116,104,105,115,46,95,99,111,110,102,105,103,46,107,101,121,98,111,97,114,100,38,38,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,111,110,40,113,46,75,69,89,68,79,87,78,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,46,95,107,101,121,100,111,119,110,40,116,41,125,41,44,34,104,111,118,101,114,34,61,61,61,116,104,105,115,46,95,99,111,110,102,105,103,46,112,97,117,115,101,38,38,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,111,110,40,113,46,77,79,85,83,69,69,78,84,69,82,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,46,112,97,117,115,101,40,116,41,125,41,46,111,110,40,113,46,77,79,85,83,69,76,69,65,86,69,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,46,99,121,99,108,101,40,116,41,125,41,44,116,104,105,115,46,95,99,111,110,102,105,103,46,116,111,117,99,104,38,38,116,104,105,115,46,95,97,100,100,84,111,117,99,104,69,118,101,110,116,76,105,115,116,101,110,101,114,115,40,41,125,44,116,46,95,97,100,100,84,111,117,99,104,69,118,101,110,116,76,105,115,116,101,110,101,114,115,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,110,61,116,104,105,115,59,105,102,40,116,104,105,115,46,95,116,111,117,99,104,83,117,112,112,111,114,116,101,100,41,123,118,97,114,32,101,61,102,117,110,99,116,105,111,110,40,116,41,123,110,46,95,112,111,105,110,116,101,114,69,118,101,110,116,38,38,115,116,91,116,46,111,114,105,103,105,110,97,108,69,118,101,110,116,46,112,111,105,110,116,101,114,84,121,112,101,46,116,111,85,112,112,101,114,67,97,115,101,40,41,93,63,110,46,116,111,117,99,104,83,116,97,114,116,88,61,116,46,111,114,105,103,105,110,97,108,69,118,101,110,116,46,99,108,105,101,110,116,88,58,110,46,95,112,111,105,110,116,101,114,69,118,101,110,116,124,124,40,110,46,116,111,117,99,104,83,116,97,114,116,88,61,116,46,111,114,105,103,105,110,97,108,69,118,101,110,116,46,116,111,117,99,104,101,115,91,48,93,46,99,108,105,101,110,116,88,41,125,44,105,61,102,117,110,99,116,105,111,110,40,116,41,123,110,46,95,112,111,105,110,116,101,114,69,118,101,110,116,38,38,115,116,91,116,46,111,114,105,103,105,110,97,108,69,118,101,110,116,46,112,111,105,110,116,101,114,84,121,112,101,46,116,111,85,112,112,101,114,67,97,115,101,40,41,93,38,38,40,110,46,116,111,117,99,104,68,101,108,116,97,88,61,116,46,111,114,105,103,105,110,97,108,69,118,101,110,116,46,99,108,105,101,110,116,88,45,110,46,116,111,117,99,104,83,116,97,114,116,88,41,44,110,46,95,104,97,110,100,108,101,83,119,105,112,101,40,41,44,34,104,111,118,101,114,34,61,61,61,110,46,95,99,111,110,102,105,103,46,112,97,117,115,101,38,38,40,110,46,112,97,117,115,101,40,41,44,110,46,116,111,117,99,104,84,105,109,101,111,117,116,38,38,99,108,101,97,114,84,105,109,101,111,117,116,40,110,46,116,111,117,99,104,84,105,109,101,111,117,116,41,44,110,46,116,111,117,99,104,84,105,109,101,111,117,116,61,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,46,99,121,99,108,101,40,116,41,125,44,53,48,48,43,110,46,95,99,111,110,102,105,103,46,105,110,116,101,114,118,97,108,41,41,125,59,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,101,116,41,41,46,111,110,40,113,46,68,82,65,71,95,83,84,65,82,84,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,125,41,44,116,104,105,115,46,95,112,111,105,110,116,101,114,69,118,101,110,116,63,40,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,111,110,40,113,46,80,79,73,78,84,69,82,68,79,87,78,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,40,116,41,125,41,44,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,111,110,40,113,46,80,79,73,78,84,69,82,85,80,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,105,40,116,41,125,41,44,116,104,105,115,46,95,101,108,101,109,101,110,116,46,99,108,97,115,115,76,105,115,116,46,97,100,100,40,36,41,41,58,40,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,111,110,40,113,46,84,79,85,67,72,83,84,65,82,84,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,40,116,41,125,41,44,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,111,110,40,113,46,84,79,85,67,72,77,79,86,69,44,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,59,40,101,61,116,41,46,111,114,105,103,105,110,97,108,69,118,101,110,116,46,116,111,117,99,104,101,115,38,38,49,60,101,46,111,114,105,103,105,110,97,108,69,118,101,110,116,46,116,111,117,99,104,101,115,46,108,101,110,103,116,104,63,110,46,116,111,117,99,104,68,101,108,116,97,88,61,48,58,110,46,116,111,117,99,104,68,101,108,116,97,88,61,101,46,111,114,105,103,105,110,97,108,69,118,101,110,116,46,116,111,117,99,104,101,115,91,48,93,46,99,108,105,101,110,116,88,45,110,46,116,111,117,99,104,83,116,97,114,116,88,125,41,44,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,111,110,40,113,46,84,79,85,67,72,69,78,68,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,105,40,116,41,125,41,41,125,125,44,116,46,95,107,101,121,100,111,119,110,61,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,33,47,105,110,112,117,116,124,116,101,120,116,97,114,101,97,47,105,46,116,101,115,116,40,116,46,116,97,114,103,101,116,46,116,97,103,78,97,109,101,41,41,115,119,105,116,99,104,40,116,46,119,104,105,99,104,41,123,99,97,115,101,32,51,55,58,116,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,116,104,105,115,46,112,114,101,118,40,41,59,98,114,101,97,107,59,99,97,115,101,32,51,57,58,116,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,116,104,105,115,46,110,101,120,116,40,41,125,125,44,116,46,95,103,101,116,73,116,101,109,73,110,100,101,120,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,105,116,101,109,115,61,116,38,38,116,46,112,97,114,101,110,116,78,111,100,101,63,91,93,46,115,108,105,99,101,46,99,97,108,108,40,116,46,112,97,114,101,110,116,78,111,100,101,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,116,116,41,41,58,91,93,44,116,104,105,115,46,95,105,116,101,109,115,46,105,110,100,101,120,79,102,40,116,41,125,44,116,46,95,103,101,116,73,116,101,109,66,121,68,105,114,101,99,116,105,111,110,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,116,61,61,61,77,44,105,61,116,61,61,61,87,44,111,61,116,104,105,115,46,95,103,101,116,73,116,101,109,73,110,100,101,120,40,101,41,44,114,61,116,104,105,115,46,95,105,116,101,109,115,46,108,101,110,103,116,104,45,49,59,105,102,40,40,105,38,38,48,61,61,61,111,124,124,110,38,38,111,61,61,61,114,41,38,38,33,116,104,105,115,46,95,99,111,110,102,105,103,46,119,114,97,112,41,114,101,116,117,114,110,32,101,59,118,97,114,32,115,61,40,111,43,40,116,61,61,61,87,63,45,49,58,49,41,41,37,116,104,105,115,46,95,105,116,101,109,115,46,108,101,110,103,116,104,59,114,101,116,117,114,110,45,49,61,61,61,115,63,116,104,105,115,46,95,105,116,101,109,115,91,116,104,105,115,46,95,105,116,101,109,115,46,108,101,110,103,116,104,45,49,93,58,116,104,105,115,46,95,105,116,101,109,115,91,115,93,125,44,116,46,95,116,114,105,103,103,101,114,83,108,105,100,101,69,118,101,110,116,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,116,104,105,115,46,95,103,101,116,73,116,101,109,73,110,100,101,120,40,116,41,44,105,61,116,104,105,115,46,95,103,101,116,73,116,101,109,73,110,100,101,120,40,116,104,105,115,46,95,101,108,101,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,90,41,41,44,111,61,112,46,69,118,101,110,116,40,113,46,83,76,73,68,69,44,123,114,101,108,97,116,101,100,84,97,114,103,101,116,58,116,44,100,105,114,101,99,116,105,111,110,58,101,44,102,114,111,109,58,105,44,116,111,58,110,125,41,59,114,101,116,117,114,110,32,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,116,114,105,103,103,101,114,40,111,41,44,111,125,44,116,46,95,115,101,116,65,99,116,105,118,101,73,110,100,105,99,97,116,111,114,69,108,101,109,101,110,116,61,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,116,104,105,115,46,95,105,110,100,105,99,97,116,111,114,115,69,108,101,109,101,110,116,41,123,118,97,114,32,101,61,91,93,46,115,108,105,99,101,46,99,97,108,108,40,116,104,105,115,46,95,105,110,100,105,99,97,116,111,114,115,69,108,101,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,74,41,41,59,112,40,101,41,46,114,101,109,111,118,101,67,108,97,115,115,40,81,41,59,118,97,114,32,110,61,116,104,105,115,46,95,105,110,100,105,99,97,116,111,114,115,69,108,101,109,101,110,116,46,99,104,105,108,100,114,101,110,91,116,104,105,115,46,95,103,101,116,73,116,101,109,73,110,100,101,120,40,116,41,93,59,110,38,38,112,40,110,41,46,97,100,100,67,108,97,115,115,40,81,41,125,125,44,116,46,95,115,108,105,100,101,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,44,105,44,111,44,114,61,116,104,105,115,44,115,61,116,104,105,115,46,95,101,108,101,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,90,41,44,97,61,116,104,105,115,46,95,103,101,116,73,116,101,109,73,110,100,101,120,40,115,41,44,108,61,101,124,124,115,38,38,116,104,105,115,46,95,103,101,116,73,116,101,109,66,121,68,105,114,101,99,116,105,111,110,40,116,44,115,41,44,99,61,116,104,105,115,46,95,103,101,116,73,116,101,109,73,110,100,101,120,40,108,41,44,104,61,66,111,111,108,101,97,110,40,116,104,105,115,46,95,105,110,116,101,114,118,97,108,41,59,105,102,40,111,61,116,61,61,61,77,63,40,110,61,122,44,105,61,88,44,85,41,58,40,110,61,89,44,105,61,71,44,66,41,44,108,38,38,112,40,108,41,46,104,97,115,67,108,97,115,115,40,81,41,41,116,104,105,115,46,95,105,115,83,108,105,100,105,110,103,61,33,49,59,101,108,115,101,32,105,102,40,33,116,104,105,115,46,95,116,114,105,103,103,101,114,83,108,105,100,101,69,118,101,110,116,40,108,44,111,41,46,105,115,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,40,41,38,38,115,38,38,108,41,123,116,104,105,115,46,95,105,115,83,108,105,100,105,110,103,61,33,48,44,104,38,38,116,104,105,115,46,112,97,117,115,101,40,41,44,116,104,105,115,46,95,115,101,116,65,99,116,105,118,101,73,110,100,105,99,97,116,111,114,69,108,101,109,101,110,116,40,108,41,59,118,97,114,32,117,61,112,46,69,118,101,110,116,40,113,46,83,76,73,68,44,123,114,101,108,97,116,101,100,84,97,114,103,101,116,58,108,44,100,105,114,101,99,116,105,111,110,58,111,44,102,114,111,109,58,97,44,116,111,58,99,125,41,59,105,102,40,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,104,97,115,67,108,97,115,115,40,86,41,41,123,112,40,108,41,46,97,100,100,67,108,97,115,115,40,105,41,44,109,46,114,101,102,108,111,119,40,108,41,44,112,40,115,41,46,97,100,100,67,108,97,115,115,40,110,41,44,112,40,108,41,46,97,100,100,67,108,97,115,115,40,110,41,59,118,97,114,32,102,61,112,97,114,115,101,73,110,116,40,108,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,100,97,116,97,45,105,110,116,101,114,118,97,108,34,41,44,49,48,41,59,116,104,105,115,46,95,99,111,110,102,105,103,46,105,110,116,101,114,118,97,108,61,102,63,40,116,104,105,115,46,95,99,111,110,102,105,103,46,100,101,102,97,117,108,116,73,110,116,101,114,118,97,108,61,116,104,105,115,46,95,99,111,110,102,105,103,46,100,101,102,97,117,108,116,73,110,116,101,114,118,97,108,124,124,116,104,105,115,46,95,99,111,110,102,105,103,46,105,110,116,101,114,118,97,108,44,102,41,58,116,104,105,115,46,95,99,111,110,102,105,103,46,100,101,102,97,117,108,116,73,110,116,101,114,118,97,108,124,124,116,104,105,115,46,95,99,111,110,102,105,103,46,105,110,116,101,114,118,97,108,59,118,97,114,32,100,61,109,46,103,101,116,84,114,97,110,115,105,116,105,111,110,68,117,114,97,116,105,111,110,70,114,111,109,69,108,101,109,101,110,116,40,115,41,59,112,40,115,41,46,111,110,101,40,109,46,84,82,65,78,83,73,84,73,79,78,95,69,78,68,44,102,117,110,99,116,105,111,110,40,41,123,112,40,108,41,46,114,101,109,111,118,101,67,108,97,115,115,40,110,43,34,32,34,43,105,41,46,97,100,100,67,108,97,115,115,40,81,41,44,112,40,115,41,46,114,101,109,111,118,101,67,108,97,115,115,40,81,43,34,32,34,43,105,43,34,32,34,43,110,41,44,114,46,95,105,115,83,108,105,100,105,110,103,61,33,49,44,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,112,40,114,46,95,101,108,101,109,101,110,116,41,46,116,114,105,103,103,101,114,40,117,41,125,44,48,41,125,41,46,101,109,117,108,97,116,101,84,114,97,110,115,105,116,105,111,110,69,110,100,40,100,41,125,101,108,115,101,32,112,40,115,41,46,114,101,109,111,118,101,67,108,97,115,115,40,81,41,44,112,40,108,41,46,97,100,100,67,108,97,115,115,40,81,41,44,116,104,105,115,46,95,105,115,83,108,105,100,105,110,103,61,33,49,44,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,116,114,105,103,103,101,114,40,117,41,59,104,38,38,116,104,105,115,46,99,121,99,108,101,40,41,125,125,44,114,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,61,102,117,110,99,116,105,111,110,40,105,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,112,40,116,104,105,115,41,46,100,97,116,97,40,120,41,44,101,61,108,40,123,125,44,82,44,112,40,116,104,105,115,41,46,100,97,116,97,40,41,41,59,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,105,38,38,40,101,61,108,40,123,125,44,101,44,105,41,41,59,118,97,114,32,110,61,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,105,63,105,58,101,46,115,108,105,100,101,59,105,102,40,116,124,124,40,116,61,110,101,119,32,114,40,116,104,105,115,44,101,41,44,112,40,116,104,105,115,41,46,100,97,116,97,40,120,44,116,41,41,44,34,110,117,109,98,101,114,34,61,61,116,121,112,101,111,102,32,105,41,116,46,116,111,40,105,41,59,101,108,115,101,32,105,102,40,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,110,41,123,105,102,40,34,117,110,100,101,102,105,110,101,100,34,61,61,116,121,112,101,111,102,32,116,91,110,93,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,39,78,111,32,109,101,116,104,111,100,32,110,97,109,101,100,32,34,39,43,110,43,39,34,39,41,59,116,91,110,93,40,41,125,101,108,115,101,32,101,46,105,110,116,101,114,118,97,108,38,38,101,46,114,105,100,101,38,38,40,116,46,112,97,117,115,101,40,41,44,116,46,99,121,99,108,101,40,41,41,125,41,125,44,114,46,95,100,97,116,97,65,112,105,67,108,105,99,107,72,97,110,100,108,101,114,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,109,46,103,101,116,83,101,108,101,99,116,111,114,70,114,111,109,69,108,101,109,101,110,116,40,116,104,105,115,41,59,105,102,40,101,41,123,118,97,114,32,110,61,112,40,101,41,91,48,93,59,105,102,40,110,38,38,112,40,110,41,46,104,97,115,67,108,97,115,115,40,75,41,41,123,118,97,114,32,105,61,108,40,123,125,44,112,40,110,41,46,100,97,116,97,40,41,44,112,40,116,104,105,115,41,46,100,97,116,97,40,41,41,44,111,61,116,104,105,115,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,100,97,116,97,45,115,108,105,100,101,45,116,111,34,41,59,111,38,38,40,105,46,105,110,116,101,114,118,97,108,61,33,49,41,44,114,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,46,99,97,108,108,40,112,40,110,41,44,105,41,44,111,38,38,112,40,110,41,46,100,97,116,97,40,120,41,46,116,111,40,111,41,44,116,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,125,125,125,44,115,40,114,44,110,117,108,108,44,91,123,107,101,121,58,34,86,69,82,83,73,79,78,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,34,52,46,51,46,49,34,125,125,44,123,107,101,121,58,34,68,101,102,97,117,108,116,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,82,125,125,93,41,44,114,125,40,41,59,112,40,100,111,99,117,109,101,110,116,41,46,111,110,40,113,46,67,76,73,67,75,95,68,65,84,65,95,65,80,73,44,111,116,44,97,116,46,95,100,97,116,97,65,112,105,67,108,105,99,107,72,97,110,100,108,101,114,41,44,112,40,119,105,110,100,111,119,41,46,111,110,40,113,46,76,79,65,68,95,68,65,84,65,95,65,80,73,44,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,118,97,114,32,116,61,91,93,46,115,108,105,99,101,46,99,97,108,108,40,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,114,116,41,41,44,101,61,48,44,110,61,116,46,108,101,110,103,116,104,59,101,60,110,59,101,43,43,41,123,118,97,114,32,105,61,112,40,116,91,101,93,41,59,97,116,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,46,99,97,108,108,40,105,44,105,46,100,97,116,97,40,41,41,125,125,41,44,112,46,102,110,91,76,93,61,97,116,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,44,112,46,102,110,91,76,93,46,67,111,110,115,116,114,117,99,116,111,114,61,97,116,44,112,46,102,110,91,76,93,46,110,111,67,111,110,102,108,105,99,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,112,46,102,110,91,76,93,61,106,44,97,116,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,125,59,118,97,114,32,108,116,61,34,99,111,108,108,97,112,115,101,34,44,99,116,61,34,98,115,46,99,111,108,108,97,112,115,101,34,44,104,116,61,34,46,34,43,99,116,44,117,116,61,112,46,102,110,91,108,116,93,44,102,116,61,123,116,111,103,103,108,101,58,33,48,44,112,97,114,101,110,116,58,34,34,125,44,100,116,61,123,116,111,103,103,108,101,58,34,98,111,111,108,101,97,110,34,44,112,97,114,101,110,116,58,34,40,115,116,114,105,110,103,124,101,108,101,109,101,110,116,41,34,125,44,112,116,61,123,83,72,79,87,58,34,115,104,111,119,34,43,104,116,44,83,72,79,87,78,58,34,115,104,111,119,110,34,43,104,116,44,72,73,68,69,58,34,104,105,100,101,34,43,104,116,44,72,73,68,68,69,78,58,34,104,105,100,100,101,110,34,43,104,116,44,67,76,73,67,75,95,68,65,84,65,95,65,80,73,58,34,99,108,105,99,107,34,43,104,116,43,34,46,100,97,116,97,45,97,112,105,34,125,44,109,116,61,34,115,104,111,119,34,44,103,116,61,34,99,111,108,108,97,112,115,101,34,44,95,116,61,34,99,111,108,108,97,112,115,105,110,103,34,44,118,116,61,34,99,111,108,108,97,112,115,101,100,34,44,121,116,61,34,119,105,100,116,104,34,44,69,116,61,34,104,101,105,103,104,116,34,44,98,116,61,34,46,115,104,111,119,44,32,46,99,111,108,108,97,112,115,105,110,103,34,44,119,116,61,39,91,100,97,116,97,45,116,111,103,103,108,101,61,34,99,111,108,108,97,112,115,101,34,93,39,44,67,116,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,97,40,101,44,116,41,123,116,104,105,115,46,95,105,115,84,114,97,110,115,105,116,105,111,110,105,110,103,61,33,49,44,116,104,105,115,46,95,101,108,101,109,101,110,116,61,101,44,116,104,105,115,46,95,99,111,110,102,105,103,61,116,104,105,115,46,95,103,101,116,67,111,110,102,105,103,40,116,41,44,116,104,105,115,46,95,116,114,105,103,103,101,114,65,114,114,97,121,61,91,93,46,115,108,105,99,101,46,99,97,108,108,40,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,39,91,100,97,116,97,45,116,111,103,103,108,101,61,34,99,111,108,108,97,112,115,101,34,93,91,104,114,101,102,61,34,35,39,43,101,46,105,100,43,39,34,93,44,91,100,97,116,97,45,116,111,103,103,108,101,61,34,99,111,108,108,97,112,115,101,34,93,91,100,97,116,97,45,116,97,114,103,101,116,61,34,35,39,43,101,46,105,100,43,39,34,93,39,41,41,59,102,111,114,40,118,97,114,32,110,61,91,93,46,115,108,105,99,101,46,99,97,108,108,40,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,119,116,41,41,44,105,61,48,44,111,61,110,46,108,101,110,103,116,104,59,105,60,111,59,105,43,43,41,123,118,97,114,32,114,61,110,91,105,93,44,115,61,109,46,103,101,116,83,101,108,101,99,116,111,114,70,114,111,109,69,108,101,109,101,110,116,40,114,41,44,97,61,91,93,46,115,108,105,99,101,46,99,97,108,108,40,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,115,41,41,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,61,61,61,101,125,41,59,110,117,108,108,33,61,61,115,38,38,48,60,97,46,108,101,110,103,116,104,38,38,40,116,104,105,115,46,95,115,101,108,101,99,116,111,114,61,115,44,116,104,105,115,46,95,116,114,105,103,103,101,114,65,114,114,97,121,46,112,117,115,104,40,114,41,41,125,116,104,105,115,46,95,112,97,114,101,110,116,61,116,104,105,115,46,95,99,111,110,102,105,103,46,112,97,114,101,110,116,63,116,104,105,115,46,95,103,101,116,80,97,114,101,110,116,40,41,58,110,117,108,108,44,116,104,105,115,46,95,99,111,110,102,105,103,46,112,97,114,101,110,116,124,124,116,104,105,115,46,95,97,100,100,65,114,105,97,65,110,100,67,111,108,108,97,112,115,101,100,67,108,97,115,115,40,116,104,105,115,46,95,101,108,101,109,101,110,116,44,116,104,105,115,46,95,116,114,105,103,103,101,114,65,114,114,97,121,41,44,116,104,105,115,46,95,99,111,110,102,105,103,46,116,111,103,103,108,101,38,38,116,104,105,115,46,116,111,103,103,108,101,40,41,125,118,97,114,32,116,61,97,46,112,114,111,116,111,116,121,112,101,59,114,101,116,117,114,110,32,116,46,116,111,103,103,108,101,61,102,117,110,99,116,105,111,110,40,41,123,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,104,97,115,67,108,97,115,115,40,109,116,41,63,116,104,105,115,46,104,105,100,101,40,41,58,116,104,105,115,46,115,104,111,119,40,41,125,44,116,46,115,104,111,119,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,44,101,44,110,61,116,104,105,115,59,105,102,40,33,116,104,105,115,46,95,105,115,84,114,97,110,115,105,116,105,111,110,105,110,103,38,38,33,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,104,97,115,67,108,97,115,115,40,109,116,41,38,38,40,116,104,105,115,46,95,112,97,114,101,110,116,38,38,48,61,61,61,40,116,61,91,93,46,115,108,105,99,101,46,99,97,108,108,40,116,104,105,115,46,95,112,97,114,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,98,116,41,41,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,110,46,95,99,111,110,102,105,103,46,112,97,114,101,110,116,63,116,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,100,97,116,97,45,112,97,114,101,110,116,34,41,61,61,61,110,46,95,99,111,110,102,105,103,46,112,97,114,101,110,116,58,116,46,99,108,97,115,115,76,105,115,116,46,99,111,110,116,97,105,110,115,40,103,116,41,125,41,41,46,108,101,110,103,116,104,38,38,40,116,61,110,117,108,108,41,44,33,40,116,38,38,40,101,61,112,40,116,41,46,110,111,116,40,116,104,105,115,46,95,115,101,108,101,99,116,111,114,41,46,100,97,116,97,40,99,116,41,41,38,38,101,46,95,105,115,84,114,97,110,115,105,116,105,111,110,105,110,103,41,41,41,123,118,97,114,32,105,61,112,46,69,118,101,110,116,40,112,116,46,83,72,79,87,41,59,105,102,40,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,116,114,105,103,103,101,114,40,105,41,44,33,105,46,105,115,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,40,41,41,123,116,38,38,40,97,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,46,99,97,108,108,40,112,40,116,41,46,110,111,116,40,116,104,105,115,46,95,115,101,108,101,99,116,111,114,41,44,34,104,105,100,101,34,41,44,101,124,124,112,40,116,41,46,100,97,116,97,40,99,116,44,110,117,108,108,41,41,59,118,97,114,32,111,61,116,104,105,115,46,95,103,101,116,68,105,109,101,110,115,105,111,110,40,41,59,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,114,101,109,111,118,101,67,108,97,115,115,40,103,116,41,46,97,100,100,67,108,97,115,115,40,95,116,41,44,116,104,105,115,46,95,101,108,101,109,101,110,116,46,115,116,121,108,101,91,111,93,61,48,44,116,104,105,115,46,95,116,114,105,103,103,101,114,65,114,114,97,121,46,108,101,110,103,116,104,38,38,112,40,116,104,105,115,46,95,116,114,105,103,103,101,114,65,114,114,97,121,41,46,114,101,109,111,118,101,67,108,97,115,115,40,118,116,41,46,97,116,116,114,40,34,97,114,105,97,45,101,120,112,97,110,100,101,100,34,44,33,48,41,44,116,104,105,115,46,115,101,116,84,114,97,110,115,105,116,105,111,110,105,110,103,40,33,48,41,59,118,97,114,32,114,61,34,115,99,114,111,108,108,34,43,40,111,91,48,93,46,116,111,85,112,112,101,114,67,97,115,101,40,41,43,111,46,115,108,105,99,101,40,49,41,41,44,115,61,109,46,103,101,116,84,114,97,110,115,105,116,105,111,110,68,117,114,97,116,105,111,110,70,114,111,109,69,108,101,109,101,110,116,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,59,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,111,110,101,40,109,46,84,82,65,78,83,73,84,73,79,78,95,69,78,68,44,102,117,110,99,116,105,111,110,40,41,123,112,40,110,46,95,101,108,101,109,101,110,116,41,46,114,101,109,111,118,101,67,108,97,115,115,40,95,116,41,46,97,100,100,67,108,97,115,115,40,103,116,41,46,97,100,100,67,108,97,115,115,40,109,116,41,44,110,46,95,101,108,101,109,101,110,116,46,115,116,121,108,101,91,111,93,61,34,34,44,110,46,115,101,116,84,114,97,110,115,105,116,105,111,110,105,110,103,40,33,49,41,44,112,40,110,46,95,101,108,101,109,101,110,116,41,46,116,114,105,103,103,101,114,40,112,116,46,83,72,79,87,78,41,125,41,46,101,109,117,108,97,116,101,84,114,97,110,115,105,116,105,111,110,69,110,100,40,115,41,44,116,104,105,115,46,95,101,108,101,109,101,110,116,46,115,116,121,108,101,91,111,93,61,116,104,105,115,46,95,101,108,101,109,101,110,116,91,114,93,43,34,112,120,34,125,125,125,44,116,46,104,105,100,101,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,59,105,102,40,33,116,104,105,115,46,95,105,115,84,114,97,110,115,105,116,105,111,110,105,110,103,38,38,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,104,97,115,67,108,97,115,115,40,109,116,41,41,123,118,97,114,32,101,61,112,46,69,118,101,110,116,40,112,116,46,72,73,68,69,41,59,105,102,40,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,116,114,105,103,103,101,114,40,101,41,44,33,101,46,105,115,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,40,41,41,123,118,97,114,32,110,61,116,104,105,115,46,95,103,101,116,68,105,109,101,110,115,105,111,110,40,41,59,116,104,105,115,46,95,101,108,101,109,101,110,116,46,115,116,121,108,101,91,110,93,61,116,104,105,115,46,95,101,108,101,109,101,110,116,46,103,101,116,66,111,117,110,100,105,110,103,67,108,105,101,110,116,82,101,99,116,40,41,91,110,93,43,34,112,120,34,44,109,46,114,101,102,108,111,119,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,44,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,97,100,100,67,108,97,115,115,40,95,116,41,46,114,101,109,111,118,101,67,108,97,115,115,40,103,116,41,46,114,101,109,111,118,101,67,108,97,115,115,40,109,116,41,59,118,97,114,32,105,61,116,104,105,115,46,95,116,114,105,103,103,101,114,65,114,114,97,121,46,108,101,110,103,116,104,59,105,102,40,48,60,105,41,102,111,114,40,118,97,114,32,111,61,48,59,111,60,105,59,111,43,43,41,123,118,97,114,32,114,61,116,104,105,115,46,95,116,114,105,103,103,101,114,65,114,114,97,121,91,111,93,44,115,61,109,46,103,101,116,83,101,108,101,99,116,111,114,70,114,111,109,69,108,101,109,101,110,116,40,114,41,59,105,102,40,110,117,108,108,33,61,61,115,41,112,40,91,93,46,115,108,105,99,101,46,99,97,108,108,40,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,115,41,41,41,46,104,97,115,67,108,97,115,115,40,109,116,41,124,124,112,40,114,41,46,97,100,100,67,108,97,115,115,40,118,116,41,46,97,116,116,114,40,34,97,114,105,97,45,101,120,112,97,110,100,101,100,34,44,33,49,41,125,116,104,105,115,46,115,101,116,84,114,97,110,115,105,116,105,111,110,105,110,103,40,33,48,41,59,116,104,105,115,46,95,101,108,101,109,101,110,116,46,115,116,121,108,101,91,110,93,61,34,34,59,118,97,114,32,97,61,109,46,103,101,116,84,114,97,110,115,105,116,105,111,110,68,117,114,97,116,105,111,110,70,114,111,109,69,108,101,109,101,110,116,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,59,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,111,110,101,40,109,46,84,82,65,78,83,73,84,73,79,78,95,69,78,68,44,102,117,110,99,116,105,111,110,40,41,123,116,46,115,101,116,84,114,97,110,115,105,116,105,111,110,105,110,103,40,33,49,41,44,112,40,116,46,95,101,108,101,109,101,110,116,41,46,114,101,109,111,118,101,67,108,97,115,115,40,95,116,41,46,97,100,100,67,108,97,115,115,40,103,116,41,46,116,114,105,103,103,101,114,40,112,116,46,72,73,68,68,69,78,41,125,41,46,101,109,117,108,97,116,101,84,114,97,110,115,105,116,105,111,110,69,110,100,40,97,41,125,125,125,44,116,46,115,101,116,84,114,97,110,115,105,116,105,111,110,105,110,103,61,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,95,105,115,84,114,97,110,115,105,116,105,111,110,105,110,103,61,116,125,44,116,46,100,105,115,112,111,115,101,61,102,117,110,99,116,105,111,110,40,41,123,112,46,114,101,109,111,118,101,68,97,116,97,40,116,104,105,115,46,95,101,108,101,109,101,110,116,44,99,116,41,44,116,104,105,115,46,95,99,111,110,102,105,103,61,110,117,108,108,44,116,104,105,115,46,95,112,97,114,101,110,116,61,110,117,108,108,44,116,104,105,115,46,95,101,108,101,109,101,110,116,61,110,117,108,108,44,116,104,105,115,46,95,116,114,105,103,103,101,114,65,114,114,97,121,61,110,117,108,108,44,116,104,105,115,46,95,105,115,84,114,97,110,115,105,116,105,111,110,105,110,103,61,110,117,108,108,125,44,116,46,95,103,101,116,67,111,110,102,105,103,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,40,116,61,108,40,123,125,44,102,116,44,116,41,41,46,116,111,103,103,108,101,61,66,111,111,108,101,97,110,40,116,46,116,111,103,103,108,101,41,44,109,46,116,121,112,101,67,104,101,99,107,67,111,110,102,105,103,40,108,116,44,116,44,100,116,41,44,116,125,44,116,46,95,103,101,116,68,105,109,101,110,115,105,111,110,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,104,97,115,67,108,97,115,115,40,121,116,41,63,121,116,58,69,116,125,44,116,46,95,103,101,116,80,97,114,101,110,116,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,44,110,61,116,104,105,115,59,109,46,105,115,69,108,101,109,101,110,116,40,116,104,105,115,46,95,99,111,110,102,105,103,46,112,97,114,101,110,116,41,63,40,116,61,116,104,105,115,46,95,99,111,110,102,105,103,46,112,97,114,101,110,116,44,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,116,104,105,115,46,95,99,111,110,102,105,103,46,112,97,114,101,110,116,46,106,113,117,101,114,121,38,38,40,116,61,116,104,105,115,46,95,99,111,110,102,105,103,46,112,97,114,101,110,116,91,48,93,41,41,58,116,61,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,116,104,105,115,46,95,99,111,110,102,105,103,46,112,97,114,101,110,116,41,59,118,97,114,32,101,61,39,91,100,97,116,97,45,116,111,103,103,108,101,61,34,99,111,108,108,97,112,115,101,34,93,91,100,97,116,97,45,112,97,114,101,110,116,61,34,39,43,116,104,105,115,46,95,99,111,110,102,105,103,46,112,97,114,101,110,116,43,39,34,93,39,44,105,61,91,93,46,115,108,105,99,101,46,99,97,108,108,40,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,101,41,41,59,114,101,116,117,114,110,32,112,40,105,41,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,110,46,95,97,100,100,65,114,105,97,65,110,100,67,111,108,108,97,112,115,101,100,67,108,97,115,115,40,97,46,95,103,101,116,84,97,114,103,101,116,70,114,111,109,69,108,101,109,101,110,116,40,101,41,44,91,101,93,41,125,41,44,116,125,44,116,46,95,97,100,100,65,114,105,97,65,110,100,67,111,108,108,97,112,115,101,100,67,108,97,115,115,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,112,40,116,41,46,104,97,115,67,108,97,115,115,40,109,116,41,59,101,46,108,101,110,103,116,104,38,38,112,40,101,41,46,116,111,103,103,108,101,67,108,97,115,115,40,118,116,44,33,110,41,46,97,116,116,114,40,34,97,114,105,97,45,101,120,112,97,110,100,101,100,34,44,110,41,125,44,97,46,95,103,101,116,84,97,114,103,101,116,70,114,111,109,69,108,101,109,101,110,116,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,109,46,103,101,116,83,101,108,101,99,116,111,114,70,114,111,109,69,108,101,109,101,110,116,40,116,41,59,114,101,116,117,114,110,32,101,63,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,101,41,58,110,117,108,108,125,44,97,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,61,102,117,110,99,116,105,111,110,40,105,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,112,40,116,104,105,115,41,44,101,61,116,46,100,97,116,97,40,99,116,41,44,110,61,108,40,123,125,44,102,116,44,116,46,100,97,116,97,40,41,44,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,105,38,38,105,63,105,58,123,125,41,59,105,102,40,33,101,38,38,110,46,116,111,103,103,108,101,38,38,47,115,104,111,119,124,104,105,100,101,47,46,116,101,115,116,40,105,41,38,38,40,110,46,116,111,103,103,108,101,61,33,49,41,44,101,124,124,40,101,61,110,101,119,32,97,40,116,104,105,115,44,110,41,44,116,46,100,97,116,97,40,99,116,44,101,41,41,44,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,105,41,123,105,102,40,34,117,110,100,101,102,105,110,101,100,34,61,61,116,121,112,101,111,102,32,101,91,105,93,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,39,78,111,32,109,101,116,104,111,100,32,110,97,109,101,100,32,34,39,43,105,43,39,34,39,41,59,101,91,105,93,40,41,125,125,41,125,44,115,40,97,44,110,117,108,108,44,91,123,107,101,121,58,34,86,69,82,83,73,79,78,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,34,52,46,51,46,49,34,125,125,44,123,107,101,121,58,34,68,101,102,97,117,108,116,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,102,116,125,125,93,41,44,97,125,40,41,59,112,40,100,111,99,117,109,101,110,116,41,46,111,110,40,112,116,46,67,76,73,67,75,95,68,65,84,65,95,65,80,73,44,119,116,44,102,117,110,99,116,105,111,110,40,116,41,123,34,65,34,61,61,61,116,46,99,117,114,114,101,110,116,84,97,114,103,101,116,46,116,97,103,78,97,109,101,38,38,116,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,59,118,97,114,32,110,61,112,40,116,104,105,115,41,44,101,61,109,46,103,101,116,83,101,108,101,99,116,111,114,70,114,111,109,69,108,101,109,101,110,116,40,116,104,105,115,41,44,105,61,91,93,46,115,108,105,99,101,46,99,97,108,108,40,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,101,41,41,59,112,40,105,41,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,112,40,116,104,105,115,41,44,101,61,116,46,100,97,116,97,40,99,116,41,63,34,116,111,103,103,108,101,34,58,110,46,100,97,116,97,40,41,59,67,116,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,46,99,97,108,108,40,116,44,101,41,125,41,125,41,44,112,46,102,110,91,108,116,93,61,67,116,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,44,112,46,102,110,91,108,116,93,46,67,111,110,115,116,114,117,99,116,111,114,61,67,116,44,112,46,102,110,91,108,116,93,46,110,111,67,111,110,102,108,105,99,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,112,46,102,110,91,108,116,93,61,117,116,44,67,116,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,125,59,102,111,114,40,118,97,114,32,84,116,61,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,119,105,110,100,111,119,38,38,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,100,111,99,117,109,101,110,116,44,83,116,61,91,34,69,100,103,101,34,44,34,84,114,105,100,101,110,116,34,44,34,70,105,114,101,102,111,120,34,93,44,68,116,61,48,44,73,116,61,48,59,73,116,60,83,116,46,108,101,110,103,116,104,59,73,116,43,61,49,41,105,102,40,84,116,38,38,48,60,61,110,97,118,105,103,97,116,111,114,46,117,115,101,114,65,103,101,110,116,46,105,110,100,101,120,79,102,40,83,116,91,73,116,93,41,41,123,68,116,61,49,59,98,114,101,97,107,125,118,97,114,32,65,116,61,84,116,38,38,119,105,110,100,111,119,46,80,114,111,109,105,115,101,63,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,33,49,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,101,124,124,40,101,61,33,48,44,119,105,110,100,111,119,46,80,114,111,109,105,115,101,46,114,101,115,111,108,118,101,40,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,41,123,101,61,33,49,44,116,40,41,125,41,41,125,125,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,33,49,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,101,124,124,40,101,61,33,48,44,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,40,41,123,101,61,33,49,44,116,40,41,125,44,68,116,41,41,125,125,59,102,117,110,99,116,105,111,110,32,79,116,40,116,41,123,114,101,116,117,114,110,32,116,38,38,34,91,111,98,106,101,99,116,32,70,117,110,99,116,105,111,110,93,34,61,61,61,123,125,46,116,111,83,116,114,105,110,103,46,99,97,108,108,40,116,41,125,102,117,110,99,116,105,111,110,32,78,116,40,116,44,101,41,123,105,102,40,49,33,61,61,116,46,110,111,100,101,84,121,112,101,41,114,101,116,117,114,110,91,93,59,118,97,114,32,110,61,116,46,111,119,110,101,114,68,111,99,117,109,101,110,116,46,100,101,102,97,117,108,116,86,105,101,119,46,103,101,116,67,111,109,112,117,116,101,100,83,116,121,108,101,40,116,44,110,117,108,108,41,59,114,101,116,117,114,110,32,101,63,110,91,101,93,58,110,125,102,117,110,99,116,105,111,110,32,107,116,40,116,41,123,114,101,116,117,114,110,34,72,84,77,76,34,61,61,61,116,46,110,111,100,101,78,97,109,101,63,116,58,116,46,112,97,114,101,110,116,78,111,100,101,124,124,116,46,104,111,115,116,125,102,117,110,99,116,105,111,110,32,76,116,40,116,41,123,105,102,40,33,116,41,114,101,116,117,114,110,32,100,111,99,117,109,101,110,116,46,98,111,100,121,59,115,119,105,116,99,104,40,116,46,110,111,100,101,78,97,109,101,41,123,99,97,115,101,34,72,84,77,76,34,58,99,97,115,101,34,66,79,68,89,34,58,114,101,116,117,114,110,32,116,46,111,119,110,101,114,68,111,99,117,109,101,110,116,46,98,111,100,121,59,99,97,115,101,34,35,100,111,99,117,109,101,110,116,34,58,114,101,116,117,114,110,32,116,46,98,111,100,121,125,118,97,114,32,101,61,78,116,40,116,41,44,110,61,101,46,111,118,101,114,102,108,111,119,44,105,61,101,46,111,118,101,114,102,108,111,119,88,44,111,61,101,46,111,118,101,114,102,108,111,119,89,59,114,101,116,117,114,110,47,40,97,117,116,111,124,115,99,114,111,108,108,124,111,118,101,114,108,97,121,41,47,46,116,101,115,116,40,110,43,111,43,105,41,63,116,58,76,116,40,107,116,40,116,41,41,125,118,97,114,32,120,116,61,84,116,38,38,33,40,33,119,105,110,100,111,119,46,77,83,73,110,112,117,116,77,101,116,104,111,100,67,111,110,116,101,120,116,124,124,33,100,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,77,111,100,101,41,44,80,116,61,84,116,38,38,47,77,83,73,69,32,49,48,47,46,116,101,115,116,40,110,97,118,105,103,97,116,111,114,46,117,115,101,114,65,103,101,110,116,41,59,102,117,110,99,116,105,111,110,32,72,116,40,116,41,123,114,101,116,117,114,110,32,49,49,61,61,61,116,63,120,116,58,49,48,61,61,61,116,63,80,116,58,120,116,124,124,80,116,125,102,117,110,99,116,105,111,110,32,106,116,40,116,41,123,105,102,40,33,116,41,114,101,116,117,114,110,32,100,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,59,102,111,114,40,118,97,114,32,101,61,72,116,40,49,48,41,63,100,111,99,117,109,101,110,116,46,98,111,100,121,58,110,117,108,108,44,110,61,116,46,111,102,102,115,101,116,80,97,114,101,110,116,124,124,110,117,108,108,59,110,61,61,61,101,38,38,116,46,110,101,120,116,69,108,101,109,101,110,116,83,105,98,108,105,110,103,59,41,110,61,40,116,61,116,46,110,101,120,116,69,108,101,109,101,110,116,83,105,98,108,105,110,103,41,46,111,102,102,115,101,116,80,97,114,101,110,116,59,118,97,114,32,105,61,110,38,38,110,46,110,111,100,101,78,97,109,101,59,114,101,116,117,114,110,32,105,38,38,34,66,79,68,89,34,33,61,61,105,38,38,34,72,84,77,76,34,33,61,61,105,63,45,49,33,61,61,91,34,84,72,34,44,34,84,68,34,44,34,84,65,66,76,69,34,93,46,105,110,100,101,120,79,102,40,110,46,110,111,100,101,78,97,109,101,41,38,38,34,115,116,97,116,105,99,34,61,61,61,78,116,40,110,44,34,112,111,115,105,116,105,111,110,34,41,63,106,116,40,110,41,58,110,58,116,63,116,46,111,119,110,101,114,68,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,58,100,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,125,102,117,110,99,116,105,111,110,32,82,116,40,116,41,123,114,101,116,117,114,110,32,110,117,108,108,33,61,61,116,46,112,97,114,101,110,116,78,111,100,101,63,82,116,40,116,46,112,97,114,101,110,116,78,111,100,101,41,58,116,125,102,117,110,99,116,105,111,110,32,70,116,40,116,44,101,41,123,105,102,40,33,40,116,38,38,116,46,110,111,100,101,84,121,112,101,38,38,101,38,38,101,46,110,111,100,101,84,121,112,101,41,41,114,101,116,117,114,110,32,100,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,59,118,97,114,32,110,61,116,46,99,111,109,112,97,114,101,68,111,99,117,109,101,110,116,80,111,115,105,116,105,111,110,40,101,41,38,78,111,100,101,46,68,79,67,85,77,69,78,84,95,80,79,83,73,84,73,79,78,95,70,79,76,76,79,87,73,78,71,44,105,61,110,63,116,58,101,44,111,61,110,63,101,58,116,44,114,61,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,82,97,110,103,101,40,41,59,114,46,115,101,116,83,116,97,114,116,40,105,44,48,41,44,114,46,115,101,116,69,110,100,40,111,44,48,41,59,118,97,114,32,115,44,97,44,108,61,114,46,99,111,109,109,111,110,65,110,99,101,115,116,111,114,67,111,110,116,97,105,110,101,114,59,105,102,40,116,33,61,61,108,38,38,101,33,61,61,108,124,124,105,46,99,111,110,116,97,105,110,115,40,111,41,41,114,101,116,117,114,110,34,66,79,68,89,34,61,61,61,40,97,61,40,115,61,108,41,46,110,111,100,101,78,97,109,101,41,124,124,34,72,84,77,76,34,33,61,61,97,38,38,106,116,40,115,46,102,105,114,115,116,69,108,101,109,101,110,116,67,104,105,108,100,41,33,61,61,115,63,106,116,40,108,41,58,108,59,118,97,114,32,99,61,82,116,40,116,41,59,114,101,116,117,114,110,32,99,46,104,111,115,116,63,70,116,40,99,46,104,111,115,116,44,101,41,58,70,116,40,116,44,82,116,40,101,41,46,104,111,115,116,41,125,102,117,110,99,116,105,111,110,32,77,116,40,116,41,123,118,97,114,32,101,61,34,116,111,112,34,61,61,61,40,49,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,38,38,118,111,105,100,32,48,33,61,61,97,114,103,117,109,101,110,116,115,91,49,93,63,97,114,103,117,109,101,110,116,115,91,49,93,58,34,116,111,112,34,41,63,34,115,99,114,111,108,108,84,111,112,34,58,34,115,99,114,111,108,108,76,101,102,116,34,44,110,61,116,46,110,111,100,101,78,97,109,101,59,105,102,40,34,66,79,68,89,34,33,61,61,110,38,38,34,72,84,77,76,34,33,61,61,110,41,114,101,116,117,114,110,32,116,91,101,93,59,118,97,114,32,105,61,116,46,111,119,110,101,114,68,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,59,114,101,116,117,114,110,40,116,46,111,119,110,101,114,68,111,99,117,109,101,110,116,46,115,99,114,111,108,108,105,110,103,69,108,101,109,101,110,116,124,124,105,41,91,101,93,125,102,117,110,99,116,105,111,110,32,87,116,40,116,44,101,41,123,118,97,114,32,110,61,34,120,34,61,61,61,101,63,34,76,101,102,116,34,58,34,84,111,112,34,44,105,61,34,76,101,102,116,34,61,61,61,110,63,34,82,105,103,104,116,34,58,34,66,111,116,116,111,109,34,59,114,101,116,117,114,110,32,112,97,114,115,101,70,108,111,97,116,40,116,91,34,98,111,114,100,101,114,34,43,110,43,34,87,105,100,116,104,34,93,44,49,48,41,43,112,97,114,115,101,70,108,111,97,116,40,116,91,34,98,111,114,100,101,114,34,43,105,43,34,87,105,100,116,104,34,93,44,49,48,41,125,102,117,110,99,116,105,111,110,32,85,116,40,116,44,101,44,110,44,105,41,123,114,101,116,117,114,110,32,77,97,116,104,46,109,97,120,40,101,91,34,111,102,102,115,101,116,34,43,116,93,44,101,91,34,115,99,114,111,108,108,34,43,116,93,44,110,91,34,99,108,105,101,110,116,34,43,116,93,44,110,91,34,111,102,102,115,101,116,34,43,116,93,44,110,91,34,115,99,114,111,108,108,34,43,116,93,44,72,116,40,49,48,41,63,112,97,114,115,101,73,110,116,40,110,91,34,111,102,102,115,101,116,34,43,116,93,41,43,112,97,114,115,101,73,110,116,40,105,91,34,109,97,114,103,105,110,34,43,40,34,72,101,105,103,104,116,34,61,61,61,116,63,34,84,111,112,34,58,34,76,101,102,116,34,41,93,41,43,112,97,114,115,101,73,110,116,40,105,91,34,109,97,114,103,105,110,34,43,40,34,72,101,105,103,104,116,34,61,61,61,116,63,34,66,111,116,116,111,109,34,58,34,82,105,103,104,116,34,41,93,41,58,48,41,125,102,117,110,99,116,105,111,110,32,66,116,40,116,41,123,118,97,114,32,101,61,116,46,98,111,100,121,44,110,61,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,44,105,61,72,116,40,49,48,41,38,38,103,101,116,67,111,109,112,117,116,101,100,83,116,121,108,101,40,110,41,59,114,101,116,117,114,110,123,104,101,105,103,104,116,58,85,116,40,34,72,101,105,103,104,116,34,44,101,44,110,44,105,41,44,119,105,100,116,104,58,85,116,40,34,87,105,100,116,104,34,44,101,44,110,44,105,41,125,125,118,97,114,32,113,116,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,105,40,116,44,101,41,123,102,111,114,40,118,97,114,32,110,61,48,59,110,60,101,46,108,101,110,103,116,104,59,110,43,43,41,123,118,97,114,32,105,61,101,91,110,93,59,105,46,101,110,117,109,101,114,97,98,108,101,61,105,46,101,110,117,109,101,114,97,98,108,101,124,124,33,49,44,105,46,99,111,110,102,105,103,117,114,97,98,108,101,61,33,48,44,34,118,97,108,117,101,34,105,110,32,105,38,38,40,105,46,119,114,105,116,97,98,108,101,61,33,48,41,44,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,44,105,46,107,101,121,44,105,41,125,125,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,114,101,116,117,114,110,32,101,38,38,105,40,116,46,112,114,111,116,111,116,121,112,101,44,101,41,44,110,38,38,105,40,116,44,110,41,44,116,125,125,40,41,44,75,116,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,114,101,116,117,114,110,32,101,32,105,110,32,116,63,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,44,101,44,123,118,97,108,117,101,58,110,44,101,110,117,109,101,114,97,98,108,101,58,33,48,44,99,111,110,102,105,103,117,114,97,98,108,101,58,33,48,44,119,114,105,116,97,98,108,101,58,33,48,125,41,58,116,91,101,93,61,110,44,116,125,44,81,116,61,79,98,106,101,99,116,46,97,115,115,105,103,110,124,124,102,117,110,99,116,105,111,110,40,116,41,123,102,111,114,40,118,97,114,32,101,61,49,59,101,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,101,43,43,41,123,118,97,114,32,110,61,97,114,103,117,109,101,110,116,115,91,101,93,59,102,111,114,40,118,97,114,32,105,32,105,110,32,110,41,79,98,106,101,99,116,46,112,114,111,116,111,116,121,112,101,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,46,99,97,108,108,40,110,44,105,41,38,38,40,116,91,105,93,61,110,91,105,93,41,125,114,101,116,117,114,110,32,116,125,59,102,117,110,99,116,105,111,110,32,86,116,40,116,41,123,114,101,116,117,114,110,32,81,116,40,123,125,44,116,44,123,114,105,103,104,116,58,116,46,108,101,102,116,43,116,46,119,105,100,116,104,44,98,111,116,116,111,109,58,116,46,116,111,112,43,116,46,104,101,105,103,104,116,125,41,125,102,117,110,99,116,105,111,110,32,89,116,40,116,41,123,118,97,114,32,101,61,123,125,59,116,114,121,123,105,102,40,72,116,40,49,48,41,41,123,101,61,116,46,103,101,116,66,111,117,110,100,105,110,103,67,108,105,101,110,116,82,101,99,116,40,41,59,118,97,114,32,110,61,77,116,40,116,44,34,116,111,112,34,41,44,105,61,77,116,40,116,44,34,108,101,102,116,34,41,59,101,46,116,111,112,43,61,110,44,101,46,108,101,102,116,43,61,105,44,101,46,98,111,116,116,111,109,43,61,110,44,101,46,114,105,103,104,116,43,61,105,125,101,108,115,101,32,101,61,116,46,103,101,116,66,111,117,110,100,105,110,103,67,108,105,101,110,116,82,101,99,116,40,41,125,99,97,116,99,104,40,116,41,123,125,118,97,114,32,111,61,123,108,101,102,116,58,101,46,108,101,102,116,44,116,111,112,58,101,46,116,111,112,44,119,105,100,116,104,58,101,46,114,105,103,104,116,45,101,46,108,101,102,116,44,104,101,105,103,104,116,58,101,46,98,111,116,116,111,109,45,101,46,116,111,112,125,44,114,61,34,72,84,77,76,34,61,61,61,116,46,110,111,100,101,78,97,109,101,63,66,116,40,116,46,111,119,110,101,114,68,111,99,117,109,101,110,116,41,58,123,125,44,115,61,114,46,119,105,100,116,104,124,124,116,46,99,108,105,101,110,116,87,105,100,116,104,124,124,111,46,114,105,103,104,116,45,111,46,108,101,102,116,44,97,61,114,46,104,101,105,103,104,116,124,124,116,46,99,108,105,101,110,116,72,101,105,103,104,116,124,124,111,46,98,111,116,116,111,109,45,111,46,116,111,112,44,108,61,116,46,111,102,102,115,101,116,87,105,100,116,104,45,115,44,99,61,116,46,111,102,102,115,101,116,72,101,105,103,104,116,45,97,59,105,102,40,108,124,124,99,41,123,118,97,114,32,104,61,78,116,40,116,41,59,108,45,61,87,116,40,104,44,34,120,34,41,44,99,45,61,87,116,40,104,44,34,121,34,41,44,111,46,119,105,100,116,104,45,61,108,44,111,46,104,101,105,103,104,116,45,61,99,125,114,101,116,117,114,110,32,86,116,40,111,41,125,102,117,110,99,116,105,111,110,32,122,116,40,116,44,101,41,123,118,97,114,32,110,61,50,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,38,38,118,111,105,100,32,48,33,61,61,97,114,103,117,109,101,110,116,115,91,50,93,38,38,97,114,103,117,109,101,110,116,115,91,50,93,44,105,61,72,116,40,49,48,41,44,111,61,34,72,84,77,76,34,61,61,61,101,46,110,111,100,101,78,97,109,101,44,114,61,89,116,40,116,41,44,115,61,89,116,40,101,41,44,97,61,76,116,40,116,41,44,108,61,78,116,40,101,41,44,99,61,112,97,114,115,101,70,108,111,97,116,40,108,46,98,111,114,100,101,114,84,111,112,87,105,100,116,104,44,49,48,41,44,104,61,112,97,114,115,101,70,108,111,97,116,40,108,46,98,111,114,100,101,114,76,101,102,116,87,105,100,116,104,44,49,48,41,59,110,38,38,111,38,38,40,115,46,116,111,112,61,77,97,116,104,46,109,97,120,40,115,46,116,111,112,44,48,41,44,115,46,108,101,102,116,61,77,97,116,104,46,109,97,120,40,115,46,108,101,102,116,44,48,41,41,59,118,97,114,32,117,61,86,116,40,123,116,111,112,58,114,46,116,111,112,45,115,46,116,111,112,45,99,44,108,101,102,116,58,114,46,108,101,102,116,45,115,46,108,101,102,116,45,104,44,119,105,100,116,104,58,114,46,119,105,100,116,104,44,104,101,105,103,104,116,58,114,46,104,101,105,103,104,116,125,41,59,105,102,40,117,46,109,97,114,103,105,110,84,111,112,61,48,44,117,46,109,97,114,103,105,110,76,101,102,116,61,48,44,33,105,38,38,111,41,123,118,97,114,32,102,61,112,97,114,115,101,70,108,111,97,116,40,108,46,109,97,114,103,105,110,84,111,112,44,49,48,41,44,100,61,112,97,114,115,101,70,108,111,97,116,40,108,46,109,97,114,103,105,110,76,101,102,116,44,49,48,41,59,117,46,116,111,112,45,61,99,45,102,44,117,46,98,111,116,116,111,109,45,61,99,45,102,44,117,46,108,101,102,116,45,61,104,45,100,44,117,46,114,105,103,104,116,45,61,104,45,100,44,117,46,109,97,114,103,105,110,84,111,112,61,102,44,117,46,109,97,114,103,105,110,76,101,102,116,61,100,125,114,101,116,117,114,110,40,105,38,38,33,110,63,101,46,99,111,110,116,97,105,110,115,40,97,41,58,101,61,61,61,97,38,38,34,66,79,68,89,34,33,61,61,97,46,110,111,100,101,78,97,109,101,41,38,38,40,117,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,50,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,38,38,118,111,105,100,32,48,33,61,61,97,114,103,117,109,101,110,116,115,91,50,93,38,38,97,114,103,117,109,101,110,116,115,91,50,93,44,105,61,77,116,40,101,44,34,116,111,112,34,41,44,111,61,77,116,40,101,44,34,108,101,102,116,34,41,44,114,61,110,63,45,49,58,49,59,114,101,116,117,114,110,32,116,46,116,111,112,43,61,105,42,114,44,116,46,98,111,116,116,111,109,43,61,105,42,114,44,116,46,108,101,102,116,43,61,111,42,114,44,116,46,114,105,103,104,116,43,61,111,42,114,44,116,125,40,117,44,101,41,41,44,117,125,102,117,110,99,116,105,111,110,32,88,116,40,116,41,123,105,102,40,33,116,124,124,33,116,46,112,97,114,101,110,116,69,108,101,109,101,110,116,124,124,72,116,40,41,41,114,101,116,117,114,110,32,100,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,59,102,111,114,40,118,97,114,32,101,61,116,46,112,97,114,101,110,116,69,108,101,109,101,110,116,59,101,38,38,34,110,111,110,101,34,61,61,61,78,116,40,101,44,34,116,114,97,110,115,102,111,114,109,34,41,59,41,101,61,101,46,112,97,114,101,110,116,69,108,101,109,101,110,116,59,114,101,116,117,114,110,32,101,124,124,100,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,125,102,117,110,99,116,105,111,110,32,71,116,40,116,44,101,44,110,44,105,41,123,118,97,114,32,111,61,52,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,38,38,118,111,105,100,32,48,33,61,61,97,114,103,117,109,101,110,116,115,91,52,93,38,38,97,114,103,117,109,101,110,116,115,91,52,93,44,114,61,123,116,111,112,58,48,44,108,101,102,116,58,48,125,44,115,61,111,63,88,116,40,116,41,58,70,116,40,116,44,101,41,59,105,102,40,34,118,105,101,119,112,111,114,116,34,61,61,61,105,41,114,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,49,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,38,38,118,111,105,100,32,48,33,61,61,97,114,103,117,109,101,110,116,115,91,49,93,38,38,97,114,103,117,109,101,110,116,115,91,49,93,44,110,61,116,46,111,119,110,101,114,68,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,44,105,61,122,116,40,116,44,110,41,44,111,61,77,97,116,104,46,109,97,120,40,110,46,99,108,105,101,110,116,87,105,100,116,104,44,119,105,110,100,111,119,46,105,110,110,101,114,87,105,100,116,104,124,124,48,41,44,114,61,77,97,116,104,46,109,97,120,40,110,46,99,108,105,101,110,116,72,101,105,103,104,116,44,119,105,110,100,111,119,46,105,110,110,101,114,72,101,105,103,104,116,124,124,48,41,44,115,61,101,63,48,58,77,116,40,110,41,44,97,61,101,63,48,58,77,116,40,110,44,34,108,101,102,116,34,41,59,114,101,116,117,114,110,32,86,116,40,123,116,111,112,58,115,45,105,46,116,111,112,43,105,46,109,97,114,103,105,110,84,111,112,44,108,101,102,116,58,97,45,105,46,108,101,102,116,43,105,46,109,97,114,103,105,110,76,101,102,116,44,119,105,100,116,104,58,111,44,104,101,105,103,104,116,58,114,125,41,125,40,115,44,111,41,59,101,108,115,101,123,118,97,114,32,97,61,118,111,105,100,32,48,59,34,115,99,114,111,108,108,80,97,114,101,110,116,34,61,61,61,105,63,34,66,79,68,89,34,61,61,61,40,97,61,76,116,40,107,116,40,101,41,41,41,46,110,111,100,101,78,97,109,101,38,38,40,97,61,116,46,111,119,110,101,114,68,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,41,58,97,61,34,119,105,110,100,111,119,34,61,61,61,105,63,116,46,111,119,110,101,114,68,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,58,105,59,118,97,114,32,108,61,122,116,40,97,44,115,44,111,41,59,105,102,40,34,72,84,77,76,34,33,61,61,97,46,110,111,100,101,78,97,109,101,124,124,102,117,110,99,116,105,111,110,32,116,40,101,41,123,118,97,114,32,110,61,101,46,110,111,100,101,78,97,109,101,59,105,102,40,34,66,79,68,89,34,61,61,61,110,124,124,34,72,84,77,76,34,61,61,61,110,41,114,101,116,117,114,110,33,49,59,105,102,40,34,102,105,120,101,100,34,61,61,61,78,116,40,101,44,34,112,111,115,105,116,105,111,110,34,41,41,114,101,116,117,114,110,33,48,59,118,97,114,32,105,61,107,116,40,101,41,59,114,101,116,117,114,110,33,33,105,38,38,116,40,105,41,125,40,115,41,41,114,61,108,59,101,108,115,101,123,118,97,114,32,99,61,66,116,40,116,46,111,119,110,101,114,68,111,99,117,109,101,110,116,41,44,104,61,99,46,104,101,105,103,104,116,44,117,61,99,46,119,105,100,116,104,59,114,46,116,111,112,43,61,108,46,116,111,112,45,108,46,109,97,114,103,105,110,84,111,112,44,114,46,98,111,116,116,111,109,61,104,43,108,46,116,111,112,44,114,46,108,101,102,116,43,61,108,46,108,101,102,116,45,108,46,109,97,114,103,105,110,76,101,102,116,44,114,46,114,105,103,104,116,61,117,43,108,46,108,101,102,116,125,125,118,97,114,32,102,61,34,110,117,109,98,101,114,34,61,61,116,121,112,101,111,102,40,110,61,110,124,124,48,41,59,114,101,116,117,114,110,32,114,46,108,101,102,116,43,61,102,63,110,58,110,46,108,101,102,116,124,124,48,44,114,46,116,111,112,43,61,102,63,110,58,110,46,116,111,112,124,124,48,44,114,46,114,105,103,104,116,45,61,102,63,110,58,110,46,114,105,103,104,116,124,124,48,44,114,46,98,111,116,116,111,109,45,61,102,63,110,58,110,46,98,111,116,116,111,109,124,124,48,44,114,125,102,117,110,99,116,105,111,110,32,36,116,40,116,44,101,44,105,44,110,44,111,41,123,118,97,114,32,114,61,53,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,38,38,118,111,105,100,32,48,33,61,61,97,114,103,117,109,101,110,116,115,91,53,93,63,97,114,103,117,109,101,110,116,115,91,53,93,58,48,59,105,102,40,45,49,61,61,61,116,46,105,110,100,101,120,79,102,40,34,97,117,116,111,34,41,41,114,101,116,117,114,110,32,116,59,118,97,114,32,115,61,71,116,40,105,44,110,44,114,44,111,41,44,97,61,123,116,111,112,58,123,119,105,100,116,104,58,115,46,119,105,100,116,104,44,104,101,105,103,104,116,58,101,46,116,111,112,45,115,46,116,111,112,125,44,114,105,103,104,116,58,123,119,105,100,116,104,58,115,46,114,105,103,104,116,45,101,46,114,105,103,104,116,44,104,101,105,103,104,116,58,115,46,104,101,105,103,104,116,125,44,98,111,116,116,111,109,58,123,119,105,100,116,104,58,115,46,119,105,100,116,104,44,104,101,105,103,104,116,58,115,46,98,111,116,116,111,109,45,101,46,98,111,116,116,111,109,125,44,108,101,102,116,58,123,119,105,100,116,104,58,101,46,108,101,102,116,45,115,46,108,101,102,116,44,104,101,105,103,104,116,58,115,46,104,101,105,103,104,116,125,125,44,108,61,79,98,106,101,99,116,46,107,101,121,115,40,97,41,46,109,97,112,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,81,116,40,123,107,101,121,58,116,125,44,97,91,116,93,44,123,97,114,101,97,58,40,101,61,97,91,116,93,44,101,46,119,105,100,116,104,42,101,46,104,101,105,103,104,116,41,125,41,59,118,97,114,32,101,125,41,46,115,111,114,116,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,101,46,97,114,101,97,45,116,46,97,114,101,97,125,41,44,99,61,108,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,46,119,105,100,116,104,44,110,61,116,46,104,101,105,103,104,116,59,114,101,116,117,114,110,32,101,62,61,105,46,99,108,105,101,110,116,87,105,100,116,104,38,38,110,62,61,105,46,99,108,105,101,110,116,72,101,105,103,104,116,125,41,44,104,61,48,60,99,46,108,101,110,103,116,104,63,99,91,48,93,46,107,101,121,58,108,91,48,93,46,107,101,121,44,117,61,116,46,115,112,108,105,116,40,34,45,34,41,91,49,93,59,114,101,116,117,114,110,32,104,43,40,117,63,34,45,34,43,117,58,34,34,41,125,102,117,110,99,116,105,111,110,32,74,116,40,116,44,101,44,110,41,123,118,97,114,32,105,61,51,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,38,38,118,111,105,100,32,48,33,61,61,97,114,103,117,109,101,110,116,115,91,51,93,63,97,114,103,117,109,101,110,116,115,91,51,93,58,110,117,108,108,59,114,101,116,117,114,110,32,122,116,40,110,44,105,63,88,116,40,101,41,58,70,116,40,101,44,110,41,44,105,41,125,102,117,110,99,116,105,111,110,32,90,116,40,116,41,123,118,97,114,32,101,61,116,46,111,119,110,101,114,68,111,99,117,109,101,110,116,46,100,101,102,97,117,108,116,86,105,101,119,46,103,101,116,67,111,109,112,117,116,101,100,83,116,121,108,101,40,116,41,44,110,61,112,97,114,115,101,70,108,111,97,116,40,101,46,109,97,114,103,105,110,84,111,112,124,124,48,41,43,112,97,114,115,101,70,108,111,97,116,40,101,46,109,97,114,103,105,110,66,111,116,116,111,109,124,124,48,41,44,105,61,112,97,114,115,101,70,108,111,97,116,40,101,46,109,97,114,103,105,110,76,101,102,116,124,124,48,41,43,112,97,114,115,101,70,108,111,97,116,40,101,46,109,97,114,103,105,110,82,105,103,104,116,124,124,48,41,59,114,101,116,117,114,110,123,119,105,100,116,104,58,116,46,111,102,102,115,101,116,87,105,100,116,104,43,105,44,104,101,105,103,104,116,58,116,46,111,102,102,115,101,116,72,101,105,103,104,116,43,110,125,125,102,117,110,99,116,105,111,110,32,116,101,40,116,41,123,118,97,114,32,101,61,123,108,101,102,116,58,34,114,105,103,104,116,34,44,114,105,103,104,116,58,34,108,101,102,116,34,44,98,111,116,116,111,109,58,34,116,111,112,34,44,116,111,112,58,34,98,111,116,116,111,109,34,125,59,114,101,116,117,114,110,32,116,46,114,101,112,108,97,99,101,40,47,108,101,102,116,124,114,105,103,104,116,124,98,111,116,116,111,109,124,116,111,112,47,103,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,91,116,93,125,41,125,102,117,110,99,116,105,111,110,32,101,101,40,116,44,101,44,110,41,123,110,61,110,46,115,112,108,105,116,40,34,45,34,41,91,48,93,59,118,97,114,32,105,61,90,116,40,116,41,44,111,61,123,119,105,100,116,104,58,105,46,119,105,100,116,104,44,104,101,105,103,104,116,58,105,46,104,101,105,103,104,116,125,44,114,61,45,49,33,61,61,91,34,114,105,103,104,116,34,44,34,108,101,102,116,34,93,46,105,110,100,101,120,79,102,40,110,41,44,115,61,114,63,34,116,111,112,34,58,34,108,101,102,116,34,44,97,61,114,63,34,108,101,102,116,34,58,34,116,111,112,34,44,108,61,114,63,34,104,101,105,103,104,116,34,58,34,119,105,100,116,104,34,44,99,61,114,63,34,119,105,100,116,104,34,58,34,104,101,105,103,104,116,34,59,114,101,116,117,114,110,32,111,91,115,93,61,101,91,115,93,43,101,91,108,93,47,50,45,105,91,108,93,47,50,44,111,91,97,93,61,110,61,61,61,97,63,101,91,97,93,45,105,91,99,93,58,101,91,116,101,40,97,41,93,44,111,125,102,117,110,99,116,105,111,110,32,110,101,40,116,44,101,41,123,114,101,116,117,114,110,32,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,102,105,110,100,63,116,46,102,105,110,100,40,101,41,58,116,46,102,105,108,116,101,114,40,101,41,91,48,93,125,102,117,110,99,116,105,111,110,32,105,101,40,116,44,110,44,101,41,123,114,101,116,117,114,110,40,118,111,105,100,32,48,61,61,61,101,63,116,58,116,46,115,108,105,99,101,40,48,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,105,102,40,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,102,105,110,100,73,110,100,101,120,41,114,101,116,117,114,110,32,116,46,102,105,110,100,73,110,100,101,120,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,91,101,93,61,61,61,110,125,41,59,118,97,114,32,105,61,110,101,40,116,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,91,101,93,61,61,61,110,125,41,59,114,101,116,117,114,110,32,116,46,105,110,100,101,120,79,102,40,105,41,125,40,116,44,34,110,97,109,101,34,44,101,41,41,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,116,41,123,116,46,102,117,110,99,116,105,111,110,38,38,99,111,110,115,111,108,101,46,119,97,114,110,40,34,96,109,111,100,105,102,105,101,114,46,102,117,110,99,116,105,111,110,96,32,105,115,32,100,101,112,114,101,99,97,116,101,100,44,32,117,115,101,32,96,109,111,100,105,102,105,101,114,46,102,110,96,33,34,41,59,118,97,114,32,101,61,116,46,102,117,110,99,116,105,111,110,124,124,116,46,102,110,59,116,46,101,110,97,98,108,101,100,38,38,79,116,40,101,41,38,38,40,110,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,61,86,116,40,110,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,41,44,110,46,111,102,102,115,101,116,115,46,114,101,102,101,114,101,110,99,101,61,86,116,40,110,46,111,102,102,115,101,116,115,46,114,101,102,101,114,101,110,99,101,41,44,110,61,101,40,110,44,116,41,41,125,41,44,110,125,102,117,110,99,116,105,111,110,32,111,101,40,116,44,110,41,123,114,101,116,117,114,110,32,116,46,115,111,109,101,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,46,110,97,109,101,59,114,101,116,117,114,110,32,116,46,101,110,97,98,108,101,100,38,38,101,61,61,61,110,125,41,125,102,117,110,99,116,105,111,110,32,114,101,40,116,41,123,102,111,114,40,118,97,114,32,101,61,91,33,49,44,34,109,115,34,44,34,87,101,98,107,105,116,34,44,34,77,111,122,34,44,34,79,34,93,44,110,61,116,46,99,104,97,114,65,116,40,48,41,46,116,111,85,112,112,101,114,67,97,115,101,40,41,43,116,46,115,108,105,99,101,40,49,41,44,105,61,48,59,105,60,101,46,108,101,110,103,116,104,59,105,43,43,41,123,118,97,114,32,111,61,101,91,105,93,44,114,61,111,63,34,34,43,111,43,110,58,116,59,105,102,40,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,100,111,99,117,109,101,110,116,46,98,111,100,121,46,115,116,121,108,101,91,114,93,41,114,101,116,117,114,110,32,114,125,114,101,116,117,114,110,32,110,117,108,108,125,102,117,110,99,116,105,111,110,32,115,101,40,116,41,123,118,97,114,32,101,61,116,46,111,119,110,101,114,68,111,99,117,109,101,110,116,59,114,101,116,117,114,110,32,101,63,101,46,100,101,102,97,117,108,116,86,105,101,119,58,119,105,110,100,111,119,125,102,117,110,99,116,105,111,110,32,97,101,40,116,44,101,44,110,44,105,41,123,110,46,117,112,100,97,116,101,66,111,117,110,100,61,105,44,115,101,40,116,41,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,114,101,115,105,122,101,34,44,110,46,117,112,100,97,116,101,66,111,117,110,100,44,123,112,97,115,115,105,118,101,58,33,48,125,41,59,118,97,114,32,111,61,76,116,40,116,41,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,116,40,101,44,110,44,105,44,111,41,123,118,97,114,32,114,61,34,66,79,68,89,34,61,61,61,101,46,110,111,100,101,78,97,109,101,44,115,61,114,63,101,46,111,119,110,101,114,68,111,99,117,109,101,110,116,46,100,101,102,97,117,108,116,86,105,101,119,58,101,59,115,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,110,44,105,44,123,112,97,115,115,105,118,101,58,33,48,125,41,44,114,124,124,116,40,76,116,40,115,46,112,97,114,101,110,116,78,111,100,101,41,44,110,44,105,44,111,41,44,111,46,112,117,115,104,40,115,41,125,40,111,44,34,115,99,114,111,108,108,34,44,110,46,117,112,100,97,116,101,66,111,117,110,100,44,110,46,115,99,114,111,108,108,80,97,114,101,110,116,115,41,44,110,46,115,99,114,111,108,108,69,108,101,109,101,110,116,61,111,44,110,46,101,118,101,110,116,115,69,110,97,98,108,101,100,61,33,48,44,110,125,102,117,110,99,116,105,111,110,32,108,101,40,41,123,118,97,114,32,116,44,101,59,116,104,105,115,46,115,116,97,116,101,46,101,118,101,110,116,115,69,110,97,98,108,101,100,38,38,40,99,97,110,99,101,108,65,110,105,109,97,116,105,111,110,70,114,97,109,101,40,116,104,105,115,46,115,99,104,101,100,117,108,101,85,112,100,97,116,101,41,44,116,104,105,115,46,115,116,97,116,101,61,40,116,61,116,104,105,115,46,114,101,102,101,114,101,110,99,101,44,101,61,116,104,105,115,46,115,116,97,116,101,44,115,101,40,116,41,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,114,101,115,105,122,101,34,44,101,46,117,112,100,97,116,101,66,111,117,110,100,41,44,101,46,115,99,114,111,108,108,80,97,114,101,110,116,115,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,116,41,123,116,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,115,99,114,111,108,108,34,44,101,46,117,112,100,97,116,101,66,111,117,110,100,41,125,41,44,101,46,117,112,100,97,116,101,66,111,117,110,100,61,110,117,108,108,44,101,46,115,99,114,111,108,108,80,97,114,101,110,116,115,61,91,93,44,101,46,115,99,114,111,108,108,69,108,101,109,101,110,116,61,110,117,108,108,44,101,46,101,118,101,110,116,115,69,110,97,98,108,101,100,61,33,49,44,101,41,41,125,102,117,110,99,116,105,111,110,32,99,101,40,116,41,123,114,101,116,117,114,110,34,34,33,61,61,116,38,38,33,105,115,78,97,78,40,112,97,114,115,101,70,108,111,97,116,40,116,41,41,38,38,105,115,70,105,110,105,116,101,40,116,41,125,102,117,110,99,116,105,111,110,32,104,101,40,110,44,105,41,123,79,98,106,101,99,116,46,107,101,121,115,40,105,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,34,34,59,45,49,33,61,61,91,34,119,105,100,116,104,34,44,34,104,101,105,103,104,116,34,44,34,116,111,112,34,44,34,114,105,103,104,116,34,44,34,98,111,116,116,111,109,34,44,34,108,101,102,116,34,93,46,105,110,100,101,120,79,102,40,116,41,38,38,99,101,40,105,91,116,93,41,38,38,40,101,61,34,112,120,34,41,44,110,46,115,116,121,108,101,91,116,93,61,105,91,116,93,43,101,125,41,125,118,97,114,32,117,101,61,84,116,38,38,47,70,105,114,101,102,111,120,47,105,46,116,101,115,116,40,110,97,118,105,103,97,116,111,114,46,117,115,101,114,65,103,101,110,116,41,59,102,117,110,99,116,105,111,110,32,102,101,40,116,44,101,44,110,41,123,118,97,114,32,105,61,110,101,40,116,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,110,97,109,101,61,61,61,101,125,41,44,111,61,33,33,105,38,38,116,46,115,111,109,101,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,110,97,109,101,61,61,61,110,38,38,116,46,101,110,97,98,108,101,100,38,38,116,46,111,114,100,101,114,60,105,46,111,114,100,101,114,125,41,59,105,102,40,33,111,41,123,118,97,114,32,114,61,34,96,34,43,101,43,34,96,34,44,115,61,34,96,34,43,110,43,34,96,34,59,99,111,110,115,111,108,101,46,119,97,114,110,40,115,43,34,32,109,111,100,105,102,105,101,114,32,105,115,32,114,101,113,117,105,114,101,100,32,98,121,32,34,43,114,43,34,32,109,111,100,105,102,105,101,114,32,105,110,32,111,114,100,101,114,32,116,111,32,119,111,114,107,44,32,98,101,32,115,117,114,101,32,116,111,32,105,110,99,108,117,100,101,32,105,116,32,98,101,102,111,114,101,32,34,43,114,43,34,33,34,41,125,114,101,116,117,114,110,32,111,125,118,97,114,32,100,101,61,91,34,97,117,116,111,45,115,116,97,114,116,34,44,34,97,117,116,111,34,44,34,97,117,116,111,45,101,110,100,34,44,34,116,111,112,45,115,116,97,114,116,34,44,34,116,111,112,34,44,34,116,111,112,45,101,110,100,34,44,34,114,105,103,104,116,45,115,116,97,114,116,34,44,34,114,105,103,104,116,34,44,34,114,105,103,104,116,45,101,110,100,34,44,34,98,111,116,116,111,109,45,101,110,100,34,44,34,98,111,116,116,111,109,34,44,34,98,111,116,116,111,109,45,115,116,97,114,116,34,44,34,108,101,102,116,45,101,110,100,34,44,34,108,101,102,116,34,44,34,108,101,102,116,45,115,116,97,114,116,34,93,44,112,101,61,100,101,46,115,108,105,99,101,40,51,41,59,102,117,110,99,116,105,111,110,32,109,101,40,116,41,123,118,97,114,32,101,61,49,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,38,38,118,111,105,100,32,48,33,61,61,97,114,103,117,109,101,110,116,115,91,49,93,38,38,97,114,103,117,109,101,110,116,115,91,49,93,44,110,61,112,101,46,105,110,100,101,120,79,102,40,116,41,44,105,61,112,101,46,115,108,105,99,101,40,110,43,49,41,46,99,111,110,99,97,116,40,112,101,46,115,108,105,99,101,40,48,44,110,41,41,59,114,101,116,117,114,110,32,101,63,105,46,114,101,118,101,114,115,101,40,41,58,105,125,118,97,114,32,103,101,61,34,102,108,105,112,34,44,95,101,61,34,99,108,111,99,107,119,105,115,101,34,44,118,101,61,34,99,111,117,110,116,101,114,99,108,111,99,107,119,105,115,101,34,59,102,117,110,99,116,105,111,110,32,121,101,40,116,44,111,44,114,44,101,41,123,118,97,114,32,115,61,91,48,44,48,93,44,97,61,45,49,33,61,61,91,34,114,105,103,104,116,34,44,34,108,101,102,116,34,93,46,105,110,100,101,120,79,102,40,101,41,44,110,61,116,46,115,112,108,105,116,40,47,40,92,43,124,92,45,41,47,41,46,109,97,112,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,116,114,105,109,40,41,125,41,44,105,61,110,46,105,110,100,101,120,79,102,40,110,101,40,110,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,45,49,33,61,61,116,46,115,101,97,114,99,104,40,47,44,124,92,115,47,41,125,41,41,59,110,91,105,93,38,38,45,49,61,61,61,110,91,105,93,46,105,110,100,101,120,79,102,40,34,44,34,41,38,38,99,111,110,115,111,108,101,46,119,97,114,110,40,34,79,102,102,115,101,116,115,32,115,101,112,97,114,97,116,101,100,32,98,121,32,119,104,105,116,101,32,115,112,97,99,101,40,115,41,32,97,114,101,32,100,101,112,114,101,99,97,116,101,100,44,32,117,115,101,32,97,32,99,111,109,109,97,32,40,44,41,32,105,110,115,116,101,97,100,46,34,41,59,118,97,114,32,108,61,47,92,115,42,44,92,115,42,124,92,115,43,47,44,99,61,45,49,33,61,61,105,63,91,110,46,115,108,105,99,101,40,48,44,105,41,46,99,111,110,99,97,116,40,91,110,91,105,93,46,115,112,108,105,116,40,108,41,91,48,93,93,41,44,91,110,91,105,93,46,115,112,108,105,116,40,108,41,91,49,93,93,46,99,111,110,99,97,116,40,110,46,115,108,105,99,101,40,105,43,49,41,41,93,58,91,110,93,59,114,101,116,117,114,110,40,99,61,99,46,109,97,112,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,40,49,61,61,61,101,63,33,97,58,97,41,63,34,104,101,105,103,104,116,34,58,34,119,105,100,116,104,34,44,105,61,33,49,59,114,101,116,117,114,110,32,116,46,114,101,100,117,99,101,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,34,34,61,61,61,116,91,116,46,108,101,110,103,116,104,45,49,93,38,38,45,49,33,61,61,91,34,43,34,44,34,45,34,93,46,105,110,100,101,120,79,102,40,101,41,63,40,116,91,116,46,108,101,110,103,116,104,45,49,93,61,101,44,105,61,33,48,44,116,41,58,105,63,40,116,91,116,46,108,101,110,103,116,104,45,49,93,43,61,101,44,105,61,33,49,44,116,41,58,116,46,99,111,110,99,97,116,40,101,41,125,44,91,93,41,46,109,97,112,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,44,101,44,110,44,105,41,123,118,97,114,32,111,61,116,46,109,97,116,99,104,40,47,40,40,63,58,92,45,124,92,43,41,63,92,100,42,92,46,63,92,100,42,41,40,46,42,41,47,41,44,114,61,43,111,91,49,93,44,115,61,111,91,50,93,59,105,102,40,33,114,41,114,101,116,117,114,110,32,116,59,105,102,40,48,33,61,61,115,46,105,110,100,101,120,79,102,40,34,37,34,41,41,114,101,116,117,114,110,34,118,104,34,33,61,61,115,38,38,34,118,119,34,33,61,61,115,63,114,58,40,34,118,104,34,61,61,61,115,63,77,97,116,104,46,109,97,120,40,100,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,46,99,108,105,101,110,116,72,101,105,103,104,116,44,119,105,110,100,111,119,46,105,110,110,101,114,72,101,105,103,104,116,124,124,48,41,58,77,97,116,104,46,109,97,120,40,100,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,46,99,108,105,101,110,116,87,105,100,116,104,44,119,105,110,100,111,119,46,105,110,110,101,114,87,105,100,116,104,124,124,48,41,41,47,49,48,48,42,114,59,118,97,114,32,97,61,118,111,105,100,32,48,59,115,119,105,116,99,104,40,115,41,123,99,97,115,101,34,37,112,34,58,97,61,110,59,98,114,101,97,107,59,99,97,115,101,34,37,34,58,99,97,115,101,34,37,114,34,58,100,101,102,97,117,108,116,58,97,61,105,125,114,101,116,117,114,110,32,86,116,40,97,41,91,101,93,47,49,48,48,42,114,125,40,116,44,110,44,111,44,114,41,125,41,125,41,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,110,44,105,41,123,110,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,99,101,40,116,41,38,38,40,115,91,105,93,43,61,116,42,40,34,45,34,61,61,61,110,91,101,45,49,93,63,45,49,58,49,41,41,125,41,125,41,44,115,125,118,97,114,32,69,101,61,123,112,108,97,99,101,109,101,110,116,58,34,98,111,116,116,111,109,34,44,112,111,115,105,116,105,111,110,70,105,120,101,100,58,33,49,44,101,118,101,110,116,115,69,110,97,98,108,101,100,58,33,48,44,114,101,109,111,118,101,79,110,68,101,115,116,114,111,121,58,33,49,44,111,110,67,114,101,97,116,101,58,102,117,110,99,116,105,111,110,40,41,123,125,44,111,110,85,112,100,97,116,101,58,102,117,110,99,116,105,111,110,40,41,123,125,44,109,111,100,105,102,105,101,114,115,58,123,115,104,105,102,116,58,123,111,114,100,101,114,58,49,48,48,44,101,110,97,98,108,101,100,58,33,48,44,102,110,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,46,112,108,97,99,101,109,101,110,116,44,110,61,101,46,115,112,108,105,116,40,34,45,34,41,91,48,93,44,105,61,101,46,115,112,108,105,116,40,34,45,34,41,91,49,93,59,105,102,40,105,41,123,118,97,114,32,111,61,116,46,111,102,102,115,101,116,115,44,114,61,111,46,114,101,102,101,114,101,110,99,101,44,115,61,111,46,112,111,112,112,101,114,44,97,61,45,49,33,61,61,91,34,98,111,116,116,111,109,34,44,34,116,111,112,34,93,46,105,110,100,101,120,79,102,40,110,41,44,108,61,97,63,34,108,101,102,116,34,58,34,116,111,112,34,44,99,61,97,63,34,119,105,100,116,104,34,58,34,104,101,105,103,104,116,34,44,104,61,123,115,116,97,114,116,58,75,116,40,123,125,44,108,44,114,91,108,93,41,44,101,110,100,58,75,116,40,123,125,44,108,44,114,91,108,93,43,114,91,99,93,45,115,91,99,93,41,125,59,116,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,61,81,116,40,123,125,44,115,44,104,91,105,93,41,125,114,101,116,117,114,110,32,116,125,125,44,111,102,102,115,101,116,58,123,111,114,100,101,114,58,50,48,48,44,101,110,97,98,108,101,100,58,33,48,44,102,110,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,101,46,111,102,102,115,101,116,44,105,61,116,46,112,108,97,99,101,109,101,110,116,44,111,61,116,46,111,102,102,115,101,116,115,44,114,61,111,46,112,111,112,112,101,114,44,115,61,111,46,114,101,102,101,114,101,110,99,101,44,97,61,105,46,115,112,108,105,116,40,34,45,34,41,91,48,93,44,108,61,118,111,105,100,32,48,59,114,101,116,117,114,110,32,108,61,99,101,40,43,110,41,63,91,43,110,44,48,93,58,121,101,40,110,44,114,44,115,44,97,41,44,34,108,101,102,116,34,61,61,61,97,63,40,114,46,116,111,112,43,61,108,91,48,93,44,114,46,108,101,102,116,45,61,108,91,49,93,41,58,34,114,105,103,104,116,34,61,61,61,97,63,40,114,46,116,111,112,43,61,108,91,48,93,44,114,46,108,101,102,116,43,61,108,91,49,93,41,58,34,116,111,112,34,61,61,61,97,63,40,114,46,108,101,102,116,43,61,108,91,48,93,44,114,46,116,111,112,45,61,108,91,49,93,41,58,34,98,111,116,116,111,109,34,61,61,61,97,38,38,40,114,46,108,101,102,116,43,61,108,91,48,93,44,114,46,116,111,112,43,61,108,91,49,93,41,44,116,46,112,111,112,112,101,114,61,114,44,116,125,44,111,102,102,115,101,116,58,48,125,44,112,114,101,118,101,110,116,79,118,101,114,102,108,111,119,58,123,111,114,100,101,114,58,51,48,48,44,101,110,97,98,108,101,100,58,33,48,44,102,110,58,102,117,110,99,116,105,111,110,40,116,44,105,41,123,118,97,114,32,101,61,105,46,98,111,117,110,100,97,114,105,101,115,69,108,101,109,101,110,116,124,124,106,116,40,116,46,105,110,115,116,97,110,99,101,46,112,111,112,112,101,114,41,59,116,46,105,110,115,116,97,110,99,101,46,114,101,102,101,114,101,110,99,101,61,61,61,101,38,38,40,101,61,106,116,40,101,41,41,59,118,97,114,32,110,61,114,101,40,34,116,114,97,110,115,102,111,114,109,34,41,44,111,61,116,46,105,110,115,116,97,110,99,101,46,112,111,112,112,101,114,46,115,116,121,108,101,44,114,61,111,46,116,111,112,44,115,61,111,46,108,101,102,116,44,97,61,111,91,110,93,59,111,46,116,111,112,61,34,34,44,111,46,108,101,102,116,61,34,34,44,111,91,110,93,61,34,34,59,118,97,114,32,108,61,71,116,40,116,46,105,110,115,116,97,110,99,101,46,112,111,112,112,101,114,44,116,46,105,110,115,116,97,110,99,101,46,114,101,102,101,114,101,110,99,101,44,105,46,112,97,100,100,105,110,103,44,101,44,116,46,112,111,115,105,116,105,111,110,70,105,120,101,100,41,59,111,46,116,111,112,61,114,44,111,46,108,101,102,116,61,115,44,111,91,110,93,61,97,44,105,46,98,111,117,110,100,97,114,105,101,115,61,108,59,118,97,114,32,99,61,105,46,112,114,105,111,114,105,116,121,44,104,61,116,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,44,117,61,123,112,114,105,109,97,114,121,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,104,91,116,93,59,114,101,116,117,114,110,32,104,91,116,93,60,108,91,116,93,38,38,33,105,46,101,115,99,97,112,101,87,105,116,104,82,101,102,101,114,101,110,99,101,38,38,40,101,61,77,97,116,104,46,109,97,120,40,104,91,116,93,44,108,91,116,93,41,41,44,75,116,40,123,125,44,116,44,101,41,125,44,115,101,99,111,110,100,97,114,121,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,34,114,105,103,104,116,34,61,61,61,116,63,34,108,101,102,116,34,58,34,116,111,112,34,44,110,61,104,91,101,93,59,114,101,116,117,114,110,32,104,91,116,93,62,108,91,116,93,38,38,33,105,46,101,115,99,97,112,101,87,105,116,104,82,101,102,101,114,101,110,99,101,38,38,40,110,61,77,97,116,104,46,109,105,110,40,104,91,101,93,44,108,91,116,93,45,40,34,114,105,103,104,116,34,61,61,61,116,63,104,46,119,105,100,116,104,58,104,46,104,101,105,103,104,116,41,41,41,44,75,116,40,123,125,44,101,44,110,41,125,125,59,114,101,116,117,114,110,32,99,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,45,49,33,61,61,91,34,108,101,102,116,34,44,34,116,111,112,34,93,46,105,110,100,101,120,79,102,40,116,41,63,34,112,114,105,109,97,114,121,34,58,34,115,101,99,111,110,100,97,114,121,34,59,104,61,81,116,40,123,125,44,104,44,117,91,101,93,40,116,41,41,125,41,44,116,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,61,104,44,116,125,44,112,114,105,111,114,105,116,121,58,91,34,108,101,102,116,34,44,34,114,105,103,104,116,34,44,34,116,111,112,34,44,34,98,111,116,116,111,109,34,93,44,112,97,100,100,105,110,103,58,53,44,98,111,117,110,100,97,114,105,101,115,69,108,101,109,101,110,116,58,34,115,99,114,111,108,108,80,97,114,101,110,116,34,125,44,107,101,101,112,84,111,103,101,116,104,101,114,58,123,111,114,100,101,114,58,52,48,48,44,101,110,97,98,108,101,100,58,33,48,44,102,110,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,46,111,102,102,115,101,116,115,44,110,61,101,46,112,111,112,112,101,114,44,105,61,101,46,114,101,102,101,114,101,110,99,101,44,111,61,116,46,112,108,97,99,101,109,101,110,116,46,115,112,108,105,116,40,34,45,34,41,91,48,93,44,114,61,77,97,116,104,46,102,108,111,111,114,44,115,61,45,49,33,61,61,91,34,116,111,112,34,44,34,98,111,116,116,111,109,34,93,46,105,110,100,101,120,79,102,40,111,41,44,97,61,115,63,34,114,105,103,104,116,34,58,34,98,111,116,116,111,109,34,44,108,61,115,63,34,108,101,102,116,34,58,34,116,111,112,34,44,99,61,115,63,34,119,105,100,116,104,34,58,34,104,101,105,103,104,116,34,59,114,101,116,117,114,110,32,110,91,97,93,60,114,40,105,91,108,93,41,38,38,40,116,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,91,108,93,61,114,40,105,91,108,93,41,45,110,91,99,93,41,44,110,91,108,93,62,114,40,105,91,97,93,41,38,38,40,116,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,91,108,93,61,114,40,105,91,97,93,41,41,44,116,125,125,44,97,114,114,111,119,58,123,111,114,100,101,114,58,53,48,48,44,101,110,97,98,108,101,100,58,33,48,44,102,110,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,59,105,102,40,33,102,101,40,116,46,105,110,115,116,97,110,99,101,46,109,111,100,105,102,105,101,114,115,44,34,97,114,114,111,119,34,44,34,107,101,101,112,84,111,103,101,116,104,101,114,34,41,41,114,101,116,117,114,110,32,116,59,118,97,114,32,105,61,101,46,101,108,101,109,101,110,116,59,105,102,40,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,105,41,123,105,102,40,33,40,105,61,116,46,105,110,115,116,97,110,99,101,46,112,111,112,112,101,114,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,105,41,41,41,114,101,116,117,114,110,32,116,125,101,108,115,101,32,105,102,40,33,116,46,105,110,115,116,97,110,99,101,46,112,111,112,112,101,114,46,99,111,110,116,97,105,110,115,40,105,41,41,114,101,116,117,114,110,32,99,111,110,115,111,108,101,46,119,97,114,110,40,34,87,65,82,78,73,78,71,58,32,96,97,114,114,111,119,46,101,108,101,109,101,110,116,96,32,109,117,115,116,32,98,101,32,99,104,105,108,100,32,111,102,32,105,116,115,32,112,111,112,112,101,114,32,101,108,101,109,101,110,116,33,34,41,44,116,59,118,97,114,32,111,61,116,46,112,108,97,99,101,109,101,110,116,46,115,112,108,105,116,40,34,45,34,41,91,48,93,44,114,61,116,46,111,102,102,115,101,116,115,44,115,61,114,46,112,111,112,112,101,114,44,97,61,114,46,114,101,102,101,114,101,110,99,101,44,108,61,45,49,33,61,61,91,34,108,101,102,116,34,44,34,114,105,103,104,116,34,93,46,105,110,100,101,120,79,102,40,111,41,44,99,61,108,63,34,104,101,105,103,104,116,34,58,34,119,105,100,116,104,34,44,104,61,108,63,34,84,111,112,34,58,34,76,101,102,116,34,44,117,61,104,46,116,111,76,111,119,101,114,67,97,115,101,40,41,44,102,61,108,63,34,108,101,102,116,34,58,34,116,111,112,34,44,100,61,108,63,34,98,111,116,116,111,109,34,58,34,114,105,103,104,116,34,44,112,61,90,116,40,105,41,91,99,93,59,97,91,100,93,45,112,60,115,91,117,93,38,38,40,116,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,91,117,93,45,61,115,91,117,93,45,40,97,91,100,93,45,112,41,41,44,97,91,117,93,43,112,62,115,91,100,93,38,38,40,116,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,91,117,93,43,61,97,91,117,93,43,112,45,115,91,100,93,41,44,116,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,61,86,116,40,116,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,41,59,118,97,114,32,109,61,97,91,117,93,43,97,91,99,93,47,50,45,112,47,50,44,103,61,78,116,40,116,46,105,110,115,116,97,110,99,101,46,112,111,112,112,101,114,41,44,95,61,112,97,114,115,101,70,108,111,97,116,40,103,91,34,109,97,114,103,105,110,34,43,104,93,44,49,48,41,44,118,61,112,97,114,115,101,70,108,111,97,116,40,103,91,34,98,111,114,100,101,114,34,43,104,43,34,87,105,100,116,104,34,93,44,49,48,41,44,121,61,109,45,116,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,91,117,93,45,95,45,118,59,114,101,116,117,114,110,32,121,61,77,97,116,104,46,109,97,120,40,77,97,116,104,46,109,105,110,40,115,91,99,93,45,112,44,121,41,44,48,41,44,116,46,97,114,114,111,119,69,108,101,109,101,110,116,61,105,44,116,46,111,102,102,115,101,116,115,46,97,114,114,111,119,61,40,75,116,40,110,61,123,125,44,117,44,77,97,116,104,46,114,111,117,110,100,40,121,41,41,44,75,116,40,110,44,102,44,34,34,41,44,110,41,44,116,125,44,101,108,101,109,101,110,116,58,34,91,120,45,97,114,114,111,119,93,34,125,44,102,108,105,112,58,123,111,114,100,101,114,58,54,48,48,44,101,110,97,98,108,101,100,58,33,48,44,102,110,58,102,117,110,99,116,105,111,110,40,112,44,109,41,123,105,102,40,111,101,40,112,46,105,110,115,116,97,110,99,101,46,109,111,100,105,102,105,101,114,115,44,34,105,110,110,101,114,34,41,41,114,101,116,117,114,110,32,112,59,105,102,40,112,46,102,108,105,112,112,101,100,38,38,112,46,112,108,97,99,101,109,101,110,116,61,61,61,112,46,111,114,105,103,105,110,97,108,80,108,97,99,101,109,101,110,116,41,114,101,116,117,114,110,32,112,59,118,97,114,32,103,61,71,116,40,112,46,105,110,115,116,97,110,99,101,46,112,111,112,112,101,114,44,112,46,105,110,115,116,97,110,99,101,46,114,101,102,101,114,101,110,99,101,44,109,46,112,97,100,100,105,110,103,44,109,46,98,111,117,110,100,97,114,105,101,115,69,108,101,109,101,110,116,44,112,46,112,111,115,105,116,105,111,110,70,105,120,101,100,41,44,95,61,112,46,112,108,97,99,101,109,101,110,116,46,115,112,108,105,116,40,34,45,34,41,91,48,93,44,118,61,116,101,40,95,41,44,121,61,112,46,112,108,97,99,101,109,101,110,116,46,115,112,108,105,116,40,34,45,34,41,91,49,93,124,124,34,34,44,69,61,91,93,59,115,119,105,116,99,104,40,109,46,98,101,104,97,118,105,111,114,41,123,99,97,115,101,32,103,101,58,69,61,91,95,44,118,93,59,98,114,101,97,107,59,99,97,115,101,32,95,101,58,69,61,109,101,40,95,41,59,98,114,101,97,107,59,99,97,115,101,32,118,101,58,69,61,109,101,40,95,44,33,48,41,59,98,114,101,97,107,59,100,101,102,97,117,108,116,58,69,61,109,46,98,101,104,97,118,105,111,114,125,114,101,116,117,114,110,32,69,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,105,102,40,95,33,61,61,116,124,124,69,46,108,101,110,103,116,104,61,61,61,101,43,49,41,114,101,116,117,114,110,32,112,59,95,61,112,46,112,108,97,99,101,109,101,110,116,46,115,112,108,105,116,40,34,45,34,41,91,48,93,44,118,61,116,101,40,95,41,59,118,97,114,32,110,44,105,61,112,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,44,111,61,112,46,111,102,102,115,101,116,115,46,114,101,102,101,114,101,110,99,101,44,114,61,77,97,116,104,46,102,108,111,111,114,44,115,61,34,108,101,102,116,34,61,61,61,95,38,38,114,40,105,46,114,105,103,104,116,41,62,114,40,111,46,108,101,102,116,41,124,124,34,114,105,103,104,116,34,61,61,61,95,38,38,114,40,105,46,108,101,102,116,41,60,114,40,111,46,114,105,103,104,116,41,124,124,34,116,111,112,34,61,61,61,95,38,38,114,40,105,46,98,111,116,116,111,109,41,62,114,40,111,46,116,111,112,41,124,124,34,98,111,116,116,111,109,34,61,61,61,95,38,38,114,40,105,46,116,111,112,41,60,114,40,111,46,98,111,116,116,111,109,41,44,97,61,114,40,105,46,108,101,102,116,41,60,114,40,103,46,108,101,102,116,41,44,108,61,114,40,105,46,114,105,103,104,116,41,62,114,40,103,46,114,105,103,104,116,41,44,99,61,114,40,105,46,116,111,112,41,60,114,40,103,46,116,111,112,41,44,104,61,114,40,105,46,98,111,116,116,111,109,41,62,114,40,103,46,98,111,116,116,111,109,41,44,117,61,34,108,101,102,116,34,61,61,61,95,38,38,97,124,124,34,114,105,103,104,116,34,61,61,61,95,38,38,108,124,124,34,116,111,112,34,61,61,61,95,38,38,99,124,124,34,98,111,116,116,111,109,34,61,61,61,95,38,38,104,44,102,61,45,49,33,61,61,91,34,116,111,112,34,44,34,98,111,116,116,111,109,34,93,46,105,110,100,101,120,79,102,40,95,41,44,100,61,33,33,109,46,102,108,105,112,86,97,114,105,97,116,105,111,110,115,38,38,40,102,38,38,34,115,116,97,114,116,34,61,61,61,121,38,38,97,124,124,102,38,38,34,101,110,100,34,61,61,61,121,38,38,108,124,124,33,102,38,38,34,115,116,97,114,116,34,61,61,61,121,38,38,99,124,124,33,102,38,38,34,101,110,100,34,61,61,61,121,38,38,104,41,59,40,115,124,124,117,124,124,100,41,38,38,40,112,46,102,108,105,112,112,101,100,61,33,48,44,40,115,124,124,117,41,38,38,40,95,61,69,91,101,43,49,93,41,44,100,38,38,40,121,61,34,101,110,100,34,61,61,61,40,110,61,121,41,63,34,115,116,97,114,116,34,58,34,115,116,97,114,116,34,61,61,61,110,63,34,101,110,100,34,58,110,41,44,112,46,112,108,97,99,101,109,101,110,116,61,95,43,40,121,63,34,45,34,43,121,58,34,34,41,44,112,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,61,81,116,40,123,125,44,112,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,44,101,101,40,112,46,105,110,115,116,97,110,99,101,46,112,111,112,112,101,114,44,112,46,111,102,102,115,101,116,115,46,114,101,102,101,114,101,110,99,101,44,112,46,112,108,97,99,101,109,101,110,116,41,41,44,112,61,105,101,40,112,46,105,110,115,116,97,110,99,101,46,109,111,100,105,102,105,101,114,115,44,112,44,34,102,108,105,112,34,41,41,125,41,44,112,125,44,98,101,104,97,118,105,111,114,58,34,102,108,105,112,34,44,112,97,100,100,105,110,103,58,53,44,98,111,117,110,100,97,114,105,101,115,69,108,101,109,101,110,116,58,34,118,105,101,119,112,111,114,116,34,125,44,105,110,110,101,114,58,123,111,114,100,101,114,58,55,48,48,44,101,110,97,98,108,101,100,58,33,49,44,102,110,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,46,112,108,97,99,101,109,101,110,116,44,110,61,101,46,115,112,108,105,116,40,34,45,34,41,91,48,93,44,105,61,116,46,111,102,102,115,101,116,115,44,111,61,105,46,112,111,112,112,101,114,44,114,61,105,46,114,101,102,101,114,101,110,99,101,44,115,61,45,49,33,61,61,91,34,108,101,102,116,34,44,34,114,105,103,104,116,34,93,46,105,110,100,101,120,79,102,40,110,41,44,97,61,45,49,61,61,61,91,34,116,111,112,34,44,34,108,101,102,116,34,93,46,105,110,100,101,120,79,102,40,110,41,59,114,101,116,117,114,110,32,111,91,115,63,34,108,101,102,116,34,58,34,116,111,112,34,93,61,114,91,110,93,45,40,97,63,111,91,115,63,34,119,105,100,116,104,34,58,34,104,101,105,103,104,116,34,93,58,48,41,44,116,46,112,108,97,99,101,109,101,110,116,61,116,101,40,101,41,44,116,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,61,86,116,40,111,41,44,116,125,125,44,104,105,100,101,58,123,111,114,100,101,114,58,56,48,48,44,101,110,97,98,108,101,100,58,33,48,44,102,110,58,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,33,102,101,40,116,46,105,110,115,116,97,110,99,101,46,109,111,100,105,102,105,101,114,115,44,34,104,105,100,101,34,44,34,112,114,101,118,101,110,116,79,118,101,114,102,108,111,119,34,41,41,114,101,116,117,114,110,32,116,59,118,97,114,32,101,61,116,46,111,102,102,115,101,116,115,46,114,101,102,101,114,101,110,99,101,44,110,61,110,101,40,116,46,105,110,115,116,97,110,99,101,46,109,111,100,105,102,105,101,114,115,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,34,112,114,101,118,101,110,116,79,118,101,114,102,108,111,119,34,61,61,61,116,46,110,97,109,101,125,41,46,98,111,117,110,100,97,114,105,101,115,59,105,102,40,101,46,98,111,116,116,111,109,60,110,46,116,111,112,124,124,101,46,108,101,102,116,62,110,46,114,105,103,104,116,124,124,101,46,116,111,112,62,110,46,98,111,116,116,111,109,124,124,101,46,114,105,103,104,116,60,110,46,108,101,102,116,41,123,105,102,40,33,48,61,61,61,116,46,104,105,100,101,41,114,101,116,117,114,110,32,116,59,116,46,104,105,100,101,61,33,48,44,116,46,97,116,116,114,105,98,117,116,101,115,91,34,120,45,111,117,116,45,111,102,45,98,111,117,110,100,97,114,105,101,115,34,93,61,34,34,125,101,108,115,101,123,105,102,40,33,49,61,61,61,116,46,104,105,100,101,41,114,101,116,117,114,110,32,116,59,116,46,104,105,100,101,61,33,49,44,116,46,97,116,116,114,105,98,117,116,101,115,91,34,120,45,111,117,116,45,111,102,45,98,111,117,110,100,97,114,105,101,115,34,93,61,33,49,125,114,101,116,117,114,110,32,116,125,125,44,99,111,109,112,117,116,101,83,116,121,108,101,58,123,111,114,100,101,114,58,56,53,48,44,101,110,97,98,108,101,100,58,33,48,44,102,110,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,101,46,120,44,105,61,101,46,121,44,111,61,116,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,44,114,61,110,101,40,116,46,105,110,115,116,97,110,99,101,46,109,111,100,105,102,105,101,114,115,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,34,97,112,112,108,121,83,116,121,108,101,34,61,61,61,116,46,110,97,109,101,125,41,46,103,112,117,65,99,99,101,108,101,114,97,116,105,111,110,59,118,111,105,100,32,48,33,61,61,114,38,38,99,111,110,115,111,108,101,46,119,97,114,110,40,34,87,65,82,78,73,78,71,58,32,96,103,112,117,65,99,99,101,108,101,114,97,116,105,111,110,96,32,111,112,116,105,111,110,32,109,111,118,101,100,32,116,111,32,96,99,111,109,112,117,116,101,83,116,121,108,101,96,32,109,111,100,105,102,105,101,114,32,97,110,100,32,119,105,108,108,32,110,111,116,32,98,101,32,115,117,112,112,111,114,116,101,100,32,105,110,32,102,117,116,117,114,101,32,118,101,114,115,105,111,110,115,32,111,102,32,80,111,112,112,101,114,46,106,115,33,34,41,59,118,97,114,32,115,44,97,44,108,44,99,44,104,44,117,44,102,44,100,44,112,44,109,44,103,44,95,44,118,44,121,44,69,61,118,111,105,100,32,48,33,61,61,114,63,114,58,101,46,103,112,117,65,99,99,101,108,101,114,97,116,105,111,110,44,98,61,106,116,40,116,46,105,110,115,116,97,110,99,101,46,112,111,112,112,101,114,41,44,119,61,89,116,40,98,41,44,67,61,123,112,111,115,105,116,105,111,110,58,111,46,112,111,115,105,116,105,111,110,125,44,84,61,40,115,61,116,44,97,61,119,105,110,100,111,119,46,100,101,118,105,99,101,80,105,120,101,108,82,97,116,105,111,60,50,124,124,33,117,101,44,108,61,115,46,111,102,102,115,101,116,115,44,99,61,108,46,112,111,112,112,101,114,44,104,61,108,46,114,101,102,101,114,101,110,99,101,44,117,61,77,97,116,104,46,114,111,117,110,100,44,102,61,77,97,116,104,46,102,108,111,111,114,44,100,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,125,44,112,61,117,40,104,46,119,105,100,116,104,41,44,109,61,117,40,99,46,119,105,100,116,104,41,44,103,61,45,49,33,61,61,91,34,108,101,102,116,34,44,34,114,105,103,104,116,34,93,46,105,110,100,101,120,79,102,40,115,46,112,108,97,99,101,109,101,110,116,41,44,95,61,45,49,33,61,61,115,46,112,108,97,99,101,109,101,110,116,46,105,110,100,101,120,79,102,40,34,45,34,41,44,121,61,97,63,117,58,100,44,123,108,101,102,116,58,40,118,61,97,63,103,124,124,95,124,124,112,37,50,61,61,109,37,50,63,117,58,102,58,100,41,40,112,37,50,61,61,49,38,38,109,37,50,61,61,49,38,38,33,95,38,38,97,63,99,46,108,101,102,116,45,49,58,99,46,108,101,102,116,41,44,116,111,112,58,121,40,99,46,116,111,112,41,44,98,111,116,116,111,109,58,121,40,99,46,98,111,116,116,111,109,41,44,114,105,103,104,116,58,118,40,99,46,114,105,103,104,116,41,125,41,44,83,61,34,98,111,116,116,111,109,34,61,61,61,110,63,34,116,111,112,34,58,34,98,111,116,116,111,109,34,44,68,61,34,114,105,103,104,116,34,61,61,61,105,63,34,108,101,102,116,34,58,34,114,105,103,104,116,34,44,73,61,114,101,40,34,116,114,97,110,115,102,111,114,109,34,41,44,65,61,118,111,105,100,32,48,44,79,61,118,111,105,100,32,48,59,105,102,40,79,61,34,98,111,116,116,111,109,34,61,61,61,83,63,34,72,84,77,76,34,61,61,61,98,46,110,111,100,101,78,97,109,101,63,45,98,46,99,108,105,101,110,116,72,101,105,103,104,116,43,84,46,98,111,116,116,111,109,58,45,119,46,104,101,105,103,104,116,43,84,46,98,111,116,116,111,109,58,84,46,116,111,112,44,65,61,34,114,105,103,104,116,34,61,61,61,68,63,34,72,84,77,76,34,61,61,61,98,46,110,111,100,101,78,97,109,101,63,45,98,46,99,108,105,101,110,116,87,105,100,116,104,43,84,46,114,105,103,104,116,58,45,119,46,119,105,100,116,104,43,84,46,114,105,103,104,116,58,84,46,108,101,102,116,44,69,38,38,73,41,67,91,73,93,61,34,116,114,97,110,115,108,97,116,101,51,100,40,34,43,65,43,34,112,120,44,32,34,43,79,43,34,112,120,44,32,48,41,34,44,67,91,83,93,61,48,44,67,91,68,93,61,48,44,67,46,119,105,108,108,67,104,97,110,103,101,61,34,116,114,97,110,115,102,111,114,109,34,59,101,108,115,101,123,118,97,114,32,78,61,34,98,111,116,116,111,109,34,61,61,61,83,63,45,49,58,49,44,107,61,34,114,105,103,104,116,34,61,61,61,68,63,45,49,58,49,59,67,91,83,93,61,79,42,78,44,67,91,68,93,61,65,42,107,44,67,46,119,105,108,108,67,104,97,110,103,101,61,83,43,34,44,32,34,43,68,125,118,97,114,32,76,61,123,34,120,45,112,108,97,99,101,109,101,110,116,34,58,116,46,112,108,97,99,101,109,101,110,116,125,59,114,101,116,117,114,110,32,116,46,97,116,116,114,105,98,117,116,101,115,61,81,116,40,123,125,44,76,44,116,46,97,116,116,114,105,98,117,116,101,115,41,44,116,46,115,116,121,108,101,115,61,81,116,40,123,125,44,67,44,116,46,115,116,121,108,101,115,41,44,116,46,97,114,114,111,119,83,116,121,108,101,115,61,81,116,40,123,125,44,116,46,111,102,102,115,101,116,115,46,97,114,114,111,119,44,116,46,97,114,114,111,119,83,116,121,108,101,115,41,44,116,125,44,103,112,117,65,99,99,101,108,101,114,97,116,105,111,110,58,33,48,44,120,58,34,98,111,116,116,111,109,34,44,121,58,34,114,105,103,104,116,34,125,44,97,112,112,108,121,83,116,121,108,101,58,123,111,114,100,101,114,58,57,48,48,44,101,110,97,98,108,101,100,58,33,48,44,102,110,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,44,110,59,114,101,116,117,114,110,32,104,101,40,116,46,105,110,115,116,97,110,99,101,46,112,111,112,112,101,114,44,116,46,115,116,121,108,101,115,41,44,101,61,116,46,105,110,115,116,97,110,99,101,46,112,111,112,112,101,114,44,110,61,116,46,97,116,116,114,105,98,117,116,101,115,44,79,98,106,101,99,116,46,107,101,121,115,40,110,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,116,41,123,33,49,33,61,61,110,91,116,93,63,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,116,44,110,91,116,93,41,58,101,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,40,116,41,125,41,44,116,46,97,114,114,111,119,69,108,101,109,101,110,116,38,38,79,98,106,101,99,116,46,107,101,121,115,40,116,46,97,114,114,111,119,83,116,121,108,101,115,41,46,108,101,110,103,116,104,38,38,104,101,40,116,46,97,114,114,111,119,69,108,101,109,101,110,116,44,116,46,97,114,114,111,119,83,116,121,108,101,115,41,44,116,125,44,111,110,76,111,97,100,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,44,105,44,111,41,123,118,97,114,32,114,61,74,116,40,111,44,101,44,116,44,110,46,112,111,115,105,116,105,111,110,70,105,120,101,100,41,44,115,61,36,116,40,110,46,112,108,97,99,101,109,101,110,116,44,114,44,101,44,116,44,110,46,109,111,100,105,102,105,101,114,115,46,102,108,105,112,46,98,111,117,110,100,97,114,105,101,115,69,108,101,109,101,110,116,44,110,46,109,111,100,105,102,105,101,114,115,46,102,108,105,112,46,112,97,100,100,105,110,103,41,59,114,101,116,117,114,110,32,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,120,45,112,108,97,99,101,109,101,110,116,34,44,115,41,44,104,101,40,101,44,123,112,111,115,105,116,105,111,110,58,110,46,112,111,115,105,116,105,111,110,70,105,120,101,100,63,34,102,105,120,101,100,34,58,34,97,98,115,111,108,117,116,101,34,125,41,44,110,125,44,103,112,117,65,99,99,101,108,101,114,97,116,105,111,110,58,118,111,105,100,32,48,125,125,125,44,98,101,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,114,40,116,44,101,41,123,118,97,114,32,110,61,116,104,105,115,44,105,61,50,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,38,38,118,111,105,100,32,48,33,61,61,97,114,103,117,109,101,110,116,115,91,50,93,63,97,114,103,117,109,101,110,116,115,91,50,93,58,123,125,59,33,102,117,110,99,116,105,111,110,40,116,44,101,41,123,105,102,40,33,40,116,32,105,110,115,116,97,110,99,101,111,102,32,101,41,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,67,97,110,110,111,116,32,99,97,108,108,32,97,32,99,108,97,115,115,32,97,115,32,97,32,102,117,110,99,116,105,111,110,34,41,125,40,116,104,105,115,44,114,41,44,116,104,105,115,46,115,99,104,101,100,117,108,101,85,112,100,97,116,101,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,114,101,113,117,101,115,116,65,110,105,109,97,116,105,111,110,70,114,97,109,101,40,110,46,117,112,100,97,116,101,41,125,44,116,104,105,115,46,117,112,100,97,116,101,61,65,116,40,116,104,105,115,46,117,112,100,97,116,101,46,98,105,110,100,40,116,104,105,115,41,41,44,116,104,105,115,46,111,112,116,105,111,110,115,61,81,116,40,123,125,44,114,46,68,101,102,97,117,108,116,115,44,105,41,44,116,104,105,115,46,115,116,97,116,101,61,123,105,115,68,101,115,116,114,111,121,101,100,58,33,49,44,105,115,67,114,101,97,116,101,100,58,33,49,44,115,99,114,111,108,108,80,97,114,101,110,116,115,58,91,93,125,44,116,104,105,115,46,114,101,102,101,114,101,110,99,101,61,116,38,38,116,46,106,113,117,101,114,121,63,116,91,48,93,58,116,44,116,104,105,115,46,112,111,112,112,101,114,61,101,38,38,101,46,106,113,117,101,114,121,63,101,91,48,93,58,101,44,116,104,105,115,46,111,112,116,105,111,110,115,46,109,111,100,105,102,105,101,114,115,61,123,125,44,79,98,106,101,99,116,46,107,101,121,115,40,81,116,40,123,125,44,114,46,68,101,102,97,117,108,116,115,46,109,111,100,105,102,105,101,114,115,44,105,46,109,111,100,105,102,105,101,114,115,41,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,116,41,123,110,46,111,112,116,105,111,110,115,46,109,111,100,105,102,105,101,114,115,91,116,93,61,81,116,40,123,125,44,114,46,68,101,102,97,117,108,116,115,46,109,111,100,105,102,105,101,114,115,91,116,93,124,124,123,125,44,105,46,109,111,100,105,102,105,101,114,115,63,105,46,109,111,100,105,102,105,101,114,115,91,116,93,58,123,125,41,125,41,44,116,104,105,115,46,109,111,100,105,102,105,101,114,115,61,79,98,106,101,99,116,46,107,101,121,115,40,116,104,105,115,46,111,112,116,105,111,110,115,46,109,111,100,105,102,105,101,114,115,41,46,109,97,112,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,81,116,40,123,110,97,109,101,58,116,125,44,110,46,111,112,116,105,111,110,115,46,109,111,100,105,102,105,101,114,115,91,116,93,41,125,41,46,115,111,114,116,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,116,46,111,114,100,101,114,45,101,46,111,114,100,101,114,125,41,44,116,104,105,115,46,109,111,100,105,102,105,101,114,115,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,116,41,123,116,46,101,110,97,98,108,101,100,38,38,79,116,40,116,46,111,110,76,111,97,100,41,38,38,116,46,111,110,76,111,97,100,40,110,46,114,101,102,101,114,101,110,99,101,44,110,46,112,111,112,112,101,114,44,110,46,111,112,116,105,111,110,115,44,116,44,110,46,115,116,97,116,101,41,125,41,44,116,104,105,115,46,117,112,100,97,116,101,40,41,59,118,97,114,32,111,61,116,104,105,115,46,111,112,116,105,111,110,115,46,101,118,101,110,116,115,69,110,97,98,108,101,100,59,111,38,38,116,104,105,115,46,101,110,97,98,108,101,69,118,101,110,116,76,105,115,116,101,110,101,114,115,40,41,44,116,104,105,115,46,115,116,97,116,101,46,101,118,101,110,116,115,69,110,97,98,108,101,100,61,111,125,114,101,116,117,114,110,32,113,116,40,114,44,91,123,107,101,121,58,34,117,112,100,97,116,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,105,102,40,33,116,104,105,115,46,115,116,97,116,101,46,105,115,68,101,115,116,114,111,121,101,100,41,123,118,97,114,32,116,61,123,105,110,115,116,97,110,99,101,58,116,104,105,115,44,115,116,121,108,101,115,58,123,125,44,97,114,114,111,119,83,116,121,108,101,115,58,123,125,44,97,116,116,114,105,98,117,116,101,115,58,123,125,44,102,108,105,112,112,101,100,58,33,49,44,111,102,102,115,101,116,115,58,123,125,125,59,116,46,111,102,102,115,101,116,115,46,114,101,102,101,114,101,110,99,101,61,74,116,40,116,104,105,115,46,115,116,97,116,101,44,116,104,105,115,46,112,111,112,112,101,114,44,116,104,105,115,46,114,101,102,101,114,101,110,99,101,44,116,104,105,115,46,111,112,116,105,111,110,115,46,112,111,115,105,116,105,111,110,70,105,120,101,100,41,44,116,46,112,108,97,99,101,109,101,110,116,61,36,116,40,116,104,105,115,46,111,112,116,105,111,110,115,46,112,108,97,99,101,109,101,110,116,44,116,46,111,102,102,115,101,116,115,46,114,101,102,101,114,101,110,99,101,44,116,104,105,115,46,112,111,112,112,101,114,44,116,104,105,115,46,114,101,102,101,114,101,110,99,101,44,116,104,105,115,46,111,112,116,105,111,110,115,46,109,111,100,105,102,105,101,114,115,46,102,108,105,112,46,98,111,117,110,100,97,114,105,101,115,69,108,101,109,101,110,116,44,116,104,105,115,46,111,112,116,105,111,110,115,46,109,111,100,105,102,105,101,114,115,46,102,108,105,112,46,112,97,100,100,105,110,103,41,44,116,46,111,114,105,103,105,110,97,108,80,108,97,99,101,109,101,110,116,61,116,46,112,108,97,99,101,109,101,110,116,44,116,46,112,111,115,105,116,105,111,110,70,105,120,101,100,61,116,104,105,115,46,111,112,116,105,111,110,115,46,112,111,115,105,116,105,111,110,70,105,120,101,100,44,116,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,61,101,101,40,116,104,105,115,46,112,111,112,112,101,114,44,116,46,111,102,102,115,101,116,115,46,114,101,102,101,114,101,110,99,101,44,116,46,112,108,97,99,101,109,101,110,116,41,44,116,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,46,112,111,115,105,116,105,111,110,61,116,104,105,115,46,111,112,116,105,111,110,115,46,112,111,115,105,116,105,111,110,70,105,120,101,100,63,34,102,105,120,101,100,34,58,34,97,98,115,111,108,117,116,101,34,44,116,61,105,101,40,116,104,105,115,46,109,111,100,105,102,105,101,114,115,44,116,41,44,116,104,105,115,46,115,116,97,116,101,46,105,115,67,114,101,97,116,101,100,63,116,104,105,115,46,111,112,116,105,111,110,115,46,111,110,85,112,100,97,116,101,40,116,41,58,40,116,104,105,115,46,115,116,97,116,101,46,105,115,67,114,101,97,116,101,100,61,33,48,44,116,104,105,115,46,111,112,116,105,111,110,115,46,111,110,67,114,101,97,116,101,40,116,41,41,125,125,46,99,97,108,108,40,116,104,105,115,41,125,125,44,123,107,101,121,58,34,100,101,115,116,114,111,121,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,115,116,97,116,101,46,105,115,68,101,115,116,114,111,121,101,100,61,33,48,44,111,101,40,116,104,105,115,46,109,111,100,105,102,105,101,114,115,44,34,97,112,112,108,121,83,116,121,108,101,34,41,38,38,40,116,104,105,115,46,112,111,112,112,101,114,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,40,34,120,45,112,108,97,99,101,109,101,110,116,34,41,44,116,104,105,115,46,112,111,112,112,101,114,46,115,116,121,108,101,46,112,111,115,105,116,105,111,110,61,34,34,44,116,104,105,115,46,112,111,112,112,101,114,46,115,116,121,108,101,46,116,111,112,61,34,34,44,116,104,105,115,46,112,111,112,112,101,114,46,115,116,121,108,101,46,108,101,102,116,61,34,34,44,116,104,105,115,46,112,111,112,112,101,114,46,115,116,121,108,101,46,114,105,103,104,116,61,34,34,44,116,104,105,115,46,112,111,112,112,101,114,46,115,116,121,108,101,46,98,111,116,116,111,109,61,34,34,44,116,104,105,115,46,112,111,112,112,101,114,46,115,116,121,108,101,46,119,105,108,108,67,104,97,110,103,101,61,34,34,44,116,104,105,115,46,112,111,112,112,101,114,46,115,116,121,108,101,91,114,101,40,34,116,114,97,110,115,102,111,114,109,34,41,93,61,34,34,41,44,116,104,105,115,46,100,105,115,97,98,108,101,69,118,101,110,116,76,105,115,116,101,110,101,114,115,40,41,44,116,104,105,115,46,111,112,116,105,111,110,115,46,114,101,109,111,118,101,79,110,68,101,115,116,114,111,121,38,38,116,104,105,115,46,112,111,112,112,101,114,46,112,97,114,101,110,116,78,111,100,101,46,114,101,109,111,118,101,67,104,105,108,100,40,116,104,105,115,46,112,111,112,112,101,114,41,44,116,104,105,115,125,46,99,97,108,108,40,116,104,105,115,41,125,125,44,123,107,101,121,58,34,101,110,97,98,108,101,69,118,101,110,116,76,105,115,116,101,110,101,114,115,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,115,116,97,116,101,46,101,118,101,110,116,115,69,110,97,98,108,101,100,124,124,40,116,104,105,115,46,115,116,97,116,101,61,97,101,40,116,104,105,115,46,114,101,102,101,114,101,110,99,101,44,116,104,105,115,46,111,112,116,105,111,110,115,44,116,104,105,115,46,115,116,97,116,101,44,116,104,105,115,46,115,99,104,101,100,117,108,101,85,112,100,97,116,101,41,41,125,46,99,97,108,108,40,116,104,105,115,41,125,125,44,123,107,101,121,58,34,100,105,115,97,98,108,101,69,118,101,110,116,76,105,115,116,101,110,101,114,115,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,108,101,46,99,97,108,108,40,116,104,105,115,41,125,125,93,41,44,114,125,40,41,59,98,101,46,85,116,105,108,115,61,40,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,119,105,110,100,111,119,63,119,105,110,100,111,119,58,103,108,111,98,97,108,41,46,80,111,112,112,101,114,85,116,105,108,115,44,98,101,46,112,108,97,99,101,109,101,110,116,115,61,100,101,44,98,101,46,68,101,102,97,117,108,116,115,61,69,101,59,118,97,114,32,119,101,61,34,100,114,111,112,100,111,119,110,34,44,67,101,61,34,98,115,46,100,114,111,112,100,111,119,110,34,44,84,101,61,34,46,34,43,67,101,44,83,101,61,34,46,100,97,116,97,45,97,112,105,34,44,68,101,61,112,46,102,110,91,119,101,93,44,73,101,61,110,101,119,32,82,101,103,69,120,112,40,34,51,56,124,52,48,124,50,55,34,41,44,65,101,61,123,72,73,68,69,58,34,104,105,100,101,34,43,84,101,44,72,73,68,68,69,78,58,34,104,105,100,100,101,110,34,43,84,101,44,83,72,79,87,58,34,115,104,111,119,34,43,84,101,44,83,72,79,87,78,58,34,115,104,111,119,110,34,43,84,101,44,67,76,73,67,75,58,34,99,108,105,99,107,34,43,84,101,44,67,76,73,67,75,95,68,65,84,65,95,65,80,73,58,34,99,108,105,99,107,34,43,84,101,43,83,101,44,75,69,89,68,79,87,78,95,68,65,84,65,95,65,80,73,58,34,107,101,121,100,111,119,110,34,43,84,101,43,83,101,44,75,69,89,85,80,95,68,65,84,65,95,65,80,73,58,34,107,101,121,117,112,34,43,84,101,43,83,101,125,44,79,101,61,34,100,105,115,97,98,108,101,100,34,44,78,101,61,34,115,104,111,119,34,44,107,101,61,34,100,114,111,112,117,112,34,44,76,101,61,34,100,114,111,112,114,105,103,104,116,34,44,120,101,61,34,100,114,111,112,108,101,102,116,34,44,80,101,61,34,100,114,111,112,100,111,119,110,45,109,101,110,117,45,114,105,103,104,116,34,44,72,101,61,34,112,111,115,105,116,105,111,110,45,115,116,97,116,105,99,34,44,106,101,61,39,91,100,97,116,97,45,116,111,103,103,108,101,61,34,100,114,111,112,100,111,119,110,34,93,39,44,82,101,61,34,46,100,114,111,112,100,111,119,110,32,102,111,114,109,34,44,70,101,61,34,46,100,114,111,112,100,111,119,110,45,109,101,110,117,34,44,77,101,61,34,46,110,97,118,98,97,114,45,110,97,118,34,44,87,101,61,34,46,100,114,111,112,100,111,119,110,45,109,101,110,117,32,46,100,114,111,112,100,111,119,110,45,105,116,101,109,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,34,44,85,101,61,34,116,111,112,45,115,116,97,114,116,34,44,66,101,61,34,116,111,112,45,101,110,100,34,44,113,101,61,34,98,111,116,116,111,109,45,115,116,97,114,116,34,44,75,101,61,34,98,111,116,116,111,109,45,101,110,100,34,44,81,101,61,34,114,105,103,104,116,45,115,116,97,114,116,34,44,86,101,61,34,108,101,102,116,45,115,116,97,114,116,34,44,89,101,61,123,111,102,102,115,101,116,58,48,44,102,108,105,112,58,33,48,44,98,111,117,110,100,97,114,121,58,34,115,99,114,111,108,108,80,97,114,101,110,116,34,44,114,101,102,101,114,101,110,99,101,58,34,116,111,103,103,108,101,34,44,100,105,115,112,108,97,121,58,34,100,121,110,97,109,105,99,34,125,44,122,101,61,123,111,102,102,115,101,116,58,34,40,110,117,109,98,101,114,124,115,116,114,105,110,103,124,102,117,110,99,116,105,111,110,41,34,44,102,108,105,112,58,34,98,111,111,108,101,97,110,34,44,98,111,117,110,100,97,114,121,58,34,40,115,116,114,105,110,103,124,101,108,101,109,101,110,116,41,34,44,114,101,102,101,114,101,110,99,101,58,34,40,115,116,114,105,110,103,124,101,108,101,109,101,110,116,41,34,44,100,105,115,112,108,97,121,58,34,115,116,114,105,110,103,34,125,44,88,101,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,99,40,116,44,101,41,123,116,104,105,115,46,95,101,108,101,109,101,110,116,61,116,44,116,104,105,115,46,95,112,111,112,112,101,114,61,110,117,108,108,44,116,104,105,115,46,95,99,111,110,102,105,103,61,116,104,105,115,46,95,103,101,116,67,111,110,102,105,103,40,101,41,44,116,104,105,115,46,95,109,101,110,117,61,116,104,105,115,46,95,103,101,116,77,101,110,117,69,108,101,109,101,110,116,40,41,44,116,104,105,115,46,95,105,110,78,97,118,98,97,114,61,116,104,105,115,46,95,100,101,116,101,99,116,78,97,118,98,97,114,40,41,44,116,104,105,115,46,95,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,115,40,41,125,118,97,114,32,116,61,99,46,112,114,111,116,111,116,121,112,101,59,114,101,116,117,114,110,32,116,46,116,111,103,103,108,101,61,102,117,110,99,116,105,111,110,40,41,123,105,102,40,33,116,104,105,115,46,95,101,108,101,109,101,110,116,46,100,105,115,97,98,108,101,100,38,38,33,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,104,97,115,67,108,97,115,115,40,79,101,41,41,123,118,97,114,32,116,61,99,46,95,103,101,116,80,97,114,101,110,116,70,114,111,109,69,108,101,109,101,110,116,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,44,101,61,112,40,116,104,105,115,46,95,109,101,110,117,41,46,104,97,115,67,108,97,115,115,40,78,101,41,59,105,102,40,99,46,95,99,108,101,97,114,77,101,110,117,115,40,41,44,33,101,41,123,118,97,114,32,110,61,123,114,101,108,97,116,101,100,84,97,114,103,101,116,58,116,104,105,115,46,95,101,108,101,109,101,110,116,125,44,105,61,112,46,69,118,101,110,116,40,65,101,46,83,72,79,87,44,110,41,59,105,102,40,112,40,116,41,46,116,114,105,103,103,101,114,40,105,41,44,33,105,46,105,115,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,40,41,41,123,105,102,40,33,116,104,105,115,46,95,105,110,78,97,118,98,97,114,41,123,105,102,40,34,117,110,100,101,102,105,110,101,100,34,61,61,116,121,112,101,111,102,32,98,101,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,66,111,111,116,115,116,114,97,112,39,115,32,100,114,111,112,100,111,119,110,115,32,114,101,113,117,105,114,101,32,80,111,112,112,101,114,46,106,115,32,40,104,116,116,112,115,58,47,47,112,111,112,112,101,114,46,106,115,46,111,114,103,47,41,34,41,59,118,97,114,32,111,61,116,104,105,115,46,95,101,108,101,109,101,110,116,59,34,112,97,114,101,110,116,34,61,61,61,116,104,105,115,46,95,99,111,110,102,105,103,46,114,101,102,101,114,101,110,99,101,63,111,61,116,58,109,46,105,115,69,108,101,109,101,110,116,40,116,104,105,115,46,95,99,111,110,102,105,103,46,114,101,102,101,114,101,110,99,101,41,38,38,40,111,61,116,104,105,115,46,95,99,111,110,102,105,103,46,114,101,102,101,114,101,110,99,101,44,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,116,104,105,115,46,95,99,111,110,102,105,103,46,114,101,102,101,114,101,110,99,101,46,106,113,117,101,114,121,38,38,40,111,61,116,104,105,115,46,95,99,111,110,102,105,103,46,114,101,102,101,114,101,110,99,101,91,48,93,41,41,44,34,115,99,114,111,108,108,80,97,114,101,110,116,34,33,61,61,116,104,105,115,46,95,99,111,110,102,105,103,46,98,111,117,110,100,97,114,121,38,38,112,40,116,41,46,97,100,100,67,108,97,115,115,40,72,101,41,44,116,104,105,115,46,95,112,111,112,112,101,114,61,110,101,119,32,98,101,40,111,44,116,104,105,115,46,95,109,101,110,117,44,116,104,105,115,46,95,103,101,116,80,111,112,112,101,114,67,111,110,102,105,103,40,41,41,125,34,111,110,116,111,117,99,104,115,116,97,114,116,34,105,110,32,100,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,38,38,48,61,61,61,112,40,116,41,46,99,108,111,115,101,115,116,40,77,101,41,46,108,101,110,103,116,104,38,38,112,40,100,111,99,117,109,101,110,116,46,98,111,100,121,41,46,99,104,105,108,100,114,101,110,40,41,46,111,110,40,34,109,111,117,115,101,111,118,101,114,34,44,110,117,108,108,44,112,46,110,111,111,112,41,44,116,104,105,115,46,95,101,108,101,109,101,110,116,46,102,111,99,117,115,40,41,44,116,104,105,115,46,95,101,108,101,109,101,110,116,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,97,114,105,97,45,101,120,112,97,110,100,101,100,34,44,33,48,41,44,112,40,116,104,105,115,46,95,109,101,110,117,41,46,116,111,103,103,108,101,67,108,97,115,115,40,78,101,41,44,112,40,116,41,46,116,111,103,103,108,101,67,108,97,115,115,40,78,101,41,46,116,114,105,103,103,101,114,40,112,46,69,118,101,110,116,40,65,101,46,83,72,79,87,78,44,110,41,41,125,125,125,125,44,116,46,115,104,111,119,61,102,117,110,99,116,105,111,110,40,41,123,105,102,40,33,40,116,104,105,115,46,95,101,108,101,109,101,110,116,46,100,105,115,97,98,108,101,100,124,124,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,104,97,115,67,108,97,115,115,40,79,101,41,124,124,112,40,116,104,105,115,46,95,109,101,110,117,41,46,104,97,115,67,108,97,115,115,40,78,101,41,41,41,123,118,97,114,32,116,61,123,114,101,108,97,116,101,100,84,97,114,103,101,116,58,116,104,105,115,46,95,101,108,101,109,101,110,116,125,44,101,61,112,46,69,118,101,110,116,40,65,101,46,83,72,79,87,44,116,41,44,110,61,99,46,95,103,101,116,80,97,114,101,110,116,70,114,111,109,69,108,101,109,101,110,116,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,59,112,40,110,41,46,116,114,105,103,103,101,114,40,101,41,44,101,46,105,115,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,40,41,124,124,40,112,40,116,104,105,115,46,95,109,101,110,117,41,46,116,111,103,103,108,101,67,108,97,115,115,40,78,101,41,44,112,40,110,41,46,116,111,103,103,108,101,67,108,97,115,115,40,78,101,41,46,116,114,105,103,103,101,114,40,112,46,69,118,101,110,116,40,65,101,46,83,72,79,87,78,44,116,41,41,41,125,125,44,116,46,104,105,100,101,61,102,117,110,99,116,105,111,110,40,41,123,105,102,40,33,116,104,105,115,46,95,101,108,101,109,101,110,116,46,100,105,115,97,98,108,101,100,38,38,33,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,104,97,115,67,108,97,115,115,40,79,101,41,38,38,112,40,116,104,105,115,46,95,109,101,110,117,41,46,104,97,115,67,108,97,115,115,40,78,101,41,41,123,118,97,114,32,116,61,123,114,101,108,97,116,101,100,84,97,114,103,101,116,58,116,104,105,115,46,95,101,108,101,109,101,110,116,125,44,101,61,112,46,69,118,101,110,116,40,65,101,46,72,73,68,69,44,116,41,44,110,61,99,46,95,103,101,116,80,97,114,101,110,116,70,114,111,109,69,108,101,109,101,110,116,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,59,112,40,110,41,46,116,114,105,103,103,101,114,40,101,41,44,101,46,105,115,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,40,41,124,124,40,112,40,116,104,105,115,46,95,109,101,110,117,41,46,116,111,103,103,108,101,67,108,97,115,115,40,78,101,41,44,112,40,110,41,46,116,111,103,103,108,101,67,108,97,115,115,40,78,101,41,46,116,114,105,103,103,101,114,40,112,46,69,118,101,110,116,40,65,101,46,72,73,68,68,69,78,44,116,41,41,41,125,125,44,116,46,100,105,115,112,111,115,101,61,102,117,110,99,116,105,111,110,40,41,123,112,46,114,101,109,111,118,101,68,97,116,97,40,116,104,105,115,46,95,101,108,101,109,101,110,116,44,67,101,41,44,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,111,102,102,40,84,101,41,44,116,104,105,115,46,95,101,108,101,109,101,110,116,61,110,117,108,108,44,40,116,104,105,115,46,95,109,101,110,117,61,110,117,108,108,41,33,61,61,116,104,105,115,46,95,112,111,112,112,101,114,38,38,40,116,104,105,115,46,95,112,111,112,112,101,114,46,100,101,115,116,114,111,121,40,41,44,116,104,105,115,46,95,112,111,112,112,101,114,61,110,117,108,108,41,125,44,116,46,117,112,100,97,116,101,61,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,105,110,78,97,118,98,97,114,61,116,104,105,115,46,95,100,101,116,101,99,116,78,97,118,98,97,114,40,41,44,110,117,108,108,33,61,61,116,104,105,115,46,95,112,111,112,112,101,114,38,38,116,104,105,115,46,95,112,111,112,112,101,114,46,115,99,104,101,100,117,108,101,85,112,100,97,116,101,40,41,125,44,116,46,95,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,115,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,59,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,111,110,40,65,101,46,67,76,73,67,75,44,102,117,110,99,116,105,111,110,40,116,41,123,116,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,116,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,44,101,46,116,111,103,103,108,101,40,41,125,41,125,44,116,46,95,103,101,116,67,111,110,102,105,103,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,61,108,40,123,125,44,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,46,68,101,102,97,117,108,116,44,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,100,97,116,97,40,41,44,116,41,44,109,46,116,121,112,101,67,104,101,99,107,67,111,110,102,105,103,40,119,101,44,116,44,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,46,68,101,102,97,117,108,116,84,121,112,101,41,44,116,125,44,116,46,95,103,101,116,77,101,110,117,69,108,101,109,101,110,116,61,102,117,110,99,116,105,111,110,40,41,123,105,102,40,33,116,104,105,115,46,95,109,101,110,117,41,123,118,97,114,32,116,61,99,46,95,103,101,116,80,97,114,101,110,116,70,114,111,109,69,108,101,109,101,110,116,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,59,116,38,38,40,116,104,105,115,46,95,109,101,110,117,61,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,70,101,41,41,125,114,101,116,117,114,110,32,116,104,105,115,46,95,109,101,110,117,125,44,116,46,95,103,101,116,80,108,97,99,101,109,101,110,116,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,46,112,97,114,101,110,116,78,111,100,101,41,44,101,61,113,101,59,114,101,116,117,114,110,32,116,46,104,97,115,67,108,97,115,115,40,107,101,41,63,40,101,61,85,101,44,112,40,116,104,105,115,46,95,109,101,110,117,41,46,104,97,115,67,108,97,115,115,40,80,101,41,38,38,40,101,61,66,101,41,41,58,116,46,104,97,115,67,108,97,115,115,40,76,101,41,63,101,61,81,101,58,116,46,104,97,115,67,108,97,115,115,40,120,101,41,63,101,61,86,101,58,112,40,116,104,105,115,46,95,109,101,110,117,41,46,104,97,115,67,108,97,115,115,40,80,101,41,38,38,40,101,61,75,101,41,44,101,125,44,116,46,95,100,101,116,101,99,116,78,97,118,98,97,114,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,48,60,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,99,108,111,115,101,115,116,40,34,46,110,97,118,98,97,114,34,41,46,108,101,110,103,116,104,125,44,116,46,95,103,101,116,79,102,102,115,101,116,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,44,116,61,123,125,59,114,101,116,117,114,110,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,104,105,115,46,95,99,111,110,102,105,103,46,111,102,102,115,101,116,63,116,46,102,110,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,111,102,102,115,101,116,115,61,108,40,123,125,44,116,46,111,102,102,115,101,116,115,44,101,46,95,99,111,110,102,105,103,46,111,102,102,115,101,116,40,116,46,111,102,102,115,101,116,115,44,101,46,95,101,108,101,109,101,110,116,41,124,124,123,125,41,44,116,125,58,116,46,111,102,102,115,101,116,61,116,104,105,115,46,95,99,111,110,102,105,103,46,111,102,102,115,101,116,44,116,125,44,116,46,95,103,101,116,80,111,112,112,101,114,67,111,110,102,105,103,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,123,112,108,97,99,101,109,101,110,116,58,116,104,105,115,46,95,103,101,116,80,108,97,99,101,109,101,110,116,40,41,44,109,111,100,105,102,105,101,114,115,58,123,111,102,102,115,101,116,58,116,104,105,115,46,95,103,101,116,79,102,102,115,101,116,40,41,44,102,108,105,112,58,123,101,110,97,98,108,101,100,58,116,104,105,115,46,95,99,111,110,102,105,103,46,102,108,105,112,125,44,112,114,101,118,101,110,116,79,118,101,114,102,108,111,119,58,123,98,111,117,110,100,97,114,105,101,115,69,108,101,109,101,110,116,58,116,104,105,115,46,95,99,111,110,102,105,103,46,98,111,117,110,100,97,114,121,125,125,125,59,114,101,116,117,114,110,34,115,116,97,116,105,99,34,61,61,61,116,104,105,115,46,95,99,111,110,102,105,103,46,100,105,115,112,108,97,121,38,38,40,116,46,109,111,100,105,102,105,101,114,115,46,97,112,112,108,121,83,116,121,108,101,61,123,101,110,97,98,108,101,100,58,33,49,125,41,44,116,125,44,99,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,112,40,116,104,105,115,41,46,100,97,116,97,40,67,101,41,59,105,102,40,116,124,124,40,116,61,110,101,119,32,99,40,116,104,105,115,44,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,101,63,101,58,110,117,108,108,41,44,112,40,116,104,105,115,41,46,100,97,116,97,40,67,101,44,116,41,41,44,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,101,41,123,105,102,40,34,117,110,100,101,102,105,110,101,100,34,61,61,116,121,112,101,111,102,32,116,91,101,93,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,39,78,111,32,109,101,116,104,111,100,32,110,97,109,101,100,32,34,39,43,101,43,39,34,39,41,59,116,91,101,93,40,41,125,125,41,125,44,99,46,95,99,108,101,97,114,77,101,110,117,115,61,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,33,116,124,124,51,33,61,61,116,46,119,104,105,99,104,38,38,40,34,107,101,121,117,112,34,33,61,61,116,46,116,121,112,101,124,124,57,61,61,61,116,46,119,104,105,99,104,41,41,102,111,114,40,118,97,114,32,101,61,91,93,46,115,108,105,99,101,46,99,97,108,108,40,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,106,101,41,41,44,110,61,48,44,105,61,101,46,108,101,110,103,116,104,59,110,60,105,59,110,43,43,41,123,118,97,114,32,111,61,99,46,95,103,101,116,80,97,114,101,110,116,70,114,111,109,69,108,101,109,101,110,116,40,101,91,110,93,41,44,114,61,112,40,101,91,110,93,41,46,100,97,116,97,40,67,101,41,44,115,61,123,114,101,108,97,116,101,100,84,97,114,103,101,116,58,101,91,110,93,125,59,105,102,40,116,38,38,34,99,108,105,99,107,34,61,61,61,116,46,116,121,112,101,38,38,40,115,46,99,108,105,99,107,69,118,101,110,116,61,116,41,44,114,41,123,118,97,114,32,97,61,114,46,95,109,101,110,117,59,105,102,40,112,40,111,41,46,104,97,115,67,108,97,115,115,40,78,101,41,38,38,33,40,116,38,38,40,34,99,108,105,99,107,34,61,61,61,116,46,116,121,112,101,38,38,47,105,110,112,117,116,124,116,101,120,116,97,114,101,97,47,105,46,116,101,115,116,40,116,46,116,97,114,103,101,116,46,116,97,103,78,97,109,101,41,124,124,34,107,101,121,117,112,34,61,61,61,116,46,116,121,112,101,38,38,57,61,61,61,116,46,119,104,105,99,104,41,38,38,112,46,99,111,110,116,97,105,110,115,40,111,44,116,46,116,97,114,103,101,116,41,41,41,123,118,97,114,32,108,61,112,46,69,118,101,110,116,40,65,101,46,72,73,68,69,44,115,41,59,112,40,111,41,46,116,114,105,103,103,101,114,40,108,41,44,108,46,105,115,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,40,41,124,124,40,34,111,110,116,111,117,99,104,115,116,97,114,116,34,105,110,32,100,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,38,38,112,40,100,111,99,117,109,101,110,116,46,98,111,100,121,41,46,99,104,105,108,100,114,101,110,40,41,46,111,102,102,40,34,109,111,117,115,101,111,118,101,114,34,44,110,117,108,108,44,112,46,110,111,111,112,41,44,101,91,110,93,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,97,114,105,97,45,101,120,112,97,110,100,101,100,34,44,34,102,97,108,115,101,34,41,44,112,40,97,41,46,114,101,109,111,118,101,67,108,97,115,115,40,78,101,41,44,112,40,111,41,46,114,101,109,111,118,101,67,108,97,115,115,40,78,101,41,46,116,114,105,103,103,101,114,40,112,46,69,118,101,110,116,40,65,101,46,72,73,68,68,69,78,44,115,41,41,41,125,125,125,125,44,99,46,95,103,101,116,80,97,114,101,110,116,70,114,111,109,69,108,101,109,101,110,116,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,44,110,61,109,46,103,101,116,83,101,108,101,99,116,111,114,70,114,111,109,69,108,101,109,101,110,116,40,116,41,59,114,101,116,117,114,110,32,110,38,38,40,101,61,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,110,41,41,44,101,124,124,116,46,112,97,114,101,110,116,78,111,100,101,125,44,99,46,95,100,97,116,97,65,112,105,75,101,121,100,111,119,110,72,97,110,100,108,101,114,61,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,40,47,105,110,112,117,116,124,116,101,120,116,97,114,101,97,47,105,46,116,101,115,116,40,116,46,116,97,114,103,101,116,46,116,97,103,78,97,109,101,41,63,33,40,51,50,61,61,61,116,46,119,104,105,99,104,124,124,50,55,33,61,61,116,46,119,104,105,99,104,38,38,40,52,48,33,61,61,116,46,119,104,105,99,104,38,38,51,56,33,61,61,116,46,119,104,105,99,104,124,124,112,40,116,46,116,97,114,103,101,116,41,46,99,108,111,115,101,115,116,40,70,101,41,46,108,101,110,103,116,104,41,41,58,73,101,46,116,101,115,116,40,116,46,119,104,105,99,104,41,41,38,38,40,116,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,116,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,44,33,116,104,105,115,46,100,105,115,97,98,108,101,100,38,38,33,112,40,116,104,105,115,41,46,104,97,115,67,108,97,115,115,40,79,101,41,41,41,123,118,97,114,32,101,61,99,46,95,103,101,116,80,97,114,101,110,116,70,114,111,109,69,108,101,109,101,110,116,40,116,104,105,115,41,44,110,61,112,40,101,41,46,104,97,115,67,108,97,115,115,40,78,101,41,59,105,102,40,110,38,38,40,33,110,124,124,50,55,33,61,61,116,46,119,104,105,99,104,38,38,51,50,33,61,61,116,46,119,104,105,99,104,41,41,123,118,97,114,32,105,61,91,93,46,115,108,105,99,101,46,99,97,108,108,40,101,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,87,101,41,41,59,105,102,40,48,33,61,61,105,46,108,101,110,103,116,104,41,123,118,97,114,32,111,61,105,46,105,110,100,101,120,79,102,40,116,46,116,97,114,103,101,116,41,59,51,56,61,61,61,116,46,119,104,105,99,104,38,38,48,60,111,38,38,111,45,45,44,52,48,61,61,61,116,46,119,104,105,99,104,38,38,111,60,105,46,108,101,110,103,116,104,45,49,38,38,111,43,43,44,111,60,48,38,38,40,111,61,48,41,44,105,91,111,93,46,102,111,99,117,115,40,41,125,125,101,108,115,101,123,105,102,40,50,55,61,61,61,116,46,119,104,105,99,104,41,123,118,97,114,32,114,61,101,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,106,101,41,59,112,40,114,41,46,116,114,105,103,103,101,114,40,34,102,111,99,117,115,34,41,125,112,40,116,104,105,115,41,46,116,114,105,103,103,101,114,40,34,99,108,105,99,107,34,41,125,125,125,44,115,40,99,44,110,117,108,108,44,91,123,107,101,121,58,34,86,69,82,83,73,79,78,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,34,52,46,51,46,49,34,125,125,44,123,107,101,121,58,34,68,101,102,97,117,108,116,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,89,101,125,125,44,123,107,101,121,58,34,68,101,102,97,117,108,116,84,121,112,101,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,122,101,125,125,93,41,44,99,125,40,41,59,112,40,100,111,99,117,109,101,110,116,41,46,111,110,40,65,101,46,75,69,89,68,79,87,78,95,68,65,84,65,95,65,80,73,44,106,101,44,88,101,46,95,100,97,116,97,65,112,105,75,101,121,100,111,119,110,72,97,110,100,108,101,114,41,46,111,110,40,65,101,46,75,69,89,68,79,87,78,95,68,65,84,65,95,65,80,73,44,70,101,44,88,101,46,95,100,97,116,97,65,112,105,75,101,121,100,111,119,110,72,97,110,100,108,101,114,41,46,111,110,40,65,101,46,67,76,73,67,75,95,68,65,84,65,95,65,80,73,43,34,32,34,43,65,101,46,75,69,89,85,80,95,68,65,84,65,95,65,80,73,44,88,101,46,95,99,108,101,97,114,77,101,110,117,115,41,46,111,110,40,65,101,46,67,76,73,67,75,95,68,65,84,65,95,65,80,73,44,106,101,44,102,117,110,99,116,105,111,110,40,116,41,123,116,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,116,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,44,88,101,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,46,99,97,108,108,40,112,40,116,104,105,115,41,44,34,116,111,103,103,108,101,34,41,125,41,46,111,110,40,65,101,46,67,76,73,67,75,95,68,65,84,65,95,65,80,73,44,82,101,44,102,117,110,99,116,105,111,110,40,116,41,123,116,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,125,41,44,112,46,102,110,91,119,101,93,61,88,101,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,44,112,46,102,110,91,119,101,93,46,67,111,110,115,116,114,117,99,116,111,114,61,88,101,44,112,46,102,110,91,119,101,93,46,110,111,67,111,110,102,108,105,99,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,112,46,102,110,91,119,101,93,61,68,101,44,88,101,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,125,59,118,97,114,32,71,101,61,34,109,111,100,97,108,34,44,36,101,61,34,98,115,46,109,111,100,97,108,34,44,74,101,61,34,46,34,43,36,101,44,90,101,61,112,46,102,110,91,71,101,93,44,116,110,61,123,98,97,99,107,100,114,111,112,58,33,48,44,107,101,121,98,111,97,114,100,58,33,48,44,102,111,99,117,115,58,33,48,44,115,104,111,119,58,33,48,125,44,101,110,61,123,98,97,99,107,100,114,111,112,58,34,40,98,111,111,108,101,97,110,124,115,116,114,105,110,103,41,34,44,107,101,121,98,111,97,114,100,58,34,98,111,111,108,101,97,110,34,44,102,111,99,117,115,58,34,98,111,111,108,101,97,110,34,44,115,104,111,119,58,34,98,111,111,108,101,97,110,34,125,44,110,110,61,123,72,73,68,69,58,34,104,105,100,101,34,43,74,101,44,72,73,68,68,69,78,58,34,104,105,100,100,101,110,34,43,74,101,44,83,72,79,87,58,34,115,104,111,119,34,43,74,101,44,83,72,79,87,78,58,34,115,104,111,119,110,34,43,74,101,44,70,79,67,85,83,73,78,58,34,102,111,99,117,115,105,110,34,43,74,101,44,82,69,83,73,90,69,58,34,114,101,115,105,122,101,34,43,74,101,44,67,76,73,67,75,95,68,73,83,77,73,83,83,58,34,99,108,105,99,107,46,100,105,115,109,105,115,115,34,43,74,101,44,75,69,89,68,79,87,78,95,68,73,83,77,73,83,83,58,34,107,101,121,100,111,119,110,46,100,105,115,109,105,115,115,34,43,74,101,44,77,79,85,83,69,85,80,95,68,73,83,77,73,83,83,58,34,109,111,117,115,101,117,112,46,100,105,115,109,105,115,115,34,43,74,101,44,77,79,85,83,69,68,79,87,78,95,68,73,83,77,73,83,83,58,34,109,111,117,115,101,100,111,119,110,46,100,105,115,109,105,115,115,34,43,74,101,44,67,76,73,67,75,95,68,65,84,65,95,65,80,73,58,34,99,108,105,99,107,34,43,74,101,43,34,46,100,97,116,97,45,97,112,105,34,125,44,111,110,61,34,109,111,100,97,108,45,100,105,97,108,111,103,45,115,99,114,111,108,108,97,98,108,101,34,44,114,110,61,34,109,111,100,97,108,45,115,99,114,111,108,108,98,97,114,45,109,101,97,115,117,114,101,34,44,115,110,61,34,109,111,100,97,108,45,98,97,99,107,100,114,111,112,34,44,97,110,61,34,109,111,100,97,108,45,111,112,101,110,34,44,108,110,61,34,102,97,100,101,34,44,99,110,61,34,115,104,111,119,34,44,104,110,61,34,46,109,111,100,97,108,45,100,105,97,108,111,103,34,44,117,110,61,34,46,109,111,100,97,108,45,98,111,100,121,34,44,102,110,61,39,91,100,97,116,97,45,116,111,103,103,108,101,61,34,109,111,100,97,108,34,93,39,44,100,110,61,39,91,100,97,116,97,45,100,105,115,109,105,115,115,61,34,109,111,100,97,108,34,93,39,44,112,110,61,34,46,102,105,120,101,100,45,116,111,112,44,32,46,102,105,120,101,100,45,98,111,116,116,111,109,44,32,46,105,115,45,102,105,120,101,100,44,32,46,115,116,105,99,107,121,45,116,111,112,34,44,109,110,61,34,46,115,116,105,99,107,121,45,116,111,112,34,44,103,110,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,111,40,116,44,101,41,123,116,104,105,115,46,95,99,111,110,102,105,103,61,116,104,105,115,46,95,103,101,116,67,111,110,102,105,103,40,101,41,44,116,104,105,115,46,95,101,108,101,109,101,110,116,61,116,44,116,104,105,115,46,95,100,105,97,108,111,103,61,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,104,110,41,44,116,104,105,115,46,95,98,97,99,107,100,114,111,112,61,110,117,108,108,44,116,104,105,115,46,95,105,115,83,104,111,119,110,61,33,49,44,116,104,105,115,46,95,105,115,66,111,100,121,79,118,101,114,102,108,111,119,105,110,103,61,33,49,44,116,104,105,115,46,95,105,103,110,111,114,101,66,97,99,107,100,114,111,112,67,108,105,99,107,61,33,49,44,116,104,105,115,46,95,105,115,84,114,97,110,115,105,116,105,111,110,105,110,103,61,33,49,44,116,104,105,115,46,95,115,99,114,111,108,108,98,97,114,87,105,100,116,104,61,48,125,118,97,114,32,116,61,111,46,112,114,111,116,111,116,121,112,101,59,114,101,116,117,114,110,32,116,46,116,111,103,103,108,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,105,115,83,104,111,119,110,63,116,104,105,115,46,104,105,100,101,40,41,58,116,104,105,115,46,115,104,111,119,40,116,41,125,44,116,46,115,104,111,119,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,59,105,102,40,33,116,104,105,115,46,95,105,115,83,104,111,119,110,38,38,33,116,104,105,115,46,95,105,115,84,114,97,110,115,105,116,105,111,110,105,110,103,41,123,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,104,97,115,67,108,97,115,115,40,108,110,41,38,38,40,116,104,105,115,46,95,105,115,84,114,97,110,115,105,116,105,111,110,105,110,103,61,33,48,41,59,118,97,114,32,110,61,112,46,69,118,101,110,116,40,110,110,46,83,72,79,87,44,123,114,101,108,97,116,101,100,84,97,114,103,101,116,58,116,125,41,59,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,116,114,105,103,103,101,114,40,110,41,44,116,104,105,115,46,95,105,115,83,104,111,119,110,124,124,110,46,105,115,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,40,41,124,124,40,116,104,105,115,46,95,105,115,83,104,111,119,110,61,33,48,44,116,104,105,115,46,95,99,104,101,99,107,83,99,114,111,108,108,98,97,114,40,41,44,116,104,105,115,46,95,115,101,116,83,99,114,111,108,108,98,97,114,40,41,44,116,104,105,115,46,95,97,100,106,117,115,116,68,105,97,108,111,103,40,41,44,116,104,105,115,46,95,115,101,116,69,115,99,97,112,101,69,118,101,110,116,40,41,44,116,104,105,115,46,95,115,101,116,82,101,115,105,122,101,69,118,101,110,116,40,41,44,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,111,110,40,110,110,46,67,76,73,67,75,95,68,73,83,77,73,83,83,44,100,110,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,46,104,105,100,101,40,116,41,125,41,44,112,40,116,104,105,115,46,95,100,105,97,108,111,103,41,46,111,110,40,110,110,46,77,79,85,83,69,68,79,87,78,95,68,73,83,77,73,83,83,44,102,117,110,99,116,105,111,110,40,41,123,112,40,101,46,95,101,108,101,109,101,110,116,41,46,111,110,101,40,110,110,46,77,79,85,83,69,85,80,95,68,73,83,77,73,83,83,44,102,117,110,99,116,105,111,110,40,116,41,123,112,40,116,46,116,97,114,103,101,116,41,46,105,115,40,101,46,95,101,108,101,109,101,110,116,41,38,38,40,101,46,95,105,103,110,111,114,101,66,97,99,107,100,114,111,112,67,108,105,99,107,61,33,48,41,125,41,125,41,44,116,104,105,115,46,95,115,104,111,119,66,97,99,107,100,114,111,112,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,101,46,95,115,104,111,119,69,108,101,109,101,110,116,40,116,41,125,41,41,125,125,44,116,46,104,105,100,101,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,59,105,102,40,116,38,38,116,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,116,104,105,115,46,95,105,115,83,104,111,119,110,38,38,33,116,104,105,115,46,95,105,115,84,114,97,110,115,105,116,105,111,110,105,110,103,41,123,118,97,114,32,110,61,112,46,69,118,101,110,116,40,110,110,46,72,73,68,69,41,59,105,102,40,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,116,114,105,103,103,101,114,40,110,41,44,116,104,105,115,46,95,105,115,83,104,111,119,110,38,38,33,110,46,105,115,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,40,41,41,123,116,104,105,115,46,95,105,115,83,104,111,119,110,61,33,49,59,118,97,114,32,105,61,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,104,97,115,67,108,97,115,115,40,108,110,41,59,105,102,40,105,38,38,40,116,104,105,115,46,95,105,115,84,114,97,110,115,105,116,105,111,110,105,110,103,61,33,48,41,44,116,104,105,115,46,95,115,101,116,69,115,99,97,112,101,69,118,101,110,116,40,41,44,116,104,105,115,46,95,115,101,116,82,101,115,105,122,101,69,118,101,110,116,40,41,44,112,40,100,111,99,117,109,101,110,116,41,46,111,102,102,40,110,110,46,70,79,67,85,83,73,78,41,44,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,114,101,109,111,118,101,67,108,97,115,115,40,99,110,41,44,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,111,102,102,40,110,110,46,67,76,73,67,75,95,68,73,83,77,73,83,83,41,44,112,40,116,104,105,115,46,95,100,105,97,108,111,103,41,46,111,102,102,40,110,110,46,77,79,85,83,69,68,79,87,78,95,68,73,83,77,73,83,83,41,44,105,41,123,118,97,114,32,111,61,109,46,103,101,116,84,114,97,110,115,105,116,105,111,110,68,117,114,97,116,105,111,110,70,114,111,109,69,108,101,109,101,110,116,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,59,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,111,110,101,40,109,46,84,82,65,78,83,73,84,73,79,78,95,69,78,68,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,46,95,104,105,100,101,77,111,100,97,108,40,116,41,125,41,46,101,109,117,108,97,116,101,84,114,97,110,115,105,116,105,111,110,69,110,100,40,111,41,125,101,108,115,101,32,116,104,105,115,46,95,104,105,100,101,77,111,100,97,108,40,41,125,125,125,44,116,46,100,105,115,112,111,115,101,61,102,117,110,99,116,105,111,110,40,41,123,91,119,105,110,100,111,119,44,116,104,105,115,46,95,101,108,101,109,101,110,116,44,116,104,105,115,46,95,100,105,97,108,111,103,93,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,112,40,116,41,46,111,102,102,40,74,101,41,125,41,44,112,40,100,111,99,117,109,101,110,116,41,46,111,102,102,40,110,110,46,70,79,67,85,83,73,78,41,44,112,46,114,101,109,111,118,101,68,97,116,97,40,116,104,105,115,46,95,101,108,101,109,101,110,116,44,36,101,41,44,116,104,105,115,46,95,99,111,110,102,105,103,61,110,117,108,108,44,116,104,105,115,46,95,101,108,101,109,101,110,116,61,110,117,108,108,44,116,104,105,115,46,95,100,105,97,108,111,103,61,110,117,108,108,44,116,104,105,115,46,95,98,97,99,107,100,114,111,112,61,110,117,108,108,44,116,104,105,115,46,95,105,115,83,104,111,119,110,61,110,117,108,108,44,116,104,105,115,46,95,105,115,66,111,100,121,79,118,101,114,102,108,111,119,105,110,103,61,110,117,108,108,44,116,104,105,115,46,95,105,103,110,111,114,101,66,97,99,107,100,114,111,112,67,108,105,99,107,61,110,117,108,108,44,116,104,105,115,46,95,105,115,84,114,97,110,115,105,116,105,111,110,105,110,103,61,110,117,108,108,44,116,104,105,115,46,95,115,99,114,111,108,108,98,97,114,87,105,100,116,104,61,110,117,108,108,125,44,116,46,104,97,110,100,108,101,85,112,100,97,116,101,61,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,97,100,106,117,115,116,68,105,97,108,111,103,40,41,125,44,116,46,95,103,101,116,67,111,110,102,105,103,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,61,108,40,123,125,44,116,110,44,116,41,44,109,46,116,121,112,101,67,104,101,99,107,67,111,110,102,105,103,40,71,101,44,116,44,101,110,41,44,116,125,44,116,46,95,115,104,111,119,69,108,101,109,101,110,116,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,44,110,61,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,104,97,115,67,108,97,115,115,40,108,110,41,59,116,104,105,115,46,95,101,108,101,109,101,110,116,46,112,97,114,101,110,116,78,111,100,101,38,38,116,104,105,115,46,95,101,108,101,109,101,110,116,46,112,97,114,101,110,116,78,111,100,101,46,110,111,100,101,84,121,112,101,61,61,61,78,111,100,101,46,69,76,69,77,69,78,84,95,78,79,68,69,124,124,100,111,99,117,109,101,110,116,46,98,111,100,121,46,97,112,112,101,110,100,67,104,105,108,100,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,44,116,104,105,115,46,95,101,108,101,109,101,110,116,46,115,116,121,108,101,46,100,105,115,112,108,97,121,61,34,98,108,111,99,107,34,44,116,104,105,115,46,95,101,108,101,109,101,110,116,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,40,34,97,114,105,97,45,104,105,100,100,101,110,34,41,44,116,104,105,115,46,95,101,108,101,109,101,110,116,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,97,114,105,97,45,109,111,100,97,108,34,44,33,48,41,44,112,40,116,104,105,115,46,95,100,105,97,108,111,103,41,46,104,97,115,67,108,97,115,115,40,111,110,41,63,116,104,105,115,46,95,100,105,97,108,111,103,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,117,110,41,46,115,99,114,111,108,108,84,111,112,61,48,58,116,104,105,115,46,95,101,108,101,109,101,110,116,46,115,99,114,111,108,108,84,111,112,61,48,44,110,38,38,109,46,114,101,102,108,111,119,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,44,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,97,100,100,67,108,97,115,115,40,99,110,41,44,116,104,105,115,46,95,99,111,110,102,105,103,46,102,111,99,117,115,38,38,116,104,105,115,46,95,101,110,102,111,114,99,101,70,111,99,117,115,40,41,59,118,97,114,32,105,61,112,46,69,118,101,110,116,40,110,110,46,83,72,79,87,78,44,123,114,101,108,97,116,101,100,84,97,114,103,101,116,58,116,125,41,44,111,61,102,117,110,99,116,105,111,110,40,41,123,101,46,95,99,111,110,102,105,103,46,102,111,99,117,115,38,38,101,46,95,101,108,101,109,101,110,116,46,102,111,99,117,115,40,41,44,101,46,95,105,115,84,114,97,110,115,105,116,105,111,110,105,110,103,61,33,49,44,112,40,101,46,95,101,108,101,109,101,110,116,41,46,116,114,105,103,103,101,114,40,105,41,125,59,105,102,40,110,41,123,118,97,114,32,114,61,109,46,103,101,116,84,114,97,110,115,105,116,105,111,110,68,117,114,97,116,105,111,110,70,114,111,109,69,108,101,109,101,110,116,40,116,104,105,115,46,95,100,105,97,108,111,103,41,59,112,40,116,104,105,115,46,95,100,105,97,108,111,103,41,46,111,110,101,40,109,46,84,82,65,78,83,73,84,73,79,78,95,69,78,68,44,111,41,46,101,109,117,108,97,116,101,84,114,97,110,115,105,116,105,111,110,69,110,100,40,114,41,125,101,108,115,101,32,111,40,41,125,44,116,46,95,101,110,102,111,114,99,101,70,111,99,117,115,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,59,112,40,100,111,99,117,109,101,110,116,41,46,111,102,102,40,110,110,46,70,79,67,85,83,73,78,41,46,111,110,40,110,110,46,70,79,67,85,83,73,78,44,102,117,110,99,116,105,111,110,40,116,41,123,100,111,99,117,109,101,110,116,33,61,61,116,46,116,97,114,103,101,116,38,38,101,46,95,101,108,101,109,101,110,116,33,61,61,116,46,116,97,114,103,101,116,38,38,48,61,61,61,112,40,101,46,95,101,108,101,109,101,110,116,41,46,104,97,115,40,116,46,116,97,114,103,101,116,41,46,108,101,110,103,116,104,38,38,101,46,95,101,108,101,109,101,110,116,46,102,111,99,117,115,40,41,125,41,125,44,116,46,95,115,101,116,69,115,99,97,112,101,69,118,101,110,116,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,59,116,104,105,115,46,95,105,115,83,104,111,119,110,38,38,116,104,105,115,46,95,99,111,110,102,105,103,46,107,101,121,98,111,97,114,100,63,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,111,110,40,110,110,46,75,69,89,68,79,87,78,95,68,73,83,77,73,83,83,44,102,117,110,99,116,105,111,110,40,116,41,123,50,55,61,61,61,116,46,119,104,105,99,104,38,38,40,116,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,101,46,104,105,100,101,40,41,41,125,41,58,116,104,105,115,46,95,105,115,83,104,111,119,110,124,124,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,111,102,102,40,110,110,46,75,69,89,68,79,87,78,95,68,73,83,77,73,83,83,41,125,44,116,46,95,115,101,116,82,101,115,105,122,101,69,118,101,110,116,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,59,116,104,105,115,46,95,105,115,83,104,111,119,110,63,112,40,119,105,110,100,111,119,41,46,111,110,40,110,110,46,82,69,83,73,90,69,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,46,104,97,110,100,108,101,85,112,100,97,116,101,40,116,41,125,41,58,112,40,119,105,110,100,111,119,41,46,111,102,102,40,110,110,46,82,69,83,73,90,69,41,125,44,116,46,95,104,105,100,101,77,111,100,97,108,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,59,116,104,105,115,46,95,101,108,101,109,101,110,116,46,115,116,121,108,101,46,100,105,115,112,108,97,121,61,34,110,111,110,101,34,44,116,104,105,115,46,95,101,108,101,109,101,110,116,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,97,114,105,97,45,104,105,100,100,101,110,34,44,33,48,41,44,116,104,105,115,46,95,101,108,101,109,101,110,116,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,40,34,97,114,105,97,45,109,111,100,97,108,34,41,44,116,104,105,115,46,95,105,115,84,114,97,110,115,105,116,105,111,110,105,110,103,61,33,49,44,116,104,105,115,46,95,115,104,111,119,66,97,99,107,100,114,111,112,40,102,117,110,99,116,105,111,110,40,41,123,112,40,100,111,99,117,109,101,110,116,46,98,111,100,121,41,46,114,101,109,111,118,101,67,108,97,115,115,40,97,110,41,44,116,46,95,114,101,115,101,116,65,100,106,117,115,116,109,101,110,116,115,40,41,44,116,46,95,114,101,115,101,116,83,99,114,111,108,108,98,97,114,40,41,44,112,40,116,46,95,101,108,101,109,101,110,116,41,46,116,114,105,103,103,101,114,40,110,110,46,72,73,68,68,69,78,41,125,41,125,44,116,46,95,114,101,109,111,118,101,66,97,99,107,100,114,111,112,61,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,98,97,99,107,100,114,111,112,38,38,40,112,40,116,104,105,115,46,95,98,97,99,107,100,114,111,112,41,46,114,101,109,111,118,101,40,41,44,116,104,105,115,46,95,98,97,99,107,100,114,111,112,61,110,117,108,108,41,125,44,116,46,95,115,104,111,119,66,97,99,107,100,114,111,112,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,44,110,61,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,104,97,115,67,108,97,115,115,40,108,110,41,63,108,110,58,34,34,59,105,102,40,116,104,105,115,46,95,105,115,83,104,111,119,110,38,38,116,104,105,115,46,95,99,111,110,102,105,103,46,98,97,99,107,100,114,111,112,41,123,105,102,40,116,104,105,115,46,95,98,97,99,107,100,114,111,112,61,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,44,116,104,105,115,46,95,98,97,99,107,100,114,111,112,46,99,108,97,115,115,78,97,109,101,61,115,110,44,110,38,38,116,104,105,115,46,95,98,97,99,107,100,114,111,112,46,99,108,97,115,115,76,105,115,116,46,97,100,100,40,110,41,44,112,40,116,104,105,115,46,95,98,97,99,107,100,114,111,112,41,46,97,112,112,101,110,100,84,111,40,100,111,99,117,109,101,110,116,46,98,111,100,121,41,44,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,111,110,40,110,110,46,67,76,73,67,75,95,68,73,83,77,73,83,83,44,102,117,110,99,116,105,111,110,40,116,41,123,101,46,95,105,103,110,111,114,101,66,97,99,107,100,114,111,112,67,108,105,99,107,63,101,46,95,105,103,110,111,114,101,66,97,99,107,100,114,111,112,67,108,105,99,107,61,33,49,58,116,46,116,97,114,103,101,116,61,61,61,116,46,99,117,114,114,101,110,116,84,97,114,103,101,116,38,38,40,34,115,116,97,116,105,99,34,61,61,61,101,46,95,99,111,110,102,105,103,46,98,97,99,107,100,114,111,112,63,101,46,95,101,108,101,109,101,110,116,46,102,111,99,117,115,40,41,58,101,46,104,105,100,101,40,41,41,125,41,44,110,38,38,109,46,114,101,102,108,111,119,40,116,104,105,115,46,95,98,97,99,107,100,114,111,112,41,44,112,40,116,104,105,115,46,95,98,97,99,107,100,114,111,112,41,46,97,100,100,67,108,97,115,115,40,99,110,41,44,33,116,41,114,101,116,117,114,110,59,105,102,40,33,110,41,114,101,116,117,114,110,32,118,111,105,100,32,116,40,41,59,118,97,114,32,105,61,109,46,103,101,116,84,114,97,110,115,105,116,105,111,110,68,117,114,97,116,105,111,110,70,114,111,109,69,108,101,109,101,110,116,40,116,104,105,115,46,95,98,97,99,107,100,114,111,112,41,59,112,40,116,104,105,115,46,95,98,97,99,107,100,114,111,112,41,46,111,110,101,40,109,46,84,82,65,78,83,73,84,73,79,78,95,69,78,68,44,116,41,46,101,109,117,108,97,116,101,84,114,97,110,115,105,116,105,111,110,69,110,100,40,105,41,125,101,108,115,101,32,105,102,40,33,116,104,105,115,46,95,105,115,83,104,111,119,110,38,38,116,104,105,115,46,95,98,97,99,107,100,114,111,112,41,123,112,40,116,104,105,115,46,95,98,97,99,107,100,114,111,112,41,46,114,101,109,111,118,101,67,108,97,115,115,40,99,110,41,59,118,97,114,32,111,61,102,117,110,99,116,105,111,110,40,41,123,101,46,95,114,101,109,111,118,101,66,97,99,107,100,114,111,112,40,41,44,116,38,38,116,40,41,125,59,105,102,40,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,104,97,115,67,108,97,115,115,40,108,110,41,41,123,118,97,114,32,114,61,109,46,103,101,116,84,114,97,110,115,105,116,105,111,110,68,117,114,97,116,105,111,110,70,114,111,109,69,108,101,109,101,110,116,40,116,104,105,115,46,95,98,97,99,107,100,114,111,112,41,59,112,40,116,104,105,115,46,95,98,97,99,107,100,114,111,112,41,46,111,110,101,40,109,46,84,82,65,78,83,73,84,73,79,78,95,69,78,68,44,111,41,46,101,109,117,108,97,116,101,84,114,97,110,115,105,116,105,111,110,69,110,100,40,114,41,125,101,108,115,101,32,111,40,41,125,101,108,115,101,32,116,38,38,116,40,41,125,44,116,46,95,97,100,106,117,115,116,68,105,97,108,111,103,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,95,101,108,101,109,101,110,116,46,115,99,114,111,108,108,72,101,105,103,104,116,62,100,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,46,99,108,105,101,110,116,72,101,105,103,104,116,59,33,116,104,105,115,46,95,105,115,66,111,100,121,79,118,101,114,102,108,111,119,105,110,103,38,38,116,38,38,40,116,104,105,115,46,95,101,108,101,109,101,110,116,46,115,116,121,108,101,46,112,97,100,100,105,110,103,76,101,102,116,61,116,104,105,115,46,95,115,99,114,111,108,108,98,97,114,87,105,100,116,104,43,34,112,120,34,41,44,116,104,105,115,46,95,105,115,66,111,100,121,79,118,101,114,102,108,111,119,105,110,103,38,38,33,116,38,38,40,116,104,105,115,46,95,101,108,101,109,101,110,116,46,115,116,121,108,101,46,112,97,100,100,105,110,103,82,105,103,104,116,61,116,104,105,115,46,95,115,99,114,111,108,108,98,97,114,87,105,100,116,104,43,34,112,120,34,41,125,44,116,46,95,114,101,115,101,116,65,100,106,117,115,116,109,101,110,116,115,61,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,101,108,101,109,101,110,116,46,115,116,121,108,101,46,112,97,100,100,105,110,103,76,101,102,116,61,34,34,44,116,104,105,115,46,95,101,108,101,109,101,110,116,46,115,116,121,108,101,46,112,97,100,100,105,110,103,82,105,103,104,116,61,34,34,125,44,116,46,95,99,104,101,99,107,83,99,114,111,108,108,98,97,114,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,100,111,99,117,109,101,110,116,46,98,111,100,121,46,103,101,116,66,111,117,110,100,105,110,103,67,108,105,101,110,116,82,101,99,116,40,41,59,116,104,105,115,46,95,105,115,66,111,100,121,79,118,101,114,102,108,111,119,105,110,103,61,116,46,108,101,102,116,43,116,46,114,105,103,104,116,60,119,105,110,100,111,119,46,105,110,110,101,114,87,105,100,116,104,44,116,104,105,115,46,95,115,99,114,111,108,108,98,97,114,87,105,100,116,104,61,116,104,105,115,46,95,103,101,116,83,99,114,111,108,108,98,97,114,87,105,100,116,104,40,41,125,44,116,46,95,115,101,116,83,99,114,111,108,108,98,97,114,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,111,61,116,104,105,115,59,105,102,40,116,104,105,115,46,95,105,115,66,111,100,121,79,118,101,114,102,108,111,119,105,110,103,41,123,118,97,114,32,116,61,91,93,46,115,108,105,99,101,46,99,97,108,108,40,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,112,110,41,41,44,101,61,91,93,46,115,108,105,99,101,46,99,97,108,108,40,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,109,110,41,41,59,112,40,116,41,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,101,46,115,116,121,108,101,46,112,97,100,100,105,110,103,82,105,103,104,116,44,105,61,112,40,101,41,46,99,115,115,40,34,112,97,100,100,105,110,103,45,114,105,103,104,116,34,41,59,112,40,101,41,46,100,97,116,97,40,34,112,97,100,100,105,110,103,45,114,105,103,104,116,34,44,110,41,46,99,115,115,40,34,112,97,100,100,105,110,103,45,114,105,103,104,116,34,44,112,97,114,115,101,70,108,111,97,116,40,105,41,43,111,46,95,115,99,114,111,108,108,98,97,114,87,105,100,116,104,43,34,112,120,34,41,125,41,44,112,40,101,41,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,101,46,115,116,121,108,101,46,109,97,114,103,105,110,82,105,103,104,116,44,105,61,112,40,101,41,46,99,115,115,40,34,109,97,114,103,105,110,45,114,105,103,104,116,34,41,59,112,40,101,41,46,100,97,116,97,40,34,109,97,114,103,105,110,45,114,105,103,104,116,34,44,110,41,46,99,115,115,40,34,109,97,114,103,105,110,45,114,105,103,104,116,34,44,112,97,114,115,101,70,108,111,97,116,40,105,41,45,111,46,95,115,99,114,111,108,108,98,97,114,87,105,100,116,104,43,34,112,120,34,41,125,41,59,118,97,114,32,110,61,100,111,99,117,109,101,110,116,46,98,111,100,121,46,115,116,121,108,101,46,112,97,100,100,105,110,103,82,105,103,104,116,44,105,61,112,40,100,111,99,117,109,101,110,116,46,98,111,100,121,41,46,99,115,115,40,34,112,97,100,100,105,110,103,45,114,105,103,104,116,34,41,59,112,40,100,111,99,117,109,101,110,116,46,98,111,100,121,41,46,100,97,116,97,40,34,112,97,100,100,105,110,103,45,114,105,103,104,116,34,44,110,41,46,99,115,115,40,34,112,97,100,100,105,110,103,45,114,105,103,104,116,34,44,112,97,114,115,101,70,108,111,97,116,40,105,41,43,116,104,105,115,46,95,115,99,114,111,108,108,98,97,114,87,105,100,116,104,43,34,112,120,34,41,125,112,40,100,111,99,117,109,101,110,116,46,98,111,100,121,41,46,97,100,100,67,108,97,115,115,40,97,110,41,125,44,116,46,95,114,101,115,101,116,83,99,114,111,108,108,98,97,114,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,91,93,46,115,108,105,99,101,46,99,97,108,108,40,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,112,110,41,41,59,112,40,116,41,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,112,40,101,41,46,100,97,116,97,40,34,112,97,100,100,105,110,103,45,114,105,103,104,116,34,41,59,112,40,101,41,46,114,101,109,111,118,101,68,97,116,97,40,34,112,97,100,100,105,110,103,45,114,105,103,104,116,34,41,44,101,46,115,116,121,108,101,46,112,97,100,100,105,110,103,82,105,103,104,116,61,110,124,124,34,34,125,41,59,118,97,114,32,101,61,91,93,46,115,108,105,99,101,46,99,97,108,108,40,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,34,34,43,109,110,41,41,59,112,40,101,41,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,112,40,101,41,46,100,97,116,97,40,34,109,97,114,103,105,110,45,114,105,103,104,116,34,41,59,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,110,38,38,112,40,101,41,46,99,115,115,40,34,109,97,114,103,105,110,45,114,105,103,104,116,34,44,110,41,46,114,101,109,111,118,101,68,97,116,97,40,34,109,97,114,103,105,110,45,114,105,103,104,116,34,41,125,41,59,118,97,114,32,110,61,112,40,100,111,99,117,109,101,110,116,46,98,111,100,121,41,46,100,97,116,97,40,34,112,97,100,100,105,110,103,45,114,105,103,104,116,34,41,59,112,40,100,111,99,117,109,101,110,116,46,98,111,100,121,41,46,114,101,109,111,118,101,68,97,116,97,40,34,112,97,100,100,105,110,103,45,114,105,103,104,116,34,41,44,100,111,99,117,109,101,110,116,46,98,111,100,121,46,115,116,121,108,101,46,112,97,100,100,105,110,103,82,105,103,104,116,61,110,124,124,34,34,125,44,116,46,95,103,101,116,83,99,114,111,108,108,98,97,114,87,105,100,116,104,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,116,46,99,108,97,115,115,78,97,109,101,61,114,110,44,100,111,99,117,109,101,110,116,46,98,111,100,121,46,97,112,112,101,110,100,67,104,105,108,100,40,116,41,59,118,97,114,32,101,61,116,46,103,101,116,66,111,117,110,100,105,110,103,67,108,105,101,110,116,82,101,99,116,40,41,46,119,105,100,116,104,45,116,46,99,108,105,101,110,116,87,105,100,116,104,59,114,101,116,117,114,110,32,100,111,99,117,109,101,110,116,46,98,111,100,121,46,114,101,109,111,118,101,67,104,105,108,100,40,116,41,44,101,125,44,111,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,61,102,117,110,99,116,105,111,110,40,110,44,105,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,112,40,116,104,105,115,41,46,100,97,116,97,40,36,101,41,44,101,61,108,40,123,125,44,116,110,44,112,40,116,104,105,115,41,46,100,97,116,97,40,41,44,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,110,38,38,110,63,110,58,123,125,41,59,105,102,40,116,124,124,40,116,61,110,101,119,32,111,40,116,104,105,115,44,101,41,44,112,40,116,104,105,115,41,46,100,97,116,97,40,36,101,44,116,41,41,44,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,110,41,123,105,102,40,34,117,110,100,101,102,105,110,101,100,34,61,61,116,121,112,101,111,102,32,116,91,110,93,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,39,78,111,32,109,101,116,104,111,100,32,110,97,109,101,100,32,34,39,43,110,43,39,34,39,41,59,116,91,110,93,40,105,41,125,101,108,115,101,32,101,46,115,104,111,119,38,38,116,46,115,104,111,119,40,105,41,125,41,125,44,115,40,111,44,110,117,108,108,44,91,123,107,101,121,58,34,86,69,82,83,73,79,78,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,34,52,46,51,46,49,34,125,125,44,123,107,101,121,58,34,68,101,102,97,117,108,116,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,110,125,125,93,41,44,111,125,40,41,59,112,40,100,111,99,117,109,101,110,116,41,46,111,110,40,110,110,46,67,76,73,67,75,95,68,65,84,65,95,65,80,73,44,102,110,44,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,44,110,61,116,104,105,115,44,105,61,109,46,103,101,116,83,101,108,101,99,116,111,114,70,114,111,109,69,108,101,109,101,110,116,40,116,104,105,115,41,59,105,38,38,40,101,61,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,105,41,41,59,118,97,114,32,111,61,112,40,101,41,46,100,97,116,97,40,36,101,41,63,34,116,111,103,103,108,101,34,58,108,40,123,125,44,112,40,101,41,46,100,97,116,97,40,41,44,112,40,116,104,105,115,41,46,100,97,116,97,40,41,41,59,34,65,34,33,61,61,116,104,105,115,46,116,97,103,78,97,109,101,38,38,34,65,82,69,65,34,33,61,61,116,104,105,115,46,116,97,103,78,97,109,101,124,124,116,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,59,118,97,114,32,114,61,112,40,101,41,46,111,110,101,40,110,110,46,83,72,79,87,44,102,117,110,99,116,105,111,110,40,116,41,123,116,46,105,115,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,40,41,124,124,114,46,111,110,101,40,110,110,46,72,73,68,68,69,78,44,102,117,110,99,116,105,111,110,40,41,123,112,40,110,41,46,105,115,40,34,58,118,105,115,105,98,108,101,34,41,38,38,110,46,102,111,99,117,115,40,41,125,41,125,41,59,103,110,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,46,99,97,108,108,40,112,40,101,41,44,111,44,116,104,105,115,41,125,41,44,112,46,102,110,91,71,101,93,61,103,110,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,44,112,46,102,110,91,71,101,93,46,67,111,110,115,116,114,117,99,116,111,114,61,103,110,44,112,46,102,110,91,71,101,93,46,110,111,67,111,110,102,108,105,99,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,112,46,102,110,91,71,101,93,61,90,101,44,103,110,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,125,59,118,97,114,32,95,110,61,91,34,98,97,99,107,103,114,111,117,110,100,34,44,34,99,105,116,101,34,44,34,104,114,101,102,34,44,34,105,116,101,109,116,121,112,101,34,44,34,108,111,110,103,100,101,115,99,34,44,34,112,111,115,116,101,114,34,44,34,115,114,99,34,44,34,120,108,105,110,107,58,104,114,101,102,34,93,44,118,110,61,123,34,42,34,58,91,34,99,108,97,115,115,34,44,34,100,105,114,34,44,34,105,100,34,44,34,108,97,110,103,34,44,34,114,111,108,101,34,44,47,94,97,114,105,97,45,91,92,119,45,93,42,36,47,105,93,44,97,58,91,34,116,97,114,103,101,116,34,44,34,104,114,101,102,34,44,34,116,105,116,108,101,34,44,34,114,101,108,34,93,44,97,114,101,97,58,91,93,44,98,58,91,93,44,98,114,58,91,93,44,99,111,108,58,91,93,44,99,111,100,101,58,91,93,44,100,105,118,58,91,93,44,101,109,58,91,93,44,104,114,58,91,93,44,104,49,58,91,93,44,104,50,58,91,93,44,104,51,58,91,93,44,104,52,58,91,93,44,104,53,58,91,93,44,104,54,58,91,93,44,105,58,91,93,44,105,109,103,58,91,34,115,114,99,34,44,34,97,108,116,34,44,34,116,105,116,108,101,34,44,34,119,105,100,116,104,34,44,34,104,101,105,103,104,116,34,93,44,108,105,58,91,93,44,111,108,58,91,93,44,112,58,91,93,44,112,114,101,58,91,93,44,115,58,91,93,44,115,109,97,108,108,58,91,93,44,115,112,97,110,58,91,93,44,115,117,98,58,91,93,44,115,117,112,58,91,93,44,115,116,114,111,110,103,58,91,93,44,117,58,91,93,44,117,108,58,91,93,125,44,121,110,61,47,94,40,63,58,40,63,58,104,116,116,112,115,63,124,109,97,105,108,116,111,124,102,116,112,124,116,101,108,124,102,105,108,101,41,58,124,91,94,38,58,47,63,35,93,42,40,63,58,91,47,63,35,93,124,36,41,41,47,103,105,44,69,110,61,47,94,100,97,116,97,58,40,63,58,105,109,97,103,101,92,47,40,63,58,98,109,112,124,103,105,102,124,106,112,101,103,124,106,112,103,124,112,110,103,124,116,105,102,102,124,119,101,98,112,41,124,118,105,100,101,111,92,47,40,63,58,109,112,101,103,124,109,112,52,124,111,103,103,124,119,101,98,109,41,124,97,117,100,105,111,92,47,40,63,58,109,112,51,124,111,103,97,124,111,103,103,124,111,112,117,115,41,41,59,98,97,115,101,54,52,44,91,97,45,122,48,45,57,43,47,93,43,61,42,36,47,105,59,102,117,110,99,116,105,111,110,32,98,110,40,116,44,115,44,101,41,123,105,102,40,48,61,61,61,116,46,108,101,110,103,116,104,41,114,101,116,117,114,110,32,116,59,105,102,40,101,38,38,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,101,41,114,101,116,117,114,110,32,101,40,116,41,59,102,111,114,40,118,97,114,32,110,61,40,110,101,119,32,119,105,110,100,111,119,46,68,79,77,80,97,114,115,101,114,41,46,112,97,114,115,101,70,114,111,109,83,116,114,105,110,103,40,116,44,34,116,101,120,116,47,104,116,109,108,34,41,44,97,61,79,98,106,101,99,116,46,107,101,121,115,40,115,41,44,108,61,91,93,46,115,108,105,99,101,46,99,97,108,108,40,110,46,98,111,100,121,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,34,42,34,41,41,44,105,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,108,91,116,93,44,105,61,110,46,110,111,100,101,78,97,109,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,59,105,102,40,45,49,61,61,61,97,46,105,110,100,101,120,79,102,40,110,46,110,111,100,101,78,97,109,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,41,41,114,101,116,117,114,110,32,110,46,112,97,114,101,110,116,78,111,100,101,46,114,101,109,111,118,101,67,104,105,108,100,40,110,41,44,34,99,111,110,116,105,110,117,101,34,59,118,97,114,32,111,61,91,93,46,115,108,105,99,101,46,99,97,108,108,40,110,46,97,116,116,114,105,98,117,116,101,115,41,44,114,61,91,93,46,99,111,110,99,97,116,40,115,91,34,42,34,93,124,124,91,93,44,115,91,105,93,124,124,91,93,41,59,111,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,116,41,123,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,116,46,110,111,100,101,78,97,109,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,59,105,102,40,45,49,33,61,61,101,46,105,110,100,101,120,79,102,40,110,41,41,114,101,116,117,114,110,45,49,61,61,61,95,110,46,105,110,100,101,120,79,102,40,110,41,124,124,66,111,111,108,101,97,110,40,116,46,110,111,100,101,86,97,108,117,101,46,109,97,116,99,104,40,121,110,41,124,124,116,46,110,111,100,101,86,97,108,117,101,46,109,97,116,99,104,40,69,110,41,41,59,102,111,114,40,118,97,114,32,105,61,101,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,32,105,110,115,116,97,110,99,101,111,102,32,82,101,103,69,120,112,125,41,44,111,61,48,44,114,61,105,46,108,101,110,103,116,104,59,111,60,114,59,111,43,43,41,105,102,40,110,46,109,97,116,99,104,40,105,91,111,93,41,41,114,101,116,117,114,110,33,48,59,114,101,116,117,114,110,33,49,125,41,40,116,44,114,41,124,124,110,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,40,116,46,110,111,100,101,78,97,109,101,41,125,41,125,44,111,61,48,44,114,61,108,46,108,101,110,103,116,104,59,111,60,114,59,111,43,43,41,105,40,111,41,59,114,101,116,117,114,110,32,110,46,98,111,100,121,46,105,110,110,101,114,72,84,77,76,125,118,97,114,32,119,110,61,34,116,111,111,108,116,105,112,34,44,67,110,61,34,98,115,46,116,111,111,108,116,105,112,34,44,84,110,61,34,46,34,43,67,110,44,83,110,61,112,46,102,110,91,119,110,93,44,68,110,61,34,98,115,45,116,111,111,108,116,105,112,34,44,73,110,61,110,101,119,32,82,101,103,69,120,112,40,34,40,94,124,92,92,115,41,34,43,68,110,43,34,92,92,83,43,34,44,34,103,34,41,44,65,110,61,91,34,115,97,110,105,116,105,122,101,34,44,34,119,104,105,116,101,76,105,115,116,34,44,34,115,97,110,105,116,105,122,101,70,110,34,93,44,79,110,61,123,97,110,105,109,97,116,105,111,110,58,34,98,111,111,108,101,97,110,34,44,116,101,109,112,108,97,116,101,58,34,115,116,114,105,110,103,34,44,116,105,116,108,101,58,34,40,115,116,114,105,110,103,124,101,108,101,109,101,110,116,124,102,117,110,99,116,105,111,110,41,34,44,116,114,105,103,103,101,114,58,34,115,116,114,105,110,103,34,44,100,101,108,97,121,58,34,40,110,117,109,98,101,114,124,111,98,106,101,99,116,41,34,44,104,116,109,108,58,34,98,111,111,108,101,97,110,34,44,115,101,108,101,99,116,111,114,58,34,40,115,116,114,105,110,103,124,98,111,111,108,101,97,110,41,34,44,112,108,97,99,101,109,101,110,116,58,34,40,115,116,114,105,110,103,124,102,117,110,99,116,105,111,110,41,34,44,111,102,102,115,101,116,58,34,40,110,117,109,98,101,114,124,115,116,114,105,110,103,124,102,117,110,99,116,105,111,110,41,34,44,99,111,110,116,97,105,110,101,114,58,34,40,115,116,114,105,110,103,124,101,108,101,109,101,110,116,124,98,111,111,108,101,97,110,41,34,44,102,97,108,108,98,97,99,107,80,108,97,99,101,109,101,110,116,58,34,40,115,116,114,105,110,103,124,97,114,114,97,121,41,34,44,98,111,117,110,100,97,114,121,58,34,40,115,116,114,105,110,103,124,101,108,101,109,101,110,116,41,34,44,115,97,110,105,116,105,122,101,58,34,98,111,111,108,101,97,110,34,44,115,97,110,105,116,105,122,101,70,110,58,34,40,110,117,108,108,124,102,117,110,99,116,105,111,110,41,34,44,119,104,105,116,101,76,105,115,116,58,34,111,98,106,101,99,116,34,125,44,78,110,61,123,65,85,84,79,58,34,97,117,116,111,34,44,84,79,80,58,34,116,111,112,34,44,82,73,71,72,84,58,34,114,105,103,104,116,34,44,66,79,84,84,79,77,58,34,98,111,116,116,111,109,34,44,76,69,70,84,58,34,108,101,102,116,34,125,44,107,110,61,123,97,110,105,109,97,116,105,111,110,58,33,48,44,116,101,109,112,108,97,116,101,58,39,60,100,105,118,32,99,108,97,115,115,61,34,116,111,111,108,116,105,112,34,32,114,111,108,101,61,34,116,111,111,108,116,105,112,34,62,60,100,105,118,32,99,108,97,115,115,61,34,97,114,114,111,119,34,62,60,47,100,105,118,62,60,100,105,118,32,99,108,97,115,115,61,34,116,111,111,108,116,105,112,45,105,110,110,101,114,34,62,60,47,100,105,118,62,60,47,100,105,118,62,39,44,116,114,105,103,103,101,114,58,34,104,111,118,101,114,32,102,111,99,117,115,34,44,116,105,116,108,101,58,34,34,44,100,101,108,97,121,58,48,44,104,116,109,108,58,33,49,44,115,101,108,101,99,116,111,114,58,33,49,44,112,108,97,99,101,109,101,110,116,58,34,116,111,112,34,44,111,102,102,115,101,116,58,48,44,99,111,110,116,97,105,110,101,114,58,33,49,44,102,97,108,108,98,97,99,107,80,108,97,99,101,109,101,110,116,58,34,102,108,105,112,34,44,98,111,117,110,100,97,114,121,58,34,115,99,114,111,108,108,80,97,114,101,110,116,34,44,115,97,110,105,116,105,122,101,58,33,48,44,115,97,110,105,116,105,122,101,70,110,58,110,117,108,108,44,119,104,105,116,101,76,105,115,116,58,118,110,125,44,76,110,61,34,115,104,111,119,34,44,120,110,61,34,111,117,116,34,44,80,110,61,123,72,73,68,69,58,34,104,105,100,101,34,43,84,110,44,72,73,68,68,69,78,58,34,104,105,100,100,101,110,34,43,84,110,44,83,72,79,87,58,34,115,104,111,119,34,43,84,110,44,83,72,79,87,78,58,34,115,104,111,119,110,34,43,84,110,44,73,78,83,69,82,84,69,68,58,34,105,110,115,101,114,116,101,100,34,43,84,110,44,67,76,73,67,75,58,34,99,108,105,99,107,34,43,84,110,44,70,79,67,85,83,73,78,58,34,102,111,99,117,115,105,110,34,43,84,110,44,70,79,67,85,83,79,85,84,58,34,102,111,99,117,115,111,117,116,34,43,84,110,44,77,79,85,83,69,69,78,84,69,82,58,34,109,111,117,115,101,101,110,116,101,114,34,43,84,110,44,77,79,85,83,69,76,69,65,86,69,58,34,109,111,117,115,101,108,101,97,118,101,34,43,84,110,125,44,72,110,61,34,102,97,100,101,34,44,106,110,61,34,115,104,111,119,34,44,82,110,61,34,46,116,111,111,108,116,105,112,45,105,110,110,101,114,34,44,70,110,61,34,46,97,114,114,111,119,34,44,77,110,61,34,104,111,118,101,114,34,44,87,110,61,34,102,111,99,117,115,34,44,85,110,61,34,99,108,105,99,107,34,44,66,110,61,34,109,97,110,117,97,108,34,44,113,110,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,105,40,116,44,101,41,123,105,102,40,34,117,110,100,101,102,105,110,101,100,34,61,61,116,121,112,101,111,102,32,98,101,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,66,111,111,116,115,116,114,97,112,39,115,32,116,111,111,108,116,105,112,115,32,114,101,113,117,105,114,101,32,80,111,112,112,101,114,46,106,115,32,40,104,116,116,112,115,58,47,47,112,111,112,112,101,114,46,106,115,46,111,114,103,47,41,34,41,59,116,104,105,115,46,95,105,115,69,110,97,98,108,101,100,61,33,48,44,116,104,105,115,46,95,116,105,109,101,111,117,116,61,48,44,116,104,105,115,46,95,104,111,118,101,114,83,116,97,116,101,61,34,34,44,116,104,105,115,46,95,97,99,116,105,118,101,84,114,105,103,103,101,114,61,123,125,44,116,104,105,115,46,95,112,111,112,112,101,114,61,110,117,108,108,44,116,104,105,115,46,101,108,101,109,101,110,116,61,116,44,116,104,105,115,46,99,111,110,102,105,103,61,116,104,105,115,46,95,103,101,116,67,111,110,102,105,103,40,101,41,44,116,104,105,115,46,116,105,112,61,110,117,108,108,44,116,104,105,115,46,95,115,101,116,76,105,115,116,101,110,101,114,115,40,41,125,118,97,114,32,116,61,105,46,112,114,111,116,111,116,121,112,101,59,114,101,116,117,114,110,32,116,46,101,110,97,98,108,101,61,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,105,115,69,110,97,98,108,101,100,61,33,48,125,44,116,46,100,105,115,97,98,108,101,61,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,105,115,69,110,97,98,108,101,100,61,33,49,125,44,116,46,116,111,103,103,108,101,69,110,97,98,108,101,100,61,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,105,115,69,110,97,98,108,101,100,61,33,116,104,105,115,46,95,105,115,69,110,97,98,108,101,100,125,44,116,46,116,111,103,103,108,101,61,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,116,104,105,115,46,95,105,115,69,110,97,98,108,101,100,41,105,102,40,116,41,123,118,97,114,32,101,61,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,46,68,65,84,65,95,75,69,89,44,110,61,112,40,116,46,99,117,114,114,101,110,116,84,97,114,103,101,116,41,46,100,97,116,97,40,101,41,59,110,124,124,40,110,61,110,101,119,32,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,40,116,46,99,117,114,114,101,110,116,84,97,114,103,101,116,44,116,104,105,115,46,95,103,101,116,68,101,108,101,103,97,116,101,67,111,110,102,105,103,40,41,41,44,112,40,116,46,99,117,114,114,101,110,116,84,97,114,103,101,116,41,46,100,97,116,97,40,101,44,110,41,41,44,110,46,95,97,99,116,105,118,101,84,114,105,103,103,101,114,46,99,108,105,99,107,61,33,110,46,95,97,99,116,105,118,101,84,114,105,103,103,101,114,46,99,108,105,99,107,44,110,46,95,105,115,87,105,116,104,65,99,116,105,118,101,84,114,105,103,103,101,114,40,41,63,110,46,95,101,110,116,101,114,40,110,117,108,108,44,110,41,58,110,46,95,108,101,97,118,101,40,110,117,108,108,44,110,41,125,101,108,115,101,123,105,102,40,112,40,116,104,105,115,46,103,101,116,84,105,112,69,108,101,109,101,110,116,40,41,41,46,104,97,115,67,108,97,115,115,40,106,110,41,41,114,101,116,117,114,110,32,118,111,105,100,32,116,104,105,115,46,95,108,101,97,118,101,40,110,117,108,108,44,116,104,105,115,41,59,116,104,105,115,46,95,101,110,116,101,114,40,110,117,108,108,44,116,104,105,115,41,125,125,44,116,46,100,105,115,112,111,115,101,61,102,117,110,99,116,105,111,110,40,41,123,99,108,101,97,114,84,105,109,101,111,117,116,40,116,104,105,115,46,95,116,105,109,101,111,117,116,41,44,112,46,114,101,109,111,118,101,68,97,116,97,40,116,104,105,115,46,101,108,101,109,101,110,116,44,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,46,68,65,84,65,95,75,69,89,41,44,112,40,116,104,105,115,46,101,108,101,109,101,110,116,41,46,111,102,102,40,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,46,69,86,69,78,84,95,75,69,89,41,44,112,40,116,104,105,115,46,101,108,101,109,101,110,116,41,46,99,108,111,115,101,115,116,40,34,46,109,111,100,97,108,34,41,46,111,102,102,40,34,104,105,100,101,46,98,115,46,109,111,100,97,108,34,41,44,116,104,105,115,46,116,105,112,38,38,112,40,116,104,105,115,46,116,105,112,41,46,114,101,109,111,118,101,40,41,44,116,104,105,115,46,95,105,115,69,110,97,98,108,101,100,61,110,117,108,108,44,116,104,105,115,46,95,116,105,109,101,111,117,116,61,110,117,108,108,44,116,104,105,115,46,95,104,111,118,101,114,83,116,97,116,101,61,110,117,108,108,44,40,116,104,105,115,46,95,97,99,116,105,118,101,84,114,105,103,103,101,114,61,110,117,108,108,41,33,61,61,116,104,105,115,46,95,112,111,112,112,101,114,38,38,116,104,105,115,46,95,112,111,112,112,101,114,46,100,101,115,116,114,111,121,40,41,44,116,104,105,115,46,95,112,111,112,112,101,114,61,110,117,108,108,44,116,104,105,115,46,101,108,101,109,101,110,116,61,110,117,108,108,44,116,104,105,115,46,99,111,110,102,105,103,61,110,117,108,108,44,116,104,105,115,46,116,105,112,61,110,117,108,108,125,44,116,46,115,104,111,119,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,59,105,102,40,34,110,111,110,101,34,61,61,61,112,40,116,104,105,115,46,101,108,101,109,101,110,116,41,46,99,115,115,40,34,100,105,115,112,108,97,121,34,41,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,80,108,101,97,115,101,32,117,115,101,32,115,104,111,119,32,111,110,32,118,105,115,105,98,108,101,32,101,108,101,109,101,110,116,115,34,41,59,118,97,114,32,116,61,112,46,69,118,101,110,116,40,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,46,69,118,101,110,116,46,83,72,79,87,41,59,105,102,40,116,104,105,115,46,105,115,87,105,116,104,67,111,110,116,101,110,116,40,41,38,38,116,104,105,115,46,95,105,115,69,110,97,98,108,101,100,41,123,112,40,116,104,105,115,46,101,108,101,109,101,110,116,41,46,116,114,105,103,103,101,114,40,116,41,59,118,97,114,32,110,61,109,46,102,105,110,100,83,104,97,100,111,119,82,111,111,116,40,116,104,105,115,46,101,108,101,109,101,110,116,41,44,105,61,112,46,99,111,110,116,97,105,110,115,40,110,117,108,108,33,61,61,110,63,110,58,116,104,105,115,46,101,108,101,109,101,110,116,46,111,119,110,101,114,68,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,44,116,104,105,115,46,101,108,101,109,101,110,116,41,59,105,102,40,116,46,105,115,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,40,41,124,124,33,105,41,114,101,116,117,114,110,59,118,97,114,32,111,61,116,104,105,115,46,103,101,116,84,105,112,69,108,101,109,101,110,116,40,41,44,114,61,109,46,103,101,116,85,73,68,40,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,46,78,65,77,69,41,59,111,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,105,100,34,44,114,41,44,116,104,105,115,46,101,108,101,109,101,110,116,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,97,114,105,97,45,100,101,115,99,114,105,98,101,100,98,121,34,44,114,41,44,116,104,105,115,46,115,101,116,67,111,110,116,101,110,116,40,41,44,116,104,105,115,46,99,111,110,102,105,103,46,97,110,105,109,97,116,105,111,110,38,38,112,40,111,41,46,97,100,100,67,108,97,115,115,40,72,110,41,59,118,97,114,32,115,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,104,105,115,46,99,111,110,102,105,103,46,112,108,97,99,101,109,101,110,116,63,116,104,105,115,46,99,111,110,102,105,103,46,112,108,97,99,101,109,101,110,116,46,99,97,108,108,40,116,104,105,115,44,111,44,116,104,105,115,46,101,108,101,109,101,110,116,41,58,116,104,105,115,46,99,111,110,102,105,103,46,112,108,97,99,101,109,101,110,116,44,97,61,116,104,105,115,46,95,103,101,116,65,116,116,97,99,104,109,101,110,116,40,115,41,59,116,104,105,115,46,97,100,100,65,116,116,97,99,104,109,101,110,116,67,108,97,115,115,40,97,41,59,118,97,114,32,108,61,116,104,105,115,46,95,103,101,116,67,111,110,116,97,105,110,101,114,40,41,59,112,40,111,41,46,100,97,116,97,40,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,46,68,65,84,65,95,75,69,89,44,116,104,105,115,41,44,112,46,99,111,110,116,97,105,110,115,40,116,104,105,115,46,101,108,101,109,101,110,116,46,111,119,110,101,114,68,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,44,116,104,105,115,46,116,105,112,41,124,124,112,40,111,41,46,97,112,112,101,110,100,84,111,40,108,41,44,112,40,116,104,105,115,46,101,108,101,109,101,110,116,41,46,116,114,105,103,103,101,114,40,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,46,69,118,101,110,116,46,73,78,83,69,82,84,69,68,41,44,116,104,105,115,46,95,112,111,112,112,101,114,61,110,101,119,32,98,101,40,116,104,105,115,46,101,108,101,109,101,110,116,44,111,44,123,112,108,97,99,101,109,101,110,116,58,97,44,109,111,100,105,102,105,101,114,115,58,123,111,102,102,115,101,116,58,116,104,105,115,46,95,103,101,116,79,102,102,115,101,116,40,41,44,102,108,105,112,58,123,98,101,104,97,118,105,111,114,58,116,104,105,115,46,99,111,110,102,105,103,46,102,97,108,108,98,97,99,107,80,108,97,99,101,109,101,110,116,125,44,97,114,114,111,119,58,123,101,108,101,109,101,110,116,58,70,110,125,44,112,114,101,118,101,110,116,79,118,101,114,102,108,111,119,58,123,98,111,117,110,100,97,114,105,101,115,69,108,101,109,101,110,116,58,116,104,105,115,46,99,111,110,102,105,103,46,98,111,117,110,100,97,114,121,125,125,44,111,110,67,114,101,97,116,101,58,102,117,110,99,116,105,111,110,40,116,41,123,116,46,111,114,105,103,105,110,97,108,80,108,97,99,101,109,101,110,116,33,61,61,116,46,112,108,97,99,101,109,101,110,116,38,38,101,46,95,104,97,110,100,108,101,80,111,112,112,101,114,80,108,97,99,101,109,101,110,116,67,104,97,110,103,101,40,116,41,125,44,111,110,85,112,100,97,116,101,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,46,95,104,97,110,100,108,101,80,111,112,112,101,114,80,108,97,99,101,109,101,110,116,67,104,97,110,103,101,40,116,41,125,125,41,44,112,40,111,41,46,97,100,100,67,108,97,115,115,40,106,110,41,44,34,111,110,116,111,117,99,104,115,116,97,114,116,34,105,110,32,100,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,38,38,112,40,100,111,99,117,109,101,110,116,46,98,111,100,121,41,46,99,104,105,108,100,114,101,110,40,41,46,111,110,40,34,109,111,117,115,101,111,118,101,114,34,44,110,117,108,108,44,112,46,110,111,111,112,41,59,118,97,114,32,99,61,102,117,110,99,116,105,111,110,40,41,123,101,46,99,111,110,102,105,103,46,97,110,105,109,97,116,105,111,110,38,38,101,46,95,102,105,120,84,114,97,110,115,105,116,105,111,110,40,41,59,118,97,114,32,116,61,101,46,95,104,111,118,101,114,83,116,97,116,101,59,101,46,95,104,111,118,101,114,83,116,97,116,101,61,110,117,108,108,44,112,40,101,46,101,108,101,109,101,110,116,41,46,116,114,105,103,103,101,114,40,101,46,99,111,110,115,116,114,117,99,116,111,114,46,69,118,101,110,116,46,83,72,79,87,78,41,44,116,61,61,61,120,110,38,38,101,46,95,108,101,97,118,101,40,110,117,108,108,44,101,41,125,59,105,102,40,112,40,116,104,105,115,46,116,105,112,41,46,104,97,115,67,108,97,115,115,40,72,110,41,41,123,118,97,114,32,104,61,109,46,103,101,116,84,114,97,110,115,105,116,105,111,110,68,117,114,97,116,105,111,110,70,114,111,109,69,108,101,109,101,110,116,40,116,104,105,115,46,116,105,112,41,59,112,40,116,104,105,115,46,116,105,112,41,46,111,110,101,40,109,46,84,82,65,78,83,73,84,73,79,78,95,69,78,68,44,99,41,46,101,109,117,108,97,116,101,84,114,97,110,115,105,116,105,111,110,69,110,100,40,104,41,125,101,108,115,101,32,99,40,41,125,125,44,116,46,104,105,100,101,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,44,110,61,116,104,105,115,46,103,101,116,84,105,112,69,108,101,109,101,110,116,40,41,44,105,61,112,46,69,118,101,110,116,40,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,46,69,118,101,110,116,46,72,73,68,69,41,44,111,61,102,117,110,99,116,105,111,110,40,41,123,101,46,95,104,111,118,101,114,83,116,97,116,101,33,61,61,76,110,38,38,110,46,112,97,114,101,110,116,78,111,100,101,38,38,110,46,112,97,114,101,110,116,78,111,100,101,46,114,101,109,111,118,101,67,104,105,108,100,40,110,41,44,101,46,95,99,108,101,97,110,84,105,112,67,108,97,115,115,40,41,44,101,46,101,108,101,109,101,110,116,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,40,34,97,114,105,97,45,100,101,115,99,114,105,98,101,100,98,121,34,41,44,112,40,101,46,101,108,101,109,101,110,116,41,46,116,114,105,103,103,101,114,40,101,46,99,111,110,115,116,114,117,99,116,111,114,46,69,118,101,110,116,46,72,73,68,68,69,78,41,44,110,117,108,108,33,61,61,101,46,95,112,111,112,112,101,114,38,38,101,46,95,112,111,112,112,101,114,46,100,101,115,116,114,111,121,40,41,44,116,38,38,116,40,41,125,59,105,102,40,112,40,116,104,105,115,46,101,108,101,109,101,110,116,41,46,116,114,105,103,103,101,114,40,105,41,44,33,105,46,105,115,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,40,41,41,123,105,102,40,112,40,110,41,46,114,101,109,111,118,101,67,108,97,115,115,40,106,110,41,44,34,111,110,116,111,117,99,104,115,116,97,114,116,34,105,110,32,100,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,38,38,112,40,100,111,99,117,109,101,110,116,46,98,111,100,121,41,46,99,104,105,108,100,114,101,110,40,41,46,111,102,102,40,34,109,111,117,115,101,111,118,101,114,34,44,110,117,108,108,44,112,46,110,111,111,112,41,44,116,104,105,115,46,95,97,99,116,105,118,101,84,114,105,103,103,101,114,91,85,110,93,61,33,49,44,116,104,105,115,46,95,97,99,116,105,118,101,84,114,105,103,103,101,114,91,87,110,93,61,33,49,44,116,104,105,115,46,95,97,99,116,105,118,101,84,114,105,103,103,101,114,91,77,110,93,61,33,49,44,112,40,116,104,105,115,46,116,105,112,41,46,104,97,115,67,108,97,115,115,40,72,110,41,41,123,118,97,114,32,114,61,109,46,103,101,116,84,114,97,110,115,105,116,105,111,110,68,117,114,97,116,105,111,110,70,114,111,109,69,108,101,109,101,110,116,40,110,41,59,112,40,110,41,46,111,110,101,40,109,46,84,82,65,78,83,73,84,73,79,78,95,69,78,68,44,111,41,46,101,109,117,108,97,116,101,84,114,97,110,115,105,116,105,111,110,69,110,100,40,114,41,125,101,108,115,101,32,111,40,41,59,116,104,105,115,46,95,104,111,118,101,114,83,116,97,116,101,61,34,34,125,125,44,116,46,117,112,100,97,116,101,61,102,117,110,99,116,105,111,110,40,41,123,110,117,108,108,33,61,61,116,104,105,115,46,95,112,111,112,112,101,114,38,38,116,104,105,115,46,95,112,111,112,112,101,114,46,115,99,104,101,100,117,108,101,85,112,100,97,116,101,40,41,125,44,116,46,105,115,87,105,116,104,67,111,110,116,101,110,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,66,111,111,108,101,97,110,40,116,104,105,115,46,103,101,116,84,105,116,108,101,40,41,41,125,44,116,46,97,100,100,65,116,116,97,99,104,109,101,110,116,67,108,97,115,115,61,102,117,110,99,116,105,111,110,40,116,41,123,112,40,116,104,105,115,46,103,101,116,84,105,112,69,108,101,109,101,110,116,40,41,41,46,97,100,100,67,108,97,115,115,40,68,110,43,34,45,34,43,116,41,125,44,116,46,103,101,116,84,105,112,69,108,101,109,101,110,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,116,105,112,61,116,104,105,115,46,116,105,112,124,124,112,40,116,104,105,115,46,99,111,110,102,105,103,46,116,101,109,112,108,97,116,101,41,91,48,93,44,116,104,105,115,46,116,105,112,125,44,116,46,115,101,116,67,111,110,116,101,110,116,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,103,101,116,84,105,112,69,108,101,109,101,110,116,40,41,59,116,104,105,115,46,115,101,116,69,108,101,109,101,110,116,67,111,110,116,101,110,116,40,112,40,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,82,110,41,41,44,116,104,105,115,46,103,101,116,84,105,116,108,101,40,41,41,44,112,40,116,41,46,114,101,109,111,118,101,67,108,97,115,115,40,72,110,43,34,32,34,43,106,110,41,125,44,116,46,115,101,116,69,108,101,109,101,110,116,67,111,110,116,101,110,116,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,34,111,98,106,101,99,116,34,33,61,116,121,112,101,111,102,32,101,124,124,33,101,46,110,111,100,101,84,121,112,101,38,38,33,101,46,106,113,117,101,114,121,63,116,104,105,115,46,99,111,110,102,105,103,46,104,116,109,108,63,40,116,104,105,115,46,99,111,110,102,105,103,46,115,97,110,105,116,105,122,101,38,38,40,101,61,98,110,40,101,44,116,104,105,115,46,99,111,110,102,105,103,46,119,104,105,116,101,76,105,115,116,44,116,104,105,115,46,99,111,110,102,105,103,46,115,97,110,105,116,105,122,101,70,110,41,41,44,116,46,104,116,109,108,40,101,41,41,58,116,46,116,101,120,116,40,101,41,58,116,104,105,115,46,99,111,110,102,105,103,46,104,116,109,108,63,112,40,101,41,46,112,97,114,101,110,116,40,41,46,105,115,40,116,41,124,124,116,46,101,109,112,116,121,40,41,46,97,112,112,101,110,100,40,101,41,58,116,46,116,101,120,116,40,112,40,101,41,46,116,101,120,116,40,41,41,125,44,116,46,103,101,116,84,105,116,108,101,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,101,108,101,109,101,110,116,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,100,97,116,97,45,111,114,105,103,105,110,97,108,45,116,105,116,108,101,34,41,59,114,101,116,117,114,110,32,116,124,124,40,116,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,104,105,115,46,99,111,110,102,105,103,46,116,105,116,108,101,63,116,104,105,115,46,99,111,110,102,105,103,46,116,105,116,108,101,46,99,97,108,108,40,116,104,105,115,46,101,108,101,109,101,110,116,41,58,116,104,105,115,46,99,111,110,102,105,103,46,116,105,116,108,101,41,44,116,125,44,116,46,95,103,101,116,79,102,102,115,101,116,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,44,116,61,123,125,59,114,101,116,117,114,110,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,104,105,115,46,99,111,110,102,105,103,46,111,102,102,115,101,116,63,116,46,102,110,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,111,102,102,115,101,116,115,61,108,40,123,125,44,116,46,111,102,102,115,101,116,115,44,101,46,99,111,110,102,105,103,46,111,102,102,115,101,116,40,116,46,111,102,102,115,101,116,115,44,101,46,101,108,101,109,101,110,116,41,124,124,123,125,41,44,116,125,58,116,46,111,102,102,115,101,116,61,116,104,105,115,46,99,111,110,102,105,103,46,111,102,102,115,101,116,44,116,125,44,116,46,95,103,101,116,67,111,110,116,97,105,110,101,114,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,33,49,61,61,61,116,104,105,115,46,99,111,110,102,105,103,46,99,111,110,116,97,105,110,101,114,63,100,111,99,117,109,101,110,116,46,98,111,100,121,58,109,46,105,115,69,108,101,109,101,110,116,40,116,104,105,115,46,99,111,110,102,105,103,46,99,111,110,116,97,105,110,101,114,41,63,112,40,116,104,105,115,46,99,111,110,102,105,103,46,99,111,110,116,97,105,110,101,114,41,58,112,40,100,111,99,117,109,101,110,116,41,46,102,105,110,100,40,116,104,105,115,46,99,111,110,102,105,103,46,99,111,110,116,97,105,110,101,114,41,125,44,116,46,95,103,101,116,65,116,116,97,99,104,109,101,110,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,78,110,91,116,46,116,111,85,112,112,101,114,67,97,115,101,40,41,93,125,44,116,46,95,115,101,116,76,105,115,116,101,110,101,114,115,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,105,61,116,104,105,115,59,116,104,105,115,46,99,111,110,102,105,103,46,116,114,105,103,103,101,114,46,115,112,108,105,116,40,34,32,34,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,34,99,108,105,99,107,34,61,61,61,116,41,112,40,105,46,101,108,101,109,101,110,116,41,46,111,110,40,105,46,99,111,110,115,116,114,117,99,116,111,114,46,69,118,101,110,116,46,67,76,73,67,75,44,105,46,99,111,110,102,105,103,46,115,101,108,101,99,116,111,114,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,105,46,116,111,103,103,108,101,40,116,41,125,41,59,101,108,115,101,32,105,102,40,116,33,61,61,66,110,41,123,118,97,114,32,101,61,116,61,61,61,77,110,63,105,46,99,111,110,115,116,114,117,99,116,111,114,46,69,118,101,110,116,46,77,79,85,83,69,69,78,84,69,82,58,105,46,99,111,110,115,116,114,117,99,116,111,114,46,69,118,101,110,116,46,70,79,67,85,83,73,78,44,110,61,116,61,61,61,77,110,63,105,46,99,111,110,115,116,114,117,99,116,111,114,46,69,118,101,110,116,46,77,79,85,83,69,76,69,65,86,69,58,105,46,99,111,110,115,116,114,117,99,116,111,114,46,69,118,101,110,116,46,70,79,67,85,83,79,85,84,59,112,40,105,46,101,108,101,109,101,110,116,41,46,111,110,40,101,44,105,46,99,111,110,102,105,103,46,115,101,108,101,99,116,111,114,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,105,46,95,101,110,116,101,114,40,116,41,125,41,46,111,110,40,110,44,105,46,99,111,110,102,105,103,46,115,101,108,101,99,116,111,114,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,105,46,95,108,101,97,118,101,40,116,41,125,41,125,125,41,44,112,40,116,104,105,115,46,101,108,101,109,101,110,116,41,46,99,108,111,115,101,115,116,40,34,46,109,111,100,97,108,34,41,46,111,110,40,34,104,105,100,101,46,98,115,46,109,111,100,97,108,34,44,102,117,110,99,116,105,111,110,40,41,123,105,46,101,108,101,109,101,110,116,38,38,105,46,104,105,100,101,40,41,125,41,44,116,104,105,115,46,99,111,110,102,105,103,46,115,101,108,101,99,116,111,114,63,116,104,105,115,46,99,111,110,102,105,103,61,108,40,123,125,44,116,104,105,115,46,99,111,110,102,105,103,44,123,116,114,105,103,103,101,114,58,34,109,97,110,117,97,108,34,44,115,101,108,101,99,116,111,114,58,34,34,125,41,58,116,104,105,115,46,95,102,105,120,84,105,116,108,101,40,41,125,44,116,46,95,102,105,120,84,105,116,108,101,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,121,112,101,111,102,32,116,104,105,115,46,101,108,101,109,101,110,116,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,100,97,116,97,45,111,114,105,103,105,110,97,108,45,116,105,116,108,101,34,41,59,40,116,104,105,115,46,101,108,101,109,101,110,116,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,116,105,116,108,101,34,41,124,124,34,115,116,114,105,110,103,34,33,61,61,116,41,38,38,40,116,104,105,115,46,101,108,101,109,101,110,116,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,100,97,116,97,45,111,114,105,103,105,110,97,108,45,116,105,116,108,101,34,44,116,104,105,115,46,101,108,101,109,101,110,116,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,116,105,116,108,101,34,41,124,124,34,34,41,44,116,104,105,115,46,101,108,101,109,101,110,116,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,116,105,116,108,101,34,44,34,34,41,41,125,44,116,46,95,101,110,116,101,114,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,46,68,65,84,65,95,75,69,89,59,40,101,61,101,124,124,112,40,116,46,99,117,114,114,101,110,116,84,97,114,103,101,116,41,46,100,97,116,97,40,110,41,41,124,124,40,101,61,110,101,119,32,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,40,116,46,99,117,114,114,101,110,116,84,97,114,103,101,116,44,116,104,105,115,46,95,103,101,116,68,101,108,101,103,97,116,101,67,111,110,102,105,103,40,41,41,44,112,40,116,46,99,117,114,114,101,110,116,84,97,114,103,101,116,41,46,100,97,116,97,40,110,44,101,41,41,44,116,38,38,40,101,46,95,97,99,116,105,118,101,84,114,105,103,103,101,114,91,34,102,111,99,117,115,105,110,34,61,61,61,116,46,116,121,112,101,63,87,110,58,77,110,93,61,33,48,41,44,112,40,101,46,103,101,116,84,105,112,69,108,101,109,101,110,116,40,41,41,46,104,97,115,67,108,97,115,115,40,106,110,41,124,124,101,46,95,104,111,118,101,114,83,116,97,116,101,61,61,61,76,110,63,101,46,95,104,111,118,101,114,83,116,97,116,101,61,76,110,58,40,99,108,101,97,114,84,105,109,101,111,117,116,40,101,46,95,116,105,109,101,111,117,116,41,44,101,46,95,104,111,118,101,114,83,116,97,116,101,61,76,110,44,101,46,99,111,110,102,105,103,46,100,101,108,97,121,38,38,101,46,99,111,110,102,105,103,46,100,101,108,97,121,46,115,104,111,119,63,101,46,95,116,105,109,101,111,117,116,61,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,40,41,123,101,46,95,104,111,118,101,114,83,116,97,116,101,61,61,61,76,110,38,38,101,46,115,104,111,119,40,41,125,44,101,46,99,111,110,102,105,103,46,100,101,108,97,121,46,115,104,111,119,41,58,101,46,115,104,111,119,40,41,41,125,44,116,46,95,108,101,97,118,101,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,46,68,65,84,65,95,75,69,89,59,40,101,61,101,124,124,112,40,116,46,99,117,114,114,101,110,116,84,97,114,103,101,116,41,46,100,97,116,97,40,110,41,41,124,124,40,101,61,110,101,119,32,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,40,116,46,99,117,114,114,101,110,116,84,97,114,103,101,116,44,116,104,105,115,46,95,103,101,116,68,101,108,101,103,97,116,101,67,111,110,102,105,103,40,41,41,44,112,40,116,46,99,117,114,114,101,110,116,84,97,114,103,101,116,41,46,100,97,116,97,40,110,44,101,41,41,44,116,38,38,40,101,46,95,97,99,116,105,118,101,84,114,105,103,103,101,114,91,34,102,111,99,117,115,111,117,116,34,61,61,61,116,46,116,121,112,101,63,87,110,58,77,110,93,61,33,49,41,44,101,46,95,105,115,87,105,116,104,65,99,116,105,118,101,84,114,105,103,103,101,114,40,41,124,124,40,99,108,101,97,114,84,105,109,101,111,117,116,40,101,46,95,116,105,109,101,111,117,116,41,44,101,46,95,104,111,118,101,114,83,116,97,116,101,61,120,110,44,101,46,99,111,110,102,105,103,46,100,101,108,97,121,38,38,101,46,99,111,110,102,105,103,46,100,101,108,97,121,46,104,105,100,101,63,101,46,95,116,105,109,101,111,117,116,61,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,40,41,123,101,46,95,104,111,118,101,114,83,116,97,116,101,61,61,61,120,110,38,38,101,46,104,105,100,101,40,41,125,44,101,46,99,111,110,102,105,103,46,100,101,108,97,121,46,104,105,100,101,41,58,101,46,104,105,100,101,40,41,41,125,44,116,46,95,105,115,87,105,116,104,65,99,116,105,118,101,84,114,105,103,103,101,114,61,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,118,97,114,32,116,32,105,110,32,116,104,105,115,46,95,97,99,116,105,118,101,84,114,105,103,103,101,114,41,105,102,40,116,104,105,115,46,95,97,99,116,105,118,101,84,114,105,103,103,101,114,91,116,93,41,114,101,116,117,114,110,33,48,59,114,101,116,117,114,110,33,49,125,44,116,46,95,103,101,116,67,111,110,102,105,103,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,112,40,116,104,105,115,46,101,108,101,109,101,110,116,41,46,100,97,116,97,40,41,59,114,101,116,117,114,110,32,79,98,106,101,99,116,46,107,101,121,115,40,101,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,116,41,123,45,49,33,61,61,65,110,46,105,110,100,101,120,79,102,40,116,41,38,38,100,101,108,101,116,101,32,101,91,116,93,125,41,44,34,110,117,109,98,101,114,34,61,61,116,121,112,101,111,102,40,116,61,108,40,123,125,44,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,46,68,101,102,97,117,108,116,44,101,44,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,116,38,38,116,63,116,58,123,125,41,41,46,100,101,108,97,121,38,38,40,116,46,100,101,108,97,121,61,123,115,104,111,119,58,116,46,100,101,108,97,121,44,104,105,100,101,58,116,46,100,101,108,97,121,125,41,44,34,110,117,109,98,101,114,34,61,61,116,121,112,101,111,102,32,116,46,116,105,116,108,101,38,38,40,116,46,116,105,116,108,101,61,116,46,116,105,116,108,101,46,116,111,83,116,114,105,110,103,40,41,41,44,34,110,117,109,98,101,114,34,61,61,116,121,112,101,111,102,32,116,46,99,111,110,116,101,110,116,38,38,40,116,46,99,111,110,116,101,110,116,61,116,46,99,111,110,116,101,110,116,46,116,111,83,116,114,105,110,103,40,41,41,44,109,46,116,121,112,101,67,104,101,99,107,67,111,110,102,105,103,40,119,110,44,116,44,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,46,68,101,102,97,117,108,116,84,121,112,101,41,44,116,46,115,97,110,105,116,105,122,101,38,38,40,116,46,116,101,109,112,108,97,116,101,61,98,110,40,116,46,116,101,109,112,108,97,116,101,44,116,46,119,104,105,116,101,76,105,115,116,44,116,46,115,97,110,105,116,105,122,101,70,110,41,41,44,116,125,44,116,46,95,103,101,116,68,101,108,101,103,97,116,101,67,111,110,102,105,103,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,123,125,59,105,102,40,116,104,105,115,46,99,111,110,102,105,103,41,102,111,114,40,118,97,114,32,101,32,105,110,32,116,104,105,115,46,99,111,110,102,105,103,41,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,46,68,101,102,97,117,108,116,91,101,93,33,61,61,116,104,105,115,46,99,111,110,102,105,103,91,101,93,38,38,40,116,91,101,93,61,116,104,105,115,46,99,111,110,102,105,103,91,101,93,41,59,114,101,116,117,114,110,32,116,125,44,116,46,95,99,108,101,97,110,84,105,112,67,108,97,115,115,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,112,40,116,104,105,115,46,103,101,116,84,105,112,69,108,101,109,101,110,116,40,41,41,44,101,61,116,46,97,116,116,114,40,34,99,108,97,115,115,34,41,46,109,97,116,99,104,40,73,110,41,59,110,117,108,108,33,61,61,101,38,38,101,46,108,101,110,103,116,104,38,38,116,46,114,101,109,111,118,101,67,108,97,115,115,40,101,46,106,111,105,110,40,34,34,41,41,125,44,116,46,95,104,97,110,100,108,101,80,111,112,112,101,114,80,108,97,99,101,109,101,110,116,67,104,97,110,103,101,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,46,105,110,115,116,97,110,99,101,59,116,104,105,115,46,116,105,112,61,101,46,112,111,112,112,101,114,44,116,104,105,115,46,95,99,108,101,97,110,84,105,112,67,108,97,115,115,40,41,44,116,104,105,115,46,97,100,100,65,116,116,97,99,104,109,101,110,116,67,108,97,115,115,40,116,104,105,115,46,95,103,101,116,65,116,116,97,99,104,109,101,110,116,40,116,46,112,108,97,99,101,109,101,110,116,41,41,125,44,116,46,95,102,105,120,84,114,97,110,115,105,116,105,111,110,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,103,101,116,84,105,112,69,108,101,109,101,110,116,40,41,44,101,61,116,104,105,115,46,99,111,110,102,105,103,46,97,110,105,109,97,116,105,111,110,59,110,117,108,108,61,61,61,116,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,120,45,112,108,97,99,101,109,101,110,116,34,41,38,38,40,112,40,116,41,46,114,101,109,111,118,101,67,108,97,115,115,40,72,110,41,44,116,104,105,115,46,99,111,110,102,105,103,46,97,110,105,109,97,116,105,111,110,61,33,49,44,116,104,105,115,46,104,105,100,101,40,41,44,116,104,105,115,46,115,104,111,119,40,41,44,116,104,105,115,46,99,111,110,102,105,103,46,97,110,105,109,97,116,105,111,110,61,101,41,125,44,105,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,112,40,116,104,105,115,41,46,100,97,116,97,40,67,110,41,44,101,61,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,110,38,38,110,59,105,102,40,40,116,124,124,33,47,100,105,115,112,111,115,101,124,104,105,100,101,47,46,116,101,115,116,40,110,41,41,38,38,40,116,124,124,40,116,61,110,101,119,32,105,40,116,104,105,115,44,101,41,44,112,40,116,104,105,115,41,46,100,97,116,97,40,67,110,44,116,41,41,44,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,110,41,41,123,105,102,40,34,117,110,100,101,102,105,110,101,100,34,61,61,116,121,112,101,111,102,32,116,91,110,93,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,39,78,111,32,109,101,116,104,111,100,32,110,97,109,101,100,32,34,39,43,110,43,39,34,39,41,59,116,91,110,93,40,41,125,125,41,125,44,115,40,105,44,110,117,108,108,44,91,123,107,101,121,58,34,86,69,82,83,73,79,78,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,34,52,46,51,46,49,34,125,125,44,123,107,101,121,58,34,68,101,102,97,117,108,116,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,107,110,125,125,44,123,107,101,121,58,34,78,65,77,69,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,119,110,125,125,44,123,107,101,121,58,34,68,65,84,65,95,75,69,89,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,67,110,125,125,44,123,107,101,121,58,34,69,118,101,110,116,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,80,110,125,125,44,123,107,101,121,58,34,69,86,69,78,84,95,75,69,89,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,84,110,125,125,44,123,107,101,121,58,34,68,101,102,97,117,108,116,84,121,112,101,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,79,110,125,125,93,41,44,105,125,40,41,59,112,46,102,110,91,119,110,93,61,113,110,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,44,112,46,102,110,91,119,110,93,46,67,111,110,115,116,114,117,99,116,111,114,61,113,110,44,112,46,102,110,91,119,110,93,46,110,111,67,111,110,102,108,105,99,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,112,46,102,110,91,119,110,93,61,83,110,44,113,110,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,125,59,118,97,114,32,75,110,61,34,112,111,112,111,118,101,114,34,44,81,110,61,34,98,115,46,112,111,112,111,118,101,114,34,44,86,110,61,34,46,34,43,81,110,44,89,110,61,112,46,102,110,91,75,110,93,44,122,110,61,34,98,115,45,112,111,112,111,118,101,114,34,44,88,110,61,110,101,119,32,82,101,103,69,120,112,40,34,40,94,124,92,92,115,41,34,43,122,110,43,34,92,92,83,43,34,44,34,103,34,41,44,71,110,61,108,40,123,125,44,113,110,46,68,101,102,97,117,108,116,44,123,112,108,97,99,101,109,101,110,116,58,34,114,105,103,104,116,34,44,116,114,105,103,103,101,114,58,34,99,108,105,99,107,34,44,99,111,110,116,101,110,116,58,34,34,44,116,101,109,112,108,97,116,101,58,39,60,100,105,118,32,99,108,97,115,115,61,34,112,111,112,111,118,101,114,34,32,114,111,108,101,61,34,116,111,111,108,116,105,112,34,62,60,100,105,118,32,99,108,97,115,115,61,34,97,114,114,111,119,34,62,60,47,100,105,118,62,60,104,51,32,99,108,97,115,115,61,34,112,111,112,111,118,101,114,45,104,101,97,100,101,114,34,62,60,47,104,51,62,60,100,105,118,32,99,108,97,115,115,61,34,112,111,112,111,118,101,114,45,98,111,100,121,34,62,60,47,100,105,118,62,60,47,100,105,118,62,39,125,41,44,36,110,61,108,40,123,125,44,113,110,46,68,101,102,97,117,108,116,84,121,112,101,44,123,99,111,110,116,101,110,116,58,34,40,115,116,114,105,110,103,124,101,108,101,109,101,110,116,124,102,117,110,99,116,105,111,110,41,34,125,41,44,74,110,61,34,102,97,100,101,34,44,90,110,61,34,115,104,111,119,34,44,116,105,61,34,46,112,111,112,111,118,101,114,45,104,101,97,100,101,114,34,44,101,105,61,34,46,112,111,112,111,118,101,114,45,98,111,100,121,34,44,110,105,61,123,72,73,68,69,58,34,104,105,100,101,34,43,86,110,44,72,73,68,68,69,78,58,34,104,105,100,100,101,110,34,43,86,110,44,83,72,79,87,58,34,115,104,111,119,34,43,86,110,44,83,72,79,87,78,58,34,115,104,111,119,110,34,43,86,110,44,73,78,83,69,82,84,69,68,58,34,105,110,115,101,114,116,101,100,34,43,86,110,44,67,76,73,67,75,58,34,99,108,105,99,107,34,43,86,110,44,70,79,67,85,83,73,78,58,34,102,111,99,117,115,105,110,34,43,86,110,44,70,79,67,85,83,79,85,84,58,34,102,111,99,117,115,111,117,116,34,43,86,110,44,77,79,85,83,69,69,78,84,69,82,58,34,109,111,117,115,101,101,110,116,101,114,34,43,86,110,44,77,79,85,83,69,76,69,65,86,69,58,34,109,111,117,115,101,108,101,97,118,101,34,43,86,110,125,44,105,105,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,44,110,59,102,117,110,99,116,105,111,110,32,105,40,41,123,114,101,116,117,114,110,32,116,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,124,124,116,104,105,115,125,110,61,116,44,40,101,61,105,41,46,112,114,111,116,111,116,121,112,101,61,79,98,106,101,99,116,46,99,114,101,97,116,101,40,110,46,112,114,111,116,111,116,121,112,101,41,44,40,101,46,112,114,111,116,111,116,121,112,101,46,99,111,110,115,116,114,117,99,116,111,114,61,101,41,46,95,95,112,114,111,116,111,95,95,61,110,59,118,97,114,32,111,61,105,46,112,114,111,116,111,116,121,112,101,59,114,101,116,117,114,110,32,111,46,105,115,87,105,116,104,67,111,110,116,101,110,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,103,101,116,84,105,116,108,101,40,41,124,124,116,104,105,115,46,95,103,101,116,67,111,110,116,101,110,116,40,41,125,44,111,46,97,100,100,65,116,116,97,99,104,109,101,110,116,67,108,97,115,115,61,102,117,110,99,116,105,111,110,40,116,41,123,112,40,116,104,105,115,46,103,101,116,84,105,112,69,108,101,109,101,110,116,40,41,41,46,97,100,100,67,108,97,115,115,40,122,110,43,34,45,34,43,116,41,125,44,111,46,103,101,116,84,105,112,69,108,101,109,101,110,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,116,105,112,61,116,104,105,115,46,116,105,112,124,124,112,40,116,104,105,115,46,99,111,110,102,105,103,46,116,101,109,112,108,97,116,101,41,91,48,93,44,116,104,105,115,46,116,105,112,125,44,111,46,115,101,116,67,111,110,116,101,110,116,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,112,40,116,104,105,115,46,103,101,116,84,105,112,69,108,101,109,101,110,116,40,41,41,59,116,104,105,115,46,115,101,116,69,108,101,109,101,110,116,67,111,110,116,101,110,116,40,116,46,102,105,110,100,40,116,105,41,44,116,104,105,115,46,103,101,116,84,105,116,108,101,40,41,41,59,118,97,114,32,101,61,116,104,105,115,46,95,103,101,116,67,111,110,116,101,110,116,40,41,59,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,101,38,38,40,101,61,101,46,99,97,108,108,40,116,104,105,115,46,101,108,101,109,101,110,116,41,41,44,116,104,105,115,46,115,101,116,69,108,101,109,101,110,116,67,111,110,116,101,110,116,40,116,46,102,105,110,100,40,101,105,41,44,101,41,44,116,46,114,101,109,111,118,101,67,108,97,115,115,40,74,110,43,34,32,34,43,90,110,41,125,44,111,46,95,103,101,116,67,111,110,116,101,110,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,108,101,109,101,110,116,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,100,97,116,97,45,99,111,110,116,101,110,116,34,41,124,124,116,104,105,115,46,99,111,110,102,105,103,46,99,111,110,116,101,110,116,125,44,111,46,95,99,108,101,97,110,84,105,112,67,108,97,115,115,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,112,40,116,104,105,115,46,103,101,116,84,105,112,69,108,101,109,101,110,116,40,41,41,44,101,61,116,46,97,116,116,114,40,34,99,108,97,115,115,34,41,46,109,97,116,99,104,40,88,110,41,59,110,117,108,108,33,61,61,101,38,38,48,60,101,46,108,101,110,103,116,104,38,38,116,46,114,101,109,111,118,101,67,108,97,115,115,40,101,46,106,111,105,110,40,34,34,41,41,125,44,105,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,112,40,116,104,105,115,41,46,100,97,116,97,40,81,110,41,44,101,61,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,110,63,110,58,110,117,108,108,59,105,102,40,40,116,124,124,33,47,100,105,115,112,111,115,101,124,104,105,100,101,47,46,116,101,115,116,40,110,41,41,38,38,40,116,124,124,40,116,61,110,101,119,32,105,40,116,104,105,115,44,101,41,44,112,40,116,104,105,115,41,46,100,97,116,97,40,81,110,44,116,41,41,44,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,110,41,41,123,105,102,40,34,117,110,100,101,102,105,110,101,100,34,61,61,116,121,112,101,111,102,32,116,91,110,93,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,39,78,111,32,109,101,116,104,111,100,32,110,97,109,101,100,32,34,39,43,110,43,39,34,39,41,59,116,91,110,93,40,41,125,125,41,125,44,115,40,105,44,110,117,108,108,44,91,123,107,101,121,58,34,86,69,82,83,73,79,78,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,34,52,46,51,46,49,34,125,125,44,123,107,101,121,58,34,68,101,102,97,117,108,116,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,71,110,125,125,44,123,107,101,121,58,34,78,65,77,69,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,75,110,125,125,44,123,107,101,121,58,34,68,65,84,65,95,75,69,89,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,81,110,125,125,44,123,107,101,121,58,34,69,118,101,110,116,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,110,105,125,125,44,123,107,101,121,58,34,69,86,69,78,84,95,75,69,89,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,86,110,125,125,44,123,107,101,121,58,34,68,101,102,97,117,108,116,84,121,112,101,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,36,110,125,125,93,41,44,105,125,40,113,110,41,59,112,46,102,110,91,75,110,93,61,105,105,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,44,112,46,102,110,91,75,110,93,46,67,111,110,115,116,114,117,99,116,111,114,61,105,105,44,112,46,102,110,91,75,110,93,46,110,111,67,111,110,102,108,105,99,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,112,46,102,110,91,75,110,93,61,89,110,44,105,105,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,125,59,118,97,114,32,111,105,61,34,115,99,114,111,108,108,115,112,121,34,44,114,105,61,34,98,115,46,115,99,114,111,108,108,115,112,121,34,44,115,105,61,34,46,34,43,114,105,44,97,105,61,112,46,102,110,91,111,105,93,44,108,105,61,123,111,102,102,115,101,116,58,49,48,44,109,101,116,104,111,100,58,34,97,117,116,111,34,44,116,97,114,103,101,116,58,34,34,125,44,99,105,61,123,111,102,102,115,101,116,58,34,110,117,109,98,101,114,34,44,109,101,116,104,111,100,58,34,115,116,114,105,110,103,34,44,116,97,114,103,101,116,58,34,40,115,116,114,105,110,103,124,101,108,101,109,101,110,116,41,34,125,44,104,105,61,123,65,67,84,73,86,65,84,69,58,34,97,99,116,105,118,97,116,101,34,43,115,105,44,83,67,82,79,76,76,58,34,115,99,114,111,108,108,34,43,115,105,44,76,79,65,68,95,68,65,84,65,95,65,80,73,58,34,108,111,97,100,34,43,115,105,43,34,46,100,97,116,97,45,97,112,105,34,125,44,117,105,61,34,100,114,111,112,100,111,119,110,45,105,116,101,109,34,44,102,105,61,34,97,99,116,105,118,101,34,44,100,105,61,39,91,100,97,116,97,45,115,112,121,61,34,115,99,114,111,108,108,34,93,39,44,112,105,61,34,46,110,97,118,44,32,46,108,105,115,116,45,103,114,111,117,112,34,44,109,105,61,34,46,110,97,118,45,108,105,110,107,34,44,103,105,61,34,46,110,97,118,45,105,116,101,109,34,44,95,105,61,34,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,34,44,118,105,61,34,46,100,114,111,112,100,111,119,110,34,44,121,105,61,34,46,100,114,111,112,100,111,119,110,45,105,116,101,109,34,44,69,105,61,34,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,34,44,98,105,61,34,111,102,102,115,101,116,34,44,119,105,61,34,112,111,115,105,116,105,111,110,34,44,67,105,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,110,40,116,44,101,41,123,118,97,114,32,110,61,116,104,105,115,59,116,104,105,115,46,95,101,108,101,109,101,110,116,61,116,44,116,104,105,115,46,95,115,99,114,111,108,108,69,108,101,109,101,110,116,61,34,66,79,68,89,34,61,61,61,116,46,116,97,103,78,97,109,101,63,119,105,110,100,111,119,58,116,44,116,104,105,115,46,95,99,111,110,102,105,103,61,116,104,105,115,46,95,103,101,116,67,111,110,102,105,103,40,101,41,44,116,104,105,115,46,95,115,101,108,101,99,116,111,114,61,116,104,105,115,46,95,99,111,110,102,105,103,46,116,97,114,103,101,116,43,34,32,34,43,109,105,43,34,44,34,43,116,104,105,115,46,95,99,111,110,102,105,103,46,116,97,114,103,101,116,43,34,32,34,43,95,105,43,34,44,34,43,116,104,105,115,46,95,99,111,110,102,105,103,46,116,97,114,103,101,116,43,34,32,34,43,121,105,44,116,104,105,115,46,95,111,102,102,115,101,116,115,61,91,93,44,116,104,105,115,46,95,116,97,114,103,101,116,115,61,91,93,44,116,104,105,115,46,95,97,99,116,105,118,101,84,97,114,103,101,116,61,110,117,108,108,44,116,104,105,115,46,95,115,99,114,111,108,108,72,101,105,103,104,116,61,48,44,112,40,116,104,105,115,46,95,115,99,114,111,108,108,69,108,101,109,101,110,116,41,46,111,110,40,104,105,46,83,67,82,79,76,76,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,46,95,112,114,111,99,101,115,115,40,116,41,125,41,44,116,104,105,115,46,114,101,102,114,101,115,104,40,41,44,116,104,105,115,46,95,112,114,111,99,101,115,115,40,41,125,118,97,114,32,116,61,110,46,112,114,111,116,111,116,121,112,101,59,114,101,116,117,114,110,32,116,46,114,101,102,114,101,115,104,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,44,116,61,116,104,105,115,46,95,115,99,114,111,108,108,69,108,101,109,101,110,116,61,61,61,116,104,105,115,46,95,115,99,114,111,108,108,69,108,101,109,101,110,116,46,119,105,110,100,111,119,63,98,105,58,119,105,44,111,61,34,97,117,116,111,34,61,61,61,116,104,105,115,46,95,99,111,110,102,105,103,46,109,101,116,104,111,100,63,116,58,116,104,105,115,46,95,99,111,110,102,105,103,46,109,101,116,104,111,100,44,114,61,111,61,61,61,119,105,63,116,104,105,115,46,95,103,101,116,83,99,114,111,108,108,84,111,112,40,41,58,48,59,116,104,105,115,46,95,111,102,102,115,101,116,115,61,91,93,44,116,104,105,115,46,95,116,97,114,103,101,116,115,61,91,93,44,116,104,105,115,46,95,115,99,114,111,108,108,72,101,105,103,104,116,61,116,104,105,115,46,95,103,101,116,83,99,114,111,108,108,72,101,105,103,104,116,40,41,44,91,93,46,115,108,105,99,101,46,99,97,108,108,40,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,116,104,105,115,46,95,115,101,108,101,99,116,111,114,41,41,46,109,97,112,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,44,110,61,109,46,103,101,116,83,101,108,101,99,116,111,114,70,114,111,109,69,108,101,109,101,110,116,40,116,41,59,105,102,40,110,38,38,40,101,61,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,110,41,41,44,101,41,123,118,97,114,32,105,61,101,46,103,101,116,66,111,117,110,100,105,110,103,67,108,105,101,110,116,82,101,99,116,40,41,59,105,102,40,105,46,119,105,100,116,104,124,124,105,46,104,101,105,103,104,116,41,114,101,116,117,114,110,91,112,40,101,41,91,111,93,40,41,46,116,111,112,43,114,44,110,93,125,114,101,116,117,114,110,32,110,117,108,108,125,41,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,125,41,46,115,111,114,116,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,116,91,48,93,45,101,91,48,93,125,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,116,41,123,101,46,95,111,102,102,115,101,116,115,46,112,117,115,104,40,116,91,48,93,41,44,101,46,95,116,97,114,103,101,116,115,46,112,117,115,104,40,116,91,49,93,41,125,41,125,44,116,46,100,105,115,112,111,115,101,61,102,117,110,99,116,105,111,110,40,41,123,112,46,114,101,109,111,118,101,68,97,116,97,40,116,104,105,115,46,95,101,108,101,109,101,110,116,44,114,105,41,44,112,40,116,104,105,115,46,95,115,99,114,111,108,108,69,108,101,109,101,110,116,41,46,111,102,102,40,115,105,41,44,116,104,105,115,46,95,101,108,101,109,101,110,116,61,110,117,108,108,44,116,104,105,115,46,95,115,99,114,111,108,108,69,108,101,109,101,110,116,61,110,117,108,108,44,116,104,105,115,46,95,99,111,110,102,105,103,61,110,117,108,108,44,116,104,105,115,46,95,115,101,108,101,99,116,111,114,61,110,117,108,108,44,116,104,105,115,46,95,111,102,102,115,101,116,115,61,110,117,108,108,44,116,104,105,115,46,95,116,97,114,103,101,116,115,61,110,117,108,108,44,116,104,105,115,46,95,97,99,116,105,118,101,84,97,114,103,101,116,61,110,117,108,108,44,116,104,105,115,46,95,115,99,114,111,108,108,72,101,105,103,104,116,61,110,117,108,108,125,44,116,46,95,103,101,116,67,111,110,102,105,103,61,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,34,115,116,114,105,110,103,34,33,61,116,121,112,101,111,102,40,116,61,108,40,123,125,44,108,105,44,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,116,38,38,116,63,116,58,123,125,41,41,46,116,97,114,103,101,116,41,123,118,97,114,32,101,61,112,40,116,46,116,97,114,103,101,116,41,46,97,116,116,114,40,34,105,100,34,41,59,101,124,124,40,101,61,109,46,103,101,116,85,73,68,40,111,105,41,44,112,40,116,46,116,97,114,103,101,116,41,46,97,116,116,114,40,34,105,100,34,44,101,41,41,44,116,46,116,97,114,103,101,116,61,34,35,34,43,101,125,114,101,116,117,114,110,32,109,46,116,121,112,101,67,104,101,99,107,67,111,110,102,105,103,40,111,105,44,116,44,99,105,41,44,116,125,44,116,46,95,103,101,116,83,99,114,111,108,108,84,111,112,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,115,99,114,111,108,108,69,108,101,109,101,110,116,61,61,61,119,105,110,100,111,119,63,116,104,105,115,46,95,115,99,114,111,108,108,69,108,101,109,101,110,116,46,112,97,103,101,89,79,102,102,115,101,116,58,116,104,105,115,46,95,115,99,114,111,108,108,69,108,101,109,101,110,116,46,115,99,114,111,108,108,84,111,112,125,44,116,46,95,103,101,116,83,99,114,111,108,108,72,101,105,103,104,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,115,99,114,111,108,108,69,108,101,109,101,110,116,46,115,99,114,111,108,108,72,101,105,103,104,116,124,124,77,97,116,104,46,109,97,120,40,100,111,99,117,109,101,110,116,46,98,111,100,121,46,115,99,114,111,108,108,72,101,105,103,104,116,44,100,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,46,115,99,114,111,108,108,72,101,105,103,104,116,41,125,44,116,46,95,103,101,116,79,102,102,115,101,116,72,101,105,103,104,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,115,99,114,111,108,108,69,108,101,109,101,110,116,61,61,61,119,105,110,100,111,119,63,119,105,110,100,111,119,46,105,110,110,101,114,72,101,105,103,104,116,58,116,104,105,115,46,95,115,99,114,111,108,108,69,108,101,109,101,110,116,46,103,101,116,66,111,117,110,100,105,110,103,67,108,105,101,110,116,82,101,99,116,40,41,46,104,101,105,103,104,116,125,44,116,46,95,112,114,111,99,101,115,115,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,95,103,101,116,83,99,114,111,108,108,84,111,112,40,41,43,116,104,105,115,46,95,99,111,110,102,105,103,46,111,102,102,115,101,116,44,101,61,116,104,105,115,46,95,103,101,116,83,99,114,111,108,108,72,101,105,103,104,116,40,41,44,110,61,116,104,105,115,46,95,99,111,110,102,105,103,46,111,102,102,115,101,116,43,101,45,116,104,105,115,46,95,103,101,116,79,102,102,115,101,116,72,101,105,103,104,116,40,41,59,105,102,40,116,104,105,115,46,95,115,99,114,111,108,108,72,101,105,103,104,116,33,61,61,101,38,38,116,104,105,115,46,114,101,102,114,101,115,104,40,41,44,110,60,61,116,41,123,118,97,114,32,105,61,116,104,105,115,46,95,116,97,114,103,101,116,115,91,116,104,105,115,46,95,116,97,114,103,101,116,115,46,108,101,110,103,116,104,45,49,93,59,116,104,105,115,46,95,97,99,116,105,118,101,84,97,114,103,101,116,33,61,61,105,38,38,116,104,105,115,46,95,97,99,116,105,118,97,116,101,40,105,41,125,101,108,115,101,123,105,102,40,116,104,105,115,46,95,97,99,116,105,118,101,84,97,114,103,101,116,38,38,116,60,116,104,105,115,46,95,111,102,102,115,101,116,115,91,48,93,38,38,48,60,116,104,105,115,46,95,111,102,102,115,101,116,115,91,48,93,41,114,101,116,117,114,110,32,116,104,105,115,46,95,97,99,116,105,118,101,84,97,114,103,101,116,61,110,117,108,108,44,118,111,105,100,32,116,104,105,115,46,95,99,108,101,97,114,40,41,59,102,111,114,40,118,97,114,32,111,61,116,104,105,115,46,95,111,102,102,115,101,116,115,46,108,101,110,103,116,104,59,111,45,45,59,41,123,116,104,105,115,46,95,97,99,116,105,118,101,84,97,114,103,101,116,33,61,61,116,104,105,115,46,95,116,97,114,103,101,116,115,91,111,93,38,38,116,62,61,116,104,105,115,46,95,111,102,102,115,101,116,115,91,111,93,38,38,40,34,117,110,100,101,102,105,110,101,100,34,61,61,116,121,112,101,111,102,32,116,104,105,115,46,95,111,102,102,115,101,116,115,91,111,43,49,93,124,124,116,60,116,104,105,115,46,95,111,102,102,115,101,116,115,91,111,43,49,93,41,38,38,116,104,105,115,46,95,97,99,116,105,118,97,116,101,40,116,104,105,115,46,95,116,97,114,103,101,116,115,91,111,93,41,125,125,125,44,116,46,95,97,99,116,105,118,97,116,101,61,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,95,97,99,116,105,118,101,84,97,114,103,101,116,61,101,44,116,104,105,115,46,95,99,108,101,97,114,40,41,59,118,97,114,32,116,61,116,104,105,115,46,95,115,101,108,101,99,116,111,114,46,115,112,108,105,116,40,34,44,34,41,46,109,97,112,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,43,39,91,100,97,116,97,45,116,97,114,103,101,116,61,34,39,43,101,43,39,34,93,44,39,43,116,43,39,91,104,114,101,102,61,34,39,43,101,43,39,34,93,39,125,41,44,110,61,112,40,91,93,46,115,108,105,99,101,46,99,97,108,108,40,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,116,46,106,111,105,110,40,34,44,34,41,41,41,41,59,110,46,104,97,115,67,108,97,115,115,40,117,105,41,63,40,110,46,99,108,111,115,101,115,116,40,118,105,41,46,102,105,110,100,40,69,105,41,46,97,100,100,67,108,97,115,115,40,102,105,41,44,110,46,97,100,100,67,108,97,115,115,40,102,105,41,41,58,40,110,46,97,100,100,67,108,97,115,115,40,102,105,41,44,110,46,112,97,114,101,110,116,115,40,112,105,41,46,112,114,101,118,40,109,105,43,34,44,32,34,43,95,105,41,46,97,100,100,67,108,97,115,115,40,102,105,41,44,110,46,112,97,114,101,110,116,115,40,112,105,41,46,112,114,101,118,40,103,105,41,46,99,104,105,108,100,114,101,110,40,109,105,41,46,97,100,100,67,108,97,115,115,40,102,105,41,41,44,112,40,116,104,105,115,46,95,115,99,114,111,108,108,69,108,101,109,101,110,116,41,46,116,114,105,103,103,101,114,40,104,105,46,65,67,84,73,86,65,84,69,44,123,114,101,108,97,116,101,100,84,97,114,103,101,116,58,101,125,41,125,44,116,46,95,99,108,101,97,114,61,102,117,110,99,116,105,111,110,40,41,123,91,93,46,115,108,105,99,101,46,99,97,108,108,40,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,116,104,105,115,46,95,115,101,108,101,99,116,111,114,41,41,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,99,108,97,115,115,76,105,115,116,46,99,111,110,116,97,105,110,115,40,102,105,41,125,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,99,108,97,115,115,76,105,115,116,46,114,101,109,111,118,101,40,102,105,41,125,41,125,44,110,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,112,40,116,104,105,115,41,46,100,97,116,97,40,114,105,41,59,105,102,40,116,124,124,40,116,61,110,101,119,32,110,40,116,104,105,115,44,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,101,38,38,101,41,44,112,40,116,104,105,115,41,46,100,97,116,97,40,114,105,44,116,41,41,44,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,101,41,123,105,102,40,34,117,110,100,101,102,105,110,101,100,34,61,61,116,121,112,101,111,102,32,116,91,101,93,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,39,78,111,32,109,101,116,104,111,100,32,110,97,109,101,100,32,34,39,43,101,43,39,34,39,41,59,116,91,101,93,40,41,125,125,41,125,44,115,40,110,44,110,117,108,108,44,91,123,107,101,121,58,34,86,69,82,83,73,79,78,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,34,52,46,51,46,49,34,125,125,44,123,107,101,121,58,34,68,101,102,97,117,108,116,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,108,105,125,125,93,41,44,110,125,40,41,59,112,40,119,105,110,100,111,119,41,46,111,110,40,104,105,46,76,79,65,68,95,68,65,84,65,95,65,80,73,44,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,118,97,114,32,116,61,91,93,46,115,108,105,99,101,46,99,97,108,108,40,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,100,105,41,41,44,101,61,116,46,108,101,110,103,116,104,59,101,45,45,59,41,123,118,97,114,32,110,61,112,40,116,91,101,93,41,59,67,105,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,46,99,97,108,108,40,110,44,110,46,100,97,116,97,40,41,41,125,125,41,44,112,46,102,110,91,111,105,93,61,67,105,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,44,112,46,102,110,91,111,105,93,46,67,111,110,115,116,114,117,99,116,111,114,61,67,105,44,112,46,102,110,91,111,105,93,46,110,111,67,111,110,102,108,105,99,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,112,46,102,110,91,111,105,93,61,97,105,44,67,105,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,125,59,118,97,114,32,84,105,61,34,98,115,46,116,97,98,34,44,83,105,61,34,46,34,43,84,105,44,68,105,61,112,46,102,110,46,116,97,98,44,73,105,61,123,72,73,68,69,58,34,104,105,100,101,34,43,83,105,44,72,73,68,68,69,78,58,34,104,105,100,100,101,110,34,43,83,105,44,83,72,79,87,58,34,115,104,111,119,34,43,83,105,44,83,72,79,87,78,58,34,115,104,111,119,110,34,43,83,105,44,67,76,73,67,75,95,68,65,84,65,95,65,80,73,58,34,99,108,105,99,107,34,43,83,105,43,34,46,100,97,116,97,45,97,112,105,34,125,44,65,105,61,34,100,114,111,112,100,111,119,110,45,109,101,110,117,34,44,79,105,61,34,97,99,116,105,118,101,34,44,78,105,61,34,100,105,115,97,98,108,101,100,34,44,107,105,61,34,102,97,100,101,34,44,76,105,61,34,115,104,111,119,34,44,120,105,61,34,46,100,114,111,112,100,111,119,110,34,44,80,105,61,34,46,110,97,118,44,32,46,108,105,115,116,45,103,114,111,117,112,34,44,72,105,61,34,46,97,99,116,105,118,101,34,44,106,105,61,34,62,32,108,105,32,62,32,46,97,99,116,105,118,101,34,44,82,105,61,39,91,100,97,116,97,45,116,111,103,103,108,101,61,34,116,97,98,34,93,44,32,91,100,97,116,97,45,116,111,103,103,108,101,61,34,112,105,108,108,34,93,44,32,91,100,97,116,97,45,116,111,103,103,108,101,61,34,108,105,115,116,34,93,39,44,70,105,61,34,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,34,44,77,105,61,34,62,32,46,100,114,111,112,100,111,119,110,45,109,101,110,117,32,46,97,99,116,105,118,101,34,44,87,105,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,105,40,116,41,123,116,104,105,115,46,95,101,108,101,109,101,110,116,61,116,125,118,97,114,32,116,61,105,46,112,114,111,116,111,116,121,112,101,59,114,101,116,117,114,110,32,116,46,115,104,111,119,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,110,61,116,104,105,115,59,105,102,40,33,40,116,104,105,115,46,95,101,108,101,109,101,110,116,46,112,97,114,101,110,116,78,111,100,101,38,38,116,104,105,115,46,95,101,108,101,109,101,110,116,46,112,97,114,101,110,116,78,111,100,101,46,110,111,100,101,84,121,112,101,61,61,61,78,111,100,101,46,69,76,69,77,69,78,84,95,78,79,68,69,38,38,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,104,97,115,67,108,97,115,115,40,79,105,41,124,124,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,104,97,115,67,108,97,115,115,40,78,105,41,41,41,123,118,97,114,32,116,44,105,44,101,61,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,99,108,111,115,101,115,116,40,80,105,41,91,48,93,44,111,61,109,46,103,101,116,83,101,108,101,99,116,111,114,70,114,111,109,69,108,101,109,101,110,116,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,59,105,102,40,101,41,123,118,97,114,32,114,61,34,85,76,34,61,61,61,101,46,110,111,100,101,78,97,109,101,124,124,34,79,76,34,61,61,61,101,46,110,111,100,101,78,97,109,101,63,106,105,58,72,105,59,105,61,40,105,61,112,46,109,97,107,101,65,114,114,97,121,40,112,40,101,41,46,102,105,110,100,40,114,41,41,41,91,105,46,108,101,110,103,116,104,45,49,93,125,118,97,114,32,115,61,112,46,69,118,101,110,116,40,73,105,46,72,73,68,69,44,123,114,101,108,97,116,101,100,84,97,114,103,101,116,58,116,104,105,115,46,95,101,108,101,109,101,110,116,125,41,44,97,61,112,46,69,118,101,110,116,40,73,105,46,83,72,79,87,44,123,114,101,108,97,116,101,100,84,97,114,103,101,116,58,105,125,41,59,105,102,40,105,38,38,112,40,105,41,46,116,114,105,103,103,101,114,40,115,41,44,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,116,114,105,103,103,101,114,40,97,41,44,33,97,46,105,115,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,40,41,38,38,33,115,46,105,115,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,40,41,41,123,111,38,38,40,116,61,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,111,41,41,44,116,104,105,115,46,95,97,99,116,105,118,97,116,101,40,116,104,105,115,46,95,101,108,101,109,101,110,116,44,101,41,59,118,97,114,32,108,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,112,46,69,118,101,110,116,40,73,105,46,72,73,68,68,69,78,44,123,114,101,108,97,116,101,100,84,97,114,103,101,116,58,110,46,95,101,108,101,109,101,110,116,125,41,44,101,61,112,46,69,118,101,110,116,40,73,105,46,83,72,79,87,78,44,123,114,101,108,97,116,101,100,84,97,114,103,101,116,58,105,125,41,59,112,40,105,41,46,116,114,105,103,103,101,114,40,116,41,44,112,40,110,46,95,101,108,101,109,101,110,116,41,46,116,114,105,103,103,101,114,40,101,41,125,59,116,63,116,104,105,115,46,95,97,99,116,105,118,97,116,101,40,116,44,116,46,112,97,114,101,110,116,78,111,100,101,44,108,41,58,108,40,41,125,125,125,44,116,46,100,105,115,112,111,115,101,61,102,117,110,99,116,105,111,110,40,41,123,112,46,114,101,109,111,118,101,68,97,116,97,40,116,104,105,115,46,95,101,108,101,109,101,110,116,44,84,105,41,44,116,104,105,115,46,95,101,108,101,109,101,110,116,61,110,117,108,108,125,44,116,46,95,97,99,116,105,118,97,116,101,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,105,61,116,104,105,115,44,111,61,40,33,101,124,124,34,85,76,34,33,61,61,101,46,110,111,100,101,78,97,109,101,38,38,34,79,76,34,33,61,61,101,46,110,111,100,101,78,97,109,101,63,112,40,101,41,46,99,104,105,108,100,114,101,110,40,72,105,41,58,112,40,101,41,46,102,105,110,100,40,106,105,41,41,91,48,93,44,114,61,110,38,38,111,38,38,112,40,111,41,46,104,97,115,67,108,97,115,115,40,107,105,41,44,115,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,105,46,95,116,114,97,110,115,105,116,105,111,110,67,111,109,112,108,101,116,101,40,116,44,111,44,110,41,125,59,105,102,40,111,38,38,114,41,123,118,97,114,32,97,61,109,46,103,101,116,84,114,97,110,115,105,116,105,111,110,68,117,114,97,116,105,111,110,70,114,111,109,69,108,101,109,101,110,116,40,111,41,59,112,40,111,41,46,114,101,109,111,118,101,67,108,97,115,115,40,76,105,41,46,111,110,101,40,109,46,84,82,65,78,83,73,84,73,79,78,95,69,78,68,44,115,41,46,101,109,117,108,97,116,101,84,114,97,110,115,105,116,105,111,110,69,110,100,40,97,41,125,101,108,115,101,32,115,40,41,125,44,116,46,95,116,114,97,110,115,105,116,105,111,110,67,111,109,112,108,101,116,101,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,105,102,40,101,41,123,112,40,101,41,46,114,101,109,111,118,101,67,108,97,115,115,40,79,105,41,59,118,97,114,32,105,61,112,40,101,46,112,97,114,101,110,116,78,111,100,101,41,46,102,105,110,100,40,77,105,41,91,48,93,59,105,38,38,112,40,105,41,46,114,101,109,111,118,101,67,108,97,115,115,40,79,105,41,44,34,116,97,98,34,61,61,61,101,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,114,111,108,101,34,41,38,38,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,97,114,105,97,45,115,101,108,101,99,116,101,100,34,44,33,49,41,125,105,102,40,112,40,116,41,46,97,100,100,67,108,97,115,115,40,79,105,41,44,34,116,97,98,34,61,61,61,116,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,114,111,108,101,34,41,38,38,116,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,97,114,105,97,45,115,101,108,101,99,116,101,100,34,44,33,48,41,44,109,46,114,101,102,108,111,119,40,116,41,44,116,46,99,108,97,115,115,76,105,115,116,46,99,111,110,116,97,105,110,115,40,107,105,41,38,38,116,46,99,108,97,115,115,76,105,115,116,46,97,100,100,40,76,105,41,44,116,46,112,97,114,101,110,116,78,111,100,101,38,38,112,40,116,46,112,97,114,101,110,116,78,111,100,101,41,46,104,97,115,67,108,97,115,115,40,65,105,41,41,123,118,97,114,32,111,61,112,40,116,41,46,99,108,111,115,101,115,116,40,120,105,41,91,48,93,59,105,102,40,111,41,123,118,97,114,32,114,61,91,93,46,115,108,105,99,101,46,99,97,108,108,40,111,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,70,105,41,41,59,112,40,114,41,46,97,100,100,67,108,97,115,115,40,79,105,41,125,116,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,97,114,105,97,45,101,120,112,97,110,100,101,100,34,44,33,48,41,125,110,38,38,110,40,41,125,44,105,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,112,40,116,104,105,115,41,44,101,61,116,46,100,97,116,97,40,84,105,41,59,105,102,40,101,124,124,40,101,61,110,101,119,32,105,40,116,104,105,115,41,44,116,46,100,97,116,97,40,84,105,44,101,41,41,44,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,110,41,123,105,102,40,34,117,110,100,101,102,105,110,101,100,34,61,61,116,121,112,101,111,102,32,101,91,110,93,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,39,78,111,32,109,101,116,104,111,100,32,110,97,109,101,100,32,34,39,43,110,43,39,34,39,41,59,101,91,110,93,40,41,125,125,41,125,44,115,40,105,44,110,117,108,108,44,91,123,107,101,121,58,34,86,69,82,83,73,79,78,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,34,52,46,51,46,49,34,125,125,93,41,44,105,125,40,41,59,112,40,100,111,99,117,109,101,110,116,41,46,111,110,40,73,105,46,67,76,73,67,75,95,68,65,84,65,95,65,80,73,44,82,105,44,102,117,110,99,116,105,111,110,40,116,41,123,116,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,87,105,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,46,99,97,108,108,40,112,40,116,104,105,115,41,44,34,115,104,111,119,34,41,125,41,44,112,46,102,110,46,116,97,98,61,87,105,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,44,112,46,102,110,46,116,97,98,46,67,111,110,115,116,114,117,99,116,111,114,61,87,105,44,112,46,102,110,46,116,97,98,46,110,111,67,111,110,102,108,105,99,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,112,46,102,110,46,116,97,98,61,68,105,44,87,105,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,125,59,118,97,114,32,85,105,61,34,116,111,97,115,116,34,44,66,105,61,34,98,115,46,116,111,97,115,116,34,44,113,105,61,34,46,34,43,66,105,44,75,105,61,112,46,102,110,91,85,105,93,44,81,105,61,123,67,76,73,67,75,95,68,73,83,77,73,83,83,58,34,99,108,105,99,107,46,100,105,115,109,105,115,115,34,43,113,105,44,72,73,68,69,58,34,104,105,100,101,34,43,113,105,44,72,73,68,68,69,78,58,34,104,105,100,100,101,110,34,43,113,105,44,83,72,79,87,58,34,115,104,111,119,34,43,113,105,44,83,72,79,87,78,58,34,115,104,111,119,110,34,43,113,105,125,44,86,105,61,34,102,97,100,101,34,44,89,105,61,34,104,105,100,101,34,44,122,105,61,34,115,104,111,119,34,44,88,105,61,34,115,104,111,119,105,110,103,34,44,71,105,61,123,97,110,105,109,97,116,105,111,110,58,34,98,111,111,108,101,97,110,34,44,97,117,116,111,104,105,100,101,58,34,98,111,111,108,101,97,110,34,44,100,101,108,97,121,58,34,110,117,109,98,101,114,34,125,44,36,105,61,123,97,110,105,109,97,116,105,111,110,58,33,48,44,97,117,116,111,104,105,100,101,58,33,48,44,100,101,108,97,121,58,53,48,48,125,44,74,105,61,39,91,100,97,116,97,45,100,105,115,109,105,115,115,61,34,116,111,97,115,116,34,93,39,44,90,105,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,105,40,116,44,101,41,123,116,104,105,115,46,95,101,108,101,109,101,110,116,61,116,44,116,104,105,115,46,95,99,111,110,102,105,103,61,116,104,105,115,46,95,103,101,116,67,111,110,102,105,103,40,101,41,44,116,104,105,115,46,95,116,105,109,101,111,117,116,61,110,117,108,108,44,116,104,105,115,46,95,115,101,116,76,105,115,116,101,110,101,114,115,40,41,125,118,97,114,32,116,61,105,46,112,114,111,116,111,116,121,112,101,59,114,101,116,117,114,110,32,116,46,115,104,111,119,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,59,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,116,114,105,103,103,101,114,40,81,105,46,83,72,79,87,41,44,116,104,105,115,46,95,99,111,110,102,105,103,46,97,110,105,109,97,116,105,111,110,38,38,116,104,105,115,46,95,101,108,101,109,101,110,116,46,99,108,97,115,115,76,105,115,116,46,97,100,100,40,86,105,41,59,118,97,114,32,101,61,102,117,110,99,116,105,111,110,40,41,123,116,46,95,101,108,101,109,101,110,116,46,99,108,97,115,115,76,105,115,116,46,114,101,109,111,118,101,40,88,105,41,44,116,46,95,101,108,101,109,101,110,116,46,99,108,97,115,115,76,105,115,116,46,97,100,100,40,122,105,41,44,112,40,116,46,95,101,108,101,109,101,110,116,41,46,116,114,105,103,103,101,114,40,81,105,46,83,72,79,87,78,41,44,116,46,95,99,111,110,102,105,103,46,97,117,116,111,104,105,100,101,38,38,116,46,104,105,100,101,40,41,125,59,105,102,40,116,104,105,115,46,95,101,108,101,109,101,110,116,46,99,108,97,115,115,76,105,115,116,46,114,101,109,111,118,101,40,89,105,41,44,116,104,105,115,46,95,101,108,101,109,101,110,116,46,99,108,97,115,115,76,105,115,116,46,97,100,100,40,88,105,41,44,116,104,105,115,46,95,99,111,110,102,105,103,46,97,110,105,109,97,116,105,111,110,41,123,118,97,114,32,110,61,109,46,103,101,116,84,114,97,110,115,105,116,105,111,110,68,117,114,97,116,105,111,110,70,114,111,109,69,108,101,109,101,110,116,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,59,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,111,110,101,40,109,46,84,82,65,78,83,73,84,73,79,78,95,69,78,68,44,101,41,46,101,109,117,108,97,116,101,84,114,97,110,115,105,116,105,111,110,69,110,100,40,110,41,125,101,108,115,101,32,101,40,41,125,44,116,46,104,105,100,101,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,59,116,104,105,115,46,95,101,108,101,109,101,110,116,46,99,108,97,115,115,76,105,115,116,46,99,111,110,116,97,105,110,115,40,122,105,41,38,38,40,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,116,114,105,103,103,101,114,40,81,105,46,72,73,68,69,41,44,116,63,116,104,105,115,46,95,99,108,111,115,101,40,41,58,116,104,105,115,46,95,116,105,109,101,111,117,116,61,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,40,41,123,101,46,95,99,108,111,115,101,40,41,125,44,116,104,105,115,46,95,99,111,110,102,105,103,46,100,101,108,97,121,41,41,125,44,116,46,100,105,115,112,111,115,101,61,102,117,110,99,116,105,111,110,40,41,123,99,108,101,97,114,84,105,109,101,111,117,116,40,116,104,105,115,46,95,116,105,109,101,111,117,116,41,44,116,104,105,115,46,95,116,105,109,101,111,117,116,61,110,117,108,108,44,116,104,105,115,46,95,101,108,101,109,101,110,116,46,99,108,97,115,115,76,105,115,116,46,99,111,110,116,97,105,110,115,40,122,105,41,38,38,116,104,105,115,46,95,101,108,101,109,101,110,116,46,99,108,97,115,115,76,105,115,116,46,114,101,109,111,118,101,40,122,105,41,44,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,111,102,102,40,81,105,46,67,76,73,67,75,95,68,73,83,77,73,83,83,41,44,112,46,114,101,109,111,118,101,68,97,116,97,40,116,104,105,115,46,95,101,108,101,109,101,110,116,44,66,105,41,44,116,104,105,115,46,95,101,108,101,109,101,110,116,61,110,117,108,108,44,116,104,105,115,46,95,99,111,110,102,105,103,61,110,117,108,108,125,44,116,46,95,103,101,116,67,111,110,102,105,103,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,61,108,40,123,125,44,36,105,44,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,100,97,116,97,40,41,44,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,116,38,38,116,63,116,58,123,125,41,44,109,46,116,121,112,101,67,104,101,99,107,67,111,110,102,105,103,40,85,105,44,116,44,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,46,68,101,102,97,117,108,116,84,121,112,101,41,44,116,125,44,116,46,95,115,101,116,76,105,115,116,101,110,101,114,115,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,59,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,111,110,40,81,105,46,67,76,73,67,75,95,68,73,83,77,73,83,83,44,74,105,44,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,46,104,105,100,101,40,33,48,41,125,41,125,44,116,46,95,99,108,111,115,101,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,44,101,61,102,117,110,99,116,105,111,110,40,41,123,116,46,95,101,108,101,109,101,110,116,46,99,108,97,115,115,76,105,115,116,46,97,100,100,40,89,105,41,44,112,40,116,46,95,101,108,101,109,101,110,116,41,46,116,114,105,103,103,101,114,40,81,105,46,72,73,68,68,69,78,41,125,59,105,102,40,116,104,105,115,46,95,101,108,101,109,101,110,116,46,99,108,97,115,115,76,105,115,116,46,114,101,109,111,118,101,40,122,105,41,44,116,104,105,115,46,95,99,111,110,102,105,103,46,97,110,105,109,97,116,105,111,110,41,123,118,97,114,32,110,61,109,46,103,101,116,84,114,97,110,115,105,116,105,111,110,68,117,114,97,116,105,111,110,70,114,111,109,69,108,101,109,101,110,116,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,59,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,111,110,101,40,109,46,84,82,65,78,83,73,84,73,79,78,95,69,78,68,44,101,41,46,101,109,117,108,97,116,101,84,114,97,110,115,105,116,105,111,110,69,110,100,40,110,41,125,101,108,115,101,32,101,40,41,125,44,105,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,112,40,116,104,105,115,41,44,101,61,116,46,100,97,116,97,40,66,105,41,59,105,102,40,101,124,124,40,101,61,110,101,119,32,105,40,116,104,105,115,44,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,110,38,38,110,41,44,116,46,100,97,116,97,40,66,105,44,101,41,41,44,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,110,41,123,105,102,40,34,117,110,100,101,102,105,110,101,100,34,61,61,116,121,112,101,111,102,32,101,91,110,93,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,39,78,111,32,109,101,116,104,111,100,32,110,97,109,101,100,32,34,39,43,110,43,39,34,39,41,59,101,91,110,93,40,116,104,105,115,41,125,125,41,125,44,115,40,105,44,110,117,108,108,44,91,123,107,101,121,58,34,86,69,82,83,73,79,78,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,34,52,46,51,46,49,34,125,125,44,123,107,101,121,58,34,68,101,102,97,117,108,116,84,121,112,101,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,71,105,125,125,44,123,107,101,121,58,34,68,101,102,97,117,108,116,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,36,105,125,125,93,41,44,105,125,40,41,59,112,46,102,110,91,85,105,93,61,90,105,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,44,112,46,102,110,91,85,105,93,46,67,111,110,115,116,114,117,99,116,111,114,61,90,105,44,112,46,102,110,91,85,105,93,46,110,111,67,111,110,102,108,105,99,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,112,46,102,110,91,85,105,93,61,75,105,44,90,105,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,125,44,102,117,110,99,116,105,111,110,40,41,123,105,102,40,34,117,110,100,101,102,105,110,101,100,34,61,61,116,121,112,101,111,102,32,112,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,66,111,111,116,115,116,114,97,112,39,115,32,74,97,118,97,83,99,114,105,112,116,32,114,101,113,117,105,114,101,115,32,106,81,117,101,114,121,46,32,106,81,117,101,114,121,32,109,117,115,116,32,98,101,32,105,110,99,108,117,100,101,100,32,98,101,102,111,114,101,32,66,111,111,116,115,116,114,97,112,39,115,32,74,97,118,97,83,99,114,105,112,116,46,34,41,59,118,97,114,32,116,61,112,46,102,110,46,106,113,117,101,114,121,46,115,112,108,105,116,40,34,32,34,41,91,48,93,46,115,112,108,105,116,40,34,46,34,41,59,105,102,40,116,91,48,93,60,50,38,38,116,91,49,93,60,57,124,124,49,61,61,61,116,91,48,93,38,38,57,61,61,61,116,91,49,93,38,38,116,91,50,93,60,49,124,124,52,60,61,116,91,48,93,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,66,111,111,116,115,116,114,97,112,39,115,32,74,97,118,97,83,99,114,105,112,116,32,114,101,113,117,105,114,101,115,32,97,116,32,108,101,97,115,116,32,106,81,117,101,114,121,32,118,49,46,57,46,49,32,98,117,116,32,108,101,115,115,32,116,104,97,110,32,118,52,46,48,46,48,34,41,125,40,41,44,116,46,85,116,105,108,61,109,44,116,46,65,108,101,114,116,61,103,44,116,46,66,117,116,116,111,110,61,107,44,116,46,67,97,114,111,117,115,101,108,61,97,116,44,116,46,67,111,108,108,97,112,115,101,61,67,116,44,116,46,68,114,111,112,100,111,119,110,61,88,101,44,116,46,77,111,100,97,108,61,103,110,44,116,46,80,111,112,111,118,101,114,61,105,105,44,116,46,83,99,114,111,108,108,115,112,121,61,67,105,44,116,46,84,97,98,61,87,105,44,116,46,84,111,97,115,116,61,90,105,44,116,46,84,111,111,108,116,105,112,61,113,110,44,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,44,34,95,95,101,115,77,111,100,117,108,101,34,44,123,118,97,108,117,101,58,33,48,125,41,125,41,59,10,10,47,42,42,10,32,42,32,64,108,105,99,101,110,115,101,10,32,42,32,76,111,100,97,115,104,32,108,111,100,97,115,104,46,99,111,109,47,108,105,99,101,110,115,101,32,124,32,85,110,100,101,114,115,99,111,114,101,46,106,115,32,49,46,56,46,51,32,117,110,100,101,114,115,99,111,114,101,106,115,46,111,114,103,47,76,73,67,69,78,83,69,10,32,42,47,10,59,40,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,110,40,110,44,116,44,114,41,123,115,119,105,116,99,104,40,114,46,108,101,110,103,116,104,41,123,99,97,115,101,32,48,58,114,101,116,117,114,110,32,110,46,99,97,108,108,40,116,41,59,99,97,115,101,32,49,58,114,101,116,117,114,110,32,110,46,99,97,108,108,40,116,44,114,91,48,93,41,59,99,97,115,101,32,50,58,114,101,116,117,114,110,32,110,46,99,97,108,108,40,116,44,114,91,48,93,44,114,91,49,93,41,59,99,97,115,101,32,51,58,114,101,116,117,114,110,32,110,46,99,97,108,108,40,116,44,114,91,48,93,44,114,91,49,93,44,114,91,50,93,41,125,114,101,116,117,114,110,32,110,46,97,112,112,108,121,40,116,44,114,41,125,102,117,110,99,116,105,111,110,32,116,40,110,44,116,44,114,44,101,41,123,102,111,114,40,118,97,114,32,117,61,45,49,44,105,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,43,43,117,60,105,59,41,123,118,97,114,32,111,61,110,91,117,93,59,116,40,101,44,111,44,114,40,111,41,44,110,41,125,114,101,116,117,114,110,32,101,125,102,117,110,99,116,105,111,110,32,114,40,110,44,116,41,123,102,111,114,40,118,97,114,32,114,61,45,49,44,101,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,43,43,114,60,101,38,38,102,97,108,115,101,33,61,61,116,40,110,91,114,93,44,114,44,110,41,59,41,59,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,101,40,110,44,116,41,123,102,111,114,40,118,97,114,32,114,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,114,45,45,38,38,102,97,108,115,101,33,61,61,116,40,110,91,114,93,44,114,44,110,41,59,41,59,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,117,40,110,44,116,41,123,102,111,114,40,118,97,114,32,114,61,45,49,44,101,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,43,43,114,60,101,59,41,105,102,40,33,116,40,110,91,114,93,44,114,44,110,41,41,114,101,116,117,114,110,32,102,97,108,115,101,59,10,114,101,116,117,114,110,32,116,114,117,101,125,102,117,110,99,116,105,111,110,32,105,40,110,44,116,41,123,102,111,114,40,118,97,114,32,114,61,45,49,44,101,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,44,117,61,48,44,105,61,91,93,59,43,43,114,60,101,59,41,123,118,97,114,32,111,61,110,91,114,93,59,116,40,111,44,114,44,110,41,38,38,40,105,91,117,43,43,93,61,111,41,125,114,101,116,117,114,110,32,105,125,102,117,110,99,116,105,111,110,32,111,40,110,44,116,41,123,114,101,116,117,114,110,33,40,110,117,108,108,61,61,110,124,124,33,110,46,108,101,110,103,116,104,41,38,38,45,49,60,118,40,110,44,116,44,48,41,125,102,117,110,99,116,105,111,110,32,102,40,110,44,116,44,114,41,123,102,111,114,40,118,97,114,32,101,61,45,49,44,117,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,43,43,101,60,117,59,41,105,102,40,114,40,116,44,110,91,101,93,41,41,114,101,116,117,114,110,32,116,114,117,101,59,114,101,116,117,114,110,32,102,97,108,115,101,125,102,117,110,99,116,105,111,110,32,99,40,110,44,116,41,123,102,111,114,40,118,97,114,32,114,61,45,49,44,101,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,44,117,61,65,114,114,97,121,40,101,41,59,43,43,114,60,101,59,41,117,91,114,93,61,116,40,110,91,114,93,44,114,44,110,41,59,114,101,116,117,114,110,32,117,125,102,117,110,99,116,105,111,110,32,97,40,110,44,116,41,123,102,111,114,40,118,97,114,32,114,61,45,49,44,101,61,116,46,108,101,110,103,116,104,44,117,61,110,46,108,101,110,103,116,104,59,43,43,114,60,101,59,41,110,91,117,43,114,93,61,116,91,114,93,59,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,108,40,110,44,116,44,114,44,101,41,123,118,97,114,32,117,61,45,49,44,105,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,102,111,114,40,101,38,38,105,38,38,40,114,61,110,91,43,43,117,93,41,59,43,43,117,60,105,59,41,114,61,116,40,114,44,110,91,117,93,44,117,44,110,41,59,10,114,101,116,117,114,110,32,114,125,102,117,110,99,116,105,111,110,32,115,40,110,44,116,44,114,44,101,41,123,118,97,114,32,117,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,102,111,114,40,101,38,38,117,38,38,40,114,61,110,91,45,45,117,93,41,59,117,45,45,59,41,114,61,116,40,114,44,110,91,117,93,44,117,44,110,41,59,114,101,116,117,114,110,32,114,125,102,117,110,99,116,105,111,110,32,104,40,110,44,116,41,123,102,111,114,40,118,97,114,32,114,61,45,49,44,101,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,43,43,114,60,101,59,41,105,102,40,116,40,110,91,114,93,44,114,44,110,41,41,114,101,116,117,114,110,32,116,114,117,101,59,114,101,116,117,114,110,32,102,97,108,115,101,125,102,117,110,99,116,105,111,110,32,112,40,110,44,116,44,114,41,123,118,97,114,32,101,59,114,101,116,117,114,110,32,114,40,110,44,102,117,110,99,116,105,111,110,40,110,44,114,44,117,41,123,105,102,40,116,40,110,44,114,44,117,41,41,114,101,116,117,114,110,32,101,61,114,44,102,97,108,115,101,125,41,44,101,125,102,117,110,99,116,105,111,110,32,95,40,110,44,116,44,114,44,101,41,123,118,97,114,32,117,61,110,46,108,101,110,103,116,104,59,102,111,114,40,114,43,61,101,63,49,58,45,49,59,101,63,114,45,45,58,43,43,114,60,117,59,41,105,102,40,116,40,110,91,114,93,44,114,44,110,41,41,114,101,116,117,114,110,32,114,59,114,101,116,117,114,110,45,49,125,102,117,110,99,116,105,111,110,32,118,40,110,44,116,44,114,41,123,105,102,40,116,61,61,61,116,41,110,58,123,45,45,114,59,102,111,114,40,118,97,114,32,101,61,110,46,108,101,110,103,116,104,59,43,43,114,60,101,59,41,105,102,40,110,91,114,93,61,61,61,116,41,123,110,61,114,59,98,114,101,97,107,32,110,125,110,61,45,49,125,101,108,115,101,32,110,61,95,40,110,44,100,44,114,41,59,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,103,40,110,44,116,44,114,44,101,41,123,10,45,45,114,59,102,111,114,40,118,97,114,32,117,61,110,46,108,101,110,103,116,104,59,43,43,114,60,117,59,41,105,102,40,101,40,110,91,114,93,44,116,41,41,114,101,116,117,114,110,32,114,59,114,101,116,117,114,110,45,49,125,102,117,110,99,116,105,111,110,32,100,40,110,41,123,114,101,116,117,114,110,32,110,33,61,61,110,125,102,117,110,99,116,105,111,110,32,121,40,110,44,116,41,123,118,97,114,32,114,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,114,63,109,40,110,44,116,41,47,114,58,70,125,102,117,110,99,116,105,111,110,32,98,40,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,116,63,84,58,116,91,110,93,125,125,102,117,110,99,116,105,111,110,32,120,40,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,110,63,84,58,110,91,116,93,125,125,102,117,110,99,116,105,111,110,32,106,40,110,44,116,44,114,44,101,44,117,41,123,114,101,116,117,114,110,32,117,40,110,44,102,117,110,99,116,105,111,110,40,110,44,117,44,105,41,123,114,61,101,63,40,101,61,102,97,108,115,101,44,110,41,58,116,40,114,44,110,44,117,44,105,41,125,41,44,114,125,102,117,110,99,116,105,111,110,32,119,40,110,44,116,41,123,118,97,114,32,114,61,110,46,108,101,110,103,116,104,59,102,111,114,40,110,46,115,111,114,116,40,116,41,59,114,45,45,59,41,110,91,114,93,61,110,91,114,93,46,99,59,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,109,40,110,44,116,41,123,102,111,114,40,118,97,114,32,114,44,101,61,45,49,44,117,61,110,46,108,101,110,103,116,104,59,43,43,101,60,117,59,41,123,118,97,114,32,105,61,116,40,110,91,101,93,41,59,105,33,61,61,84,38,38,40,114,61,114,61,61,61,84,63,105,58,114,43,105,41,125,114,101,116,117,114,110,32,114,59,10,125,102,117,110,99,116,105,111,110,32,65,40,110,44,116,41,123,102,111,114,40,118,97,114,32,114,61,45,49,44,101,61,65,114,114,97,121,40,110,41,59,43,43,114,60,110,59,41,101,91,114,93,61,116,40,114,41,59,114,101,116,117,114,110,32,101,125,102,117,110,99,116,105,111,110,32,69,40,110,44,116,41,123,114,101,116,117,114,110,32,99,40,116,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,91,116,44,110,91,116,93,93,125,41,125,102,117,110,99,116,105,111,110,32,107,40,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,40,116,41,125,125,102,117,110,99,116,105,111,110,32,83,40,110,44,116,41,123,114,101,116,117,114,110,32,99,40,116,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,91,116,93,125,41,125,102,117,110,99,116,105,111,110,32,79,40,110,44,116,41,123,114,101,116,117,114,110,32,110,46,104,97,115,40,116,41,125,102,117,110,99,116,105,111,110,32,73,40,110,44,116,41,123,102,111,114,40,118,97,114,32,114,61,45,49,44,101,61,110,46,108,101,110,103,116,104,59,43,43,114,60,101,38,38,45,49,60,118,40,116,44,110,91,114,93,44,48,41,59,41,59,114,101,116,117,114,110,32,114,125,102,117,110,99,116,105,111,110,32,82,40,110,44,116,41,123,102,111,114,40,118,97,114,32,114,61,110,46,108,101,110,103,116,104,59,114,45,45,38,38,45,49,60,118,40,116,44,110,91,114,93,44,48,41,59,41,59,114,101,116,117,114,110,32,114,125,102,117,110,99,116,105,111,110,32,122,40,110,41,123,114,101,116,117,114,110,34,92,92,34,43,85,110,91,110,93,125,102,117,110,99,116,105,111,110,32,87,40,110,41,123,118,97,114,32,116,61,45,49,44,114,61,65,114,114,97,121,40,110,46,115,105,122,101,41,59,114,101,116,117,114,110,32,110,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,110,44,101,41,123,114,91,43,43,116,93,61,91,101,44,110,93,59,10,125,41,44,114,125,102,117,110,99,116,105,111,110,32,66,40,110,44,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,114,41,123,114,101,116,117,114,110,32,110,40,116,40,114,41,41,125,125,102,117,110,99,116,105,111,110,32,76,40,110,44,116,41,123,102,111,114,40,118,97,114,32,114,61,45,49,44,101,61,110,46,108,101,110,103,116,104,44,117,61,48,44,105,61,91,93,59,43,43,114,60,101,59,41,123,118,97,114,32,111,61,110,91,114,93,59,111,33,61,61,116,38,38,34,95,95,108,111,100,97,115,104,95,112,108,97,99,101,104,111,108,100,101,114,95,95,34,33,61,61,111,124,124,40,110,91,114,93,61,34,95,95,108,111,100,97,115,104,95,112,108,97,99,101,104,111,108,100,101,114,95,95,34,44,105,91,117,43,43,93,61,114,41,125,114,101,116,117,114,110,32,105,125,102,117,110,99,116,105,111,110,32,85,40,110,41,123,118,97,114,32,116,61,45,49,44,114,61,65,114,114,97,121,40,110,46,115,105,122,101,41,59,114,101,116,117,114,110,32,110,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,110,41,123,114,91,43,43,116,93,61,110,125,41,44,114,125,102,117,110,99,116,105,111,110,32,67,40,110,41,123,118,97,114,32,116,61,45,49,44,114,61,65,114,114,97,121,40,110,46,115,105,122,101,41,59,114,101,116,117,114,110,32,110,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,110,41,123,114,91,43,43,116,93,61,91,110,44,110,93,125,41,44,114,125,102,117,110,99,116,105,111,110,32,68,40,110,41,123,105,102,40,82,110,46,116,101,115,116,40,110,41,41,123,102,111,114,40,118,97,114,32,116,61,79,110,46,108,97,115,116,73,110,100,101,120,61,48,59,79,110,46,116,101,115,116,40,110,41,59,41,43,43,116,59,110,61,116,125,101,108,115,101,32,110,61,81,110,40,110,41,59,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,77,40,110,41,123,114,101,116,117,114,110,32,82,110,46,116,101,115,116,40,110,41,63,110,46,109,97,116,99,104,40,79,110,41,124,124,91,93,58,110,46,115,112,108,105,116,40,34,34,41,59,10,125,118,97,114,32,84,44,36,61,49,47,48,44,70,61,78,97,78,44,78,61,91,91,34,97,114,121,34,44,49,50,56,93,44,91,34,98,105,110,100,34,44,49,93,44,91,34,98,105,110,100,75,101,121,34,44,50,93,44,91,34,99,117,114,114,121,34,44,56,93,44,91,34,99,117,114,114,121,82,105,103,104,116,34,44,49,54,93,44,91,34,102,108,105,112,34,44,53,49,50,93,44,91,34,112,97,114,116,105,97,108,34,44,51,50,93,44,91,34,112,97,114,116,105,97,108,82,105,103,104,116,34,44,54,52,93,44,91,34,114,101,97,114,103,34,44,50,53,54,93,93,44,80,61,47,92,98,95,95,112,92,43,61,39,39,59,47,103,44,90,61,47,92,98,40,95,95,112,92,43,61,41,39,39,92,43,47,103,44,113,61,47,40,95,95,101,92,40,46,42,63,92,41,124,92,98,95,95,116,92,41,41,92,43,39,39,59,47,103,44,86,61,47,38,40,63,58,97,109,112,124,108,116,124,103,116,124,113,117,111,116,124,35,51,57,41,59,47,103,44,75,61,47,91,38,60,62,34,39,93,47,103,44,71,61,82,101,103,69,120,112,40,86,46,115,111,117,114,99,101,41,44,72,61,82,101,103,69,120,112,40,75,46,115,111,117,114,99,101,41,44,74,61,47,60,37,45,40,91,92,115,92,83,93,43,63,41,37,62,47,103,44,89,61,47,60,37,40,91,92,115,92,83,93,43,63,41,37,62,47,103,44,81,61,47,60,37,61,40,91,92,115,92,83,93,43,63,41,37,62,47,103,44,88,61,47,92,46,124,92,91,40,63,58,91,94,91,92,93,93,42,124,40,91,34,39,93,41,40,63,58,40,63,33,92,49,41,91,94,92,92,93,124,92,92,46,41,42,63,92,49,41,92,93,47,44,110,110,61,47,94,92,119,42,36,47,44,116,110,61,47,91,94,46,91,92,93,93,43,124,92,91,40,63,58,40,45,63,92,100,43,40,63,58,92,46,92,100,43,41,63,41,124,40,91,34,39,93,41,40,40,63,58,40,63,33,92,50,41,91,94,92,92,93,124,92,92,46,41,42,63,41,92,50,41,92,93,124,40,63,61,40,63,58,92,46,124,92,91,92,93,41,40,63,58,92,46,124,92,91,92,93,124,36,41,41,47,103,44,114,110,61,47,91,92,92,94,36,46,42,43,63,40,41,91,92,93,123,125,124,93,47,103,44,101,110,61,82,101,103,69,120,112,40,114,110,46,115,111,117,114,99,101,41,44,117,110,61,47,94,92,115,43,124,92,115,43,36,47,103,44,111,110,61,47,94,92,115,43,47,44,102,110,61,47,92,115,43,36,47,44,99,110,61,47,92,123,40,63,58,92,110,92,47,92,42,32,92,91,119,114,97,112,112,101,100,32,119,105,116,104,32,46,43,92,93,32,92,42,92,47,41,63,92,110,63,47,44,97,110,61,47,92,123,92,110,92,47,92,42,32,92,91,119,114,97,112,112,101,100,32,119,105,116,104,32,40,46,43,41,92,93,32,92,42,47,44,108,110,61,47,44,63,32,38,32,47,44,115,110,61,47,91,94,92,120,48,48,45,92,120,50,102,92,120,51,97,45,92,120,52,48,92,120,53,98,45,92,120,54,48,92,120,55,98,45,92,120,55,102,93,43,47,103,44,104,110,61,47,92,92,40,92,92,41,63,47,103,44,112,110,61,47,92,36,92,123,40,91,94,92,92,125,93,42,40,63,58,92,92,46,91,94,92,92,125,93,42,41,42,41,92,125,47,103,44,95,110,61,47,92,119,42,36,47,44,118,110,61,47,94,91,45,43,93,48,120,91,48,45,57,97,45,102,93,43,36,47,105,44,103,110,61,47,94,48,98,91,48,49,93,43,36,47,105,44,100,110,61,47,94,92,91,111,98,106,101,99,116,32,46,43,63,67,111,110,115,116,114,117,99,116,111,114,92,93,36,47,44,121,110,61,47,94,48,111,91,48,45,55,93,43,36,47,105,44,98,110,61,47,94,40,63,58,48,124,91,49,45,57,93,92,100,42,41,36,47,44,120,110,61,47,91,92,120,99,48,45,92,120,100,54,92,120,100,56,45,92,120,102,54,92,120,102,56,45,92,120,102,102,92,117,48,49,48,48,45,92,117,48,49,55,102,93,47,103,44,106,110,61,47,40,36,94,41,47,44,119,110,61,47,91,39,92,110,92,114,92,117,50,48,50,56,92,117,50,48,50,57,92,92,93,47,103,44,109,110,61,34,91,92,92,117,102,101,48,101,92,92,117,102,101,48,102,93,63,40,63,58,91,92,92,117,48,51,48,48,45,92,92,117,48,51,54,102,92,92,117,102,101,50,48,45,92,92,117,102,101,50,102,92,92,117,50,48,100,48,45,92,92,117,50,48,102,102,93,124,92,92,117,100,56,51,99,91,92,92,117,100,102,102,98,45,92,92,117,100,102,102,102,93,41,63,40,63,58,92,92,117,50,48,48,100,40,63,58,91,94,92,92,117,100,56,48,48,45,92,92,117,100,102,102,102,93,124,40,63,58,92,92,117,100,56,51,99,91,92,92,117,100,100,101,54,45,92,92,117,100,100,102,102,93,41,123,50,125,124,91,92,92,117,100,56,48,48,45,92,92,117,100,98,102,102,93,91,92,92,117,100,99,48,48,45,92,92,117,100,102,102,102,93,41,91,92,92,117,102,101,48,101,92,92,117,102,101,48,102,93,63,40,63,58,91,92,92,117,48,51,48,48,45,92,92,117,48,51,54,102,92,92,117,102,101,50,48,45,92,92,117,102,101,50,102,92,92,117,50,48,100,48,45,92,92,117,50,48,102,102,93,124,92,92,117,100,56,51,99,91,92,92,117,100,102,102,98,45,92,92,117,100,102,102,102,93,41,63,41,42,34,44,65,110,61,34,40,63,58,91,92,92,117,50,55,48,48,45,92,92,117,50,55,98,102,93,124,40,63,58,92,92,117,100,56,51,99,91,92,92,117,100,100,101,54,45,92,92,117,100,100,102,102,93,41,123,50,125,124,91,92,92,117,100,56,48,48,45,92,92,117,100,98,102,102,93,91,92,92,117,100,99,48,48,45,92,92,117,100,102,102,102,93,41,34,43,109,110,44,69,110,61,34,40,63,58,91,94,92,92,117,100,56,48,48,45,92,92,117,100,102,102,102,93,91,92,92,117,48,51,48,48,45,92,92,117,48,51,54,102,92,92,117,102,101,50,48,45,92,92,117,102,101,50,102,92,92,117,50,48,100,48,45,92,92,117,50,48,102,102,93,63,124,91,92,92,117,48,51,48,48,45,92,92,117,48,51,54,102,92,92,117,102,101,50,48,45,92,92,117,102,101,50,102,92,92,117,50,48,100,48,45,92,92,117,50,48,102,102,93,124,40,63,58,92,92,117,100,56,51,99,91,92,92,117,100,100,101,54,45,92,92,117,100,100,102,102,93,41,123,50,125,124,91,92,92,117,100,56,48,48,45,92,92,117,100,98,102,102,93,91,92,92,117,100,99,48,48,45,92,92,117,100,102,102,102,93,124,91,92,92,117,100,56,48,48,45,92,92,117,100,102,102,102,93,41,34,44,107,110,61,82,101,103,69,120,112,40,34,91,39,92,117,50,48,49,57,93,34,44,34,103,34,41,44,83,110,61,82,101,103,69,120,112,40,34,91,92,92,117,48,51,48,48,45,92,92,117,48,51,54,102,92,92,117,102,101,50,48,45,92,92,117,102,101,50,102,92,92,117,50,48,100,48,45,92,92,117,50,48,102,102,93,34,44,34,103,34,41,44,79,110,61,82,101,103,69,120,112,40,34,92,92,117,100,56,51,99,91,92,92,117,100,102,102,98,45,92,92,117,100,102,102,102,93,40,63,61,92,92,117,100,56,51,99,91,92,92,117,100,102,102,98,45,92,92,117,100,102,102,102,93,41,124,34,43,69,110,43,109,110,44,34,103,34,41,44,73,110,61,82,101,103,69,120,112,40,91,34,91,65,45,90,92,92,120,99,48,45,92,92,120,100,54,92,92,120,100,56,45,92,92,120,100,101,93,63,91,97,45,122,92,92,120,100,102,45,92,92,120,102,54,92,92,120,102,56,45,92,92,120,102,102,93,43,40,63,58,91,39,92,117,50,48,49,57,93,40,63,58,100,124,108,108,124,109,124,114,101,124,115,124,116,124,118,101,41,41,63,40,63,61,91,92,92,120,97,99,92,92,120,98,49,92,92,120,100,55,92,92,120,102,55,92,92,120,48,48,45,92,92,120,50,102,92,92,120,51,97,45,92,92,120,52,48,92,92,120,53,98,45,92,92,120,54,48,92,92,120,55,98,45,92,92,120,98,102,92,92,117,50,48,48,48,45,92,92,117,50,48,54,102,32,92,92,116,92,92,120,48,98,92,92,102,92,92,120,97,48,92,92,117,102,101,102,102,92,92,110,92,92,114,92,92,117,50,48,50,56,92,92,117,50,48,50,57,92,92,117,49,54,56,48,92,92,117,49,56,48,101,92,92,117,50,48,48,48,92,92,117,50,48,48,49,92,92,117,50,48,48,50,92,92,117,50,48,48,51,92,92,117,50,48,48,52,92,92,117,50,48,48,53,92,92,117,50,48,48,54,92,92,117,50,48,48,55,92,92,117,50,48,48,56,92,92,117,50,48,48,57,92,92,117,50,48,48,97,92,92,117,50,48,50,102,92,92,117,50,48,53,102,92,92,117,51,48,48,48,93,124,91,65,45,90,92,92,120,99,48,45,92,92,120,100,54,92,92,120,100,56,45,92,92,120,100,101,93,124,36,41,124,40,63,58,91,65,45,90,92,92,120,99,48,45,92,92,120,100,54,92,92,120,100,56,45,92,92,120,100,101,93,124,91,94,92,92,117,100,56,48,48,45,92,92,117,100,102,102,102,92,92,120,97,99,92,92,120,98,49,92,92,120,100,55,92,92,120,102,55,92,92,120,48,48,45,92,92,120,50,102,92,92,120,51,97,45,92,92,120,52,48,92,92,120,53,98,45,92,92,120,54,48,92,92,120,55,98,45,92,92,120,98,102,92,92,117,50,48,48,48,45,92,92,117,50,48,54,102,32,92,92,116,92,92,120,48,98,92,92,102,92,92,120,97,48,92,92,117,102,101,102,102,92,92,110,92,92,114,92,92,117,50,48,50,56,92,92,117,50,48,50,57,92,92,117,49,54,56,48,92,92,117,49,56,48,101,92,92,117,50,48,48,48,92,92,117,50,48,48,49,92,92,117,50,48,48,50,92,92,117,50,48,48,51,92,92,117,50,48,48,52,92,92,117,50,48,48,53,92,92,117,50,48,48,54,92,92,117,50,48,48,55,92,92,117,50,48,48,56,92,92,117,50,48,48,57,92,92,117,50,48,48,97,92,92,117,50,48,50,102,92,92,117,50,48,53,102,92,92,117,51,48,48,48,92,92,100,43,92,92,117,50,55,48,48,45,92,92,117,50,55,98,102,97,45,122,92,92,120,100,102,45,92,92,120,102,54,92,92,120,102,56,45,92,92,120,102,102,65,45,90,92,92,120,99,48,45,92,92,120,100,54,92,92,120,100,56,45,92,92,120,100,101,93,41,43,40,63,58,91,39,92,117,50,48,49,57,93,40,63,58,68,124,76,76,124,77,124,82,69,124,83,124,84,124,86,69,41,41,63,40,63,61,91,92,92,120,97,99,92,92,120,98,49,92,92,120,100,55,92,92,120,102,55,92,92,120,48,48,45,92,92,120,50,102,92,92,120,51,97,45,92,92,120,52,48,92,92,120,53,98,45,92,92,120,54,48,92,92,120,55,98,45,92,92,120,98,102,92,92,117,50,48,48,48,45,92,92,117,50,48,54,102,32,92,92,116,92,92,120,48,98,92,92,102,92,92,120,97,48,92,92,117,102,101,102,102,92,92,110,92,92,114,92,92,117,50,48,50,56,92,92,117,50,48,50,57,92,92,117,49,54,56,48,92,92,117,49,56,48,101,92,92,117,50,48,48,48,92,92,117,50,48,48,49,92,92,117,50,48,48,50,92,92,117,50,48,48,51,92,92,117,50,48,48,52,92,92,117,50,48,48,53,92,92,117,50,48,48,54,92,92,117,50,48,48,55,92,92,117,50,48,48,56,92,92,117,50,48,48,57,92,92,117,50,48,48,97,92,92,117,50,48,50,102,92,92,117,50,48,53,102,92,92,117,51,48,48,48,93,124,91,65,45,90,92,92,120,99,48,45,92,92,120,100,54,92,92,120,100,56,45,92,92,120,100,101,93,40,63,58,91,97,45,122,92,92,120,100,102,45,92,92,120,102,54,92,92,120,102,56,45,92,92,120,102,102,93,124,91,94,92,92,117,100,56,48,48,45,92,92,117,100,102,102,102,92,92,120,97,99,92,92,120,98,49,92,92,120,100,55,92,92,120,102,55,92,92,120,48,48,45,92,92,120,50,102,92,92,120,51,97,45,92,92,120,52,48,92,92,120,53,98,45,92,92,120,54,48,92,92,120,55,98,45,92,92,120,98,102,92,92,117,50,48,48,48,45,92,92,117,50,48,54,102,32,92,92,116,92,92,120,48,98,92,92,102,92,92,120,97,48,92,92,117,102,101,102,102,92,92,110,92,92,114,92,92,117,50,48,50,56,92,92,117,50,48,50,57,92,92,117,49,54,56,48,92,92,117,49,56,48,101,92,92,117,50,48,48,48,92,92,117,50,48,48,49,92,92,117,50,48,48,50,92,92,117,50,48,48,51,92,92,117,50,48,48,52,92,92,117,50,48,48,53,92,92,117,50,48,48,54,92,92,117,50,48,48,55,92,92,117,50,48,48,56,92,92,117,50,48,48,57,92,92,117,50,48,48,97,92,92,117,50,48,50,102,92,92,117,50,48,53,102,92,92,117,51,48,48,48,92,92,100,43,92,92,117,50,55,48,48,45,92,92,117,50,55,98,102,97,45,122,92,92,120,100,102,45,92,92,120,102,54,92,92,120,102,56,45,92,92,120,102,102,65,45,90,92,92,120,99,48,45,92,92,120,100,54,92,92,120,100,56,45,92,92,120,100,101,93,41,124,36,41,124,91,65,45,90,92,92,120,99,48,45,92,92,120,100,54,92,92,120,100,56,45,92,92,120,100,101,93,63,40,63,58,91,97,45,122,92,92,120,100,102,45,92,92,120,102,54,92,92,120,102,56,45,92,92,120,102,102,93,124,91,94,92,92,117,100,56,48,48,45,92,92,117,100,102,102,102,92,92,120,97,99,92,92,120,98,49,92,92,120,100,55,92,92,120,102,55,92,92,120,48,48,45,92,92,120,50,102,92,92,120,51,97,45,92,92,120,52,48,92,92,120,53,98,45,92,92,120,54,48,92,92,120,55,98,45,92,92,120,98,102,92,92,117,50,48,48,48,45,92,92,117,50,48,54,102,32,92,92,116,92,92,120,48,98,92,92,102,92,92,120,97,48,92,92,117,102,101,102,102,92,92,110,92,92,114,92,92,117,50,48,50,56,92,92,117,50,48,50,57,92,92,117,49,54,56,48,92,92,117,49,56,48,101,92,92,117,50,48,48,48,92,92,117,50,48,48,49,92,92,117,50,48,48,50,92,92,117,50,48,48,51,92,92,117,50,48,48,52,92,92,117,50,48,48,53,92,92,117,50,48,48,54,92,92,117,50,48,48,55,92,92,117,50,48,48,56,92,92,117,50,48,48,57,92,92,117,50,48,48,97,92,92,117,50,48,50,102,92,92,117,50,48,53,102,92,92,117,51,48,48,48,92,92,100,43,92,92,117,50,55,48,48,45,92,92,117,50,55,98,102,97,45,122,92,92,120,100,102,45,92,92,120,102,54,92,92,120,102,56,45,92,92,120,102,102,65,45,90,92,92,120,99,48,45,92,92,120,100,54,92,92,120,100,56,45,92,92,120,100,101,93,41,43,40,63,58,91,39,92,117,50,48,49,57,93,40,63,58,100,124,108,108,124,109,124,114,101,124,115,124,116,124,118,101,41,41,63,124,91,65,45,90,92,92,120,99,48,45,92,92,120,100,54,92,92,120,100,56,45,92,92,120,100,101,93,43,40,63,58,91,39,92,117,50,48,49,57,93,40,63,58,68,124,76,76,124,77,124,82,69,124,83,124,84,124,86,69,41,41,63,124,92,92,100,42,40,63,58,49,83,84,124,50,78,68,124,51,82,68,124,40,63,33,91,49,50,51,93,41,92,92,100,84,72,41,40,63,61,92,92,98,124,91,97,45,122,95,93,41,124,92,92,100,42,40,63,58,49,115,116,124,50,110,100,124,51,114,100,124,40,63,33,91,49,50,51,93,41,92,92,100,116,104,41,40,63,61,92,92,98,124,91,65,45,90,95,93,41,124,92,92,100,43,34,44,65,110,93,46,106,111,105,110,40,34,124,34,41,44,34,103,34,41,44,82,110,61,82,101,103,69,120,112,40,34,91,92,92,117,50,48,48,100,92,92,117,100,56,48,48,45,92,92,117,100,102,102,102,92,92,117,48,51,48,48,45,92,92,117,48,51,54,102,92,92,117,102,101,50,48,45,92,92,117,102,101,50,102,92,92,117,50,48,100,48,45,92,92,117,50,48,102,102,92,92,117,102,101,48,101,92,92,117,102,101,48,102,93,34,41,44,122,110,61,47,91,97,45,122,93,91,65,45,90,93,124,91,65,45,90,93,123,50,125,91,97,45,122,93,124,91,48,45,57,93,91,97,45,122,65,45,90,93,124,91,97,45,122,65,45,90,93,91,48,45,57,93,124,91,94,97,45,122,65,45,90,48,45,57,32,93,47,44,87,110,61,34,65,114,114,97,121,32,66,117,102,102,101,114,32,68,97,116,97,86,105,101,119,32,68,97,116,101,32,69,114,114,111,114,32,70,108,111,97,116,51,50,65,114,114,97,121,32,70,108,111,97,116,54,52,65,114,114,97,121,32,70,117,110,99,116,105,111,110,32,73,110,116,56,65,114,114,97,121,32,73,110,116,49,54,65,114,114,97,121,32,73,110,116,51,50,65,114,114,97,121,32,77,97,112,32,77,97,116,104,32,79,98,106,101,99,116,32,80,114,111,109,105,115,101,32,82,101,103,69,120,112,32,83,101,116,32,83,116,114,105,110,103,32,83,121,109,98,111,108,32,84,121,112,101,69,114,114,111,114,32,85,105,110,116,56,65,114,114,97,121,32,85,105,110,116,56,67,108,97,109,112,101,100,65,114,114,97,121,32,85,105,110,116,49,54,65,114,114,97,121,32,85,105,110,116,51,50,65,114,114,97,121,32,87,101,97,107,77,97,112,32,95,32,99,108,101,97,114,84,105,109,101,111,117,116,32,105,115,70,105,110,105,116,101,32,112,97,114,115,101,73,110,116,32,115,101,116,84,105,109,101,111,117,116,34,46,115,112,108,105,116,40,34,32,34,41,44,66,110,61,123,125,59,10,66,110,91,34,91,111,98,106,101,99,116,32,70,108,111,97,116,51,50,65,114,114,97,121,93,34,93,61,66,110,91,34,91,111,98,106,101,99,116,32,70,108,111,97,116,54,52,65,114,114,97,121,93,34,93,61,66,110,91,34,91,111,98,106,101,99,116,32,73,110,116,56,65,114,114,97,121,93,34,93,61,66,110,91,34,91,111,98,106,101,99,116,32,73,110,116,49,54,65,114,114,97,121,93,34,93,61,66,110,91,34,91,111,98,106,101,99,116,32,73,110,116,51,50,65,114,114,97,121,93,34,93,61,66,110,91,34,91,111,98,106,101,99,116,32,85,105,110,116,56,65,114,114,97,121,93,34,93,61,66,110,91,34,91,111,98,106,101,99,116,32,85,105,110,116,56,67,108,97,109,112,101,100,65,114,114,97,121,93,34,93,61,66,110,91,34,91,111,98,106,101,99,116,32,85,105,110,116,49,54,65,114,114,97,121,93,34,93,61,66,110,91,34,91,111,98,106,101,99,116,32,85,105,110,116,51,50,65,114,114,97,121,93,34,93,61,116,114,117,101,44,66,110,91,34,91,111,98,106,101,99,116,32,65,114,103,117,109,101,110,116,115,93,34,93,61,66,110,91,34,91,111,98,106,101,99,116,32,65,114,114,97,121,93,34,93,61,66,110,91,34,91,111,98,106,101,99,116,32,65,114,114,97,121,66,117,102,102,101,114,93,34,93,61,66,110,91,34,91,111,98,106,101,99,116,32,66,111,111,108,101,97,110,93,34,93,61,66,110,91,34,91,111,98,106,101,99,116,32,68,97,116,97,86,105,101,119,93,34,93,61,66,110,91,34,91,111,98,106,101,99,116,32,68,97,116,101,93,34,93,61,66,110,91,34,91,111,98,106,101,99,116,32,69,114,114,111,114,93,34,93,61,66,110,91,34,91,111,98,106,101,99,116,32,70,117,110,99,116,105,111,110,93,34,93,61,66,110,91,34,91,111,98,106,101,99,116,32,77,97,112,93,34,93,61,66,110,91,34,91,111,98,106,101,99,116,32,78,117,109,98,101,114,93,34,93,61,66,110,91,34,91,111,98,106,101,99,116,32,79,98,106,101,99,116,93,34,93,61,66,110,91,34,91,111,98,106,101,99,116,32,82,101,103,69,120,112,93,34,93,61,66,110,91,34,91,111,98,106,101,99,116,32,83,101,116,93,34,93,61,66,110,91,34,91,111,98,106,101,99,116,32,83,116,114,105,110,103,93,34,93,61,66,110,91,34,91,111,98,106,101,99,116,32,87,101,97,107,77,97,112,93,34,93,61,102,97,108,115,101,59,10,118,97,114,32,76,110,61,123,125,59,76,110,91,34,91,111,98,106,101,99,116,32,65,114,103,117,109,101,110,116,115,93,34,93,61,76,110,91,34,91,111,98,106,101,99,116,32,65,114,114,97,121,93,34,93,61,76,110,91,34,91,111,98,106,101,99,116,32,65,114,114,97,121,66,117,102,102,101,114,93,34,93,61,76,110,91,34,91,111,98,106,101,99,116,32,68,97,116,97,86,105,101,119,93,34,93,61,76,110,91,34,91,111,98,106,101,99,116,32,66,111,111,108,101,97,110,93,34,93,61,76,110,91,34,91,111,98,106,101,99,116,32,68,97,116,101,93,34,93,61,76,110,91,34,91,111,98,106,101,99,116,32,70,108,111,97,116,51,50,65,114,114,97,121,93,34,93,61,76,110,91,34,91,111,98,106,101,99,116,32,70,108,111,97,116,54,52,65,114,114,97,121,93,34,93,61,76,110,91,34,91,111,98,106,101,99,116,32,73,110,116,56,65,114,114,97,121,93,34,93,61,76,110,91,34,91,111,98,106,101,99,116,32,73,110,116,49,54,65,114,114,97,121,93,34,93,61,76,110,91,34,91,111,98,106,101,99,116,32,73,110,116,51,50,65,114,114,97,121,93,34,93,61,76,110,91,34,91,111,98,106,101,99,116,32,77,97,112,93,34,93,61,76,110,91,34,91,111,98,106,101,99,116,32,78,117,109,98,101,114,93,34,93,61,76,110,91,34,91,111,98,106,101,99,116,32,79,98,106,101,99,116,93,34,93,61,76,110,91,34,91,111,98,106,101,99,116,32,82,101,103,69,120,112,93,34,93,61,76,110,91,34,91,111,98,106,101,99,116,32,83,101,116,93,34,93,61,76,110,91,34,91,111,98,106,101,99,116,32,83,116,114,105,110,103,93,34,93,61,76,110,91,34,91,111,98,106,101,99,116,32,83,121,109,98,111,108,93,34,93,61,76,110,91,34,91,111,98,106,101,99,116,32,85,105,110,116,56,65,114,114,97,121,93,34,93,61,76,110,91,34,91,111,98,106,101,99,116,32,85,105,110,116,56,67,108,97,109,112,101,100,65,114,114,97,121,93,34,93,61,76,110,91,34,91,111,98,106,101,99,116,32,85,105,110,116,49,54,65,114,114,97,121,93,34,93,61,76,110,91,34,91,111,98,106,101,99,116,32,85,105,110,116,51,50,65,114,114,97,121,93,34,93,61,116,114,117,101,44,10,76,110,91,34,91,111,98,106,101,99,116,32,69,114,114,111,114,93,34,93,61,76,110,91,34,91,111,98,106,101,99,116,32,70,117,110,99,116,105,111,110,93,34,93,61,76,110,91,34,91,111,98,106,101,99,116,32,87,101,97,107,77,97,112,93,34,93,61,102,97,108,115,101,59,118,97,114,32,85,110,61,123,34,92,92,34,58,34,92,92,34,44,34,39,34,58,34,39,34,44,34,92,110,34,58,34,110,34,44,34,92,114,34,58,34,114,34,44,34,92,117,50,48,50,56,34,58,34,117,50,48,50,56,34,44,34,92,117,50,48,50,57,34,58,34,117,50,48,50,57,34,125,44,67,110,61,112,97,114,115,101,70,108,111,97,116,44,68,110,61,112,97,114,115,101,73,110,116,44,77,110,61,116,121,112,101,111,102,32,103,108,111,98,97,108,61,61,34,111,98,106,101,99,116,34,38,38,103,108,111,98,97,108,38,38,103,108,111,98,97,108,46,79,98,106,101,99,116,61,61,61,79,98,106,101,99,116,38,38,103,108,111,98,97,108,44,84,110,61,116,121,112,101,111,102,32,115,101,108,102,61,61,34,111,98,106,101,99,116,34,38,38,115,101,108,102,38,38,115,101,108,102,46,79,98,106,101,99,116,61,61,61,79,98,106,101,99,116,38,38,115,101,108,102,44,36,110,61,77,110,124,124,84,110,124,124,70,117,110,99,116,105,111,110,40,34,114,101,116,117,114,110,32,116,104,105,115,34,41,40,41,44,70,110,61,116,121,112,101,111,102,32,101,120,112,111,114,116,115,61,61,34,111,98,106,101,99,116,34,38,38,101,120,112,111,114,116,115,38,38,33,101,120,112,111,114,116,115,46,110,111,100,101,84,121,112,101,38,38,101,120,112,111,114,116,115,44,78,110,61,70,110,38,38,116,121,112,101,111,102,32,109,111,100,117,108,101,61,61,34,111,98,106,101,99,116,34,38,38,109,111,100,117,108,101,38,38,33,109,111,100,117,108,101,46,110,111,100,101,84,121,112,101,38,38,109,111,100,117,108,101,44,80,110,61,78,110,38,38,78,110,46,101,120,112,111,114,116,115,61,61,61,70,110,44,90,110,61,80,110,38,38,77,110,46,112,114,111,99,101,115,115,44,113,110,61,102,117,110,99,116,105,111,110,40,41,123,10,116,114,121,123,118,97,114,32,110,61,78,110,38,38,78,110,46,102,38,38,78,110,46,102,40,34,117,116,105,108,34,41,46,116,121,112,101,115,59,114,101,116,117,114,110,32,110,63,110,58,90,110,38,38,90,110,46,98,105,110,100,105,110,103,38,38,90,110,46,98,105,110,100,105,110,103,40,34,117,116,105,108,34,41,125,99,97,116,99,104,40,110,41,123,125,125,40,41,44,86,110,61,113,110,38,38,113,110,46,105,115,65,114,114,97,121,66,117,102,102,101,114,44,75,110,61,113,110,38,38,113,110,46,105,115,68,97,116,101,44,71,110,61,113,110,38,38,113,110,46,105,115,77,97,112,44,72,110,61,113,110,38,38,113,110,46,105,115,82,101,103,69,120,112,44,74,110,61,113,110,38,38,113,110,46,105,115,83,101,116,44,89,110,61,113,110,38,38,113,110,46,105,115,84,121,112,101,100,65,114,114,97,121,44,81,110,61,98,40,34,108,101,110,103,116,104,34,41,44,88,110,61,120,40,123,34,92,120,99,48,34,58,34,65,34,44,34,92,120,99,49,34,58,34,65,34,44,34,92,120,99,50,34,58,34,65,34,44,34,92,120,99,51,34,58,34,65,34,44,34,92,120,99,52,34,58,34,65,34,44,34,92,120,99,53,34,58,34,65,34,44,34,92,120,101,48,34,58,34,97,34,44,34,92,120,101,49,34,58,34,97,34,44,34,92,120,101,50,34,58,34,97,34,44,34,92,120,101,51,34,58,34,97,34,44,34,92,120,101,52,34,58,34,97,34,44,34,92,120,101,53,34,58,34,97,34,44,34,92,120,99,55,34,58,34,67,34,44,34,92,120,101,55,34,58,34,99,34,44,34,92,120,100,48,34,58,34,68,34,44,34,92,120,102,48,34,58,34,100,34,44,34,92,120,99,56,34,58,34,69,34,44,34,92,120,99,57,34,58,34,69,34,44,34,92,120,99,97,34,58,34,69,34,44,34,92,120,99,98,34,58,34,69,34,44,34,92,120,101,56,34,58,34,101,34,44,34,92,120,101,57,34,58,34,101,34,44,34,92,120,101,97,34,58,34,101,34,44,34,92,120,101,98,34,58,34,101,34,44,34,92,120,99,99,34,58,34,73,34,44,10,34,92,120,99,100,34,58,34,73,34,44,34,92,120,99,101,34,58,34,73,34,44,34,92,120,99,102,34,58,34,73,34,44,34,92,120,101,99,34,58,34,105,34,44,34,92,120,101,100,34,58,34,105,34,44,34,92,120,101,101,34,58,34,105,34,44,34,92,120,101,102,34,58,34,105,34,44,34,92,120,100,49,34,58,34,78,34,44,34,92,120,102,49,34,58,34,110,34,44,34,92,120,100,50,34,58,34,79,34,44,34,92,120,100,51,34,58,34,79,34,44,34,92,120,100,52,34,58,34,79,34,44,34,92,120,100,53,34,58,34,79,34,44,34,92,120,100,54,34,58,34,79,34,44,34,92,120,100,56,34,58,34,79,34,44,34,92,120,102,50,34,58,34,111,34,44,34,92,120,102,51,34,58,34,111,34,44,34,92,120,102,52,34,58,34,111,34,44,34,92,120,102,53,34,58,34,111,34,44,34,92,120,102,54,34,58,34,111,34,44,34,92,120,102,56,34,58,34,111,34,44,34,92,120,100,57,34,58,34,85,34,44,34,92,120,100,97,34,58,34,85,34,44,34,92,120,100,98,34,58,34,85,34,44,34,92,120,100,99,34,58,34,85,34,44,34,92,120,102,57,34,58,34,117,34,44,34,92,120,102,97,34,58,34,117,34,44,34,92,120,102,98,34,58,34,117,34,44,34,92,120,102,99,34,58,34,117,34,44,34,92,120,100,100,34,58,34,89,34,44,34,92,120,102,100,34,58,34,121,34,44,34,92,120,102,102,34,58,34,121,34,44,34,92,120,99,54,34,58,34,65,101,34,44,34,92,120,101,54,34,58,34,97,101,34,44,34,92,120,100,101,34,58,34,84,104,34,44,34,92,120,102,101,34,58,34,116,104,34,44,34,92,120,100,102,34,58,34,115,115,34,44,34,92,117,48,49,48,48,34,58,34,65,34,44,34,92,117,48,49,48,50,34,58,34,65,34,44,34,92,117,48,49,48,52,34,58,34,65,34,44,34,92,117,48,49,48,49,34,58,34,97,34,44,34,92,117,48,49,48,51,34,58,34,97,34,44,34,92,117,48,49,48,53,34,58,34,97,34,44,34,92,117,48,49,48,54,34,58,34,67,34,44,10,34,92,117,48,49,48,56,34,58,34,67,34,44,34,92,117,48,49,48,97,34,58,34,67,34,44,34,92,117,48,49,48,99,34,58,34,67,34,44,34,92,117,48,49,48,55,34,58,34,99,34,44,34,92,117,48,49,48,57,34,58,34,99,34,44,34,92,117,48,49,48,98,34,58,34,99,34,44,34,92,117,48,49,48,100,34,58,34,99,34,44,34,92,117,48,49,48,101,34,58,34,68,34,44,34,92,117,48,49,49,48,34,58,34,68,34,44,34,92,117,48,49,48,102,34,58,34,100,34,44,34,92,117,48,49,49,49,34,58,34,100,34,44,34,92,117,48,49,49,50,34,58,34,69,34,44,34,92,117,48,49,49,52,34,58,34,69,34,44,34,92,117,48,49,49,54,34,58,34,69,34,44,34,92,117,48,49,49,56,34,58,34,69,34,44,34,92,117,48,49,49,97,34,58,34,69,34,44,34,92,117,48,49,49,51,34,58,34,101,34,44,34,92,117,48,49,49,53,34,58,34,101,34,44,34,92,117,48,49,49,55,34,58,34,101,34,44,34,92,117,48,49,49,57,34,58,34,101,34,44,34,92,117,48,49,49,98,34,58,34,101,34,44,34,92,117,48,49,49,99,34,58,34,71,34,44,34,92,117,48,49,49,101,34,58,34,71,34,44,34,92,117,48,49,50,48,34,58,34,71,34,44,34,92,117,48,49,50,50,34,58,34,71,34,44,34,92,117,48,49,49,100,34,58,34,103,34,44,34,92,117,48,49,49,102,34,58,34,103,34,44,34,92,117,48,49,50,49,34,58,34,103,34,44,34,92,117,48,49,50,51,34,58,34,103,34,44,34,92,117,48,49,50,52,34,58,34,72,34,44,34,92,117,48,49,50,54,34,58,34,72,34,44,34,92,117,48,49,50,53,34,58,34,104,34,44,34,92,117,48,49,50,55,34,58,34,104,34,44,34,92,117,48,49,50,56,34,58,34,73,34,44,34,92,117,48,49,50,97,34,58,34,73,34,44,34,92,117,48,49,50,99,34,58,34,73,34,44,34,92,117,48,49,50,101,34,58,34,73,34,44,34,92,117,48,49,51,48,34,58,34,73,34,44,34,92,117,48,49,50,57,34,58,34,105,34,44,10,34,92,117,48,49,50,98,34,58,34,105,34,44,34,92,117,48,49,50,100,34,58,34,105,34,44,34,92,117,48,49,50,102,34,58,34,105,34,44,34,92,117,48,49,51,49,34,58,34,105,34,44,34,92,117,48,49,51,52,34,58,34,74,34,44,34,92,117,48,49,51,53,34,58,34,106,34,44,34,92,117,48,49,51,54,34,58,34,75,34,44,34,92,117,48,49,51,55,34,58,34,107,34,44,34,92,117,48,49,51,56,34,58,34,107,34,44,34,92,117,48,49,51,57,34,58,34,76,34,44,34,92,117,48,49,51,98,34,58,34,76,34,44,34,92,117,48,49,51,100,34,58,34,76,34,44,34,92,117,48,49,51,102,34,58,34,76,34,44,34,92,117,48,49,52,49,34,58,34,76,34,44,34,92,117,48,49,51,97,34,58,34,108,34,44,34,92,117,48,49,51,99,34,58,34,108,34,44,34,92,117,48,49,51,101,34,58,34,108,34,44,34,92,117,48,49,52,48,34,58,34,108,34,44,34,92,117,48,49,52,50,34,58,34,108,34,44,34,92,117,48,49,52,51,34,58,34,78,34,44,34,92,117,48,49,52,53,34,58,34,78,34,44,34,92,117,48,49,52,55,34,58,34,78,34,44,34,92,117,48,49,52,97,34,58,34,78,34,44,34,92,117,48,49,52,52,34,58,34,110,34,44,34,92,117,48,49,52,54,34,58,34,110,34,44,34,92,117,48,49,52,56,34,58,34,110,34,44,34,92,117,48,49,52,98,34,58,34,110,34,44,34,92,117,48,49,52,99,34,58,34,79,34,44,34,92,117,48,49,52,101,34,58,34,79,34,44,34,92,117,48,49,53,48,34,58,34,79,34,44,34,92,117,48,49,52,100,34,58,34,111,34,44,34,92,117,48,49,52,102,34,58,34,111,34,44,34,92,117,48,49,53,49,34,58,34,111,34,44,34,92,117,48,49,53,52,34,58,34,82,34,44,34,92,117,48,49,53,54,34,58,34,82,34,44,34,92,117,48,49,53,56,34,58,34,82,34,44,34,92,117,48,49,53,53,34,58,34,114,34,44,34,92,117,48,49,53,55,34,58,34,114,34,44,34,92,117,48,49,53,57,34,58,34,114,34,44,10,34,92,117,48,49,53,97,34,58,34,83,34,44,34,92,117,48,49,53,99,34,58,34,83,34,44,34,92,117,48,49,53,101,34,58,34,83,34,44,34,92,117,48,49,54,48,34,58,34,83,34,44,34,92,117,48,49,53,98,34,58,34,115,34,44,34,92,117,48,49,53,100,34,58,34,115,34,44,34,92,117,48,49,53,102,34,58,34,115,34,44,34,92,117,48,49,54,49,34,58,34,115,34,44,34,92,117,48,49,54,50,34,58,34,84,34,44,34,92,117,48,49,54,52,34,58,34,84,34,44,34,92,117,48,49,54,54,34,58,34,84,34,44,34,92,117,48,49,54,51,34,58,34,116,34,44,34,92,117,48,49,54,53,34,58,34,116,34,44,34,92,117,48,49,54,55,34,58,34,116,34,44,34,92,117,48,49,54,56,34,58,34,85,34,44,34,92,117,48,49,54,97,34,58,34,85,34,44,34,92,117,48,49,54,99,34,58,34,85,34,44,34,92,117,48,49,54,101,34,58,34,85,34,44,34,92,117,48,49,55,48,34,58,34,85,34,44,34,92,117,48,49,55,50,34,58,34,85,34,44,34,92,117,48,49,54,57,34,58,34,117,34,44,34,92,117,48,49,54,98,34,58,34,117,34,44,34,92,117,48,49,54,100,34,58,34,117,34,44,34,92,117,48,49,54,102,34,58,34,117,34,44,34,92,117,48,49,55,49,34,58,34,117,34,44,34,92,117,48,49,55,51,34,58,34,117,34,44,34,92,117,48,49,55,52,34,58,34,87,34,44,34,92,117,48,49,55,53,34,58,34,119,34,44,34,92,117,48,49,55,54,34,58,34,89,34,44,34,92,117,48,49,55,55,34,58,34,121,34,44,34,92,117,48,49,55,56,34,58,34,89,34,44,34,92,117,48,49,55,57,34,58,34,90,34,44,34,92,117,48,49,55,98,34,58,34,90,34,44,34,92,117,48,49,55,100,34,58,34,90,34,44,34,92,117,48,49,55,97,34,58,34,122,34,44,34,92,117,48,49,55,99,34,58,34,122,34,44,34,92,117,48,49,55,101,34,58,34,122,34,44,34,92,117,48,49,51,50,34,58,34,73,74,34,44,34,92,117,48,49,51,51,34,58,34,105,106,34,44,10,34,92,117,48,49,53,50,34,58,34,79,101,34,44,34,92,117,48,49,53,51,34,58,34,111,101,34,44,34,92,117,48,49,52,57,34,58,34,39,110,34,44,34,92,117,48,49,55,102,34,58,34,115,34,125,41,44,110,116,61,120,40,123,34,38,34,58,34,38,97,109,112,59,34,44,34,60,34,58,34,38,108,116,59,34,44,34,62,34,58,34,38,103,116,59,34,44,39,34,39,58,34,38,113,117,111,116,59,34,44,34,39,34,58,34,38,35,51,57,59,34,125,41,44,116,116,61,120,40,123,34,38,97,109,112,59,34,58,34,38,34,44,34,38,108,116,59,34,58,34,60,34,44,34,38,103,116,59,34,58,34,62,34,44,34,38,113,117,111,116,59,34,58,39,34,39,44,34,38,35,51,57,59,34,58,34,39,34,125,41,44,114,116,61,102,117,110,99,116,105,111,110,32,120,40,109,110,41,123,102,117,110,99,116,105,111,110,32,65,110,40,110,41,123,105,102,40,121,117,40,110,41,38,38,33,102,102,40,110,41,38,38,33,40,110,32,105,110,115,116,97,110,99,101,111,102,32,85,110,41,41,123,105,102,40,110,32,105,110,115,116,97,110,99,101,111,102,32,79,110,41,114,101,116,117,114,110,32,110,59,105,102,40,111,105,46,99,97,108,108,40,110,44,34,95,95,119,114,97,112,112,101,100,95,95,34,41,41,114,101,116,117,114,110,32,70,101,40,110,41,125,114,101,116,117,114,110,32,110,101,119,32,79,110,40,110,41,125,102,117,110,99,116,105,111,110,32,69,110,40,41,123,125,102,117,110,99,116,105,111,110,32,79,110,40,110,44,116,41,123,116,104,105,115,46,95,95,119,114,97,112,112,101,100,95,95,61,110,44,116,104,105,115,46,95,95,97,99,116,105,111,110,115,95,95,61,91,93,44,116,104,105,115,46,95,95,99,104,97,105,110,95,95,61,33,33,116,44,116,104,105,115,46,95,95,105,110,100,101,120,95,95,61,48,44,116,104,105,115,46,95,95,118,97,108,117,101,115,95,95,61,84,125,102,117,110,99,116,105,111,110,32,85,110,40,110,41,123,116,104,105,115,46,95,95,119,114,97,112,112,101,100,95,95,61,110,44,10,116,104,105,115,46,95,95,97,99,116,105,111,110,115,95,95,61,91,93,44,116,104,105,115,46,95,95,100,105,114,95,95,61,49,44,116,104,105,115,46,95,95,102,105,108,116,101,114,101,100,95,95,61,102,97,108,115,101,44,116,104,105,115,46,95,95,105,116,101,114,97,116,101,101,115,95,95,61,91,93,44,116,104,105,115,46,95,95,116,97,107,101,67,111,117,110,116,95,95,61,52,50,57,52,57,54,55,50,57,53,44,116,104,105,115,46,95,95,118,105,101,119,115,95,95,61,91,93,125,102,117,110,99,116,105,111,110,32,77,110,40,110,41,123,118,97,114,32,116,61,45,49,44,114,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,102,111,114,40,116,104,105,115,46,99,108,101,97,114,40,41,59,43,43,116,60,114,59,41,123,118,97,114,32,101,61,110,91,116,93,59,116,104,105,115,46,115,101,116,40,101,91,48,93,44,101,91,49,93,41,125,125,102,117,110,99,116,105,111,110,32,84,110,40,110,41,123,118,97,114,32,116,61,45,49,44,114,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,102,111,114,40,116,104,105,115,46,99,108,101,97,114,40,41,59,43,43,116,60,114,59,41,123,118,97,114,32,101,61,110,91,116,93,59,116,104,105,115,46,115,101,116,40,101,91,48,93,44,101,91,49,93,41,125,125,102,117,110,99,116,105,111,110,32,70,110,40,110,41,123,118,97,114,32,116,61,45,49,44,114,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,102,111,114,40,116,104,105,115,46,99,108,101,97,114,40,41,59,43,43,116,60,114,59,41,123,118,97,114,32,101,61,110,91,116,93,59,116,104,105,115,46,115,101,116,40,101,91,48,93,44,101,91,49,93,41,125,125,102,117,110,99,116,105,111,110,32,78,110,40,110,41,123,118,97,114,32,116,61,45,49,44,114,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,102,111,114,40,116,104,105,115,46,95,95,100,97,116,97,95,95,61,110,101,119,32,70,110,59,43,43,116,60,114,59,41,116,104,105,115,46,97,100,100,40,110,91,116,93,41,59,10,125,102,117,110,99,116,105,111,110,32,90,110,40,110,41,123,116,104,105,115,46,115,105,122,101,61,40,116,104,105,115,46,95,95,100,97,116,97,95,95,61,110,101,119,32,84,110,40,110,41,41,46,115,105,122,101,125,102,117,110,99,116,105,111,110,32,113,110,40,110,44,116,41,123,118,97,114,32,114,44,101,61,102,102,40,110,41,44,117,61,33,101,38,38,111,102,40,110,41,44,105,61,33,101,38,38,33,117,38,38,97,102,40,110,41,44,111,61,33,101,38,38,33,117,38,38,33,105,38,38,95,102,40,110,41,44,117,61,40,101,61,101,124,124,117,124,124,105,124,124,111,41,63,65,40,110,46,108,101,110,103,116,104,44,110,105,41,58,91,93,44,102,61,117,46,108,101,110,103,116,104,59,102,111,114,40,114,32,105,110,32,110,41,33,116,38,38,33,111,105,46,99,97,108,108,40,110,44,114,41,124,124,101,38,38,40,34,108,101,110,103,116,104,34,61,61,114,124,124,105,38,38,40,34,111,102,102,115,101,116,34,61,61,114,124,124,34,112,97,114,101,110,116,34,61,61,114,41,124,124,111,38,38,40,34,98,117,102,102,101,114,34,61,61,114,124,124,34,98,121,116,101,76,101,110,103,116,104,34,61,61,114,124,124,34,98,121,116,101,79,102,102,115,101,116,34,61,61,114,41,124,124,83,101,40,114,44,102,41,41,124,124,117,46,112,117,115,104,40,114,41,59,114,101,116,117,114,110,32,117,125,102,117,110,99,116,105,111,110,32,81,110,40,110,41,123,118,97,114,32,116,61,110,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,116,63,110,91,105,114,40,48,44,116,45,49,41,93,58,84,125,102,117,110,99,116,105,111,110,32,101,116,40,110,44,116,41,123,114,101,116,117,114,110,32,68,101,40,85,114,40,110,41,44,112,116,40,116,44,48,44,110,46,108,101,110,103,116,104,41,41,125,102,117,110,99,116,105,111,110,32,117,116,40,110,41,123,114,101,116,117,114,110,32,68,101,40,85,114,40,110,41,41,125,102,117,110,99,116,105,111,110,32,105,116,40,110,44,116,44,114,41,123,40,114,61,61,61,84,124,124,108,117,40,110,91,116,93,44,114,41,41,38,38,40,114,33,61,61,84,124,124,116,32,105,110,32,110,41,124,124,115,116,40,110,44,116,44,114,41,59,10,125,102,117,110,99,116,105,111,110,32,111,116,40,110,44,116,44,114,41,123,118,97,114,32,101,61,110,91,116,93,59,111,105,46,99,97,108,108,40,110,44,116,41,38,38,108,117,40,101,44,114,41,38,38,40,114,33,61,61,84,124,124,116,32,105,110,32,110,41,124,124,115,116,40,110,44,116,44,114,41,125,102,117,110,99,116,105,111,110,32,102,116,40,110,44,116,41,123,102,111,114,40,118,97,114,32,114,61,110,46,108,101,110,103,116,104,59,114,45,45,59,41,105,102,40,108,117,40,110,91,114,93,91,48,93,44,116,41,41,114,101,116,117,114,110,32,114,59,114,101,116,117,114,110,45,49,125,102,117,110,99,116,105,111,110,32,99,116,40,110,44,116,44,114,44,101,41,123,114,101,116,117,114,110,32,117,111,40,110,44,102,117,110,99,116,105,111,110,40,110,44,117,44,105,41,123,116,40,101,44,110,44,114,40,110,41,44,105,41,125,41,44,101,125,102,117,110,99,116,105,111,110,32,97,116,40,110,44,116,41,123,114,101,116,117,114,110,32,110,38,38,67,114,40,116,44,87,117,40,116,41,44,110,41,125,102,117,110,99,116,105,111,110,32,108,116,40,110,44,116,41,123,114,101,116,117,114,110,32,110,38,38,67,114,40,116,44,66,117,40,116,41,44,110,41,125,102,117,110,99,116,105,111,110,32,115,116,40,110,44,116,44,114,41,123,34,95,95,112,114,111,116,111,95,95,34,61,61,116,38,38,65,105,63,65,105,40,110,44,116,44,123,99,111,110,102,105,103,117,114,97,98,108,101,58,116,114,117,101,44,101,110,117,109,101,114,97,98,108,101,58,116,114,117,101,44,118,97,108,117,101,58,114,44,119,114,105,116,97,98,108,101,58,116,114,117,101,125,41,58,110,91,116,93,61,114,125,102,117,110,99,116,105,111,110,32,104,116,40,110,44,116,41,123,102,111,114,40,118,97,114,32,114,61,45,49,44,101,61,116,46,108,101,110,103,116,104,44,117,61,75,117,40,101,41,44,105,61,110,117,108,108,61,61,110,59,43,43,114,60,101,59,41,117,91,114,93,61,105,63,84,58,82,117,40,110,44,116,91,114,93,41,59,114,101,116,117,114,110,32,117,59,10,125,102,117,110,99,116,105,111,110,32,112,116,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,110,61,61,61,110,38,38,40,114,33,61,61,84,38,38,40,110,61,110,60,61,114,63,110,58,114,41,44,116,33,61,61,84,38,38,40,110,61,110,62,61,116,63,110,58,116,41,41,44,110,125,102,117,110,99,116,105,111,110,32,95,116,40,110,44,116,44,101,44,117,44,105,44,111,41,123,118,97,114,32,102,44,99,61,49,38,116,44,97,61,50,38,116,44,108,61,52,38,116,59,105,102,40,101,38,38,40,102,61,105,63,101,40,110,44,117,44,105,44,111,41,58,101,40,110,41,41,44,102,33,61,61,84,41,114,101,116,117,114,110,32,102,59,105,102,40,33,100,117,40,110,41,41,114,101,116,117,114,110,32,110,59,105,102,40,117,61,102,102,40,110,41,41,123,105,102,40,102,61,109,101,40,110,41,44,33,99,41,114,101,116,117,114,110,32,85,114,40,110,44,102,41,125,101,108,115,101,123,118,97,114,32,115,61,118,111,40,110,41,44,104,61,34,91,111,98,106,101,99,116,32,70,117,110,99,116,105,111,110,93,34,61,61,115,124,124,34,91,111,98,106,101,99,116,32,71,101,110,101,114,97,116,111,114,70,117,110,99,116,105,111,110,93,34,61,61,115,59,105,102,40,97,102,40,110,41,41,114,101,116,117,114,110,32,73,114,40,110,44,99,41,59,105,102,40,34,91,111,98,106,101,99,116,32,79,98,106,101,99,116,93,34,61,61,115,124,124,34,91,111,98,106,101,99,116,32,65,114,103,117,109,101,110,116,115,93,34,61,61,115,124,124,104,38,38,33,105,41,123,105,102,40,102,61,97,124,124,104,63,123,125,58,65,101,40,110,41,44,33,99,41,114,101,116,117,114,110,32,97,63,77,114,40,110,44,108,116,40,102,44,110,41,41,58,68,114,40,110,44,97,116,40,102,44,110,41,41,125,101,108,115,101,123,105,102,40,33,76,110,91,115,93,41,114,101,116,117,114,110,32,105,63,110,58,123,125,59,102,61,69,101,40,110,44,115,44,99,41,125,125,105,102,40,111,124,124,40,111,61,110,101,119,32,90,110,41,44,10,105,61,111,46,103,101,116,40,110,41,41,114,101,116,117,114,110,32,105,59,111,46,115,101,116,40,110,44,102,41,44,112,102,40,110,41,63,110,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,114,41,123,102,46,97,100,100,40,95,116,40,114,44,116,44,101,44,114,44,110,44,111,41,41,125,41,58,115,102,40,110,41,38,38,110,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,114,44,117,41,123,102,46,115,101,116,40,117,44,95,116,40,114,44,116,44,101,44,117,44,110,44,111,41,41,125,41,59,118,97,114,32,97,61,108,63,97,63,118,101,58,95,101,58,97,63,66,117,58,87,117,44,112,61,117,63,84,58,97,40,110,41,59,114,101,116,117,114,110,32,114,40,112,124,124,110,44,102,117,110,99,116,105,111,110,40,114,44,117,41,123,112,38,38,40,117,61,114,44,114,61,110,91,117,93,41,44,111,116,40,102,44,117,44,95,116,40,114,44,116,44,101,44,117,44,110,44,111,41,41,125,41,44,102,125,102,117,110,99,116,105,111,110,32,118,116,40,110,41,123,118,97,114,32,116,61,87,117,40,110,41,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,114,41,123,114,101,116,117,114,110,32,103,116,40,114,44,110,44,116,41,125,125,102,117,110,99,116,105,111,110,32,103,116,40,110,44,116,44,114,41,123,118,97,114,32,101,61,114,46,108,101,110,103,116,104,59,105,102,40,110,117,108,108,61,61,110,41,114,101,116,117,114,110,33,101,59,102,111,114,40,110,61,81,117,40,110,41,59,101,45,45,59,41,123,118,97,114,32,117,61,114,91,101,93,44,105,61,116,91,117,93,44,111,61,110,91,117,93,59,105,102,40,111,61,61,61,84,38,38,33,40,117,32,105,110,32,110,41,124,124,33,105,40,111,41,41,114,101,116,117,114,110,32,102,97,108,115,101,125,114,101,116,117,114,110,32,116,114,117,101,125,102,117,110,99,116,105,111,110,32,100,116,40,110,44,116,44,114,41,123,105,102,40,116,121,112,101,111,102,32,110,33,61,34,102,117,110,99,116,105,111,110,34,41,116,104,114,111,119,32,110,101,119,32,116,105,40,34,69,120,112,101,99,116,101,100,32,97,32,102,117,110,99,116,105,111,110,34,41,59,10,114,101,116,117,114,110,32,98,111,40,102,117,110,99,116,105,111,110,40,41,123,110,46,97,112,112,108,121,40,84,44,114,41,125,44,116,41,125,102,117,110,99,116,105,111,110,32,121,116,40,110,44,116,44,114,44,101,41,123,118,97,114,32,117,61,45,49,44,105,61,111,44,97,61,116,114,117,101,44,108,61,110,46,108,101,110,103,116,104,44,115,61,91,93,44,104,61,116,46,108,101,110,103,116,104,59,105,102,40,33,108,41,114,101,116,117,114,110,32,115,59,114,38,38,40,116,61,99,40,116,44,107,40,114,41,41,41,44,101,63,40,105,61,102,44,97,61,102,97,108,115,101,41,58,50,48,48,60,61,116,46,108,101,110,103,116,104,38,38,40,105,61,79,44,97,61,102,97,108,115,101,44,116,61,110,101,119,32,78,110,40,116,41,41,59,110,58,102,111,114,40,59,43,43,117,60,108,59,41,123,118,97,114,32,112,61,110,91,117,93,44,95,61,110,117,108,108,61,61,114,63,112,58,114,40,112,41,44,112,61,101,124,124,48,33,61,61,112,63,112,58,48,59,105,102,40,97,38,38,95,61,61,61,95,41,123,102,111,114,40,118,97,114,32,118,61,104,59,118,45,45,59,41,105,102,40,116,91,118,93,61,61,61,95,41,99,111,110,116,105,110,117,101,32,110,59,115,46,112,117,115,104,40,112,41,125,101,108,115,101,32,105,40,116,44,95,44,101,41,124,124,115,46,112,117,115,104,40,112,41,125,114,101,116,117,114,110,32,115,125,102,117,110,99,116,105,111,110,32,98,116,40,110,44,116,41,123,118,97,114,32,114,61,116,114,117,101,59,114,101,116,117,114,110,32,117,111,40,110,44,102,117,110,99,116,105,111,110,40,110,44,101,44,117,41,123,114,101,116,117,114,110,32,114,61,33,33,116,40,110,44,101,44,117,41,125,41,44,114,125,102,117,110,99,116,105,111,110,32,120,116,40,110,44,116,44,114,41,123,102,111,114,40,118,97,114,32,101,61,45,49,44,117,61,110,46,108,101,110,103,116,104,59,43,43,101,60,117,59,41,123,118,97,114,32,105,61,110,91,101,93,44,111,61,116,40,105,41,59,105,102,40,110,117,108,108,33,61,111,38,38,40,102,61,61,61,84,63,111,61,61,61,111,38,38,33,119,117,40,111,41,58,114,40,111,44,102,41,41,41,118,97,114,32,102,61,111,44,99,61,105,59,10,125,114,101,116,117,114,110,32,99,125,102,117,110,99,116,105,111,110,32,106,116,40,110,44,116,41,123,118,97,114,32,114,61,91,93,59,114,101,116,117,114,110,32,117,111,40,110,44,102,117,110,99,116,105,111,110,40,110,44,101,44,117,41,123,116,40,110,44,101,44,117,41,38,38,114,46,112,117,115,104,40,110,41,125,41,44,114,125,102,117,110,99,116,105,111,110,32,119,116,40,110,44,116,44,114,44,101,44,117,41,123,118,97,114,32,105,61,45,49,44,111,61,110,46,108,101,110,103,116,104,59,102,111,114,40,114,124,124,40,114,61,107,101,41,44,117,124,124,40,117,61,91,93,41,59,43,43,105,60,111,59,41,123,118,97,114,32,102,61,110,91,105,93,59,48,60,116,38,38,114,40,102,41,63,49,60,116,63,119,116,40,102,44,116,45,49,44,114,44,101,44,117,41,58,97,40,117,44,102,41,58,101,124,124,40,117,91,117,46,108,101,110,103,116,104,93,61,102,41,125,114,101,116,117,114,110,32,117,125,102,117,110,99,116,105,111,110,32,109,116,40,110,44,116,41,123,114,101,116,117,114,110,32,110,38,38,111,111,40,110,44,116,44,87,117,41,125,102,117,110,99,116,105,111,110,32,65,116,40,110,44,116,41,123,114,101,116,117,114,110,32,110,38,38,102,111,40,110,44,116,44,87,117,41,125,102,117,110,99,116,105,111,110,32,69,116,40,110,44,116,41,123,114,101,116,117,114,110,32,105,40,116,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,95,117,40,110,91,116,93,41,125,41,125,102,117,110,99,116,105,111,110,32,107,116,40,110,44,116,41,123,116,61,83,114,40,116,44,110,41,59,102,111,114,40,118,97,114,32,114,61,48,44,101,61,116,46,108,101,110,103,116,104,59,110,117,108,108,33,61,110,38,38,114,60,101,59,41,110,61,110,91,77,101,40,116,91,114,43,43,93,41,93,59,114,101,116,117,114,110,32,114,38,38,114,61,61,101,63,110,58,84,125,102,117,110,99,116,105,111,110,32,83,116,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,116,61,116,40,110,41,44,10,102,102,40,110,41,63,116,58,97,40,116,44,114,40,110,41,41,125,102,117,110,99,116,105,111,110,32,79,116,40,110,41,123,105,102,40,110,117,108,108,61,61,110,41,110,61,110,61,61,61,84,63,34,91,111,98,106,101,99,116,32,85,110,100,101,102,105,110,101,100,93,34,58,34,91,111,98,106,101,99,116,32,78,117,108,108,93,34,59,101,108,115,101,32,105,102,40,109,105,38,38,109,105,32,105,110,32,81,117,40,110,41,41,123,118,97,114,32,116,61,111,105,46,99,97,108,108,40,110,44,109,105,41,44,114,61,110,91,109,105,93,59,116,114,121,123,110,91,109,105,93,61,84,59,118,97,114,32,101,61,116,114,117,101,125,99,97,116,99,104,40,110,41,123,125,118,97,114,32,117,61,97,105,46,99,97,108,108,40,110,41,59,101,38,38,40,116,63,110,91,109,105,93,61,114,58,100,101,108,101,116,101,32,110,91,109,105,93,41,44,110,61,117,125,101,108,115,101,32,110,61,97,105,46,99,97,108,108,40,110,41,59,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,73,116,40,110,44,116,41,123,114,101,116,117,114,110,32,110,62,116,125,102,117,110,99,116,105,111,110,32,82,116,40,110,44,116,41,123,114,101,116,117,114,110,32,110,117,108,108,33,61,110,38,38,111,105,46,99,97,108,108,40,110,44,116,41,125,102,117,110,99,116,105,111,110,32,122,116,40,110,44,116,41,123,114,101,116,117,114,110,32,110,117,108,108,33,61,110,38,38,116,32,105,110,32,81,117,40,110,41,125,102,117,110,99,116,105,111,110,32,87,116,40,110,44,116,44,114,41,123,102,111,114,40,118,97,114,32,101,61,114,63,102,58,111,44,117,61,110,91,48,93,46,108,101,110,103,116,104,44,105,61,110,46,108,101,110,103,116,104,44,97,61,105,44,108,61,75,117,40,105,41,44,115,61,49,47,48,44,104,61,91,93,59,97,45,45,59,41,123,118,97,114,32,112,61,110,91,97,93,59,97,38,38,116,38,38,40,112,61,99,40,112,44,107,40,116,41,41,41,44,115,61,67,105,40,112,46,108,101,110,103,116,104,44,115,41,44,10,108,91,97,93,61,33,114,38,38,40,116,124,124,49,50,48,60,61,117,38,38,49,50,48,60,61,112,46,108,101,110,103,116,104,41,63,110,101,119,32,78,110,40,97,38,38,112,41,58,84,125,118,97,114,32,112,61,110,91,48,93,44,95,61,45,49,44,118,61,108,91,48,93,59,110,58,102,111,114,40,59,43,43,95,60,117,38,38,104,46,108,101,110,103,116,104,60,115,59,41,123,118,97,114,32,103,61,112,91,95,93,44,100,61,116,63,116,40,103,41,58,103,44,103,61,114,124,124,48,33,61,61,103,63,103,58,48,59,105,102,40,118,63,33,79,40,118,44,100,41,58,33,101,40,104,44,100,44,114,41,41,123,102,111,114,40,97,61,105,59,45,45,97,59,41,123,118,97,114,32,121,61,108,91,97,93,59,105,102,40,121,63,33,79,40,121,44,100,41,58,33,101,40,110,91,97,93,44,100,44,114,41,41,99,111,110,116,105,110,117,101,32,110,125,118,38,38,118,46,112,117,115,104,40,100,41,44,104,46,112,117,115,104,40,103,41,125,125,114,101,116,117,114,110,32,104,125,102,117,110,99,116,105,111,110,32,66,116,40,110,44,116,44,114,41,123,118,97,114,32,101,61,123,125,59,114,101,116,117,114,110,32,109,116,40,110,44,102,117,110,99,116,105,111,110,40,110,44,117,44,105,41,123,116,40,101,44,114,40,110,41,44,117,44,105,41,125,41,44,101,125,102,117,110,99,116,105,111,110,32,76,116,40,116,44,114,44,101,41,123,114,101,116,117,114,110,32,114,61,83,114,40,114,44,116,41,44,116,61,50,62,114,46,108,101,110,103,116,104,63,116,58,107,116,40,116,44,104,114,40,114,44,48,44,45,49,41,41,44,114,61,110,117,108,108,61,61,116,63,116,58,116,91,77,101,40,86,101,40,114,41,41,93,44,110,117,108,108,61,61,114,63,84,58,110,40,114,44,116,44,101,41,125,102,117,110,99,116,105,111,110,32,85,116,40,110,41,123,114,101,116,117,114,110,32,121,117,40,110,41,38,38,34,91,111,98,106,101,99,116,32,65,114,103,117,109,101,110,116,115,93,34,61,61,79,116,40,110,41,125,102,117,110,99,116,105,111,110,32,67,116,40,110,41,123,10,114,101,116,117,114,110,32,121,117,40,110,41,38,38,34,91,111,98,106,101,99,116,32,65,114,114,97,121,66,117,102,102,101,114,93,34,61,61,79,116,40,110,41,125,102,117,110,99,116,105,111,110,32,68,116,40,110,41,123,114,101,116,117,114,110,32,121,117,40,110,41,38,38,34,91,111,98,106,101,99,116,32,68,97,116,101,93,34,61,61,79,116,40,110,41,125,102,117,110,99,116,105,111,110,32,77,116,40,110,44,116,44,114,44,101,44,117,41,123,105,102,40,110,61,61,61,116,41,116,61,116,114,117,101,59,101,108,115,101,32,105,102,40,110,117,108,108,61,61,110,124,124,110,117,108,108,61,61,116,124,124,33,121,117,40,110,41,38,38,33,121,117,40,116,41,41,116,61,110,33,61,61,110,38,38,116,33,61,61,116,59,101,108,115,101,32,110,58,123,118,97,114,32,105,61,102,102,40,110,41,44,111,61,102,102,40,116,41,44,102,61,105,63,34,91,111,98,106,101,99,116,32,65,114,114,97,121,93,34,58,118,111,40,110,41,44,99,61,111,63,34,91,111,98,106,101,99,116,32,65,114,114,97,121,93,34,58,118,111,40,116,41,44,102,61,34,91,111,98,106,101,99,116,32,65,114,103,117,109,101,110,116,115,93,34,61,61,102,63,34,91,111,98,106,101,99,116,32,79,98,106,101,99,116,93,34,58,102,44,99,61,34,91,111,98,106,101,99,116,32,65,114,103,117,109,101,110,116,115,93,34,61,61,99,63,34,91,111,98,106,101,99,116,32,79,98,106,101,99,116,93,34,58,99,44,97,61,34,91,111,98,106,101,99,116,32,79,98,106,101,99,116,93,34,61,61,102,44,111,61,34,91,111,98,106,101,99,116,32,79,98,106,101,99,116,93,34,61,61,99,59,105,102,40,40,99,61,102,61,61,99,41,38,38,97,102,40,110,41,41,123,105,102,40,33,97,102,40,116,41,41,123,116,61,102,97,108,115,101,59,98,114,101,97,107,32,110,125,105,61,116,114,117,101,44,97,61,102,97,108,115,101,125,105,102,40,99,38,38,33,97,41,117,124,124,40,117,61,110,101,119,32,90,110,41,44,116,61,105,124,124,95,102,40,110,41,63,115,101,40,110,44,116,44,114,44,101,44,77,116,44,117,41,58,104,101,40,110,44,116,44,102,44,114,44,101,44,77,116,44,117,41,59,101,108,115,101,123,10,105,102,40,33,40,49,38,114,41,38,38,40,105,61,97,38,38,111,105,46,99,97,108,108,40,110,44,34,95,95,119,114,97,112,112,101,100,95,95,34,41,44,102,61,111,38,38,111,105,46,99,97,108,108,40,116,44,34,95,95,119,114,97,112,112,101,100,95,95,34,41,44,105,124,124,102,41,41,123,110,61,105,63,110,46,118,97,108,117,101,40,41,58,110,44,116,61,102,63,116,46,118,97,108,117,101,40,41,58,116,44,117,124,124,40,117,61,110,101,119,32,90,110,41,44,116,61,77,116,40,110,44,116,44,114,44,101,44,117,41,59,98,114,101,97,107,32,110,125,105,102,40,99,41,116,58,105,102,40,117,124,124,40,117,61,110,101,119,32,90,110,41,44,105,61,49,38,114,44,102,61,95,101,40,110,41,44,111,61,102,46,108,101,110,103,116,104,44,99,61,95,101,40,116,41,46,108,101,110,103,116,104,44,111,61,61,99,124,124,105,41,123,102,111,114,40,97,61,111,59,97,45,45,59,41,123,118,97,114,32,108,61,102,91,97,93,59,105,102,40,33,40,105,63,108,32,105,110,32,116,58,111,105,46,99,97,108,108,40,116,44,108,41,41,41,123,116,61,102,97,108,115,101,59,98,114,101,97,107,32,116,125,125,105,102,40,40,99,61,117,46,103,101,116,40,110,41,41,38,38,117,46,103,101,116,40,116,41,41,116,61,99,61,61,116,59,101,108,115,101,123,99,61,116,114,117,101,44,117,46,115,101,116,40,110,44,116,41,44,117,46,115,101,116,40,116,44,110,41,59,102,111,114,40,118,97,114,32,115,61,105,59,43,43,97,60,111,59,41,123,118,97,114,32,108,61,102,91,97,93,44,104,61,110,91,108,93,44,112,61,116,91,108,93,59,105,102,40,101,41,118,97,114,32,95,61,105,63,101,40,112,44,104,44,108,44,116,44,110,44,117,41,58,101,40,104,44,112,44,108,44,110,44,116,44,117,41,59,105,102,40,95,61,61,61,84,63,104,33,61,61,112,38,38,33,77,116,40,104,44,112,44,114,44,101,44,117,41,58,33,95,41,123,99,61,102,97,108,115,101,59,98,114,101,97,107,125,115,124,124,40,115,61,34,99,111,110,115,116,114,117,99,116,111,114,34,61,61,108,41,59,10,125,99,38,38,33,115,38,38,40,114,61,110,46,99,111,110,115,116,114,117,99,116,111,114,44,101,61,116,46,99,111,110,115,116,114,117,99,116,111,114,44,114,33,61,101,38,38,34,99,111,110,115,116,114,117,99,116,111,114,34,105,110,32,110,38,38,34,99,111,110,115,116,114,117,99,116,111,114,34,105,110,32,116,38,38,33,40,116,121,112,101,111,102,32,114,61,61,34,102,117,110,99,116,105,111,110,34,38,38,114,32,105,110,115,116,97,110,99,101,111,102,32,114,38,38,116,121,112,101,111,102,32,101,61,61,34,102,117,110,99,116,105,111,110,34,38,38,101,32,105,110,115,116,97,110,99,101,111,102,32,101,41,38,38,40,99,61,102,97,108,115,101,41,41,44,117,46,100,101,108,101,116,101,40,110,41,44,117,46,100,101,108,101,116,101,40,116,41,44,116,61,99,125,125,101,108,115,101,32,116,61,102,97,108,115,101,59,101,108,115,101,32,116,61,102,97,108,115,101,125,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,84,116,40,110,41,123,114,101,116,117,114,110,32,121,117,40,110,41,38,38,34,91,111,98,106,101,99,116,32,77,97,112,93,34,61,61,118,111,40,110,41,125,102,117,110,99,116,105,111,110,32,36,116,40,110,44,116,44,114,44,101,41,123,118,97,114,32,117,61,114,46,108,101,110,103,116,104,44,105,61,117,44,111,61,33,101,59,105,102,40,110,117,108,108,61,61,110,41,114,101,116,117,114,110,33,105,59,102,111,114,40,110,61,81,117,40,110,41,59,117,45,45,59,41,123,118,97,114,32,102,61,114,91,117,93,59,105,102,40,111,38,38,102,91,50,93,63,102,91,49,93,33,61,61,110,91,102,91,48,93,93,58,33,40,102,91,48,93,105,110,32,110,41,41,114,101,116,117,114,110,32,102,97,108,115,101,125,102,111,114,40,59,43,43,117,60,105,59,41,123,118,97,114,32,102,61,114,91,117,93,44,99,61,102,91,48,93,44,97,61,110,91,99,93,44,108,61,102,91,49,93,59,105,102,40,111,38,38,102,91,50,93,41,123,105,102,40,97,61,61,61,84,38,38,33,40,99,32,105,110,32,110,41,41,114,101,116,117,114,110,32,102,97,108,115,101,59,10,125,101,108,115,101,123,105,102,40,102,61,110,101,119,32,90,110,44,101,41,118,97,114,32,115,61,101,40,97,44,108,44,99,44,110,44,116,44,102,41,59,105,102,40,115,61,61,61,84,63,33,77,116,40,108,44,97,44,51,44,101,44,102,41,58,33,115,41,114,101,116,117,114,110,32,102,97,108,115,101,125,125,114,101,116,117,114,110,32,116,114,117,101,125,102,117,110,99,116,105,111,110,32,70,116,40,110,41,123,114,101,116,117,114,110,33,40,33,100,117,40,110,41,124,124,99,105,38,38,99,105,32,105,110,32,110,41,38,38,40,95,117,40,110,41,63,104,105,58,100,110,41,46,116,101,115,116,40,84,101,40,110,41,41,125,102,117,110,99,116,105,111,110,32,78,116,40,110,41,123,114,101,116,117,114,110,32,121,117,40,110,41,38,38,34,91,111,98,106,101,99,116,32,82,101,103,69,120,112,93,34,61,61,79,116,40,110,41,125,102,117,110,99,116,105,111,110,32,80,116,40,110,41,123,114,101,116,117,114,110,32,121,117,40,110,41,38,38,34,91,111,98,106,101,99,116,32,83,101,116,93,34,61,61,118,111,40,110,41,125,102,117,110,99,116,105,111,110,32,90,116,40,110,41,123,114,101,116,117,114,110,32,121,117,40,110,41,38,38,103,117,40,110,46,108,101,110,103,116,104,41,38,38,33,33,66,110,91,79,116,40,110,41,93,125,102,117,110,99,116,105,111,110,32,113,116,40,110,41,123,114,101,116,117,114,110,32,116,121,112,101,111,102,32,110,61,61,34,102,117,110,99,116,105,111,110,34,63,110,58,110,117,108,108,61,61,110,63,36,117,58,116,121,112,101,111,102,32,110,61,61,34,111,98,106,101,99,116,34,63,102,102,40,110,41,63,74,116,40,110,91,48,93,44,110,91,49,93,41,58,72,116,40,110,41,58,90,117,40,110,41,125,102,117,110,99,116,105,111,110,32,86,116,40,110,41,123,105,102,40,33,122,101,40,110,41,41,114,101,116,117,114,110,32,76,105,40,110,41,59,118,97,114,32,116,44,114,61,91,93,59,102,111,114,40,116,32,105,110,32,81,117,40,110,41,41,111,105,46,99,97,108,108,40,110,44,116,41,38,38,34,99,111,110,115,116,114,117,99,116,111,114,34,33,61,116,38,38,114,46,112,117,115,104,40,116,41,59,10,114,101,116,117,114,110,32,114,125,102,117,110,99,116,105,111,110,32,75,116,40,110,44,116,41,123,114,101,116,117,114,110,32,110,60,116,125,102,117,110,99,116,105,111,110,32,71,116,40,110,44,116,41,123,118,97,114,32,114,61,45,49,44,101,61,115,117,40,110,41,63,75,117,40,110,46,108,101,110,103,116,104,41,58,91,93,59,114,101,116,117,114,110,32,117,111,40,110,44,102,117,110,99,116,105,111,110,40,110,44,117,44,105,41,123,101,91,43,43,114,93,61,116,40,110,44,117,44,105,41,125,41,44,101,125,102,117,110,99,116,105,111,110,32,72,116,40,110,41,123,118,97,114,32,116,61,120,101,40,110,41,59,114,101,116,117,114,110,32,49,61,61,116,46,108,101,110,103,116,104,38,38,116,91,48,93,91,50,93,63,87,101,40,116,91,48,93,91,48,93,44,116,91,48,93,91,49,93,41,58,102,117,110,99,116,105,111,110,40,114,41,123,114,101,116,117,114,110,32,114,61,61,61,110,124,124,36,116,40,114,44,110,44,116,41,125,125,102,117,110,99,116,105,111,110,32,74,116,40,110,44,116,41,123,114,101,116,117,114,110,32,73,101,40,110,41,38,38,116,61,61,61,116,38,38,33,100,117,40,116,41,63,87,101,40,77,101,40,110,41,44,116,41,58,102,117,110,99,116,105,111,110,40,114,41,123,118,97,114,32,101,61,82,117,40,114,44,110,41,59,114,101,116,117,114,110,32,101,61,61,61,84,38,38,101,61,61,61,116,63,122,117,40,114,44,110,41,58,77,116,40,116,44,101,44,51,41,125,125,102,117,110,99,116,105,111,110,32,89,116,40,110,44,116,44,114,44,101,44,117,41,123,110,33,61,61,116,38,38,111,111,40,116,44,102,117,110,99,116,105,111,110,40,105,44,111,41,123,105,102,40,117,124,124,40,117,61,110,101,119,32,90,110,41,44,100,117,40,105,41,41,123,118,97,114,32,102,61,117,44,99,61,76,101,40,110,44,111,41,44,97,61,76,101,40,116,44,111,41,44,108,61,102,46,103,101,116,40,97,41,59,105,102,40,108,41,105,116,40,110,44,111,44,108,41,59,101,108,115,101,123,10,118,97,114,32,108,61,101,63,101,40,99,44,97,44,111,43,34,34,44,110,44,116,44,102,41,58,84,44,115,61,108,61,61,61,84,59,105,102,40,115,41,123,118,97,114,32,104,61,102,102,40,97,41,44,112,61,33,104,38,38,97,102,40,97,41,44,95,61,33,104,38,38,33,112,38,38,95,102,40,97,41,44,108,61,97,59,104,124,124,112,124,124,95,63,102,102,40,99,41,63,108,61,99,58,104,117,40,99,41,63,108,61,85,114,40,99,41,58,112,63,40,115,61,102,97,108,115,101,44,108,61,73,114,40,97,44,116,114,117,101,41,41,58,95,63,40,115,61,102,97,108,115,101,44,108,61,122,114,40,97,44,116,114,117,101,41,41,58,108,61,91,93,58,120,117,40,97,41,124,124,111,102,40,97,41,63,40,108,61,99,44,111,102,40,99,41,63,108,61,79,117,40,99,41,58,100,117,40,99,41,38,38,33,95,117,40,99,41,124,124,40,108,61,65,101,40,97,41,41,41,58,115,61,102,97,108,115,101,125,115,38,38,40,102,46,115,101,116,40,97,44,108,41,44,89,116,40,108,44,97,44,114,44,101,44,102,41,44,102,46,100,101,108,101,116,101,40,97,41,41,44,105,116,40,110,44,111,44,108,41,125,125,101,108,115,101,32,102,61,101,63,101,40,76,101,40,110,44,111,41,44,105,44,111,43,34,34,44,110,44,116,44,117,41,58,84,44,102,61,61,61,84,38,38,40,102,61,105,41,44,105,116,40,110,44,111,44,102,41,125,44,66,117,41,125,102,117,110,99,116,105,111,110,32,81,116,40,110,44,116,41,123,118,97,114,32,114,61,110,46,108,101,110,103,116,104,59,105,102,40,114,41,114,101,116,117,114,110,32,116,43,61,48,62,116,63,114,58,48,44,83,101,40,116,44,114,41,63,110,91,116,93,58,84,125,102,117,110,99,116,105,111,110,32,88,116,40,110,44,116,44,114,41,123,118,97,114,32,101,61,45,49,59,114,101,116,117,114,110,32,116,61,99,40,116,46,108,101,110,103,116,104,63,116,58,91,36,117,93,44,107,40,121,101,40,41,41,41,44,110,61,71,116,40,110,44,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,123,10,97,58,99,40,116,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,40,110,41,125,41,44,98,58,43,43,101,44,99,58,110,125,125,41,44,119,40,110,44,102,117,110,99,116,105,111,110,40,110,44,116,41,123,118,97,114,32,101,59,110,58,123,101,61,45,49,59,102,111,114,40,118,97,114,32,117,61,110,46,97,44,105,61,116,46,97,44,111,61,117,46,108,101,110,103,116,104,44,102,61,114,46,108,101,110,103,116,104,59,43,43,101,60,111,59,41,123,118,97,114,32,99,61,87,114,40,117,91,101,93,44,105,91,101,93,41,59,105,102,40,99,41,123,101,61,101,62,61,102,63,99,58,99,42,40,34,100,101,115,99,34,61,61,114,91,101,93,63,45,49,58,49,41,59,98,114,101,97,107,32,110,125,125,101,61,110,46,98,45,116,46,98,125,114,101,116,117,114,110,32,101,125,41,125,102,117,110,99,116,105,111,110,32,110,114,40,110,44,116,41,123,114,101,116,117,114,110,32,116,114,40,110,44,116,44,102,117,110,99,116,105,111,110,40,116,44,114,41,123,114,101,116,117,114,110,32,122,117,40,110,44,114,41,125,41,125,102,117,110,99,116,105,111,110,32,116,114,40,110,44,116,44,114,41,123,102,111,114,40,118,97,114,32,101,61,45,49,44,117,61,116,46,108,101,110,103,116,104,44,105,61,123,125,59,43,43,101,60,117,59,41,123,118,97,114,32,111,61,116,91,101,93,44,102,61,107,116,40,110,44,111,41,59,114,40,102,44,111,41,38,38,108,114,40,105,44,83,114,40,111,44,110,41,44,102,41,125,114,101,116,117,114,110,32,105,125,102,117,110,99,116,105,111,110,32,114,114,40,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,107,116,40,116,44,110,41,125,125,102,117,110,99,116,105,111,110,32,101,114,40,110,44,116,44,114,44,101,41,123,118,97,114,32,117,61,101,63,103,58,118,44,105,61,45,49,44,111,61,116,46,108,101,110,103,116,104,44,102,61,110,59,102,111,114,40,110,61,61,61,116,38,38,40,116,61,85,114,40,116,41,41,44,10,114,38,38,40,102,61,99,40,110,44,107,40,114,41,41,41,59,43,43,105,60,111,59,41,102,111,114,40,118,97,114,32,97,61,48,44,108,61,116,91,105,93,44,108,61,114,63,114,40,108,41,58,108,59,45,49,60,40,97,61,117,40,102,44,108,44,97,44,101,41,41,59,41,102,33,61,61,110,38,38,120,105,46,99,97,108,108,40,102,44,97,44,49,41,44,120,105,46,99,97,108,108,40,110,44,97,44,49,41,59,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,117,114,40,110,44,116,41,123,102,111,114,40,118,97,114,32,114,61,110,63,116,46,108,101,110,103,116,104,58,48,44,101,61,114,45,49,59,114,45,45,59,41,123,118,97,114,32,117,61,116,91,114,93,59,105,102,40,114,61,61,101,124,124,117,33,61,61,105,41,123,118,97,114,32,105,61,117,59,83,101,40,117,41,63,120,105,46,99,97,108,108,40,110,44,117,44,49,41,58,120,114,40,110,44,117,41,125,125,125,102,117,110,99,116,105,111,110,32,105,114,40,110,44,116,41,123,114,101,116,117,114,110,32,110,43,73,105,40,84,105,40,41,42,40,116,45,110,43,49,41,41,125,102,117,110,99,116,105,111,110,32,111,114,40,110,44,116,41,123,118,97,114,32,114,61,34,34,59,105,102,40,33,110,124,124,49,62,116,124,124,57,48,48,55,49,57,57,50,53,52,55,52,48,57,57,49,60,116,41,114,101,116,117,114,110,32,114,59,100,111,32,116,37,50,38,38,40,114,43,61,110,41,44,40,116,61,73,105,40,116,47,50,41,41,38,38,40,110,43,61,110,41,59,119,104,105,108,101,40,116,41,59,114,101,116,117,114,110,32,114,125,102,117,110,99,116,105,111,110,32,102,114,40,110,44,116,41,123,114,101,116,117,114,110,32,120,111,40,66,101,40,110,44,116,44,36,117,41,44,110,43,34,34,41,125,102,117,110,99,116,105,111,110,32,99,114,40,110,41,123,114,101,116,117,114,110,32,81,110,40,85,117,40,110,41,41,125,102,117,110,99,116,105,111,110,32,97,114,40,110,44,116,41,123,118,97,114,32,114,61,85,117,40,110,41,59,10,114,101,116,117,114,110,32,68,101,40,114,44,112,116,40,116,44,48,44,114,46,108,101,110,103,116,104,41,41,125,102,117,110,99,116,105,111,110,32,108,114,40,110,44,116,44,114,44,101,41,123,105,102,40,33,100,117,40,110,41,41,114,101,116,117,114,110,32,110,59,116,61,83,114,40,116,44,110,41,59,102,111,114,40,118,97,114,32,117,61,45,49,44,105,61,116,46,108,101,110,103,116,104,44,111,61,105,45,49,44,102,61,110,59,110,117,108,108,33,61,102,38,38,43,43,117,60,105,59,41,123,118,97,114,32,99,61,77,101,40,116,91,117,93,41,44,97,61,114,59,105,102,40,117,33,61,111,41,123,118,97,114,32,108,61,102,91,99,93,44,97,61,101,63,101,40,108,44,99,44,102,41,58,84,59,97,61,61,61,84,38,38,40,97,61,100,117,40,108,41,63,108,58,83,101,40,116,91,117,43,49,93,41,63,91,93,58,123,125,41,125,111,116,40,102,44,99,44,97,41,44,102,61,102,91,99,93,125,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,115,114,40,110,41,123,114,101,116,117,114,110,32,68,101,40,85,117,40,110,41,41,125,102,117,110,99,116,105,111,110,32,104,114,40,110,44,116,44,114,41,123,118,97,114,32,101,61,45,49,44,117,61,110,46,108,101,110,103,116,104,59,102,111,114,40,48,62,116,38,38,40,116,61,45,116,62,117,63,48,58,117,43,116,41,44,114,61,114,62,117,63,117,58,114,44,48,62,114,38,38,40,114,43,61,117,41,44,117,61,116,62,114,63,48,58,114,45,116,62,62,62,48,44,116,62,62,62,61,48,44,114,61,75,117,40,117,41,59,43,43,101,60,117,59,41,114,91,101,93,61,110,91,101,43,116,93,59,114,101,116,117,114,110,32,114,125,102,117,110,99,116,105,111,110,32,112,114,40,110,44,116,41,123,118,97,114,32,114,59,114,101,116,117,114,110,32,117,111,40,110,44,102,117,110,99,116,105,111,110,40,110,44,101,44,117,41,123,114,101,116,117,114,110,32,114,61,116,40,110,44,101,44,117,41,44,33,114,125,41,44,33,33,114,125,10,102,117,110,99,116,105,111,110,32,95,114,40,110,44,116,44,114,41,123,118,97,114,32,101,61,48,44,117,61,110,117,108,108,61,61,110,63,101,58,110,46,108,101,110,103,116,104,59,105,102,40,116,121,112,101,111,102,32,116,61,61,34,110,117,109,98,101,114,34,38,38,116,61,61,61,116,38,38,50,49,52,55,52,56,51,54,52,55,62,61,117,41,123,102,111,114,40,59,101,60,117,59,41,123,118,97,114,32,105,61,101,43,117,62,62,62,49,44,111,61,110,91,105,93,59,110,117,108,108,33,61,61,111,38,38,33,119,117,40,111,41,38,38,40,114,63,111,60,61,116,58,111,60,116,41,63,101,61,105,43,49,58,117,61,105,125,114,101,116,117,114,110,32,117,125,114,101,116,117,114,110,32,118,114,40,110,44,116,44,36,117,44,114,41,125,102,117,110,99,116,105,111,110,32,118,114,40,110,44,116,44,114,44,101,41,123,116,61,114,40,116,41,59,102,111,114,40,118,97,114,32,117,61,48,44,105,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,44,111,61,116,33,61,61,116,44,102,61,110,117,108,108,61,61,61,116,44,99,61,119,117,40,116,41,44,97,61,116,61,61,61,84,59,117,60,105,59,41,123,118,97,114,32,108,61,73,105,40,40,117,43,105,41,47,50,41,44,115,61,114,40,110,91,108,93,41,44,104,61,115,33,61,61,84,44,112,61,110,117,108,108,61,61,61,115,44,95,61,115,61,61,61,115,44,118,61,119,117,40,115,41,59,40,111,63,101,124,124,95,58,97,63,95,38,38,40,101,124,124,104,41,58,102,63,95,38,38,104,38,38,40,101,124,124,33,112,41,58,99,63,95,38,38,104,38,38,33,112,38,38,40,101,124,124,33,118,41,58,112,124,124,118,63,48,58,101,63,115,60,61,116,58,115,60,116,41,63,117,61,108,43,49,58,105,61,108,125,114,101,116,117,114,110,32,67,105,40,105,44,52,50,57,52,57,54,55,50,57,52,41,125,102,117,110,99,116,105,111,110,32,103,114,40,110,44,116,41,123,102,111,114,40,118,97,114,32,114,61,45,49,44,101,61,110,46,108,101,110,103,116,104,44,117,61,48,44,105,61,91,93,59,43,43,114,60,101,59,41,123,10,118,97,114,32,111,61,110,91,114,93,44,102,61,116,63,116,40,111,41,58,111,59,105,102,40,33,114,124,124,33,108,117,40,102,44,99,41,41,123,118,97,114,32,99,61,102,59,105,91,117,43,43,93,61,48,61,61,61,111,63,48,58,111,125,125,114,101,116,117,114,110,32,105,125,102,117,110,99,116,105,111,110,32,100,114,40,110,41,123,114,101,116,117,114,110,32,116,121,112,101,111,102,32,110,61,61,34,110,117,109,98,101,114,34,63,110,58,119,117,40,110,41,63,70,58,43,110,125,102,117,110,99,116,105,111,110,32,121,114,40,110,41,123,105,102,40,116,121,112,101,111,102,32,110,61,61,34,115,116,114,105,110,103,34,41,114,101,116,117,114,110,32,110,59,105,102,40,102,102,40,110,41,41,114,101,116,117,114,110,32,99,40,110,44,121,114,41,43,34,34,59,105,102,40,119,117,40,110,41,41,114,101,116,117,114,110,32,114,111,63,114,111,46,99,97,108,108,40,110,41,58,34,34,59,118,97,114,32,116,61,110,43,34,34,59,114,101,116,117,114,110,34,48,34,61,61,116,38,38,49,47,110,61,61,45,36,63,34,45,48,34,58,116,125,102,117,110,99,116,105,111,110,32,98,114,40,110,44,116,44,114,41,123,118,97,114,32,101,61,45,49,44,117,61,111,44,105,61,110,46,108,101,110,103,116,104,44,99,61,116,114,117,101,44,97,61,91,93,44,108,61,97,59,105,102,40,114,41,99,61,102,97,108,115,101,44,117,61,102,59,101,108,115,101,32,105,102,40,50,48,48,60,61,105,41,123,105,102,40,117,61,116,63,110,117,108,108,58,115,111,40,110,41,41,114,101,116,117,114,110,32,85,40,117,41,59,99,61,102,97,108,115,101,44,117,61,79,44,108,61,110,101,119,32,78,110,125,101,108,115,101,32,108,61,116,63,91,93,58,97,59,110,58,102,111,114,40,59,43,43,101,60,105,59,41,123,118,97,114,32,115,61,110,91,101,93,44,104,61,116,63,116,40,115,41,58,115,44,115,61,114,124,124,48,33,61,61,115,63,115,58,48,59,105,102,40,99,38,38,104,61,61,61,104,41,123,102,111,114,40,118,97,114,32,112,61,108,46,108,101,110,103,116,104,59,112,45,45,59,41,105,102,40,108,91,112,93,61,61,61,104,41,99,111,110,116,105,110,117,101,32,110,59,10,116,38,38,108,46,112,117,115,104,40,104,41,44,97,46,112,117,115,104,40,115,41,125,101,108,115,101,32,117,40,108,44,104,44,114,41,124,124,40,108,33,61,61,97,38,38,108,46,112,117,115,104,40,104,41,44,97,46,112,117,115,104,40,115,41,41,125,114,101,116,117,114,110,32,97,125,102,117,110,99,116,105,111,110,32,120,114,40,110,44,116,41,123,114,101,116,117,114,110,32,116,61,83,114,40,116,44,110,41,44,110,61,50,62,116,46,108,101,110,103,116,104,63,110,58,107,116,40,110,44,104,114,40,116,44,48,44,45,49,41,41,44,110,117,108,108,61,61,110,124,124,100,101,108,101,116,101,32,110,91,77,101,40,86,101,40,116,41,41,93,125,102,117,110,99,116,105,111,110,32,106,114,40,110,44,116,44,114,44,101,41,123,102,111,114,40,118,97,114,32,117,61,110,46,108,101,110,103,116,104,44,105,61,101,63,117,58,45,49,59,40,101,63,105,45,45,58,43,43,105,60,117,41,38,38,116,40,110,91,105,93,44,105,44,110,41,59,41,59,114,101,116,117,114,110,32,114,63,104,114,40,110,44,101,63,48,58,105,44,101,63,105,43,49,58,117,41,58,104,114,40,110,44,101,63,105,43,49,58,48,44,101,63,117,58,105,41,125,102,117,110,99,116,105,111,110,32,119,114,40,110,44,116,41,123,118,97,114,32,114,61,110,59,114,101,116,117,114,110,32,114,32,105,110,115,116,97,110,99,101,111,102,32,85,110,38,38,40,114,61,114,46,118,97,108,117,101,40,41,41,44,108,40,116,44,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,116,46,102,117,110,99,46,97,112,112,108,121,40,116,46,116,104,105,115,65,114,103,44,97,40,91,110,93,44,116,46,97,114,103,115,41,41,125,44,114,41,125,102,117,110,99,116,105,111,110,32,109,114,40,110,44,116,44,114,41,123,118,97,114,32,101,61,110,46,108,101,110,103,116,104,59,105,102,40,50,62,101,41,114,101,116,117,114,110,32,101,63,98,114,40,110,91,48,93,41,58,91,93,59,102,111,114,40,118,97,114,32,117,61,45,49,44,105,61,75,117,40,101,41,59,43,43,117,60,101,59,41,102,111,114,40,118,97,114,32,111,61,110,91,117,93,44,102,61,45,49,59,43,43,102,60,101,59,41,102,33,61,117,38,38,40,105,91,117,93,61,121,116,40,105,91,117,93,124,124,111,44,110,91,102,93,44,116,44,114,41,41,59,10,114,101,116,117,114,110,32,98,114,40,119,116,40,105,44,49,41,44,116,44,114,41,125,102,117,110,99,116,105,111,110,32,65,114,40,110,44,116,44,114,41,123,102,111,114,40,118,97,114,32,101,61,45,49,44,117,61,110,46,108,101,110,103,116,104,44,105,61,116,46,108,101,110,103,116,104,44,111,61,123,125,59,43,43,101,60,117,59,41,114,40,111,44,110,91,101,93,44,101,60,105,63,116,91,101,93,58,84,41,59,114,101,116,117,114,110,32,111,125,102,117,110,99,116,105,111,110,32,69,114,40,110,41,123,114,101,116,117,114,110,32,104,117,40,110,41,63,110,58,91,93,125,102,117,110,99,116,105,111,110,32,107,114,40,110,41,123,114,101,116,117,114,110,32,116,121,112,101,111,102,32,110,61,61,34,102,117,110,99,116,105,111,110,34,63,110,58,36,117,125,102,117,110,99,116,105,111,110,32,83,114,40,110,44,116,41,123,114,101,116,117,114,110,32,102,102,40,110,41,63,110,58,73,101,40,110,44,116,41,63,91,110,93,58,106,111,40,73,117,40,110,41,41,125,102,117,110,99,116,105,111,110,32,79,114,40,110,44,116,44,114,41,123,118,97,114,32,101,61,110,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,114,61,114,61,61,61,84,63,101,58,114,44,33,116,38,38,114,62,61,101,63,110,58,104,114,40,110,44,116,44,114,41,125,102,117,110,99,116,105,111,110,32,73,114,40,110,44,116,41,123,105,102,40,116,41,114,101,116,117,114,110,32,110,46,115,108,105,99,101,40,41,59,118,97,114,32,114,61,110,46,108,101,110,103,116,104,44,114,61,103,105,63,103,105,40,114,41,58,110,101,119,32,110,46,99,111,110,115,116,114,117,99,116,111,114,40,114,41,59,114,101,116,117,114,110,32,110,46,99,111,112,121,40,114,41,44,114,125,102,117,110,99,116,105,111,110,32,82,114,40,110,41,123,118,97,114,32,116,61,110,101,119,32,110,46,99,111,110,115,116,114,117,99,116,111,114,40,110,46,98,121,116,101,76,101,110,103,116,104,41,59,114,101,116,117,114,110,32,110,101,119,32,118,105,40,116,41,46,115,101,116,40,110,101,119,32,118,105,40,110,41,41,44,10,116,125,102,117,110,99,116,105,111,110,32,122,114,40,110,44,116,41,123,114,101,116,117,114,110,32,110,101,119,32,110,46,99,111,110,115,116,114,117,99,116,111,114,40,116,63,82,114,40,110,46,98,117,102,102,101,114,41,58,110,46,98,117,102,102,101,114,44,110,46,98,121,116,101,79,102,102,115,101,116,44,110,46,108,101,110,103,116,104,41,125,102,117,110,99,116,105,111,110,32,87,114,40,110,44,116,41,123,105,102,40,110,33,61,61,116,41,123,118,97,114,32,114,61,110,33,61,61,84,44,101,61,110,117,108,108,61,61,61,110,44,117,61,110,61,61,61,110,44,105,61,119,117,40,110,41,44,111,61,116,33,61,61,84,44,102,61,110,117,108,108,61,61,61,116,44,99,61,116,61,61,61,116,44,97,61,119,117,40,116,41,59,105,102,40,33,102,38,38,33,97,38,38,33,105,38,38,110,62,116,124,124,105,38,38,111,38,38,99,38,38,33,102,38,38,33,97,124,124,101,38,38,111,38,38,99,124,124,33,114,38,38,99,124,124,33,117,41,114,101,116,117,114,110,32,49,59,105,102,40,33,101,38,38,33,105,38,38,33,97,38,38,110,60,116,124,124,97,38,38,114,38,38,117,38,38,33,101,38,38,33,105,124,124,102,38,38,114,38,38,117,124,124,33,111,38,38,117,124,124,33,99,41,114,101,116,117,114,110,45,49,125,114,101,116,117,114,110,32,48,125,102,117,110,99,116,105,111,110,32,66,114,40,110,44,116,44,114,44,101,41,123,118,97,114,32,117,61,45,49,44,105,61,110,46,108,101,110,103,116,104,44,111,61,114,46,108,101,110,103,116,104,44,102,61,45,49,44,99,61,116,46,108,101,110,103,116,104,44,97,61,85,105,40,105,45,111,44,48,41,44,108,61,75,117,40,99,43,97,41,59,102,111,114,40,101,61,33,101,59,43,43,102,60,99,59,41,108,91,102,93,61,116,91,102,93,59,102,111,114,40,59,43,43,117,60,111,59,41,40,101,124,124,117,60,105,41,38,38,40,108,91,114,91,117,93,93,61,110,91,117,93,41,59,102,111,114,40,59,97,45,45,59,41,108,91,102,43,43,93,61,110,91,117,43,43,93,59,10,114,101,116,117,114,110,32,108,125,102,117,110,99,116,105,111,110,32,76,114,40,110,44,116,44,114,44,101,41,123,118,97,114,32,117,61,45,49,44,105,61,110,46,108,101,110,103,116,104,44,111,61,45,49,44,102,61,114,46,108,101,110,103,116,104,44,99,61,45,49,44,97,61,116,46,108,101,110,103,116,104,44,108,61,85,105,40,105,45,102,44,48,41,44,115,61,75,117,40,108,43,97,41,59,102,111,114,40,101,61,33,101,59,43,43,117,60,108,59,41,115,91,117,93,61,110,91,117,93,59,102,111,114,40,108,61,117,59,43,43,99,60,97,59,41,115,91,108,43,99,93,61,116,91,99,93,59,102,111,114,40,59,43,43,111,60,102,59,41,40,101,124,124,117,60,105,41,38,38,40,115,91,108,43,114,91,111,93,93,61,110,91,117,43,43,93,41,59,114,101,116,117,114,110,32,115,125,102,117,110,99,116,105,111,110,32,85,114,40,110,44,116,41,123,118,97,114,32,114,61,45,49,44,101,61,110,46,108,101,110,103,116,104,59,102,111,114,40,116,124,124,40,116,61,75,117,40,101,41,41,59,43,43,114,60,101,59,41,116,91,114,93,61,110,91,114,93,59,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,67,114,40,110,44,116,44,114,44,101,41,123,118,97,114,32,117,61,33,114,59,114,124,124,40,114,61,123,125,41,59,102,111,114,40,118,97,114,32,105,61,45,49,44,111,61,116,46,108,101,110,103,116,104,59,43,43,105,60,111,59,41,123,118,97,114,32,102,61,116,91,105,93,44,99,61,101,63,101,40,114,91,102,93,44,110,91,102,93,44,102,44,114,44,110,41,58,84,59,99,61,61,61,84,38,38,40,99,61,110,91,102,93,41,44,117,63,115,116,40,114,44,102,44,99,41,58,111,116,40,114,44,102,44,99,41,125,114,101,116,117,114,110,32,114,125,102,117,110,99,116,105,111,110,32,68,114,40,110,44,116,41,123,114,101,116,117,114,110,32,67,114,40,110,44,112,111,40,110,41,44,116,41,125,102,117,110,99,116,105,111,110,32,77,114,40,110,44,116,41,123,114,101,116,117,114,110,32,67,114,40,110,44,95,111,40,110,41,44,116,41,59,10,125,102,117,110,99,116,105,111,110,32,84,114,40,110,44,114,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,101,44,117,41,123,118,97,114,32,105,61,102,102,40,101,41,63,116,58,99,116,44,111,61,114,63,114,40,41,58,123,125,59,114,101,116,117,114,110,32,105,40,101,44,110,44,121,101,40,117,44,50,41,44,111,41,125,125,102,117,110,99,116,105,111,110,32,36,114,40,110,41,123,114,101,116,117,114,110,32,102,114,40,102,117,110,99,116,105,111,110,40,116,44,114,41,123,118,97,114,32,101,61,45,49,44,117,61,114,46,108,101,110,103,116,104,44,105,61,49,60,117,63,114,91,117,45,49,93,58,84,44,111,61,50,60,117,63,114,91,50,93,58,84,44,105,61,51,60,110,46,108,101,110,103,116,104,38,38,116,121,112,101,111,102,32,105,61,61,34,102,117,110,99,116,105,111,110,34,63,40,117,45,45,44,105,41,58,84,59,102,111,114,40,111,38,38,79,101,40,114,91,48,93,44,114,91,49,93,44,111,41,38,38,40,105,61,51,62,117,63,84,58,105,44,117,61,49,41,44,116,61,81,117,40,116,41,59,43,43,101,60,117,59,41,40,111,61,114,91,101,93,41,38,38,110,40,116,44,111,44,101,44,105,41,59,114,101,116,117,114,110,32,116,125,41,125,102,117,110,99,116,105,111,110,32,70,114,40,110,44,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,114,44,101,41,123,105,102,40,110,117,108,108,61,61,114,41,114,101,116,117,114,110,32,114,59,105,102,40,33,115,117,40,114,41,41,114,101,116,117,114,110,32,110,40,114,44,101,41,59,102,111,114,40,118,97,114,32,117,61,114,46,108,101,110,103,116,104,44,105,61,116,63,117,58,45,49,44,111,61,81,117,40,114,41,59,40,116,63,105,45,45,58,43,43,105,60,117,41,38,38,102,97,108,115,101,33,61,61,101,40,111,91,105,93,44,105,44,111,41,59,41,59,114,101,116,117,114,110,32,114,125,125,102,117,110,99,116,105,111,110,32,78,114,40,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,44,114,44,101,41,123,10,118,97,114,32,117,61,45,49,44,105,61,81,117,40,116,41,59,101,61,101,40,116,41,59,102,111,114,40,118,97,114,32,111,61,101,46,108,101,110,103,116,104,59,111,45,45,59,41,123,118,97,114,32,102,61,101,91,110,63,111,58,43,43,117,93,59,105,102,40,102,97,108,115,101,61,61,61,114,40,105,91,102,93,44,102,44,105,41,41,98,114,101,97,107,125,114,101,116,117,114,110,32,116,125,125,102,117,110,99,116,105,111,110,32,80,114,40,110,44,116,44,114,41,123,102,117,110,99,116,105,111,110,32,101,40,41,123,114,101,116,117,114,110,40,116,104,105,115,38,38,116,104,105,115,33,61,61,36,110,38,38,116,104,105,115,32,105,110,115,116,97,110,99,101,111,102,32,101,63,105,58,110,41,46,97,112,112,108,121,40,117,63,114,58,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,125,118,97,114,32,117,61,49,38,116,44,105,61,86,114,40,110,41,59,114,101,116,117,114,110,32,101,125,102,117,110,99,116,105,111,110,32,90,114,40,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,41,123,116,61,73,117,40,116,41,59,118,97,114,32,114,61,82,110,46,116,101,115,116,40,116,41,63,77,40,116,41,58,84,44,101,61,114,63,114,91,48,93,58,116,46,99,104,97,114,65,116,40,48,41,59,114,101,116,117,114,110,32,116,61,114,63,79,114,40,114,44,49,41,46,106,111,105,110,40,34,34,41,58,116,46,115,108,105,99,101,40,49,41,44,101,91,110,93,40,41,43,116,125,125,102,117,110,99,116,105,111,110,32,113,114,40,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,108,40,77,117,40,68,117,40,116,41,46,114,101,112,108,97,99,101,40,107,110,44,34,34,41,41,44,110,44,34,34,41,125,125,102,117,110,99,116,105,111,110,32,86,114,40,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,97,114,103,117,109,101,110,116,115,59,115,119,105,116,99,104,40,116,46,108,101,110,103,116,104,41,123,10,99,97,115,101,32,48,58,114,101,116,117,114,110,32,110,101,119,32,110,59,99,97,115,101,32,49,58,114,101,116,117,114,110,32,110,101,119,32,110,40,116,91,48,93,41,59,99,97,115,101,32,50,58,114,101,116,117,114,110,32,110,101,119,32,110,40,116,91,48,93,44,116,91,49,93,41,59,99,97,115,101,32,51,58,114,101,116,117,114,110,32,110,101,119,32,110,40,116,91,48,93,44,116,91,49,93,44,116,91,50,93,41,59,99,97,115,101,32,52,58,114,101,116,117,114,110,32,110,101,119,32,110,40,116,91,48,93,44,116,91,49,93,44,116,91,50,93,44,116,91,51,93,41,59,99,97,115,101,32,53,58,114,101,116,117,114,110,32,110,101,119,32,110,40,116,91,48,93,44,116,91,49,93,44,116,91,50,93,44,116,91,51,93,44,116,91,52,93,41,59,99,97,115,101,32,54,58,114,101,116,117,114,110,32,110,101,119,32,110,40,116,91,48,93,44,116,91,49,93,44,116,91,50,93,44,116,91,51,93,44,116,91,52,93,44,116,91,53,93,41,59,99,97,115,101,32,55,58,114,101,116,117,114,110,32,110,101,119,32,110,40,116,91,48,93,44,116,91,49,93,44,116,91,50,93,44,116,91,51,93,44,116,91,52,93,44,116,91,53,93,44,116,91,54,93,41,125,118,97,114,32,114,61,101,111,40,110,46,112,114,111,116,111,116,121,112,101,41,44,116,61,110,46,97,112,112,108,121,40,114,44,116,41,59,114,101,116,117,114,110,32,100,117,40,116,41,63,116,58,114,125,125,102,117,110,99,116,105,111,110,32,75,114,40,116,44,114,44,101,41,123,102,117,110,99,116,105,111,110,32,117,40,41,123,102,111,114,40,118,97,114,32,111,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,44,102,61,75,117,40,111,41,44,99,61,111,44,97,61,100,101,40,117,41,59,99,45,45,59,41,102,91,99,93,61,97,114,103,117,109,101,110,116,115,91,99,93,59,114,101,116,117,114,110,32,99,61,51,62,111,38,38,102,91,48,93,33,61,61,97,38,38,102,91,111,45,49,93,33,61,61,97,63,91,93,58,76,40,102,44,97,41,44,10,111,45,61,99,46,108,101,110,103,116,104,44,111,60,101,63,117,101,40,116,44,114,44,74,114,44,117,46,112,108,97,99,101,104,111,108,100,101,114,44,84,44,102,44,99,44,84,44,84,44,101,45,111,41,58,110,40,116,104,105,115,38,38,116,104,105,115,33,61,61,36,110,38,38,116,104,105,115,32,105,110,115,116,97,110,99,101,111,102,32,117,63,105,58,116,44,116,104,105,115,44,102,41,125,118,97,114,32,105,61,86,114,40,116,41,59,114,101,116,117,114,110,32,117,125,102,117,110,99,116,105,111,110,32,71,114,40,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,44,114,44,101,41,123,118,97,114,32,117,61,81,117,40,116,41,59,105,102,40,33,115,117,40,116,41,41,123,118,97,114,32,105,61,121,101,40,114,44,51,41,59,116,61,87,117,40,116,41,44,114,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,105,40,117,91,110,93,44,110,44,117,41,125,125,114,101,116,117,114,110,32,114,61,110,40,116,44,114,44,101,41,44,45,49,60,114,63,117,91,105,63,116,91,114,93,58,114,93,58,84,125,125,102,117,110,99,116,105,111,110,32,72,114,40,110,41,123,114,101,116,117,114,110,32,112,101,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,114,61,116,46,108,101,110,103,116,104,44,101,61,114,44,117,61,79,110,46,112,114,111,116,111,116,121,112,101,46,116,104,114,117,59,102,111,114,40,110,38,38,116,46,114,101,118,101,114,115,101,40,41,59,101,45,45,59,41,123,118,97,114,32,105,61,116,91,101,93,59,105,102,40,116,121,112,101,111,102,32,105,33,61,34,102,117,110,99,116,105,111,110,34,41,116,104,114,111,119,32,110,101,119,32,116,105,40,34,69,120,112,101,99,116,101,100,32,97,32,102,117,110,99,116,105,111,110,34,41,59,105,102,40,117,38,38,33,111,38,38,34,119,114,97,112,112,101,114,34,61,61,103,101,40,105,41,41,118,97,114,32,111,61,110,101,119,32,79,110,40,91,93,44,116,114,117,101,41,125,102,111,114,40,101,61,111,63,101,58,114,59,43,43,101,60,114,59,41,118,97,114,32,105,61,116,91,101,93,44,117,61,103,101,40,105,41,44,102,61,34,119,114,97,112,112,101,114,34,61,61,117,63,104,111,40,105,41,58,84,44,111,61,102,38,38,82,101,40,102,91,48,93,41,38,38,52,50,52,61,61,102,91,49,93,38,38,33,102,91,52,93,46,108,101,110,103,116,104,38,38,49,61,61,102,91,57,93,63,111,91,103,101,40,102,91,48,93,41,93,46,97,112,112,108,121,40,111,44,102,91,51,93,41,58,49,61,61,105,46,108,101,110,103,116,104,38,38,82,101,40,105,41,63,111,91,117,93,40,41,58,111,46,116,104,114,117,40,105,41,59,10,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,110,61,97,114,103,117,109,101,110,116,115,44,101,61,110,91,48,93,59,105,102,40,111,38,38,49,61,61,110,46,108,101,110,103,116,104,38,38,102,102,40,101,41,41,114,101,116,117,114,110,32,111,46,112,108,97,110,116,40,101,41,46,118,97,108,117,101,40,41,59,102,111,114,40,118,97,114,32,117,61,48,44,110,61,114,63,116,91,117,93,46,97,112,112,108,121,40,116,104,105,115,44,110,41,58,101,59,43,43,117,60,114,59,41,110,61,116,91,117,93,46,99,97,108,108,40,116,104,105,115,44,110,41,59,114,101,116,117,114,110,32,110,125,125,41,125,102,117,110,99,116,105,111,110,32,74,114,40,110,44,116,44,114,44,101,44,117,44,105,44,111,44,102,44,99,44,97,41,123,102,117,110,99,116,105,111,110,32,108,40,41,123,102,111,114,40,118,97,114,32,100,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,44,121,61,75,117,40,100,41,44,98,61,100,59,98,45,45,59,41,121,91,98,93,61,97,114,103,117,109,101,110,116,115,91,98,93,59,105,102,40,95,41,123,118,97,114,32,120,44,106,61,100,101,40,108,41,44,98,61,121,46,108,101,110,103,116,104,59,102,111,114,40,120,61,48,59,98,45,45,59,41,121,91,98,93,61,61,61,106,38,38,43,43,120,125,105,102,40,101,38,38,40,121,61,66,114,40,121,44,101,44,117,44,95,41,41,44,105,38,38,40,121,61,76,114,40,121,44,105,44,111,44,95,41,41,44,100,45,61,120,44,95,38,38,100,60,97,41,114,101,116,117,114,110,32,106,61,76,40,121,44,106,41,44,117,101,40,110,44,116,44,74,114,44,108,46,112,108,97,99,101,104,111,108,100,101,114,44,114,44,121,44,106,44,102,44,99,44,97,45,100,41,59,105,102,40,106,61,104,63,114,58,116,104,105,115,44,98,61,112,63,106,91,110,93,58,110,44,100,61,121,46,108,101,110,103,116,104,44,102,41,123,120,61,121,46,108,101,110,103,116,104,59,102,111,114,40,118,97,114,32,119,61,67,105,40,102,46,108,101,110,103,116,104,44,120,41,44,109,61,85,114,40,121,41,59,119,45,45,59,41,123,10,118,97,114,32,65,61,102,91,119,93,59,121,91,119,93,61,83,101,40,65,44,120,41,63,109,91,65,93,58,84,125,125,101,108,115,101,32,118,38,38,49,60,100,38,38,121,46,114,101,118,101,114,115,101,40,41,59,114,101,116,117,114,110,32,115,38,38,99,60,100,38,38,40,121,46,108,101,110,103,116,104,61,99,41,44,116,104,105,115,38,38,116,104,105,115,33,61,61,36,110,38,38,116,104,105,115,32,105,110,115,116,97,110,99,101,111,102,32,108,38,38,40,98,61,103,124,124,86,114,40,98,41,41,44,98,46,97,112,112,108,121,40,106,44,121,41,125,118,97,114,32,115,61,49,50,56,38,116,44,104,61,49,38,116,44,112,61,50,38,116,44,95,61,50,52,38,116,44,118,61,53,49,50,38,116,44,103,61,112,63,84,58,86,114,40,110,41,59,114,101,116,117,114,110,32,108,125,102,117,110,99,116,105,111,110,32,89,114,40,110,44,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,114,44,101,41,123,114,101,116,117,114,110,32,66,116,40,114,44,110,44,116,40,101,41,41,125,125,102,117,110,99,116,105,111,110,32,81,114,40,110,44,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,114,44,101,41,123,118,97,114,32,117,59,105,102,40,114,61,61,61,84,38,38,101,61,61,61,84,41,114,101,116,117,114,110,32,116,59,105,102,40,114,33,61,61,84,38,38,40,117,61,114,41,44,101,33,61,61,84,41,123,105,102,40,117,61,61,61,84,41,114,101,116,117,114,110,32,101,59,116,121,112,101,111,102,32,114,61,61,34,115,116,114,105,110,103,34,124,124,116,121,112,101,111,102,32,101,61,61,34,115,116,114,105,110,103,34,63,40,114,61,121,114,40,114,41,44,101,61,121,114,40,101,41,41,58,40,114,61,100,114,40,114,41,44,101,61,100,114,40,101,41,41,44,117,61,110,40,114,44,101,41,125,114,101,116,117,114,110,32,117,125,125,102,117,110,99,116,105,111,110,32,88,114,40,116,41,123,114,101,116,117,114,110,32,112,101,40,102,117,110,99,116,105,111,110,40,114,41,123,10,114,101,116,117,114,110,32,114,61,99,40,114,44,107,40,121,101,40,41,41,41,44,102,114,40,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,117,61,116,104,105,115,59,114,101,116,117,114,110,32,116,40,114,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,40,116,44,117,44,101,41,125,41,125,41,125,41,125,102,117,110,99,116,105,111,110,32,110,101,40,110,44,116,41,123,116,61,116,61,61,61,84,63,34,32,34,58,121,114,40,116,41,59,118,97,114,32,114,61,116,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,50,62,114,63,114,63,111,114,40,116,44,110,41,58,116,58,40,114,61,111,114,40,116,44,79,105,40,110,47,68,40,116,41,41,41,44,82,110,46,116,101,115,116,40,116,41,63,79,114,40,77,40,114,41,44,48,44,110,41,46,106,111,105,110,40,34,34,41,58,114,46,115,108,105,99,101,40,48,44,110,41,41,125,102,117,110,99,116,105,111,110,32,116,101,40,116,44,114,44,101,44,117,41,123,102,117,110,99,116,105,111,110,32,105,40,41,123,102,111,114,40,118,97,114,32,114,61,45,49,44,99,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,44,97,61,45,49,44,108,61,117,46,108,101,110,103,116,104,44,115,61,75,117,40,108,43,99,41,44,104,61,116,104,105,115,38,38,116,104,105,115,33,61,61,36,110,38,38,116,104,105,115,32,105,110,115,116,97,110,99,101,111,102,32,105,63,102,58,116,59,43,43,97,60,108,59,41,115,91,97,93,61,117,91,97,93,59,102,111,114,40,59,99,45,45,59,41,115,91,97,43,43,93,61,97,114,103,117,109,101,110,116,115,91,43,43,114,93,59,114,101,116,117,114,110,32,110,40,104,44,111,63,101,58,116,104,105,115,44,115,41,125,118,97,114,32,111,61,49,38,114,44,102,61,86,114,40,116,41,59,114,101,116,117,114,110,32,105,125,102,117,110,99,116,105,111,110,32,114,101,40,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,44,114,44,101,41,123,10,101,38,38,116,121,112,101,111,102,32,101,33,61,34,110,117,109,98,101,114,34,38,38,79,101,40,116,44,114,44,101,41,38,38,40,114,61,101,61,84,41,44,116,61,65,117,40,116,41,44,114,61,61,61,84,63,40,114,61,116,44,116,61,48,41,58,114,61,65,117,40,114,41,44,101,61,101,61,61,61,84,63,116,60,114,63,49,58,45,49,58,65,117,40,101,41,59,118,97,114,32,117,61,45,49,59,114,61,85,105,40,79,105,40,40,114,45,116,41,47,40,101,124,124,49,41,41,44,48,41,59,102,111,114,40,118,97,114,32,105,61,75,117,40,114,41,59,114,45,45,59,41,105,91,110,63,114,58,43,43,117,93,61,116,44,116,43,61,101,59,114,101,116,117,114,110,32,105,125,125,102,117,110,99,116,105,111,110,32,101,101,40,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,44,114,41,123,114,101,116,117,114,110,32,116,121,112,101,111,102,32,116,61,61,34,115,116,114,105,110,103,34,38,38,116,121,112,101,111,102,32,114,61,61,34,115,116,114,105,110,103,34,124,124,40,116,61,83,117,40,116,41,44,114,61,83,117,40,114,41,41,44,110,40,116,44,114,41,125,125,102,117,110,99,116,105,111,110,32,117,101,40,110,44,116,44,114,44,101,44,117,44,105,44,111,44,102,44,99,44,97,41,123,118,97,114,32,108,61,56,38,116,44,115,61,108,63,111,58,84,59,111,61,108,63,84,58,111,59,118,97,114,32,104,61,108,63,105,58,84,59,114,101,116,117,114,110,32,105,61,108,63,84,58,105,44,116,61,40,116,124,40,108,63,51,50,58,54,52,41,41,38,126,40,108,63,54,52,58,51,50,41,44,52,38,116,124,124,40,116,38,61,45,52,41,44,117,61,91,110,44,116,44,117,44,104,44,115,44,105,44,111,44,102,44,99,44,97,93,44,114,61,114,46,97,112,112,108,121,40,84,44,117,41,44,82,101,40,110,41,38,38,121,111,40,114,44,117,41,44,114,46,112,108,97,99,101,104,111,108,100,101,114,61,101,44,85,101,40,114,44,110,44,116,41,125,102,117,110,99,116,105,111,110,32,105,101,40,110,41,123,10,118,97,114,32,116,61,89,117,91,110,93,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,110,44,114,41,123,105,102,40,110,61,83,117,40,110,41,44,40,114,61,110,117,108,108,61,61,114,63,48,58,67,105,40,69,117,40,114,41,44,50,57,50,41,41,38,38,87,105,40,110,41,41,123,118,97,114,32,101,61,40,73,117,40,110,41,43,34,101,34,41,46,115,112,108,105,116,40,34,101,34,41,44,101,61,116,40,101,91,48,93,43,34,101,34,43,40,43,101,91,49,93,43,114,41,41,44,101,61,40,73,117,40,101,41,43,34,101,34,41,46,115,112,108,105,116,40,34,101,34,41,59,114,101,116,117,114,110,43,40,101,91,48,93,43,34,101,34,43,40,43,101,91,49,93,45,114,41,41,125,114,101,116,117,114,110,32,116,40,110,41,125,125,102,117,110,99,116,105,111,110,32,111,101,40,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,114,61,118,111,40,116,41,59,114,101,116,117,114,110,34,91,111,98,106,101,99,116,32,77,97,112,93,34,61,61,114,63,87,40,116,41,58,34,91,111,98,106,101,99,116,32,83,101,116,93,34,61,61,114,63,67,40,116,41,58,69,40,116,44,110,40,116,41,41,125,125,102,117,110,99,116,105,111,110,32,102,101,40,110,44,116,44,114,44,101,44,117,44,105,44,111,44,102,41,123,118,97,114,32,99,61,50,38,116,59,105,102,40,33,99,38,38,116,121,112,101,111,102,32,110,33,61,34,102,117,110,99,116,105,111,110,34,41,116,104,114,111,119,32,110,101,119,32,116,105,40,34,69,120,112,101,99,116,101,100,32,97,32,102,117,110,99,116,105,111,110,34,41,59,118,97,114,32,97,61,101,63,101,46,108,101,110,103,116,104,58,48,59,105,102,40,97,124,124,40,116,38,61,45,57,55,44,101,61,117,61,84,41,44,111,61,111,61,61,61,84,63,111,58,85,105,40,69,117,40,111,41,44,48,41,44,102,61,102,61,61,61,84,63,102,58,69,117,40,102,41,44,97,45,61,117,63,117,46,108,101,110,103,116,104,58,48,44,10,54,52,38,116,41,123,118,97,114,32,108,61,101,44,115,61,117,59,101,61,117,61,84,125,118,97,114,32,104,61,99,63,84,58,104,111,40,110,41,59,114,101,116,117,114,110,32,105,61,91,110,44,116,44,114,44,101,44,117,44,108,44,115,44,105,44,111,44,102,93,44,104,38,38,40,114,61,105,91,49,93,44,110,61,104,91,49,93,44,116,61,114,124,110,44,101,61,49,50,56,61,61,110,38,38,56,61,61,114,124,124,49,50,56,61,61,110,38,38,50,53,54,61,61,114,38,38,105,91,55,93,46,108,101,110,103,116,104,60,61,104,91,56,93,124,124,51,56,52,61,61,110,38,38,104,91,55,93,46,108,101,110,103,116,104,60,61,104,91,56,93,38,38,56,61,61,114,44,49,51,49,62,116,124,124,101,41,38,38,40,49,38,110,38,38,40,105,91,50,93,61,104,91,50,93,44,116,124,61,49,38,114,63,48,58,52,41,44,40,114,61,104,91,51,93,41,38,38,40,101,61,105,91,51,93,44,105,91,51,93,61,101,63,66,114,40,101,44,114,44,104,91,52,93,41,58,114,44,105,91,52,93,61,101,63,76,40,105,91,51,93,44,34,95,95,108,111,100,97,115,104,95,112,108,97,99,101,104,111,108,100,101,114,95,95,34,41,58,104,91,52,93,41,44,40,114,61,104,91,53,93,41,38,38,40,101,61,105,91,53,93,44,105,91,53,93,61,101,63,76,114,40,101,44,114,44,104,91,54,93,41,58,114,44,105,91,54,93,61,101,63,76,40,105,91,53,93,44,34,95,95,108,111,100,97,115,104,95,112,108,97,99,101,104,111,108,100,101,114,95,95,34,41,58,104,91,54,93,41,44,40,114,61,104,91,55,93,41,38,38,40,105,91,55,93,61,114,41,44,49,50,56,38,110,38,38,40,105,91,56,93,61,110,117,108,108,61,61,105,91,56,93,63,104,91,56,93,58,67,105,40,105,91,56,93,44,104,91,56,93,41,41,44,110,117,108,108,61,61,105,91,57,93,38,38,40,105,91,57,93,61,104,91,57,93,41,44,105,91,48,93,61,104,91,48,93,44,105,91,49,93,61,116,41,44,110,61,105,91,48,93,44,10,116,61,105,91,49,93,44,114,61,105,91,50,93,44,101,61,105,91,51,93,44,117,61,105,91,52,93,44,102,61,105,91,57,93,61,105,91,57,93,61,61,61,84,63,99,63,48,58,110,46,108,101,110,103,116,104,58,85,105,40,105,91,57,93,45,97,44,48,41,44,33,102,38,38,50,52,38,116,38,38,40,116,38,61,45,50,53,41,44,85,101,40,40,104,63,99,111,58,121,111,41,40,116,38,38,49,33,61,116,63,56,61,61,116,124,124,49,54,61,61,116,63,75,114,40,110,44,116,44,102,41,58,51,50,33,61,116,38,38,51,51,33,61,116,124,124,117,46,108,101,110,103,116,104,63,74,114,46,97,112,112,108,121,40,84,44,105,41,58,116,101,40,110,44,116,44,114,44,101,41,58,80,114,40,110,44,116,44,114,41,44,105,41,44,110,44,116,41,125,102,117,110,99,116,105,111,110,32,99,101,40,110,44,116,44,114,44,101,41,123,114,101,116,117,114,110,32,110,61,61,61,84,124,124,108,117,40,110,44,101,105,91,114,93,41,38,38,33,111,105,46,99,97,108,108,40,101,44,114,41,63,116,58,110,125,102,117,110,99,116,105,111,110,32,97,101,40,110,44,116,44,114,44,101,44,117,44,105,41,123,114,101,116,117,114,110,32,100,117,40,110,41,38,38,100,117,40,116,41,38,38,40,105,46,115,101,116,40,116,44,110,41,44,89,116,40,110,44,116,44,84,44,97,101,44,105,41,44,105,46,100,101,108,101,116,101,40,116,41,41,44,110,125,102,117,110,99,116,105,111,110,32,108,101,40,110,41,123,114,101,116,117,114,110,32,120,117,40,110,41,63,84,58,110,125,102,117,110,99,116,105,111,110,32,115,101,40,110,44,116,44,114,44,101,44,117,44,105,41,123,118,97,114,32,111,61,49,38,114,44,102,61,110,46,108,101,110,103,116,104,44,99,61,116,46,108,101,110,103,116,104,59,105,102,40,102,33,61,99,38,38,33,40,111,38,38,99,62,102,41,41,114,101,116,117,114,110,32,102,97,108,115,101,59,105,102,40,40,99,61,105,46,103,101,116,40,110,41,41,38,38,105,46,103,101,116,40,116,41,41,114,101,116,117,114,110,32,99,61,61,116,59,10,118,97,114,32,99,61,45,49,44,97,61,116,114,117,101,44,108,61,50,38,114,63,110,101,119,32,78,110,58,84,59,102,111,114,40,105,46,115,101,116,40,110,44,116,41,44,105,46,115,101,116,40,116,44,110,41,59,43,43,99,60,102,59,41,123,118,97,114,32,115,61,110,91,99,93,44,112,61,116,91,99,93,59,105,102,40,101,41,118,97,114,32,95,61,111,63,101,40,112,44,115,44,99,44,116,44,110,44,105,41,58,101,40,115,44,112,44,99,44,110,44,116,44,105,41,59,105,102,40,95,33,61,61,84,41,123,105,102,40,95,41,99,111,110,116,105,110,117,101,59,97,61,102,97,108,115,101,59,98,114,101,97,107,125,105,102,40,108,41,123,105,102,40,33,104,40,116,44,102,117,110,99,116,105,111,110,40,110,44,116,41,123,105,102,40,33,79,40,108,44,116,41,38,38,40,115,61,61,61,110,124,124,117,40,115,44,110,44,114,44,101,44,105,41,41,41,114,101,116,117,114,110,32,108,46,112,117,115,104,40,116,41,125,41,41,123,97,61,102,97,108,115,101,59,98,114,101,97,107,125,125,101,108,115,101,32,105,102,40,115,33,61,61,112,38,38,33,117,40,115,44,112,44,114,44,101,44,105,41,41,123,97,61,102,97,108,115,101,59,98,114,101,97,107,125,125,114,101,116,117,114,110,32,105,46,100,101,108,101,116,101,40,110,41,44,105,46,100,101,108,101,116,101,40,116,41,44,97,125,102,117,110,99,116,105,111,110,32,104,101,40,110,44,116,44,114,44,101,44,117,44,105,44,111,41,123,115,119,105,116,99,104,40,114,41,123,99,97,115,101,34,91,111,98,106,101,99,116,32,68,97,116,97,86,105,101,119,93,34,58,105,102,40,110,46,98,121,116,101,76,101,110,103,116,104,33,61,116,46,98,121,116,101,76,101,110,103,116,104,124,124,110,46,98,121,116,101,79,102,102,115,101,116,33,61,116,46,98,121,116,101,79,102,102,115,101,116,41,98,114,101,97,107,59,110,61,110,46,98,117,102,102,101,114,44,116,61,116,46,98,117,102,102,101,114,59,99,97,115,101,34,91,111,98,106,101,99,116,32,65,114,114,97,121,66,117,102,102,101,114,93,34,58,10,105,102,40,110,46,98,121,116,101,76,101,110,103,116,104,33,61,116,46,98,121,116,101,76,101,110,103,116,104,124,124,33,105,40,110,101,119,32,118,105,40,110,41,44,110,101,119,32,118,105,40,116,41,41,41,98,114,101,97,107,59,114,101,116,117,114,110,32,116,114,117,101,59,99,97,115,101,34,91,111,98,106,101,99,116,32,66,111,111,108,101,97,110,93,34,58,99,97,115,101,34,91,111,98,106,101,99,116,32,68,97,116,101,93,34,58,99,97,115,101,34,91,111,98,106,101,99,116,32,78,117,109,98,101,114,93,34,58,114,101,116,117,114,110,32,108,117,40,43,110,44,43,116,41,59,99,97,115,101,34,91,111,98,106,101,99,116,32,69,114,114,111,114,93,34,58,114,101,116,117,114,110,32,110,46,110,97,109,101,61,61,116,46,110,97,109,101,38,38,110,46,109,101,115,115,97,103,101,61,61,116,46,109,101,115,115,97,103,101,59,99,97,115,101,34,91,111,98,106,101,99,116,32,82,101,103,69,120,112,93,34,58,99,97,115,101,34,91,111,98,106,101,99,116,32,83,116,114,105,110,103,93,34,58,114,101,116,117,114,110,32,110,61,61,116,43,34,34,59,99,97,115,101,34,91,111,98,106,101,99,116,32,77,97,112,93,34,58,118,97,114,32,102,61,87,59,99,97,115,101,34,91,111,98,106,101,99,116,32,83,101,116,93,34,58,105,102,40,102,124,124,40,102,61,85,41,44,110,46,115,105,122,101,33,61,116,46,115,105,122,101,38,38,33,40,49,38,101,41,41,98,114,101,97,107,59,114,101,116,117,114,110,40,114,61,111,46,103,101,116,40,110,41,41,63,114,61,61,116,58,40,101,124,61,50,44,111,46,115,101,116,40,110,44,116,41,44,116,61,115,101,40,102,40,110,41,44,102,40,116,41,44,101,44,117,44,105,44,111,41,44,111,46,100,101,108,101,116,101,40,110,41,44,116,41,59,99,97,115,101,34,91,111,98,106,101,99,116,32,83,121,109,98,111,108,93,34,58,105,102,40,116,111,41,114,101,116,117,114,110,32,116,111,46,99,97,108,108,40,110,41,61,61,116,111,46,99,97,108,108,40,116,41,125,10,114,101,116,117,114,110,32,102,97,108,115,101,125,102,117,110,99,116,105,111,110,32,112,101,40,110,41,123,114,101,116,117,114,110,32,120,111,40,66,101,40,110,44,84,44,90,101,41,44,110,43,34,34,41,125,102,117,110,99,116,105,111,110,32,95,101,40,110,41,123,114,101,116,117,114,110,32,83,116,40,110,44,87,117,44,112,111,41,125,102,117,110,99,116,105,111,110,32,118,101,40,110,41,123,114,101,116,117,114,110,32,83,116,40,110,44,66,117,44,95,111,41,125,102,117,110,99,116,105,111,110,32,103,101,40,110,41,123,102,111,114,40,118,97,114,32,116,61,110,46,110,97,109,101,43,34,34,44,114,61,71,105,91,116,93,44,101,61,111,105,46,99,97,108,108,40,71,105,44,116,41,63,114,46,108,101,110,103,116,104,58,48,59,101,45,45,59,41,123,118,97,114,32,117,61,114,91,101,93,44,105,61,117,46,102,117,110,99,59,105,102,40,110,117,108,108,61,61,105,124,124,105,61,61,110,41,114,101,116,117,114,110,32,117,46,110,97,109,101,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,100,101,40,110,41,123,114,101,116,117,114,110,40,111,105,46,99,97,108,108,40,65,110,44,34,112,108,97,99,101,104,111,108,100,101,114,34,41,63,65,110,58,110,41,46,112,108,97,99,101,104,111,108,100,101,114,125,102,117,110,99,116,105,111,110,32,121,101,40,41,123,118,97,114,32,110,61,65,110,46,105,116,101,114,97,116,101,101,124,124,70,117,44,110,61,110,61,61,61,70,117,63,113,116,58,110,59,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,110,40,97,114,103,117,109,101,110,116,115,91,48,93,44,97,114,103,117,109,101,110,116,115,91,49,93,41,58,110,125,102,117,110,99,116,105,111,110,32,98,101,40,110,44,116,41,123,118,97,114,32,114,61,110,46,95,95,100,97,116,97,95,95,44,101,61,116,121,112,101,111,102,32,116,59,114,101,116,117,114,110,40,34,115,116,114,105,110,103,34,61,61,101,124,124,34,110,117,109,98,101,114,34,61,61,101,124,124,34,115,121,109,98,111,108,34,61,61,101,124,124,34,98,111,111,108,101,97,110,34,61,61,101,63,34,95,95,112,114,111,116,111,95,95,34,33,61,61,116,58,110,117,108,108,61,61,61,116,41,63,114,91,116,121,112,101,111,102,32,116,61,61,34,115,116,114,105,110,103,34,63,34,115,116,114,105,110,103,34,58,34,104,97,115,104,34,93,58,114,46,109,97,112,59,10,125,102,117,110,99,116,105,111,110,32,120,101,40,110,41,123,102,111,114,40,118,97,114,32,116,61,87,117,40,110,41,44,114,61,116,46,108,101,110,103,116,104,59,114,45,45,59,41,123,118,97,114,32,101,61,116,91,114,93,44,117,61,110,91,101,93,59,116,91,114,93,61,91,101,44,117,44,117,61,61,61,117,38,38,33,100,117,40,117,41,93,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,106,101,40,110,44,116,41,123,118,97,114,32,114,61,110,117,108,108,61,61,110,63,84,58,110,91,116,93,59,114,101,116,117,114,110,32,70,116,40,114,41,63,114,58,84,125,102,117,110,99,116,105,111,110,32,119,101,40,110,44,116,44,114,41,123,116,61,83,114,40,116,44,110,41,59,102,111,114,40,118,97,114,32,101,61,45,49,44,117,61,116,46,108,101,110,103,116,104,44,105,61,102,97,108,115,101,59,43,43,101,60,117,59,41,123,118,97,114,32,111,61,77,101,40,116,91,101,93,41,59,105,102,40,33,40,105,61,110,117,108,108,33,61,110,38,38,114,40,110,44,111,41,41,41,98,114,101,97,107,59,110,61,110,91,111,93,125,114,101,116,117,114,110,32,105,124,124,43,43,101,33,61,117,63,105,58,40,117,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,44,33,33,117,38,38,103,117,40,117,41,38,38,83,101,40,111,44,117,41,38,38,40,102,102,40,110,41,124,124,111,102,40,110,41,41,41,125,102,117,110,99,116,105,111,110,32,109,101,40,110,41,123,118,97,114,32,116,61,110,46,108,101,110,103,116,104,44,114,61,110,101,119,32,110,46,99,111,110,115,116,114,117,99,116,111,114,40,116,41,59,114,101,116,117,114,110,32,116,38,38,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,110,91,48,93,38,38,111,105,46,99,97,108,108,40,110,44,34,105,110,100,101,120,34,41,38,38,40,114,46,105,110,100,101,120,61,110,46,105,110,100,101,120,44,114,46,105,110,112,117,116,61,110,46,105,110,112,117,116,41,44,114,125,102,117,110,99,116,105,111,110,32,65,101,40,110,41,123,10,114,101,116,117,114,110,32,116,121,112,101,111,102,32,110,46,99,111,110,115,116,114,117,99,116,111,114,33,61,34,102,117,110,99,116,105,111,110,34,124,124,122,101,40,110,41,63,123,125,58,101,111,40,100,105,40,110,41,41,125,102,117,110,99,116,105,111,110,32,69,101,40,110,44,116,44,114,41,123,118,97,114,32,101,61,110,46,99,111,110,115,116,114,117,99,116,111,114,59,115,119,105,116,99,104,40,116,41,123,99,97,115,101,34,91,111,98,106,101,99,116,32,65,114,114,97,121,66,117,102,102,101,114,93,34,58,114,101,116,117,114,110,32,82,114,40,110,41,59,99,97,115,101,34,91,111,98,106,101,99,116,32,66,111,111,108,101,97,110,93,34,58,99,97,115,101,34,91,111,98,106,101,99,116,32,68,97,116,101,93,34,58,114,101,116,117,114,110,32,110,101,119,32,101,40,43,110,41,59,99,97,115,101,34,91,111,98,106,101,99,116,32,68,97,116,97,86,105,101,119,93,34,58,114,101,116,117,114,110,32,116,61,114,63,82,114,40,110,46,98,117,102,102,101,114,41,58,110,46,98,117,102,102,101,114,44,110,101,119,32,110,46,99,111,110,115,116,114,117,99,116,111,114,40,116,44,110,46,98,121,116,101,79,102,102,115,101,116,44,110,46,98,121,116,101,76,101,110,103,116,104,41,59,99,97,115,101,34,91,111,98,106,101,99,116,32,70,108,111,97,116,51,50,65,114,114,97,121,93,34,58,99,97,115,101,34,91,111,98,106,101,99,116,32,70,108,111,97,116,54,52,65,114,114,97,121,93,34,58,99,97,115,101,34,91,111,98,106,101,99,116,32,73,110,116,56,65,114,114,97,121,93,34,58,99,97,115,101,34,91,111,98,106,101,99,116,32,73,110,116,49,54,65,114,114,97,121,93,34,58,99,97,115,101,34,91,111,98,106,101,99,116,32,73,110,116,51,50,65,114,114,97,121,93,34,58,99,97,115,101,34,91,111,98,106,101,99,116,32,85,105,110,116,56,65,114,114,97,121,93,34,58,99,97,115,101,34,91,111,98,106,101,99,116,32,85,105,110,116,56,67,108,97,109,112,101,100,65,114,114,97,121,93,34,58,10,99,97,115,101,34,91,111,98,106,101,99,116,32,85,105,110,116,49,54,65,114,114,97,121,93,34,58,99,97,115,101,34,91,111,98,106,101,99,116,32,85,105,110,116,51,50,65,114,114,97,121,93,34,58,114,101,116,117,114,110,32,122,114,40,110,44,114,41,59,99,97,115,101,34,91,111,98,106,101,99,116,32,77,97,112,93,34,58,114,101,116,117,114,110,32,110,101,119,32,101,59,99,97,115,101,34,91,111,98,106,101,99,116,32,78,117,109,98,101,114,93,34,58,99,97,115,101,34,91,111,98,106,101,99,116,32,83,116,114,105,110,103,93,34,58,114,101,116,117,114,110,32,110,101,119,32,101,40,110,41,59,99,97,115,101,34,91,111,98,106,101,99,116,32,82,101,103,69,120,112,93,34,58,114,101,116,117,114,110,32,116,61,110,101,119,32,110,46,99,111,110,115,116,114,117,99,116,111,114,40,110,46,115,111,117,114,99,101,44,95,110,46,101,120,101,99,40,110,41,41,44,116,46,108,97,115,116,73,110,100,101,120,61,110,46,108,97,115,116,73,110,100,101,120,44,116,59,99,97,115,101,34,91,111,98,106,101,99,116,32,83,101,116,93,34,58,114,101,116,117,114,110,32,110,101,119,32,101,59,99,97,115,101,34,91,111,98,106,101,99,116,32,83,121,109,98,111,108,93,34,58,114,101,116,117,114,110,32,116,111,63,81,117,40,116,111,46,99,97,108,108,40,110,41,41,58,123,125,125,125,102,117,110,99,116,105,111,110,32,107,101,40,110,41,123,114,101,116,117,114,110,32,102,102,40,110,41,124,124,111,102,40,110,41,124,124,33,33,40,106,105,38,38,110,38,38,110,91,106,105,93,41,125,102,117,110,99,116,105,111,110,32,83,101,40,110,44,116,41,123,118,97,114,32,114,61,116,121,112,101,111,102,32,110,59,114,101,116,117,114,110,32,116,61,110,117,108,108,61,61,116,63,57,48,48,55,49,57,57,50,53,52,55,52,48,57,57,49,58,116,44,33,33,116,38,38,40,34,110,117,109,98,101,114,34,61,61,114,124,124,34,115,121,109,98,111,108,34,33,61,114,38,38,98,110,46,116,101,115,116,40,110,41,41,38,38,45,49,60,110,38,38,48,61,61,110,37,49,38,38,110,60,116,59,10,125,102,117,110,99,116,105,111,110,32,79,101,40,110,44,116,44,114,41,123,105,102,40,33,100,117,40,114,41,41,114,101,116,117,114,110,32,102,97,108,115,101,59,118,97,114,32,101,61,116,121,112,101,111,102,32,116,59,114,101,116,117,114,110,33,33,40,34,110,117,109,98,101,114,34,61,61,101,63,115,117,40,114,41,38,38,83,101,40,116,44,114,46,108,101,110,103,116,104,41,58,34,115,116,114,105,110,103,34,61,61,101,38,38,116,32,105,110,32,114,41,38,38,108,117,40,114,91,116,93,44,110,41,125,102,117,110,99,116,105,111,110,32,73,101,40,110,44,116,41,123,105,102,40,102,102,40,110,41,41,114,101,116,117,114,110,32,102,97,108,115,101,59,118,97,114,32,114,61,116,121,112,101,111,102,32,110,59,114,101,116,117,114,110,33,40,34,110,117,109,98,101,114,34,33,61,114,38,38,34,115,121,109,98,111,108,34,33,61,114,38,38,34,98,111,111,108,101,97,110,34,33,61,114,38,38,110,117,108,108,33,61,110,38,38,33,119,117,40,110,41,41,124,124,40,110,110,46,116,101,115,116,40,110,41,124,124,33,88,46,116,101,115,116,40,110,41,124,124,110,117,108,108,33,61,116,38,38,110,32,105,110,32,81,117,40,116,41,41,125,102,117,110,99,116,105,111,110,32,82,101,40,110,41,123,118,97,114,32,116,61,103,101,40,110,41,44,114,61,65,110,91,116,93,59,114,101,116,117,114,110,32,116,121,112,101,111,102,32,114,61,61,34,102,117,110,99,116,105,111,110,34,38,38,116,32,105,110,32,85,110,46,112,114,111,116,111,116,121,112,101,38,38,40,110,61,61,61,114,124,124,40,116,61,104,111,40,114,41,44,33,33,116,38,38,110,61,61,61,116,91,48,93,41,41,125,102,117,110,99,116,105,111,110,32,122,101,40,110,41,123,118,97,114,32,116,61,110,38,38,110,46,99,111,110,115,116,114,117,99,116,111,114,59,114,101,116,117,114,110,32,110,61,61,61,40,116,121,112,101,111,102,32,116,61,61,34,102,117,110,99,116,105,111,110,34,38,38,116,46,112,114,111,116,111,116,121,112,101,124,124,101,105,41,125,102,117,110,99,116,105,111,110,32,87,101,40,110,44,116,41,123,10,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,114,41,123,114,101,116,117,114,110,32,110,117,108,108,33,61,114,38,38,40,114,91,110,93,61,61,61,116,38,38,40,116,33,61,61,84,124,124,110,32,105,110,32,81,117,40,114,41,41,41,125,125,102,117,110,99,116,105,111,110,32,66,101,40,116,44,114,44,101,41,123,114,101,116,117,114,110,32,114,61,85,105,40,114,61,61,61,84,63,116,46,108,101,110,103,116,104,45,49,58,114,44,48,41,44,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,118,97,114,32,117,61,97,114,103,117,109,101,110,116,115,44,105,61,45,49,44,111,61,85,105,40,117,46,108,101,110,103,116,104,45,114,44,48,41,44,102,61,75,117,40,111,41,59,43,43,105,60,111,59,41,102,91,105,93,61,117,91,114,43,105,93,59,102,111,114,40,105,61,45,49,44,111,61,75,117,40,114,43,49,41,59,43,43,105,60,114,59,41,111,91,105,93,61,117,91,105,93,59,114,101,116,117,114,110,32,111,91,114,93,61,101,40,102,41,44,110,40,116,44,116,104,105,115,44,111,41,125,125,102,117,110,99,116,105,111,110,32,76,101,40,110,44,116,41,123,105,102,40,40,34,99,111,110,115,116,114,117,99,116,111,114,34,33,61,61,116,124,124,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,110,91,116,93,41,38,38,34,95,95,112,114,111,116,111,95,95,34,33,61,116,41,114,101,116,117,114,110,32,110,91,116,93,125,102,117,110,99,116,105,111,110,32,85,101,40,110,44,116,44,114,41,123,118,97,114,32,101,61,116,43,34,34,59,116,61,120,111,59,118,97,114,32,117,44,105,61,36,101,59,114,101,116,117,114,110,32,117,61,40,117,61,101,46,109,97,116,99,104,40,97,110,41,41,63,117,91,49,93,46,115,112,108,105,116,40,108,110,41,58,91,93,44,114,61,105,40,117,44,114,41,44,40,105,61,114,46,108,101,110,103,116,104,41,38,38,40,117,61,105,45,49,44,114,91,117,93,61,40,49,60,105,63,34,38,32,34,58,34,34,41,43,114,91,117,93,44,10,114,61,114,46,106,111,105,110,40,50,60,105,63,34,44,32,34,58,34,32,34,41,44,101,61,101,46,114,101,112,108,97,99,101,40,99,110,44,34,123,92,110,47,42,32,91,119,114,97,112,112,101,100,32,119,105,116,104,32,34,43,114,43,34,93,32,42,47,92,110,34,41,41,44,116,40,110,44,101,41,125,102,117,110,99,116,105,111,110,32,67,101,40,110,41,123,118,97,114,32,116,61,48,44,114,61,48,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,68,105,40,41,44,117,61,49,54,45,40,101,45,114,41,59,105,102,40,114,61,101,44,48,60,117,41,123,105,102,40,56,48,48,60,61,43,43,116,41,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,91,48,93,125,101,108,115,101,32,116,61,48,59,114,101,116,117,114,110,32,110,46,97,112,112,108,121,40,84,44,97,114,103,117,109,101,110,116,115,41,125,125,102,117,110,99,116,105,111,110,32,68,101,40,110,44,116,41,123,118,97,114,32,114,61,45,49,44,101,61,110,46,108,101,110,103,116,104,44,117,61,101,45,49,59,102,111,114,40,116,61,116,61,61,61,84,63,101,58,116,59,43,43,114,60,116,59,41,123,118,97,114,32,101,61,105,114,40,114,44,117,41,44,105,61,110,91,101,93,59,110,91,101,93,61,110,91,114,93,44,110,91,114,93,61,105,125,114,101,116,117,114,110,32,110,46,108,101,110,103,116,104,61,116,44,110,125,102,117,110,99,116,105,111,110,32,77,101,40,110,41,123,105,102,40,116,121,112,101,111,102,32,110,61,61,34,115,116,114,105,110,103,34,124,124,119,117,40,110,41,41,114,101,116,117,114,110,32,110,59,118,97,114,32,116,61,110,43,34,34,59,114,101,116,117,114,110,34,48,34,61,61,116,38,38,49,47,110,61,61,45,36,63,34,45,48,34,58,116,125,102,117,110,99,116,105,111,110,32,84,101,40,110,41,123,105,102,40,110,117,108,108,33,61,110,41,123,116,114,121,123,114,101,116,117,114,110,32,105,105,46,99,97,108,108,40,110,41,125,99,97,116,99,104,40,110,41,123,125,10,114,101,116,117,114,110,32,110,43,34,34,125,114,101,116,117,114,110,34,34,125,102,117,110,99,116,105,111,110,32,36,101,40,110,44,116,41,123,114,101,116,117,114,110,32,114,40,78,44,102,117,110,99,116,105,111,110,40,114,41,123,118,97,114,32,101,61,34,95,46,34,43,114,91,48,93,59,116,38,114,91,49,93,38,38,33,111,40,110,44,101,41,38,38,110,46,112,117,115,104,40,101,41,125,41,44,110,46,115,111,114,116,40,41,125,102,117,110,99,116,105,111,110,32,70,101,40,110,41,123,105,102,40,110,32,105,110,115,116,97,110,99,101,111,102,32,85,110,41,114,101,116,117,114,110,32,110,46,99,108,111,110,101,40,41,59,118,97,114,32,116,61,110,101,119,32,79,110,40,110,46,95,95,119,114,97,112,112,101,100,95,95,44,110,46,95,95,99,104,97,105,110,95,95,41,59,114,101,116,117,114,110,32,116,46,95,95,97,99,116,105,111,110,115,95,95,61,85,114,40,110,46,95,95,97,99,116,105,111,110,115,95,95,41,44,116,46,95,95,105,110,100,101,120,95,95,61,110,46,95,95,105,110,100,101,120,95,95,44,116,46,95,95,118,97,108,117,101,115,95,95,61,110,46,95,95,118,97,108,117,101,115,95,95,44,116,125,102,117,110,99,116,105,111,110,32,78,101,40,110,44,116,44,114,41,123,118,97,114,32,101,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,101,63,40,114,61,110,117,108,108,61,61,114,63,48,58,69,117,40,114,41,44,48,62,114,38,38,40,114,61,85,105,40,101,43,114,44,48,41,41,44,95,40,110,44,121,101,40,116,44,51,41,44,114,41,41,58,45,49,125,102,117,110,99,116,105,111,110,32,80,101,40,110,44,116,44,114,41,123,118,97,114,32,101,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,105,102,40,33,101,41,114,101,116,117,114,110,45,49,59,118,97,114,32,117,61,101,45,49,59,114,101,116,117,114,110,32,114,33,61,61,84,38,38,40,117,61,69,117,40,114,41,44,117,61,48,62,114,63,85,105,40,101,43,117,44,48,41,58,67,105,40,117,44,101,45,49,41,41,44,10,95,40,110,44,121,101,40,116,44,51,41,44,117,44,116,114,117,101,41,125,102,117,110,99,116,105,111,110,32,90,101,40,110,41,123,114,101,116,117,114,110,40,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,41,63,119,116,40,110,44,49,41,58,91,93,125,102,117,110,99,116,105,111,110,32,113,101,40,110,41,123,114,101,116,117,114,110,32,110,38,38,110,46,108,101,110,103,116,104,63,110,91,48,93,58,84,125,102,117,110,99,116,105,111,110,32,86,101,40,110,41,123,118,97,114,32,116,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,116,63,110,91,116,45,49,93,58,84,125,102,117,110,99,116,105,111,110,32,75,101,40,110,44,116,41,123,114,101,116,117,114,110,32,110,38,38,110,46,108,101,110,103,116,104,38,38,116,38,38,116,46,108,101,110,103,116,104,63,101,114,40,110,44,116,41,58,110,125,102,117,110,99,116,105,111,110,32,71,101,40,110,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,110,63,110,58,36,105,46,99,97,108,108,40,110,41,125,102,117,110,99,116,105,111,110,32,72,101,40,110,41,123,105,102,40,33,110,124,124,33,110,46,108,101,110,103,116,104,41,114,101,116,117,114,110,91,93,59,118,97,114,32,116,61,48,59,114,101,116,117,114,110,32,110,61,105,40,110,44,102,117,110,99,116,105,111,110,40,110,41,123,105,102,40,104,117,40,110,41,41,114,101,116,117,114,110,32,116,61,85,105,40,110,46,108,101,110,103,116,104,44,116,41,44,116,114,117,101,125,41,44,65,40,116,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,99,40,110,44,98,40,116,41,41,125,41,125,102,117,110,99,116,105,111,110,32,74,101,40,116,44,114,41,123,105,102,40,33,116,124,124,33,116,46,108,101,110,103,116,104,41,114,101,116,117,114,110,91,93,59,118,97,114,32,101,61,72,101,40,116,41,59,114,101,116,117,114,110,32,110,117,108,108,61,61,114,63,101,58,99,40,101,44,102,117,110,99,116,105,111,110,40,116,41,123,10,114,101,116,117,114,110,32,110,40,114,44,84,44,116,41,125,41,125,102,117,110,99,116,105,111,110,32,89,101,40,110,41,123,114,101,116,117,114,110,32,110,61,65,110,40,110,41,44,110,46,95,95,99,104,97,105,110,95,95,61,116,114,117,101,44,110,125,102,117,110,99,116,105,111,110,32,81,101,40,110,44,116,41,123,114,101,116,117,114,110,32,116,40,110,41,125,102,117,110,99,116,105,111,110,32,88,101,40,41,123,114,101,116,117,114,110,32,116,104,105,115,125,102,117,110,99,116,105,111,110,32,110,117,40,110,44,116,41,123,114,101,116,117,114,110,40,102,102,40,110,41,63,114,58,117,111,41,40,110,44,121,101,40,116,44,51,41,41,125,102,117,110,99,116,105,111,110,32,116,117,40,110,44,116,41,123,114,101,116,117,114,110,40,102,102,40,110,41,63,101,58,105,111,41,40,110,44,121,101,40,116,44,51,41,41,125,102,117,110,99,116,105,111,110,32,114,117,40,110,44,116,41,123,114,101,116,117,114,110,40,102,102,40,110,41,63,99,58,71,116,41,40,110,44,121,101,40,116,44,51,41,41,125,102,117,110,99,116,105,111,110,32,101,117,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,116,61,114,63,84,58,116,44,116,61,110,38,38,110,117,108,108,61,61,116,63,110,46,108,101,110,103,116,104,58,116,44,102,101,40,110,44,49,50,56,44,84,44,84,44,84,44,84,44,116,41,125,102,117,110,99,116,105,111,110,32,117,117,40,110,44,116,41,123,118,97,114,32,114,59,105,102,40,116,121,112,101,111,102,32,116,33,61,34,102,117,110,99,116,105,111,110,34,41,116,104,114,111,119,32,110,101,119,32,116,105,40,34,69,120,112,101,99,116,101,100,32,97,32,102,117,110,99,116,105,111,110,34,41,59,114,101,116,117,114,110,32,110,61,69,117,40,110,41,44,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,48,60,45,45,110,38,38,40,114,61,116,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,41,44,49,62,61,110,38,38,40,116,61,84,41,44,10,114,125,125,102,117,110,99,116,105,111,110,32,105,117,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,116,61,114,63,84,58,116,44,110,61,102,101,40,110,44,56,44,84,44,84,44,84,44,84,44,84,44,116,41,44,110,46,112,108,97,99,101,104,111,108,100,101,114,61,105,117,46,112,108,97,99,101,104,111,108,100,101,114,44,110,125,102,117,110,99,116,105,111,110,32,111,117,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,116,61,114,63,84,58,116,44,110,61,102,101,40,110,44,49,54,44,84,44,84,44,84,44,84,44,84,44,116,41,44,110,46,112,108,97,99,101,104,111,108,100,101,114,61,111,117,46,112,108,97,99,101,104,111,108,100,101,114,44,110,125,102,117,110,99,116,105,111,110,32,102,117,40,110,44,116,44,114,41,123,102,117,110,99,116,105,111,110,32,101,40,116,41,123,118,97,114,32,114,61,99,44,101,61,97,59,114,101,116,117,114,110,32,99,61,97,61,84,44,95,61,116,44,115,61,110,46,97,112,112,108,121,40,101,44,114,41,125,102,117,110,99,116,105,111,110,32,117,40,110,41,123,118,97,114,32,114,61,110,45,112,59,114,101,116,117,114,110,32,110,45,61,95,44,112,61,61,61,84,124,124,114,62,61,116,124,124,48,62,114,124,124,103,38,38,110,62,61,108,125,102,117,110,99,116,105,111,110,32,105,40,41,123,118,97,114,32,110,61,71,111,40,41,59,105,102,40,117,40,110,41,41,114,101,116,117,114,110,32,111,40,110,41,59,118,97,114,32,114,44,101,61,98,111,59,114,61,110,45,95,44,110,61,116,45,40,110,45,112,41,44,114,61,103,63,67,105,40,110,44,108,45,114,41,58,110,44,104,61,101,40,105,44,114,41,125,102,117,110,99,116,105,111,110,32,111,40,110,41,123,114,101,116,117,114,110,32,104,61,84,44,100,38,38,99,63,101,40,110,41,58,40,99,61,97,61,84,44,115,41,125,102,117,110,99,116,105,111,110,32,102,40,41,123,118,97,114,32,110,61,71,111,40,41,44,114,61,117,40,110,41,59,105,102,40,99,61,97,114,103,117,109,101,110,116,115,44,10,97,61,116,104,105,115,44,112,61,110,44,114,41,123,105,102,40,104,61,61,61,84,41,114,101,116,117,114,110,32,95,61,110,61,112,44,104,61,98,111,40,105,44,116,41,44,118,63,101,40,110,41,58,115,59,105,102,40,103,41,114,101,116,117,114,110,32,108,111,40,104,41,44,104,61,98,111,40,105,44,116,41,44,101,40,112,41,125,114,101,116,117,114,110,32,104,61,61,61,84,38,38,40,104,61,98,111,40,105,44,116,41,41,44,115,125,118,97,114,32,99,44,97,44,108,44,115,44,104,44,112,44,95,61,48,44,118,61,102,97,108,115,101,44,103,61,102,97,108,115,101,44,100,61,116,114,117,101,59,105,102,40,116,121,112,101,111,102,32,110,33,61,34,102,117,110,99,116,105,111,110,34,41,116,104,114,111,119,32,110,101,119,32,116,105,40,34,69,120,112,101,99,116,101,100,32,97,32,102,117,110,99,116,105,111,110,34,41,59,114,101,116,117,114,110,32,116,61,83,117,40,116,41,124,124,48,44,100,117,40,114,41,38,38,40,118,61,33,33,114,46,108,101,97,100,105,110,103,44,108,61,40,103,61,34,109,97,120,87,97,105,116,34,105,110,32,114,41,63,85,105,40,83,117,40,114,46,109,97,120,87,97,105,116,41,124,124,48,44,116,41,58,108,44,100,61,34,116,114,97,105,108,105,110,103,34,105,110,32,114,63,33,33,114,46,116,114,97,105,108,105,110,103,58,100,41,44,102,46,99,97,110,99,101,108,61,102,117,110,99,116,105,111,110,40,41,123,104,33,61,61,84,38,38,108,111,40,104,41,44,95,61,48,44,99,61,112,61,97,61,104,61,84,125,44,102,46,102,108,117,115,104,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,104,61,61,61,84,63,115,58,111,40,71,111,40,41,41,125,44,102,125,102,117,110,99,116,105,111,110,32,99,117,40,110,44,116,41,123,102,117,110,99,116,105,111,110,32,114,40,41,123,118,97,114,32,101,61,97,114,103,117,109,101,110,116,115,44,117,61,116,63,116,46,97,112,112,108,121,40,116,104,105,115,44,101,41,58,101,91,48,93,44,105,61,114,46,99,97,99,104,101,59,10,114,101,116,117,114,110,32,105,46,104,97,115,40,117,41,63,105,46,103,101,116,40,117,41,58,40,101,61,110,46,97,112,112,108,121,40,116,104,105,115,44,101,41,44,114,46,99,97,99,104,101,61,105,46,115,101,116,40,117,44,101,41,124,124,105,44,101,41,125,105,102,40,116,121,112,101,111,102,32,110,33,61,34,102,117,110,99,116,105,111,110,34,124,124,110,117,108,108,33,61,116,38,38,116,121,112,101,111,102,32,116,33,61,34,102,117,110,99,116,105,111,110,34,41,116,104,114,111,119,32,110,101,119,32,116,105,40,34,69,120,112,101,99,116,101,100,32,97,32,102,117,110,99,116,105,111,110,34,41,59,114,101,116,117,114,110,32,114,46,99,97,99,104,101,61,110,101,119,40,99,117,46,67,97,99,104,101,124,124,70,110,41,44,114,125,102,117,110,99,116,105,111,110,32,97,117,40,110,41,123,105,102,40,116,121,112,101,111,102,32,110,33,61,34,102,117,110,99,116,105,111,110,34,41,116,104,114,111,119,32,110,101,119,32,116,105,40,34,69,120,112,101,99,116,101,100,32,97,32,102,117,110,99,116,105,111,110,34,41,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,97,114,103,117,109,101,110,116,115,59,115,119,105,116,99,104,40,116,46,108,101,110,103,116,104,41,123,99,97,115,101,32,48,58,114,101,116,117,114,110,33,110,46,99,97,108,108,40,116,104,105,115,41,59,99,97,115,101,32,49,58,114,101,116,117,114,110,33,110,46,99,97,108,108,40,116,104,105,115,44,116,91,48,93,41,59,99,97,115,101,32,50,58,114,101,116,117,114,110,33,110,46,99,97,108,108,40,116,104,105,115,44,116,91,48,93,44,116,91,49,93,41,59,99,97,115,101,32,51,58,114,101,116,117,114,110,33,110,46,99,97,108,108,40,116,104,105,115,44,116,91,48,93,44,116,91,49,93,44,116,91,50,93,41,125,114,101,116,117,114,110,33,110,46,97,112,112,108,121,40,116,104,105,115,44,116,41,125,125,102,117,110,99,116,105,111,110,32,108,117,40,110,44,116,41,123,114,101,116,117,114,110,32,110,61,61,61,116,124,124,110,33,61,61,110,38,38,116,33,61,61,116,59,10,125,102,117,110,99,116,105,111,110,32,115,117,40,110,41,123,114,101,116,117,114,110,32,110,117,108,108,33,61,110,38,38,103,117,40,110,46,108,101,110,103,116,104,41,38,38,33,95,117,40,110,41,125,102,117,110,99,116,105,111,110,32,104,117,40,110,41,123,114,101,116,117,114,110,32,121,117,40,110,41,38,38,115,117,40,110,41,125,102,117,110,99,116,105,111,110,32,112,117,40,110,41,123,105,102,40,33,121,117,40,110,41,41,114,101,116,117,114,110,32,102,97,108,115,101,59,118,97,114,32,116,61,79,116,40,110,41,59,114,101,116,117,114,110,34,91,111,98,106,101,99,116,32,69,114,114,111,114,93,34,61,61,116,124,124,34,91,111,98,106,101,99,116,32,68,79,77,69,120,99,101,112,116,105,111,110,93,34,61,61,116,124,124,116,121,112,101,111,102,32,110,46,109,101,115,115,97,103,101,61,61,34,115,116,114,105,110,103,34,38,38,116,121,112,101,111,102,32,110,46,110,97,109,101,61,61,34,115,116,114,105,110,103,34,38,38,33,120,117,40,110,41,125,102,117,110,99,116,105,111,110,32,95,117,40,110,41,123,114,101,116,117,114,110,33,33,100,117,40,110,41,38,38,40,110,61,79,116,40,110,41,44,34,91,111,98,106,101,99,116,32,70,117,110,99,116,105,111,110,93,34,61,61,110,124,124,34,91,111,98,106,101,99,116,32,71,101,110,101,114,97,116,111,114,70,117,110,99,116,105,111,110,93,34,61,61,110,124,124,34,91,111,98,106,101,99,116,32,65,115,121,110,99,70,117,110,99,116,105,111,110,93,34,61,61,110,124,124,34,91,111,98,106,101,99,116,32,80,114,111,120,121,93,34,61,61,110,41,125,102,117,110,99,116,105,111,110,32,118,117,40,110,41,123,114,101,116,117,114,110,32,116,121,112,101,111,102,32,110,61,61,34,110,117,109,98,101,114,34,38,38,110,61,61,69,117,40,110,41,125,102,117,110,99,116,105,111,110,32,103,117,40,110,41,123,114,101,116,117,114,110,32,116,121,112,101,111,102,32,110,61,61,34,110,117,109,98,101,114,34,38,38,45,49,60,110,38,38,48,61,61,110,37,49,38,38,57,48,48,55,49,57,57,50,53,52,55,52,48,57,57,49,62,61,110,59,10,125,102,117,110,99,116,105,111,110,32,100,117,40,110,41,123,118,97,114,32,116,61,116,121,112,101,111,102,32,110,59,114,101,116,117,114,110,32,110,117,108,108,33,61,110,38,38,40,34,111,98,106,101,99,116,34,61,61,116,124,124,34,102,117,110,99,116,105,111,110,34,61,61,116,41,125,102,117,110,99,116,105,111,110,32,121,117,40,110,41,123,114,101,116,117,114,110,32,110,117,108,108,33,61,110,38,38,116,121,112,101,111,102,32,110,61,61,34,111,98,106,101,99,116,34,125,102,117,110,99,116,105,111,110,32,98,117,40,110,41,123,114,101,116,117,114,110,32,116,121,112,101,111,102,32,110,61,61,34,110,117,109,98,101,114,34,124,124,121,117,40,110,41,38,38,34,91,111,98,106,101,99,116,32,78,117,109,98,101,114,93,34,61,61,79,116,40,110,41,125,102,117,110,99,116,105,111,110,32,120,117,40,110,41,123,114,101,116,117,114,110,33,40,33,121,117,40,110,41,124,124,34,91,111,98,106,101,99,116,32,79,98,106,101,99,116,93,34,33,61,79,116,40,110,41,41,38,38,40,110,61,100,105,40,110,41,44,110,117,108,108,61,61,61,110,124,124,40,110,61,111,105,46,99,97,108,108,40,110,44,34,99,111,110,115,116,114,117,99,116,111,114,34,41,38,38,110,46,99,111,110,115,116,114,117,99,116,111,114,44,116,121,112,101,111,102,32,110,61,61,34,102,117,110,99,116,105,111,110,34,38,38,110,32,105,110,115,116,97,110,99,101,111,102,32,110,38,38,105,105,46,99,97,108,108,40,110,41,61,61,108,105,41,41,125,102,117,110,99,116,105,111,110,32,106,117,40,110,41,123,114,101,116,117,114,110,32,116,121,112,101,111,102,32,110,61,61,34,115,116,114,105,110,103,34,124,124,33,102,102,40,110,41,38,38,121,117,40,110,41,38,38,34,91,111,98,106,101,99,116,32,83,116,114,105,110,103,93,34,61,61,79,116,40,110,41,125,102,117,110,99,116,105,111,110,32,119,117,40,110,41,123,114,101,116,117,114,110,32,116,121,112,101,111,102,32,110,61,61,34,115,121,109,98,111,108,34,124,124,121,117,40,110,41,38,38,34,91,111,98,106,101,99,116,32,83,121,109,98,111,108,93,34,61,61,79,116,40,110,41,59,10,125,102,117,110,99,116,105,111,110,32,109,117,40,110,41,123,105,102,40,33,110,41,114,101,116,117,114,110,91,93,59,105,102,40,115,117,40,110,41,41,114,101,116,117,114,110,32,106,117,40,110,41,63,77,40,110,41,58,85,114,40,110,41,59,105,102,40,119,105,38,38,110,91,119,105,93,41,123,110,61,110,91,119,105,93,40,41,59,102,111,114,40,118,97,114,32,116,44,114,61,91,93,59,33,40,116,61,110,46,110,101,120,116,40,41,41,46,100,111,110,101,59,41,114,46,112,117,115,104,40,116,46,118,97,108,117,101,41,59,114,101,116,117,114,110,32,114,125,114,101,116,117,114,110,32,116,61,118,111,40,110,41,44,40,34,91,111,98,106,101,99,116,32,77,97,112,93,34,61,61,116,63,87,58,34,91,111,98,106,101,99,116,32,83,101,116,93,34,61,61,116,63,85,58,85,117,41,40,110,41,125,102,117,110,99,116,105,111,110,32,65,117,40,110,41,123,114,101,116,117,114,110,32,110,63,40,110,61,83,117,40,110,41,44,110,61,61,61,36,124,124,110,61,61,61,45,36,63,49,46,55,57,55,54,57,51,49,51,52,56,54,50,51,49,53,55,101,51,48,56,42,40,48,62,110,63,45,49,58,49,41,58,110,61,61,61,110,63,110,58,48,41,58,48,61,61,61,110,63,110,58,48,125,102,117,110,99,116,105,111,110,32,69,117,40,110,41,123,110,61,65,117,40,110,41,59,118,97,114,32,116,61,110,37,49,59,114,101,116,117,114,110,32,110,61,61,61,110,63,116,63,110,45,116,58,110,58,48,125,102,117,110,99,116,105,111,110,32,107,117,40,110,41,123,114,101,116,117,114,110,32,110,63,112,116,40,69,117,40,110,41,44,48,44,52,50,57,52,57,54,55,50,57,53,41,58,48,125,102,117,110,99,116,105,111,110,32,83,117,40,110,41,123,105,102,40,116,121,112,101,111,102,32,110,61,61,34,110,117,109,98,101,114,34,41,114,101,116,117,114,110,32,110,59,105,102,40,119,117,40,110,41,41,114,101,116,117,114,110,32,70,59,105,102,40,100,117,40,110,41,38,38,40,110,61,116,121,112,101,111,102,32,110,46,118,97,108,117,101,79,102,61,61,34,102,117,110,99,116,105,111,110,34,63,110,46,118,97,108,117,101,79,102,40,41,58,110,44,10,110,61,100,117,40,110,41,63,110,43,34,34,58,110,41,44,116,121,112,101,111,102,32,110,33,61,34,115,116,114,105,110,103,34,41,114,101,116,117,114,110,32,48,61,61,61,110,63,110,58,43,110,59,110,61,110,46,114,101,112,108,97,99,101,40,117,110,44,34,34,41,59,118,97,114,32,116,61,103,110,46,116,101,115,116,40,110,41,59,114,101,116,117,114,110,32,116,124,124,121,110,46,116,101,115,116,40,110,41,63,68,110,40,110,46,115,108,105,99,101,40,50,41,44,116,63,50,58,56,41,58,118,110,46,116,101,115,116,40,110,41,63,70,58,43,110,125,102,117,110,99,116,105,111,110,32,79,117,40,110,41,123,114,101,116,117,114,110,32,67,114,40,110,44,66,117,40,110,41,41,125,102,117,110,99,116,105,111,110,32,73,117,40,110,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,110,63,34,34,58,121,114,40,110,41,125,102,117,110,99,116,105,111,110,32,82,117,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,110,61,110,117,108,108,61,61,110,63,84,58,107,116,40,110,44,116,41,44,110,61,61,61,84,63,114,58,110,125,102,117,110,99,116,105,111,110,32,122,117,40,110,44,116,41,123,114,101,116,117,114,110,32,110,117,108,108,33,61,110,38,38,119,101,40,110,44,116,44,122,116,41,125,102,117,110,99,116,105,111,110,32,87,117,40,110,41,123,114,101,116,117,114,110,32,115,117,40,110,41,63,113,110,40,110,41,58,86,116,40,110,41,125,102,117,110,99,116,105,111,110,32,66,117,40,110,41,123,105,102,40,115,117,40,110,41,41,110,61,113,110,40,110,44,116,114,117,101,41,59,101,108,115,101,32,105,102,40,100,117,40,110,41,41,123,118,97,114,32,116,44,114,61,122,101,40,110,41,44,101,61,91,93,59,102,111,114,40,116,32,105,110,32,110,41,40,34,99,111,110,115,116,114,117,99,116,111,114,34,33,61,116,124,124,33,114,38,38,111,105,46,99,97,108,108,40,110,44,116,41,41,38,38,101,46,112,117,115,104,40,116,41,59,110,61,101,125,101,108,115,101,123,105,102,40,116,61,91,93,44,10,110,117,108,108,33,61,110,41,102,111,114,40,114,32,105,110,32,81,117,40,110,41,41,116,46,112,117,115,104,40,114,41,59,110,61,116,125,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,76,117,40,110,44,116,41,123,105,102,40,110,117,108,108,61,61,110,41,114,101,116,117,114,110,123,125,59,118,97,114,32,114,61,99,40,118,101,40,110,41,44,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,91,110,93,125,41,59,114,101,116,117,114,110,32,116,61,121,101,40,116,41,44,116,114,40,110,44,114,44,102,117,110,99,116,105,111,110,40,110,44,114,41,123,114,101,116,117,114,110,32,116,40,110,44,114,91,48,93,41,125,41,125,102,117,110,99,116,105,111,110,32,85,117,40,110,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,110,63,91,93,58,83,40,110,44,87,117,40,110,41,41,125,102,117,110,99,116,105,111,110,32,67,117,40,110,41,123,114,101,116,117,114,110,32,36,102,40,73,117,40,110,41,46,116,111,76,111,119,101,114,67,97,115,101,40,41,41,125,102,117,110,99,116,105,111,110,32,68,117,40,110,41,123,114,101,116,117,114,110,40,110,61,73,117,40,110,41,41,38,38,110,46,114,101,112,108,97,99,101,40,120,110,44,88,110,41,46,114,101,112,108,97,99,101,40,83,110,44,34,34,41,125,102,117,110,99,116,105,111,110,32,77,117,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,110,61,73,117,40,110,41,44,116,61,114,63,84,58,116,44,116,61,61,61,84,63,122,110,46,116,101,115,116,40,110,41,63,110,46,109,97,116,99,104,40,73,110,41,124,124,91,93,58,110,46,109,97,116,99,104,40,115,110,41,124,124,91,93,58,110,46,109,97,116,99,104,40,116,41,124,124,91,93,125,102,117,110,99,116,105,111,110,32,84,117,40,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,110,125,125,102,117,110,99,116,105,111,110,32,36,117,40,110,41,123,114,101,116,117,114,110,32,110,59,10,125,102,117,110,99,116,105,111,110,32,70,117,40,110,41,123,114,101,116,117,114,110,32,113,116,40,116,121,112,101,111,102,32,110,61,61,34,102,117,110,99,116,105,111,110,34,63,110,58,95,116,40,110,44,49,41,41,125,102,117,110,99,116,105,111,110,32,78,117,40,110,44,116,44,101,41,123,118,97,114,32,117,61,87,117,40,116,41,44,105,61,69,116,40,116,44,117,41,59,110,117,108,108,33,61,101,124,124,100,117,40,116,41,38,38,40,105,46,108,101,110,103,116,104,124,124,33,117,46,108,101,110,103,116,104,41,124,124,40,101,61,116,44,116,61,110,44,110,61,116,104,105,115,44,105,61,69,116,40,116,44,87,117,40,116,41,41,41,59,118,97,114,32,111,61,33,40,100,117,40,101,41,38,38,34,99,104,97,105,110,34,105,110,32,101,38,38,33,101,46,99,104,97,105,110,41,44,102,61,95,117,40,110,41,59,114,101,116,117,114,110,32,114,40,105,44,102,117,110,99,116,105,111,110,40,114,41,123,118,97,114,32,101,61,116,91,114,93,59,110,91,114,93,61,101,44,102,38,38,40,110,46,112,114,111,116,111,116,121,112,101,91,114,93,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,95,95,99,104,97,105,110,95,95,59,105,102,40,111,124,124,116,41,123,118,97,114,32,114,61,110,40,116,104,105,115,46,95,95,119,114,97,112,112,101,100,95,95,41,59,114,101,116,117,114,110,40,114,46,95,95,97,99,116,105,111,110,115,95,95,61,85,114,40,116,104,105,115,46,95,95,97,99,116,105,111,110,115,95,95,41,41,46,112,117,115,104,40,123,102,117,110,99,58,101,44,97,114,103,115,58,97,114,103,117,109,101,110,116,115,44,116,104,105,115,65,114,103,58,110,125,41,44,114,46,95,95,99,104,97,105,110,95,95,61,116,44,114,125,114,101,116,117,114,110,32,101,46,97,112,112,108,121,40,110,44,97,40,91,116,104,105,115,46,118,97,108,117,101,40,41,93,44,97,114,103,117,109,101,110,116,115,41,41,125,41,125,41,44,110,125,102,117,110,99,116,105,111,110,32,80,117,40,41,123,125,10,102,117,110,99,116,105,111,110,32,90,117,40,110,41,123,114,101,116,117,114,110,32,73,101,40,110,41,63,98,40,77,101,40,110,41,41,58,114,114,40,110,41,125,102,117,110,99,116,105,111,110,32,113,117,40,41,123,114,101,116,117,114,110,91,93,125,102,117,110,99,116,105,111,110,32,86,117,40,41,123,114,101,116,117,114,110,32,102,97,108,115,101,125,109,110,61,110,117,108,108,61,61,109,110,63,36,110,58,114,116,46,100,101,102,97,117,108,116,115,40,36,110,46,79,98,106,101,99,116,40,41,44,109,110,44,114,116,46,112,105,99,107,40,36,110,44,87,110,41,41,59,118,97,114,32,75,117,61,109,110,46,65,114,114,97,121,44,71,117,61,109,110,46,68,97,116,101,44,72,117,61,109,110,46,69,114,114,111,114,44,74,117,61,109,110,46,70,117,110,99,116,105,111,110,44,89,117,61,109,110,46,77,97,116,104,44,81,117,61,109,110,46,79,98,106,101,99,116,44,88,117,61,109,110,46,82,101,103,69,120,112,44,110,105,61,109,110,46,83,116,114,105,110,103,44,116,105,61,109,110,46,84,121,112,101,69,114,114,111,114,44,114,105,61,75,117,46,112,114,111,116,111,116,121,112,101,44,101,105,61,81,117,46,112,114,111,116,111,116,121,112,101,44,117,105,61,109,110,91,34,95,95,99,111,114,101,45,106,115,95,115,104,97,114,101,100,95,95,34,93,44,105,105,61,74,117,46,112,114,111,116,111,116,121,112,101,46,116,111,83,116,114,105,110,103,44,111,105,61,101,105,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,44,102,105,61,48,44,99,105,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,110,61,47,91,94,46,93,43,36,47,46,101,120,101,99,40,117,105,38,38,117,105,46,107,101,121,115,38,38,117,105,46,107,101,121,115,46,73,69,95,80,82,79,84,79,124,124,34,34,41,59,114,101,116,117,114,110,32,110,63,34,83,121,109,98,111,108,40,115,114,99,41,95,49,46,34,43,110,58,34,34,125,40,41,44,97,105,61,101,105,46,116,111,83,116,114,105,110,103,44,108,105,61,105,105,46,99,97,108,108,40,81,117,41,44,115,105,61,36,110,46,95,44,104,105,61,88,117,40,34,94,34,43,105,105,46,99,97,108,108,40,111,105,41,46,114,101,112,108,97,99,101,40,114,110,44,34,92,92,36,38,34,41,46,114,101,112,108,97,99,101,40,47,104,97,115,79,119,110,80,114,111,112,101,114,116,121,124,40,102,117,110,99,116,105,111,110,41,46,42,63,40,63,61,92,92,92,40,41,124,32,102,111,114,32,46,43,63,40,63,61,92,92,92,93,41,47,103,44,34,36,49,46,42,63,34,41,43,34,36,34,41,44,112,105,61,80,110,63,109,110,46,66,117,102,102,101,114,58,84,44,95,105,61,109,110,46,83,121,109,98,111,108,44,118,105,61,109,110,46,85,105,110,116,56,65,114,114,97,121,44,103,105,61,112,105,63,112,105,46,103,58,84,44,100,105,61,66,40,81,117,46,103,101,116,80,114,111,116,111,116,121,112,101,79,102,44,81,117,41,44,121,105,61,81,117,46,99,114,101,97,116,101,44,98,105,61,101,105,46,112,114,111,112,101,114,116,121,73,115,69,110,117,109,101,114,97,98,108,101,44,120,105,61,114,105,46,115,112,108,105,99,101,44,106,105,61,95,105,63,95,105,46,105,115,67,111,110,99,97,116,83,112,114,101,97,100,97,98,108,101,58,84,44,119,105,61,95,105,63,95,105,46,105,116,101,114,97,116,111,114,58,84,44,109,105,61,95,105,63,95,105,46,116,111,83,116,114,105,110,103,84,97,103,58,84,44,65,105,61,102,117,110,99,116,105,111,110,40,41,123,10,116,114,121,123,118,97,114,32,110,61,106,101,40,81,117,44,34,100,101,102,105,110,101,80,114,111,112,101,114,116,121,34,41,59,114,101,116,117,114,110,32,110,40,123,125,44,34,34,44,123,125,41,44,110,125,99,97,116,99,104,40,110,41,123,125,125,40,41,44,69,105,61,109,110,46,99,108,101,97,114,84,105,109,101,111,117,116,33,61,61,36,110,46,99,108,101,97,114,84,105,109,101,111,117,116,38,38,109,110,46,99,108,101,97,114,84,105,109,101,111,117,116,44,107,105,61,71,117,38,38,71,117,46,110,111,119,33,61,61,36,110,46,68,97,116,101,46,110,111,119,38,38,71,117,46,110,111,119,44,83,105,61,109,110,46,115,101,116,84,105,109,101,111,117,116,33,61,61,36,110,46,115,101,116,84,105,109,101,111,117,116,38,38,109,110,46,115,101,116,84,105,109,101,111,117,116,44,79,105,61,89,117,46,99,101,105,108,44,73,105,61,89,117,46,102,108,111,111,114,44,82,105,61,81,117,46,103,101,116,79,119,110,80,114,111,112,101,114,116,121,83,121,109,98,111,108,115,44,122,105,61,112,105,63,112,105,46,105,115,66,117,102,102,101,114,58,84,44,87,105,61,109,110,46,105,115,70,105,110,105,116,101,44,66,105,61,114,105,46,106,111,105,110,44,76,105,61,66,40,81,117,46,107,101,121,115,44,81,117,41,44,85,105,61,89,117,46,109,97,120,44,67,105,61,89,117,46,109,105,110,44,68,105,61,71,117,46,110,111,119,44,77,105,61,109,110,46,112,97,114,115,101,73,110,116,44,84,105,61,89,117,46,114,97,110,100,111,109,44,36,105,61,114,105,46,114,101,118,101,114,115,101,44,70,105,61,106,101,40,109,110,44,34,68,97,116,97,86,105,101,119,34,41,44,78,105,61,106,101,40,109,110,44,34,77,97,112,34,41,44,80,105,61,106,101,40,109,110,44,34,80,114,111,109,105,115,101,34,41,44,90,105,61,106,101,40,109,110,44,34,83,101,116,34,41,44,113,105,61,106,101,40,109,110,44,34,87,101,97,107,77,97,112,34,41,44,86,105,61,106,101,40,81,117,44,34,99,114,101,97,116,101,34,41,44,75,105,61,113,105,38,38,110,101,119,32,113,105,44,71,105,61,123,125,44,72,105,61,84,101,40,70,105,41,44,74,105,61,84,101,40,78,105,41,44,89,105,61,84,101,40,80,105,41,44,81,105,61,84,101,40,90,105,41,44,88,105,61,84,101,40,113,105,41,44,110,111,61,95,105,63,95,105,46,112,114,111,116,111,116,121,112,101,58,84,44,116,111,61,110,111,63,110,111,46,118,97,108,117,101,79,102,58,84,44,114,111,61,110,111,63,110,111,46,116,111,83,116,114,105,110,103,58,84,44,101,111,61,102,117,110,99,116,105,111,110,40,41,123,10,102,117,110,99,116,105,111,110,32,110,40,41,123,125,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,100,117,40,116,41,63,121,105,63,121,105,40,116,41,58,40,110,46,112,114,111,116,111,116,121,112,101,61,116,44,116,61,110,101,119,32,110,44,110,46,112,114,111,116,111,116,121,112,101,61,84,44,116,41,58,123,125,125,125,40,41,59,65,110,46,116,101,109,112,108,97,116,101,83,101,116,116,105,110,103,115,61,123,101,115,99,97,112,101,58,74,44,101,118,97,108,117,97,116,101,58,89,44,105,110,116,101,114,112,111,108,97,116,101,58,81,44,118,97,114,105,97,98,108,101,58,34,34,44,105,109,112,111,114,116,115,58,123,95,58,65,110,125,125,44,65,110,46,112,114,111,116,111,116,121,112,101,61,69,110,46,112,114,111,116,111,116,121,112,101,44,65,110,46,112,114,111,116,111,116,121,112,101,46,99,111,110,115,116,114,117,99,116,111,114,61,65,110,44,79,110,46,112,114,111,116,111,116,121,112,101,61,101,111,40,69,110,46,112,114,111,116,111,116,121,112,101,41,44,79,110,46,112,114,111,116,111,116,121,112,101,46,99,111,110,115,116,114,117,99,116,111,114,61,79,110,44,85,110,46,112,114,111,116,111,116,121,112,101,61,101,111,40,69,110,46,112,114,111,116,111,116,121,112,101,41,44,85,110,46,112,114,111,116,111,116,121,112,101,46,99,111,110,115,116,114,117,99,116,111,114,61,85,110,44,77,110,46,112,114,111,116,111,116,121,112,101,46,99,108,101,97,114,61,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,95,100,97,116,97,95,95,61,86,105,63,86,105,40,110,117,108,108,41,58,123,125,44,116,104,105,115,46,115,105,122,101,61,48,125,44,77,110,46,112,114,111,116,111,116,121,112,101,46,100,101,108,101,116,101,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,110,61,116,104,105,115,46,104,97,115,40,110,41,38,38,100,101,108,101,116,101,32,116,104,105,115,46,95,95,100,97,116,97,95,95,91,110,93,44,10,116,104,105,115,46,115,105,122,101,45,61,110,63,49,58,48,44,110,125,44,77,110,46,112,114,111,116,111,116,121,112,101,46,103,101,116,61,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,116,61,116,104,105,115,46,95,95,100,97,116,97,95,95,59,114,101,116,117,114,110,32,86,105,63,40,110,61,116,91,110,93,44,34,95,95,108,111,100,97,115,104,95,104,97,115,104,95,117,110,100,101,102,105,110,101,100,95,95,34,61,61,61,110,63,84,58,110,41,58,111,105,46,99,97,108,108,40,116,44,110,41,63,116,91,110,93,58,84,125,44,77,110,46,112,114,111,116,111,116,121,112,101,46,104,97,115,61,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,116,61,116,104,105,115,46,95,95,100,97,116,97,95,95,59,114,101,116,117,114,110,32,86,105,63,116,91,110,93,33,61,61,84,58,111,105,46,99,97,108,108,40,116,44,110,41,125,44,77,110,46,112,114,111,116,111,116,121,112,101,46,115,101,116,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,118,97,114,32,114,61,116,104,105,115,46,95,95,100,97,116,97,95,95,59,114,101,116,117,114,110,32,116,104,105,115,46,115,105,122,101,43,61,116,104,105,115,46,104,97,115,40,110,41,63,48,58,49,44,114,91,110,93,61,86,105,38,38,116,61,61,61,84,63,34,95,95,108,111,100,97,115,104,95,104,97,115,104,95,117,110,100,101,102,105,110,101,100,95,95,34,58,116,44,116,104,105,115,125,44,84,110,46,112,114,111,116,111,116,121,112,101,46,99,108,101,97,114,61,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,95,100,97,116,97,95,95,61,91,93,44,116,104,105,115,46,115,105,122,101,61,48,125,44,84,110,46,112,114,111,116,111,116,121,112,101,46,100,101,108,101,116,101,61,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,116,61,116,104,105,115,46,95,95,100,97,116,97,95,95,59,114,101,116,117,114,110,32,110,61,102,116,40,116,44,110,41,44,33,40,48,62,110,41,38,38,40,110,61,61,116,46,108,101,110,103,116,104,45,49,63,116,46,112,111,112,40,41,58,120,105,46,99,97,108,108,40,116,44,110,44,49,41,44,10,45,45,116,104,105,115,46,115,105,122,101,44,116,114,117,101,41,125,44,84,110,46,112,114,111,116,111,116,121,112,101,46,103,101,116,61,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,116,61,116,104,105,115,46,95,95,100,97,116,97,95,95,59,114,101,116,117,114,110,32,110,61,102,116,40,116,44,110,41,44,48,62,110,63,84,58,116,91,110,93,91,49,93,125,44,84,110,46,112,114,111,116,111,116,121,112,101,46,104,97,115,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,45,49,60,102,116,40,116,104,105,115,46,95,95,100,97,116,97,95,95,44,110,41,125,44,84,110,46,112,114,111,116,111,116,121,112,101,46,115,101,116,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,118,97,114,32,114,61,116,104,105,115,46,95,95,100,97,116,97,95,95,44,101,61,102,116,40,114,44,110,41,59,114,101,116,117,114,110,32,48,62,101,63,40,43,43,116,104,105,115,46,115,105,122,101,44,114,46,112,117,115,104,40,91,110,44,116,93,41,41,58,114,91,101,93,91,49,93,61,116,44,116,104,105,115,125,44,70,110,46,112,114,111,116,111,116,121,112,101,46,99,108,101,97,114,61,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,115,105,122,101,61,48,44,116,104,105,115,46,95,95,100,97,116,97,95,95,61,123,104,97,115,104,58,110,101,119,32,77,110,44,109,97,112,58,110,101,119,40,78,105,124,124,84,110,41,44,115,116,114,105,110,103,58,110,101,119,32,77,110,125,125,44,70,110,46,112,114,111,116,111,116,121,112,101,46,100,101,108,101,116,101,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,110,61,98,101,40,116,104,105,115,44,110,41,46,100,101,108,101,116,101,40,110,41,44,116,104,105,115,46,115,105,122,101,45,61,110,63,49,58,48,44,110,125,44,70,110,46,112,114,111,116,111,116,121,112,101,46,103,101,116,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,98,101,40,116,104,105,115,44,110,41,46,103,101,116,40,110,41,59,10,125,44,70,110,46,112,114,111,116,111,116,121,112,101,46,104,97,115,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,98,101,40,116,104,105,115,44,110,41,46,104,97,115,40,110,41,125,44,70,110,46,112,114,111,116,111,116,121,112,101,46,115,101,116,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,118,97,114,32,114,61,98,101,40,116,104,105,115,44,110,41,44,101,61,114,46,115,105,122,101,59,114,101,116,117,114,110,32,114,46,115,101,116,40,110,44,116,41,44,116,104,105,115,46,115,105,122,101,43,61,114,46,115,105,122,101,61,61,101,63,48,58,49,44,116,104,105,115,125,44,78,110,46,112,114,111,116,111,116,121,112,101,46,97,100,100,61,78,110,46,112,114,111,116,111,116,121,112,101,46,112,117,115,104,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,95,100,97,116,97,95,95,46,115,101,116,40,110,44,34,95,95,108,111,100,97,115,104,95,104,97,115,104,95,117,110,100,101,102,105,110,101,100,95,95,34,41,44,116,104,105,115,125,44,78,110,46,112,114,111,116,111,116,121,112,101,46,104,97,115,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,95,100,97,116,97,95,95,46,104,97,115,40,110,41,125,44,90,110,46,112,114,111,116,111,116,121,112,101,46,99,108,101,97,114,61,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,95,100,97,116,97,95,95,61,110,101,119,32,84,110,44,116,104,105,115,46,115,105,122,101,61,48,125,44,90,110,46,112,114,111,116,111,116,121,112,101,46,100,101,108,101,116,101,61,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,116,61,116,104,105,115,46,95,95,100,97,116,97,95,95,59,114,101,116,117,114,110,32,110,61,116,46,100,101,108,101,116,101,40,110,41,44,116,104,105,115,46,115,105,122,101,61,116,46,115,105,122,101,44,110,125,44,90,110,46,112,114,111,116,111,116,121,112,101,46,103,101,116,61,102,117,110,99,116,105,111,110,40,110,41,123,10,114,101,116,117,114,110,32,116,104,105,115,46,95,95,100,97,116,97,95,95,46,103,101,116,40,110,41,125,44,90,110,46,112,114,111,116,111,116,121,112,101,46,104,97,115,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,95,100,97,116,97,95,95,46,104,97,115,40,110,41,125,44,90,110,46,112,114,111,116,111,116,121,112,101,46,115,101,116,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,118,97,114,32,114,61,116,104,105,115,46,95,95,100,97,116,97,95,95,59,105,102,40,114,32,105,110,115,116,97,110,99,101,111,102,32,84,110,41,123,118,97,114,32,101,61,114,46,95,95,100,97,116,97,95,95,59,105,102,40,33,78,105,124,124,49,57,57,62,101,46,108,101,110,103,116,104,41,114,101,116,117,114,110,32,101,46,112,117,115,104,40,91,110,44,116,93,41,44,116,104,105,115,46,115,105,122,101,61,43,43,114,46,115,105,122,101,44,116,104,105,115,59,114,61,116,104,105,115,46,95,95,100,97,116,97,95,95,61,110,101,119,32,70,110,40,101,41,125,114,101,116,117,114,110,32,114,46,115,101,116,40,110,44,116,41,44,116,104,105,115,46,115,105,122,101,61,114,46,115,105,122,101,44,116,104,105,115,125,59,118,97,114,32,117,111,61,70,114,40,109,116,41,44,105,111,61,70,114,40,65,116,44,116,114,117,101,41,44,111,111,61,78,114,40,41,44,102,111,61,78,114,40,116,114,117,101,41,44,99,111,61,75,105,63,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,75,105,46,115,101,116,40,110,44,116,41,44,110,125,58,36,117,44,97,111,61,65,105,63,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,65,105,40,110,44,34,116,111,83,116,114,105,110,103,34,44,123,99,111,110,102,105,103,117,114,97,98,108,101,58,116,114,117,101,44,101,110,117,109,101,114,97,98,108,101,58,102,97,108,115,101,44,118,97,108,117,101,58,84,117,40,116,41,44,119,114,105,116,97,98,108,101,58,116,114,117,101,125,41,125,58,36,117,44,108,111,61,69,105,124,124,102,117,110,99,116,105,111,110,40,110,41,123,10,114,101,116,117,114,110,32,36,110,46,99,108,101,97,114,84,105,109,101,111,117,116,40,110,41,125,44,115,111,61,90,105,38,38,49,47,85,40,110,101,119,32,90,105,40,91,44,45,48,93,41,41,91,49,93,61,61,36,63,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,110,101,119,32,90,105,40,110,41,125,58,80,117,44,104,111,61,75,105,63,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,75,105,46,103,101,116,40,110,41,125,58,80,117,44,112,111,61,82,105,63,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,110,63,91,93,58,40,110,61,81,117,40,110,41,44,105,40,82,105,40,110,41,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,98,105,46,99,97,108,108,40,110,44,116,41,125,41,41,125,58,113,117,44,95,111,61,82,105,63,102,117,110,99,116,105,111,110,40,110,41,123,102,111,114,40,118,97,114,32,116,61,91,93,59,110,59,41,97,40,116,44,112,111,40,110,41,41,44,110,61,100,105,40,110,41,59,114,101,116,117,114,110,32,116,125,58,113,117,44,118,111,61,79,116,59,40,70,105,38,38,34,91,111,98,106,101,99,116,32,68,97,116,97,86,105,101,119,93,34,33,61,118,111,40,110,101,119,32,70,105,40,110,101,119,32,65,114,114,97,121,66,117,102,102,101,114,40,49,41,41,41,124,124,78,105,38,38,34,91,111,98,106,101,99,116,32,77,97,112,93,34,33,61,118,111,40,110,101,119,32,78,105,41,124,124,80,105,38,38,34,91,111,98,106,101,99,116,32,80,114,111,109,105,115,101,93,34,33,61,118,111,40,80,105,46,114,101,115,111,108,118,101,40,41,41,124,124,90,105,38,38,34,91,111,98,106,101,99,116,32,83,101,116,93,34,33,61,118,111,40,110,101,119,32,90,105,41,124,124,113,105,38,38,34,91,111,98,106,101,99,116,32,87,101,97,107,77,97,112,93,34,33,61,118,111,40,110,101,119,32,113,105,41,41,38,38,40,118,111,61,102,117,110,99,116,105,111,110,40,110,41,123,10,118,97,114,32,116,61,79,116,40,110,41,59,105,102,40,110,61,40,110,61,34,91,111,98,106,101,99,116,32,79,98,106,101,99,116,93,34,61,61,116,63,110,46,99,111,110,115,116,114,117,99,116,111,114,58,84,41,63,84,101,40,110,41,58,34,34,41,115,119,105,116,99,104,40,110,41,123,99,97,115,101,32,72,105,58,114,101,116,117,114,110,34,91,111,98,106,101,99,116,32,68,97,116,97,86,105,101,119,93,34,59,99,97,115,101,32,74,105,58,114,101,116,117,114,110,34,91,111,98,106,101,99,116,32,77,97,112,93,34,59,99,97,115,101,32,89,105,58,114,101,116,117,114,110,34,91,111,98,106,101,99,116,32,80,114,111,109,105,115,101,93,34,59,99,97,115,101,32,81,105,58,114,101,116,117,114,110,34,91,111,98,106,101,99,116,32,83,101,116,93,34,59,99,97,115,101,32,88,105,58,114,101,116,117,114,110,34,91,111,98,106,101,99,116,32,87,101,97,107,77,97,112,93,34,125,114,101,116,117,114,110,32,116,125,41,59,118,97,114,32,103,111,61,117,105,63,95,117,58,86,117,44,121,111,61,67,101,40,99,111,41,44,98,111,61,83,105,124,124,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,36,110,46,115,101,116,84,105,109,101,111,117,116,40,110,44,116,41,125,44,120,111,61,67,101,40,97,111,41,44,106,111,61,102,117,110,99,116,105,111,110,40,110,41,123,110,61,99,117,40,110,44,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,53,48,48,61,61,61,116,46,115,105,122,101,38,38,116,46,99,108,101,97,114,40,41,44,110,125,41,59,118,97,114,32,116,61,110,46,99,97,99,104,101,59,114,101,116,117,114,110,32,110,125,40,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,116,61,91,93,59,114,101,116,117,114,110,32,52,54,61,61,61,110,46,99,104,97,114,67,111,100,101,65,116,40,48,41,38,38,116,46,112,117,115,104,40,34,34,41,44,110,46,114,101,112,108,97,99,101,40,116,110,44,102,117,110,99,116,105,111,110,40,110,44,114,44,101,44,117,41,123,10,116,46,112,117,115,104,40,101,63,117,46,114,101,112,108,97,99,101,40,104,110,44,34,36,49,34,41,58,114,124,124,110,41,125,41,44,116,125,41,44,119,111,61,102,114,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,104,117,40,110,41,63,121,116,40,110,44,119,116,40,116,44,49,44,104,117,44,116,114,117,101,41,41,58,91,93,125,41,44,109,111,61,102,114,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,118,97,114,32,114,61,86,101,40,116,41,59,114,101,116,117,114,110,32,104,117,40,114,41,38,38,40,114,61,84,41,44,104,117,40,110,41,63,121,116,40,110,44,119,116,40,116,44,49,44,104,117,44,116,114,117,101,41,44,121,101,40,114,44,50,41,41,58,91,93,125,41,44,65,111,61,102,114,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,118,97,114,32,114,61,86,101,40,116,41,59,114,101,116,117,114,110,32,104,117,40,114,41,38,38,40,114,61,84,41,44,104,117,40,110,41,63,121,116,40,110,44,119,116,40,116,44,49,44,104,117,44,116,114,117,101,41,44,84,44,114,41,58,91,93,125,41,44,69,111,61,102,114,40,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,116,61,99,40,110,44,69,114,41,59,114,101,116,117,114,110,32,116,46,108,101,110,103,116,104,38,38,116,91,48,93,61,61,61,110,91,48,93,63,87,116,40,116,41,58,91,93,125,41,44,107,111,61,102,114,40,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,116,61,86,101,40,110,41,44,114,61,99,40,110,44,69,114,41,59,114,101,116,117,114,110,32,116,61,61,61,86,101,40,114,41,63,116,61,84,58,114,46,112,111,112,40,41,44,114,46,108,101,110,103,116,104,38,38,114,91,48,93,61,61,61,110,91,48,93,63,87,116,40,114,44,121,101,40,116,44,50,41,41,58,91,93,125,41,44,83,111,61,102,114,40,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,116,61,86,101,40,110,41,44,114,61,99,40,110,44,69,114,41,59,114,101,116,117,114,110,40,116,61,116,121,112,101,111,102,32,116,61,61,34,102,117,110,99,116,105,111,110,34,63,116,58,84,41,38,38,114,46,112,111,112,40,41,44,10,114,46,108,101,110,103,116,104,38,38,114,91,48,93,61,61,61,110,91,48,93,63,87,116,40,114,44,84,44,116,41,58,91,93,125,41,44,79,111,61,102,114,40,75,101,41,44,73,111,61,112,101,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,118,97,114,32,114,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,44,101,61,104,116,40,110,44,116,41,59,114,101,116,117,114,110,32,117,114,40,110,44,99,40,116,44,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,83,101,40,110,44,114,41,63,43,110,58,110,125,41,46,115,111,114,116,40,87,114,41,41,44,101,125,41,44,82,111,61,102,114,40,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,98,114,40,119,116,40,110,44,49,44,104,117,44,116,114,117,101,41,41,125,41,44,122,111,61,102,114,40,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,116,61,86,101,40,110,41,59,114,101,116,117,114,110,32,104,117,40,116,41,38,38,40,116,61,84,41,44,98,114,40,119,116,40,110,44,49,44,104,117,44,116,114,117,101,41,44,121,101,40,116,44,50,41,41,125,41,44,87,111,61,102,114,40,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,116,61,86,101,40,110,41,44,116,61,116,121,112,101,111,102,32,116,61,61,34,102,117,110,99,116,105,111,110,34,63,116,58,84,59,114,101,116,117,114,110,32,98,114,40,119,116,40,110,44,49,44,104,117,44,116,114,117,101,41,44,84,44,116,41,125,41,44,66,111,61,102,114,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,104,117,40,110,41,63,121,116,40,110,44,116,41,58,91,93,125,41,44,76,111,61,102,114,40,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,109,114,40,105,40,110,44,104,117,41,41,125,41,44,85,111,61,102,114,40,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,116,61,86,101,40,110,41,59,114,101,116,117,114,110,32,104,117,40,116,41,38,38,40,116,61,84,41,44,10,109,114,40,105,40,110,44,104,117,41,44,121,101,40,116,44,50,41,41,125,41,44,67,111,61,102,114,40,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,116,61,86,101,40,110,41,44,116,61,116,121,112,101,111,102,32,116,61,61,34,102,117,110,99,116,105,111,110,34,63,116,58,84,59,114,101,116,117,114,110,32,109,114,40,105,40,110,44,104,117,41,44,84,44,116,41,125,41,44,68,111,61,102,114,40,72,101,41,44,77,111,61,102,114,40,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,116,61,110,46,108,101,110,103,116,104,44,116,61,49,60,116,63,110,91,116,45,49,93,58,84,44,116,61,116,121,112,101,111,102,32,116,61,61,34,102,117,110,99,116,105,111,110,34,63,40,110,46,112,111,112,40,41,44,116,41,58,84,59,114,101,116,117,114,110,32,74,101,40,110,44,116,41,125,41,44,84,111,61,112,101,40,102,117,110,99,116,105,111,110,40,110,41,123,102,117,110,99,116,105,111,110,32,116,40,116,41,123,114,101,116,117,114,110,32,104,116,40,116,44,110,41,125,118,97,114,32,114,61,110,46,108,101,110,103,116,104,44,101,61,114,63,110,91,48,93,58,48,44,117,61,116,104,105,115,46,95,95,119,114,97,112,112,101,100,95,95,59,114,101,116,117,114,110,33,40,49,60,114,124,124,116,104,105,115,46,95,95,97,99,116,105,111,110,115,95,95,46,108,101,110,103,116,104,41,38,38,117,32,105,110,115,116,97,110,99,101,111,102,32,85,110,38,38,83,101,40,101,41,63,40,117,61,117,46,115,108,105,99,101,40,101,44,43,101,43,40,114,63,49,58,48,41,41,44,117,46,95,95,97,99,116,105,111,110,115,95,95,46,112,117,115,104,40,123,102,117,110,99,58,81,101,44,97,114,103,115,58,91,116,93,44,116,104,105,115,65,114,103,58,84,125,41,44,110,101,119,32,79,110,40,117,44,116,104,105,115,46,95,95,99,104,97,105,110,95,95,41,46,116,104,114,117,40,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,114,38,38,33,110,46,108,101,110,103,116,104,38,38,110,46,112,117,115,104,40,84,41,44,10,110,125,41,41,58,116,104,105,115,46,116,104,114,117,40,116,41,125,41,44,36,111,61,84,114,40,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,111,105,46,99,97,108,108,40,110,44,114,41,63,43,43,110,91,114,93,58,115,116,40,110,44,114,44,49,41,125,41,44,70,111,61,71,114,40,78,101,41,44,78,111,61,71,114,40,80,101,41,44,80,111,61,84,114,40,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,111,105,46,99,97,108,108,40,110,44,114,41,63,110,91,114,93,46,112,117,115,104,40,116,41,58,115,116,40,110,44,114,44,91,116,93,41,125,41,44,90,111,61,102,114,40,102,117,110,99,116,105,111,110,40,116,44,114,44,101,41,123,118,97,114,32,117,61,45,49,44,105,61,116,121,112,101,111,102,32,114,61,61,34,102,117,110,99,116,105,111,110,34,44,111,61,115,117,40,116,41,63,75,117,40,116,46,108,101,110,103,116,104,41,58,91,93,59,114,101,116,117,114,110,32,117,111,40,116,44,102,117,110,99,116,105,111,110,40,116,41,123,111,91,43,43,117,93,61,105,63,110,40,114,44,116,44,101,41,58,76,116,40,116,44,114,44,101,41,125,41,44,111,125,41,44,113,111,61,84,114,40,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,115,116,40,110,44,114,44,116,41,125,41,44,86,111,61,84,114,40,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,110,91,114,63,48,58,49,93,46,112,117,115,104,40,116,41,125,44,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,91,91,93,44,91,93,93,125,41,44,75,111,61,102,114,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,105,102,40,110,117,108,108,61,61,110,41,114,101,116,117,114,110,91,93,59,118,97,114,32,114,61,116,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,49,60,114,38,38,79,101,40,110,44,116,91,48,93,44,116,91,49,93,41,63,116,61,91,93,58,50,60,114,38,38,79,101,40,116,91,48,93,44,116,91,49,93,44,116,91,50,93,41,38,38,40,116,61,91,116,91,48,93,93,41,44,10,88,116,40,110,44,119,116,40,116,44,49,41,44,91,93,41,125,41,44,71,111,61,107,105,124,124,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,36,110,46,68,97,116,101,46,110,111,119,40,41,125,44,72,111,61,102,114,40,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,118,97,114,32,101,61,49,59,105,102,40,114,46,108,101,110,103,116,104,41,118,97,114,32,117,61,76,40,114,44,100,101,40,72,111,41,41,44,101,61,51,50,124,101,59,114,101,116,117,114,110,32,102,101,40,110,44,101,44,116,44,114,44,117,41,125,41,44,74,111,61,102,114,40,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,118,97,114,32,101,61,51,59,105,102,40,114,46,108,101,110,103,116,104,41,118,97,114,32,117,61,76,40,114,44,100,101,40,74,111,41,41,44,101,61,51,50,124,101,59,114,101,116,117,114,110,32,102,101,40,116,44,101,44,110,44,114,44,117,41,125,41,44,89,111,61,102,114,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,100,116,40,110,44,49,44,116,41,125,41,44,81,111,61,102,114,40,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,100,116,40,110,44,83,117,40,116,41,124,124,48,44,114,41,125,41,59,99,117,46,67,97,99,104,101,61,70,110,59,118,97,114,32,88,111,61,102,114,40,102,117,110,99,116,105,111,110,40,116,44,114,41,123,114,61,49,61,61,114,46,108,101,110,103,116,104,38,38,102,102,40,114,91,48,93,41,63,99,40,114,91,48,93,44,107,40,121,101,40,41,41,41,58,99,40,119,116,40,114,44,49,41,44,107,40,121,101,40,41,41,41,59,118,97,114,32,101,61,114,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,102,114,40,102,117,110,99,116,105,111,110,40,117,41,123,102,111,114,40,118,97,114,32,105,61,45,49,44,111,61,67,105,40,117,46,108,101,110,103,116,104,44,101,41,59,43,43,105,60,111,59,41,117,91,105,93,61,114,91,105,93,46,99,97,108,108,40,116,104,105,115,44,117,91,105,93,41,59,10,114,101,116,117,114,110,32,110,40,116,44,116,104,105,115,44,117,41,125,41,125,41,44,110,102,61,102,114,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,102,101,40,110,44,51,50,44,84,44,116,44,76,40,116,44,100,101,40,110,102,41,41,41,125,41,44,116,102,61,102,114,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,102,101,40,110,44,54,52,44,84,44,116,44,76,40,116,44,100,101,40,116,102,41,41,41,125,41,44,114,102,61,112,101,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,102,101,40,110,44,50,53,54,44,84,44,84,44,84,44,116,41,125,41,44,101,102,61,101,101,40,73,116,41,44,117,102,61,101,101,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,62,61,116,125,41,44,111,102,61,85,116,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,125,40,41,41,63,85,116,58,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,121,117,40,110,41,38,38,111,105,46,99,97,108,108,40,110,44,34,99,97,108,108,101,101,34,41,38,38,33,98,105,46,99,97,108,108,40,110,44,34,99,97,108,108,101,101,34,41,125,44,102,102,61,75,117,46,105,115,65,114,114,97,121,44,99,102,61,86,110,63,107,40,86,110,41,58,67,116,44,97,102,61,122,105,124,124,86,117,44,108,102,61,75,110,63,107,40,75,110,41,58,68,116,44,115,102,61,71,110,63,107,40,71,110,41,58,84,116,44,104,102,61,72,110,63,107,40,72,110,41,58,78,116,44,112,102,61,74,110,63,107,40,74,110,41,58,80,116,44,95,102,61,89,110,63,107,40,89,110,41,58,90,116,44,118,102,61,101,101,40,75,116,41,44,103,102,61,101,101,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,60,61,116,125,41,44,100,102,61,36,114,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,10,105,102,40,122,101,40,116,41,124,124,115,117,40,116,41,41,67,114,40,116,44,87,117,40,116,41,44,110,41,59,101,108,115,101,32,102,111,114,40,118,97,114,32,114,32,105,110,32,116,41,111,105,46,99,97,108,108,40,116,44,114,41,38,38,111,116,40,110,44,114,44,116,91,114,93,41,125,41,44,121,102,61,36,114,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,67,114,40,116,44,66,117,40,116,41,44,110,41,125,41,44,98,102,61,36,114,40,102,117,110,99,116,105,111,110,40,110,44,116,44,114,44,101,41,123,67,114,40,116,44,66,117,40,116,41,44,110,44,101,41,125,41,44,120,102,61,36,114,40,102,117,110,99,116,105,111,110,40,110,44,116,44,114,44,101,41,123,67,114,40,116,44,87,117,40,116,41,44,110,44,101,41,125,41,44,106,102,61,112,101,40,104,116,41,44,119,102,61,102,114,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,110,61,81,117,40,110,41,59,118,97,114,32,114,61,45,49,44,101,61,116,46,108,101,110,103,116,104,44,117,61,50,60,101,63,116,91,50,93,58,84,59,102,111,114,40,117,38,38,79,101,40,116,91,48,93,44,116,91,49,93,44,117,41,38,38,40,101,61,49,41,59,43,43,114,60,101,59,41,102,111,114,40,118,97,114,32,117,61,116,91,114,93,44,105,61,66,117,40,117,41,44,111,61,45,49,44,102,61,105,46,108,101,110,103,116,104,59,43,43,111,60,102,59,41,123,118,97,114,32,99,61,105,91,111,93,44,97,61,110,91,99,93,59,40,97,61,61,61,84,124,124,108,117,40,97,44,101,105,91,99,93,41,38,38,33,111,105,46,99,97,108,108,40,110,44,99,41,41,38,38,40,110,91,99,93,61,117,91,99,93,41,125,114,101,116,117,114,110,32,110,125,41,44,109,102,61,102,114,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,112,117,115,104,40,84,44,97,101,41,44,110,40,79,102,44,84,44,116,41,125,41,44,65,102,61,89,114,40,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,10,110,117,108,108,33,61,116,38,38,116,121,112,101,111,102,32,116,46,116,111,83,116,114,105,110,103,33,61,34,102,117,110,99,116,105,111,110,34,38,38,40,116,61,97,105,46,99,97,108,108,40,116,41,41,44,110,91,116,93,61,114,125,44,84,117,40,36,117,41,41,44,69,102,61,89,114,40,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,110,117,108,108,33,61,116,38,38,116,121,112,101,111,102,32,116,46,116,111,83,116,114,105,110,103,33,61,34,102,117,110,99,116,105,111,110,34,38,38,40,116,61,97,105,46,99,97,108,108,40,116,41,41,44,111,105,46,99,97,108,108,40,110,44,116,41,63,110,91,116,93,46,112,117,115,104,40,114,41,58,110,91,116,93,61,91,114,93,125,44,121,101,41,44,107,102,61,102,114,40,76,116,41,44,83,102,61,36,114,40,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,89,116,40,110,44,116,44,114,41,125,41,44,79,102,61,36,114,40,102,117,110,99,116,105,111,110,40,110,44,116,44,114,44,101,41,123,89,116,40,110,44,116,44,114,44,101,41,125,41,44,73,102,61,112,101,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,118,97,114,32,114,61,123,125,59,105,102,40,110,117,108,108,61,61,110,41,114,101,116,117,114,110,32,114,59,118,97,114,32,101,61,102,97,108,115,101,59,116,61,99,40,116,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,61,83,114,40,116,44,110,41,44,101,124,124,40,101,61,49,60,116,46,108,101,110,103,116,104,41,44,116,125,41,44,67,114,40,110,44,118,101,40,110,41,44,114,41,44,101,38,38,40,114,61,95,116,40,114,44,55,44,108,101,41,41,59,102,111,114,40,118,97,114,32,117,61,116,46,108,101,110,103,116,104,59,117,45,45,59,41,120,114,40,114,44,116,91,117,93,41,59,114,101,116,117,114,110,32,114,125,41,44,82,102,61,112,101,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,110,63,123,125,58,110,114,40,110,44,116,41,59,10,125,41,44,122,102,61,111,101,40,87,117,41,44,87,102,61,111,101,40,66,117,41,44,66,102,61,113,114,40,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,116,61,116,46,116,111,76,111,119,101,114,67,97,115,101,40,41,44,110,43,40,114,63,67,117,40,116,41,58,116,41,125,41,44,76,102,61,113,114,40,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,110,43,40,114,63,34,45,34,58,34,34,41,43,116,46,116,111,76,111,119,101,114,67,97,115,101,40,41,125,41,44,85,102,61,113,114,40,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,110,43,40,114,63,34,32,34,58,34,34,41,43,116,46,116,111,76,111,119,101,114,67,97,115,101,40,41,125,41,44,67,102,61,90,114,40,34,116,111,76,111,119,101,114,67,97,115,101,34,41,44,68,102,61,113,114,40,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,110,43,40,114,63,34,95,34,58,34,34,41,43,116,46,116,111,76,111,119,101,114,67,97,115,101,40,41,125,41,44,77,102,61,113,114,40,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,110,43,40,114,63,34,32,34,58,34,34,41,43,36,102,40,116,41,125,41,44,84,102,61,113,114,40,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,110,43,40,114,63,34,32,34,58,34,34,41,43,116,46,116,111,85,112,112,101,114,67,97,115,101,40,41,125,41,44,36,102,61,90,114,40,34,116,111,85,112,112,101,114,67,97,115,101,34,41,44,70,102,61,102,114,40,102,117,110,99,116,105,111,110,40,116,44,114,41,123,116,114,121,123,114,101,116,117,114,110,32,110,40,116,44,84,44,114,41,125,99,97,116,99,104,40,110,41,123,114,101,116,117,114,110,32,112,117,40,110,41,63,110,58,110,101,119,32,72,117,40,110,41,125,125,41,44,78,102,61,112,101,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,10,114,101,116,117,114,110,32,114,40,116,44,102,117,110,99,116,105,111,110,40,116,41,123,116,61,77,101,40,116,41,44,115,116,40,110,44,116,44,72,111,40,110,91,116,93,44,110,41,41,125,41,44,110,125,41,44,80,102,61,72,114,40,41,44,90,102,61,72,114,40,116,114,117,101,41,44,113,102,61,102,114,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,114,41,123,114,101,116,117,114,110,32,76,116,40,114,44,110,44,116,41,125,125,41,44,86,102,61,102,114,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,114,41,123,114,101,116,117,114,110,32,76,116,40,110,44,114,44,116,41,125,125,41,44,75,102,61,88,114,40,99,41,44,71,102,61,88,114,40,117,41,44,72,102,61,88,114,40,104,41,44,74,102,61,114,101,40,41,44,89,102,61,114,101,40,116,114,117,101,41,44,81,102,61,81,114,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,43,116,125,44,48,41,44,88,102,61,105,101,40,34,99,101,105,108,34,41,44,110,99,61,81,114,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,47,116,125,44,49,41,44,116,99,61,105,101,40,34,102,108,111,111,114,34,41,44,114,99,61,81,114,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,42,116,125,44,49,41,44,101,99,61,105,101,40,34,114,111,117,110,100,34,41,44,117,99,61,81,114,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,45,116,125,44,48,41,59,114,101,116,117,114,110,32,65,110,46,97,102,116,101,114,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,105,102,40,116,121,112,101,111,102,32,116,33,61,34,102,117,110,99,116,105,111,110,34,41,116,104,114,111,119,32,110,101,119,32,116,105,40,34,69,120,112,101,99,116,101,100,32,97,32,102,117,110,99,116,105,111,110,34,41,59,10,114,101,116,117,114,110,32,110,61,69,117,40,110,41,44,102,117,110,99,116,105,111,110,40,41,123,105,102,40,49,62,45,45,110,41,114,101,116,117,114,110,32,116,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,125,125,44,65,110,46,97,114,121,61,101,117,44,65,110,46,97,115,115,105,103,110,61,100,102,44,65,110,46,97,115,115,105,103,110,73,110,61,121,102,44,65,110,46,97,115,115,105,103,110,73,110,87,105,116,104,61,98,102,44,65,110,46,97,115,115,105,103,110,87,105,116,104,61,120,102,44,65,110,46,97,116,61,106,102,44,65,110,46,98,101,102,111,114,101,61,117,117,44,65,110,46,98,105,110,100,61,72,111,44,65,110,46,98,105,110,100,65,108,108,61,78,102,44,65,110,46,98,105,110,100,75,101,121,61,74,111,44,65,110,46,99,97,115,116,65,114,114,97,121,61,102,117,110,99,116,105,111,110,40,41,123,105,102,40,33,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,114,101,116,117,114,110,91,93,59,118,97,114,32,110,61,97,114,103,117,109,101,110,116,115,91,48,93,59,114,101,116,117,114,110,32,102,102,40,110,41,63,110,58,91,110,93,125,44,65,110,46,99,104,97,105,110,61,89,101,44,65,110,46,99,104,117,110,107,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,105,102,40,116,61,40,114,63,79,101,40,110,44,116,44,114,41,58,116,61,61,61,84,41,63,49,58,85,105,40,69,117,40,116,41,44,48,41,44,114,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,44,33,114,124,124,49,62,116,41,114,101,116,117,114,110,91,93,59,102,111,114,40,118,97,114,32,101,61,48,44,117,61,48,44,105,61,75,117,40,79,105,40,114,47,116,41,41,59,101,60,114,59,41,105,91,117,43,43,93,61,104,114,40,110,44,101,44,101,43,61,116,41,59,114,101,116,117,114,110,32,105,125,44,65,110,46,99,111,109,112,97,99,116,61,102,117,110,99,116,105,111,110,40,110,41,123,102,111,114,40,118,97,114,32,116,61,45,49,44,114,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,44,101,61,48,44,117,61,91,93,59,43,43,116,60,114,59,41,123,10,118,97,114,32,105,61,110,91,116,93,59,105,38,38,40,117,91,101,43,43,93,61,105,41,125,114,101,116,117,114,110,32,117,125,44,65,110,46,99,111,110,99,97,116,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,110,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,105,102,40,33,110,41,114,101,116,117,114,110,91,93,59,102,111,114,40,118,97,114,32,116,61,75,117,40,110,45,49,41,44,114,61,97,114,103,117,109,101,110,116,115,91,48,93,59,110,45,45,59,41,116,91,110,45,49,93,61,97,114,103,117,109,101,110,116,115,91,110,93,59,114,101,116,117,114,110,32,97,40,102,102,40,114,41,63,85,114,40,114,41,58,91,114,93,44,119,116,40,116,44,49,41,41,125,44,65,110,46,99,111,110,100,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,114,61,110,117,108,108,61,61,116,63,48,58,116,46,108,101,110,103,116,104,44,101,61,121,101,40,41,59,114,101,116,117,114,110,32,116,61,114,63,99,40,116,44,102,117,110,99,116,105,111,110,40,110,41,123,105,102,40,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,110,91,49,93,41,116,104,114,111,119,32,110,101,119,32,116,105,40,34,69,120,112,101,99,116,101,100,32,97,32,102,117,110,99,116,105,111,110,34,41,59,114,101,116,117,114,110,91,101,40,110,91,48,93,41,44,110,91,49,93,93,125,41,58,91,93,44,102,114,40,102,117,110,99,116,105,111,110,40,101,41,123,102,111,114,40,118,97,114,32,117,61,45,49,59,43,43,117,60,114,59,41,123,118,97,114,32,105,61,116,91,117,93,59,105,102,40,110,40,105,91,48,93,44,116,104,105,115,44,101,41,41,114,101,116,117,114,110,32,110,40,105,91,49,93,44,116,104,105,115,44,101,41,125,125,41,125,44,65,110,46,99,111,110,102,111,114,109,115,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,118,116,40,95,116,40,110,44,49,41,41,125,44,65,110,46,99,111,110,115,116,97,110,116,61,84,117,44,10,65,110,46,99,111,117,110,116,66,121,61,36,111,44,65,110,46,99,114,101,97,116,101,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,118,97,114,32,114,61,101,111,40,110,41,59,114,101,116,117,114,110,32,110,117,108,108,61,61,116,63,114,58,97,116,40,114,44,116,41,125,44,65,110,46,99,117,114,114,121,61,105,117,44,65,110,46,99,117,114,114,121,82,105,103,104,116,61,111,117,44,65,110,46,100,101,98,111,117,110,99,101,61,102,117,44,65,110,46,100,101,102,97,117,108,116,115,61,119,102,44,65,110,46,100,101,102,97,117,108,116,115,68,101,101,112,61,109,102,44,65,110,46,100,101,102,101,114,61,89,111,44,65,110,46,100,101,108,97,121,61,81,111,44,65,110,46,100,105,102,102,101,114,101,110,99,101,61,119,111,44,65,110,46,100,105,102,102,101,114,101,110,99,101,66,121,61,109,111,44,65,110,46,100,105,102,102,101,114,101,110,99,101,87,105,116,104,61,65,111,44,65,110,46,100,114,111,112,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,118,97,114,32,101,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,101,63,40,116,61,114,124,124,116,61,61,61,84,63,49,58,69,117,40,116,41,44,104,114,40,110,44,48,62,116,63,48,58,116,44,101,41,41,58,91,93,125,44,65,110,46,100,114,111,112,82,105,103,104,116,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,118,97,114,32,101,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,101,63,40,116,61,114,124,124,116,61,61,61,84,63,49,58,69,117,40,116,41,44,116,61,101,45,116,44,104,114,40,110,44,48,44,48,62,116,63,48,58,116,41,41,58,91,93,125,44,65,110,46,100,114,111,112,82,105,103,104,116,87,104,105,108,101,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,38,38,110,46,108,101,110,103,116,104,63,106,114,40,110,44,121,101,40,116,44,51,41,44,116,114,117,101,44,116,114,117,101,41,58,91,93,59,10,125,44,65,110,46,100,114,111,112,87,104,105,108,101,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,38,38,110,46,108,101,110,103,116,104,63,106,114,40,110,44,121,101,40,116,44,51,41,44,116,114,117,101,41,58,91,93,125,44,65,110,46,102,105,108,108,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,44,101,41,123,118,97,114,32,117,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,105,102,40,33,117,41,114,101,116,117,114,110,91,93,59,102,111,114,40,114,38,38,116,121,112,101,111,102,32,114,33,61,34,110,117,109,98,101,114,34,38,38,79,101,40,110,44,116,44,114,41,38,38,40,114,61,48,44,101,61,117,41,44,117,61,110,46,108,101,110,103,116,104,44,114,61,69,117,40,114,41,44,48,62,114,38,38,40,114,61,45,114,62,117,63,48,58,117,43,114,41,44,101,61,101,61,61,61,84,124,124,101,62,117,63,117,58,69,117,40,101,41,44,48,62,101,38,38,40,101,43,61,117,41,44,101,61,114,62,101,63,48,58,107,117,40,101,41,59,114,60,101,59,41,110,91,114,43,43,93,61,116,59,114,101,116,117,114,110,32,110,125,44,65,110,46,102,105,108,116,101,114,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,40,102,102,40,110,41,63,105,58,106,116,41,40,110,44,121,101,40,116,44,51,41,41,125,44,65,110,46,102,108,97,116,77,97,112,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,119,116,40,114,117,40,110,44,116,41,44,49,41,125,44,65,110,46,102,108,97,116,77,97,112,68,101,101,112,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,119,116,40,114,117,40,110,44,116,41,44,36,41,125,44,65,110,46,102,108,97,116,77,97,112,68,101,112,116,104,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,114,61,114,61,61,61,84,63,49,58,69,117,40,114,41,44,10,119,116,40,114,117,40,110,44,116,41,44,114,41,125,44,65,110,46,102,108,97,116,116,101,110,61,90,101,44,65,110,46,102,108,97,116,116,101,110,68,101,101,112,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,40,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,41,63,119,116,40,110,44,36,41,58,91,93,125,44,65,110,46,102,108,97,116,116,101,110,68,101,112,116,104,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,117,108,108,33,61,110,38,38,110,46,108,101,110,103,116,104,63,40,116,61,116,61,61,61,84,63,49,58,69,117,40,116,41,44,119,116,40,110,44,116,41,41,58,91,93,125,44,65,110,46,102,108,105,112,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,102,101,40,110,44,53,49,50,41,125,44,65,110,46,102,108,111,119,61,80,102,44,65,110,46,102,108,111,119,82,105,103,104,116,61,90,102,44,65,110,46,102,114,111,109,80,97,105,114,115,61,102,117,110,99,116,105,111,110,40,110,41,123,102,111,114,40,118,97,114,32,116,61,45,49,44,114,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,44,101,61,123,125,59,43,43,116,60,114,59,41,123,118,97,114,32,117,61,110,91,116,93,59,101,91,117,91,48,93,93,61,117,91,49,93,125,114,101,116,117,114,110,32,101,125,44,65,110,46,102,117,110,99,116,105,111,110,115,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,110,63,91,93,58,69,116,40,110,44,87,117,40,110,41,41,125,44,65,110,46,102,117,110,99,116,105,111,110,115,73,110,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,110,63,91,93,58,69,116,40,110,44,66,117,40,110,41,41,125,44,65,110,46,103,114,111,117,112,66,121,61,80,111,44,65,110,46,105,110,105,116,105,97,108,61,102,117,110,99,116,105,111,110,40,110,41,123,10,114,101,116,117,114,110,40,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,41,63,104,114,40,110,44,48,44,45,49,41,58,91,93,125,44,65,110,46,105,110,116,101,114,115,101,99,116,105,111,110,61,69,111,44,65,110,46,105,110,116,101,114,115,101,99,116,105,111,110,66,121,61,107,111,44,65,110,46,105,110,116,101,114,115,101,99,116,105,111,110,87,105,116,104,61,83,111,44,65,110,46,105,110,118,101,114,116,61,65,102,44,65,110,46,105,110,118,101,114,116,66,121,61,69,102,44,65,110,46,105,110,118,111,107,101,77,97,112,61,90,111,44,65,110,46,105,116,101,114,97,116,101,101,61,70,117,44,65,110,46,107,101,121,66,121,61,113,111,44,65,110,46,107,101,121,115,61,87,117,44,65,110,46,107,101,121,115,73,110,61,66,117,44,65,110,46,109,97,112,61,114,117,44,65,110,46,109,97,112,75,101,121,115,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,118,97,114,32,114,61,123,125,59,114,101,116,117,114,110,32,116,61,121,101,40,116,44,51,41,44,109,116,40,110,44,102,117,110,99,116,105,111,110,40,110,44,101,44,117,41,123,115,116,40,114,44,116,40,110,44,101,44,117,41,44,110,41,125,41,44,114,125,44,65,110,46,109,97,112,86,97,108,117,101,115,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,118,97,114,32,114,61,123,125,59,114,101,116,117,114,110,32,116,61,121,101,40,116,44,51,41,44,109,116,40,110,44,102,117,110,99,116,105,111,110,40,110,44,101,44,117,41,123,115,116,40,114,44,101,44,116,40,110,44,101,44,117,41,41,125,41,44,114,125,44,65,110,46,109,97,116,99,104,101,115,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,72,116,40,95,116,40,110,44,49,41,41,125,44,65,110,46,109,97,116,99,104,101,115,80,114,111,112,101,114,116,121,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,74,116,40,110,44,95,116,40,116,44,49,41,41,125,44,65,110,46,109,101,109,111,105,122,101,61,99,117,44,10,65,110,46,109,101,114,103,101,61,83,102,44,65,110,46,109,101,114,103,101,87,105,116,104,61,79,102,44,65,110,46,109,101,116,104,111,100,61,113,102,44,65,110,46,109,101,116,104,111,100,79,102,61,86,102,44,65,110,46,109,105,120,105,110,61,78,117,44,65,110,46,110,101,103,97,116,101,61,97,117,44,65,110,46,110,116,104,65,114,103,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,110,61,69,117,40,110,41,44,102,114,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,81,116,40,116,44,110,41,125,41,125,44,65,110,46,111,109,105,116,61,73,102,44,65,110,46,111,109,105,116,66,121,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,76,117,40,110,44,97,117,40,121,101,40,116,41,41,41,125,44,65,110,46,111,110,99,101,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,117,117,40,50,44,110,41,125,44,65,110,46,111,114,100,101,114,66,121,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,44,101,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,110,63,91,93,58,40,102,102,40,116,41,124,124,40,116,61,110,117,108,108,61,61,116,63,91,93,58,91,116,93,41,44,114,61,101,63,84,58,114,44,102,102,40,114,41,124,124,40,114,61,110,117,108,108,61,61,114,63,91,93,58,91,114,93,41,44,88,116,40,110,44,116,44,114,41,41,125,44,65,110,46,111,118,101,114,61,75,102,44,65,110,46,111,118,101,114,65,114,103,115,61,88,111,44,65,110,46,111,118,101,114,69,118,101,114,121,61,71,102,44,65,110,46,111,118,101,114,83,111,109,101,61,72,102,44,65,110,46,112,97,114,116,105,97,108,61,110,102,44,65,110,46,112,97,114,116,105,97,108,82,105,103,104,116,61,116,102,44,65,110,46,112,97,114,116,105,116,105,111,110,61,86,111,44,65,110,46,112,105,99,107,61,82,102,44,65,110,46,112,105,99,107,66,121,61,76,117,44,65,110,46,112,114,111,112,101,114,116,121,61,90,117,44,10,65,110,46,112,114,111,112,101,114,116,121,79,102,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,110,63,84,58,107,116,40,110,44,116,41,125,125,44,65,110,46,112,117,108,108,61,79,111,44,65,110,46,112,117,108,108,65,108,108,61,75,101,44,65,110,46,112,117,108,108,65,108,108,66,121,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,110,38,38,110,46,108,101,110,103,116,104,38,38,116,38,38,116,46,108,101,110,103,116,104,63,101,114,40,110,44,116,44,121,101,40,114,44,50,41,41,58,110,125,44,65,110,46,112,117,108,108,65,108,108,87,105,116,104,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,110,38,38,110,46,108,101,110,103,116,104,38,38,116,38,38,116,46,108,101,110,103,116,104,63,101,114,40,110,44,116,44,84,44,114,41,58,110,125,44,65,110,46,112,117,108,108,65,116,61,73,111,44,65,110,46,114,97,110,103,101,61,74,102,44,65,110,46,114,97,110,103,101,82,105,103,104,116,61,89,102,44,65,110,46,114,101,97,114,103,61,114,102,44,65,110,46,114,101,106,101,99,116,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,40,102,102,40,110,41,63,105,58,106,116,41,40,110,44,97,117,40,121,101,40,116,44,51,41,41,41,125,44,65,110,46,114,101,109,111,118,101,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,118,97,114,32,114,61,91,93,59,105,102,40,33,110,124,124,33,110,46,108,101,110,103,116,104,41,114,101,116,117,114,110,32,114,59,118,97,114,32,101,61,45,49,44,117,61,91,93,44,105,61,110,46,108,101,110,103,116,104,59,102,111,114,40,116,61,121,101,40,116,44,51,41,59,43,43,101,60,105,59,41,123,118,97,114,32,111,61,110,91,101,93,59,116,40,111,44,101,44,110,41,38,38,40,114,46,112,117,115,104,40,111,41,44,10,117,46,112,117,115,104,40,101,41,41,125,114,101,116,117,114,110,32,117,114,40,110,44,117,41,44,114,125,44,65,110,46,114,101,115,116,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,105,102,40,116,121,112,101,111,102,32,110,33,61,34,102,117,110,99,116,105,111,110,34,41,116,104,114,111,119,32,110,101,119,32,116,105,40,34,69,120,112,101,99,116,101,100,32,97,32,102,117,110,99,116,105,111,110,34,41,59,114,101,116,117,114,110,32,116,61,116,61,61,61,84,63,116,58,69,117,40,116,41,44,102,114,40,110,44,116,41,125,44,65,110,46,114,101,118,101,114,115,101,61,71,101,44,65,110,46,115,97,109,112,108,101,83,105,122,101,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,116,61,40,114,63,79,101,40,110,44,116,44,114,41,58,116,61,61,61,84,41,63,49,58,69,117,40,116,41,44,40,102,102,40,110,41,63,101,116,58,97,114,41,40,110,44,116,41,125,44,65,110,46,115,101,116,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,110,63,110,58,108,114,40,110,44,116,44,114,41,125,44,65,110,46,115,101,116,87,105,116,104,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,44,101,41,123,114,101,116,117,114,110,32,101,61,116,121,112,101,111,102,32,101,61,61,34,102,117,110,99,116,105,111,110,34,63,101,58,84,44,110,117,108,108,61,61,110,63,110,58,108,114,40,110,44,116,44,114,44,101,41,125,44,65,110,46,115,104,117,102,102,108,101,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,40,102,102,40,110,41,63,117,116,58,115,114,41,40,110,41,125,44,65,110,46,115,108,105,99,101,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,118,97,114,32,101,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,101,63,40,114,38,38,116,121,112,101,111,102,32,114,33,61,34,110,117,109,98,101,114,34,38,38,79,101,40,110,44,116,44,114,41,63,40,116,61,48,44,10,114,61,101,41,58,40,116,61,110,117,108,108,61,61,116,63,48,58,69,117,40,116,41,44,114,61,114,61,61,61,84,63,101,58,69,117,40,114,41,41,44,104,114,40,110,44,116,44,114,41,41,58,91,93,125,44,65,110,46,115,111,114,116,66,121,61,75,111,44,65,110,46,115,111,114,116,101,100,85,110,105,113,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,110,38,38,110,46,108,101,110,103,116,104,63,103,114,40,110,41,58,91,93,125,44,65,110,46,115,111,114,116,101,100,85,110,105,113,66,121,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,38,38,110,46,108,101,110,103,116,104,63,103,114,40,110,44,121,101,40,116,44,50,41,41,58,91,93,125,44,65,110,46,115,112,108,105,116,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,114,38,38,116,121,112,101,111,102,32,114,33,61,34,110,117,109,98,101,114,34,38,38,79,101,40,110,44,116,44,114,41,38,38,40,116,61,114,61,84,41,44,114,61,114,61,61,61,84,63,52,50,57,52,57,54,55,50,57,53,58,114,62,62,62,48,44,114,63,40,110,61,73,117,40,110,41,41,38,38,40,116,121,112,101,111,102,32,116,61,61,34,115,116,114,105,110,103,34,124,124,110,117,108,108,33,61,116,38,38,33,104,102,40,116,41,41,38,38,40,116,61,121,114,40,116,41,44,33,116,38,38,82,110,46,116,101,115,116,40,110,41,41,63,79,114,40,77,40,110,41,44,48,44,114,41,58,110,46,115,112,108,105,116,40,116,44,114,41,58,91,93,125,44,65,110,46,115,112,114,101,97,100,61,102,117,110,99,116,105,111,110,40,116,44,114,41,123,105,102,40,116,121,112,101,111,102,32,116,33,61,34,102,117,110,99,116,105,111,110,34,41,116,104,114,111,119,32,110,101,119,32,116,105,40,34,69,120,112,101,99,116,101,100,32,97,32,102,117,110,99,116,105,111,110,34,41,59,114,101,116,117,114,110,32,114,61,110,117,108,108,61,61,114,63,48,58,85,105,40,69,117,40,114,41,44,48,41,44,10,102,114,40,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,117,61,101,91,114,93,59,114,101,116,117,114,110,32,101,61,79,114,40,101,44,48,44,114,41,44,117,38,38,97,40,101,44,117,41,44,110,40,116,44,116,104,105,115,44,101,41,125,41,125,44,65,110,46,116,97,105,108,61,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,116,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,116,63,104,114,40,110,44,49,44,116,41,58,91,93,125,44,65,110,46,116,97,107,101,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,110,38,38,110,46,108,101,110,103,116,104,63,40,116,61,114,124,124,116,61,61,61,84,63,49,58,69,117,40,116,41,44,104,114,40,110,44,48,44,48,62,116,63,48,58,116,41,41,58,91,93,125,44,65,110,46,116,97,107,101,82,105,103,104,116,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,118,97,114,32,101,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,101,63,40,116,61,114,124,124,116,61,61,61,84,63,49,58,69,117,40,116,41,44,116,61,101,45,116,44,104,114,40,110,44,48,62,116,63,48,58,116,44,101,41,41,58,91,93,125,44,65,110,46,116,97,107,101,82,105,103,104,116,87,104,105,108,101,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,38,38,110,46,108,101,110,103,116,104,63,106,114,40,110,44,121,101,40,116,44,51,41,44,102,97,108,115,101,44,116,114,117,101,41,58,91,93,125,44,65,110,46,116,97,107,101,87,104,105,108,101,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,38,38,110,46,108,101,110,103,116,104,63,106,114,40,110,44,121,101,40,116,44,51,41,41,58,91,93,125,44,65,110,46,116,97,112,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,116,40,110,41,44,10,110,125,44,65,110,46,116,104,114,111,116,116,108,101,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,118,97,114,32,101,61,116,114,117,101,44,117,61,116,114,117,101,59,105,102,40,116,121,112,101,111,102,32,110,33,61,34,102,117,110,99,116,105,111,110,34,41,116,104,114,111,119,32,110,101,119,32,116,105,40,34,69,120,112,101,99,116,101,100,32,97,32,102,117,110,99,116,105,111,110,34,41,59,114,101,116,117,114,110,32,100,117,40,114,41,38,38,40,101,61,34,108,101,97,100,105,110,103,34,105,110,32,114,63,33,33,114,46,108,101,97,100,105,110,103,58,101,44,117,61,34,116,114,97,105,108,105,110,103,34,105,110,32,114,63,33,33,114,46,116,114,97,105,108,105,110,103,58,117,41,44,102,117,40,110,44,116,44,123,108,101,97,100,105,110,103,58,101,44,109,97,120,87,97,105,116,58,116,44,116,114,97,105,108,105,110,103,58,117,125,41,125,44,65,110,46,116,104,114,117,61,81,101,44,65,110,46,116,111,65,114,114,97,121,61,109,117,44,65,110,46,116,111,80,97,105,114,115,61,122,102,44,65,110,46,116,111,80,97,105,114,115,73,110,61,87,102,44,65,110,46,116,111,80,97,116,104,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,102,102,40,110,41,63,99,40,110,44,77,101,41,58,119,117,40,110,41,63,91,110,93,58,85,114,40,106,111,40,73,117,40,110,41,41,41,125,44,65,110,46,116,111,80,108,97,105,110,79,98,106,101,99,116,61,79,117,44,65,110,46,116,114,97,110,115,102,111,114,109,61,102,117,110,99,116,105,111,110,40,110,44,116,44,101,41,123,118,97,114,32,117,61,102,102,40,110,41,44,105,61,117,124,124,97,102,40,110,41,124,124,95,102,40,110,41,59,105,102,40,116,61,121,101,40,116,44,52,41,44,110,117,108,108,61,61,101,41,123,118,97,114,32,111,61,110,38,38,110,46,99,111,110,115,116,114,117,99,116,111,114,59,101,61,105,63,117,63,110,101,119,32,111,58,91,93,58,100,117,40,110,41,38,38,95,117,40,111,41,63,101,111,40,100,105,40,110,41,41,58,123,125,59,10,125,114,101,116,117,114,110,40,105,63,114,58,109,116,41,40,110,44,102,117,110,99,116,105,111,110,40,110,44,114,44,117,41,123,114,101,116,117,114,110,32,116,40,101,44,110,44,114,44,117,41,125,41,44,101,125,44,65,110,46,117,110,97,114,121,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,101,117,40,110,44,49,41,125,44,65,110,46,117,110,105,111,110,61,82,111,44,65,110,46,117,110,105,111,110,66,121,61,122,111,44,65,110,46,117,110,105,111,110,87,105,116,104,61,87,111,44,65,110,46,117,110,105,113,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,110,38,38,110,46,108,101,110,103,116,104,63,98,114,40,110,41,58,91,93,125,44,65,110,46,117,110,105,113,66,121,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,38,38,110,46,108,101,110,103,116,104,63,98,114,40,110,44,121,101,40,116,44,50,41,41,58,91,93,125,44,65,110,46,117,110,105,113,87,105,116,104,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,116,61,116,121,112,101,111,102,32,116,61,61,34,102,117,110,99,116,105,111,110,34,63,116,58,84,44,110,38,38,110,46,108,101,110,103,116,104,63,98,114,40,110,44,84,44,116,41,58,91,93,125,44,65,110,46,117,110,115,101,116,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,110,124,124,120,114,40,110,44,116,41,125,44,65,110,46,117,110,122,105,112,61,72,101,44,65,110,46,117,110,122,105,112,87,105,116,104,61,74,101,44,65,110,46,117,112,100,97,116,101,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,110,63,110,58,108,114,40,110,44,116,44,107,114,40,114,41,40,107,116,40,110,44,116,41,41,44,118,111,105,100,32,48,41,125,44,65,110,46,117,112,100,97,116,101,87,105,116,104,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,44,101,41,123,10,114,101,116,117,114,110,32,101,61,116,121,112,101,111,102,32,101,61,61,34,102,117,110,99,116,105,111,110,34,63,101,58,84,44,110,117,108,108,33,61,110,38,38,40,110,61,108,114,40,110,44,116,44,107,114,40,114,41,40,107,116,40,110,44,116,41,41,44,101,41,41,44,110,125,44,65,110,46,118,97,108,117,101,115,61,85,117,44,65,110,46,118,97,108,117,101,115,73,110,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,110,63,91,93,58,83,40,110,44,66,117,40,110,41,41,125,44,65,110,46,119,105,116,104,111,117,116,61,66,111,44,65,110,46,119,111,114,100,115,61,77,117,44,65,110,46,119,114,97,112,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,102,40,107,114,40,116,41,44,110,41,125,44,65,110,46,120,111,114,61,76,111,44,65,110,46,120,111,114,66,121,61,85,111,44,65,110,46,120,111,114,87,105,116,104,61,67,111,44,65,110,46,122,105,112,61,68,111,44,65,110,46,122,105,112,79,98,106,101,99,116,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,65,114,40,110,124,124,91,93,44,116,124,124,91,93,44,111,116,41,125,44,65,110,46,122,105,112,79,98,106,101,99,116,68,101,101,112,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,65,114,40,110,124,124,91,93,44,116,124,124,91,93,44,108,114,41,125,44,65,110,46,122,105,112,87,105,116,104,61,77,111,44,65,110,46,101,110,116,114,105,101,115,61,122,102,44,65,110,46,101,110,116,114,105,101,115,73,110,61,87,102,44,65,110,46,101,120,116,101,110,100,61,121,102,44,65,110,46,101,120,116,101,110,100,87,105,116,104,61,98,102,44,78,117,40,65,110,44,65,110,41,44,65,110,46,97,100,100,61,81,102,44,65,110,46,97,116,116,101,109,112,116,61,70,102,44,65,110,46,99,97,109,101,108,67,97,115,101,61,66,102,44,65,110,46,99,97,112,105,116,97,108,105,122,101,61,67,117,44,10,65,110,46,99,101,105,108,61,88,102,44,65,110,46,99,108,97,109,112,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,114,61,61,61,84,38,38,40,114,61,116,44,116,61,84,41,44,114,33,61,61,84,38,38,40,114,61,83,117,40,114,41,44,114,61,114,61,61,61,114,63,114,58,48,41,44,116,33,61,61,84,38,38,40,116,61,83,117,40,116,41,44,116,61,116,61,61,61,116,63,116,58,48,41,44,112,116,40,83,117,40,110,41,44,116,44,114,41,125,44,65,110,46,99,108,111,110,101,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,95,116,40,110,44,52,41,125,44,65,110,46,99,108,111,110,101,68,101,101,112,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,95,116,40,110,44,53,41,125,44,65,110,46,99,108,111,110,101,68,101,101,112,87,105,116,104,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,116,61,116,121,112,101,111,102,32,116,61,61,34,102,117,110,99,116,105,111,110,34,63,116,58,84,44,95,116,40,110,44,53,44,116,41,125,44,65,110,46,99,108,111,110,101,87,105,116,104,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,116,61,116,121,112,101,111,102,32,116,61,61,34,102,117,110,99,116,105,111,110,34,63,116,58,84,44,95,116,40,110,44,52,44,116,41,125,44,65,110,46,99,111,110,102,111,114,109,115,84,111,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,116,124,124,103,116,40,110,44,116,44,87,117,40,116,41,41,125,44,65,110,46,100,101,98,117,114,114,61,68,117,44,65,110,46,100,101,102,97,117,108,116,84,111,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,110,124,124,110,33,61,61,110,63,116,58,110,125,44,65,110,46,100,105,118,105,100,101,61,110,99,44,65,110,46,101,110,100,115,87,105,116,104,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,10,110,61,73,117,40,110,41,44,116,61,121,114,40,116,41,59,118,97,114,32,101,61,110,46,108,101,110,103,116,104,44,101,61,114,61,114,61,61,61,84,63,101,58,112,116,40,69,117,40,114,41,44,48,44,101,41,59,114,101,116,117,114,110,32,114,45,61,116,46,108,101,110,103,116,104,44,48,60,61,114,38,38,110,46,115,108,105,99,101,40,114,44,101,41,61,61,116,125,44,65,110,46,101,113,61,108,117,44,65,110,46,101,115,99,97,112,101,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,40,110,61,73,117,40,110,41,41,38,38,72,46,116,101,115,116,40,110,41,63,110,46,114,101,112,108,97,99,101,40,75,44,110,116,41,58,110,125,44,65,110,46,101,115,99,97,112,101,82,101,103,69,120,112,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,40,110,61,73,117,40,110,41,41,38,38,101,110,46,116,101,115,116,40,110,41,63,110,46,114,101,112,108,97,99,101,40,114,110,44,34,92,92,36,38,34,41,58,110,125,44,65,110,46,101,118,101,114,121,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,118,97,114,32,101,61,102,102,40,110,41,63,117,58,98,116,59,114,101,116,117,114,110,32,114,38,38,79,101,40,110,44,116,44,114,41,38,38,40,116,61,84,41,44,101,40,110,44,121,101,40,116,44,51,41,41,125,44,65,110,46,102,105,110,100,61,70,111,44,65,110,46,102,105,110,100,73,110,100,101,120,61,78,101,44,65,110,46,102,105,110,100,75,101,121,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,112,40,110,44,121,101,40,116,44,51,41,44,109,116,41,125,44,65,110,46,102,105,110,100,76,97,115,116,61,78,111,44,65,110,46,102,105,110,100,76,97,115,116,73,110,100,101,120,61,80,101,44,65,110,46,102,105,110,100,76,97,115,116,75,101,121,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,112,40,110,44,121,101,40,116,44,51,41,44,65,116,41,59,10,125,44,65,110,46,102,108,111,111,114,61,116,99,44,65,110,46,102,111,114,69,97,99,104,61,110,117,44,65,110,46,102,111,114,69,97,99,104,82,105,103,104,116,61,116,117,44,65,110,46,102,111,114,73,110,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,110,63,110,58,111,111,40,110,44,121,101,40,116,44,51,41,44,66,117,41,125,44,65,110,46,102,111,114,73,110,82,105,103,104,116,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,110,63,110,58,102,111,40,110,44,121,101,40,116,44,51,41,44,66,117,41,125,44,65,110,46,102,111,114,79,119,110,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,38,38,109,116,40,110,44,121,101,40,116,44,51,41,41,125,44,65,110,46,102,111,114,79,119,110,82,105,103,104,116,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,38,38,65,116,40,110,44,121,101,40,116,44,51,41,41,125,44,65,110,46,103,101,116,61,82,117,44,65,110,46,103,116,61,101,102,44,65,110,46,103,116,101,61,117,102,44,65,110,46,104,97,115,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,117,108,108,33,61,110,38,38,119,101,40,110,44,116,44,82,116,41,125,44,65,110,46,104,97,115,73,110,61,122,117,44,65,110,46,104,101,97,100,61,113,101,44,65,110,46,105,100,101,110,116,105,116,121,61,36,117,44,65,110,46,105,110,99,108,117,100,101,115,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,44,101,41,123,114,101,116,117,114,110,32,110,61,115,117,40,110,41,63,110,58,85,117,40,110,41,44,114,61,114,38,38,33,101,63,69,117,40,114,41,58,48,44,101,61,110,46,108,101,110,103,116,104,44,48,62,114,38,38,40,114,61,85,105,40,101,43,114,44,48,41,41,44,106,117,40,110,41,63,114,60,61,101,38,38,45,49,60,110,46,105,110,100,101,120,79,102,40,116,44,114,41,58,33,33,101,38,38,45,49,60,118,40,110,44,116,44,114,41,59,10,125,44,65,110,46,105,110,100,101,120,79,102,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,118,97,114,32,101,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,101,63,40,114,61,110,117,108,108,61,61,114,63,48,58,69,117,40,114,41,44,48,62,114,38,38,40,114,61,85,105,40,101,43,114,44,48,41,41,44,118,40,110,44,116,44,114,41,41,58,45,49,125,44,65,110,46,105,110,82,97,110,103,101,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,116,61,65,117,40,116,41,44,114,61,61,61,84,63,40,114,61,116,44,116,61,48,41,58,114,61,65,117,40,114,41,44,110,61,83,117,40,110,41,44,110,62,61,67,105,40,116,44,114,41,38,38,110,60,85,105,40,116,44,114,41,125,44,65,110,46,105,110,118,111,107,101,61,107,102,44,65,110,46,105,115,65,114,103,117,109,101,110,116,115,61,111,102,44,65,110,46,105,115,65,114,114,97,121,61,102,102,44,65,110,46,105,115,65,114,114,97,121,66,117,102,102,101,114,61,99,102,44,65,110,46,105,115,65,114,114,97,121,76,105,107,101,61,115,117,44,65,110,46,105,115,65,114,114,97,121,76,105,107,101,79,98,106,101,99,116,61,104,117,44,65,110,46,105,115,66,111,111,108,101,97,110,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,114,117,101,61,61,61,110,124,124,102,97,108,115,101,61,61,61,110,124,124,121,117,40,110,41,38,38,34,91,111,98,106,101,99,116,32,66,111,111,108,101,97,110,93,34,61,61,79,116,40,110,41,125,44,65,110,46,105,115,66,117,102,102,101,114,61,97,102,44,65,110,46,105,115,68,97,116,101,61,108,102,44,65,110,46,105,115,69,108,101,109,101,110,116,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,121,117,40,110,41,38,38,49,61,61,61,110,46,110,111,100,101,84,121,112,101,38,38,33,120,117,40,110,41,125,44,65,110,46,105,115,69,109,112,116,121,61,102,117,110,99,116,105,111,110,40,110,41,123,10,105,102,40,110,117,108,108,61,61,110,41,114,101,116,117,114,110,32,116,114,117,101,59,105,102,40,115,117,40,110,41,38,38,40,102,102,40,110,41,124,124,116,121,112,101,111,102,32,110,61,61,34,115,116,114,105,110,103,34,124,124,116,121,112,101,111,102,32,110,46,115,112,108,105,99,101,61,61,34,102,117,110,99,116,105,111,110,34,124,124,97,102,40,110,41,124,124,95,102,40,110,41,124,124,111,102,40,110,41,41,41,114,101,116,117,114,110,33,110,46,108,101,110,103,116,104,59,118,97,114,32,116,61,118,111,40,110,41,59,105,102,40,34,91,111,98,106,101,99,116,32,77,97,112,93,34,61,61,116,124,124,34,91,111,98,106,101,99,116,32,83,101,116,93,34,61,61,116,41,114,101,116,117,114,110,33,110,46,115,105,122,101,59,105,102,40,122,101,40,110,41,41,114,101,116,117,114,110,33,86,116,40,110,41,46,108,101,110,103,116,104,59,102,111,114,40,118,97,114,32,114,32,105,110,32,110,41,105,102,40,111,105,46,99,97,108,108,40,110,44,114,41,41,114,101,116,117,114,110,32,102,97,108,115,101,59,114,101,116,117,114,110,32,116,114,117,101,125,44,65,110,46,105,115,69,113,117,97,108,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,77,116,40,110,44,116,41,125,44,65,110,46,105,115,69,113,117,97,108,87,105,116,104,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,118,97,114,32,101,61,40,114,61,116,121,112,101,111,102,32,114,61,61,34,102,117,110,99,116,105,111,110,34,63,114,58,84,41,63,114,40,110,44,116,41,58,84,59,114,101,116,117,114,110,32,101,61,61,61,84,63,77,116,40,110,44,116,44,84,44,114,41,58,33,33,101,125,44,65,110,46,105,115,69,114,114,111,114,61,112,117,44,65,110,46,105,115,70,105,110,105,116,101,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,121,112,101,111,102,32,110,61,61,34,110,117,109,98,101,114,34,38,38,87,105,40,110,41,125,44,65,110,46,105,115,70,117,110,99,116,105,111,110,61,95,117,44,10,65,110,46,105,115,73,110,116,101,103,101,114,61,118,117,44,65,110,46,105,115,76,101,110,103,116,104,61,103,117,44,65,110,46,105,115,77,97,112,61,115,102,44,65,110,46,105,115,77,97,116,99,104,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,61,61,61,116,124,124,36,116,40,110,44,116,44,120,101,40,116,41,41,125,44,65,110,46,105,115,77,97,116,99,104,87,105,116,104,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,114,61,116,121,112,101,111,102,32,114,61,61,34,102,117,110,99,116,105,111,110,34,63,114,58,84,44,36,116,40,110,44,116,44,120,101,40,116,41,44,114,41,125,44,65,110,46,105,115,78,97,78,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,98,117,40,110,41,38,38,110,33,61,43,110,125,44,65,110,46,105,115,78,97,116,105,118,101,61,102,117,110,99,116,105,111,110,40,110,41,123,105,102,40,103,111,40,110,41,41,116,104,114,111,119,32,110,101,119,32,72,117,40,34,85,110,115,117,112,112,111,114,116,101,100,32,99,111,114,101,45,106,115,32,117,115,101,46,32,84,114,121,32,104,116,116,112,115,58,47,47,110,112,109,115,46,105,111,47,115,101,97,114,99,104,63,113,61,112,111,110,121,102,105,108,108,46,34,41,59,114,101,116,117,114,110,32,70,116,40,110,41,125,44,65,110,46,105,115,78,105,108,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,110,125,44,65,110,46,105,115,78,117,108,108,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,61,110,125,44,65,110,46,105,115,78,117,109,98,101,114,61,98,117,44,65,110,46,105,115,79,98,106,101,99,116,61,100,117,44,65,110,46,105,115,79,98,106,101,99,116,76,105,107,101,61,121,117,44,65,110,46,105,115,80,108,97,105,110,79,98,106,101,99,116,61,120,117,44,65,110,46,105,115,82,101,103,69,120,112,61,104,102,44,10,65,110,46,105,115,83,97,102,101,73,110,116,101,103,101,114,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,118,117,40,110,41,38,38,45,57,48,48,55,49,57,57,50,53,52,55,52,48,57,57,49,60,61,110,38,38,57,48,48,55,49,57,57,50,53,52,55,52,48,57,57,49,62,61,110,125,44,65,110,46,105,115,83,101,116,61,112,102,44,65,110,46,105,115,83,116,114,105,110,103,61,106,117,44,65,110,46,105,115,83,121,109,98,111,108,61,119,117,44,65,110,46,105,115,84,121,112,101,100,65,114,114,97,121,61,95,102,44,65,110,46,105,115,85,110,100,101,102,105,110,101,100,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,110,61,61,61,84,125,44,65,110,46,105,115,87,101,97,107,77,97,112,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,121,117,40,110,41,38,38,34,91,111,98,106,101,99,116,32,87,101,97,107,77,97,112,93,34,61,61,118,111,40,110,41,125,44,65,110,46,105,115,87,101,97,107,83,101,116,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,121,117,40,110,41,38,38,34,91,111,98,106,101,99,116,32,87,101,97,107,83,101,116,93,34,61,61,79,116,40,110,41,125,44,65,110,46,106,111,105,110,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,110,63,34,34,58,66,105,46,99,97,108,108,40,110,44,116,41,125,44,65,110,46,107,101,98,97,98,67,97,115,101,61,76,102,44,65,110,46,108,97,115,116,61,86,101,44,65,110,46,108,97,115,116,73,110,100,101,120,79,102,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,118,97,114,32,101,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,105,102,40,33,101,41,114,101,116,117,114,110,45,49,59,118,97,114,32,117,61,101,59,105,102,40,114,33,61,61,84,38,38,40,117,61,69,117,40,114,41,44,117,61,48,62,117,63,85,105,40,101,43,117,44,48,41,58,67,105,40,117,44,101,45,49,41,41,44,10,116,61,61,61,116,41,123,102,111,114,40,114,61,117,43,49,59,114,45,45,38,38,110,91,114,93,33,61,61,116,59,41,59,110,61,114,125,101,108,115,101,32,110,61,95,40,110,44,100,44,117,44,116,114,117,101,41,59,114,101,116,117,114,110,32,110,125,44,65,110,46,108,111,119,101,114,67,97,115,101,61,85,102,44,65,110,46,108,111,119,101,114,70,105,114,115,116,61,67,102,44,65,110,46,108,116,61,118,102,44,65,110,46,108,116,101,61,103,102,44,65,110,46,109,97,120,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,110,38,38,110,46,108,101,110,103,116,104,63,120,116,40,110,44,36,117,44,73,116,41,58,84,125,44,65,110,46,109,97,120,66,121,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,38,38,110,46,108,101,110,103,116,104,63,120,116,40,110,44,121,101,40,116,44,50,41,44,73,116,41,58,84,125,44,65,110,46,109,101,97,110,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,121,40,110,44,36,117,41,125,44,65,110,46,109,101,97,110,66,121,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,121,40,110,44,121,101,40,116,44,50,41,41,125,44,65,110,46,109,105,110,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,110,38,38,110,46,108,101,110,103,116,104,63,120,116,40,110,44,36,117,44,75,116,41,58,84,125,44,65,110,46,109,105,110,66,121,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,38,38,110,46,108,101,110,103,116,104,63,120,116,40,110,44,121,101,40,116,44,50,41,44,75,116,41,58,84,125,44,65,110,46,115,116,117,98,65,114,114,97,121,61,113,117,44,65,110,46,115,116,117,98,70,97,108,115,101,61,86,117,44,65,110,46,115,116,117,98,79,98,106,101,99,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,125,125,44,65,110,46,115,116,117,98,83,116,114,105,110,103,61,102,117,110,99,116,105,111,110,40,41,123,10,114,101,116,117,114,110,34,34,125,44,65,110,46,115,116,117,98,84,114,117,101,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,114,117,101,125,44,65,110,46,109,117,108,116,105,112,108,121,61,114,99,44,65,110,46,110,116,104,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,38,38,110,46,108,101,110,103,116,104,63,81,116,40,110,44,69,117,40,116,41,41,58,84,125,44,65,110,46,110,111,67,111,110,102,108,105,99,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,36,110,46,95,61,61,61,116,104,105,115,38,38,40,36,110,46,95,61,115,105,41,44,116,104,105,115,125,44,65,110,46,110,111,111,112,61,80,117,44,65,110,46,110,111,119,61,71,111,44,65,110,46,112,97,100,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,110,61,73,117,40,110,41,59,118,97,114,32,101,61,40,116,61,69,117,40,116,41,41,63,68,40,110,41,58,48,59,114,101,116,117,114,110,33,116,124,124,101,62,61,116,63,110,58,40,116,61,40,116,45,101,41,47,50,44,110,101,40,73,105,40,116,41,44,114,41,43,110,43,110,101,40,79,105,40,116,41,44,114,41,41,125,44,65,110,46,112,97,100,69,110,100,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,110,61,73,117,40,110,41,59,118,97,114,32,101,61,40,116,61,69,117,40,116,41,41,63,68,40,110,41,58,48,59,114,101,116,117,114,110,32,116,38,38,101,60,116,63,110,43,110,101,40,116,45,101,44,114,41,58,110,125,44,65,110,46,112,97,100,83,116,97,114,116,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,110,61,73,117,40,110,41,59,118,97,114,32,101,61,40,116,61,69,117,40,116,41,41,63,68,40,110,41,58,48,59,114,101,116,117,114,110,32,116,38,38,101,60,116,63,110,101,40,116,45,101,44,114,41,43,110,58,110,125,44,65,110,46,112,97,114,115,101,73,110,116,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,10,114,101,116,117,114,110,32,114,124,124,110,117,108,108,61,61,116,63,116,61,48,58,116,38,38,40,116,61,43,116,41,44,77,105,40,73,117,40,110,41,46,114,101,112,108,97,99,101,40,111,110,44,34,34,41,44,116,124,124,48,41,125,44,65,110,46,114,97,110,100,111,109,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,105,102,40,114,38,38,116,121,112,101,111,102,32,114,33,61,34,98,111,111,108,101,97,110,34,38,38,79,101,40,110,44,116,44,114,41,38,38,40,116,61,114,61,84,41,44,114,61,61,61,84,38,38,40,116,121,112,101,111,102,32,116,61,61,34,98,111,111,108,101,97,110,34,63,40,114,61,116,44,116,61,84,41,58,116,121,112,101,111,102,32,110,61,61,34,98,111,111,108,101,97,110,34,38,38,40,114,61,110,44,110,61,84,41,41,44,110,61,61,61,84,38,38,116,61,61,61,84,63,40,110,61,48,44,116,61,49,41,58,40,110,61,65,117,40,110,41,44,116,61,61,61,84,63,40,116,61,110,44,110,61,48,41,58,116,61,65,117,40,116,41,41,44,110,62,116,41,123,118,97,114,32,101,61,110,59,110,61,116,44,116,61,101,125,114,101,116,117,114,110,32,114,124,124,110,37,49,124,124,116,37,49,63,40,114,61,84,105,40,41,44,67,105,40,110,43,114,42,40,116,45,110,43,67,110,40,34,49,101,45,34,43,40,40,114,43,34,34,41,46,108,101,110,103,116,104,45,49,41,41,41,44,116,41,41,58,105,114,40,110,44,116,41,125,44,65,110,46,114,101,100,117,99,101,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,118,97,114,32,101,61,102,102,40,110,41,63,108,58,106,44,117,61,51,62,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,101,40,110,44,121,101,40,116,44,52,41,44,114,44,117,44,117,111,41,125,44,65,110,46,114,101,100,117,99,101,82,105,103,104,116,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,118,97,114,32,101,61,102,102,40,110,41,63,115,58,106,44,117,61,51,62,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,10,114,101,116,117,114,110,32,101,40,110,44,121,101,40,116,44,52,41,44,114,44,117,44,105,111,41,125,44,65,110,46,114,101,112,101,97,116,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,116,61,40,114,63,79,101,40,110,44,116,44,114,41,58,116,61,61,61,84,41,63,49,58,69,117,40,116,41,44,111,114,40,73,117,40,110,41,44,116,41,125,44,65,110,46,114,101,112,108,97,99,101,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,110,61,97,114,103,117,109,101,110,116,115,44,116,61,73,117,40,110,91,48,93,41,59,114,101,116,117,114,110,32,51,62,110,46,108,101,110,103,116,104,63,116,58,116,46,114,101,112,108,97,99,101,40,110,91,49,93,44,110,91,50,93,41,125,44,65,110,46,114,101,115,117,108,116,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,116,61,83,114,40,116,44,110,41,59,118,97,114,32,101,61,45,49,44,117,61,116,46,108,101,110,103,116,104,59,102,111,114,40,117,124,124,40,117,61,49,44,110,61,84,41,59,43,43,101,60,117,59,41,123,118,97,114,32,105,61,110,117,108,108,61,61,110,63,84,58,110,91,77,101,40,116,91,101,93,41,93,59,105,61,61,61,84,38,38,40,101,61,117,44,105,61,114,41,44,110,61,95,117,40,105,41,63,105,46,99,97,108,108,40,110,41,58,105,125,114,101,116,117,114,110,32,110,125,44,65,110,46,114,111,117,110,100,61,101,99,44,65,110,46,114,117,110,73,110,67,111,110,116,101,120,116,61,120,44,65,110,46,115,97,109,112,108,101,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,40,102,102,40,110,41,63,81,110,58,99,114,41,40,110,41,125,44,65,110,46,115,105,122,101,61,102,117,110,99,116,105,111,110,40,110,41,123,105,102,40,110,117,108,108,61,61,110,41,114,101,116,117,114,110,32,48,59,105,102,40,115,117,40,110,41,41,114,101,116,117,114,110,32,106,117,40,110,41,63,68,40,110,41,58,110,46,108,101,110,103,116,104,59,10,118,97,114,32,116,61,118,111,40,110,41,59,114,101,116,117,114,110,34,91,111,98,106,101,99,116,32,77,97,112,93,34,61,61,116,124,124,34,91,111,98,106,101,99,116,32,83,101,116,93,34,61,61,116,63,110,46,115,105,122,101,58,86,116,40,110,41,46,108,101,110,103,116,104,125,44,65,110,46,115,110,97,107,101,67,97,115,101,61,68,102,44,65,110,46,115,111,109,101,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,118,97,114,32,101,61,102,102,40,110,41,63,104,58,112,114,59,114,101,116,117,114,110,32,114,38,38,79,101,40,110,44,116,44,114,41,38,38,40,116,61,84,41,44,101,40,110,44,121,101,40,116,44,51,41,41,125,44,65,110,46,115,111,114,116,101,100,73,110,100,101,120,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,95,114,40,110,44,116,41,125,44,65,110,46,115,111,114,116,101,100,73,110,100,101,120,66,121,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,118,114,40,110,44,116,44,121,101,40,114,44,50,41,41,125,44,65,110,46,115,111,114,116,101,100,73,110,100,101,120,79,102,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,118,97,114,32,114,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,105,102,40,114,41,123,118,97,114,32,101,61,95,114,40,110,44,116,41,59,105,102,40,101,60,114,38,38,108,117,40,110,91,101,93,44,116,41,41,114,101,116,117,114,110,32,101,125,114,101,116,117,114,110,45,49,125,44,65,110,46,115,111,114,116,101,100,76,97,115,116,73,110,100,101,120,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,95,114,40,110,44,116,44,116,114,117,101,41,125,44,65,110,46,115,111,114,116,101,100,76,97,115,116,73,110,100,101,120,66,121,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,118,114,40,110,44,116,44,121,101,40,114,44,50,41,44,116,114,117,101,41,59,10,125,44,65,110,46,115,111,114,116,101,100,76,97,115,116,73,110,100,101,120,79,102,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,105,102,40,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,41,123,118,97,114,32,114,61,95,114,40,110,44,116,44,116,114,117,101,41,45,49,59,105,102,40,108,117,40,110,91,114,93,44,116,41,41,114,101,116,117,114,110,32,114,125,114,101,116,117,114,110,45,49,125,44,65,110,46,115,116,97,114,116,67,97,115,101,61,77,102,44,65,110,46,115,116,97,114,116,115,87,105,116,104,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,110,61,73,117,40,110,41,44,114,61,110,117,108,108,61,61,114,63,48,58,112,116,40,69,117,40,114,41,44,48,44,110,46,108,101,110,103,116,104,41,44,116,61,121,114,40,116,41,44,110,46,115,108,105,99,101,40,114,44,114,43,116,46,108,101,110,103,116,104,41,61,61,116,125,44,65,110,46,115,117,98,116,114,97,99,116,61,117,99,44,65,110,46,115,117,109,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,110,38,38,110,46,108,101,110,103,116,104,63,109,40,110,44,36,117,41,58,48,125,44,65,110,46,115,117,109,66,121,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,38,38,110,46,108,101,110,103,116,104,63,109,40,110,44,121,101,40,116,44,50,41,41,58,48,125,44,65,110,46,116,101,109,112,108,97,116,101,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,118,97,114,32,101,61,65,110,46,116,101,109,112,108,97,116,101,83,101,116,116,105,110,103,115,59,114,38,38,79,101,40,110,44,116,44,114,41,38,38,40,116,61,84,41,44,110,61,73,117,40,110,41,44,116,61,98,102,40,123,125,44,116,44,101,44,99,101,41,44,114,61,98,102,40,123,125,44,116,46,105,109,112,111,114,116,115,44,101,46,105,109,112,111,114,116,115,44,99,101,41,59,118,97,114,32,117,44,105,44,111,61,87,117,40,114,41,44,102,61,83,40,114,44,111,41,44,99,61,48,59,10,114,61,116,46,105,110,116,101,114,112,111,108,97,116,101,124,124,106,110,59,118,97,114,32,97,61,34,95,95,112,43,61,39,34,59,114,61,88,117,40,40,116,46,101,115,99,97,112,101,124,124,106,110,41,46,115,111,117,114,99,101,43,34,124,34,43,114,46,115,111,117,114,99,101,43,34,124,34,43,40,114,61,61,61,81,63,112,110,58,106,110,41,46,115,111,117,114,99,101,43,34,124,34,43,40,116,46,101,118,97,108,117,97,116,101,124,124,106,110,41,46,115,111,117,114,99,101,43,34,124,36,34,44,34,103,34,41,59,118,97,114,32,108,61,111,105,46,99,97,108,108,40,116,44,34,115,111,117,114,99,101,85,82,76,34,41,63,34,47,47,35,32,115,111,117,114,99,101,85,82,76,61,34,43,40,116,46,115,111,117,114,99,101,85,82,76,43,34,34,41,46,114,101,112,108,97,99,101,40,47,91,92,114,92,110,93,47,103,44,34,32,34,41,43,34,92,110,34,58,34,34,59,105,102,40,110,46,114,101,112,108,97,99,101,40,114,44,102,117,110,99,116,105,111,110,40,116,44,114,44,101,44,111,44,102,44,108,41,123,114,101,116,117,114,110,32,101,124,124,40,101,61,111,41,44,97,43,61,110,46,115,108,105,99,101,40,99,44,108,41,46,114,101,112,108,97,99,101,40,119,110,44,122,41,44,114,38,38,40,117,61,116,114,117,101,44,97,43,61,34,39,43,95,95,101,40,34,43,114,43,34,41,43,39,34,41,44,102,38,38,40,105,61,116,114,117,101,44,97,43,61,34,39,59,34,43,102,43,34,59,92,110,95,95,112,43,61,39,34,41,44,101,38,38,40,97,43,61,34,39,43,40,40,95,95,116,61,40,34,43,101,43,34,41,41,61,61,110,117,108,108,63,39,39,58,95,95,116,41,43,39,34,41,44,99,61,108,43,116,46,108,101,110,103,116,104,44,116,125,41,44,97,43,61,34,39,59,34,44,40,116,61,111,105,46,99,97,108,108,40,116,44,34,118,97,114,105,97,98,108,101,34,41,38,38,116,46,118,97,114,105,97,98,108,101,41,124,124,40,97,61,34,119,105,116,104,40,111,98,106,41,123,34,43,97,43,34,125,34,41,44,10,97,61,40,105,63,97,46,114,101,112,108,97,99,101,40,80,44,34,34,41,58,97,41,46,114,101,112,108,97,99,101,40,90,44,34,36,49,34,41,46,114,101,112,108,97,99,101,40,113,44,34,36,49,59,34,41,44,97,61,34,102,117,110,99,116,105,111,110,40,34,43,40,116,124,124,34,111,98,106,34,41,43,34,41,123,34,43,40,116,63,34,34,58,34,111,98,106,124,124,40,111,98,106,61,123,125,41,59,34,41,43,34,118,97,114,32,95,95,116,44,95,95,112,61,39,39,34,43,40,117,63,34,44,95,95,101,61,95,46,101,115,99,97,112,101,34,58,34,34,41,43,40,105,63,34,44,95,95,106,61,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,106,111,105,110,59,102,117,110,99,116,105,111,110,32,112,114,105,110,116,40,41,123,95,95,112,43,61,95,95,106,46,99,97,108,108,40,97,114,103,117,109,101,110,116,115,44,39,39,41,125,34,58,34,59,34,41,43,97,43,34,114,101,116,117,114,110,32,95,95,112,125,34,44,116,61,70,102,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,74,117,40,111,44,108,43,34,114,101,116,117,114,110,32,34,43,97,41,46,97,112,112,108,121,40,84,44,102,41,125,41,44,116,46,115,111,117,114,99,101,61,97,44,112,117,40,116,41,41,116,104,114,111,119,32,116,59,114,101,116,117,114,110,32,116,125,44,65,110,46,116,105,109,101,115,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,105,102,40,110,61,69,117,40,110,41,44,49,62,110,124,124,57,48,48,55,49,57,57,50,53,52,55,52,48,57,57,49,60,110,41,114,101,116,117,114,110,91,93,59,118,97,114,32,114,61,52,50,57,52,57,54,55,50,57,53,44,101,61,67,105,40,110,44,52,50,57,52,57,54,55,50,57,53,41,59,102,111,114,40,116,61,121,101,40,116,41,44,110,45,61,52,50,57,52,57,54,55,50,57,53,44,101,61,65,40,101,44,116,41,59,43,43,114,60,110,59,41,116,40,114,41,59,114,101,116,117,114,110,32,101,125,44,65,110,46,116,111,70,105,110,105,116,101,61,65,117,44,10,65,110,46,116,111,73,110,116,101,103,101,114,61,69,117,44,65,110,46,116,111,76,101,110,103,116,104,61,107,117,44,65,110,46,116,111,76,111,119,101,114,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,73,117,40,110,41,46,116,111,76,111,119,101,114,67,97,115,101,40,41,125,44,65,110,46,116,111,78,117,109,98,101,114,61,83,117,44,65,110,46,116,111,83,97,102,101,73,110,116,101,103,101,114,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,110,63,112,116,40,69,117,40,110,41,44,45,57,48,48,55,49,57,57,50,53,52,55,52,48,57,57,49,44,57,48,48,55,49,57,57,50,53,52,55,52,48,57,57,49,41,58,48,61,61,61,110,63,110,58,48,125,44,65,110,46,116,111,83,116,114,105,110,103,61,73,117,44,65,110,46,116,111,85,112,112,101,114,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,73,117,40,110,41,46,116,111,85,112,112,101,114,67,97,115,101,40,41,125,44,65,110,46,116,114,105,109,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,40,110,61,73,117,40,110,41,41,38,38,40,114,124,124,116,61,61,61,84,41,63,110,46,114,101,112,108,97,99,101,40,117,110,44,34,34,41,58,110,38,38,40,116,61,121,114,40,116,41,41,63,40,110,61,77,40,110,41,44,114,61,77,40,116,41,44,116,61,73,40,110,44,114,41,44,114,61,82,40,110,44,114,41,43,49,44,79,114,40,110,44,116,44,114,41,46,106,111,105,110,40,34,34,41,41,58,110,125,44,65,110,46,116,114,105,109,69,110,100,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,40,110,61,73,117,40,110,41,41,38,38,40,114,124,124,116,61,61,61,84,41,63,110,46,114,101,112,108,97,99,101,40,102,110,44,34,34,41,58,110,38,38,40,116,61,121,114,40,116,41,41,63,40,110,61,77,40,110,41,44,116,61,82,40,110,44,77,40,116,41,41,43,49,44,10,79,114,40,110,44,48,44,116,41,46,106,111,105,110,40,34,34,41,41,58,110,125,44,65,110,46,116,114,105,109,83,116,97,114,116,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,40,110,61,73,117,40,110,41,41,38,38,40,114,124,124,116,61,61,61,84,41,63,110,46,114,101,112,108,97,99,101,40,111,110,44,34,34,41,58,110,38,38,40,116,61,121,114,40,116,41,41,63,40,110,61,77,40,110,41,44,116,61,73,40,110,44,77,40,116,41,41,44,79,114,40,110,44,116,41,46,106,111,105,110,40,34,34,41,41,58,110,125,44,65,110,46,116,114,117,110,99,97,116,101,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,118,97,114,32,114,61,51,48,44,101,61,34,46,46,46,34,59,105,102,40,100,117,40,116,41,41,118,97,114,32,117,61,34,115,101,112,97,114,97,116,111,114,34,105,110,32,116,63,116,46,115,101,112,97,114,97,116,111,114,58,117,44,114,61,34,108,101,110,103,116,104,34,105,110,32,116,63,69,117,40,116,46,108,101,110,103,116,104,41,58,114,44,101,61,34,111,109,105,115,115,105,111,110,34,105,110,32,116,63,121,114,40,116,46,111,109,105,115,115,105,111,110,41,58,101,59,110,61,73,117,40,110,41,59,118,97,114,32,105,61,110,46,108,101,110,103,116,104,59,105,102,40,82,110,46,116,101,115,116,40,110,41,41,118,97,114,32,111,61,77,40,110,41,44,105,61,111,46,108,101,110,103,116,104,59,105,102,40,114,62,61,105,41,114,101,116,117,114,110,32,110,59,105,102,40,105,61,114,45,68,40,101,41,44,49,62,105,41,114,101,116,117,114,110,32,101,59,105,102,40,114,61,111,63,79,114,40,111,44,48,44,105,41,46,106,111,105,110,40,34,34,41,58,110,46,115,108,105,99,101,40,48,44,105,41,44,117,61,61,61,84,41,114,101,116,117,114,110,32,114,43,101,59,105,102,40,111,38,38,40,105,43,61,114,46,108,101,110,103,116,104,45,105,41,44,104,102,40,117,41,41,123,105,102,40,110,46,115,108,105,99,101,40,105,41,46,115,101,97,114,99,104,40,117,41,41,123,10,118,97,114,32,102,61,114,59,102,111,114,40,117,46,103,108,111,98,97,108,124,124,40,117,61,88,117,40,117,46,115,111,117,114,99,101,44,73,117,40,95,110,46,101,120,101,99,40,117,41,41,43,34,103,34,41,41,44,117,46,108,97,115,116,73,110,100,101,120,61,48,59,111,61,117,46,101,120,101,99,40,102,41,59,41,118,97,114,32,99,61,111,46,105,110,100,101,120,59,114,61,114,46,115,108,105,99,101,40,48,44,99,61,61,61,84,63,105,58,99,41,125,125,101,108,115,101,32,110,46,105,110,100,101,120,79,102,40,121,114,40,117,41,44,105,41,33,61,105,38,38,40,117,61,114,46,108,97,115,116,73,110,100,101,120,79,102,40,117,41,44,45,49,60,117,38,38,40,114,61,114,46,115,108,105,99,101,40,48,44,117,41,41,41,59,114,101,116,117,114,110,32,114,43,101,125,44,65,110,46,117,110,101,115,99,97,112,101,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,40,110,61,73,117,40,110,41,41,38,38,71,46,116,101,115,116,40,110,41,63,110,46,114,101,112,108,97,99,101,40,86,44,116,116,41,58,110,125,44,65,110,46,117,110,105,113,117,101,73,100,61,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,116,61,43,43,102,105,59,114,101,116,117,114,110,32,73,117,40,110,41,43,116,125,44,65,110,46,117,112,112,101,114,67,97,115,101,61,84,102,44,65,110,46,117,112,112,101,114,70,105,114,115,116,61,36,102,44,65,110,46,101,97,99,104,61,110,117,44,65,110,46,101,97,99,104,82,105,103,104,116,61,116,117,44,65,110,46,102,105,114,115,116,61,113,101,44,78,117,40,65,110,44,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,110,61,123,125,59,114,101,116,117,114,110,32,109,116,40,65,110,44,102,117,110,99,116,105,111,110,40,116,44,114,41,123,111,105,46,99,97,108,108,40,65,110,46,112,114,111,116,111,116,121,112,101,44,114,41,124,124,40,110,91,114,93,61,116,41,125,41,44,110,125,40,41,44,123,99,104,97,105,110,58,102,97,108,115,101,10,125,41,44,65,110,46,86,69,82,83,73,79,78,61,34,52,46,49,55,46,49,53,34,44,114,40,34,98,105,110,100,32,98,105,110,100,75,101,121,32,99,117,114,114,121,32,99,117,114,114,121,82,105,103,104,116,32,112,97,114,116,105,97,108,32,112,97,114,116,105,97,108,82,105,103,104,116,34,46,115,112,108,105,116,40,34,32,34,41,44,102,117,110,99,116,105,111,110,40,110,41,123,65,110,91,110,93,46,112,108,97,99,101,104,111,108,100,101,114,61,65,110,125,41,44,114,40,91,34,100,114,111,112,34,44,34,116,97,107,101,34,93,44,102,117,110,99,116,105,111,110,40,110,44,116,41,123,85,110,46,112,114,111,116,111,116,121,112,101,91,110,93,61,102,117,110,99,116,105,111,110,40,114,41,123,114,61,114,61,61,61,84,63,49,58,85,105,40,69,117,40,114,41,44,48,41,59,118,97,114,32,101,61,116,104,105,115,46,95,95,102,105,108,116,101,114,101,100,95,95,38,38,33,116,63,110,101,119,32,85,110,40,116,104,105,115,41,58,116,104,105,115,46,99,108,111,110,101,40,41,59,114,101,116,117,114,110,32,101,46,95,95,102,105,108,116,101,114,101,100,95,95,63,101,46,95,95,116,97,107,101,67,111,117,110,116,95,95,61,67,105,40,114,44,101,46,95,95,116,97,107,101,67,111,117,110,116,95,95,41,58,101,46,95,95,118,105,101,119,115,95,95,46,112,117,115,104,40,123,115,105,122,101,58,67,105,40,114,44,52,50,57,52,57,54,55,50,57,53,41,44,116,121,112,101,58,110,43,40,48,62,101,46,95,95,100,105,114,95,95,63,34,82,105,103,104,116,34,58,34,34,41,125,41,44,101,125,44,85,110,46,112,114,111,116,111,116,121,112,101,91,110,43,34,82,105,103,104,116,34,93,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,104,105,115,46,114,101,118,101,114,115,101,40,41,91,110,93,40,116,41,46,114,101,118,101,114,115,101,40,41,125,125,41,44,114,40,91,34,102,105,108,116,101,114,34,44,34,109,97,112,34,44,34,116,97,107,101,87,104,105,108,101,34,93,44,102,117,110,99,116,105,111,110,40,110,44,116,41,123,10,118,97,114,32,114,61,116,43,49,44,101,61,49,61,61,114,124,124,51,61,61,114,59,85,110,46,112,114,111,116,111,116,121,112,101,91,110,93,61,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,116,61,116,104,105,115,46,99,108,111,110,101,40,41,59,114,101,116,117,114,110,32,116,46,95,95,105,116,101,114,97,116,101,101,115,95,95,46,112,117,115,104,40,123,105,116,101,114,97,116,101,101,58,121,101,40,110,44,51,41,44,116,121,112,101,58,114,125,41,44,116,46,95,95,102,105,108,116,101,114,101,100,95,95,61,116,46,95,95,102,105,108,116,101,114,101,100,95,95,124,124,101,44,116,125,125,41,44,114,40,91,34,104,101,97,100,34,44,34,108,97,115,116,34,93,44,102,117,110,99,116,105,111,110,40,110,44,116,41,123,118,97,114,32,114,61,34,116,97,107,101,34,43,40,116,63,34,82,105,103,104,116,34,58,34,34,41,59,85,110,46,112,114,111,116,111,116,121,112,101,91,110,93,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,91,114,93,40,49,41,46,118,97,108,117,101,40,41,91,48,93,125,125,41,44,114,40,91,34,105,110,105,116,105,97,108,34,44,34,116,97,105,108,34,93,44,102,117,110,99,116,105,111,110,40,110,44,116,41,123,118,97,114,32,114,61,34,100,114,111,112,34,43,40,116,63,34,34,58,34,82,105,103,104,116,34,41,59,85,110,46,112,114,111,116,111,116,121,112,101,91,110,93,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,95,102,105,108,116,101,114,101,100,95,95,63,110,101,119,32,85,110,40,116,104,105,115,41,58,116,104,105,115,91,114,93,40,49,41,125,125,41,44,85,110,46,112,114,111,116,111,116,121,112,101,46,99,111,109,112,97,99,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,102,105,108,116,101,114,40,36,117,41,125,44,85,110,46,112,114,111,116,111,116,121,112,101,46,102,105,110,100,61,102,117,110,99,116,105,111,110,40,110,41,123,10,114,101,116,117,114,110,32,116,104,105,115,46,102,105,108,116,101,114,40,110,41,46,104,101,97,100,40,41,125,44,85,110,46,112,114,111,116,111,116,121,112,101,46,102,105,110,100,76,97,115,116,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,104,105,115,46,114,101,118,101,114,115,101,40,41,46,102,105,110,100,40,110,41,125,44,85,110,46,112,114,111,116,111,116,121,112,101,46,105,110,118,111,107,101,77,97,112,61,102,114,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,116,121,112,101,111,102,32,110,61,61,34,102,117,110,99,116,105,111,110,34,63,110,101,119,32,85,110,40,116,104,105,115,41,58,116,104,105,115,46,109,97,112,40,102,117,110,99,116,105,111,110,40,114,41,123,114,101,116,117,114,110,32,76,116,40,114,44,110,44,116,41,125,41,125,41,44,85,110,46,112,114,111,116,111,116,121,112,101,46,114,101,106,101,99,116,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,104,105,115,46,102,105,108,116,101,114,40,97,117,40,121,101,40,110,41,41,41,125,44,85,110,46,112,114,111,116,111,116,121,112,101,46,115,108,105,99,101,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,110,61,69,117,40,110,41,59,118,97,114,32,114,61,116,104,105,115,59,114,101,116,117,114,110,32,114,46,95,95,102,105,108,116,101,114,101,100,95,95,38,38,40,48,60,110,124,124,48,62,116,41,63,110,101,119,32,85,110,40,114,41,58,40,48,62,110,63,114,61,114,46,116,97,107,101,82,105,103,104,116,40,45,110,41,58,110,38,38,40,114,61,114,46,100,114,111,112,40,110,41,41,44,116,33,61,61,84,38,38,40,116,61,69,117,40,116,41,44,114,61,48,62,116,63,114,46,100,114,111,112,82,105,103,104,116,40,45,116,41,58,114,46,116,97,107,101,40,116,45,110,41,41,44,114,41,125,44,85,110,46,112,114,111,116,111,116,121,112,101,46,116,97,107,101,82,105,103,104,116,87,104,105,108,101,61,102,117,110,99,116,105,111,110,40,110,41,123,10,114,101,116,117,114,110,32,116,104,105,115,46,114,101,118,101,114,115,101,40,41,46,116,97,107,101,87,104,105,108,101,40,110,41,46,114,101,118,101,114,115,101,40,41,125,44,85,110,46,112,114,111,116,111,116,121,112,101,46,116,111,65,114,114,97,121,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,116,97,107,101,40,52,50,57,52,57,54,55,50,57,53,41,125,44,109,116,40,85,110,46,112,114,111,116,111,116,121,112,101,44,102,117,110,99,116,105,111,110,40,110,44,116,41,123,118,97,114,32,114,61,47,94,40,63,58,102,105,108,116,101,114,124,102,105,110,100,124,109,97,112,124,114,101,106,101,99,116,41,124,87,104,105,108,101,36,47,46,116,101,115,116,40,116,41,44,101,61,47,94,40,63,58,104,101,97,100,124,108,97,115,116,41,36,47,46,116,101,115,116,40,116,41,44,117,61,65,110,91,101,63,34,116,97,107,101,34,43,40,34,108,97,115,116,34,61,61,116,63,34,82,105,103,104,116,34,58,34,34,41,58,116,93,44,105,61,101,124,124,47,94,102,105,110,100,47,46,116,101,115,116,40,116,41,59,117,38,38,40,65,110,46,112,114,111,116,111,116,121,112,101,91,116,93,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,116,40,110,41,123,114,101,116,117,114,110,32,110,61,117,46,97,112,112,108,121,40,65,110,44,97,40,91,110,93,44,102,41,41,44,101,38,38,104,63,110,91,48,93,58,110,125,118,97,114,32,111,61,116,104,105,115,46,95,95,119,114,97,112,112,101,100,95,95,44,102,61,101,63,91,49,93,58,97,114,103,117,109,101,110,116,115,44,99,61,111,32,105,110,115,116,97,110,99,101,111,102,32,85,110,44,108,61,102,91,48,93,44,115,61,99,124,124,102,102,40,111,41,59,115,38,38,114,38,38,116,121,112,101,111,102,32,108,61,61,34,102,117,110,99,116,105,111,110,34,38,38,49,33,61,108,46,108,101,110,103,116,104,38,38,40,99,61,115,61,102,97,108,115,101,41,59,118,97,114,32,104,61,116,104,105,115,46,95,95,99,104,97,105,110,95,95,44,112,61,33,33,116,104,105,115,46,95,95,97,99,116,105,111,110,115,95,95,46,108,101,110,103,116,104,44,108,61,105,38,38,33,104,44,99,61,99,38,38,33,112,59,10,114,101,116,117,114,110,33,105,38,38,115,63,40,111,61,99,63,111,58,110,101,119,32,85,110,40,116,104,105,115,41,44,111,61,110,46,97,112,112,108,121,40,111,44,102,41,44,111,46,95,95,97,99,116,105,111,110,115,95,95,46,112,117,115,104,40,123,102,117,110,99,58,81,101,44,97,114,103,115,58,91,116,93,44,116,104,105,115,65,114,103,58,84,125,41,44,110,101,119,32,79,110,40,111,44,104,41,41,58,108,38,38,99,63,110,46,97,112,112,108,121,40,116,104,105,115,44,102,41,58,40,111,61,116,104,105,115,46,116,104,114,117,40,116,41,44,108,63,101,63,111,46,118,97,108,117,101,40,41,91,48,93,58,111,46,118,97,108,117,101,40,41,58,111,41,125,41,125,41,44,114,40,34,112,111,112,32,112,117,115,104,32,115,104,105,102,116,32,115,111,114,116,32,115,112,108,105,99,101,32,117,110,115,104,105,102,116,34,46,115,112,108,105,116,40,34,32,34,41,44,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,116,61,114,105,91,110,93,44,114,61,47,94,40,63,58,112,117,115,104,124,115,111,114,116,124,117,110,115,104,105,102,116,41,36,47,46,116,101,115,116,40,110,41,63,34,116,97,112,34,58,34,116,104,114,117,34,44,101,61,47,94,40,63,58,112,111,112,124,115,104,105,102,116,41,36,47,46,116,101,115,116,40,110,41,59,65,110,46,112,114,111,116,111,116,121,112,101,91,110,93,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,110,61,97,114,103,117,109,101,110,116,115,59,105,102,40,101,38,38,33,116,104,105,115,46,95,95,99,104,97,105,110,95,95,41,123,118,97,114,32,117,61,116,104,105,115,46,118,97,108,117,101,40,41,59,114,101,116,117,114,110,32,116,46,97,112,112,108,121,40,102,102,40,117,41,63,117,58,91,93,44,110,41,125,114,101,116,117,114,110,32,116,104,105,115,91,114,93,40,102,117,110,99,116,105,111,110,40,114,41,123,114,101,116,117,114,110,32,116,46,97,112,112,108,121,40,102,102,40,114,41,63,114,58,91,93,44,110,41,125,41,59,10,125,125,41,44,109,116,40,85,110,46,112,114,111,116,111,116,121,112,101,44,102,117,110,99,116,105,111,110,40,110,44,116,41,123,118,97,114,32,114,61,65,110,91,116,93,59,105,102,40,114,41,123,118,97,114,32,101,61,114,46,110,97,109,101,43,34,34,59,111,105,46,99,97,108,108,40,71,105,44,101,41,124,124,40,71,105,91,101,93,61,91,93,41,44,71,105,91,101,93,46,112,117,115,104,40,123,110,97,109,101,58,116,44,102,117,110,99,58,114,125,41,125,125,41,44,71,105,91,74,114,40,84,44,50,41,46,110,97,109,101,93,61,91,123,110,97,109,101,58,34,119,114,97,112,112,101,114,34,44,102,117,110,99,58,84,125,93,44,85,110,46,112,114,111,116,111,116,121,112,101,46,99,108,111,110,101,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,110,61,110,101,119,32,85,110,40,116,104,105,115,46,95,95,119,114,97,112,112,101,100,95,95,41,59,114,101,116,117,114,110,32,110,46,95,95,97,99,116,105,111,110,115,95,95,61,85,114,40,116,104,105,115,46,95,95,97,99,116,105,111,110,115,95,95,41,44,110,46,95,95,100,105,114,95,95,61,116,104,105,115,46,95,95,100,105,114,95,95,44,110,46,95,95,102,105,108,116,101,114,101,100,95,95,61,116,104,105,115,46,95,95,102,105,108,116,101,114,101,100,95,95,44,110,46,95,95,105,116,101,114,97,116,101,101,115,95,95,61,85,114,40,116,104,105,115,46,95,95,105,116,101,114,97,116,101,101,115,95,95,41,44,110,46,95,95,116,97,107,101,67,111,117,110,116,95,95,61,116,104,105,115,46,95,95,116,97,107,101,67,111,117,110,116,95,95,44,110,46,95,95,118,105,101,119,115,95,95,61,85,114,40,116,104,105,115,46,95,95,118,105,101,119,115,95,95,41,44,110,125,44,85,110,46,112,114,111,116,111,116,121,112,101,46,114,101,118,101,114,115,101,61,102,117,110,99,116,105,111,110,40,41,123,105,102,40,116,104,105,115,46,95,95,102,105,108,116,101,114,101,100,95,95,41,123,118,97,114,32,110,61,110,101,119,32,85,110,40,116,104,105,115,41,59,10,110,46,95,95,100,105,114,95,95,61,45,49,44,110,46,95,95,102,105,108,116,101,114,101,100,95,95,61,116,114,117,101,125,101,108,115,101,32,110,61,116,104,105,115,46,99,108,111,110,101,40,41,44,110,46,95,95,100,105,114,95,95,42,61,45,49,59,114,101,116,117,114,110,32,110,125,44,85,110,46,112,114,111,116,111,116,121,112,101,46,118,97,108,117,101,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,110,44,116,61,116,104,105,115,46,95,95,119,114,97,112,112,101,100,95,95,46,118,97,108,117,101,40,41,44,114,61,116,104,105,115,46,95,95,100,105,114,95,95,44,101,61,102,102,40,116,41,44,117,61,48,62,114,44,105,61,101,63,116,46,108,101,110,103,116,104,58,48,59,110,61,105,59,102,111,114,40,118,97,114,32,111,61,116,104,105,115,46,95,95,118,105,101,119,115,95,95,44,102,61,48,44,99,61,45,49,44,97,61,111,46,108,101,110,103,116,104,59,43,43,99,60,97,59,41,123,118,97,114,32,108,61,111,91,99,93,44,115,61,108,46,115,105,122,101,59,115,119,105,116,99,104,40,108,46,116,121,112,101,41,123,99,97,115,101,34,100,114,111,112,34,58,102,43,61,115,59,98,114,101,97,107,59,99,97,115,101,34,100,114,111,112,82,105,103,104,116,34,58,110,45,61,115,59,98,114,101,97,107,59,99,97,115,101,34,116,97,107,101,34,58,110,61,67,105,40,110,44,102,43,115,41,59,98,114,101,97,107,59,99,97,115,101,34,116,97,107,101,82,105,103,104,116,34,58,102,61,85,105,40,102,44,110,45,115,41,125,125,105,102,40,110,61,123,115,116,97,114,116,58,102,44,101,110,100,58,110,125,44,111,61,110,46,115,116,97,114,116,44,102,61,110,46,101,110,100,44,110,61,102,45,111,44,111,61,117,63,102,58,111,45,49,44,102,61,116,104,105,115,46,95,95,105,116,101,114,97,116,101,101,115,95,95,44,99,61,102,46,108,101,110,103,116,104,44,97,61,48,44,108,61,67,105,40,110,44,116,104,105,115,46,95,95,116,97,107,101,67,111,117,110,116,95,95,41,44,33,101,124,124,33,117,38,38,105,61,61,110,38,38,108,61,61,110,41,114,101,116,117,114,110,32,119,114,40,116,44,116,104,105,115,46,95,95,97,99,116,105,111,110,115,95,95,41,59,10,101,61,91,93,59,110,58,102,111,114,40,59,110,45,45,38,38,97,60,108,59,41,123,102,111,114,40,111,43,61,114,44,117,61,45,49,44,105,61,116,91,111,93,59,43,43,117,60,99,59,41,123,118,97,114,32,104,61,102,91,117,93,44,115,61,104,46,116,121,112,101,44,104,61,40,48,44,104,46,105,116,101,114,97,116,101,101,41,40,105,41,59,105,102,40,50,61,61,115,41,105,61,104,59,101,108,115,101,32,105,102,40,33,104,41,123,105,102,40,49,61,61,115,41,99,111,110,116,105,110,117,101,32,110,59,98,114,101,97,107,32,110,125,125,101,91,97,43,43,93,61,105,125,114,101,116,117,114,110,32,101,125,44,65,110,46,112,114,111,116,111,116,121,112,101,46,97,116,61,84,111,44,65,110,46,112,114,111,116,111,116,121,112,101,46,99,104,97,105,110,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,89,101,40,116,104,105,115,41,125,44,65,110,46,112,114,111,116,111,116,121,112,101,46,99,111,109,109,105,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,110,101,119,32,79,110,40,116,104,105,115,46,118,97,108,117,101,40,41,44,116,104,105,115,46,95,95,99,104,97,105,110,95,95,41,125,44,65,110,46,112,114,111,116,111,116,121,112,101,46,110,101,120,116,61,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,95,118,97,108,117,101,115,95,95,61,61,61,84,38,38,40,116,104,105,115,46,95,95,118,97,108,117,101,115,95,95,61,109,117,40,116,104,105,115,46,118,97,108,117,101,40,41,41,41,59,118,97,114,32,110,61,116,104,105,115,46,95,95,105,110,100,101,120,95,95,62,61,116,104,105,115,46,95,95,118,97,108,117,101,115,95,95,46,108,101,110,103,116,104,59,114,101,116,117,114,110,123,100,111,110,101,58,110,44,118,97,108,117,101,58,110,63,84,58,116,104,105,115,46,95,95,118,97,108,117,101,115,95,95,91,116,104,105,115,46,95,95,105,110,100,101,120,95,95,43,43,93,125,125,44,65,110,46,112,114,111,116,111,116,121,112,101,46,112,108,97,110,116,61,102,117,110,99,116,105,111,110,40,110,41,123,10,102,111,114,40,118,97,114,32,116,44,114,61,116,104,105,115,59,114,32,105,110,115,116,97,110,99,101,111,102,32,69,110,59,41,123,118,97,114,32,101,61,70,101,40,114,41,59,101,46,95,95,105,110,100,101,120,95,95,61,48,44,101,46,95,95,118,97,108,117,101,115,95,95,61,84,44,116,63,117,46,95,95,119,114,97,112,112,101,100,95,95,61,101,58,116,61,101,59,118,97,114,32,117,61,101,44,114,61,114,46,95,95,119,114,97,112,112,101,100,95,95,125,114,101,116,117,114,110,32,117,46,95,95,119,114,97,112,112,101,100,95,95,61,110,44,116,125,44,65,110,46,112,114,111,116,111,116,121,112,101,46,114,101,118,101,114,115,101,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,110,61,116,104,105,115,46,95,95,119,114,97,112,112,101,100,95,95,59,114,101,116,117,114,110,32,110,32,105,110,115,116,97,110,99,101,111,102,32,85,110,63,40,116,104,105,115,46,95,95,97,99,116,105,111,110,115,95,95,46,108,101,110,103,116,104,38,38,40,110,61,110,101,119,32,85,110,40,116,104,105,115,41,41,44,110,61,110,46,114,101,118,101,114,115,101,40,41,44,110,46,95,95,97,99,116,105,111,110,115,95,95,46,112,117,115,104,40,123,102,117,110,99,58,81,101,44,97,114,103,115,58,91,71,101,93,44,116,104,105,115,65,114,103,58,84,125,41,44,110,101,119,32,79,110,40,110,44,116,104,105,115,46,95,95,99,104,97,105,110,95,95,41,41,58,116,104,105,115,46,116,104,114,117,40,71,101,41,125,44,65,110,46,112,114,111,116,111,116,121,112,101,46,116,111,74,83,79,78,61,65,110,46,112,114,111,116,111,116,121,112,101,46,118,97,108,117,101,79,102,61,65,110,46,112,114,111,116,111,116,121,112,101,46,118,97,108,117,101,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,119,114,40,116,104,105,115,46,95,95,119,114,97,112,112,101,100,95,95,44,116,104,105,115,46,95,95,97,99,116,105,111,110,115,95,95,41,125,44,65,110,46,112,114,111,116,111,116,121,112,101,46,102,105,114,115,116,61,65,110,46,112,114,111,116,111,116,121,112,101,46,104,101,97,100,44,10,119,105,38,38,40,65,110,46,112,114,111,116,111,116,121,112,101,91,119,105,93,61,88,101,41,44,65,110,125,40,41,59,116,121,112,101,111,102,32,100,101,102,105,110,101,61,61,34,102,117,110,99,116,105,111,110,34,38,38,116,121,112,101,111,102,32,100,101,102,105,110,101,46,97,109,100,61,61,34,111,98,106,101,99,116,34,38,38,100,101,102,105,110,101,46,97,109,100,63,40,36,110,46,95,61,114,116,44,32,100,101,102,105,110,101,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,114,116,125,41,41,58,78,110,63,40,40,78,110,46,101,120,112,111,114,116,115,61,114,116,41,46,95,61,114,116,44,70,110,46,95,61,114,116,41,58,36,110,46,95,61,114,116,125,41,46,99,97,108,108,40,116,104,105,115,41,59,47,42,32,73,110,115,112,105,114,101,32,84,114,101,101,10,32,42,32,64,118,101,114,115,105,111,110,32,54,46,48,46,49,10,32,42,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,104,101,108,105,111,110,51,47,105,110,115,112,105,114,101,45,116,114,101,101,10,32,42,32,64,99,111,112,121,114,105,103,104,116,32,67,111,112,121,114,105,103,104,116,32,50,48,49,53,32,72,101,108,105,111,110,51,44,32,97,110,100,32,111,116,104,101,114,32,99,111,110,116,114,105,98,117,116,111,114,115,10,32,42,32,64,108,105,99,101,110,115,101,32,76,105,99,101,110,115,101,100,32,117,110,100,101,114,32,77,73,84,10,32,42,32,32,32,32,32,32,32,32,32,32,115,101,101,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,104,101,108,105,111,110,51,47,105,110,115,112,105,114,101,45,116,114,101,101,47,98,108,111,98,47,109,97,115,116,101,114,47,76,73,67,69,78,83,69,10,32,42,47,10,33,102,117,110,99,116,105,111,110,40,101,44,116,41,123,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,101,120,112,111,114,116,115,38,38,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,109,111,100,117,108,101,63,109,111,100,117,108,101,46,101,120,112,111,114,116,115,61,116,40,114,101,113,117,105,114,101,40,34,108,111,100,97,115,104,34,41,41,58,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,100,101,102,105,110,101,38,38,100,101,102,105,110,101,46,97,109,100,63,100,101,102,105,110,101,40,91,34,108,111,100,97,115,104,34,93,44,116,41,58,40,101,61,101,124,124,115,101,108,102,41,46,73,110,115,112,105,114,101,84,114,101,101,61,116,40,101,46,95,41,125,40,116,104,105,115,44,102,117,110,99,116,105,111,110,40,99,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,102,117,110,99,116,105,111,110,32,97,40,101,44,116,41,123,105,102,40,33,40,101,32,105,110,115,116,97,110,99,101,111,102,32,116,41,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,67,97,110,110,111,116,32,99,97,108,108,32,97,32,99,108,97,115,115,32,97,115,32,97,32,102,117,110,99,116,105,111,110,34,41,125,102,117,110,99,116,105,111,110,32,105,40,101,44,116,41,123,102,111,114,40,118,97,114,32,110,61,48,59,110,60,116,46,108,101,110,103,116,104,59,110,43,43,41,123,118,97,114,32,105,61,116,91,110,93,59,105,46,101,110,117,109,101,114,97,98,108,101,61,105,46,101,110,117,109,101,114,97,98,108,101,124,124,33,49,44,105,46,99,111,110,102,105,103,117,114,97,98,108,101,61,33,48,44,34,118,97,108,117,101,34,105,110,32,105,38,38,40,105,46,119,114,105,116,97,98,108,101,61,33,48,41,44,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,101,44,105,46,107,101,121,44,105,41,125,125,102,117,110,99,116,105,111,110,32,101,40,101,44,116,44,110,41,123,114,101,116,117,114,110,32,116,38,38,105,40,101,46,112,114,111,116,111,116,121,112,101,44,116,41,44,110,38,38,105,40,101,44,110,41,44,101,125,102,117,110,99,116,105,111,110,32,116,40,101,44,116,41,123,105,102,40,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,116,38,38,110,117,108,108,33,61,61,116,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,83,117,112,101,114,32,101,120,112,114,101,115,115,105,111,110,32,109,117,115,116,32,101,105,116,104,101,114,32,98,101,32,110,117,108,108,32,111,114,32,97,32,102,117,110,99,116,105,111,110,34,41,59,101,46,112,114,111,116,111,116,121,112,101,61,79,98,106,101,99,116,46,99,114,101,97,116,101,40,116,38,38,116,46,112,114,111,116,111,116,121,112,101,44,123,99,111,110,115,116,114,117,99,116,111,114,58,123,118,97,108,117,101,58,101,44,119,114,105,116,97,98,108,101,58,33,48,44,99,111,110,102,105,103,117,114,97,98,108,101,58,33,48,125,125,41,44,116,38,38,110,40,101,44,116,41,125,102,117,110,99,116,105,111,110,32,117,40,101,41,123,114,101,116,117,114,110,40,117,61,79,98,106,101,99,116,46,115,101,116,80,114,111,116,111,116,121,112,101,79,102,63,79,98,106,101,99,116,46,103,101,116,80,114,111,116,111,116,121,112,101,79,102,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,46,95,95,112,114,111,116,111,95,95,124,124,79,98,106,101,99,116,46,103,101,116,80,114,111,116,111,116,121,112,101,79,102,40,101,41,125,41,40,101,41,125,102,117,110,99,116,105,111,110,32,110,40,101,44,116,41,123,114,101,116,117,114,110,40,110,61,79,98,106,101,99,116,46,115,101,116,80,114,111,116,111,116,121,112,101,79,102,124,124,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,101,46,95,95,112,114,111,116,111,95,95,61,116,44,101,125,41,40,101,44,116,41,125,102,117,110,99,116,105,111,110,32,108,40,101,41,123,105,102,40,118,111,105,100,32,48,61,61,61,101,41,116,104,114,111,119,32,110,101,119,32,82,101,102,101,114,101,110,99,101,69,114,114,111,114,40,34,116,104,105,115,32,104,97,115,110,39,116,32,98,101,101,110,32,105,110,105,116,105,97,108,105,115,101,100,32,45,32,115,117,112,101,114,40,41,32,104,97,115,110,39,116,32,98,101,101,110,32,99,97,108,108,101,100,34,41,59,114,101,116,117,114,110,32,101,125,102,117,110,99,116,105,111,110,32,104,40,101,44,116,41,123,114,101,116,117,114,110,33,116,124,124,34,111,98,106,101,99,116,34,33,61,116,121,112,101,111,102,32,116,38,38,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,116,63,108,40,101,41,58,116,125,102,117,110,99,116,105,111,110,32,114,40,101,44,116,44,110,41,123,114,101,116,117,114,110,40,114,61,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,82,101,102,108,101,99,116,38,38,82,101,102,108,101,99,116,46,103,101,116,63,82,101,102,108,101,99,116,46,103,101,116,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,105,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,102,111,114,40,59,33,79,98,106,101,99,116,46,112,114,111,116,111,116,121,112,101,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,46,99,97,108,108,40,101,44,116,41,38,38,110,117,108,108,33,61,61,40,101,61,117,40,101,41,41,59,41,59,114,101,116,117,114,110,32,101,125,40,101,44,116,41,59,105,102,40,105,41,123,118,97,114,32,114,61,79,98,106,101,99,116,46,103,101,116,79,119,110,80,114,111,112,101,114,116,121,68,101,115,99,114,105,112,116,111,114,40,105,44,116,41,59,114,101,116,117,114,110,32,114,46,103,101,116,63,114,46,103,101,116,46,99,97,108,108,40,110,41,58,114,46,118,97,108,117,101,125,125,41,40,101,44,116,44,110,124,124,101,41,125,102,117,110,99,116,105,111,110,32,115,40,101,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,101,41,123,105,102,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,101,41,41,114,101,116,117,114,110,32,101,125,40,101,41,124,124,102,117,110,99,116,105,111,110,40,101,41,123,105,102,40,83,121,109,98,111,108,46,105,116,101,114,97,116,111,114,32,105,110,32,79,98,106,101,99,116,40,101,41,124,124,34,91,111,98,106,101,99,116,32,65,114,103,117,109,101,110,116,115,93,34,61,61,61,79,98,106,101,99,116,46,112,114,111,116,111,116,121,112,101,46,116,111,83,116,114,105,110,103,46,99,97,108,108,40,101,41,41,114,101,116,117,114,110,32,65,114,114,97,121,46,102,114,111,109,40,101,41,125,40,101,41,124,124,102,117,110,99,116,105,111,110,40,41,123,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,73,110,118,97,108,105,100,32,97,116,116,101,109,112,116,32,116,111,32,100,101,115,116,114,117,99,116,117,114,101,32,110,111,110,45,105,116,101,114,97,98,108,101,32,105,110,115,116,97,110,99,101,34,41,125,40,41,125,102,117,110,99,116,105,111,110,32,111,40,116,44,110,44,105,44,101,44,114,41,123,114,101,116,117,114,110,32,101,46,115,116,97,116,101,40,116,41,33,61,61,110,38,38,40,101,46,99,111,110,116,101,120,116,40,41,46,98,97,116,99,104,40,41,44,101,46,95,116,114,101,101,46,99,111,110,102,105,103,46,110,111,100,101,115,46,114,101,115,101,116,83,116,97,116,101,79,110,82,101,115,116,111,114,101,38,38,34,114,101,115,116,111,114,101,100,34,61,61,61,105,38,38,102,117,110,99,116,105,111,110,40,110,41,123,99,46,101,97,99,104,40,110,46,95,116,114,101,101,46,100,101,102,97,117,108,116,83,116,97,116,101,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,110,46,115,116,97,116,101,40,116,44,101,41,125,41,125,40,101,41,44,110,38,38,34,99,104,101,99,107,101,100,34,61,61,61,116,38,38,101,46,115,116,97,116,101,40,34,105,110,100,101,116,101,114,109,105,110,97,116,101,34,44,33,49,41,44,101,46,115,116,97,116,101,40,116,44,110,41,44,101,46,95,116,114,101,101,46,101,109,105,116,40,34,110,111,100,101,46,34,43,105,44,101,44,33,49,41,44,114,38,38,101,46,104,97,115,67,104,105,108,100,114,101,110,40,41,38,38,101,46,99,104,105,108,100,114,101,110,46,114,101,99,117,114,115,101,68,111,119,110,40,102,117,110,99,116,105,111,110,40,101,41,123,111,40,116,44,110,44,105,44,101,41,125,41,44,34,104,105,100,100,101,110,34,33,61,61,116,38,38,34,114,101,109,111,118,101,100,34,33,61,61,116,124,124,40,101,46,99,111,110,116,101,120,116,40,41,46,105,110,100,105,99,101,115,68,105,114,116,121,61,33,48,44,101,46,99,111,110,116,101,120,116,40,41,46,99,97,108,99,117,108,97,116,101,82,101,110,100,101,114,97,98,108,101,80,111,115,105,116,105,111,110,115,40,41,41,44,101,46,109,97,114,107,68,105,114,116,121,40,41,44,101,46,99,111,110,116,101,120,116,40,41,46,101,110,100,40,41,41,44,101,125,118,97,114,32,84,61,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,103,108,111,98,97,108,84,104,105,115,63,103,108,111,98,97,108,84,104,105,115,58,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,119,105,110,100,111,119,63,119,105,110,100,111,119,58,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,103,108,111,98,97,108,63,103,108,111,98,97,108,58,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,115,101,108,102,63,115,101,108,102,58,123,125,59,102,117,110,99,116,105,111,110,32,100,40,101,44,116,41,123,114,101,116,117,114,110,32,101,40,116,61,123,101,120,112,111,114,116,115,58,123,125,125,44,116,46,101,120,112,111,114,116,115,41,44,116,46,101,120,112,111,114,116,115,125,118,97,114,32,102,61,100,40,102,117,110,99,116,105,111,110,40,101,44,116,41,123,10,32,32,32,32,47,42,33,10,32,32,32,32,32,32,32,42,32,64,111,118,101,114,118,105,101,119,32,101,115,54,45,112,114,111,109,105,115,101,32,45,32,97,32,116,105,110,121,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,32,111,102,32,80,114,111,109,105,115,101,115,47,65,43,46,10,32,32,32,32,32,32,32,42,32,64,99,111,112,121,114,105,103,104,116,32,67,111,112,121,114,105,103,104,116,32,40,99,41,32,50,48,49,52,32,89,101,104,117,100,97,32,75,97,116,122,44,32,84,111,109,32,68,97,108,101,44,32,83,116,101,102,97,110,32,80,101,110,110,101,114,32,97,110,100,32,99,111,110,116,114,105,98,117,116,111,114,115,32,40,67,111,110,118,101,114,115,105,111,110,32,116,111,32,69,83,54,32,65,80,73,32,98,121,32,74,97,107,101,32,65,114,99,104,105,98,97,108,100,41,10,32,32,32,32,32,32,32,42,32,64,108,105,99,101,110,115,101,32,32,32,76,105,99,101,110,115,101,100,32,117,110,100,101,114,32,77,73,84,32,108,105,99,101,110,115,101,10,32,32,32,32,32,32,32,42,32,32,32,32,32,32,32,32,32,32,32,32,83,101,101,32,104,116,116,112,115,58,47,47,114,97,119,46,103,105,116,104,117,98,117,115,101,114,99,111,110,116,101,110,116,46,99,111,109,47,115,116,101,102,97,110,112,101,110,110,101,114,47,101,115,54,45,112,114,111,109,105,115,101,47,109,97,115,116,101,114,47,76,73,67,69,78,83,69,10,32,32,32,32,32,32,32,42,32,64,118,101,114,115,105,111,110,32,32,32,118,52,46,50,46,56,43,49,101,54,56,100,99,101,54,10,32,32,32,32,32,32,32,42,47,10,32,32,32,32,101,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,99,40,101,41,123,114,101,116,117,114,110,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,101,125,118,97,114,32,110,61,65,114,114,97,121,46,105,115,65,114,114,97,121,63,65,114,114,97,121,46,105,115,65,114,114,97,121,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,34,91,111,98,106,101,99,116,32,65,114,114,97,121,93,34,61,61,61,79,98,106,101,99,116,46,112,114,111,116,111,116,121,112,101,46,116,111,83,116,114,105,110,103,46,99,97,108,108,40,101,41,125,44,105,61,48,44,116,61,118,111,105,100,32,48,44,114,61,118,111,105,100,32,48,44,111,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,100,91,105,93,61,101,44,100,91,105,43,49,93,61,116,44,50,61,61,61,40,105,43,61,50,41,38,38,40,114,63,114,40,102,41,58,118,40,41,41,125,59,118,97,114,32,101,61,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,119,105,110,100,111,119,63,119,105,110,100,111,119,58,118,111,105,100,32,48,44,115,61,101,124,124,123,125,44,97,61,115,46,77,117,116,97,116,105,111,110,79,98,115,101,114,118,101,114,124,124,115,46,87,101,98,75,105,116,77,117,116,97,116,105,111,110,79,98,115,101,114,118,101,114,44,117,61,34,117,110,100,101,102,105,110,101,100,34,61,61,116,121,112,101,111,102,32,115,101,108,102,38,38,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,112,114,111,99,101,115,115,38,38,34,91,111,98,106,101,99,116,32,112,114,111,99,101,115,115,93,34,61,61,61,123,125,46,116,111,83,116,114,105,110,103,46,99,97,108,108,40,112,114,111,99,101,115,115,41,44,108,61,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,85,105,110,116,56,67,108,97,109,112,101,100,65,114,114,97,121,38,38,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,105,109,112,111,114,116,83,99,114,105,112,116,115,38,38,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,77,101,115,115,97,103,101,67,104,97,110,110,101,108,59,102,117,110,99,116,105,111,110,32,104,40,41,123,118,97,114,32,101,61,115,101,116,84,105,109,101,111,117,116,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,101,40,102,44,49,41,125,125,118,97,114,32,100,61,110,101,119,32,65,114,114,97,121,40,49,101,51,41,59,102,117,110,99,116,105,111,110,32,102,40,41,123,102,111,114,40,118,97,114,32,101,61,48,59,101,60,105,59,101,43,61,50,41,123,118,97,114,32,116,61,100,91,101,93,44,110,61,100,91,101,43,49,93,59,116,40,110,41,44,100,91,101,93,61,118,111,105,100,32,48,44,100,91,101,43,49,93,61,118,111,105,100,32,48,125,105,61,48,125,118,97,114,32,118,61,118,111,105,100,32,48,59,102,117,110,99,116,105,111,110,32,121,40,101,44,116,41,123,118,97,114,32,110,61,116,104,105,115,44,105,61,110,101,119,32,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,40,103,41,59,118,111,105,100,32,48,61,61,61,105,91,107,93,38,38,106,40,105,41,59,118,97,114,32,114,61,110,46,95,115,116,97,116,101,59,105,102,40,114,41,123,118,97,114,32,115,61,97,114,103,117,109,101,110,116,115,91,114,45,49,93,59,111,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,79,40,114,44,105,44,115,44,110,46,95,114,101,115,117,108,116,41,125,41,125,101,108,115,101,32,67,40,110,44,105,44,101,44,116,41,59,114,101,116,117,114,110,32,105,125,102,117,110,99,116,105,111,110,32,112,40,101,41,123,105,102,40,101,38,38,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,101,38,38,101,46,99,111,110,115,116,114,117,99,116,111,114,61,61,61,116,104,105,115,41,114,101,116,117,114,110,32,101,59,118,97,114,32,116,61,110,101,119,32,116,104,105,115,40,103,41,59,114,101,116,117,114,110,32,68,40,116,44,101,41,44,116,125,118,61,117,63,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,112,114,111,99,101,115,115,46,110,101,120,116,84,105,99,107,40,102,41,125,58,97,63,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,48,44,116,61,110,101,119,32,97,40,102,41,44,110,61,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,84,101,120,116,78,111,100,101,40,34,34,41,59,114,101,116,117,114,110,32,116,46,111,98,115,101,114,118,101,40,110,44,123,99,104,97,114,97,99,116,101,114,68,97,116,97,58,33,48,125,41,44,102,117,110,99,116,105,111,110,40,41,123,110,46,100,97,116,97,61,101,61,43,43,101,37,50,125,125,40,41,58,108,63,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,110,101,119,32,77,101,115,115,97,103,101,67,104,97,110,110,101,108,59,114,101,116,117,114,110,32,101,46,112,111,114,116,49,46,111,110,109,101,115,115,97,103,101,61,102,44,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,101,46,112,111,114,116,50,46,112,111,115,116,77,101,115,115,97,103,101,40,48,41,125,125,40,41,58,118,111,105,100,32,48,61,61,61,101,63,102,117,110,99,116,105,111,110,40,41,123,116,114,121,123,118,97,114,32,101,61,70,117,110,99,116,105,111,110,40,34,114,101,116,117,114,110,32,116,104,105,115,34,41,40,41,46,114,101,113,117,105,114,101,40,34,118,101,114,116,120,34,41,59,114,101,116,117,114,110,32,118,111,105,100,32,48,61,61,61,40,116,61,101,46,114,117,110,79,110,76,111,111,112,124,124,101,46,114,117,110,79,110,67,111,110,116,101,120,116,41,63,104,40,41,58,102,117,110,99,116,105,111,110,40,41,123,116,40,102,41,125,125,99,97,116,99,104,40,101,41,123,114,101,116,117,114,110,32,104,40,41,125,125,40,41,58,104,40,41,59,118,97,114,32,107,61,77,97,116,104,46,114,97,110,100,111,109,40,41,46,116,111,83,116,114,105,110,103,40,51,54,41,46,115,117,98,115,116,114,105,110,103,40,50,41,59,102,117,110,99,116,105,111,110,32,103,40,41,123,125,118,97,114,32,95,61,118,111,105,100,32,48,44,109,61,49,44,98,61,50,59,102,117,110,99,116,105,111,110,32,119,40,101,44,116,44,110,44,105,41,123,116,114,121,123,101,46,99,97,108,108,40,116,44,110,44,105,41,125,99,97,116,99,104,40,101,41,123,114,101,116,117,114,110,32,101,125,125,102,117,110,99,116,105,111,110,32,120,40,101,44,116,44,110,41,123,116,46,99,111,110,115,116,114,117,99,116,111,114,61,61,61,101,46,99,111,110,115,116,114,117,99,116,111,114,38,38,110,61,61,61,121,38,38,116,46,99,111,110,115,116,114,117,99,116,111,114,46,114,101,115,111,108,118,101,61,61,61,112,63,102,117,110,99,116,105,111,110,40,116,44,101,41,123,101,46,95,115,116,97,116,101,61,61,61,109,63,76,40,116,44,101,46,95,114,101,115,117,108,116,41,58,101,46,95,115,116,97,116,101,61,61,61,98,63,80,40,116,44,101,46,95,114,101,115,117,108,116,41,58,67,40,101,44,118,111,105,100,32,48,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,68,40,116,44,101,41,125,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,80,40,116,44,101,41,125,41,125,40,101,44,116,41,58,118,111,105,100,32,48,61,61,61,110,63,76,40,101,44,116,41,58,99,40,110,41,63,102,117,110,99,116,105,111,110,40,101,44,105,44,114,41,123,111,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,33,49,44,101,61,119,40,114,44,105,44,102,117,110,99,116,105,111,110,40,101,41,123,110,124,124,40,110,61,33,48,44,105,33,61,61,101,63,68,40,116,44,101,41,58,76,40,116,44,101,41,41,125,44,102,117,110,99,116,105,111,110,40,101,41,123,110,124,124,40,110,61,33,48,44,80,40,116,44,101,41,41,125,44,116,46,95,108,97,98,101,108,41,59,33,110,38,38,101,38,38,40,110,61,33,48,44,80,40,116,44,101,41,41,125,44,101,41,125,40,101,44,116,44,110,41,58,76,40,101,44,116,41,125,102,117,110,99,116,105,111,110,32,68,40,116,44,101,41,123,105,102,40,116,61,61,61,101,41,80,40,116,44,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,89,111,117,32,99,97,110,110,111,116,32,114,101,115,111,108,118,101,32,97,32,112,114,111,109,105,115,101,32,119,105,116,104,32,105,116,115,101,108,102,34,41,41,59,101,108,115,101,32,105,102,40,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,116,121,112,101,111,102,32,101,59,114,101,116,117,114,110,32,110,117,108,108,33,61,61,101,38,38,40,34,111,98,106,101,99,116,34,61,61,116,124,124,34,102,117,110,99,116,105,111,110,34,61,61,116,41,125,40,101,41,41,123,118,97,114,32,110,61,118,111,105,100,32,48,59,116,114,121,123,110,61,101,46,116,104,101,110,125,99,97,116,99,104,40,101,41,123,114,101,116,117,114,110,32,118,111,105,100,32,80,40,116,44,101,41,125,120,40,116,44,101,44,110,41,125,101,108,115,101,32,76,40,116,44,101,41,125,102,117,110,99,116,105,111,110,32,65,40,101,41,123,101,46,95,111,110,101,114,114,111,114,38,38,101,46,95,111,110,101,114,114,111,114,40,101,46,95,114,101,115,117,108,116,41,44,83,40,101,41,125,102,117,110,99,116,105,111,110,32,76,40,101,44,116,41,123,101,46,95,115,116,97,116,101,61,61,61,95,38,38,40,101,46,95,114,101,115,117,108,116,61,116,44,101,46,95,115,116,97,116,101,61,109,44,48,33,61,61,101,46,95,115,117,98,115,99,114,105,98,101,114,115,46,108,101,110,103,116,104,38,38,111,40,83,44,101,41,41,125,102,117,110,99,116,105,111,110,32,80,40,101,44,116,41,123,101,46,95,115,116,97,116,101,61,61,61,95,38,38,40,101,46,95,115,116,97,116,101,61,98,44,101,46,95,114,101,115,117,108,116,61,116,44,111,40,65,44,101,41,41,125,102,117,110,99,116,105,111,110,32,67,40,101,44,116,44,110,44,105,41,123,118,97,114,32,114,61,101,46,95,115,117,98,115,99,114,105,98,101,114,115,44,115,61,114,46,108,101,110,103,116,104,59,101,46,95,111,110,101,114,114,111,114,61,110,117,108,108,44,114,91,115,93,61,116,44,114,91,115,43,109,93,61,110,44,114,91,115,43,98,93,61,105,44,48,61,61,61,115,38,38,101,46,95,115,116,97,116,101,38,38,111,40,83,44,101,41,125,102,117,110,99,116,105,111,110,32,83,40,101,41,123,118,97,114,32,116,61,101,46,95,115,117,98,115,99,114,105,98,101,114,115,44,110,61,101,46,95,115,116,97,116,101,59,105,102,40,48,33,61,61,116,46,108,101,110,103,116,104,41,123,102,111,114,40,118,97,114,32,105,61,118,111,105,100,32,48,44,114,61,118,111,105,100,32,48,44,115,61,101,46,95,114,101,115,117,108,116,44,111,61,48,59,111,60,116,46,108,101,110,103,116,104,59,111,43,61,51,41,105,61,116,91,111,93,44,114,61,116,91,111,43,110,93,44,105,63,79,40,110,44,105,44,114,44,115,41,58,114,40,115,41,59,101,46,95,115,117,98,115,99,114,105,98,101,114,115,46,108,101,110,103,116,104,61,48,125,125,102,117,110,99,116,105,111,110,32,79,40,101,44,116,44,110,44,105,41,123,118,97,114,32,114,61,99,40,110,41,44,115,61,118,111,105,100,32,48,44,111,61,118,111,105,100,32,48,44,97,61,33,48,59,105,102,40,114,41,123,116,114,121,123,115,61,110,40,105,41,125,99,97,116,99,104,40,101,41,123,97,61,33,49,44,111,61,101,125,105,102,40,116,61,61,61,115,41,114,101,116,117,114,110,32,118,111,105,100,32,80,40,116,44,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,65,32,112,114,111,109,105,115,101,115,32,99,97,108,108,98,97,99,107,32,99,97,110,110,111,116,32,114,101,116,117,114,110,32,116,104,97,116,32,115,97,109,101,32,112,114,111,109,105,115,101,46,34,41,41,125,101,108,115,101,32,115,61,105,59,116,46,95,115,116,97,116,101,33,61,61,95,124,124,40,114,38,38,97,63,68,40,116,44,115,41,58,33,49,61,61,61,97,63,80,40,116,44,111,41,58,101,61,61,61,109,63,76,40,116,44,115,41,58,101,61,61,61,98,38,38,80,40,116,44,115,41,41,125,118,97,114,32,78,61,48,59,102,117,110,99,116,105,111,110,32,106,40,101,41,123,101,91,107,93,61,78,43,43,44,101,46,95,115,116,97,116,101,61,118,111,105,100,32,48,44,101,46,95,114,101,115,117,108,116,61,118,111,105,100,32,48,44,101,46,95,115,117,98,115,99,114,105,98,101,114,115,61,91,93,125,118,97,114,32,69,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,101,40,101,44,116,41,123,116,104,105,115,46,95,105,110,115,116,97,110,99,101,67,111,110,115,116,114,117,99,116,111,114,61,101,44,116,104,105,115,46,112,114,111,109,105,115,101,61,110,101,119,32,101,40,103,41,44,116,104,105,115,46,112,114,111,109,105,115,101,91,107,93,124,124,106,40,116,104,105,115,46,112,114,111,109,105,115,101,41,44,110,40,116,41,63,40,116,104,105,115,46,108,101,110,103,116,104,61,116,46,108,101,110,103,116,104,44,116,104,105,115,46,95,114,101,109,97,105,110,105,110,103,61,116,46,108,101,110,103,116,104,44,116,104,105,115,46,95,114,101,115,117,108,116,61,110,101,119,32,65,114,114,97,121,40,116,104,105,115,46,108,101,110,103,116,104,41,44,48,61,61,61,116,104,105,115,46,108,101,110,103,116,104,63,76,40,116,104,105,115,46,112,114,111,109,105,115,101,44,116,104,105,115,46,95,114,101,115,117,108,116,41,58,40,116,104,105,115,46,108,101,110,103,116,104,61,116,104,105,115,46,108,101,110,103,116,104,124,124,48,44,116,104,105,115,46,95,101,110,117,109,101,114,97,116,101,40,116,41,44,48,61,61,61,116,104,105,115,46,95,114,101,109,97,105,110,105,110,103,38,38,76,40,116,104,105,115,46,112,114,111,109,105,115,101,44,116,104,105,115,46,95,114,101,115,117,108,116,41,41,41,58,80,40,116,104,105,115,46,112,114,111,109,105,115,101,44,110,101,119,32,69,114,114,111,114,40,34,65,114,114,97,121,32,77,101,116,104,111,100,115,32,109,117,115,116,32,98,101,32,112,114,111,118,105,100,101,100,32,97,110,32,65,114,114,97,121,34,41,41,125,114,101,116,117,114,110,32,101,46,112,114,111,116,111,116,121,112,101,46,95,101,110,117,109,101,114,97,116,101,61,102,117,110,99,116,105,111,110,40,101,41,123,102,111,114,40,118,97,114,32,116,61,48,59,116,104,105,115,46,95,115,116,97,116,101,61,61,61,95,38,38,116,60,101,46,108,101,110,103,116,104,59,116,43,43,41,116,104,105,115,46,95,101,97,99,104,69,110,116,114,121,40,101,91,116,93,44,116,41,125,44,101,46,112,114,111,116,111,116,121,112,101,46,95,101,97,99,104,69,110,116,114,121,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,116,104,105,115,46,95,105,110,115,116,97,110,99,101,67,111,110,115,116,114,117,99,116,111,114,44,105,61,110,46,114,101,115,111,108,118,101,59,105,102,40,105,61,61,61,112,41,123,118,97,114,32,114,61,118,111,105,100,32,48,44,115,61,118,111,105,100,32,48,44,111,61,33,49,59,116,114,121,123,114,61,116,46,116,104,101,110,125,99,97,116,99,104,40,101,41,123,111,61,33,48,44,115,61,101,125,105,102,40,114,61,61,61,121,38,38,116,46,95,115,116,97,116,101,33,61,61,95,41,116,104,105,115,46,95,115,101,116,116,108,101,100,65,116,40,116,46,95,115,116,97,116,101,44,101,44,116,46,95,114,101,115,117,108,116,41,59,101,108,115,101,32,105,102,40,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,114,41,116,104,105,115,46,95,114,101,109,97,105,110,105,110,103,45,45,44,116,104,105,115,46,95,114,101,115,117,108,116,91,101,93,61,116,59,101,108,115,101,32,105,102,40,110,61,61,61,82,41,123,118,97,114,32,97,61,110,101,119,32,110,40,103,41,59,111,63,80,40,97,44,115,41,58,120,40,97,44,116,44,114,41,44,116,104,105,115,46,95,119,105,108,108,83,101,116,116,108,101,65,116,40,97,44,101,41,125,101,108,115,101,32,116,104,105,115,46,95,119,105,108,108,83,101,116,116,108,101,65,116,40,110,101,119,32,110,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,40,116,41,125,41,44,101,41,125,101,108,115,101,32,116,104,105,115,46,95,119,105,108,108,83,101,116,116,108,101,65,116,40,105,40,116,41,44,101,41,125,44,101,46,112,114,111,116,111,116,121,112,101,46,95,115,101,116,116,108,101,100,65,116,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,105,61,116,104,105,115,46,112,114,111,109,105,115,101,59,105,46,95,115,116,97,116,101,61,61,61,95,38,38,40,116,104,105,115,46,95,114,101,109,97,105,110,105,110,103,45,45,44,101,61,61,61,98,63,80,40,105,44,110,41,58,116,104,105,115,46,95,114,101,115,117,108,116,91,116,93,61,110,41,44,48,61,61,61,116,104,105,115,46,95,114,101,109,97,105,110,105,110,103,38,38,76,40,105,44,116,104,105,115,46,95,114,101,115,117,108,116,41,125,44,101,46,112,114,111,116,111,116,121,112,101,46,95,119,105,108,108,83,101,116,116,108,101,65,116,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,61,116,104,105,115,59,67,40,101,44,118,111,105,100,32,48,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,110,46,95,115,101,116,116,108,101,100,65,116,40,109,44,116,44,101,41,125,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,110,46,95,115,101,116,116,108,101,100,65,116,40,98,44,116,44,101,41,125,41,125,44,101,125,40,41,59,118,97,114,32,82,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,116,40,101,41,123,116,104,105,115,91,107,93,61,78,43,43,44,116,104,105,115,46,95,114,101,115,117,108,116,61,116,104,105,115,46,95,115,116,97,116,101,61,118,111,105,100,32,48,44,116,104,105,115,46,95,115,117,98,115,99,114,105,98,101,114,115,61,91,93,44,103,33,61,61,101,38,38,40,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,101,38,38,102,117,110,99,116,105,111,110,40,41,123,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,89,111,117,32,109,117,115,116,32,112,97,115,115,32,97,32,114,101,115,111,108,118,101,114,32,102,117,110,99,116,105,111,110,32,97,115,32,116,104,101,32,102,105,114,115,116,32,97,114,103,117,109,101,110,116,32,116,111,32,116,104,101,32,112,114,111,109,105,115,101,32,99,111,110,115,116,114,117,99,116,111,114,34,41,125,40,41,44,116,104,105,115,32,105,110,115,116,97,110,99,101,111,102,32,116,63,102,117,110,99,116,105,111,110,40,116,44,101,41,123,116,114,121,123,101,40,102,117,110,99,116,105,111,110,40,101,41,123,68,40,116,44,101,41,125,44,102,117,110,99,116,105,111,110,40,101,41,123,80,40,116,44,101,41,125,41,125,99,97,116,99,104,40,101,41,123,80,40,116,44,101,41,125,125,40,116,104,105,115,44,101,41,58,102,117,110,99,116,105,111,110,40,41,123,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,70,97,105,108,101,100,32,116,111,32,99,111,110,115,116,114,117,99,116,32,39,80,114,111,109,105,115,101,39,58,32,80,108,101,97,115,101,32,117,115,101,32,116,104,101,32,39,110,101,119,39,32,111,112,101,114,97,116,111,114,44,32,116,104,105,115,32,111,98,106,101,99,116,32,99,111,110,115,116,114,117,99,116,111,114,32,99,97,110,110,111,116,32,98,101,32,99,97,108,108,101,100,32,97,115,32,97,32,102,117,110,99,116,105,111,110,46,34,41,125,40,41,41,125,114,101,116,117,114,110,32,116,46,112,114,111,116,111,116,121,112,101,46,99,97,116,99,104,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,116,104,101,110,40,110,117,108,108,44,101,41,125,44,116,46,112,114,111,116,111,116,121,112,101,46,102,105,110,97,108,108,121,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,59,114,101,116,117,114,110,32,99,40,116,41,63,116,104,105,115,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,110,46,114,101,115,111,108,118,101,40,116,40,41,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,101,125,41,125,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,110,46,114,101,115,111,108,118,101,40,116,40,41,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,41,123,116,104,114,111,119,32,101,125,41,125,41,58,116,104,105,115,46,116,104,101,110,40,116,44,116,41,125,44,116,125,40,41,59,114,101,116,117,114,110,32,82,46,112,114,111,116,111,116,121,112,101,46,116,104,101,110,61,121,44,82,46,97,108,108,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,110,101,119,32,69,40,116,104,105,115,44,101,41,46,112,114,111,109,105,115,101,125,44,82,46,114,97,99,101,61,102,117,110,99,116,105,111,110,40,114,41,123,118,97,114,32,115,61,116,104,105,115,59,114,101,116,117,114,110,32,110,40,114,41,63,110,101,119,32,115,40,102,117,110,99,116,105,111,110,40,101,44,116,41,123,102,111,114,40,118,97,114,32,110,61,114,46,108,101,110,103,116,104,44,105,61,48,59,105,60,110,59,105,43,43,41,115,46,114,101,115,111,108,118,101,40,114,91,105,93,41,46,116,104,101,110,40,101,44,116,41,125,41,58,110,101,119,32,115,40,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,116,40,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,89,111,117,32,109,117,115,116,32,112,97,115,115,32,97,110,32,97,114,114,97,121,32,116,111,32,114,97,99,101,46,34,41,41,125,41,125,44,82,46,114,101,115,111,108,118,101,61,112,44,82,46,114,101,106,101,99,116,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,110,101,119,32,116,104,105,115,40,103,41,59,114,101,116,117,114,110,32,80,40,116,44,101,41,44,116,125,44,82,46,95,115,101,116,83,99,104,101,100,117,108,101,114,61,102,117,110,99,116,105,111,110,40,101,41,123,114,61,101,125,44,82,46,95,115,101,116,65,115,97,112,61,102,117,110,99,116,105,111,110,40,101,41,123,111,61,101,125,44,82,46,95,97,115,97,112,61,111,44,82,46,112,111,108,121,102,105,108,108,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,118,111,105,100,32,48,59,105,102,40,118,111,105,100,32,48,33,61,61,84,41,101,61,84,59,101,108,115,101,32,105,102,40,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,115,101,108,102,41,101,61,115,101,108,102,59,101,108,115,101,32,116,114,121,123,101,61,70,117,110,99,116,105,111,110,40,34,114,101,116,117,114,110,32,116,104,105,115,34,41,40,41,125,99,97,116,99,104,40,101,41,123,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,112,111,108,121,102,105,108,108,32,102,97,105,108,101,100,32,98,101,99,97,117,115,101,32,103,108,111,98,97,108,32,111,98,106,101,99,116,32,105,115,32,117,110,97,118,97,105,108,97,98,108,101,32,105,110,32,116,104,105,115,32,101,110,118,105,114,111,110,109,101,110,116,34,41,125,118,97,114,32,116,61,101,46,80,114,111,109,105,115,101,59,105,102,40,116,41,123,118,97,114,32,110,61,110,117,108,108,59,116,114,121,123,110,61,79,98,106,101,99,116,46,112,114,111,116,111,116,121,112,101,46,116,111,83,116,114,105,110,103,46,99,97,108,108,40,116,46,114,101,115,111,108,118,101,40,41,41,125,99,97,116,99,104,40,101,41,123,125,105,102,40,34,91,111,98,106,101,99,116,32,80,114,111,109,105,115,101,93,34,61,61,61,110,38,38,33,116,46,99,97,115,116,41,114,101,116,117,114,110,125,101,46,80,114,111,109,105,115,101,61,82,125,44,82,46,80,114,111,109,105,115,101,61,82,125,40,41,125,41,46,80,114,111,109,105,115,101,59,102,117,110,99,116,105,111,110,32,118,40,101,41,123,102,117,110,99,116,105,111,110,32,116,40,41,123,101,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,125,114,101,116,117,114,110,32,116,46,112,114,111,116,111,116,121,112,101,61,79,98,106,101,99,116,46,99,114,101,97,116,101,40,101,46,112,114,111,116,111,116,121,112,101,44,123,99,111,110,115,116,114,117,99,116,111,114,58,123,118,97,108,117,101,58,101,44,101,110,117,109,101,114,97,98,108,101,58,33,49,44,119,114,105,116,97,98,108,101,58,33,48,44,99,111,110,102,105,103,117,114,97,98,108,101,58,33,48,125,125,41,44,79,98,106,101,99,116,46,115,101,116,80,114,111,116,111,116,121,112,101,79,102,63,79,98,106,101,99,116,46,115,101,116,80,114,111,116,111,116,121,112,101,79,102,40,116,44,101,41,58,116,46,95,95,112,114,111,116,111,95,95,61,101,44,116,125,102,117,110,99,116,105,111,110,32,121,40,101,44,110,44,105,44,116,41,123,114,101,116,117,114,110,32,110,61,99,46,99,97,115,116,65,114,114,97,121,40,110,41,44,101,46,95,116,114,101,101,46,98,97,116,99,104,40,41,44,101,91,116,63,34,114,101,99,117,114,115,101,68,111,119,110,34,58,34,101,97,99,104,34,93,40,102,117,110,99,116,105,111,110,40,116,41,123,99,46,101,97,99,104,40,110,44,102,117,110,99,116,105,111,110,40,101,41,123,99,46,105,115,70,117,110,99,116,105,111,110,40,116,91,101,93,41,38,38,116,91,101,93,46,97,112,112,108,121,40,116,44,105,41,125,41,125,41,44,101,46,95,116,114,101,101,46,101,110,100,40,41,44,101,125,102,117,110,99,116,105,111,110,32,112,40,116,41,123,118,97,114,32,101,61,116,59,114,101,116,117,114,110,32,99,46,105,115,83,116,114,105,110,103,40,116,41,38,38,40,101,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,99,46,105,115,70,117,110,99,116,105,111,110,40,101,91,116,93,41,63,101,91,116,93,40,41,58,101,91,116,93,125,41,44,101,125,102,117,110,99,116,105,111,110,32,107,40,116,44,101,41,123,105,102,40,101,41,114,101,116,117,114,110,32,116,104,105,115,46,101,120,116,114,97,99,116,40,116,41,59,118,97,114,32,110,61,112,40,116,41,59,114,101,116,117,114,110,32,116,104,105,115,46,102,108,97,116,116,101,110,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,40,34,114,101,109,111,118,101,100,34,61,61,61,116,124,124,33,101,46,114,101,109,111,118,101,100,40,41,41,38,38,110,40,101,41,125,41,125,118,97,114,32,103,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,115,40,101,44,116,44,110,41,123,118,97,114,32,105,59,105,102,40,97,40,116,104,105,115,44,115,41,44,105,61,104,40,116,104,105,115,44,117,40,115,41,46,99,97,108,108,40,116,104,105,115,41,41,44,99,46,105,115,70,117,110,99,116,105,111,110,40,99,46,103,101,116,40,101,44,34,105,115,84,114,101,101,34,41,41,38,38,33,101,46,105,115,84,114,101,101,40,101,41,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,73,110,118,97,108,105,100,32,116,114,101,101,32,105,110,115,116,97,110,99,101,46,34,41,59,114,101,116,117,114,110,32,105,46,95,116,114,101,101,61,101,44,105,46,108,101,110,103,116,104,61,48,44,105,46,98,97,116,99,104,105,110,103,61,48,44,105,46,105,110,100,105,99,101,115,68,105,114,116,121,61,33,49,44,105,46,99,111,110,102,105,103,61,99,46,100,101,102,97,117,108,116,115,68,101,101,112,40,123,125,44,110,44,123,99,97,108,99,117,108,97,116,101,82,101,110,100,101,114,97,98,108,101,80,111,115,105,116,105,111,110,115,58,33,49,125,41,44,105,46,95,112,97,103,105,110,97,116,105,111,110,61,123,108,105,109,105,116,58,101,46,99,111,110,102,105,103,46,112,97,103,105,110,97,116,105,111,110,46,108,105,109,105,116,44,116,111,116,97,108,58,48,125,44,40,99,46,105,115,65,114,114,97,121,40,116,41,124,124,116,32,105,110,115,116,97,110,99,101,111,102,32,115,41,38,38,99,46,101,97,99,104,40,116,44,102,117,110,99,116,105,111,110,40,101,41,123,101,32,105,110,115,116,97,110,99,101,111,102,32,119,63,105,46,112,117,115,104,40,101,46,99,108,111,110,101,40,41,41,58,105,46,97,100,100,78,111,100,101,40,101,41,125,41,44,105,125,114,101,116,117,114,110,32,116,40,115,44,118,40,65,114,114,97,121,41,41,44,101,40,115,44,91,123,107,101,121,58,34,97,100,100,78,111,100,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,116,104,105,115,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,116,104,105,115,46,95,116,114,101,101,46,99,111,110,102,105,103,46,115,111,114,116,38,38,40,116,61,99,46,115,111,114,116,101,100,73,110,100,101,120,66,121,40,116,104,105,115,44,101,44,116,104,105,115,46,95,116,114,101,101,46,99,111,110,102,105,103,46,115,111,114,116,41,41,44,116,104,105,115,46,105,110,115,101,114,116,65,116,40,116,44,101,41,125,125,44,123,107,101,121,58,34,97,112,112,108,121,67,104,97,110,103,101,115,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,48,61,61,61,116,104,105,115,46,98,97,116,99,104,105,110,103,38,38,40,116,104,105,115,46,99,97,108,99,117,108,97,116,101,82,101,110,100,101,114,97,98,108,101,80,111,115,105,116,105,111,110,115,40,41,44,116,104,105,115,46,95,116,114,101,101,46,101,109,105,116,40,34,99,104,97,110,103,101,115,46,97,112,112,108,105,101,100,34,44,116,104,105,115,46,99,111,110,116,101,120,116,40,41,41,41,125,125,44,123,107,101,121,58,34,98,97,116,99,104,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,98,97,116,99,104,105,110,103,60,48,38,38,40,116,104,105,115,46,98,97,116,99,104,105,110,103,61,48,41,44,116,104,105,115,46,98,97,116,99,104,105,110,103,43,43,125,125,44,123,107,101,121,58,34,97,118,97,105,108,97,98,108,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,107,46,99,97,108,108,40,116,104,105,115,44,34,97,118,97,105,108,97,98,108,101,34,44,101,41,125,125,44,123,107,101,121,58,34,98,108,117,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,110,118,111,107,101,40,34,98,108,117,114,34,41,125,125,44,123,107,101,121,58,34,98,108,117,114,68,101,101,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,110,118,111,107,101,68,101,101,112,40,34,98,108,117,114,34,41,125,125,44,123,107,101,121,58,34,99,97,108,99,117,108,97,116,101,82,101,110,100,101,114,97,98,108,101,80,111,115,105,116,105,111,110,115,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,44,110,59,33,116,104,105,115,46,105,110,100,105,99,101,115,68,105,114,116,121,124,124,48,60,116,104,105,115,46,98,97,116,99,104,105,110,103,124,124,33,116,104,105,115,46,99,111,110,102,105,103,46,99,97,108,99,117,108,97,116,101,82,101,110,100,101,114,97,98,108,101,80,111,115,105,116,105,111,110,115,124,124,40,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,101,41,123,101,46,114,101,110,100,101,114,97,98,108,101,40,41,38,38,40,116,61,116,124,124,101,44,110,61,101,41,125,41,44,116,104,105,115,46,102,105,114,115,116,82,101,110,100,101,114,97,98,108,101,78,111,100,101,38,38,116,104,105,115,46,102,105,114,115,116,82,101,110,100,101,114,97,98,108,101,78,111,100,101,33,61,61,116,38,38,116,104,105,115,46,102,105,114,115,116,82,101,110,100,101,114,97,98,108,101,78,111,100,101,46,109,97,114,107,68,105,114,116,121,40,41,44,116,38,38,116,33,61,61,116,104,105,115,46,102,105,114,115,116,82,101,110,100,101,114,97,98,108,101,78,111,100,101,38,38,116,46,109,97,114,107,68,105,114,116,121,40,41,44,116,104,105,115,46,108,97,115,116,82,101,110,100,101,114,97,98,108,101,78,111,100,101,38,38,116,104,105,115,46,108,97,115,116,82,101,110,100,101,114,97,98,108,101,78,111,100,101,33,61,61,110,38,38,116,104,105,115,46,108,97,115,116,82,101,110,100,101,114,97,98,108,101,78,111,100,101,46,109,97,114,107,68,105,114,116,121,40,41,44,110,38,38,110,33,61,61,116,104,105,115,46,108,97,115,116,82,101,110,100,101,114,97,98,108,101,78,111,100,101,38,38,110,46,109,97,114,107,68,105,114,116,121,40,41,44,116,104,105,115,46,102,105,114,115,116,82,101,110,100,101,114,97,98,108,101,78,111,100,101,61,116,44,116,104,105,115,46,108,97,115,116,82,101,110,100,101,114,97,98,108,101,78,111,100,101,61,110,44,116,104,105,115,46,105,110,100,105,99,101,115,68,105,114,116,121,61,33,49,41,125,125,44,123,107,101,121,58,34,99,104,101,99,107,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,107,46,99,97,108,108,40,116,104,105,115,44,34,99,104,101,99,107,101,100,34,44,101,41,125,125,44,123,107,101,121,58,34,99,108,101,97,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,110,118,111,107,101,40,34,99,108,101,97,110,34,41,125,125,44,123,107,101,121,58,34,99,108,111,110,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,110,101,119,32,115,40,116,104,105,115,46,95,116,114,101,101,44,116,104,105,115,41,125,125,44,123,107,101,121,58,34,99,111,108,108,97,112,115,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,110,118,111,107,101,40,34,99,111,108,108,97,112,115,101,34,41,125,125,44,123,107,101,121,58,34,99,111,108,108,97,112,115,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,107,46,99,97,108,108,40,116,104,105,115,44,34,99,111,108,108,97,112,115,101,100,34,44,101,41,125,125,44,123,107,101,121,58,34,99,111,108,108,97,112,115,101,68,101,101,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,110,118,111,107,101,68,101,101,112,40,34,99,111,108,108,97,112,115,101,34,41,125,125,44,123,107,101,121,58,34,99,111,110,99,97,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,110,101,119,32,115,40,116,104,105,115,46,95,116,114,101,101,41,59,116,46,95,99,111,110,116,101,120,116,61,116,104,105,115,46,95,99,111,110,116,101,120,116,59,102,117,110,99,116,105,111,110,32,110,40,101,41,123,101,32,105,110,115,116,97,110,99,101,111,102,32,119,38,38,116,46,112,117,115,104,40,101,41,125,114,101,116,117,114,110,32,99,46,101,97,99,104,40,116,104,105,115,44,110,41,44,99,46,101,97,99,104,40,101,44,110,41,44,116,46,95,112,97,103,105,110,97,116,105,111,110,46,108,105,109,105,116,61,116,104,105,115,46,95,112,97,103,105,110,97,116,105,111,110,46,108,105,109,105,116,44,116,125,125,44,123,107,101,121,58,34,99,111,110,116,101,120,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,99,111,110,116,101,120,116,124,124,116,104,105,115,46,95,116,114,101,101,125,125,44,123,107,101,121,58,34,99,111,112,121,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,116,44,110,44,105,41,123,118,97,114,32,114,61,110,101,119,32,115,40,116,104,105,115,46,95,116,114,101,101,41,59,114,101,116,117,114,110,32,99,46,101,97,99,104,40,116,104,105,115,44,102,117,110,99,116,105,111,110,40,101,41,123,114,46,112,117,115,104,40,101,46,99,111,112,121,40,116,44,110,44,105,41,41,125,41,44,114,125,125,44,123,107,101,121,58,34,100,101,101,112,101,115,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,110,101,119,32,115,40,116,104,105,115,46,95,116,114,101,101,41,59,114,101,116,117,114,110,32,116,104,105,115,46,114,101,99,117,114,115,101,68,111,119,110,40,102,117,110,99,116,105,111,110,40,101,41,123,101,46,99,104,105,108,100,114,101,110,124,124,116,46,112,117,115,104,40,101,41,125,41,44,116,125,125,44,123,107,101,121,58,34,100,101,115,101,108,101,99,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,110,118,111,107,101,40,34,100,101,115,101,108,101,99,116,34,41,125,125,44,123,107,101,121,58,34,100,101,115,101,108,101,99,116,68,101,101,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,110,118,111,107,101,68,101,101,112,40,34,100,101,115,101,108,101,99,116,34,41,125,125,44,123,107,101,121,58,34,101,97,99,104,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,99,46,101,97,99,104,40,116,104,105,115,44,101,41,44,116,104,105,115,125,125,44,123,107,101,121,58,34,101,100,105,116,97,98,108,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,107,46,99,97,108,108,40,116,104,105,115,44,34,101,100,105,116,97,98,108,101,34,44,101,41,125,125,44,123,107,101,121,58,34,101,100,105,116,105,110,103,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,107,46,99,97,108,108,40,116,104,105,115,44,34,101,100,105,116,105,110,103,34,44,101,41,125,125,44,123,107,101,121,58,34,101,110,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,98,97,116,99,104,105,110,103,45,45,44,48,61,61,61,116,104,105,115,46,98,97,116,99,104,105,110,103,38,38,116,104,105,115,46,97,112,112,108,121,67,104,97,110,103,101,115,40,41,125,125,44,123,107,101,121,58,34,101,120,112,97,110,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,110,118,111,107,101,40,34,101,120,112,97,110,100,34,41,125,125,44,123,107,101,121,58,34,101,120,112,97,110,100,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,107,46,99,97,108,108,40,116,104,105,115,44,34,101,120,112,97,110,100,101,100,34,44,101,41,125,125,44,123,107,101,121,58,34,101,120,112,97,110,100,68,101,101,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,105,61,116,104,105,115,59,114,101,116,117,114,110,32,110,101,119,32,102,40,102,117,110,99,116,105,111,110,40,101,41,123,102,117,110,99,116,105,111,110,32,116,40,41,123,48,61,61,45,45,110,38,38,101,40,105,41,125,118,97,114,32,110,61,48,59,105,46,114,101,99,117,114,115,101,68,111,119,110,40,102,117,110,99,116,105,111,110,40,101,41,123,110,43,43,44,101,46,99,104,105,108,100,114,101,110,63,101,46,101,120,112,97,110,100,40,41,46,99,97,116,99,104,40,116,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,41,123,101,46,99,104,105,108,100,114,101,110,46,101,120,112,97,110,100,68,101,101,112,40,41,46,99,97,116,99,104,40,116,41,46,116,104,101,110,40,116,41,125,41,58,116,40,41,125,41,125,41,125,125,44,123,107,101,121,58,34,101,120,112,97,110,100,80,97,114,101,110,116,115,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,110,118,111,107,101,40,34,101,120,112,97,110,100,80,97,114,101,110,116,115,34,41,125,125,44,123,107,101,121,58,34,101,120,116,114,97,99,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,116,104,105,115,46,102,108,97,116,116,101,110,40,101,41,44,110,61,110,101,119,32,115,40,116,104,105,115,46,95,116,114,101,101,41,59,114,101,116,117,114,110,32,99,46,101,97,99,104,40,116,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,110,46,97,100,100,78,111,100,101,40,101,46,99,111,112,121,72,105,101,114,97,114,99,104,121,40,41,41,125,41,44,110,125,125,44,123,107,101,121,58,34,102,105,108,116,101,114,66,121,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,112,40,101,41,44,110,61,110,101,119,32,115,40,116,104,105,115,46,95,116,114,101,101,41,59,114,101,116,117,114,110,32,99,46,101,97,99,104,40,116,104,105,115,44,102,117,110,99,116,105,111,110,40,101,41,123,116,40,101,41,38,38,110,46,112,117,115,104,40,101,41,125,41,44,110,125,125,44,123,107,101,121,58,34,102,105,110,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,59,114,101,116,117,114,110,32,116,104,105,115,46,114,101,99,117,114,115,101,68,111,119,110,40,102,117,110,99,116,105,111,110,40,101,41,123,105,102,40,116,40,101,41,41,114,101,116,117,114,110,32,110,61,101,44,33,49,125,41,44,110,125,125,44,123,107,101,121,58,34,102,105,114,115,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,102,111,114,40,118,97,114,32,116,61,48,44,110,61,116,104,105,115,46,108,101,110,103,116,104,59,116,60,110,59,116,43,43,41,105,102,40,101,40,116,104,105,115,91,116,93,41,41,114,101,116,117,114,110,32,116,104,105,115,91,116,93,125,125,44,123,107,101,121,58,34,102,108,97,116,116,101,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,110,101,119,32,115,40,116,104,105,115,46,95,116,114,101,101,41,44,110,61,112,40,101,41,59,114,101,116,117,114,110,32,116,104,105,115,46,114,101,99,117,114,115,101,68,111,119,110,40,102,117,110,99,116,105,111,110,40,101,41,123,110,40,101,41,38,38,116,46,112,117,115,104,40,101,41,125,41,44,116,125,125,44,123,107,101,121,58,34,102,111,99,117,115,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,107,46,99,97,108,108,40,116,104,105,115,44,34,102,111,99,117,115,101,100,34,44,101,41,125,125,44,123,107,101,121,58,34,102,111,114,69,97,99,104,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,101,41,125,125,44,123,107,101,121,58,34,103,101,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,104,105,115,91,101,93,125,125,44,123,107,101,121,58,34,104,105,100,100,101,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,107,46,99,97,108,108,40,116,104,105,115,44,34,104,105,100,100,101,110,34,44,101,41,125,125,44,123,107,101,121,58,34,104,105,100,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,110,118,111,107,101,40,34,104,105,100,101,34,41,125,125,44,123,107,101,121,58,34,104,105,100,101,68,101,101,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,110,118,111,107,101,68,101,101,112,40,34,104,105,100,101,34,41,125,125,44,123,107,101,121,58,34,105,110,100,101,116,101,114,109,105,110,97,116,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,107,46,99,97,108,108,40,116,104,105,115,44,34,105,110,100,101,116,101,114,109,105,110,97,116,101,34,44,101,41,125,125,44,123,107,101,121,58,34,105,110,115,101,114,116,65,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,102,40,116,46,105,100,41,123,118,97,114,32,110,61,116,104,105,115,46,110,111,100,101,40,116,46,105,100,41,59,105,102,40,110,41,114,101,116,117,114,110,32,110,46,114,101,115,116,111,114,101,40,41,46,115,104,111,119,40,41,44,99,46,105,115,65,114,114,97,121,76,105,107,101,40,116,46,99,104,105,108,100,114,101,110,41,63,40,99,46,105,115,65,114,114,97,121,76,105,107,101,40,110,46,99,104,105,108,100,114,101,110,41,124,124,40,110,46,99,104,105,108,100,114,101,110,61,110,101,119,32,115,40,116,104,105,115,46,95,116,114,101,101,41,44,110,46,99,104,105,108,100,114,101,110,46,95,99,111,110,116,101,120,116,61,110,41,44,99,46,101,97,99,104,40,116,46,99,104,105,108,100,114,101,110,44,102,117,110,99,116,105,111,110,40,101,41,123,110,46,99,104,105,108,100,114,101,110,46,97,100,100,78,111,100,101,40,101,41,125,41,41,58,116,46,99,104,105,108,100,114,101,110,38,38,99,46,105,115,66,111,111,108,101,97,110,40,110,46,99,104,105,108,100,114,101,110,41,38,38,40,110,46,99,104,105,108,100,114,101,110,61,116,46,99,104,105,108,100,114,101,110,41,44,110,46,109,97,114,107,68,105,114,116,121,40,41,44,116,104,105,115,46,97,112,112,108,121,67,104,97,110,103,101,115,40,41,44,110,125,118,97,114,32,105,61,116,104,105,115,46,95,116,114,101,101,46,99,111,110,115,116,114,117,99,116,111,114,46,105,115,84,114,101,101,78,111,100,101,40,116,41,63,116,58,67,40,116,104,105,115,46,95,116,114,101,101,44,116,41,59,114,101,116,117,114,110,32,116,104,105,115,46,115,112,108,105,99,101,40,101,44,48,44,105,41,44,116,104,105,115,46,95,99,111,110,116,101,120,116,38,38,40,105,46,105,116,114,101,101,46,112,97,114,101,110,116,61,116,104,105,115,46,95,99,111,110,116,101,120,116,44,116,104,105,115,46,95,99,111,110,116,101,120,116,46,114,101,102,114,101,115,104,73,110,100,101,116,101,114,109,105,110,97,116,101,83,116,97,116,101,40,41,46,109,97,114,107,68,105,114,116,121,40,41,41,44,116,104,105,115,46,95,116,114,101,101,46,101,109,105,116,40,34,110,111,100,101,46,97,100,100,101,100,34,44,105,41,44,105,46,109,97,114,107,68,105,114,116,121,40,41,44,116,104,105,115,46,108,101,110,103,116,104,45,49,33,61,61,101,38,38,116,104,105,115,46,105,110,118,111,107,101,40,34,109,97,114,107,68,105,114,116,121,34,41,44,116,104,105,115,46,97,112,112,108,121,67,104,97,110,103,101,115,40,41,44,105,125,125,44,123,107,101,121,58,34,105,110,118,111,107,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,121,40,116,104,105,115,44,101,44,116,41,125,125,44,123,107,101,121,58,34,105,110,118,111,107,101,68,101,101,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,40,33,99,46,105,115,65,114,114,97,121,76,105,107,101,79,98,106,101,99,116,40,116,41,124,124,50,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,38,38,40,116,61,99,46,116,97,105,108,40,97,114,103,117,109,101,110,116,115,41,41,44,121,40,116,104,105,115,44,101,44,116,44,33,48,41,125,125,44,123,107,101,121,58,34,108,97,115,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,102,111,114,40,118,97,114,32,116,61,116,104,105,115,46,108,101,110,103,116,104,45,49,59,48,60,61,116,59,116,45,45,41,105,102,40,101,40,116,104,105,115,91,116,93,41,41,114,101,116,117,114,110,32,116,104,105,115,91,116,93,125,125,44,123,107,101,121,58,34,108,111,97,100,105,110,103,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,107,46,99,97,108,108,40,116,104,105,115,44,34,108,111,97,100,105,110,103,34,44,101,41,125,125,44,123,107,101,121,58,34,108,111,97,100,77,111,114,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,44,110,61,116,104,105,115,59,114,101,116,117,114,110,32,116,104,105,115,46,95,108,111,97,100,105,110,103,63,102,46,114,101,106,101,99,116,40,110,101,119,32,69,114,114,111,114,40,34,80,101,110,100,105,110,103,32,108,111,97,100,77,111,114,101,32,99,97,108,108,32,109,117,115,116,32,99,111,109,112,108,101,116,101,32,98,101,102,111,114,101,32,98,101,105,110,103,32,105,110,118,111,107,101,100,32,97,103,97,105,110,46,34,41,41,58,116,104,105,115,46,95,112,97,103,105,110,97,116,105,111,110,46,108,105,109,105,116,61,61,61,116,104,105,115,46,95,112,97,103,105,110,97,116,105,111,110,46,116,111,116,97,108,63,102,46,114,101,115,111,108,118,101,40,41,58,40,116,104,105,115,46,95,108,111,97,100,105,110,103,61,33,48,44,116,104,105,115,46,98,97,116,99,104,40,41,44,99,46,105,110,118,111,107,101,40,116,104,105,115,46,95,99,111,110,116,101,120,116,44,34,109,97,114,107,68,105,114,116,121,34,41,44,116,104,105,115,46,95,112,97,103,105,110,97,116,105,111,110,46,108,105,109,105,116,43,61,116,104,105,115,46,95,116,114,101,101,46,99,111,110,102,105,103,46,112,97,103,105,110,97,116,105,111,110,46,108,105,109,105,116,44,116,104,105,115,46,95,116,114,101,101,46,101,109,105,116,40,34,110,111,100,101,46,112,97,103,105,110,97,116,101,100,34,44,116,104,105,115,46,95,99,111,110,116,101,120,116,124,124,116,104,105,115,46,95,116,114,101,101,44,116,104,105,115,46,112,97,103,105,110,97,116,105,111,110,44,101,41,44,116,61,116,104,105,115,46,95,116,114,101,101,46,99,111,110,102,105,103,46,100,101,102,101,114,114,101,100,76,111,97,100,105,110,103,63,116,104,105,115,46,95,99,111,110,116,101,120,116,63,116,104,105,115,46,95,99,111,110,116,101,120,116,46,108,111,97,100,67,104,105,108,100,114,101,110,40,41,58,116,104,105,115,46,95,116,114,101,101,46,108,111,97,100,40,116,104,105,115,46,95,116,114,101,101,46,99,111,110,102,105,103,46,100,97,116,97,41,58,40,116,104,105,115,46,95,108,111,97,100,105,110,103,61,33,49,44,102,46,114,101,115,111,108,118,101,40,41,41,44,116,104,105,115,46,101,110,100,40,41,44,116,104,105,115,46,95,116,114,101,101,46,99,111,110,102,105,103,46,100,101,102,101,114,114,101,100,76,111,97,100,105,110,103,38,38,116,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,41,123,110,46,95,108,111,97,100,105,110,103,61,33,49,44,110,46,97,112,112,108,121,67,104,97,110,103,101,115,40,41,125,41,46,99,97,116,99,104,40,102,117,110,99,116,105,111,110,40,41,123,110,46,95,108,111,97,100,105,110,103,61,33,49,44,110,46,97,112,112,108,121,67,104,97,110,103,101,115,40,41,125,41,44,116,41,125,125,44,123,107,101,121,58,34,109,97,116,99,104,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,107,46,99,97,108,108,40,116,104,105,115,44,34,109,97,116,99,104,101,100,34,44,101,41,125,125,44,123,107,101,121,58,34,109,111,118,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,105,61,50,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,38,38,118,111,105,100,32,48,33,61,61,110,63,110,58,116,104,105,115,44,114,61,116,104,105,115,91,101,93,46,114,101,109,111,118,101,40,41,44,115,61,105,46,105,110,115,101,114,116,65,116,40,116,44,114,41,59,114,101,116,117,114,110,32,116,104,105,115,46,95,116,114,101,101,46,101,109,105,116,40,34,110,111,100,101,46,109,111,118,101,100,34,44,115,44,116,104,105,115,44,101,44,105,44,116,41,44,115,125,125,44,123,107,101,121,58,34,110,111,100,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,59,114,101,116,117,114,110,32,116,104,105,115,46,114,101,99,117,114,115,101,68,111,119,110,40,102,117,110,99,116,105,111,110,40,101,41,123,105,102,40,101,46,105,100,61,61,61,116,41,114,101,116,117,114,110,32,110,61,101,44,33,49,125,41,44,110,125,125,44,123,107,101,121,58,34,110,111,100,101,115,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,59,114,101,116,117,114,110,32,99,46,105,115,65,114,114,97,121,40,116,41,38,38,40,110,61,110,101,119,32,115,40,116,104,105,115,46,95,116,114,101,101,41,44,116,104,105,115,46,114,101,99,117,114,115,101,68,111,119,110,40,102,117,110,99,116,105,111,110,40,101,41,123,45,49,60,116,46,105,110,100,101,120,79,102,40,101,46,105,100,41,38,38,110,46,112,117,115,104,40,101,41,125,41,41,44,99,46,105,115,65,114,114,97,121,40,116,41,63,110,58,116,104,105,115,125,125,44,123,107,101,121,58,34,112,97,103,105,110,97,116,105,111,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,112,97,103,105,110,97,116,105,111,110,125,125,44,123,107,101,121,58,34,112,111,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,114,40,117,40,115,46,112,114,111,116,111,116,121,112,101,41,44,34,112,111,112,34,44,116,104,105,115,41,46,99,97,108,108,40,116,104,105,115,41,59,114,101,116,117,114,110,32,116,104,105,115,46,105,110,100,105,99,101,115,68,105,114,116,121,61,33,48,44,116,104,105,115,46,99,97,108,99,117,108,97,116,101,82,101,110,100,101,114,97,98,108,101,80,111,115,105,116,105,111,110,115,40,41,44,101,125,125,44,123,107,101,121,58,34,112,117,115,104,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,114,40,117,40,115,46,112,114,111,116,111,116,121,112,101,41,44,34,112,117,115,104,34,44,116,104,105,115,41,46,99,97,108,108,40,116,104,105,115,44,101,41,59,114,101,116,117,114,110,32,116,104,105,115,46,105,110,100,105,99,101,115,68,105,114,116,121,61,33,48,44,116,104,105,115,46,99,97,108,99,117,108,97,116,101,82,101,110,100,101,114,97,98,108,101,80,111,115,105,116,105,111,110,115,40,41,44,116,125,125,44,123,107,101,121,58,34,114,101,99,117,114,115,101,68,111,119,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,95,40,116,104,105,115,44,101,41,44,116,104,105,115,125,125,44,123,107,101,121,58,34,114,101,109,111,118,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,99,46,114,101,109,111,118,101,40,116,104,105,115,44,123,105,100,58,101,46,105,100,125,41,44,99,46,105,110,118,111,107,101,40,116,104,105,115,46,95,99,111,110,116,101,120,116,44,34,109,97,114,107,68,105,114,116,121,34,41,44,116,104,105,115,46,105,110,100,105,99,101,115,68,105,114,116,121,61,33,48,44,116,104,105,115,46,97,112,112,108,121,67,104,97,110,103,101,115,40,41,44,116,104,105,115,125,125,44,123,107,101,121,58,34,114,101,109,111,118,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,107,46,99,97,108,108,40,116,104,105,115,44,34,114,101,109,111,118,101,100,34,44,101,41,125,125,44,123,107,101,121,58,34,114,101,115,116,111,114,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,110,118,111,107,101,40,34,114,101,115,116,111,114,101,34,41,125,125,44,123,107,101,121,58,34,114,101,115,116,111,114,101,68,101,101,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,110,118,111,107,101,68,101,101,112,40,34,114,101,115,116,111,114,101,34,41,125,125,44,123,107,101,121,58,34,115,101,108,101,99,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,110,118,111,107,101,40,34,115,101,108,101,99,116,34,41,125,125,44,123,107,101,121,58,34,115,101,108,101,99,116,97,98,108,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,107,46,99,97,108,108,40,116,104,105,115,44,34,115,101,108,101,99,116,97,98,108,101,34,44,101,41,125,125,44,123,107,101,121,58,34,115,101,108,101,99,116,68,101,101,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,110,118,111,107,101,68,101,101,112,40,34,115,101,108,101,99,116,34,41,125,125,44,123,107,101,121,58,34,115,101,108,101,99,116,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,107,46,99,97,108,108,40,116,104,105,115,44,34,115,101,108,101,99,116,101,100,34,44,101,41,125,125,44,123,107,101,121,58,34,115,104,105,102,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,114,40,117,40,115,46,112,114,111,116,111,116,121,112,101,41,44,34,115,104,105,102,116,34,44,116,104,105,115,41,46,99,97,108,108,40,116,104,105,115,44,101,41,59,114,101,116,117,114,110,32,116,104,105,115,46,105,110,100,105,99,101,115,68,105,114,116,121,61,33,48,44,116,104,105,115,46,99,97,108,99,117,108,97,116,101,82,101,110,100,101,114,97,98,108,101,80,111,115,105,116,105,111,110,115,40,41,44,116,125,125,44,123,107,101,121,58,34,115,104,111,119,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,110,118,111,107,101,40,34,115,104,111,119,34,41,125,125,44,123,107,101,121,58,34,115,104,111,119,68,101,101,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,110,118,111,107,101,68,101,101,112,40,34,115,104,111,119,34,41,125,125,44,123,107,101,121,58,34,115,111,102,116,82,101,109,111,118,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,110,118,111,107,101,40,34,115,111,102,116,82,101,109,111,118,101,34,41,125,125,44,123,107,101,121,58,34,115,111,114,116,66,121,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,116,104,105,115,59,105,102,40,101,61,101,124,124,116,104,105,115,46,95,116,114,101,101,46,99,111,110,102,105,103,46,115,111,114,116,41,123,116,104,105,115,46,98,97,116,99,104,40,41,59,118,97,114,32,110,61,99,46,115,111,114,116,66,121,40,116,104,105,115,44,101,41,59,116,104,105,115,46,108,101,110,103,116,104,61,48,44,99,46,101,97,99,104,40,110,44,102,117,110,99,116,105,111,110,40,101,41,123,116,46,112,117,115,104,40,101,41,125,41,44,116,104,105,115,46,105,110,100,105,99,101,115,68,105,114,116,121,61,33,48,44,116,104,105,115,46,101,110,100,40,41,125,114,101,116,117,114,110,32,116,104,105,115,125,125,44,123,107,101,121,58,34,115,111,114,116,68,101,101,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,104,105,115,46,115,111,114,116,40,116,41,44,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,101,41,123,101,46,104,97,115,67,104,105,108,100,114,101,110,40,41,38,38,101,46,99,104,105,108,100,114,101,110,46,115,111,114,116,68,101,101,112,40,116,41,125,41,44,116,104,105,115,125,125,44,123,107,101,121,58,34,115,112,108,105,99,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,114,40,117,40,115,46,112,114,111,116,111,116,121,112,101,41,44,34,115,112,108,105,99,101,34,44,116,104,105,115,41,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,59,114,101,116,117,114,110,32,116,104,105,115,46,105,110,100,105,99,101,115,68,105,114,116,121,61,33,48,44,116,104,105,115,46,99,97,108,99,117,108,97,116,101,82,101,110,100,101,114,97,98,108,101,80,111,115,105,116,105,111,110,115,40,41,44,101,125,125,44,123,107,101,121,58,34,115,116,97,116,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,110,118,111,107,101,40,34,115,116,97,116,101,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,115,116,97,116,101,68,101,101,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,110,118,111,107,101,68,101,101,112,40,34,115,116,97,116,101,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,115,119,97,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,116,104,105,115,46,95,116,114,101,101,46,98,97,116,99,104,40,41,59,118,97,114,32,110,61,101,46,99,111,110,116,101,120,116,40,41,44,105,61,116,46,99,111,110,116,101,120,116,40,41,44,114,61,110,46,105,110,100,101,120,79,102,40,101,41,44,115,61,105,46,105,110,100,101,120,79,102,40,116,41,59,114,101,116,117,114,110,32,110,61,61,61,105,63,40,116,104,105,115,91,114,93,61,116,44,116,104,105,115,91,115,93,61,101,44,116,104,105,115,46,95,116,114,101,101,46,101,109,105,116,40,34,110,111,100,101,46,109,111,118,101,100,34,44,101,44,110,44,114,44,105,44,115,41,44,116,104,105,115,46,95,116,114,101,101,46,101,109,105,116,40,34,110,111,100,101,46,109,111,118,101,100,34,44,116,44,105,44,115,44,110,44,114,41,41,58,40,110,46,109,111,118,101,40,114,44,105,46,105,110,100,101,120,79,102,40,116,41,44,105,41,44,105,46,109,111,118,101,40,105,46,105,110,100,101,120,79,102,40,116,41,44,114,44,110,41,41,44,116,104,105,115,46,105,110,100,105,99,101,115,68,105,114,116,121,61,33,48,44,116,104,105,115,46,95,116,114,101,101,46,101,110,100,40,41,44,116,104,105,115,46,95,116,114,101,101,46,101,109,105,116,40,34,110,111,100,101,46,115,119,97,112,112,101,100,34,44,101,44,110,44,114,44,116,44,105,44,115,41,44,116,104,105,115,125,125,44,123,107,101,121,58,34,116,114,101,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,116,114,101,101,125,125,44,123,107,101,121,58,34,116,111,65,114,114,97,121,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,91,93,59,114,101,116,117,114,110,32,99,46,101,97,99,104,40,116,104,105,115,44,102,117,110,99,116,105,111,110,40,101,41,123,116,46,112,117,115,104,40,101,46,116,111,79,98,106,101,99,116,40,41,41,125,41,44,116,125,125,44,123,107,101,121,58,34,117,110,115,104,105,102,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,114,40,117,40,115,46,112,114,111,116,111,116,121,112,101,41,44,34,117,110,115,104,105,102,116,34,44,116,104,105,115,41,46,99,97,108,108,40,116,104,105,115,44,101,41,59,114,101,116,117,114,110,32,116,104,105,115,46,105,110,100,105,99,101,115,68,105,114,116,121,61,33,48,44,116,104,105,115,46,99,97,108,99,117,108,97,116,101,82,101,110,100,101,114,97,98,108,101,80,111,115,105,116,105,111,110,115,40,41,44,116,125,125,44,123,107,101,121,58,34,118,105,115,105,98,108,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,107,46,99,97,108,108,40,116,104,105,115,44,34,118,105,115,105,98,108,101,34,44,101,41,125,125,93,41,44,115,125,40,41,59,102,117,110,99,116,105,111,110,32,95,40,101,44,116,41,123,118,97,114,32,110,59,114,101,116,117,114,110,32,101,32,105,110,115,116,97,110,99,101,111,102,32,103,63,99,46,101,97,99,104,40,101,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,110,61,95,40,101,44,116,41,125,41,58,101,32,105,110,115,116,97,110,99,101,111,102,32,119,38,38,33,49,33,61,61,40,110,61,116,40,101,41,41,38,38,101,46,104,97,115,67,104,105,108,100,114,101,110,40,41,38,38,40,110,61,95,40,101,46,99,104,105,108,100,114,101,110,44,116,41,41,44,110,125,102,117,110,99,116,105,111,110,32,109,40,110,41,123,114,101,116,117,114,110,32,110,101,119,32,102,40,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,102,40,33,99,46,105,115,79,98,106,101,99,116,40,110,41,41,114,101,116,117,114,110,32,116,40,110,101,119,32,69,114,114,111,114,40,34,73,110,118,97,108,105,100,32,80,114,111,109,105,115,101,34,41,41,59,99,46,105,115,70,117,110,99,116,105,111,110,40,110,46,116,104,101,110,41,38,38,110,46,116,104,101,110,40,101,41,44,99,46,105,115,70,117,110,99,116,105,111,110,40,110,46,101,114,114,111,114,41,63,110,46,101,114,114,111,114,40,116,41,58,99,46,105,115,70,117,110,99,116,105,111,110,40,110,46,99,97,116,99,104,41,38,38,110,46,99,97,116,99,104,40,116,41,125,41,125,102,117,110,99,116,105,111,110,32,98,40,101,44,116,44,110,41,123,118,97,114,32,105,61,101,46,105,116,114,101,101,46,115,116,97,116,101,91,116,93,59,114,101,116,117,114,110,32,118,111,105,100,32,48,33,61,61,110,38,38,105,33,61,61,110,38,38,40,101,46,105,116,114,101,101,46,115,116,97,116,101,91,116,93,61,110,44,34,114,101,110,100,101,114,101,100,34,33,61,61,116,38,38,101,46,109,97,114,107,68,105,114,116,121,40,41,44,101,46,95,116,114,101,101,46,101,109,105,116,40,34,110,111,100,101,46,115,116,97,116,101,46,99,104,97,110,103,101,100,34,44,101,44,116,44,105,44,110,41,41,44,105,125,102,111,114,40,118,97,114,32,119,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,114,40,101,44,116,44,110,41,123,118,97,114,32,105,61,116,104,105,115,59,97,40,116,104,105,115,44,114,41,44,116,104,105,115,46,95,116,114,101,101,61,101,44,116,32,105,110,115,116,97,110,99,101,111,102,32,114,38,38,40,40,110,61,99,46,99,97,115,116,65,114,114,97,121,40,110,41,41,46,112,117,115,104,40,34,95,116,114,101,101,34,41,44,99,46,101,97,99,104,40,116,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,99,46,105,110,99,108,117,100,101,115,40,110,44,116,41,124,124,40,99,46,105,115,79,98,106,101,99,116,40,101,41,63,105,91,116,93,61,101,32,105,110,115,116,97,110,99,101,111,102,32,103,63,101,46,99,108,111,110,101,40,41,58,34,105,116,114,101,101,34,61,61,61,116,63,102,117,110,99,116,105,111,110,40,101,44,110,41,123,118,97,114,32,105,61,123,125,59,114,101,116,117,114,110,40,110,61,99,46,99,97,115,116,65,114,114,97,121,40,110,41,41,46,112,117,115,104,40,34,114,101,102,34,41,44,99,46,101,97,99,104,40,101,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,99,46,105,110,99,108,117,100,101,115,40,110,44,116,41,124,124,40,105,91,116,93,61,99,46,99,108,111,110,101,68,101,101,112,40,101,41,41,125,41,44,105,125,40,101,41,58,99,46,99,108,111,110,101,68,101,101,112,40,101,41,58,105,91,116,93,61,101,41,125,41,41,125,114,101,116,117,114,110,32,101,40,114,44,91,123,107,101,121,58,34,97,100,100,67,104,105,108,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,33,99,46,105,115,65,114,114,97,121,40,116,104,105,115,46,99,104,105,108,100,114,101,110,41,38,38,99,46,105,115,65,114,114,97,121,76,105,107,101,40,116,104,105,115,46,99,104,105,108,100,114,101,110,41,124,124,40,116,104,105,115,46,99,104,105,108,100,114,101,110,61,110,101,119,32,103,40,116,104,105,115,46,95,116,114,101,101,41,44,116,104,105,115,46,99,104,105,108,100,114,101,110,46,95,99,111,110,116,101,120,116,61,116,104,105,115,41,44,116,104,105,115,46,99,104,105,108,100,114,101,110,46,97,100,100,78,111,100,101,40,101,41,125,125,44,123,107,101,121,58,34,97,100,100,67,104,105,108,100,114,101,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,116,104,105,115,44,110,61,110,101,119,32,103,40,116,104,105,115,46,95,116,114,101,101,41,59,114,101,116,117,114,110,33,99,46,105,115,65,114,114,97,121,40,116,104,105,115,46,99,104,105,108,100,114,101,110,41,38,38,99,46,105,115,65,114,114,97,121,76,105,107,101,40,116,104,105,115,46,99,104,105,108,100,114,101,110,41,124,124,40,116,104,105,115,46,99,104,105,108,100,114,101,110,61,110,101,119,32,103,40,116,104,105,115,46,95,116,114,101,101,41,44,116,104,105,115,46,99,104,105,108,100,114,101,110,46,95,99,111,110,116,101,120,116,61,116,104,105,115,41,44,116,104,105,115,46,99,104,105,108,100,114,101,110,46,98,97,116,99,104,40,41,44,99,46,101,97,99,104,40,101,44,102,117,110,99,116,105,111,110,40,101,41,123,110,46,112,117,115,104,40,116,46,97,100,100,67,104,105,108,100,40,101,41,41,125,41,44,116,104,105,115,46,99,104,105,108,100,114,101,110,46,101,110,100,40,41,44,110,125,125,44,123,107,101,121,58,34,97,108,108,111,119,68,121,110,97,109,105,99,76,111,97,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,116,114,101,101,46,105,115,68,121,110,97,109,105,99,38,38,40,99,46,105,115,65,114,114,97,121,76,105,107,101,40,116,104,105,115,46,99,104,105,108,100,114,101,110,41,124,124,33,48,61,61,61,116,104,105,115,46,99,104,105,108,100,114,101,110,41,125,125,44,123,107,101,121,58,34,97,115,115,105,103,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,99,46,97,115,115,105,103,110,46,97,112,112,108,121,40,99,44,91,116,104,105,115,93,46,99,111,110,99,97,116,40,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,115,108,105,99,101,46,99,97,108,108,40,97,114,103,117,109,101,110,116,115,41,41,41,44,116,104,105,115,46,109,97,114,107,68,105,114,116,121,40,41,44,116,104,105,115,46,99,111,110,116,101,120,116,40,41,46,97,112,112,108,121,67,104,97,110,103,101,115,40,41,44,116,104,105,115,125,125,44,123,107,101,121,58,34,97,118,97,105,108,97,98,108,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,33,116,104,105,115,46,104,105,100,100,101,110,40,41,38,38,33,116,104,105,115,46,114,101,109,111,118,101,100,40,41,125,125,44,123,107,101,121,58,34,98,108,117,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,115,116,97,116,101,40,34,101,100,105,116,105,110,103,34,44,33,49,41,44,111,40,34,102,111,99,117,115,101,100,34,44,33,49,44,34,98,108,117,114,114,101,100,34,44,116,104,105,115,41,125,125,44,123,107,101,121,58,34,99,104,101,99,107,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,116,114,101,101,46,98,97,116,99,104,40,41,44,111,40,34,99,104,101,99,107,101,100,34,44,33,48,44,34,99,104,101,99,107,101,100,34,44,116,104,105,115,44,33,101,38,38,116,104,105,115,46,95,116,114,101,101,46,99,111,110,102,105,103,46,99,104,101,99,107,98,111,120,46,97,117,116,111,67,104,101,99,107,67,104,105,108,100,114,101,110,41,44,116,104,105,115,46,104,97,115,80,97,114,101,110,116,40,41,38,38,116,104,105,115,46,103,101,116,80,97,114,101,110,116,40,41,46,114,101,102,114,101,115,104,73,110,100,101,116,101,114,109,105,110,97,116,101,83,116,97,116,101,40,41,44,116,104,105,115,46,95,116,114,101,101,46,101,110,100,40,41,44,116,104,105,115,125,125,44,123,107,101,121,58,34,99,104,101,99,107,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,115,116,97,116,101,40,34,99,104,101,99,107,101,100,34,41,125,125,44,123,107,101,121,58,34,99,108,101,97,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,114,101,99,117,114,115,101,85,112,40,102,117,110,99,116,105,111,110,40,101,41,123,105,102,40,101,46,104,97,115,80,97,114,101,110,116,40,41,41,123,118,97,114,32,116,61,101,46,103,101,116,80,97,114,101,110,116,40,41,59,116,46,104,97,115,86,105,115,105,98,108,101,67,104,105,108,100,114,101,110,40,41,124,124,116,46,104,105,100,101,40,41,125,125,41,44,116,104,105,115,125,125,44,123,107,101,121,58,34,99,108,111,110,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,110,101,119,32,114,40,116,104,105,115,46,95,116,114,101,101,44,116,104,105,115,44,101,41,125,125,44,123,107,101,121,58,34,99,111,108,108,97,112,115,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,111,40,34,99,111,108,108,97,112,115,101,100,34,44,33,48,44,34,99,111,108,108,97,112,115,101,100,34,44,116,104,105,115,41,125,125,44,123,107,101,121,58,34,99,111,108,108,97,112,115,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,115,116,97,116,101,40,34,99,111,108,108,97,112,115,101,100,34,41,125,125,44,123,107,101,121,58,34,99,111,110,116,101,120,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,104,97,115,80,97,114,101,110,116,40,41,63,116,104,105,115,46,103,101,116,80,97,114,101,110,116,40,41,46,99,104,105,108,100,114,101,110,58,116,104,105,115,46,95,116,114,101,101,46,109,111,100,101,108,125,125,44,123,107,101,121,58,34,99,111,112,121,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,105,102,40,33,101,124,124,33,99,46,105,115,70,117,110,99,116,105,111,110,40,101,46,97,100,100,78,111,100,101,41,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,68,101,115,116,105,110,97,116,105,111,110,32,109,117,115,116,32,98,101,32,97,110,32,73,110,115,112,105,114,101,32,84,114,101,101,32,105,110,115,116,97,110,99,101,46,34,41,59,118,97,114,32,105,61,116,104,105,115,59,114,101,116,117,114,110,32,116,38,38,40,105,61,105,46,99,111,112,121,72,105,101,114,97,114,99,104,121,40,33,49,44,110,41,41,44,101,46,97,100,100,78,111,100,101,40,99,46,99,108,111,110,101,68,101,101,112,40,105,46,116,111,79,98,106,101,99,116,40,33,49,44,110,41,41,41,125,125,44,123,107,101,121,58,34,99,111,112,121,72,105,101,114,97,114,99,104,121,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,105,61,91,93,44,101,61,116,104,105,115,46,103,101,116,80,97,114,101,110,116,115,40,41,59,105,102,40,99,46,101,97,99,104,40,101,44,102,117,110,99,116,105,111,110,40,101,41,123,105,46,112,117,115,104,40,101,46,116,111,79,98,106,101,99,116,40,116,44,110,41,41,125,41,44,101,61,105,46,114,101,118,101,114,115,101,40,41,44,33,116,41,123,118,97,114,32,114,61,116,104,105,115,46,116,111,79,98,106,101,99,116,40,33,48,44,110,41,59,116,104,105,115,46,104,97,115,67,104,105,108,100,114,101,110,40,41,38,38,40,114,46,99,104,105,108,100,114,101,110,61,116,104,105,115,46,99,104,105,108,100,114,101,110,46,102,105,108,116,101,114,66,121,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,33,101,46,115,116,97,116,101,40,34,104,105,100,100,101,110,34,41,125,41,46,116,111,65,114,114,97,121,40,41,44,114,46,99,104,105,108,100,114,101,110,46,95,99,111,110,116,101,120,116,61,114,41,44,105,46,112,117,115,104,40,114,41,125,118,97,114,32,115,61,105,91,48,93,44,111,61,105,46,108,101,110,103,116,104,44,97,61,115,59,114,101,116,117,114,110,32,99,46,101,97,99,104,40,105,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,61,91,93,59,116,43,49,60,111,38,38,40,110,46,112,117,115,104,40,105,91,116,43,49,93,41,44,97,46,99,104,105,108,100,114,101,110,61,110,44,97,61,97,46,99,104,105,108,100,114,101,110,91,48,93,41,125,41,44,67,40,116,104,105,115,46,95,116,114,101,101,44,115,41,125,125,44,123,107,101,121,58,34,100,101,115,101,108,101,99,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,115,101,108,101,99,116,101,100,40,41,38,38,40,33,116,104,105,115,46,95,116,114,101,101,46,99,111,110,102,105,103,46,115,101,108,101,99,116,105,111,110,46,114,101,113,117,105,114,101,124,124,49,60,116,104,105,115,46,95,116,114,101,101,46,115,101,108,101,99,116,101,100,40,41,46,108,101,110,103,116,104,41,38,38,40,116,104,105,115,46,99,111,110,116,101,120,116,40,41,46,98,97,116,99,104,40,41,44,111,40,34,115,101,108,101,99,116,101,100,34,44,33,49,44,34,100,101,115,101,108,101,99,116,101,100,34,44,116,104,105,115,44,33,101,38,38,116,104,105,115,46,95,116,114,101,101,46,99,111,110,102,105,103,46,115,101,108,101,99,116,105,111,110,46,97,117,116,111,83,101,108,101,99,116,67,104,105,108,100,114,101,110,41,44,116,104,105,115,46,99,111,110,116,101,120,116,40,41,46,101,110,100,40,41,41,59,114,101,116,117,114,110,32,116,104,105,115,125,125,44,123,107,101,121,58,34,101,100,105,116,97,98,108,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,116,114,101,101,46,99,111,110,102,105,103,46,101,100,105,116,97,98,108,101,38,38,116,104,105,115,46,95,116,114,101,101,46,99,111,110,102,105,103,46,101,100,105,116,105,110,103,46,101,100,105,116,38,38,116,104,105,115,46,115,116,97,116,101,40,34,101,100,105,116,97,98,108,101,34,41,125,125,44,123,107,101,121,58,34,101,100,105,116,105,110,103,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,115,116,97,116,101,40,34,101,100,105,116,105,110,103,34,41,125,125,44,123,107,101,121,58,34,101,120,112,97,110,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,110,61,116,104,105,115,59,114,101,116,117,114,110,32,110,101,119,32,102,40,102,117,110,99,116,105,111,110,40,101,44,116,41,123,40,110,46,104,97,115,67,104,105,108,100,114,101,110,40,41,124,124,110,46,95,116,114,101,101,46,105,115,68,121,110,97,109,105,99,38,38,33,48,61,61,61,110,46,99,104,105,108,100,114,101,110,41,38,38,40,110,46,99,111,108,108,97,112,115,101,100,40,41,124,124,110,46,104,105,100,100,101,110,40,41,41,63,40,110,46,115,116,97,116,101,40,34,99,111,108,108,97,112,115,101,100,34,44,33,49,41,44,110,46,115,116,97,116,101,40,34,104,105,100,100,101,110,34,44,33,49,41,44,110,46,95,116,114,101,101,46,101,109,105,116,40,34,110,111,100,101,46,101,120,112,97,110,100,101,100,34,44,110,41,44,110,46,95,116,114,101,101,46,105,115,68,121,110,97,109,105,99,38,38,33,48,61,61,61,110,46,99,104,105,108,100,114,101,110,63,110,46,108,111,97,100,67,104,105,108,100,114,101,110,40,41,46,116,104,101,110,40,101,41,46,99,97,116,99,104,40,116,41,58,40,110,46,99,111,110,116,101,120,116,40,41,46,97,112,112,108,121,67,104,97,110,103,101,115,40,41,44,101,40,110,41,41,41,58,101,40,110,41,125,41,125,125,44,123,107,101,121,58,34,101,120,112,97,110,100,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,33,116,104,105,115,46,99,111,108,108,97,112,115,101,100,40,41,125,125,44,123,107,101,121,58,34,101,120,112,97,110,100,80,97,114,101,110,116,115,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,104,97,115,80,97,114,101,110,116,40,41,38,38,116,104,105,115,46,103,101,116,80,97,114,101,110,116,40,41,46,114,101,99,117,114,115,101,85,112,40,102,117,110,99,116,105,111,110,40,101,41,123,101,46,101,120,112,97,110,100,40,41,125,41,44,116,104,105,115,125,125,44,123,107,101,121,58,34,102,111,99,117,115,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,102,111,99,117,115,101,100,40,41,124,124,40,116,104,105,115,46,95,116,114,101,101,46,98,97,116,99,104,40,41,44,116,104,105,115,46,95,116,114,101,101,46,98,108,117,114,68,101,101,112,40,41,44,116,104,105,115,46,115,116,97,116,101,40,34,102,111,99,117,115,101,100,34,44,33,48,41,44,116,104,105,115,46,95,116,114,101,101,46,101,109,105,116,40,34,110,111,100,101,46,102,111,99,117,115,101,100,34,44,116,104,105,115,41,44,116,104,105,115,46,109,97,114,107,68,105,114,116,121,40,41,44,116,104,105,115,46,95,116,114,101,101,46,101,110,100,40,41,41,44,116,104,105,115,125,125,44,123,107,101,121,58,34,102,111,99,117,115,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,115,116,97,116,101,40,34,102,111,99,117,115,101,100,34,41,125,125,44,123,107,101,121,58,34,103,101,116,67,104,105,108,100,114,101,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,104,97,115,67,104,105,108,100,114,101,110,40,41,63,116,104,105,115,46,99,104,105,108,100,114,101,110,58,110,101,119,32,103,40,116,104,105,115,46,95,116,114,101,101,41,125,125,44,123,107,101,121,58,34,103,101,116,80,97,114,101,110,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,116,114,101,101,46,112,97,114,101,110,116,125,125,44,123,107,101,121,58,34,103,101,116,80,97,114,101,110,116,115,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,110,101,119,32,103,40,116,104,105,115,46,95,116,114,101,101,41,59,114,101,116,117,114,110,32,116,104,105,115,46,104,97,115,80,97,114,101,110,116,40,41,38,38,116,104,105,115,46,103,101,116,80,97,114,101,110,116,40,41,46,114,101,99,117,114,115,101,85,112,40,102,117,110,99,116,105,111,110,40,101,41,123,116,46,112,117,115,104,40,101,41,125,41,44,116,125,125,44,123,107,101,121,58,34,103,101,116,84,101,120,116,117,97,108,72,105,101,114,97,114,99,104,121,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,91,93,59,114,101,116,117,114,110,32,116,104,105,115,46,114,101,99,117,114,115,101,85,112,40,102,117,110,99,116,105,111,110,40,101,41,123,116,46,117,110,115,104,105,102,116,40,101,46,116,101,120,116,41,125,41,44,116,125,125,44,123,107,101,121,58,34,104,97,115,65,110,99,101,115,116,111,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,33,49,59,114,101,116,117,114,110,32,116,104,105,115,46,114,101,99,117,114,115,101,85,112,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,33,40,110,61,101,46,105,100,61,61,61,116,46,105,100,41,125,41,44,110,125,125,44,123,107,101,121,58,34,104,97,115,67,104,105,108,100,114,101,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,99,46,105,115,65,114,114,97,121,76,105,107,101,40,116,104,105,115,46,99,104,105,108,100,114,101,110,41,38,38,48,60,116,104,105,115,46,99,104,105,108,100,114,101,110,46,108,101,110,103,116,104,125,125,44,123,107,101,121,58,34,104,97,115,76,111,97,100,101,100,67,104,105,108,100,114,101,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,99,46,105,115,65,114,114,97,121,76,105,107,101,40,116,104,105,115,46,99,104,105,108,100,114,101,110,41,125,125,44,123,107,101,121,58,34,104,97,115,79,114,87,105,108,108,72,97,118,101,67,104,105,108,100,114,101,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,99,46,105,115,65,114,114,97,121,76,105,107,101,40,116,104,105,115,46,99,104,105,108,100,114,101,110,41,63,66,111,111,108,101,97,110,40,116,104,105,115,46,99,104,105,108,100,114,101,110,46,108,101,110,103,116,104,41,58,116,104,105,115,46,97,108,108,111,119,68,121,110,97,109,105,99,76,111,97,100,40,41,125,125,44,123,107,101,121,58,34,104,97,115,80,97,114,101,110,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,66,111,111,108,101,97,110,40,116,104,105,115,46,105,116,114,101,101,46,112,97,114,101,110,116,41,125,125,44,123,107,101,121,58,34,104,97,115,86,105,115,105,98,108,101,67,104,105,108,100,114,101,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,33,49,59,114,101,116,117,114,110,32,116,104,105,115,46,104,97,115,67,104,105,108,100,114,101,110,40,41,38,38,40,101,61,48,60,116,104,105,115,46,99,104,105,108,100,114,101,110,46,102,105,108,116,101,114,66,121,40,34,97,118,97,105,108,97,98,108,101,34,41,46,108,101,110,103,116,104,41,44,101,125,125,44,123,107,101,121,58,34,104,105,100,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,111,40,34,104,105,100,100,101,110,34,44,33,48,44,34,104,105,100,100,101,110,34,44,116,104,105,115,41,59,114,101,116,117,114,110,32,101,46,104,97,115,67,104,105,108,100,114,101,110,40,41,38,38,101,46,99,104,105,108,100,114,101,110,46,104,105,100,101,40,41,44,101,125,125,44,123,107,101,121,58,34,104,105,100,100,101,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,115,116,97,116,101,40,34,104,105,100,100,101,110,34,41,125,125,44,123,107,101,121,58,34,105,110,100,101,120,80,97,116,104,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,91,93,59,114,101,116,117,114,110,32,116,104,105,115,46,114,101,99,117,114,115,101,85,112,40,102,117,110,99,116,105,111,110,40,101,41,123,116,46,112,117,115,104,40,99,46,105,110,100,101,120,79,102,40,101,46,99,111,110,116,101,120,116,40,41,44,101,41,41,125,41,44,116,46,114,101,118,101,114,115,101,40,41,46,106,111,105,110,40,34,46,34,41,125,125,44,123,107,101,121,58,34,105,110,100,101,116,101,114,109,105,110,97,116,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,115,116,97,116,101,40,34,105,110,100,101,116,101,114,109,105,110,97,116,101,34,41,125,125,44,123,107,101,121,58,34,105,115,70,105,114,115,116,82,101,110,100,101,114,97,98,108,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,61,61,61,116,104,105,115,46,99,111,110,116,101,120,116,40,41,46,102,105,114,115,116,82,101,110,100,101,114,97,98,108,101,78,111,100,101,125,125,44,123,107,101,121,58,34,105,115,76,97,115,116,82,101,110,100,101,114,97,98,108,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,61,61,61,116,104,105,115,46,99,111,110,116,101,120,116,40,41,46,108,97,115,116,82,101,110,100,101,114,97,98,108,101,78,111,100,101,125,125,44,123,107,101,121,58,34,105,115,79,110,108,121,82,101,110,100,101,114,97,98,108,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,115,70,105,114,115,116,82,101,110,100,101,114,97,98,108,101,40,41,38,38,116,104,105,115,46,105,115,76,97,115,116,82,101,110,100,101,114,97,98,108,101,40,41,125,125,44,123,107,101,121,58,34,108,97,115,116,68,101,101,112,101,115,116,86,105,115,105,98,108,101,67,104,105,108,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,59,105,102,40,116,104,105,115,46,104,97,115,67,104,105,108,100,114,101,110,40,41,38,38,33,116,104,105,115,46,99,111,108,108,97,112,115,101,100,40,41,41,123,118,97,114,32,116,61,40,101,61,99,46,102,105,110,100,76,97,115,116,40,116,104,105,115,46,99,104,105,108,100,114,101,110,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,46,118,105,115,105,98,108,101,40,41,125,41,41,46,108,97,115,116,68,101,101,112,101,115,116,86,105,115,105,98,108,101,67,104,105,108,100,40,41,59,116,38,38,40,101,61,116,41,125,114,101,116,117,114,110,32,101,125,125,44,123,107,101,121,58,34,108,111,97,100,67,104,105,108,100,114,101,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,111,61,116,104,105,115,59,114,101,116,117,114,110,32,110,101,119,32,102,40,102,117,110,99,116,105,111,110,40,105,44,114,41,123,105,102,40,33,111,46,97,108,108,111,119,68,121,110,97,109,105,99,76,111,97,100,40,41,41,114,101,116,117,114,110,32,114,40,110,101,119,32,69,114,114,111,114,40,34,78,111,100,101,32,100,111,101,115,32,110,111,116,32,104,97,118,101,32,111,114,32,115,117,112,112,111,114,116,32,100,121,110,97,109,105,99,32,99,104,105,108,100,114,101,110,46,34,41,41,59,111,46,115,116,97,116,101,40,34,108,111,97,100,105,110,103,34,44,33,48,41,44,111,46,109,97,114,107,68,105,114,116,121,40,41,44,111,46,99,111,110,116,101,120,116,40,41,46,97,112,112,108,121,67,104,97,110,103,101,115,40,41,59,102,117,110,99,116,105,111,110,32,101,40,101,44,116,41,123,105,102,40,33,99,46,105,115,65,114,114,97,121,76,105,107,101,40,101,41,41,114,101,116,117,114,110,32,114,40,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,76,111,97,100,101,114,32,114,101,113,117,105,114,101,115,32,97,110,32,97,114,114,97,121,45,108,105,107,101,32,96,110,111,100,101,115,96,32,112,97,114,97,109,101,116,101,114,46,34,41,41,59,111,46,99,111,110,116,101,120,116,40,41,46,98,97,116,99,104,40,41,44,111,46,115,116,97,116,101,40,34,108,111,97,100,105,110,103,34,44,33,49,41,59,118,97,114,32,110,61,83,40,111,46,95,116,114,101,101,44,101,44,111,41,59,99,46,105,115,65,114,114,97,121,76,105,107,101,40,111,46,99,104,105,108,100,114,101,110,41,63,111,46,99,104,105,108,100,114,101,110,61,111,46,99,104,105,108,100,114,101,110,46,99,111,110,99,97,116,40,110,41,58,111,46,99,104,105,108,100,114,101,110,61,110,44,99,46,112,97,114,115,101,73,110,116,40,116,41,62,101,46,108,101,110,103,116,104,38,38,40,111,46,99,104,105,108,100,114,101,110,46,95,112,97,103,105,110,97,116,105,111,110,46,116,111,116,97,108,61,99,46,112,97,114,115,101,73,110,116,40,116,41,41,44,34,99,104,101,99,107,98,111,120,34,61,61,61,111,46,95,116,114,101,101,46,99,111,110,102,105,103,46,115,101,108,101,99,116,105,111,110,46,109,111,100,101,38,38,111,46,115,101,108,101,99,116,101,100,40,41,38,38,111,46,99,104,105,108,100,114,101,110,46,115,101,108,101,99,116,40,41,44,111,46,109,97,114,107,68,105,114,116,121,40,41,44,111,46,99,111,110,116,101,120,116,40,41,46,101,110,100,40,41,44,105,40,111,46,99,104,105,108,100,114,101,110,41,44,111,46,95,116,114,101,101,46,101,109,105,116,40,34,99,104,105,108,100,114,101,110,46,108,111,97,100,101,100,34,44,111,41,125,102,117,110,99,116,105,111,110,32,116,40,101,41,123,111,46,115,116,97,116,101,40,34,108,111,97,100,105,110,103,34,44,33,49,41,44,111,46,99,104,105,108,100,114,101,110,61,110,101,119,32,103,40,111,46,95,116,114,101,101,41,44,40,111,46,99,104,105,108,100,114,101,110,46,95,99,111,110,116,101,120,116,61,111,41,46,109,97,114,107,68,105,114,116,121,40,41,44,111,46,99,111,110,116,101,120,116,40,41,46,97,112,112,108,121,67,104,97,110,103,101,115,40,41,44,114,40,101,41,44,111,46,95,116,114,101,101,46,101,109,105,116,40,34,116,114,101,101,46,108,111,97,100,101,114,114,111,114,34,44,101,41,125,118,97,114,32,110,61,111,46,95,116,114,101,101,46,99,111,110,115,116,114,117,99,116,111,114,46,105,115,84,114,101,101,78,111,100,101,115,40,111,46,99,104,105,108,100,114,101,110,41,63,111,46,99,104,105,108,100,114,101,110,46,112,97,103,105,110,97,116,105,111,110,40,41,58,110,117,108,108,44,115,61,111,46,95,116,114,101,101,46,99,111,110,102,105,103,46,100,97,116,97,40,111,44,101,44,116,44,110,41,59,99,46,105,115,79,98,106,101,99,116,40,115,41,38,38,109,40,115,41,46,116,104,101,110,40,101,41,46,99,97,116,99,104,40,116,41,125,41,125,125,44,123,107,101,121,58,34,108,111,97,100,105,110,103,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,115,116,97,116,101,40,34,108,111,97,100,105,110,103,34,41,125,125,44,123,107,101,121,58,34,108,111,97,100,77,111,114,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,99,104,105,108,100,114,101,110,38,38,33,48,33,61,61,116,104,105,115,46,99,104,105,108,100,114,101,110,63,116,104,105,115,46,99,104,105,108,100,114,101,110,46,108,111,97,100,77,111,114,101,40,41,58,102,46,114,101,106,101,99,116,40,110,101,119,32,69,114,114,111,114,40,34,67,104,105,108,100,114,101,110,32,104,97,118,101,32,110,111,116,32,121,101,116,32,98,101,101,110,32,108,111,97,100,101,100,46,34,41,41,125,125,44,123,107,101,121,58,34,109,97,114,107,68,105,114,116,121,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,116,114,101,101,46,100,105,114,116,121,124,124,40,116,104,105,115,46,105,116,114,101,101,46,100,105,114,116,121,61,33,48,44,116,104,105,115,46,104,97,115,80,97,114,101,110,116,40,41,38,38,116,104,105,115,46,103,101,116,80,97,114,101,110,116,40,41,46,109,97,114,107,68,105,114,116,121,40,41,41,44,116,104,105,115,125,125,44,123,107,101,121,58,34,109,97,116,99,104,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,115,116,97,116,101,40,34,109,97,116,99,104,101,100,34,41,125,125,44,123,107,101,121,58,34,110,101,120,116,86,105,115,105,98,108,101,65,110,99,101,115,116,114,97,108,83,105,98,108,105,110,103,78,111,100,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,59,105,102,40,116,104,105,115,46,104,97,115,80,97,114,101,110,116,40,41,41,123,118,97,114,32,116,61,116,104,105,115,46,103,101,116,80,97,114,101,110,116,40,41,59,101,61,40,101,61,116,46,110,101,120,116,86,105,115,105,98,108,101,83,105,98,108,105,110,103,78,111,100,101,40,41,41,124,124,116,46,110,101,120,116,86,105,115,105,98,108,101,65,110,99,101,115,116,114,97,108,83,105,98,108,105,110,103,78,111,100,101,40,41,125,114,101,116,117,114,110,32,101,125,125,44,123,107,101,121,58,34,110,101,120,116,86,105,115,105,98,108,101,67,104,105,108,100,78,111,100,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,59,114,101,116,117,114,110,32,116,104,105,115,46,104,97,115,67,104,105,108,100,114,101,110,40,41,38,38,40,101,61,99,46,102,105,110,100,40,116,104,105,115,46,99,104,105,108,100,114,101,110,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,46,118,105,115,105,98,108,101,40,41,125,41,41,44,101,125,125,44,123,107,101,121,58,34,110,101,120,116,86,105,115,105,98,108,101,78,111,100,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,110,101,120,116,86,105,115,105,98,108,101,67,104,105,108,100,78,111,100,101,40,41,124,124,116,104,105,115,46,110,101,120,116,86,105,115,105,98,108,101,83,105,98,108,105,110,103,78,111,100,101,40,41,124,124,116,104,105,115,46,110,101,120,116,86,105,115,105,98,108,101,65,110,99,101,115,116,114,97,108,83,105,98,108,105,110,103,78,111,100,101,40,41,125,125,44,123,107,101,121,58,34,110,101,120,116,86,105,115,105,98,108,101,83,105,98,108,105,110,103,78,111,100,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,104,97,115,80,97,114,101,110,116,40,41,63,116,104,105,115,46,103,101,116,80,97,114,101,110,116,40,41,46,99,104,105,108,100,114,101,110,58,116,104,105,115,46,95,116,114,101,101,46,110,111,100,101,115,40,41,44,116,61,99,46,102,105,110,100,73,110,100,101,120,40,101,44,123,105,100,58,116,104,105,115,46,105,100,125,41,59,114,101,116,117,114,110,32,99,46,102,105,110,100,40,99,46,115,108,105,99,101,40,101,44,116,43,49,41,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,46,118,105,115,105,98,108,101,40,41,125,41,125,125,44,123,107,101,121,58,34,112,97,103,105,110,97,116,105,111,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,99,46,103,101,116,40,116,104,105,115,44,34,99,104,105,108,100,114,101,110,46,95,112,97,103,105,110,97,116,105,111,110,34,41,125,125,44,123,107,101,121,58,34,112,114,101,118,105,111,117,115,86,105,115,105,98,108,101,78,111,100,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,59,114,101,116,117,114,110,40,101,61,116,104,105,115,46,112,114,101,118,105,111,117,115,86,105,115,105,98,108,101,83,105,98,108,105,110,103,78,111,100,101,40,41,41,38,38,101,46,104,97,115,67,104,105,108,100,114,101,110,40,41,38,38,33,101,46,99,111,108,108,97,112,115,101,100,40,41,38,38,40,101,61,101,46,108,97,115,116,68,101,101,112,101,115,116,86,105,115,105,98,108,101,67,104,105,108,100,40,41,41,44,33,101,38,38,116,104,105,115,46,104,97,115,80,97,114,101,110,116,40,41,38,38,40,101,61,116,104,105,115,46,103,101,116,80,97,114,101,110,116,40,41,41,44,101,125,125,44,123,107,101,121,58,34,112,114,101,118,105,111,117,115,86,105,115,105,98,108,101,83,105,98,108,105,110,103,78,111,100,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,104,97,115,80,97,114,101,110,116,40,41,63,116,104,105,115,46,103,101,116,80,97,114,101,110,116,40,41,46,99,104,105,108,100,114,101,110,58,116,104,105,115,46,95,116,114,101,101,46,110,111,100,101,115,40,41,44,116,61,99,46,102,105,110,100,73,110,100,101,120,40,101,44,123,105,100,58,116,104,105,115,46,105,100,125,41,59,114,101,116,117,114,110,32,99,46,102,105,110,100,76,97,115,116,40,99,46,115,108,105,99,101,40,101,44,48,44,116,41,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,46,118,105,115,105,98,108,101,40,41,125,41,125,125,44,123,107,101,121,58,34,114,101,99,117,114,115,101,68,111,119,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,95,40,116,104,105,115,44,101,41,44,116,104,105,115,125,125,44,123,107,101,121,58,34,114,101,99,117,114,115,101,85,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,33,49,33,61,61,101,40,116,104,105,115,41,38,38,116,104,105,115,46,104,97,115,80,97,114,101,110,116,40,41,38,38,116,104,105,115,46,103,101,116,80,97,114,101,110,116,40,41,46,114,101,99,117,114,115,101,85,112,40,101,41,44,116,104,105,115,125,125,44,123,107,101,121,58,34,114,101,102,114,101,115,104,73,110,100,101,116,101,114,109,105,110,97,116,101,83,116,97,116,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,105,110,100,101,116,101,114,109,105,110,97,116,101,40,41,59,105,102,40,116,104,105,115,46,115,116,97,116,101,40,34,105,110,100,101,116,101,114,109,105,110,97,116,101,34,44,33,49,41,44,116,104,105,115,46,104,97,115,67,104,105,108,100,114,101,110,40,41,41,123,118,97,114,32,116,61,116,104,105,115,46,99,104,105,108,100,114,101,110,46,108,101,110,103,116,104,44,110,61,48,44,105,61,48,59,116,104,105,115,46,99,104,105,108,100,114,101,110,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,101,41,123,101,46,99,104,101,99,107,101,100,40,41,38,38,105,43,43,44,101,46,105,110,100,101,116,101,114,109,105,110,97,116,101,40,41,38,38,110,43,43,125,41,44,105,61,61,61,116,63,111,40,34,99,104,101,99,107,101,100,34,44,33,48,44,34,99,104,101,99,107,101,100,34,44,116,104,105,115,41,58,111,40,34,99,104,101,99,107,101,100,34,44,33,49,44,34,117,110,99,104,101,99,107,101,100,34,44,116,104,105,115,41,44,116,104,105,115,46,99,104,101,99,107,101,100,40,41,124,124,116,104,105,115,46,115,116,97,116,101,40,34,105,110,100,101,116,101,114,109,105,110,97,116,101,34,44,48,60,110,124,124,48,60,116,38,38,48,60,105,38,38,105,60,116,41,125,114,101,116,117,114,110,32,116,104,105,115,46,104,97,115,80,97,114,101,110,116,40,41,38,38,116,104,105,115,46,103,101,116,80,97,114,101,110,116,40,41,46,114,101,102,114,101,115,104,73,110,100,101,116,101,114,109,105,110,97,116,101,83,116,97,116,101,40,41,44,101,33,61,61,116,104,105,115,46,115,116,97,116,101,40,34,105,110,100,101,116,101,114,109,105,110,97,116,101,34,41,38,38,116,104,105,115,46,109,97,114,107,68,105,114,116,121,40,41,44,116,104,105,115,125,125,44,123,107,101,121,58,34,114,101,108,111,97,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,110,61,116,104,105,115,59,114,101,116,117,114,110,32,110,101,119,32,102,40,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,102,40,33,110,46,97,108,108,111,119,68,121,110,97,109,105,99,76,111,97,100,40,41,41,114,101,116,117,114,110,32,116,40,110,101,119,32,69,114,114,111,114,40,34,78,111,100,101,32,111,114,32,116,114,101,101,32,100,111,101,115,32,110,111,116,32,115,117,112,112,111,114,116,32,100,121,110,97,109,105,99,32,99,104,105,108,100,114,101,110,46,34,41,41,59,110,46,99,104,105,108,100,114,101,110,61,33,48,44,110,46,99,111,108,108,97,112,115,101,40,41,44,110,46,108,111,97,100,67,104,105,108,100,114,101,110,40,41,46,116,104,101,110,40,101,41,46,99,97,116,99,104,40,116,41,125,41,125,125,44,123,107,101,121,58,34,114,101,109,111,118,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,48,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,38,38,118,111,105,100,32,48,33,61,61,101,38,38,101,44,110,61,116,104,105,115,46,103,101,116,80,97,114,101,110,116,40,41,59,116,104,105,115,46,99,111,110,116,101,120,116,40,41,46,114,101,109,111,118,101,40,116,104,105,115,41,44,110,38,38,40,110,46,114,101,102,114,101,115,104,73,110,100,101,116,101,114,109,105,110,97,116,101,83,116,97,116,101,40,41,44,110,46,109,97,114,107,68,105,114,116,121,40,41,41,44,40,110,63,110,46,112,97,103,105,110,97,116,105,111,110,40,41,58,116,104,105,115,46,95,116,114,101,101,46,112,97,103,105,110,97,116,105,111,110,40,41,41,46,116,111,116,97,108,45,45,59,118,97,114,32,105,61,116,104,105,115,46,116,111,79,98,106,101,99,116,40,33,49,44,116,41,59,114,101,116,117,114,110,32,116,104,105,115,46,95,116,114,101,101,46,101,109,105,116,40,34,110,111,100,101,46,114,101,109,111,118,101,100,34,44,105,44,110,41,44,116,104,105,115,46,99,111,110,116,101,120,116,40,41,46,97,112,112,108,121,67,104,97,110,103,101,115,40,41,44,105,125,125,44,123,107,101,121,58,34,114,101,109,111,118,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,115,116,97,116,101,40,34,114,101,109,111,118,101,100,34,41,125,125,44,123,107,101,121,58,34,114,101,110,100,101,114,97,98,108,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,33,116,104,105,115,46,104,105,100,100,101,110,40,41,38,38,33,116,104,105,115,46,114,101,109,111,118,101,100,40,41,125,125,44,123,107,101,121,58,34,114,101,110,100,101,114,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,115,116,97,116,101,40,34,114,101,110,100,101,114,101,100,34,41,125,125,44,123,107,101,121,58,34,114,101,115,116,111,114,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,111,40,34,114,101,109,111,118,101,100,34,44,33,49,44,34,114,101,115,116,111,114,101,100,34,44,116,104,105,115,41,125,125,44,123,107,101,121,58,34,115,101,108,101,99,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,105,102,40,33,116,104,105,115,46,115,101,108,101,99,116,101,100,40,41,38,38,116,104,105,115,46,115,101,108,101,99,116,97,98,108,101,40,41,41,123,105,102,40,116,104,105,115,46,95,116,114,101,101,46,98,97,116,99,104,40,41,44,116,104,105,115,46,95,116,114,101,101,46,99,97,110,65,117,116,111,68,101,115,101,108,101,99,116,40,41,41,123,118,97,114,32,116,61,116,104,105,115,46,95,116,114,101,101,46,99,111,110,102,105,103,46,115,101,108,101,99,116,105,111,110,46,114,101,113,117,105,114,101,59,116,104,105,115,46,95,116,114,101,101,46,99,111,110,102,105,103,46,115,101,108,101,99,116,105,111,110,46,114,101,113,117,105,114,101,61,33,49,44,116,104,105,115,46,95,116,114,101,101,46,100,101,115,101,108,101,99,116,68,101,101,112,40,41,44,116,104,105,115,46,95,116,114,101,101,46,99,111,110,102,105,103,46,115,101,108,101,99,116,105,111,110,46,114,101,113,117,105,114,101,61,116,125,111,40,34,115,101,108,101,99,116,101,100,34,44,33,48,44,34,115,101,108,101,99,116,101,100,34,44,116,104,105,115,44,33,101,38,38,116,104,105,115,46,95,116,114,101,101,46,99,111,110,102,105,103,46,115,101,108,101,99,116,105,111,110,46,97,117,116,111,83,101,108,101,99,116,67,104,105,108,100,114,101,110,41,44,40,116,104,105,115,46,95,116,114,101,101,46,95,108,97,115,116,83,101,108,101,99,116,101,100,78,111,100,101,61,116,104,105,115,41,46,109,97,114,107,68,105,114,116,121,40,41,44,116,104,105,115,46,95,116,114,101,101,46,101,110,100,40,41,125,114,101,116,117,114,110,32,116,104,105,115,125,125,44,123,107,101,121,58,34,115,101,108,101,99,116,97,98,108,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,95,116,114,101,101,46,99,111,110,102,105,103,46,115,101,108,101,99,116,105,111,110,46,97,108,108,111,119,40,116,104,105,115,41,59,114,101,116,117,114,110,34,98,111,111,108,101,97,110,34,61,61,116,121,112,101,111,102,32,101,63,101,58,116,104,105,115,46,115,116,97,116,101,40,34,115,101,108,101,99,116,97,98,108,101,34,41,125,125,44,123,107,101,121,58,34,115,101,108,101,99,116,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,115,116,97,116,101,40,34,115,101,108,101,99,116,101,100,34,41,125,125,44,123,107,101,121,58,34,115,101,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,116,104,105,115,91,101,93,61,116,44,116,104,105,115,46,109,97,114,107,68,105,114,116,121,40,41,44,116,104,105,115,46,99,111,110,116,101,120,116,40,41,46,97,112,112,108,121,67,104,97,110,103,101,115,40,41,44,116,104,105,115,125,125,44,123,107,101,121,58,34,115,104,111,119,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,111,40,34,104,105,100,100,101,110,34,44,33,49,44,34,115,104,111,119,110,34,44,116,104,105,115,41,125,125,44,123,107,101,121,58,34,115,111,102,116,82,101,109,111,118,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,111,40,34,114,101,109,111,118,101,100,34,44,33,48,44,34,115,111,102,116,114,101,109,111,118,101,100,34,44,116,104,105,115,44,34,115,111,102,116,82,101,109,111,118,101,34,41,125,125,44,123,107,101,121,58,34,115,116,97,116,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,61,116,104,105,115,59,105,102,40,99,46,105,115,83,116,114,105,110,103,40,101,41,41,114,101,116,117,114,110,32,98,40,116,104,105,115,44,101,44,116,41,59,116,104,105,115,46,99,111,110,116,101,120,116,40,41,46,98,97,116,99,104,40,41,59,118,97,114,32,105,61,123,125,59,114,101,116,117,114,110,32,99,46,101,97,99,104,40,101,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,91,116,93,61,98,40,110,44,116,44,101,41,125,41,44,116,104,105,115,46,99,111,110,116,101,120,116,40,41,46,101,110,100,40,41,44,105,125,125,44,123,107,101,121,58,34,115,116,97,116,101,115,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,61,116,104,105,115,44,105,61,91,93,59,114,101,116,117,114,110,32,116,104,105,115,46,99,111,110,116,101,120,116,40,41,46,98,97,116,99,104,40,41,44,99,46,101,97,99,104,40,101,44,102,117,110,99,116,105,111,110,40,101,41,123,105,46,112,117,115,104,40,110,46,115,116,97,116,101,40,101,44,116,41,41,125,41,44,116,104,105,115,46,99,111,110,116,101,120,116,40,41,46,101,110,100,40,41,44,105,125,125,44,123,107,101,121,58,34,115,119,97,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,99,111,110,116,101,120,116,40,41,46,115,119,97,112,40,116,104,105,115,44,101,41,44,116,104,105,115,125,125,44,123,107,101,121,58,34,116,111,103,103,108,101,67,104,101,99,107,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,99,104,101,99,107,101,100,40,41,63,116,104,105,115,46,117,110,99,104,101,99,107,40,41,58,116,104,105,115,46,99,104,101,99,107,40,41,125,125,44,123,107,101,121,58,34,116,111,103,103,108,101,67,111,108,108,97,112,115,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,99,111,108,108,97,112,115,101,100,40,41,63,116,104,105,115,46,101,120,112,97,110,100,40,41,58,116,104,105,115,46,99,111,108,108,97,112,115,101,40,41,125,125,44,123,107,101,121,58,34,116,111,103,103,108,101,69,100,105,116,105,110,103,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,115,116,97,116,101,40,34,101,100,105,116,105,110,103,34,44,33,116,104,105,115,46,115,116,97,116,101,40,34,101,100,105,116,105,110,103,34,41,41,44,116,104,105,115,46,109,97,114,107,68,105,114,116,121,40,41,44,116,104,105,115,46,99,111,110,116,101,120,116,40,41,46,97,112,112,108,121,67,104,97,110,103,101,115,40,41,44,116,104,105,115,125,125,44,123,107,101,121,58,34,116,111,103,103,108,101,83,101,108,101,99,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,115,101,108,101,99,116,101,100,40,41,63,116,104,105,115,46,100,101,115,101,108,101,99,116,40,41,58,116,104,105,115,46,115,101,108,101,99,116,40,41,125,125,44,123,107,101,121,58,34,116,111,79,98,106,101,99,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,61,116,104,105,115,44,105,61,48,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,38,38,118,111,105,100,32,48,33,61,61,101,38,38,101,44,114,61,49,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,38,38,118,111,105,100,32,48,33,61,61,116,38,38,116,44,115,61,123,125,44,111,61,99,46,112,117,108,108,40,79,98,106,101,99,116,46,107,101,121,115,40,116,104,105,115,41,44,34,95,116,114,101,101,34,44,34,99,104,105,108,100,114,101,110,34,44,34,105,116,114,101,101,34,41,59,99,46,101,97,99,104,40,111,44,102,117,110,99,116,105,111,110,40,101,41,123,115,91,101,93,61,110,91,101,93,125,41,59,118,97,114,32,97,61,115,46,105,116,114,101,101,61,123,125,59,114,101,116,117,114,110,32,97,46,97,61,116,104,105,115,46,105,116,114,101,101,46,97,44,97,46,105,99,111,110,61,116,104,105,115,46,105,116,114,101,101,46,105,99,111,110,44,97,46,108,105,61,116,104,105,115,46,105,116,114,101,101,46,108,105,44,114,38,38,40,97,46,115,116,97,116,101,61,116,104,105,115,46,105,116,114,101,101,46,115,116,97,116,101,41,44,33,105,38,38,116,104,105,115,46,104,97,115,67,104,105,108,100,114,101,110,40,41,38,38,99,46,105,115,70,117,110,99,116,105,111,110,40,116,104,105,115,46,99,104,105,108,100,114,101,110,46,116,111,65,114,114,97,121,41,38,38,40,115,46,99,104,105,108,100,114,101,110,61,116,104,105,115,46,99,104,105,108,100,114,101,110,46,116,111,65,114,114,97,121,40,41,41,44,115,125,125,44,123,107,101,121,58,34,116,111,83,116,114,105,110,103,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,116,101,120,116,125,125,44,123,107,101,121,58,34,116,114,101,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,99,111,110,116,101,120,116,40,41,46,116,114,101,101,40,41,125,125,44,123,107,101,121,58,34,117,110,99,104,101,99,107,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,116,114,101,101,46,98,97,116,99,104,40,41,44,111,40,34,99,104,101,99,107,101,100,34,44,33,49,44,34,117,110,99,104,101,99,107,101,100,34,44,116,104,105,115,44,33,101,38,38,116,104,105,115,46,95,116,114,101,101,46,99,111,110,102,105,103,46,99,104,101,99,107,98,111,120,46,97,117,116,111,67,104,101,99,107,67,104,105,108,100,114,101,110,41,44,116,104,105,115,46,115,116,97,116,101,40,34,105,110,100,101,116,101,114,109,105,110,97,116,101,34,44,33,49,41,44,116,104,105,115,46,104,97,115,80,97,114,101,110,116,40,41,38,38,116,104,105,115,46,103,101,116,80,97,114,101,110,116,40,41,46,114,101,102,114,101,115,104,73,110,100,101,116,101,114,109,105,110,97,116,101,83,116,97,116,101,40,41,44,116,104,105,115,46,95,116,114,101,101,46,101,110,100,40,41,44,116,104,105,115,125,125,44,123,107,101,121,58,34,118,105,115,105,98,108,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,33,40,116,104,105,115,46,104,105,100,100,101,110,40,41,124,124,116,104,105,115,46,114,101,109,111,118,101,100,40,41,124,124,116,104,105,115,46,95,116,114,101,101,46,117,115,101,115,78,97,116,105,118,101,68,79,77,38,38,33,116,104,105,115,46,114,101,110,100,101,114,101,100,40,41,41,38,38,40,33,116,104,105,115,46,104,97,115,80,97,114,101,110,116,40,41,124,124,33,116,104,105,115,46,103,101,116,80,97,114,101,110,116,40,41,46,99,111,108,108,97,112,115,101,100,40,41,38,38,116,104,105,115,46,103,101,116,80,97,114,101,110,116,40,41,46,118,105,115,105,98,108,101,40,41,41,125,125,93,41,44,114,125,40,41,44,120,61,100,40,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,99,114,121,112,116,111,38,38,99,114,121,112,116,111,46,103,101,116,82,97,110,100,111,109,86,97,108,117,101,115,38,38,99,114,121,112,116,111,46,103,101,116,82,97,110,100,111,109,86,97,108,117,101,115,46,98,105,110,100,40,99,114,121,112,116,111,41,124,124,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,109,115,67,114,121,112,116,111,38,38,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,119,105,110,100,111,119,46,109,115,67,114,121,112,116,111,46,103,101,116,82,97,110,100,111,109,86,97,108,117,101,115,38,38,109,115,67,114,121,112,116,111,46,103,101,116,82,97,110,100,111,109,86,97,108,117,101,115,46,98,105,110,100,40,109,115,67,114,121,112,116,111,41,59,105,102,40,116,41,123,118,97,114,32,110,61,110,101,119,32,85,105,110,116,56,65,114,114,97,121,40,49,54,41,59,101,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,40,110,41,44,110,125,125,101,108,115,101,123,118,97,114,32,105,61,110,101,119,32,65,114,114,97,121,40,49,54,41,59,101,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,118,97,114,32,101,44,116,61,48,59,116,60,49,54,59,116,43,43,41,48,61,61,40,51,38,116,41,38,38,40,101,61,52,50,57,52,57,54,55,50,57,54,42,77,97,116,104,46,114,97,110,100,111,109,40,41,41,44,105,91,116,93,61,101,62,62,62,40,40,51,38,116,41,60,60,51,41,38,50,53,53,59,114,101,116,117,114,110,32,105,125,125,125,41,44,68,61,91,93,44,65,61,48,59,65,60,50,53,54,59,43,43,65,41,68,91,65,93,61,40,65,43,50,53,54,41,46,116,111,83,116,114,105,110,103,40,49,54,41,46,115,117,98,115,116,114,40,49,41,59,118,97,114,32,76,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,61,116,124,124,48,44,105,61,68,59,114,101,116,117,114,110,91,105,91,101,91,110,43,43,93,93,44,105,91,101,91,110,43,43,93,93,44,105,91,101,91,110,43,43,93,93,44,105,91,101,91,110,43,43,93,93,44,34,45,34,44,105,91,101,91,110,43,43,93,93,44,105,91,101,91,110,43,43,93,93,44,34,45,34,44,105,91,101,91,110,43,43,93,93,44,105,91,101,91,110,43,43,93,93,44,34,45,34,44,105,91,101,91,110,43,43,93,93,44,105,91,101,91,110,43,43,93,93,44,34,45,34,44,105,91,101,91,110,43,43,93,93,44,105,91,101,91,110,43,43,93,93,44,105,91,101,91,110,43,43,93,93,44,105,91,101,91,110,43,43,93,93,44,105,91,101,91,110,43,43,93,93,44,105,91,101,91,110,43,43,93,93,93,46,106,111,105,110,40,34,34,41,125,59,118,97,114,32,80,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,105,61,116,38,38,110,124,124,48,59,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,101,38,38,40,116,61,34,98,105,110,97,114,121,34,61,61,61,101,63,110,101,119,32,65,114,114,97,121,40,49,54,41,58,110,117,108,108,44,101,61,110,117,108,108,41,59,118,97,114,32,114,61,40,101,61,101,124,124,123,125,41,46,114,97,110,100,111,109,124,124,40,101,46,114,110,103,124,124,120,41,40,41,59,105,102,40,114,91,54,93,61,49,53,38,114,91,54,93,124,54,52,44,114,91,56,93,61,54,51,38,114,91,56,93,124,49,50,56,44,116,41,102,111,114,40,118,97,114,32,115,61,48,59,115,60,49,54,59,43,43,115,41,116,91,105,43,115,93,61,114,91,115,93,59,114,101,116,117,114,110,32,116,124,124,76,40,114,41,125,59,102,117,110,99,116,105,111,110,32,67,40,116,44,110,44,101,41,123,110,46,105,100,61,110,46,105,100,124,124,80,40,41,44,34,115,116,114,105,110,103,34,33,61,116,121,112,101,111,102,32,110,46,105,100,38,38,34,110,117,109,98,101,114,34,33,61,116,121,112,101,111,102,32,110,46,105,100,38,38,40,110,46,105,100,61,110,46,105,100,46,116,111,83,116,114,105,110,103,40,41,41,59,118,97,114,32,105,61,110,46,105,116,114,101,101,61,110,46,105,116,114,101,101,124,124,123,125,59,105,46,105,99,111,110,61,105,46,105,99,111,110,124,124,33,49,44,105,46,100,105,114,116,121,61,33,49,59,118,97,114,32,114,61,105,46,108,105,61,105,46,108,105,124,124,123,125,59,114,46,97,116,116,114,105,98,117,116,101,115,61,114,46,97,116,116,114,105,98,117,116,101,115,124,124,123,125,59,118,97,114,32,115,61,105,46,97,61,105,46,97,124,124,123,125,59,115,46,97,116,116,114,105,98,117,116,101,115,61,115,46,97,116,116,114,105,98,117,116,101,115,124,124,123,125,59,118,97,114,32,111,61,105,46,115,116,97,116,101,61,105,46,115,116,97,116,101,124,124,123,125,59,114,101,116,117,114,110,32,111,46,99,111,108,108,97,112,115,101,100,61,34,98,111,111,108,101,97,110,34,61,61,116,121,112,101,111,102,32,111,46,99,111,108,108,97,112,115,101,100,63,111,46,99,111,108,108,97,112,115,101,100,58,116,46,100,101,102,97,117,108,116,83,116,97,116,101,46,99,111,108,108,97,112,115,101,100,44,111,46,115,101,108,101,99,116,97,98,108,101,61,34,98,111,111,108,101,97,110,34,61,61,116,121,112,101,111,102,32,111,46,115,101,108,101,99,116,97,98,108,101,63,111,46,115,101,108,101,99,116,97,98,108,101,58,116,46,100,101,102,97,117,108,116,83,116,97,116,101,46,115,101,108,101,99,116,97,98,108,101,44,111,46,100,114,97,103,103,97,98,108,101,61,34,98,111,111,108,101,97,110,34,61,61,116,121,112,101,111,102,32,111,46,100,114,97,103,103,97,98,108,101,63,111,46,100,114,97,103,103,97,98,108,101,58,116,46,100,101,102,97,117,108,116,83,116,97,116,101,46,100,114,97,103,103,97,98,108,101,44,111,91,34,100,114,111,112,45,116,97,114,103,101,116,34,93,61,34,98,111,111,108,101,97,110,34,61,61,116,121,112,101,111,102,32,111,91,34,100,114,111,112,45,116,97,114,103,101,116,34,93,63,111,91,34,100,114,111,112,45,116,97,114,103,101,116,34,93,58,116,46,100,101,102,97,117,108,116,83,116,97,116,101,91,34,100,114,111,112,45,116,97,114,103,101,116,34,93,44,111,46,99,104,101,99,107,101,100,61,34,98,111,111,108,101,97,110,34,61,61,116,121,112,101,111,102,32,111,46,99,104,101,99,107,101,100,38,38,111,46,99,104,101,99,107,101,100,44,111,46,101,100,105,116,97,98,108,101,61,34,98,111,111,108,101,97,110,34,61,61,116,121,112,101,111,102,32,111,46,101,100,105,116,97,98,108,101,63,111,46,101,100,105,116,97,98,108,101,58,116,46,100,101,102,97,117,108,116,83,116,97,116,101,46,101,100,105,116,97,98,108,101,44,111,46,101,100,105,116,105,110,103,61,34,98,111,111,108,101,97,110,34,61,61,116,121,112,101,111,102,32,111,46,101,100,105,116,105,110,103,63,111,46,101,100,105,116,105,110,103,58,116,46,100,101,102,97,117,108,116,83,116,97,116,101,46,101,100,105,116,105,110,103,44,111,46,102,111,99,117,115,101,100,61,111,46,102,111,99,117,115,101,100,124,124,116,46,100,101,102,97,117,108,116,83,116,97,116,101,46,102,111,99,117,115,101,100,44,111,46,104,105,100,100,101,110,61,111,46,104,105,100,100,101,110,124,124,116,46,100,101,102,97,117,108,116,83,116,97,116,101,46,104,105,100,100,101,110,44,111,46,105,110,100,101,116,101,114,109,105,110,97,116,101,61,111,46,105,110,100,101,116,101,114,109,105,110,97,116,101,124,124,116,46,100,101,102,97,117,108,116,83,116,97,116,101,46,105,110,100,101,116,101,114,109,105,110,97,116,101,44,111,46,108,111,97,100,105,110,103,61,111,46,108,111,97,100,105,110,103,124,124,116,46,100,101,102,97,117,108,116,83,116,97,116,101,46,108,111,97,100,105,110,103,44,111,46,114,101,109,111,118,101,100,61,111,46,114,101,109,111,118,101,100,124,124,116,46,100,101,102,97,117,108,116,83,116,97,116,101,46,114,101,109,111,118,101,100,44,111,46,114,101,110,100,101,114,101,100,61,111,46,114,101,110,100,101,114,101,100,124,124,116,46,100,101,102,97,117,108,116,83,116,97,116,101,46,114,101,110,100,101,114,101,100,44,111,46,115,101,108,101,99,116,101,100,61,111,46,115,101,108,101,99,116,101,100,124,124,116,46,100,101,102,97,117,108,116,83,116,97,116,101,46,115,101,108,101,99,116,101,100,44,110,46,105,116,114,101,101,46,112,97,114,101,110,116,61,101,44,110,61,99,46,97,115,115,105,103,110,40,110,101,119,32,119,40,116,41,44,110,41,44,99,46,105,115,65,114,114,97,121,76,105,107,101,40,110,46,99,104,105,108,100,114,101,110,41,38,38,40,110,46,99,104,105,108,100,114,101,110,61,83,40,116,44,110,46,99,104,105,108,100,114,101,110,44,110,41,41,44,116,46,97,108,108,111,119,115,76,111,97,100,69,118,101,110,116,115,38,38,99,46,101,97,99,104,40,116,46,99,111,110,102,105,103,46,97,108,108,111,119,76,111,97,100,69,118,101,110,116,115,44,102,117,110,99,116,105,111,110,40,101,41,123,111,91,101,93,38,38,116,46,101,109,105,116,40,34,110,111,100,101,46,34,43,101,44,110,44,33,48,41,125,41,44,110,125,102,117,110,99,116,105,111,110,32,83,40,116,44,101,44,110,41,123,118,97,114,32,105,61,110,101,119,32,103,40,116,44,110,117,108,108,44,123,99,97,108,99,117,108,97,116,101,82,101,110,100,101,114,97,98,108,101,80,111,115,105,116,105,111,110,115,58,33,48,125,41,59,114,101,116,117,114,110,32,105,46,98,97,116,99,104,40,41,44,116,46,99,111,110,102,105,103,46,115,111,114,116,38,38,40,101,61,99,46,115,111,114,116,66,121,40,101,44,116,46,99,111,110,102,105,103,46,115,111,114,116,41,41,44,99,46,101,97,99,104,40,101,44,102,117,110,99,116,105,111,110,40,101,41,123,105,46,112,117,115,104,40,67,40,116,44,101,44,110,41,41,125,41,44,105,46,95,99,111,110,116,101,120,116,61,110,44,105,46,101,110,100,40,41,44,105,125,118,97,114,32,79,61,100,40,102,117,110,99,116,105,111,110,40,101,44,116,41,123,102,117,110,99,116,105,111,110,32,117,40,41,123,116,104,105,115,46,95,101,118,101,110,116,115,61,123,125,44,116,104,105,115,46,95,99,111,110,102,38,38,110,46,99,97,108,108,40,116,104,105,115,44,116,104,105,115,46,95,99,111,110,102,41,125,102,117,110,99,116,105,111,110,32,110,40,101,41,123,101,63,40,40,116,104,105,115,46,95,99,111,110,102,61,101,41,46,100,101,108,105,109,105,116,101,114,38,38,40,116,104,105,115,46,100,101,108,105,109,105,116,101,114,61,101,46,100,101,108,105,109,105,116,101,114,41,44,116,104,105,115,46,95,109,97,120,76,105,115,116,101,110,101,114,115,61,101,46,109,97,120,76,105,115,116,101,110,101,114,115,33,61,61,108,63,101,46,109,97,120,76,105,115,116,101,110,101,114,115,58,114,44,101,46,119,105,108,100,99,97,114,100,38,38,40,116,104,105,115,46,119,105,108,100,99,97,114,100,61,101,46,119,105,108,100,99,97,114,100,41,44,101,46,110,101,119,76,105,115,116,101,110,101,114,38,38,40,116,104,105,115,46,95,110,101,119,76,105,115,116,101,110,101,114,61,101,46,110,101,119,76,105,115,116,101,110,101,114,41,44,101,46,114,101,109,111,118,101,76,105,115,116,101,110,101,114,38,38,40,116,104,105,115,46,95,114,101,109,111,118,101,76,105,115,116,101,110,101,114,61,101,46,114,101,109,111,118,101,76,105,115,116,101,110,101,114,41,44,101,46,118,101,114,98,111,115,101,77,101,109,111,114,121,76,101,97,107,38,38,40,116,104,105,115,46,118,101,114,98,111,115,101,77,101,109,111,114,121,76,101,97,107,61,101,46,118,101,114,98,111,115,101,77,101,109,111,114,121,76,101,97,107,41,44,116,104,105,115,46,119,105,108,100,99,97,114,100,38,38,40,116,104,105,115,46,108,105,115,116,101,110,101,114,84,114,101,101,61,123,125,41,41,58,116,104,105,115,46,95,109,97,120,76,105,115,116,101,110,101,114,115,61,114,125,102,117,110,99,116,105,111,110,32,111,40,101,44,116,41,123,118,97,114,32,110,61,34,40,110,111,100,101,41,32,119,97,114,110,105,110,103,58,32,112,111,115,115,105,98,108,101,32,69,118,101,110,116,69,109,105,116,116,101,114,32,109,101,109,111,114,121,32,108,101,97,107,32,100,101,116,101,99,116,101,100,46,32,34,43,101,43,34,32,108,105,115,116,101,110,101,114,115,32,97,100,100,101,100,46,32,85,115,101,32,101,109,105,116,116,101,114,46,115,101,116,77,97,120,76,105,115,116,101,110,101,114,115,40,41,32,116,111,32,105,110,99,114,101,97,115,101,32,108,105,109,105,116,46,34,59,105,102,40,116,104,105,115,46,118,101,114,98,111,115,101,77,101,109,111,114,121,76,101,97,107,38,38,40,110,43,61,34,32,69,118,101,110,116,32,110,97,109,101,58,32,34,43,116,43,34,46,34,41,44,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,112,114,111,99,101,115,115,38,38,112,114,111,99,101,115,115,46,101,109,105,116,87,97,114,110,105,110,103,41,123,118,97,114,32,105,61,110,101,119,32,69,114,114,111,114,40,110,41,59,105,46,110,97,109,101,61,34,77,97,120,76,105,115,116,101,110,101,114,115,69,120,99,101,101,100,101,100,87,97,114,110,105,110,103,34,44,105,46,101,109,105,116,116,101,114,61,116,104,105,115,44,105,46,99,111,117,110,116,61,101,44,112,114,111,99,101,115,115,46,101,109,105,116,87,97,114,110,105,110,103,40,105,41,125,101,108,115,101,32,99,111,110,115,111,108,101,46,101,114,114,111,114,40,110,41,44,99,111,110,115,111,108,101,46,116,114,97,99,101,38,38,99,111,110,115,111,108,101,46,116,114,97,99,101,40,41,125,102,117,110,99,116,105,111,110,32,105,40,101,41,123,116,104,105,115,46,95,101,118,101,110,116,115,61,123,125,44,116,104,105,115,46,95,110,101,119,76,105,115,116,101,110,101,114,61,33,49,44,116,104,105,115,46,95,114,101,109,111,118,101,76,105,115,116,101,110,101,114,61,33,49,44,116,104,105,115,46,118,101,114,98,111,115,101,77,101,109,111,114,121,76,101,97,107,61,33,49,44,110,46,99,97,108,108,40,116,104,105,115,44,101,41,125,102,117,110,99,116,105,111,110,32,121,40,101,44,116,44,110,44,105,41,123,105,102,40,33,110,41,114,101,116,117,114,110,91,93,59,118,97,114,32,114,44,115,44,111,44,97,44,99,44,117,44,108,44,104,61,91,93,44,100,61,116,46,108,101,110,103,116,104,44,102,61,116,91,105,93,44,118,61,116,91,105,43,49,93,59,105,102,40,105,61,61,61,100,38,38,110,46,95,108,105,115,116,101,110,101,114,115,41,123,105,102,40,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,110,46,95,108,105,115,116,101,110,101,114,115,41,114,101,116,117,114,110,32,101,38,38,101,46,112,117,115,104,40,110,46,95,108,105,115,116,101,110,101,114,115,41,44,91,110,93,59,102,111,114,40,114,61,48,44,115,61,110,46,95,108,105,115,116,101,110,101,114,115,46,108,101,110,103,116,104,59,114,60,115,59,114,43,43,41,101,38,38,101,46,112,117,115,104,40,110,46,95,108,105,115,116,101,110,101,114,115,91,114,93,41,59,114,101,116,117,114,110,91,110,93,125,105,102,40,34,42,34,61,61,61,102,124,124,34,42,42,34,61,61,61,102,124,124,110,91,102,93,41,123,105,102,40,34,42,34,61,61,61,102,41,123,102,111,114,40,111,32,105,110,32,110,41,34,95,108,105,115,116,101,110,101,114,115,34,33,61,61,111,38,38,110,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,111,41,38,38,40,104,61,104,46,99,111,110,99,97,116,40,121,40,101,44,116,44,110,91,111,93,44,105,43,49,41,41,41,59,114,101,116,117,114,110,32,104,125,105,102,40,34,42,42,34,61,61,61,102,41,123,102,111,114,40,111,32,105,110,40,108,61,105,43,49,61,61,61,100,124,124,105,43,50,61,61,61,100,38,38,34,42,34,61,61,61,118,41,38,38,110,46,95,108,105,115,116,101,110,101,114,115,38,38,40,104,61,104,46,99,111,110,99,97,116,40,121,40,101,44,116,44,110,44,100,41,41,41,44,110,41,34,95,108,105,115,116,101,110,101,114,115,34,33,61,61,111,38,38,110,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,111,41,38,38,40,104,61,34,42,34,61,61,61,111,124,124,34,42,42,34,61,61,61,111,63,40,110,91,111,93,46,95,108,105,115,116,101,110,101,114,115,38,38,33,108,38,38,40,104,61,104,46,99,111,110,99,97,116,40,121,40,101,44,116,44,110,91,111,93,44,100,41,41,41,44,104,46,99,111,110,99,97,116,40,121,40,101,44,116,44,110,91,111,93,44,105,41,41,41,58,111,61,61,61,118,63,104,46,99,111,110,99,97,116,40,121,40,101,44,116,44,110,91,111,93,44,105,43,50,41,41,58,104,46,99,111,110,99,97,116,40,121,40,101,44,116,44,110,91,111,93,44,105,41,41,41,59,114,101,116,117,114,110,32,104,125,104,61,104,46,99,111,110,99,97,116,40,121,40,101,44,116,44,110,91,102,93,44,105,43,49,41,41,125,105,102,40,40,97,61,110,91,34,42,34,93,41,38,38,121,40,101,44,116,44,97,44,105,43,49,41,44,99,61,110,91,34,42,42,34,93,41,105,102,40,105,60,100,41,102,111,114,40,111,32,105,110,32,99,46,95,108,105,115,116,101,110,101,114,115,38,38,121,40,101,44,116,44,99,44,100,41,44,99,41,34,95,108,105,115,116,101,110,101,114,115,34,33,61,61,111,38,38,99,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,111,41,38,38,40,111,61,61,61,118,63,121,40,101,44,116,44,99,91,111,93,44,105,43,50,41,58,111,61,61,61,102,63,121,40,101,44,116,44,99,91,111,93,44,105,43,49,41,58,40,40,117,61,123,125,41,91,111,93,61,99,91,111,93,44,121,40,101,44,116,44,123,34,42,42,34,58,117,125,44,105,43,49,41,41,41,59,101,108,115,101,32,99,46,95,108,105,115,116,101,110,101,114,115,63,121,40,101,44,116,44,99,44,100,41,58,99,91,34,42,34,93,38,38,99,91,34,42,34,93,46,95,108,105,115,116,101,110,101,114,115,38,38,121,40,101,44,116,44,99,91,34,42,34,93,44,100,41,59,114,101,116,117,114,110,32,104,125,118,97,114,32,108,44,104,44,114,59,104,61,65,114,114,97,121,46,105,115,65,114,114,97,121,63,65,114,114,97,121,46,105,115,65,114,114,97,121,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,34,91,111,98,106,101,99,116,32,65,114,114,97,121,93,34,61,61,61,79,98,106,101,99,116,46,112,114,111,116,111,116,121,112,101,46,116,111,83,116,114,105,110,103,46,99,97,108,108,40,101,41,125,44,114,61,49,48,44,40,105,46,69,118,101,110,116,69,109,105,116,116,101,114,50,61,105,41,46,112,114,111,116,111,116,121,112,101,46,100,101,108,105,109,105,116,101,114,61,34,46,34,44,105,46,112,114,111,116,111,116,121,112,101,46,115,101,116,77,97,120,76,105,115,116,101,110,101,114,115,61,102,117,110,99,116,105,111,110,40,101,41,123,101,33,61,61,108,38,38,40,116,104,105,115,46,95,109,97,120,76,105,115,116,101,110,101,114,115,61,101,44,116,104,105,115,46,95,99,111,110,102,124,124,40,116,104,105,115,46,95,99,111,110,102,61,123,125,41,44,116,104,105,115,46,95,99,111,110,102,46,109,97,120,76,105,115,116,101,110,101,114,115,61,101,41,125,44,105,46,112,114,111,116,111,116,121,112,101,46,101,118,101,110,116,61,34,34,44,105,46,112,114,111,116,111,116,121,112,101,46,111,110,99,101,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,111,110,99,101,40,101,44,116,44,33,49,41,125,44,105,46,112,114,111,116,111,116,121,112,101,46,112,114,101,112,101,110,100,79,110,99,101,76,105,115,116,101,110,101,114,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,111,110,99,101,40,101,44,116,44,33,48,41,125,44,105,46,112,114,111,116,111,116,121,112,101,46,95,111,110,99,101,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,109,97,110,121,40,101,44,49,44,116,44,110,41,44,116,104,105,115,125,44,105,46,112,114,111,116,111,116,121,112,101,46,109,97,110,121,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,109,97,110,121,40,101,44,116,44,110,44,33,49,41,125,44,105,46,112,114,111,116,111,116,121,112,101,46,112,114,101,112,101,110,100,77,97,110,121,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,109,97,110,121,40,101,44,116,44,110,44,33,48,41,125,44,105,46,112,114,111,116,111,116,121,112,101,46,95,109,97,110,121,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,105,41,123,118,97,114,32,114,61,116,104,105,115,59,105,102,40,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,110,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,109,97,110,121,32,111,110,108,121,32,97,99,99,101,112,116,115,32,105,110,115,116,97,110,99,101,115,32,111,102,32,70,117,110,99,116,105,111,110,34,41,59,102,117,110,99,116,105,111,110,32,115,40,41,123,114,101,116,117,114,110,32,48,61,61,45,45,116,38,38,114,46,111,102,102,40,101,44,115,41,44,110,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,125,114,101,116,117,114,110,32,115,46,95,111,114,105,103,105,110,61,110,44,116,104,105,115,46,95,111,110,40,101,44,115,44,105,41,44,114,125,44,105,46,112,114,111,116,111,116,121,112,101,46,101,109,105,116,61,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,101,118,101,110,116,115,124,124,117,46,99,97,108,108,40,116,104,105,115,41,59,118,97,114,32,101,61,97,114,103,117,109,101,110,116,115,91,48,93,59,105,102,40,34,110,101,119,76,105,115,116,101,110,101,114,34,61,61,61,101,38,38,33,116,104,105,115,46,95,110,101,119,76,105,115,116,101,110,101,114,38,38,33,116,104,105,115,46,95,101,118,101,110,116,115,46,110,101,119,76,105,115,116,101,110,101,114,41,114,101,116,117,114,110,33,49,59,118,97,114,32,116,44,110,44,105,44,114,44,115,44,111,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,105,102,40,116,104,105,115,46,95,97,108,108,38,38,116,104,105,115,46,95,97,108,108,46,108,101,110,103,116,104,41,123,105,102,40,115,61,116,104,105,115,46,95,97,108,108,46,115,108,105,99,101,40,41,44,51,60,111,41,102,111,114,40,116,61,110,101,119,32,65,114,114,97,121,40,111,41,44,114,61,48,59,114,60,111,59,114,43,43,41,116,91,114,93,61,97,114,103,117,109,101,110,116,115,91,114,93,59,102,111,114,40,105,61,48,44,110,61,115,46,108,101,110,103,116,104,59,105,60,110,59,105,43,43,41,115,119,105,116,99,104,40,116,104,105,115,46,101,118,101,110,116,61,101,44,111,41,123,99,97,115,101,32,49,58,115,91,105,93,46,99,97,108,108,40,116,104,105,115,44,101,41,59,98,114,101,97,107,59,99,97,115,101,32,50,58,115,91,105,93,46,99,97,108,108,40,116,104,105,115,44,101,44,97,114,103,117,109,101,110,116,115,91,49,93,41,59,98,114,101,97,107,59,99,97,115,101,32,51,58,115,91,105,93,46,99,97,108,108,40,116,104,105,115,44,101,44,97,114,103,117,109,101,110,116,115,91,49,93,44,97,114,103,117,109,101,110,116,115,91,50,93,41,59,98,114,101,97,107,59,100,101,102,97,117,108,116,58,115,91,105,93,46,97,112,112,108,121,40,116,104,105,115,44,116,41,125,125,105,102,40,116,104,105,115,46,119,105,108,100,99,97,114,100,41,123,115,61,91,93,59,118,97,114,32,97,61,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,101,63,101,46,115,112,108,105,116,40,116,104,105,115,46,100,101,108,105,109,105,116,101,114,41,58,101,46,115,108,105,99,101,40,41,59,121,46,99,97,108,108,40,116,104,105,115,44,115,44,97,44,116,104,105,115,46,108,105,115,116,101,110,101,114,84,114,101,101,44,48,41,125,101,108,115,101,123,105,102,40,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,40,115,61,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,41,41,123,115,119,105,116,99,104,40,116,104,105,115,46,101,118,101,110,116,61,101,44,111,41,123,99,97,115,101,32,49,58,115,46,99,97,108,108,40,116,104,105,115,41,59,98,114,101,97,107,59,99,97,115,101,32,50,58,115,46,99,97,108,108,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,91,49,93,41,59,98,114,101,97,107,59,99,97,115,101,32,51,58,115,46,99,97,108,108,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,91,49,93,44,97,114,103,117,109,101,110,116,115,91,50,93,41,59,98,114,101,97,107,59,100,101,102,97,117,108,116,58,102,111,114,40,116,61,110,101,119,32,65,114,114,97,121,40,111,45,49,41,44,114,61,49,59,114,60,111,59,114,43,43,41,116,91,114,45,49,93,61,97,114,103,117,109,101,110,116,115,91,114,93,59,115,46,97,112,112,108,121,40,116,104,105,115,44,116,41,125,114,101,116,117,114,110,33,48,125,115,61,115,38,38,115,46,115,108,105,99,101,40,41,125,105,102,40,115,38,38,115,46,108,101,110,103,116,104,41,123,105,102,40,51,60,111,41,102,111,114,40,116,61,110,101,119,32,65,114,114,97,121,40,111,45,49,41,44,114,61,49,59,114,60,111,59,114,43,43,41,116,91,114,45,49,93,61,97,114,103,117,109,101,110,116,115,91,114,93,59,102,111,114,40,105,61,48,44,110,61,115,46,108,101,110,103,116,104,59,105,60,110,59,105,43,43,41,115,119,105,116,99,104,40,116,104,105,115,46,101,118,101,110,116,61,101,44,111,41,123,99,97,115,101,32,49,58,115,91,105,93,46,99,97,108,108,40,116,104,105,115,41,59,98,114,101,97,107,59,99,97,115,101,32,50,58,115,91,105,93,46,99,97,108,108,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,91,49,93,41,59,98,114,101,97,107,59,99,97,115,101,32,51,58,115,91,105,93,46,99,97,108,108,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,91,49,93,44,97,114,103,117,109,101,110,116,115,91,50,93,41,59,98,114,101,97,107,59,100,101,102,97,117,108,116,58,115,91,105,93,46,97,112,112,108,121,40,116,104,105,115,44,116,41,125,114,101,116,117,114,110,33,48,125,105,102,40,33,116,104,105,115,46,95,97,108,108,38,38,34,101,114,114,111,114,34,61,61,61,101,41,116,104,114,111,119,32,97,114,103,117,109,101,110,116,115,91,49,93,105,110,115,116,97,110,99,101,111,102,32,69,114,114,111,114,63,97,114,103,117,109,101,110,116,115,91,49,93,58,110,101,119,32,69,114,114,111,114,40,34,85,110,99,97,117,103,104,116,44,32,117,110,115,112,101,99,105,102,105,101,100,32,39,101,114,114,111,114,39,32,101,118,101,110,116,46,34,41,59,114,101,116,117,114,110,33,33,116,104,105,115,46,95,97,108,108,125,44,105,46,112,114,111,116,111,116,121,112,101,46,101,109,105,116,65,115,121,110,99,61,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,101,118,101,110,116,115,124,124,117,46,99,97,108,108,40,116,104,105,115,41,59,118,97,114,32,101,61,97,114,103,117,109,101,110,116,115,91,48,93,59,105,102,40,34,110,101,119,76,105,115,116,101,110,101,114,34,61,61,61,101,38,38,33,116,104,105,115,46,95,110,101,119,76,105,115,116,101,110,101,114,38,38,33,116,104,105,115,46,95,101,118,101,110,116,115,46,110,101,119,76,105,115,116,101,110,101,114,41,114,101,116,117,114,110,32,80,114,111,109,105,115,101,46,114,101,115,111,108,118,101,40,91,33,49,93,41,59,118,97,114,32,116,44,110,44,105,44,114,44,115,44,111,61,91,93,44,97,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,105,102,40,116,104,105,115,46,95,97,108,108,41,123,105,102,40,51,60,97,41,102,111,114,40,116,61,110,101,119,32,65,114,114,97,121,40,97,41,44,114,61,49,59,114,60,97,59,114,43,43,41,116,91,114,93,61,97,114,103,117,109,101,110,116,115,91,114,93,59,102,111,114,40,105,61,48,44,110,61,116,104,105,115,46,95,97,108,108,46,108,101,110,103,116,104,59,105,60,110,59,105,43,43,41,115,119,105,116,99,104,40,116,104,105,115,46,101,118,101,110,116,61,101,44,97,41,123,99,97,115,101,32,49,58,111,46,112,117,115,104,40,116,104,105,115,46,95,97,108,108,91,105,93,46,99,97,108,108,40,116,104,105,115,44,101,41,41,59,98,114,101,97,107,59,99,97,115,101,32,50,58,111,46,112,117,115,104,40,116,104,105,115,46,95,97,108,108,91,105,93,46,99,97,108,108,40,116,104,105,115,44,101,44,97,114,103,117,109,101,110,116,115,91,49,93,41,41,59,98,114,101,97,107,59,99,97,115,101,32,51,58,111,46,112,117,115,104,40,116,104,105,115,46,95,97,108,108,91,105,93,46,99,97,108,108,40,116,104,105,115,44,101,44,97,114,103,117,109,101,110,116,115,91,49,93,44,97,114,103,117,109,101,110,116,115,91,50,93,41,41,59,98,114,101,97,107,59,100,101,102,97,117,108,116,58,111,46,112,117,115,104,40,116,104,105,115,46,95,97,108,108,91,105,93,46,97,112,112,108,121,40,116,104,105,115,44,116,41,41,125,125,105,102,40,116,104,105,115,46,119,105,108,100,99,97,114,100,41,123,115,61,91,93,59,118,97,114,32,99,61,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,101,63,101,46,115,112,108,105,116,40,116,104,105,115,46,100,101,108,105,109,105,116,101,114,41,58,101,46,115,108,105,99,101,40,41,59,121,46,99,97,108,108,40,116,104,105,115,44,115,44,99,44,116,104,105,115,46,108,105,115,116,101,110,101,114,84,114,101,101,44,48,41,125,101,108,115,101,32,115,61,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,59,105,102,40,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,115,41,115,119,105,116,99,104,40,116,104,105,115,46,101,118,101,110,116,61,101,44,97,41,123,99,97,115,101,32,49,58,111,46,112,117,115,104,40,115,46,99,97,108,108,40,116,104,105,115,41,41,59,98,114,101,97,107,59,99,97,115,101,32,50,58,111,46,112,117,115,104,40,115,46,99,97,108,108,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,91,49,93,41,41,59,98,114,101,97,107,59,99,97,115,101,32,51,58,111,46,112,117,115,104,40,115,46,99,97,108,108,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,91,49,93,44,97,114,103,117,109,101,110,116,115,91,50,93,41,41,59,98,114,101,97,107,59,100,101,102,97,117,108,116,58,102,111,114,40,116,61,110,101,119,32,65,114,114,97,121,40,97,45,49,41,44,114,61,49,59,114,60,97,59,114,43,43,41,116,91,114,45,49,93,61,97,114,103,117,109,101,110,116,115,91,114,93,59,111,46,112,117,115,104,40,115,46,97,112,112,108,121,40,116,104,105,115,44,116,41,41,125,101,108,115,101,32,105,102,40,115,38,38,115,46,108,101,110,103,116,104,41,123,105,102,40,115,61,115,46,115,108,105,99,101,40,41,44,51,60,97,41,102,111,114,40,116,61,110,101,119,32,65,114,114,97,121,40,97,45,49,41,44,114,61,49,59,114,60,97,59,114,43,43,41,116,91,114,45,49,93,61,97,114,103,117,109,101,110,116,115,91,114,93,59,102,111,114,40,105,61,48,44,110,61,115,46,108,101,110,103,116,104,59,105,60,110,59,105,43,43,41,115,119,105,116,99,104,40,116,104,105,115,46,101,118,101,110,116,61,101,44,97,41,123,99,97,115,101,32,49,58,111,46,112,117,115,104,40,115,91,105,93,46,99,97,108,108,40,116,104,105,115,41,41,59,98,114,101,97,107,59,99,97,115,101,32,50,58,111,46,112,117,115,104,40,115,91,105,93,46,99,97,108,108,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,91,49,93,41,41,59,98,114,101,97,107,59,99,97,115,101,32,51,58,111,46,112,117,115,104,40,115,91,105,93,46,99,97,108,108,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,91,49,93,44,97,114,103,117,109,101,110,116,115,91,50,93,41,41,59,98,114,101,97,107,59,100,101,102,97,117,108,116,58,111,46,112,117,115,104,40,115,91,105,93,46,97,112,112,108,121,40,116,104,105,115,44,116,41,41,125,125,101,108,115,101,32,105,102,40,33,116,104,105,115,46,95,97,108,108,38,38,34,101,114,114,111,114,34,61,61,61,101,41,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,91,49,93,105,110,115,116,97,110,99,101,111,102,32,69,114,114,111,114,63,80,114,111,109,105,115,101,46,114,101,106,101,99,116,40,97,114,103,117,109,101,110,116,115,91,49,93,41,58,80,114,111,109,105,115,101,46,114,101,106,101,99,116,40,34,85,110,99,97,117,103,104,116,44,32,117,110,115,112,101,99,105,102,105,101,100,32,39,101,114,114,111,114,39,32,101,118,101,110,116,46,34,41,59,114,101,116,117,114,110,32,80,114,111,109,105,115,101,46,97,108,108,40,111,41,125,44,105,46,112,114,111,116,111,116,121,112,101,46,111,110,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,111,110,40,101,44,116,44,33,49,41,125,44,105,46,112,114,111,116,111,116,121,112,101,46,112,114,101,112,101,110,100,76,105,115,116,101,110,101,114,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,111,110,40,101,44,116,44,33,48,41,125,44,105,46,112,114,111,116,111,116,121,112,101,46,111,110,65,110,121,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,111,110,65,110,121,40,101,44,33,49,41,125,44,105,46,112,114,111,116,111,116,121,112,101,46,112,114,101,112,101,110,100,65,110,121,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,111,110,65,110,121,40,101,44,33,48,41,125,44,105,46,112,114,111,116,111,116,121,112,101,46,97,100,100,76,105,115,116,101,110,101,114,61,105,46,112,114,111,116,111,116,121,112,101,46,111,110,44,105,46,112,114,111,116,111,116,121,112,101,46,95,111,110,65,110,121,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,102,40,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,101,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,111,110,65,110,121,32,111,110,108,121,32,97,99,99,101,112,116,115,32,105,110,115,116,97,110,99,101,115,32,111,102,32,70,117,110,99,116,105,111,110,34,41,59,114,101,116,117,114,110,32,116,104,105,115,46,95,97,108,108,124,124,40,116,104,105,115,46,95,97,108,108,61,91,93,41,44,116,63,116,104,105,115,46,95,97,108,108,46,117,110,115,104,105,102,116,40,101,41,58,116,104,105,115,46,95,97,108,108,46,112,117,115,104,40,101,41,44,116,104,105,115,125,44,105,46,112,114,111,116,111,116,121,112,101,46,95,111,110,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,105,102,40,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,101,41,114,101,116,117,114,110,32,116,104,105,115,46,95,111,110,65,110,121,40,101,44,116,41,44,116,104,105,115,59,105,102,40,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,116,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,111,110,32,111,110,108,121,32,97,99,99,101,112,116,115,32,105,110,115,116,97,110,99,101,115,32,111,102,32,70,117,110,99,116,105,111,110,34,41,59,114,101,116,117,114,110,32,116,104,105,115,46,95,101,118,101,110,116,115,124,124,117,46,99,97,108,108,40,116,104,105,115,41,44,116,104,105,115,46,95,110,101,119,76,105,115,116,101,110,101,114,38,38,116,104,105,115,46,101,109,105,116,40,34,110,101,119,76,105,115,116,101,110,101,114,34,44,101,44,116,41,44,116,104,105,115,46,119,105,108,100,99,97,114,100,63,102,117,110,99,116,105,111,110,40,101,44,116,41,123,102,111,114,40,118,97,114,32,110,61,48,44,105,61,40,101,61,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,101,63,101,46,115,112,108,105,116,40,116,104,105,115,46,100,101,108,105,109,105,116,101,114,41,58,101,46,115,108,105,99,101,40,41,41,46,108,101,110,103,116,104,59,110,43,49,60,105,59,110,43,43,41,105,102,40,34,42,42,34,61,61,61,101,91,110,93,38,38,34,42,42,34,61,61,61,101,91,110,43,49,93,41,114,101,116,117,114,110,59,102,111,114,40,118,97,114,32,114,61,116,104,105,115,46,108,105,115,116,101,110,101,114,84,114,101,101,44,115,61,101,46,115,104,105,102,116,40,41,59,115,33,61,61,108,59,41,123,105,102,40,114,91,115,93,124,124,40,114,91,115,93,61,123,125,41,44,114,61,114,91,115,93,44,48,61,61,61,101,46,108,101,110,103,116,104,41,114,101,116,117,114,110,32,114,46,95,108,105,115,116,101,110,101,114,115,63,40,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,114,46,95,108,105,115,116,101,110,101,114,115,38,38,40,114,46,95,108,105,115,116,101,110,101,114,115,61,91,114,46,95,108,105,115,116,101,110,101,114,115,93,41,44,114,46,95,108,105,115,116,101,110,101,114,115,46,112,117,115,104,40,116,41,44,33,114,46,95,108,105,115,116,101,110,101,114,115,46,119,97,114,110,101,100,38,38,48,60,116,104,105,115,46,95,109,97,120,76,105,115,116,101,110,101,114,115,38,38,114,46,95,108,105,115,116,101,110,101,114,115,46,108,101,110,103,116,104,62,116,104,105,115,46,95,109,97,120,76,105,115,116,101,110,101,114,115,38,38,40,114,46,95,108,105,115,116,101,110,101,114,115,46,119,97,114,110,101,100,61,33,48,44,111,46,99,97,108,108,40,116,104,105,115,44,114,46,95,108,105,115,116,101,110,101,114,115,46,108,101,110,103,116,104,44,115,41,41,41,58,114,46,95,108,105,115,116,101,110,101,114,115,61,116,44,33,48,59,115,61,101,46,115,104,105,102,116,40,41,125,114,101,116,117,114,110,33,48,125,46,99,97,108,108,40,116,104,105,115,44,101,44,116,41,58,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,63,40,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,38,38,40,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,61,91,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,93,41,44,110,63,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,46,117,110,115,104,105,102,116,40,116,41,58,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,46,112,117,115,104,40,116,41,44,33,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,46,119,97,114,110,101,100,38,38,48,60,116,104,105,115,46,95,109,97,120,76,105,115,116,101,110,101,114,115,38,38,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,46,108,101,110,103,116,104,62,116,104,105,115,46,95,109,97,120,76,105,115,116,101,110,101,114,115,38,38,40,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,46,119,97,114,110,101,100,61,33,48,44,111,46,99,97,108,108,40,116,104,105,115,44,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,46,108,101,110,103,116,104,44,101,41,41,41,58,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,61,116,44,116,104,105,115,125,44,105,46,112,114,111,116,111,116,121,112,101,46,111,102,102,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,102,40,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,116,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,114,101,109,111,118,101,76,105,115,116,101,110,101,114,32,111,110,108,121,32,116,97,107,101,115,32,105,110,115,116,97,110,99,101,115,32,111,102,32,70,117,110,99,116,105,111,110,34,41,59,118,97,114,32,110,44,105,61,91,93,59,105,102,40,116,104,105,115,46,119,105,108,100,99,97,114,100,41,123,118,97,114,32,114,61,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,101,63,101,46,115,112,108,105,116,40,116,104,105,115,46,100,101,108,105,109,105,116,101,114,41,58,101,46,115,108,105,99,101,40,41,59,105,61,121,46,99,97,108,108,40,116,104,105,115,44,110,117,108,108,44,114,44,116,104,105,115,46,108,105,115,116,101,110,101,114,84,114,101,101,44,48,41,125,101,108,115,101,123,105,102,40,33,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,41,114,101,116,117,114,110,32,116,104,105,115,59,110,61,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,44,105,46,112,117,115,104,40,123,95,108,105,115,116,101,110,101,114,115,58,110,125,41,125,102,111,114,40,118,97,114,32,115,61,48,59,115,60,105,46,108,101,110,103,116,104,59,115,43,43,41,123,118,97,114,32,111,61,105,91,115,93,59,105,102,40,110,61,111,46,95,108,105,115,116,101,110,101,114,115,44,104,40,110,41,41,123,102,111,114,40,118,97,114,32,97,61,45,49,44,99,61,48,44,117,61,110,46,108,101,110,103,116,104,59,99,60,117,59,99,43,43,41,105,102,40,110,91,99,93,61,61,61,116,124,124,110,91,99,93,46,108,105,115,116,101,110,101,114,38,38,110,91,99,93,46,108,105,115,116,101,110,101,114,61,61,61,116,124,124,110,91,99,93,46,95,111,114,105,103,105,110,38,38,110,91,99,93,46,95,111,114,105,103,105,110,61,61,61,116,41,123,97,61,99,59,98,114,101,97,107,125,105,102,40,97,60,48,41,99,111,110,116,105,110,117,101,59,114,101,116,117,114,110,32,116,104,105,115,46,119,105,108,100,99,97,114,100,63,111,46,95,108,105,115,116,101,110,101,114,115,46,115,112,108,105,99,101,40,97,44,49,41,58,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,46,115,112,108,105,99,101,40,97,44,49,41,44,48,61,61,61,110,46,108,101,110,103,116,104,38,38,40,116,104,105,115,46,119,105,108,100,99,97,114,100,63,100,101,108,101,116,101,32,111,46,95,108,105,115,116,101,110,101,114,115,58,100,101,108,101,116,101,32,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,41,44,116,104,105,115,46,95,114,101,109,111,118,101,76,105,115,116,101,110,101,114,38,38,116,104,105,115,46,101,109,105,116,40,34,114,101,109,111,118,101,76,105,115,116,101,110,101,114,34,44,101,44,116,41,44,116,104,105,115,125,40,110,61,61,61,116,124,124,110,46,108,105,115,116,101,110,101,114,38,38,110,46,108,105,115,116,101,110,101,114,61,61,61,116,124,124,110,46,95,111,114,105,103,105,110,38,38,110,46,95,111,114,105,103,105,110,61,61,61,116,41,38,38,40,116,104,105,115,46,119,105,108,100,99,97,114,100,63,100,101,108,101,116,101,32,111,46,95,108,105,115,116,101,110,101,114,115,58,100,101,108,101,116,101,32,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,44,116,104,105,115,46,95,114,101,109,111,118,101,76,105,115,116,101,110,101,114,38,38,116,104,105,115,46,101,109,105,116,40,34,114,101,109,111,118,101,76,105,115,116,101,110,101,114,34,44,101,44,116,41,41,125,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,101,40,116,41,123,105,102,40,116,33,61,61,108,41,123,118,97,114,32,110,61,79,98,106,101,99,116,46,107,101,121,115,40,116,41,59,102,111,114,40,118,97,114,32,105,32,105,110,32,110,41,123,118,97,114,32,114,61,110,91,105,93,44,115,61,116,91,114,93,59,115,32,105,110,115,116,97,110,99,101,111,102,32,70,117,110,99,116,105,111,110,124,124,34,111,98,106,101,99,116,34,33,61,116,121,112,101,111,102,32,115,124,124,110,117,108,108,61,61,61,115,124,124,40,48,60,79,98,106,101,99,116,46,107,101,121,115,40,115,41,46,108,101,110,103,116,104,38,38,101,40,116,91,114,93,41,44,48,61,61,61,79,98,106,101,99,116,46,107,101,121,115,40,115,41,46,108,101,110,103,116,104,38,38,100,101,108,101,116,101,32,116,91,114,93,41,125,125,125,40,116,104,105,115,46,108,105,115,116,101,110,101,114,84,114,101,101,41,44,116,104,105,115,125,44,105,46,112,114,111,116,111,116,121,112,101,46,111,102,102,65,110,121,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,44,110,61,48,44,105,61,48,59,105,102,40,101,38,38,116,104,105,115,46,95,97,108,108,38,38,48,60,116,104,105,115,46,95,97,108,108,46,108,101,110,103,116,104,41,123,102,111,114,40,110,61,48,44,105,61,40,116,61,116,104,105,115,46,95,97,108,108,41,46,108,101,110,103,116,104,59,110,60,105,59,110,43,43,41,105,102,40,101,61,61,61,116,91,110,93,41,114,101,116,117,114,110,32,116,46,115,112,108,105,99,101,40,110,44,49,41,44,116,104,105,115,46,95,114,101,109,111,118,101,76,105,115,116,101,110,101,114,38,38,116,104,105,115,46,101,109,105,116,40,34,114,101,109,111,118,101,76,105,115,116,101,110,101,114,65,110,121,34,44,101,41,44,116,104,105,115,125,101,108,115,101,123,105,102,40,116,61,116,104,105,115,46,95,97,108,108,44,116,104,105,115,46,95,114,101,109,111,118,101,76,105,115,116,101,110,101,114,41,102,111,114,40,110,61,48,44,105,61,116,46,108,101,110,103,116,104,59,110,60,105,59,110,43,43,41,116,104,105,115,46,101,109,105,116,40,34,114,101,109,111,118,101,76,105,115,116,101,110,101,114,65,110,121,34,44,116,91,110,93,41,59,116,104,105,115,46,95,97,108,108,61,91,93,125,114,101,116,117,114,110,32,116,104,105,115,125,44,105,46,112,114,111,116,111,116,121,112,101,46,114,101,109,111,118,101,76,105,115,116,101,110,101,114,61,105,46,112,114,111,116,111,116,121,112,101,46,111,102,102,44,105,46,112,114,111,116,111,116,121,112,101,46,114,101,109,111,118,101,65,108,108,76,105,115,116,101,110,101,114,115,61,102,117,110,99,116,105,111,110,40,101,41,123,105,102,40,101,61,61,61,108,41,114,101,116,117,114,110,32,116,104,105,115,46,95,101,118,101,110,116,115,38,38,117,46,99,97,108,108,40,116,104,105,115,41,44,116,104,105,115,59,105,102,40,116,104,105,115,46,119,105,108,100,99,97,114,100,41,102,111,114,40,118,97,114,32,116,61,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,101,63,101,46,115,112,108,105,116,40,116,104,105,115,46,100,101,108,105,109,105,116,101,114,41,58,101,46,115,108,105,99,101,40,41,44,110,61,121,46,99,97,108,108,40,116,104,105,115,44,110,117,108,108,44,116,44,116,104,105,115,46,108,105,115,116,101,110,101,114,84,114,101,101,44,48,41,44,105,61,48,59,105,60,110,46,108,101,110,103,116,104,59,105,43,43,41,110,91,105,93,46,95,108,105,115,116,101,110,101,114,115,61,110,117,108,108,59,101,108,115,101,32,116,104,105,115,46,95,101,118,101,110,116,115,38,38,40,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,61,110,117,108,108,41,59,114,101,116,117,114,110,32,116,104,105,115,125,44,105,46,112,114,111,116,111,116,121,112,101,46,108,105,115,116,101,110,101,114,115,61,102,117,110,99,116,105,111,110,40,101,41,123,105,102,40,116,104,105,115,46,119,105,108,100,99,97,114,100,41,123,118,97,114,32,116,61,91,93,44,110,61,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,101,63,101,46,115,112,108,105,116,40,116,104,105,115,46,100,101,108,105,109,105,116,101,114,41,58,101,46,115,108,105,99,101,40,41,59,114,101,116,117,114,110,32,121,46,99,97,108,108,40,116,104,105,115,44,116,44,110,44,116,104,105,115,46,108,105,115,116,101,110,101,114,84,114,101,101,44,48,41,44,116,125,114,101,116,117,114,110,32,116,104,105,115,46,95,101,118,101,110,116,115,124,124,117,46,99,97,108,108,40,116,104,105,115,41,44,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,124,124,40,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,61,91,93,41,44,104,40,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,41,124,124,40,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,61,91,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,93,41,44,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,125,44,105,46,112,114,111,116,111,116,121,112,101,46,101,118,101,110,116,78,97,109,101,115,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,79,98,106,101,99,116,46,107,101,121,115,40,116,104,105,115,46,95,101,118,101,110,116,115,41,125,44,105,46,112,114,111,116,111,116,121,112,101,46,108,105,115,116,101,110,101,114,67,111,117,110,116,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,108,105,115,116,101,110,101,114,115,40,101,41,46,108,101,110,103,116,104,125,44,105,46,112,114,111,116,111,116,121,112,101,46,108,105,115,116,101,110,101,114,115,65,110,121,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,97,108,108,63,116,104,105,115,46,95,97,108,108,58,91,93,125,44,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,108,38,38,108,46,97,109,100,63,108,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,105,125,41,58,101,46,101,120,112,111,114,116,115,61,105,125,41,46,69,118,101,110,116,69,109,105,116,116,101,114,50,59,102,117,110,99,116,105,111,110,32,78,40,101,44,116,44,110,41,123,114,101,116,117,114,110,32,101,46,109,111,100,101,108,91,116,93,46,97,112,112,108,121,40,101,46,109,111,100,101,108,44,110,41,125,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,111,40,101,41,123,118,97,114,32,114,59,97,40,116,104,105,115,44,111,41,44,40,114,61,104,40,116,104,105,115,44,117,40,111,41,46,99,97,108,108,40,116,104,105,115,41,41,41,46,95,108,97,115,116,83,101,108,101,99,116,101,100,78,111,100,101,44,114,46,95,109,117,116,101,100,61,33,49,44,114,46,97,108,108,111,119,115,76,111,97,100,69,118,101,110,116,115,61,33,49,44,114,46,105,100,61,80,40,41,44,114,46,105,110,105,116,105,97,108,105,122,101,100,61,33,49,44,114,46,105,115,68,121,110,97,109,105,99,61,33,49,44,114,46,111,112,116,115,61,101,44,114,46,112,114,101,118,101,110,116,68,101,115,101,108,101,99,116,105,111,110,61,33,49,44,114,46,99,111,110,102,105,103,61,99,46,100,101,102,97,117,108,116,115,68,101,101,112,40,123,125,44,101,44,123,97,108,108,111,119,76,111,97,100,69,118,101,110,116,115,58,91,93,44,99,104,101,99,107,98,111,120,58,123,97,117,116,111,67,104,101,99,107,67,104,105,108,100,114,101,110,58,33,48,125,44,99,111,110,116,101,120,116,77,101,110,117,58,33,49,44,100,97,116,97,58,33,49,44,101,100,105,116,97,98,108,101,58,33,49,44,101,100,105,116,105,110,103,58,123,97,100,100,58,33,49,44,101,100,105,116,58,33,49,44,114,101,109,111,118,101,58,33,49,125,44,110,111,100,101,115,58,123,114,101,115,101,116,83,116,97,116,101,79,110,82,101,115,116,111,114,101,58,33,48,125,44,112,97,103,105,110,97,116,105,111,110,58,123,108,105,109,105,116,58,45,49,125,44,115,101,97,114,99,104,58,123,109,97,116,99,104,101,114,58,33,49,44,109,97,116,99,104,80,114,111,99,101,115,115,111,114,58,33,49,125,44,115,101,108,101,99,116,105,111,110,58,123,97,108,108,111,119,58,99,46,110,111,111,112,44,97,117,116,111,68,101,115,101,108,101,99,116,58,33,48,44,97,117,116,111,83,101,108,101,99,116,67,104,105,108,100,114,101,110,58,33,49,44,100,105,115,97,98,108,101,68,105,114,101,99,116,68,101,115,101,108,101,99,116,105,111,110,58,33,49,44,109,111,100,101,58,34,100,101,102,97,117,108,116,34,44,109,117,108,116,105,112,108,101,58,33,49,44,114,101,113,117,105,114,101,58,33,49,125,44,115,104,111,119,67,104,101,99,107,98,111,120,101,115,58,33,49,44,115,111,114,116,58,33,49,125,41,44,34,99,104,101,99,107,98,111,120,34,61,61,61,114,46,99,111,110,102,105,103,46,115,101,108,101,99,116,105,111,110,46,109,111,100,101,38,38,40,114,46,99,111,110,102,105,103,46,115,101,108,101,99,116,105,111,110,46,97,117,116,111,83,101,108,101,99,116,67,104,105,108,100,114,101,110,61,33,48,44,114,46,111,110,40,34,110,111,100,101,46,99,104,101,99,107,101,100,34,44,102,117,110,99,116,105,111,110,40,101,41,123,101,46,115,101,108,101,99,116,101,100,40,41,124,124,101,46,115,101,108,101,99,116,40,33,48,41,125,41,44,114,46,111,110,40,34,110,111,100,101,46,115,101,108,101,99,116,101,100,34,44,102,117,110,99,116,105,111,110,40,101,41,123,101,46,99,104,101,99,107,101,100,40,41,124,124,101,46,99,104,101,99,107,40,33,48,41,125,41,44,114,46,111,110,40,34,110,111,100,101,46,117,110,99,104,101,99,107,101,100,34,44,102,117,110,99,116,105,111,110,40,101,41,123,101,46,115,101,108,101,99,116,101,100,40,41,38,38,101,46,100,101,115,101,108,101,99,116,40,33,48,41,125,41,44,114,46,111,110,40,34,110,111,100,101,46,100,101,115,101,108,101,99,116,101,100,34,44,102,117,110,99,116,105,111,110,40,101,41,123,101,46,99,104,101,99,107,101,100,40,41,38,38,101,46,117,110,99,104,101,99,107,40,33,48,41,125,41,41,44,114,46,99,111,110,102,105,103,46,115,101,108,101,99,116,105,111,110,46,97,117,116,111,83,101,108,101,99,116,67,104,105,108,100,114,101,110,38,38,40,114,46,99,111,110,102,105,103,46,115,101,108,101,99,116,105,111,110,46,109,117,108,116,105,112,108,101,61,33,48,44,114,46,99,111,110,102,105,103,46,115,101,108,101,99,116,105,111,110,46,97,117,116,111,68,101,115,101,108,101,99,116,61,33,49,41,44,101,46,101,100,105,116,97,98,108,101,38,38,33,101,46,101,100,105,116,105,110,103,38,38,40,114,46,99,111,110,102,105,103,46,101,100,105,116,105,110,103,46,97,100,100,61,33,48,44,114,46,99,111,110,102,105,103,46,101,100,105,116,105,110,103,46,101,100,105,116,61,33,48,44,114,46,99,111,110,102,105,103,46,101,100,105,116,105,110,103,46,114,101,109,111,118,101,61,33,48,41,44,99,46,105,115,70,117,110,99,116,105,111,110,40,101,46,115,101,97,114,99,104,41,38,38,40,114,46,99,111,110,102,105,103,46,115,101,97,114,99,104,61,123,109,97,116,99,104,101,114,58,101,46,115,101,97,114,99,104,44,109,97,116,99,104,80,114,111,99,101,115,115,111,114,58,33,49,125,41,44,114,46,100,101,102,97,117,108,116,83,116,97,116,101,61,123,99,111,108,108,97,112,115,101,100,58,33,48,44,101,100,105,116,97,98,108,101,58,99,46,103,101,116,40,108,40,114,41,44,34,99,111,110,102,105,103,46,101,100,105,116,105,110,103,46,101,100,105,116,34,41,44,101,100,105,116,105,110,103,58,33,49,44,100,114,97,103,103,97,98,108,101,58,33,48,44,34,100,114,111,112,45,116,97,114,103,101,116,34,58,33,48,44,102,111,99,117,115,101,100,58,33,49,44,104,105,100,100,101,110,58,33,49,44,105,110,100,101,116,101,114,109,105,110,97,116,101,58,33,49,44,108,111,97,100,105,110,103,58,33,49,44,109,97,116,99,104,101,100,58,33,49,44,114,101,109,111,118,101,100,58,33,49,44,114,101,110,100,101,114,101,100,58,33,49,44,115,101,108,101,99,116,97,98,108,101,58,33,48,44,115,101,108,101,99,116,101,100,58,33,49,125,44,114,46,97,108,108,111,119,115,76,111,97,100,69,118,101,110,116,115,61,99,46,105,115,65,114,114,97,121,40,114,46,99,111,110,102,105,103,46,97,108,108,111,119,76,111,97,100,69,118,101,110,116,115,41,38,38,48,60,114,46,99,111,110,102,105,103,46,97,108,108,111,119,76,111,97,100,69,118,101,110,116,115,46,108,101,110,103,116,104,44,114,46,105,115,68,121,110,97,109,105,99,61,99,46,105,115,70,117,110,99,116,105,111,110,40,114,46,99,111,110,102,105,103,46,100,97,116,97,41,59,118,97,114,32,115,61,114,46,101,109,105,116,59,114,101,116,117,114,110,32,114,46,101,109,105,116,61,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,118,97,114,32,101,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,44,116,61,110,101,119,32,65,114,114,97,121,40,101,41,44,110,61,48,59,110,60,101,59,110,43,43,41,116,91,110,93,61,97,114,103,117,109,101,110,116,115,91,110,93,59,105,102,40,33,114,46,105,115,69,118,101,110,116,77,117,116,101,100,40,116,91,48,93,41,41,123,105,102,40,99,46,105,115,70,117,110,99,116,105,111,110,40,99,46,103,101,116,40,116,44,34,91,48,93,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,34,41,41,41,123,118,97,114,32,105,61,116,91,48,93,59,105,46,116,114,101,101,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,61,33,49,44,105,46,112,114,101,118,101,110,116,84,114,101,101,68,101,102,97,117,108,116,61,102,117,110,99,116,105,111,110,40,41,123,105,46,116,114,101,101,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,61,33,48,125,125,115,46,97,112,112,108,121,40,108,40,114,41,44,116,41,125,125,44,114,46,109,111,100,101,108,61,110,101,119,32,103,40,108,40,114,41,41,44,114,46,99,111,110,102,105,103,46,100,97,116,97,38,38,114,46,108,111,97,100,40,114,46,99,111,110,102,105,103,46,100,97,116,97,41,44,114,46,105,110,105,116,105,97,108,105,122,101,100,61,33,48,44,114,125,114,101,116,117,114,110,32,116,40,111,44,79,41,44,101,40,111,44,91,123,107,101,121,58,34,97,100,100,78,111,100,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,97,100,100,78,111,100,101,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,97,100,100,78,111,100,101,115,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,116,104,105,115,59,116,104,105,115,46,98,97,116,99,104,40,41,59,118,97,114,32,110,61,110,101,119,32,103,40,116,104,105,115,41,59,114,101,116,117,114,110,32,99,46,101,97,99,104,40,101,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,110,46,112,117,115,104,40,116,46,97,100,100,78,111,100,101,40,101,41,41,125,41,44,116,104,105,115,46,101,110,100,40,41,44,110,125,125,44,123,107,101,121,58,34,97,112,112,108,121,67,104,97,110,103,101,115,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,109,111,100,101,108,46,97,112,112,108,121,67,104,97,110,103,101,115,40,41,125,125,44,123,107,101,121,58,34,97,118,97,105,108,97,98,108,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,97,118,97,105,108,97,98,108,101,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,98,97,116,99,104,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,109,111,100,101,108,46,98,97,116,99,104,40,41,125,125,44,123,107,101,121,58,34,98,108,117,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,98,108,117,114,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,98,108,117,114,68,101,101,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,98,108,117,114,68,101,101,112,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,98,111,117,110,100,105,110,103,78,111,100,101,115,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,99,46,116,114,97,110,115,102,111,114,109,40,97,114,103,117,109,101,110,116,115,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,101,91,116,46,105,110,100,101,120,80,97,116,104,40,41,46,114,101,112,108,97,99,101,40,47,92,46,47,103,44,34,34,41,93,61,116,125,44,123,125,41,44,116,61,115,40,99,46,115,111,114,116,66,121,40,79,98,106,101,99,116,46,107,101,121,115,40,101,41,41,41,44,110,61,116,91,48,93,44,105,61,116,46,115,108,105,99,101,40,49,41,59,114,101,116,117,114,110,91,99,46,103,101,116,40,101,44,110,41,44,99,46,103,101,116,40,101,44,105,41,93,125,125,44,123,107,101,121,58,34,99,97,110,65,117,116,111,68,101,115,101,108,101,99,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,99,111,110,102,105,103,46,115,101,108,101,99,116,105,111,110,46,97,117,116,111,68,101,115,101,108,101,99,116,38,38,33,116,104,105,115,46,112,114,101,118,101,110,116,68,101,115,101,108,101,99,116,105,111,110,125,125,44,123,107,101,121,58,34,99,104,101,99,107,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,99,104,101,99,107,101,100,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,99,108,101,97,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,99,108,101,97,110,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,99,108,101,97,114,83,101,97,114,99,104,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,98,97,116,99,104,40,41,44,116,104,105,115,46,114,101,99,117,114,115,101,68,111,119,110,40,102,117,110,99,116,105,111,110,40,101,41,123,101,46,115,104,111,119,40,41,46,99,111,108,108,97,112,115,101,40,41,46,115,116,97,116,101,40,34,109,97,116,99,104,101,100,34,44,33,49,41,125,41,44,116,104,105,115,46,101,110,100,40,41,44,116,104,105,115,125,125,44,123,107,101,121,58,34,99,108,111,110,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,99,108,111,110,101,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,99,111,108,108,97,112,115,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,99,111,108,108,97,112,115,101,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,99,111,108,108,97,112,115,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,99,111,108,108,97,112,115,101,100,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,99,111,108,108,97,112,115,101,68,101,101,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,99,111,108,108,97,112,115,101,68,101,101,112,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,99,111,110,99,97,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,99,111,110,99,97,116,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,99,111,112,121,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,99,111,112,121,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,99,114,101,97,116,101,78,111,100,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,111,46,105,115,84,114,101,101,78,111,100,101,40,101,41,63,101,58,67,40,116,104,105,115,44,101,41,125,125,44,123,107,101,121,58,34,100,101,101,112,101,115,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,100,101,101,112,101,115,116,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,100,101,115,101,108,101,99,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,100,101,115,101,108,101,99,116,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,100,101,115,101,108,101,99,116,68,101,101,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,100,101,115,101,108,101,99,116,68,101,101,112,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,100,105,115,97,98,108,101,68,101,115,101,108,101,99,116,105,111,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,99,111,110,102,105,103,46,115,101,108,101,99,116,105,111,110,46,109,117,108,116,105,112,108,101,38,38,40,116,104,105,115,46,112,114,101,118,101,110,116,68,101,115,101,108,101,99,116,105,111,110,61,33,48,41,44,116,104,105,115,125,125,44,123,107,101,121,58,34,101,97,99,104,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,101,97,99,104,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,101,100,105,116,97,98,108,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,101,100,105,116,97,98,108,101,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,101,100,105,116,105,110,103,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,101,100,105,116,105,110,103,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,101,110,97,98,108,101,68,101,115,101,108,101,99,116,105,111,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,112,114,101,118,101,110,116,68,101,115,101,108,101,99,116,105,111,110,61,33,49,44,116,104,105,115,125,125,44,123,107,101,121,58,34,101,110,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,109,111,100,101,108,46,101,110,100,40,41,125,125,44,123,107,101,121,58,34,101,118,101,114,121,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,101,118,101,114,121,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,101,120,112,97,110,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,101,120,112,97,110,100,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,101,120,112,97,110,100,68,101,101,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,101,120,112,97,110,100,68,101,101,112,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,101,120,112,97,110,100,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,101,120,112,97,110,100,101,100,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,101,120,116,114,97,99,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,101,120,116,114,97,99,116,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,102,105,108,116,101,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,102,105,108,116,101,114,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,102,105,108,116,101,114,66,121,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,102,105,108,116,101,114,66,121,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,102,105,110,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,102,105,110,100,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,102,105,114,115,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,102,105,114,115,116,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,102,108,97,116,116,101,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,102,108,97,116,116,101,110,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,102,111,99,117,115,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,102,111,99,117,115,101,100,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,102,111,114,69,97,99,104,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,101,97,99,104,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,103,101,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,103,101,116,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,104,105,100,100,101,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,104,105,100,100,101,110,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,104,105,100,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,104,105,100,101,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,104,105,100,101,68,101,101,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,104,105,100,101,68,101,101,112,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,105,110,100,101,116,101,114,109,105,110,97,116,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,105,110,100,101,116,101,114,109,105,110,97,116,101,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,105,110,100,101,120,79,102,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,105,110,100,101,120,79,102,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,105,110,115,101,114,116,65,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,105,110,115,101,114,116,65,116,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,105,110,118,111,107,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,105,110,118,111,107,101,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,105,110,118,111,107,101,68,101,101,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,105,110,118,111,107,101,68,101,101,112,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,105,115,69,118,101,110,116,77,117,116,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,99,46,105,115,66,111,111,108,101,97,110,40,116,104,105,115,46,109,117,116,101,100,40,41,41,63,116,104,105,115,46,109,117,116,101,100,40,41,58,99,46,105,110,99,108,117,100,101,115,40,116,104,105,115,46,109,117,116,101,100,40,41,44,101,41,125,125,44,123,107,101,121,58,34,105,115,84,114,101,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,32,105,110,115,116,97,110,99,101,111,102,32,111,125,125,44,123,107,101,121,58,34,106,111,105,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,106,111,105,110,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,108,97,115,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,108,97,115,116,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,108,97,115,116,83,101,108,101,99,116,101,100,78,111,100,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,108,97,115,116,83,101,108,101,99,116,101,100,78,111,100,101,125,125,44,123,107,101,121,58,34,108,111,97,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,111,61,116,104,105,115,44,101,61,110,101,119,32,102,40,102,117,110,99,116,105,111,110,40,114,44,115,41,123,102,117,110,99,116,105,111,110,32,101,40,101,44,116,41,123,105,102,40,33,99,46,105,115,65,114,114,97,121,76,105,107,101,40,101,41,41,114,101,116,117,114,110,32,115,40,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,76,111,97,100,101,114,32,114,101,113,117,105,114,101,115,32,97,110,32,97,114,114,97,121,45,108,105,107,101,32,96,110,111,100,101,115,96,32,112,97,114,97,109,101,116,101,114,46,34,41,41,59,33,111,46,105,110,105,116,105,97,108,105,122,101,100,38,38,99,46,105,115,65,114,114,97,121,76,105,107,101,40,101,41,63,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,40,41,123,111,46,101,109,105,116,40,34,100,97,116,97,46,108,111,97,100,101,100,34,44,101,41,125,41,58,111,46,101,109,105,116,40,34,100,97,116,97,46,108,111,97,100,101,100,34,44,101,41,59,118,97,114,32,110,61,83,40,111,44,101,41,59,102,117,110,99,116,105,111,110,32,105,40,41,123,111,46,101,109,105,116,40,34,109,111,100,101,108,46,108,111,97,100,101,100,34,44,111,46,109,111,100,101,108,41,44,114,40,111,46,109,111,100,101,108,41,44,111,46,109,111,100,101,108,46,97,112,112,108,121,67,104,97,110,103,101,115,40,41,125,111,46,99,111,110,102,105,103,46,100,101,102,101,114,114,101,100,76,111,97,100,105,110,103,63,111,46,109,111,100,101,108,61,111,46,109,111,100,101,108,46,99,111,110,99,97,116,40,110,41,58,111,46,109,111,100,101,108,61,110,44,111,46,109,111,100,101,108,46,95,112,97,103,105,110,97,116,105,111,110,46,116,111,116,97,108,61,101,46,108,101,110,103,116,104,44,99,46,112,97,114,115,101,73,110,116,40,116,41,62,101,46,108,101,110,103,116,104,38,38,40,111,46,109,111,100,101,108,46,95,112,97,103,105,110,97,116,105,111,110,46,116,111,116,97,108,61,99,46,112,97,114,115,101,73,110,116,40,116,41,41,44,116,124,124,111,46,109,111,100,101,108,46,114,101,99,117,114,115,101,68,111,119,110,40,102,117,110,99,116,105,111,110,40,101,41,123,101,46,104,97,115,67,104,105,108,100,114,101,110,40,41,38,38,40,101,46,99,104,105,108,100,114,101,110,46,95,112,97,103,105,110,97,116,105,111,110,46,116,111,116,97,108,61,101,46,99,104,105,108,100,114,101,110,46,108,101,110,103,116,104,41,125,41,44,111,46,99,111,110,102,105,103,46,115,101,108,101,99,116,105,111,110,46,114,101,113,117,105,114,101,38,38,33,111,46,115,101,108,101,99,116,101,100,40,41,46,108,101,110,103,116,104,38,38,111,46,115,101,108,101,99,116,70,105,114,115,116,65,118,97,105,108,97,98,108,101,78,111,100,101,40,41,44,33,111,46,105,110,105,116,105,97,108,105,122,101,100,38,38,99,46,105,115,65,114,114,97,121,40,101,41,63,115,101,116,84,105,109,101,111,117,116,40,105,41,58,105,40,41,125,105,102,40,99,46,105,115,65,114,114,97,121,76,105,107,101,40,110,41,41,101,40,110,41,59,101,108,115,101,32,105,102,40,99,46,105,115,70,117,110,99,116,105,111,110,40,110,41,41,123,118,97,114,32,116,61,110,40,110,117,108,108,44,101,44,115,44,111,46,112,97,103,105,110,97,116,105,111,110,40,41,41,59,116,38,38,40,110,61,116,41,125,99,46,105,115,79,98,106,101,99,116,40,110,41,63,109,40,110,41,46,116,104,101,110,40,101,41,46,99,97,116,99,104,40,115,41,58,115,40,110,101,119,32,69,114,114,111,114,40,34,73,110,118,97,108,105,100,32,100,97,116,97,32,108,111,97,100,101,114,46,34,41,41,125,41,59,114,101,116,117,114,110,32,101,46,99,97,116,99,104,40,102,117,110,99,116,105,111,110,40,101,41,123,111,46,101,109,105,116,40,34,100,97,116,97,46,108,111,97,100,101,114,114,111,114,34,44,101,41,125,41,44,116,104,105,115,46,95,108,111,97,100,101,114,61,123,112,114,111,109,105,115,101,58,101,125,44,101,125,125,44,123,107,101,121,58,34,108,111,97,100,105,110,103,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,108,111,97,100,105,110,103,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,108,111,97,100,77,111,114,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,108,111,97,100,77,111,114,101,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,109,97,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,109,97,112,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,109,97,116,99,104,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,109,97,116,99,104,101,100,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,109,111,118,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,109,111,118,101,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,109,117,116,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,99,46,105,115,83,116,114,105,110,103,40,101,41,124,124,99,46,105,115,65,114,114,97,121,40,101,41,63,116,104,105,115,46,95,109,117,116,101,100,61,99,46,99,97,115,116,65,114,114,97,121,40,101,41,58,116,104,105,115,46,95,109,117,116,101,100,61,33,48,44,116,104,105,115,125,125,44,123,107,101,121,58,34,109,117,116,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,109,117,116,101,100,125,125,44,123,107,101,121,58,34,110,111,100,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,110,111,100,101,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,110,111,100,101,115,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,110,111,100,101,115,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,112,97,103,105,110,97,116,105,111,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,112,97,103,105,110,97,116,105,111,110,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,112,111,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,112,111,112,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,112,117,115,104,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,112,117,115,104,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,114,101,99,117,114,115,101,68,111,119,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,114,101,99,117,114,115,101,68,111,119,110,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,114,101,100,117,99,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,114,101,100,117,99,101,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,114,101,100,117,99,101,82,105,103,104,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,114,101,100,117,99,101,82,105,103,104,116,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,114,101,108,111,97,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,114,101,115,101,116,40,41,44,116,104,105,115,46,108,111,97,100,40,116,104,105,115,46,111,112,116,115,46,100,97,116,97,124,124,116,104,105,115,46,99,111,110,102,105,103,46,100,97,116,97,41,125,125,44,123,107,101,121,58,34,114,101,109,111,118,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,114,101,109,111,118,101,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,114,101,109,111,118,101,65,108,108,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,114,101,115,101,116,40,41,46,97,112,112,108,121,67,104,97,110,103,101,115,40,41,44,116,104,105,115,125,125,44,123,107,101,121,58,34,114,101,109,111,118,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,114,101,109,111,118,101,100,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,114,101,115,101,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,109,111,100,101,108,61,110,101,119,32,103,40,116,104,105,115,41,44,116,104,105,115,125,125,44,123,107,101,121,58,34,114,101,115,116,111,114,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,114,101,115,116,111,114,101,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,114,101,115,116,111,114,101,68,101,101,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,114,101,115,116,111,114,101,68,101,101,112,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,114,101,118,101,114,115,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,114,101,118,101,114,115,101,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,115,101,97,114,99,104,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,114,61,116,104,105,115,44,101,61,116,104,105,115,46,99,111,110,102,105,103,46,115,101,97,114,99,104,44,105,61,101,46,109,97,116,99,104,101,114,44,115,61,101,46,109,97,116,99,104,80,114,111,99,101,115,115,111,114,59,114,101,116,117,114,110,33,110,124,124,99,46,105,115,83,116,114,105,110,103,40,110,41,38,38,99,46,105,115,69,109,112,116,121,40,110,41,63,102,46,114,101,115,111,108,118,101,40,116,104,105,115,46,99,108,101,97,114,83,101,97,114,99,104,40,41,41,58,40,116,104,105,115,46,98,97,116,99,104,40,41,44,116,104,105,115,46,114,101,99,117,114,115,101,68,111,119,110,40,102,117,110,99,116,105,111,110,40,101,41,123,101,46,115,116,97,116,101,40,34,104,105,100,100,101,110,34,44,33,48,41,44,101,46,115,116,97,116,101,40,34,109,97,116,99,104,101,100,34,44,33,49,41,125,41,44,116,104,105,115,46,101,110,100,40,41,44,105,61,99,46,105,115,70,117,110,99,116,105,111,110,40,105,41,63,105,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,44,105,61,110,101,119,32,103,40,114,41,59,99,46,105,115,83,116,114,105,110,103,40,116,41,38,38,40,116,61,110,101,119,32,82,101,103,69,120,112,40,116,44,34,105,34,41,41,44,110,61,99,46,105,115,82,101,103,69,120,112,40,116,41,63,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,46,116,101,115,116,40,101,46,116,101,120,116,41,125,58,116,44,114,46,109,111,100,101,108,46,114,101,99,117,114,115,101,68,111,119,110,40,102,117,110,99,116,105,111,110,40,101,41,123,101,46,114,101,109,111,118,101,100,40,41,124,124,110,40,101,41,38,38,105,46,112,117,115,104,40,101,41,125,41,44,101,40,105,41,125,44,115,61,99,46,105,115,70,117,110,99,116,105,111,110,40,115,41,63,115,58,102,117,110,99,116,105,111,110,40,101,41,123,101,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,101,41,123,101,46,115,104,111,119,40,41,46,115,116,97,116,101,40,34,109,97,116,99,104,101,100,34,44,33,48,41,44,101,46,101,120,112,97,110,100,80,97,114,101,110,116,115,40,41,46,99,111,108,108,97,112,115,101,40,41,44,101,46,104,97,115,67,104,105,108,100,114,101,110,40,41,38,38,101,46,99,104,105,108,100,114,101,110,46,115,104,111,119,68,101,101,112,40,41,125,41,125,44,110,101,119,32,102,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,105,40,110,44,102,117,110,99,116,105,111,110,40,101,41,123,111,46,105,115,84,114,101,101,78,111,100,101,115,40,101,41,124,124,40,101,61,114,46,110,111,100,101,115,40,99,46,109,97,112,40,101,44,34,105,100,34,41,41,41,44,114,46,98,97,116,99,104,40,41,44,115,40,101,41,44,114,46,101,110,100,40,41,44,116,40,101,41,125,44,101,41,125,41,41,125,125,44,123,107,101,121,58,34,115,101,108,101,99,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,115,101,108,101,99,116,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,115,101,108,101,99,116,97,98,108,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,115,101,108,101,99,116,97,98,108,101,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,115,101,108,101,99,116,66,101,116,119,101,101,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,116,104,105,115,46,98,97,116,99,104,40,41,59,102,111,114,40,118,97,114,32,110,61,101,46,110,101,120,116,86,105,115,105,98,108,101,78,111,100,101,40,41,59,110,46,105,100,33,61,61,116,46,105,100,59,41,110,46,115,101,108,101,99,116,40,41,44,110,61,110,46,110,101,120,116,86,105,115,105,98,108,101,78,111,100,101,40,41,59,114,101,116,117,114,110,32,116,104,105,115,46,101,110,100,40,41,44,116,104,105,115,125,125,44,123,107,101,121,58,34,115,101,108,101,99,116,68,101,101,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,115,101,108,101,99,116,68,101,101,112,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,115,101,108,101,99,116,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,115,101,108,101,99,116,101,100,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,115,101,108,101,99,116,70,105,114,115,116,65,118,97,105,108,97,98,108,101,78,111,100,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,109,111,100,101,108,46,102,105,108,116,101,114,66,121,40,34,97,118,97,105,108,97,98,108,101,34,41,46,103,101,116,40,48,41,59,114,101,116,117,114,110,32,101,38,38,101,46,115,101,108,101,99,116,40,41,44,101,125,125,44,123,107,101,121,58,34,115,104,105,102,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,115,104,105,102,116,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,115,104,111,119,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,115,104,111,119,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,115,104,111,119,68,101,101,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,115,104,111,119,68,101,101,112,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,115,108,105,99,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,115,108,105,99,101,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,115,111,102,116,82,101,109,111,118,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,115,111,102,116,82,101,109,111,118,101,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,115,111,109,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,115,111,109,101,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,115,111,114,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,115,111,114,116,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,115,111,114,116,66,121,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,115,111,114,116,66,121,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,115,111,114,116,68,101,101,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,115,111,114,116,68,101,101,112,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,115,112,108,105,99,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,115,108,105,99,101,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,115,116,97,116,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,115,116,97,116,101,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,115,116,97,116,101,68,101,101,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,115,116,97,116,101,68,101,101,112,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,115,119,97,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,115,119,97,112,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,116,111,65,114,114,97,121,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,116,111,65,114,114,97,121,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,116,111,83,116,114,105,110,103,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,116,111,83,116,114,105,110,103,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,117,110,109,117,116,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,99,46,105,115,83,116,114,105,110,103,40,101,41,124,124,99,46,105,115,65,114,114,97,121,40,101,41,63,40,116,104,105,115,46,95,109,117,116,101,100,61,99,46,100,105,102,102,101,114,101,110,99,101,40,116,104,105,115,46,95,109,117,116,101,100,44,99,46,99,97,115,116,65,114,114,97,121,40,101,41,41,44,116,104,105,115,46,95,109,117,116,101,100,46,108,101,110,103,116,104,124,124,40,116,104,105,115,46,95,109,117,116,101,100,61,33,49,41,41,58,116,104,105,115,46,95,109,117,116,101,100,61,33,49,44,116,104,105,115,125,125,44,123,107,101,121,58,34,117,110,115,104,105,102,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,117,110,115,104,105,102,116,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,118,105,115,105,98,108,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,40,116,104,105,115,44,34,118,105,115,105,98,108,101,34,44,97,114,103,117,109,101,110,116,115,41,125,125,93,44,91,123,107,101,121,58,34,105,115,84,114,101,101,78,111,100,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,32,105,110,115,116,97,110,99,101,111,102,32,119,125,125,44,123,107,101,121,58,34,105,115,84,114,101,101,78,111,100,101,115,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,32,105,110,115,116,97,110,99,101,111,102,32,103,125,125,93,41,44,111,125,40,41,125,41,59,102,117,110,99,116,105,111,110,32,98,97,115,101,83,116,97,116,101,67,104,97,110,103,101,40,112,114,111,112,44,32,118,97,108,117,101,44,32,118,101,114,98,44,32,110,111,100,101,44,32,100,101,101,112,41,32,123,32,105,102,32,40,110,111,100,101,46,115,116,97,116,101,40,112,114,111,112,41,32,33,61,61,32,118,97,108,117,101,41,32,123,32,110,111,100,101,46,99,111,110,116,101,120,116,40,41,46,98,97,116,99,104,40,41,59,32,105,102,32,40,110,111,100,101,46,95,116,114,101,101,46,99,111,110,102,105,103,46,110,111,100,101,115,46,114,101,115,101,116,83,116,97,116,101,79,110,82,101,115,116,111,114,101,32,38,38,32,118,101,114,98,32,61,61,61,32,39,114,101,115,116,111,114,101,100,39,41,32,123,32,114,101,115,101,116,83,116,97,116,101,40,110,111,100,101,41,59,32,125,32,105,102,32,40,118,97,108,117,101,32,38,38,32,112,114,111,112,32,61,61,61,32,39,99,104,101,99,107,101,100,39,41,32,123,32,110,111,100,101,46,115,116,97,116,101,40,39,105,110,100,101,116,101,114,109,105,110,97,116,101,39,44,32,102,97,108,115,101,41,59,32,125,32,110,111,100,101,46,115,116,97,116,101,40,112,114,111,112,44,32,118,97,108,117,101,41,59,32,110,111,100,101,46,95,116,114,101,101,46,101,109,105,116,40,39,110,111,100,101,46,39,32,43,32,118,101,114,98,44,32,110,111,100,101,44,32,102,97,108,115,101,41,59,32,105,102,32,40,100,101,101,112,32,38,38,32,110,111,100,101,46,104,97,115,67,104,105,108,100,114,101,110,40,41,41,32,123,32,110,111,100,101,46,99,104,105,108,100,114,101,110,46,114,101,99,117,114,115,101,68,111,119,110,40,99,104,105,108,100,32,61,62,32,123,32,98,97,115,101,83,116,97,116,101,67,104,97,110,103,101,40,112,114,111,112,44,32,118,97,108,117,101,44,32,118,101,114,98,44,32,99,104,105,108,100,41,59,32,125,41,59,32,125,32,105,102,32,40,112,114,111,112,32,61,61,61,32,39,104,105,100,100,101,110,39,32,124,124,32,112,114,111,112,32,61,61,61,32,39,114,101,109,111,118,101,100,39,41,32,123,32,110,111,100,101,46,99,111,110,116,101,120,116,40,41,46,105,110,100,105,99,101,115,68,105,114,116,121,32,61,32,116,114,117,101,59,32,110,111,100,101,46,99,111,110,116,101,120,116,40,41,46,99,97,108,99,117,108,97,116,101,82,101,110,100,101,114,97,98,108,101,80,111,115,105,116,105,111,110,115,40,41,59,32,125,32,110,111,100,101,46,109,97,114,107,68,105,114,116,121,40,41,59,32,110,111,100,101,46,99,111,110,116,101,120,116,40,41,46,101,110,100,40,41,59,32,125,32,114,101,116,117,114,110,32,110,111,100,101,59,32,125,47,42,32,73,110,115,112,105,114,101,32,84,114,101,101,32,68,79,77,10,32,42,32,64,118,101,114,115,105,111,110,32,52,46,48,46,54,10,32,42,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,104,101,108,105,111,110,51,47,105,110,115,112,105,114,101,45,116,114,101,101,45,100,111,109,10,32,42,32,64,99,111,112,121,114,105,103,104,116,32,67,111,112,121,114,105,103,104,116,32,50,48,49,53,32,72,101,108,105,111,110,51,44,32,97,110,100,32,111,116,104,101,114,32,99,111,110,116,114,105,98,117,116,111,114,115,10,32,42,32,64,108,105,99,101,110,115,101,32,76,105,99,101,110,115,101,100,32,117,110,100,101,114,32,77,73,84,10,32,42,32,32,32,32,32,32,32,32,32,32,115,101,101,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,104,101,108,105,111,110,51,47,105,110,115,112,105,114,101,45,116,114,101,101,45,100,111,109,47,98,108,111,98,47,109,97,115,116,101,114,47,76,73,67,69,78,83,69,10,32,42,47,33,102,117,110,99,116,105,111,110,40,101,44,116,41,123,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,101,120,112,111,114,116,115,38,38,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,109,111,100,117,108,101,63,109,111,100,117,108,101,46,101,120,112,111,114,116,115,61,116,40,114,101,113,117,105,114,101,40,34,108,111,100,97,115,104,34,41,44,114,101,113,117,105,114,101,40,34,105,110,115,112,105,114,101,45,116,114,101,101,34,41,41,58,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,100,101,102,105,110,101,38,38,100,101,102,105,110,101,46,97,109,100,63,100,101,102,105,110,101,40,91,34,108,111,100,97,115,104,34,44,34,105,110,115,112,105,114,101,45,116,114,101,101,34,93,44,116,41,58,101,46,73,110,115,112,105,114,101,84,114,101,101,68,79,77,61,116,40,101,46,95,44,101,46,73,110,115,112,105,114,101,84,114,101,101,41,125,40,116,104,105,115,44,102,117,110,99,116,105,111,110,40,108,44,105,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,105,61,105,38,38,105,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,34,100,101,102,97,117,108,116,34,41,63,105,46,100,101,102,97,117,108,116,58,105,59,118,97,114,32,109,61,34,36,78,79,95,79,80,34,44,97,61,34,97,32,114,117,110,116,105,109,101,32,101,114,114,111,114,32,111,99,99,117,114,101,100,33,32,85,115,101,32,73,110,102,101,114,110,111,32,105,110,32,100,101,118,101,108,111,112,109,101,110,116,32,101,110,118,105,114,111,110,109,101,110,116,32,116,111,32,102,105,110,100,32,116,104,101,32,101,114,114,111,114,46,34,44,101,61,33,40,34,117,110,100,101,102,105,110,101,100,34,61,61,116,121,112,101,111,102,32,119,105,110,100,111,119,124,124,33,119,105,110,100,111,119,46,100,111,99,117,109,101,110,116,41,44,117,61,65,114,114,97,121,46,105,115,65,114,114,97,121,59,102,117,110,99,116,105,111,110,32,112,40,101,41,123,118,97,114,32,116,61,116,121,112,101,111,102,32,101,59,114,101,116,117,114,110,34,115,116,114,105,110,103,34,61,61,61,116,124,124,34,110,117,109,98,101,114,34,61,61,61,116,125,102,117,110,99,116,105,111,110,32,68,40,101,41,123,114,101,116,117,114,110,32,103,40,101,41,124,124,121,40,101,41,125,102,117,110,99,116,105,111,110,32,102,40,101,41,123,114,101,116,117,114,110,32,121,40,101,41,124,124,33,49,61,61,61,101,124,124,33,48,61,61,61,101,124,124,103,40,101,41,125,102,117,110,99,116,105,111,110,32,95,40,101,41,123,114,101,116,117,114,110,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,101,125,102,117,110,99,116,105,111,110,32,104,40,101,41,123,114,101,116,117,114,110,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,101,125,102,117,110,99,116,105,111,110,32,118,40,101,41,123,114,101,116,117,114,110,34,110,117,109,98,101,114,34,61,61,116,121,112,101,111,102,32,101,125,102,117,110,99,116,105,111,110,32,121,40,101,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,61,101,125,102,117,110,99,116,105,111,110,32,103,40,101,41,123,114,101,116,117,114,110,32,118,111,105,100,32,48,61,61,61,101,125,102,117,110,99,116,105,111,110,32,98,40,101,44,116,41,123,118,97,114,32,110,61,123,125,59,105,102,40,101,41,102,111,114,40,118,97,114,32,111,32,105,110,32,101,41,110,91,111,93,61,101,91,111,93,59,105,102,40,116,41,102,111,114,40,118,97,114,32,114,32,105,110,32,116,41,110,91,114,93,61,116,91,114,93,59,114,101,116,117,114,110,32,110,125,118,97,114,32,107,61,34,36,34,59,102,117,110,99,116,105,111,110,32,67,40,101,44,116,44,110,44,111,44,114,44,105,44,97,44,115,41,123,114,101,116,117,114,110,123,99,104,105,108,100,70,108,97,103,115,58,101,44,99,104,105,108,100,114,101,110,58,116,44,99,108,97,115,115,78,97,109,101,58,110,44,100,111,109,58,110,117,108,108,44,102,108,97,103,115,58,111,44,107,101,121,58,118,111,105,100,32,48,61,61,61,114,63,110,117,108,108,58,114,44,112,97,114,101,110,116,86,78,111,100,101,58,110,117,108,108,44,112,114,111,112,115,58,118,111,105,100,32,48,61,61,61,105,63,110,117,108,108,58,105,44,114,101,102,58,118,111,105,100,32,48,61,61,61,97,63,110,117,108,108,58,97,44,116,121,112,101,58,115,125,125,102,117,110,99,116,105,111,110,32,115,40,101,44,116,44,110,44,111,44,114,44,105,44,97,44,115,41,123,118,97,114,32,108,61,118,111,105,100,32,48,61,61,61,114,63,49,58,114,44,100,61,67,40,108,44,111,44,110,44,101,44,97,44,105,44,115,44,116,41,59,114,101,116,117,114,110,32,48,61,61,61,108,38,38,83,40,100,44,100,46,99,104,105,108,100,114,101,110,41,44,100,125,102,117,110,99,116,105,111,110,32,100,40,101,44,116,44,110,44,111,44,114,41,123,48,60,40,50,38,101,41,38,38,40,101,61,116,46,112,114,111,116,111,116,121,112,101,38,38,95,40,116,46,112,114,111,116,111,116,121,112,101,46,114,101,110,100,101,114,41,63,52,58,56,41,59,118,97,114,32,105,61,116,46,100,101,102,97,117,108,116,80,114,111,112,115,59,105,102,40,33,68,40,105,41,41,102,111,114,40,118,97,114,32,97,32,105,110,32,110,124,124,40,110,61,123,125,41,44,105,41,103,40,110,91,97,93,41,38,38,40,110,91,97,93,61,105,91,97,93,41,59,105,102,40,48,60,40,56,38,101,41,41,123,118,97,114,32,115,61,116,46,100,101,102,97,117,108,116,72,111,111,107,115,59,105,102,40,33,68,40,115,41,41,105,102,40,114,41,102,111,114,40,118,97,114,32,108,32,105,110,32,115,41,103,40,114,91,108,93,41,38,38,40,114,91,108,93,61,115,91,108,93,41,59,101,108,115,101,32,114,61,115,125,118,97,114,32,100,61,67,40,49,44,110,117,108,108,44,110,117,108,108,44,101,44,111,44,110,44,114,44,116,41,44,99,61,80,46,99,114,101,97,116,101,86,78,111,100,101,59,114,101,116,117,114,110,32,95,40,99,41,38,38,99,40,100,41,44,100,125,102,117,110,99,116,105,111,110,32,36,40,101,44,116,41,123,114,101,116,117,114,110,32,67,40,49,44,68,40,101,41,63,34,34,58,101,44,110,117,108,108,44,49,54,44,116,44,110,117,108,108,44,110,117,108,108,44,110,117,108,108,41,125,102,117,110,99,116,105,111,110,32,99,40,101,41,123,118,97,114,32,116,61,101,46,112,114,111,112,115,59,105,102,40,116,41,123,118,97,114,32,110,61,101,46,102,108,97,103,115,59,52,56,49,38,110,38,38,40,118,111,105,100,32,48,33,61,61,116,46,99,104,105,108,100,114,101,110,38,38,68,40,101,46,99,104,105,108,100,114,101,110,41,38,38,83,40,101,44,116,46,99,104,105,108,100,114,101,110,41,44,118,111,105,100,32,48,33,61,61,116,46,99,108,97,115,115,78,97,109,101,38,38,40,101,46,99,108,97,115,115,78,97,109,101,61,116,46,99,108,97,115,115,78,97,109,101,124,124,110,117,108,108,44,116,46,99,108,97,115,115,78,97,109,101,61,118,111,105,100,32,48,41,41,44,118,111,105,100,32,48,33,61,61,116,46,107,101,121,38,38,40,101,46,107,101,121,61,116,46,107,101,121,44,116,46,107,101,121,61,118,111,105,100,32,48,41,44,118,111,105,100,32,48,33,61,61,116,46,114,101,102,38,38,40,101,46,114,101,102,61,56,38,110,63,98,40,101,46,114,101,102,44,116,46,114,101,102,41,58,116,46,114,101,102,44,116,46,114,101,102,61,118,111,105,100,32,48,41,125,114,101,116,117,114,110,32,101,125,102,117,110,99,116,105,111,110,32,119,40,101,41,123,118,97,114,32,116,44,110,61,101,46,102,108,97,103,115,59,105,102,40,49,52,38,110,41,123,118,97,114,32,111,44,114,61,101,46,112,114,111,112,115,59,105,102,40,33,121,40,114,41,41,102,111,114,40,118,97,114,32,105,32,105,110,32,111,61,123,125,44,114,41,111,91,105,93,61,114,91,105,93,59,116,61,100,40,110,44,101,46,116,121,112,101,44,111,44,101,46,107,101,121,44,101,46,114,101,102,41,125,101,108,115,101,32,52,56,49,38,110,63,116,61,115,40,110,44,101,46,116,121,112,101,44,101,46,99,108,97,115,115,78,97,109,101,44,101,46,99,104,105,108,100,114,101,110,44,101,46,99,104,105,108,100,70,108,97,103,115,44,101,46,112,114,111,112,115,44,101,46,107,101,121,44,101,46,114,101,102,41,58,49,54,38,110,63,116,61,36,40,101,46,99,104,105,108,100,114,101,110,44,101,46,107,101,121,41,58,49,48,50,52,38,110,38,38,40,116,61,101,41,59,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,120,40,41,123,114,101,116,117,114,110,32,36,40,34,34,44,110,117,108,108,41,125,102,117,110,99,116,105,111,110,32,78,40,101,44,116,44,110,44,111,41,123,102,111,114,40,118,97,114,32,114,61,101,46,108,101,110,103,116,104,59,110,60,114,59,110,43,43,41,123,118,97,114,32,105,61,101,91,110,93,59,105,102,40,33,102,40,105,41,41,123,118,97,114,32,97,61,111,43,107,43,110,59,105,102,40,117,40,105,41,41,78,40,105,44,116,44,48,44,97,41,59,101,108,115,101,123,105,102,40,112,40,105,41,41,105,61,36,40,105,44,97,41,59,101,108,115,101,123,118,97,114,32,115,61,105,46,107,101,121,44,108,61,104,40,115,41,38,38,115,91,48,93,61,61,61,107,59,121,40,105,46,100,111,109,41,38,38,33,108,124,124,40,105,61,119,40,105,41,41,44,121,40,115,41,124,124,108,63,105,46,107,101,121,61,97,58,105,46,107,101,121,61,111,43,115,125,116,46,112,117,115,104,40,105,41,125,125,125,125,102,117,110,99,116,105,111,110,32,83,40,101,44,116,41,123,118,97,114,32,110,44,111,61,49,59,105,102,40,102,40,116,41,41,110,61,116,59,101,108,115,101,32,105,102,40,104,40,116,41,41,111,61,50,44,110,61,36,40,116,41,59,101,108,115,101,32,105,102,40,118,40,116,41,41,111,61,50,44,110,61,36,40,116,43,34,34,41,59,101,108,115,101,32,105,102,40,117,40,116,41,41,123,118,97,114,32,114,61,116,46,108,101,110,103,116,104,59,105,102,40,48,61,61,61,114,41,110,61,110,117,108,108,44,111,61,49,59,101,108,115,101,123,40,79,98,106,101,99,116,46,105,115,70,114,111,122,101,110,40,116,41,124,124,33,48,61,61,61,116,46,36,41,38,38,40,116,61,116,46,115,108,105,99,101,40,41,41,44,111,61,56,59,102,111,114,40,118,97,114,32,105,61,48,59,105,60,114,59,105,43,43,41,123,118,97,114,32,97,61,116,91,105,93,59,105,102,40,102,40,97,41,124,124,117,40,97,41,41,123,78,40,116,44,110,61,110,124,124,116,46,115,108,105,99,101,40,48,44,105,41,44,105,44,34,34,41,59,98,114,101,97,107,125,105,102,40,112,40,97,41,41,40,110,61,110,124,124,116,46,115,108,105,99,101,40,48,44,105,41,41,46,112,117,115,104,40,36,40,97,44,107,43,105,41,41,59,101,108,115,101,123,118,97,114,32,115,61,97,46,107,101,121,44,108,61,121,40,97,46,100,111,109,41,44,100,61,121,40,115,41,44,99,61,33,100,38,38,115,91,48,93,61,61,61,107,59,33,108,124,124,100,124,124,99,63,40,110,61,110,124,124,116,46,115,108,105,99,101,40,48,44,105,41,44,108,38,38,33,99,124,124,40,97,61,119,40,97,41,41,44,40,100,124,124,99,41,38,38,40,97,46,107,101,121,61,107,43,105,41,44,110,46,112,117,115,104,40,97,41,41,58,110,38,38,110,46,112,117,115,104,40,97,41,125,125,40,110,61,110,124,124,116,41,46,36,61,33,48,125,125,101,108,115,101,32,121,40,40,110,61,116,41,46,100,111,109,41,124,124,40,110,61,119,40,116,41,41,44,111,61,50,59,114,101,116,117,114,110,32,101,46,99,104,105,108,100,114,101,110,61,110,44,101,46,99,104,105,108,100,70,108,97,103,115,61,111,44,101,125,118,97,114,32,80,61,123,97,102,116,101,114,82,101,110,100,101,114,58,110,117,108,108,44,98,101,102,111,114,101,82,101,110,100,101,114,58,110,117,108,108,44,99,114,101,97,116,101,86,78,111,100,101,58,110,117,108,108,44,114,101,110,100,101,114,67,111,109,112,108,101,116,101,58,110,117,108,108,125,44,116,61,34,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,49,57,57,57,47,120,108,105,110,107,34,44,110,61,34,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,88,77,76,47,49,57,57,56,47,110,97,109,101,115,112,97,99,101,34,44,79,61,34,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,115,118,103,34,44,84,61,123,34,120,108,105,110,107,58,97,99,116,117,97,116,101,34,58,116,44,34,120,108,105,110,107,58,97,114,99,114,111,108,101,34,58,116,44,34,120,108,105,110,107,58,104,114,101,102,34,58,116,44,34,120,108,105,110,107,58,114,111,108,101,34,58,116,44,34,120,108,105,110,107,58,115,104,111,119,34,58,116,44,34,120,108,105,110,107,58,116,105,116,108,101,34,58,116,44,34,120,108,105,110,107,58,116,121,112,101,34,58,116,44,34,120,109,108,58,98,97,115,101,34,58,110,44,34,120,109,108,58,108,97,110,103,34,58,110,44,34,120,109,108,58,115,112,97,99,101,34,58,110,125,44,76,61,123,125,44,85,61,91,93,59,102,117,110,99,116,105,111,110,32,77,40,101,44,116,41,123,101,46,97,112,112,101,110,100,67,104,105,108,100,40,116,41,125,102,117,110,99,116,105,111,110,32,69,40,101,44,116,44,110,41,123,68,40,110,41,63,77,40,101,44,116,41,58,101,46,105,110,115,101,114,116,66,101,102,111,114,101,40,116,44,110,41,125,102,117,110,99,116,105,111,110,32,70,40,101,44,116,44,110,41,123,101,46,114,101,112,108,97,99,101,67,104,105,108,100,40,116,44,110,41,125,102,117,110,99,116,105,111,110,32,73,40,101,41,123,102,111,114,40,118,97,114,32,116,59,118,111,105,100,32,48,33,61,61,40,116,61,101,46,115,104,105,102,116,40,41,41,59,41,116,40,41,125,118,97,114,32,65,61,123,125,44,86,61,123,125,59,102,117,110,99,116,105,111,110,32,82,40,101,44,116,44,110,41,123,118,97,114,32,114,44,111,44,105,61,65,91,101,93,44,97,61,110,46,36,69,86,59,116,63,40,105,124,124,40,86,91,101,93,61,40,114,61,101,44,111,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,46,116,121,112,101,44,110,61,34,99,108,105,99,107,34,61,61,61,116,124,124,34,100,98,108,99,108,105,99,107,34,61,61,61,116,59,105,102,40,110,38,38,48,33,61,61,101,46,98,117,116,116,111,110,41,114,101,116,117,114,110,32,101,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,44,33,49,59,101,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,61,66,59,118,97,114,32,111,61,123,100,111,109,58,100,111,99,117,109,101,110,116,125,59,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,101,44,34,99,117,114,114,101,110,116,84,97,114,103,101,116,34,44,123,99,111,110,102,105,103,117,114,97,98,108,101,58,33,48,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,111,46,100,111,109,125,125,41,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,111,44,114,41,123,118,97,114,32,105,61,116,59,102,111,114,40,59,33,121,40,105,41,59,41,123,105,102,40,110,38,38,105,46,100,105,115,97,98,108,101,100,41,114,101,116,117,114,110,59,118,97,114,32,97,61,105,46,36,69,86,59,105,102,40,97,41,123,118,97,114,32,115,61,97,91,111,93,59,105,102,40,115,38,38,40,114,46,100,111,109,61,105,44,115,46,101,118,101,110,116,63,115,46,101,118,101,110,116,40,115,46,100,97,116,97,44,101,41,58,115,40,101,41,44,101,46,99,97,110,99,101,108,66,117,98,98,108,101,41,41,114,101,116,117,114,110,125,105,61,105,46,112,97,114,101,110,116,78,111,100,101,125,125,40,101,44,101,46,116,97,114,103,101,116,44,110,44,114,44,111,41,125,44,100,111,99,117,109,101,110,116,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,106,40,114,41,44,111,41,44,111,41,44,65,91,101,93,61,48,41,44,97,124,124,40,97,61,110,46,36,69,86,61,123,125,41,44,97,91,101,93,124,124,65,91,101,93,43,43,44,97,91,101,93,61,116,41,58,97,38,38,97,91,101,93,38,38,40,65,91,101,93,45,45,44,49,61,61,61,105,38,38,40,100,111,99,117,109,101,110,116,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,40,106,40,101,41,44,86,91,101,93,41,44,86,91,101,93,61,110,117,108,108,41,44,97,91,101,93,61,116,41,125,102,117,110,99,116,105,111,110,32,106,40,101,41,123,114,101,116,117,114,110,32,101,46,115,117,98,115,116,114,40,50,41,46,116,111,76,111,119,101,114,67,97,115,101,40,41,125,102,117,110,99,116,105,111,110,32,66,40,41,123,116,104,105,115,46,99,97,110,99,101,108,66,117,98,98,108,101,61,33,48,44,116,104,105,115,46,105,109,109,101,100,105,97,116,101,80,114,111,112,97,103,97,116,105,111,110,83,116,111,112,112,101,100,124,124,116,104,105,115,46,115,116,111,112,73,109,109,101,100,105,97,116,101,80,114,111,112,97,103,97,116,105,111,110,40,41,125,102,117,110,99,116,105,111,110,32,87,40,101,44,116,41,123,118,97,114,32,110,61,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,105,34,41,59,114,101,116,117,114,110,32,110,46,105,110,110,101,114,72,84,77,76,61,116,44,110,46,105,110,110,101,114,72,84,77,76,61,61,61,101,46,105,110,110,101,114,72,84,77,76,125,102,117,110,99,116,105,111,110,32,72,40,101,44,116,44,110,41,123,105,102,40,101,91,116,93,41,123,118,97,114,32,111,61,101,91,116,93,59,111,46,101,118,101,110,116,63,111,46,101,118,101,110,116,40,111,46,100,97,116,97,44,110,41,58,111,40,110,41,125,101,108,115,101,123,118,97,114,32,114,61,116,46,116,111,76,111,119,101,114,67,97,115,101,40,41,59,101,91,114,93,38,38,101,91,114,93,40,110,41,125,125,102,117,110,99,116,105,111,110,32,111,40,115,44,108,41,123,118,97,114,32,101,61,102,117,110,99,116,105,111,110,40,101,41,123,101,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,59,118,97,114,32,116,61,116,104,105,115,46,36,86,59,105,102,40,116,41,123,118,97,114,32,110,61,116,46,112,114,111,112,115,124,124,76,44,111,61,116,46,100,111,109,59,105,102,40,104,40,115,41,41,72,40,110,44,115,44,101,41,59,101,108,115,101,32,102,111,114,40,118,97,114,32,114,61,48,59,114,60,115,46,108,101,110,103,116,104,59,114,43,43,41,72,40,110,44,115,91,114,93,44,101,41,59,105,102,40,95,40,108,41,41,123,118,97,114,32,105,61,116,104,105,115,46,36,86,44,97,61,105,46,112,114,111,112,115,124,124,76,59,108,40,97,44,111,44,33,49,44,105,41,125,125,125,59,114,101,116,117,114,110,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,101,44,34,119,114,97,112,112,101,100,34,44,123,99,111,110,102,105,103,117,114,97,98,108,101,58,33,49,44,101,110,117,109,101,114,97,98,108,101,58,33,49,44,118,97,108,117,101,58,33,48,44,119,114,105,116,97,98,108,101,58,33,49,125,41,44,101,125,102,117,110,99,116,105,111,110,32,113,40,101,41,123,114,101,116,117,114,110,34,99,104,101,99,107,98,111,120,34,61,61,61,101,124,124,34,114,97,100,105,111,34,61,61,61,101,125,118,97,114,32,75,61,111,40,34,111,110,73,110,112,117,116,34,44,122,41,44,88,61,111,40,91,34,111,110,67,108,105,99,107,34,44,34,111,110,67,104,97,110,103,101,34,93,44,122,41,59,102,117,110,99,116,105,111,110,32,81,40,101,41,123,101,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,125,102,117,110,99,116,105,111,110,32,122,40,101,44,116,41,123,118,97,114,32,110,61,101,46,116,121,112,101,44,111,61,101,46,118,97,108,117,101,44,114,61,101,46,99,104,101,99,107,101,100,44,105,61,101,46,109,117,108,116,105,112,108,101,44,97,61,101,46,100,101,102,97,117,108,116,86,97,108,117,101,44,115,61,33,68,40,111,41,59,110,38,38,110,33,61,61,116,46,116,121,112,101,38,38,116,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,116,121,112,101,34,44,110,41,44,68,40,105,41,124,124,105,61,61,61,116,46,109,117,108,116,105,112,108,101,124,124,40,116,46,109,117,108,116,105,112,108,101,61,105,41,44,68,40,97,41,124,124,115,124,124,40,116,46,100,101,102,97,117,108,116,86,97,108,117,101,61,97,43,34,34,41,44,113,40,110,41,63,40,115,38,38,40,116,46,118,97,108,117,101,61,111,41,44,68,40,114,41,124,124,40,116,46,99,104,101,99,107,101,100,61,114,41,41,58,115,38,38,116,46,118,97,108,117,101,33,61,61,111,63,40,116,46,100,101,102,97,117,108,116,86,97,108,117,101,61,111,44,116,46,118,97,108,117,101,61,111,41,58,68,40,114,41,124,124,40,116,46,99,104,101,99,107,101,100,61,114,41,125,102,117,110,99,116,105,111,110,32,71,40,101,44,116,41,123,105,102,40,34,111,112,116,103,114,111,117,112,34,61,61,61,101,46,116,121,112,101,41,123,118,97,114,32,110,61,101,46,99,104,105,108,100,114,101,110,44,111,61,101,46,99,104,105,108,100,70,108,97,103,115,59,105,102,40,49,50,38,111,41,102,111,114,40,118,97,114,32,114,61,48,44,105,61,110,46,108,101,110,103,116,104,59,114,60,105,59,114,43,43,41,89,40,110,91,114,93,44,116,41,59,101,108,115,101,32,50,61,61,61,111,38,38,89,40,110,44,116,41,125,101,108,115,101,32,89,40,101,44,116,41,125,102,117,110,99,116,105,111,110,32,89,40,101,44,116,41,123,118,97,114,32,110,61,101,46,112,114,111,112,115,124,124,76,44,111,61,101,46,100,111,109,59,111,46,118,97,108,117,101,61,110,46,118,97,108,117,101,44,117,40,116,41,38,38,45,49,33,61,61,116,46,105,110,100,101,120,79,102,40,110,46,118,97,108,117,101,41,124,124,110,46,118,97,108,117,101,61,61,61,116,63,111,46,115,101,108,101,99,116,101,100,61,33,48,58,68,40,116,41,38,38,68,40,110,46,115,101,108,101,99,116,101,100,41,124,124,40,111,46,115,101,108,101,99,116,101,100,61,110,46,115,101,108,101,99,116,101,100,124,124,33,49,41,125,81,46,119,114,97,112,112,101,100,61,33,48,59,118,97,114,32,74,61,111,40,34,111,110,67,104,97,110,103,101,34,44,90,41,59,102,117,110,99,116,105,111,110,32,90,40,101,44,116,44,110,44,111,41,123,118,97,114,32,114,61,66,111,111,108,101,97,110,40,101,46,109,117,108,116,105,112,108,101,41,59,68,40,101,46,109,117,108,116,105,112,108,101,41,124,124,114,61,61,61,116,46,109,117,108,116,105,112,108,101,124,124,40,116,46,109,117,108,116,105,112,108,101,61,114,41,59,118,97,114,32,105,61,111,46,99,104,105,108,100,70,108,97,103,115,59,105,102,40,48,61,61,40,49,38,105,41,41,123,118,97,114,32,97,61,111,46,99,104,105,108,100,114,101,110,44,115,61,101,46,118,97,108,117,101,59,105,102,40,110,38,38,68,40,115,41,38,38,40,115,61,101,46,100,101,102,97,117,108,116,86,97,108,117,101,41,44,49,50,38,105,41,102,111,114,40,118,97,114,32,108,61,48,44,100,61,97,46,108,101,110,103,116,104,59,108,60,100,59,108,43,43,41,71,40,97,91,108,93,44,115,41,59,101,108,115,101,32,50,61,61,61,105,38,38,71,40,97,44,115,41,125,125,118,97,114,32,101,101,61,111,40,34,111,110,73,110,112,117,116,34,44,110,101,41,44,116,101,61,111,40,34,111,110,67,104,97,110,103,101,34,41,59,102,117,110,99,116,105,111,110,32,110,101,40,101,44,116,44,110,41,123,118,97,114,32,111,61,101,46,118,97,108,117,101,44,114,61,116,46,118,97,108,117,101,59,105,102,40,68,40,111,41,41,123,105,102,40,110,41,123,118,97,114,32,105,61,101,46,100,101,102,97,117,108,116,86,97,108,117,101,59,68,40,105,41,124,124,105,61,61,61,114,124,124,40,116,46,100,101,102,97,117,108,116,86,97,108,117,101,61,105,44,116,46,118,97,108,117,101,61,105,41,125,125,101,108,115,101,32,114,33,61,61,111,38,38,40,116,46,100,101,102,97,117,108,116,86,97,108,117,101,61,111,44,116,46,118,97,108,117,101,61,111,41,125,102,117,110,99,116,105,111,110,32,111,101,40,101,44,116,44,110,44,111,44,114,44,105,41,123,54,52,38,101,63,122,40,111,44,110,41,58,50,53,54,38,101,63,90,40,111,44,110,44,114,44,116,41,58,49,50,56,38,101,38,38,110,101,40,111,44,110,44,114,41,44,105,38,38,40,110,46,36,86,61,116,41,125,102,117,110,99,116,105,111,110,32,114,101,40,101,44,116,44,110,41,123,118,97,114,32,111,44,114,44,105,59,54,52,38,101,63,40,105,61,116,44,113,40,110,46,116,121,112,101,41,63,40,105,46,111,110,99,104,97,110,103,101,61,88,44,105,46,111,110,99,108,105,99,107,61,81,41,58,105,46,111,110,105,110,112,117,116,61,75,41,58,50,53,54,38,101,63,116,46,111,110,99,104,97,110,103,101,61,74,58,49,50,56,38,101,38,38,40,114,61,110,44,40,111,61,116,41,46,111,110,105,110,112,117,116,61,101,101,44,114,46,111,110,67,104,97,110,103,101,38,38,40,111,46,111,110,99,104,97,110,103,101,61,116,101,41,41,125,102,117,110,99,116,105,111,110,32,105,101,40,101,41,123,114,101,116,117,114,110,32,101,46,116,121,112,101,38,38,113,40,101,46,116,121,112,101,41,63,33,68,40,101,46,99,104,101,99,107,101,100,41,58,33,68,40,101,46,118,97,108,117,101,41,125,102,117,110,99,116,105,111,110,32,97,101,40,101,44,116,41,123,118,97,114,32,110,44,111,59,115,101,40,101,41,44,116,38,38,101,46,100,111,109,38,38,40,110,61,116,44,111,61,101,46,100,111,109,44,110,46,114,101,109,111,118,101,67,104,105,108,100,40,111,41,44,101,46,100,111,109,61,110,117,108,108,41,125,102,117,110,99,116,105,111,110,32,115,101,40,101,41,123,118,97,114,32,116,61,101,46,102,108,97,103,115,59,105,102,40,52,56,49,38,116,41,123,118,97,114,32,110,61,101,46,114,101,102,44,111,61,101,46,112,114,111,112,115,59,95,40,110,41,38,38,110,40,110,117,108,108,41,59,118,97,114,32,114,61,101,46,99,104,105,108,100,114,101,110,44,105,61,101,46,99,104,105,108,100,70,108,97,103,115,59,105,102,40,49,50,38,105,63,108,101,40,114,41,58,50,61,61,61,105,38,38,115,101,40,114,41,44,33,121,40,111,41,41,102,111,114,40,118,97,114,32,97,32,105,110,32,111,41,115,119,105,116,99,104,40,97,41,123,99,97,115,101,34,111,110,67,108,105,99,107,34,58,99,97,115,101,34,111,110,68,98,108,67,108,105,99,107,34,58,99,97,115,101,34,111,110,70,111,99,117,115,73,110,34,58,99,97,115,101,34,111,110,70,111,99,117,115,79,117,116,34,58,99,97,115,101,34,111,110,75,101,121,68,111,119,110,34,58,99,97,115,101,34,111,110,75,101,121,80,114,101,115,115,34,58,99,97,115,101,34,111,110,75,101,121,85,112,34,58,99,97,115,101,34,111,110,77,111,117,115,101,68,111,119,110,34,58,99,97,115,101,34,111,110,77,111,117,115,101,77,111,118,101,34,58,99,97,115,101,34,111,110,77,111,117,115,101,85,112,34,58,99,97,115,101,34,111,110,83,117,98,109,105,116,34,58,99,97,115,101,34,111,110,84,111,117,99,104,69,110,100,34,58,99,97,115,101,34,111,110,84,111,117,99,104,77,111,118,101,34,58,99,97,115,101,34,111,110,84,111,117,99,104,83,116,97,114,116,34,58,82,40,97,44,110,117,108,108,44,101,46,100,111,109,41,125,125,101,108,115,101,123,118,97,114,32,115,61,101,46,99,104,105,108,100,114,101,110,59,105,102,40,115,41,105,102,40,49,52,38,116,41,123,118,97,114,32,108,61,101,46,114,101,102,59,52,38,116,63,40,95,40,115,46,99,111,109,112,111,110,101,110,116,87,105,108,108,85,110,109,111,117,110,116,41,38,38,115,46,99,111,109,112,111,110,101,110,116,87,105,108,108,85,110,109,111,117,110,116,40,41,44,95,40,108,41,38,38,108,40,110,117,108,108,41,44,115,46,36,85,78,61,33,48,44,115,46,36,76,73,38,38,115,101,40,115,46,36,76,73,41,41,58,40,33,68,40,108,41,38,38,95,40,108,46,111,110,67,111,109,112,111,110,101,110,116,87,105,108,108,85,110,109,111,117,110,116,41,38,38,108,46,111,110,67,111,109,112,111,110,101,110,116,87,105,108,108,85,110,109,111,117,110,116,40,101,46,100,111,109,44,101,46,112,114,111,112,115,124,124,76,41,44,115,101,40,115,41,41,125,101,108,115,101,32,49,48,50,52,38,116,38,38,97,101,40,115,44,101,46,116,121,112,101,41,125,125,102,117,110,99,116,105,111,110,32,108,101,40,101,41,123,102,111,114,40,118,97,114,32,116,61,48,44,110,61,101,46,108,101,110,103,116,104,59,116,60,110,59,116,43,43,41,115,101,40,101,91,116,93,41,125,102,117,110,99,116,105,111,110,32,100,101,40,101,44,116,41,123,108,101,40,116,41,44,101,46,116,101,120,116,67,111,110,116,101,110,116,61,34,34,125,102,117,110,99,116,105,111,110,32,99,101,40,101,44,116,41,123,115,119,105,116,99,104,40,101,41,123,99,97,115,101,34,97,110,105,109,97,116,105,111,110,73,116,101,114,97,116,105,111,110,67,111,117,110,116,34,58,99,97,115,101,34,98,111,114,100,101,114,73,109,97,103,101,79,117,116,115,101,116,34,58,99,97,115,101,34,98,111,114,100,101,114,73,109,97,103,101,83,108,105,99,101,34,58,99,97,115,101,34,98,111,114,100,101,114,73,109,97,103,101,87,105,100,116,104,34,58,99,97,115,101,34,98,111,120,70,108,101,120,34,58,99,97,115,101,34,98,111,120,70,108,101,120,71,114,111,117,112,34,58,99,97,115,101,34,98,111,120,79,114,100,105,110,97,108,71,114,111,117,112,34,58,99,97,115,101,34,99,111,108,117,109,110,67,111,117,110,116,34,58,99,97,115,101,34,102,105,108,108,79,112,97,99,105,116,121,34,58,99,97,115,101,34,102,108,101,120,34,58,99,97,115,101,34,102,108,101,120,71,114,111,119,34,58,99,97,115,101,34,102,108,101,120,78,101,103,97,116,105,118,101,34,58,99,97,115,101,34,102,108,101,120,79,114,100,101,114,34,58,99,97,115,101,34,102,108,101,120,80,111,115,105,116,105,118,101,34,58,99,97,115,101,34,102,108,101,120,83,104,114,105,110,107,34,58,99,97,115,101,34,102,108,111,111,100,79,112,97,99,105,116,121,34,58,99,97,115,101,34,102,111,110,116,87,101,105,103,104,116,34,58,99,97,115,101,34,103,114,105,100,67,111,108,117,109,110,34,58,99,97,115,101,34,103,114,105,100,82,111,119,34,58,99,97,115,101,34,108,105,110,101,67,108,97,109,112,34,58,99,97,115,101,34,108,105,110,101,72,101,105,103,104,116,34,58,99,97,115,101,34,111,112,97,99,105,116,121,34,58,99,97,115,101,34,111,114,100,101,114,34,58,99,97,115,101,34,111,114,112,104,97,110,115,34,58,99,97,115,101,34,115,116,111,112,79,112,97,99,105,116,121,34,58,99,97,115,101,34,115,116,114,111,107,101,68,97,115,104,97,114,114,97,121,34,58,99,97,115,101,34,115,116,114,111,107,101,68,97,115,104,111,102,102,115,101,116,34,58,99,97,115,101,34,115,116,114,111,107,101,77,105,116,101,114,108,105,109,105,116,34,58,99,97,115,101,34,115,116,114,111,107,101,79,112,97,99,105,116,121,34,58,99,97,115,101,34,115,116,114,111,107,101,87,105,100,116,104,34,58,99,97,115,101,34,116,97,98,83,105,122,101,34,58,99,97,115,101,34,119,105,100,111,119,115,34,58,99,97,115,101,34,122,73,110,100,101,120,34,58,99,97,115,101,34,122,111,111,109,34,58,114,101,116,117,114,110,32,116,59,100,101,102,97,117,108,116,58,114,101,116,117,114,110,32,116,43,34,112,120,34,125,125,102,117,110,99,116,105,111,110,32,117,101,40,101,44,116,44,110,44,111,44,114,44,105,44,97,41,123,115,119,105,116,99,104,40,101,41,123,99,97,115,101,34,111,110,67,108,105,99,107,34,58,99,97,115,101,34,111,110,68,98,108,67,108,105,99,107,34,58,99,97,115,101,34,111,110,70,111,99,117,115,73,110,34,58,99,97,115,101,34,111,110,70,111,99,117,115,79,117,116,34,58,99,97,115,101,34,111,110,75,101,121,68,111,119,110,34,58,99,97,115,101,34,111,110,75,101,121,80,114,101,115,115,34,58,99,97,115,101,34,111,110,75,101,121,85,112,34,58,99,97,115,101,34,111,110,77,111,117,115,101,68,111,119,110,34,58,99,97,115,101,34,111,110,77,111,117,115,101,77,111,118,101,34,58,99,97,115,101,34,111,110,77,111,117,115,101,85,112,34,58,99,97,115,101,34,111,110,83,117,98,109,105,116,34,58,99,97,115,101,34,111,110,84,111,117,99,104,69,110,100,34,58,99,97,115,101,34,111,110,84,111,117,99,104,77,111,118,101,34,58,99,97,115,101,34,111,110,84,111,117,99,104,83,116,97,114,116,34,58,82,40,101,44,110,44,111,41,59,98,114,101,97,107,59,99,97,115,101,34,99,104,105,108,100,114,101,110,34,58,99,97,115,101,34,99,104,105,108,100,114,101,110,84,121,112,101,34,58,99,97,115,101,34,99,108,97,115,115,78,97,109,101,34,58,99,97,115,101,34,100,101,102,97,117,108,116,86,97,108,117,101,34,58,99,97,115,101,34,107,101,121,34,58,99,97,115,101,34,109,117,108,116,105,112,108,101,34,58,99,97,115,101,34,114,101,102,34,58,98,114,101,97,107,59,99,97,115,101,34,97,117,116,111,70,111,99,117,115,34,58,111,46,97,117,116,111,102,111,99,117,115,61,33,33,110,59,98,114,101,97,107,59,99,97,115,101,34,97,108,108,111,119,102,117,108,108,115,99,114,101,101,110,34,58,99,97,115,101,34,97,117,116,111,112,108,97,121,34,58,99,97,115,101,34,99,97,112,116,117,114,101,34,58,99,97,115,101,34,99,104,101,99,107,101,100,34,58,99,97,115,101,34,99,111,110,116,114,111,108,115,34,58,99,97,115,101,34,100,101,102,97,117,108,116,34,58,99,97,115,101,34,100,105,115,97,98,108,101,100,34,58,99,97,115,101,34,104,105,100,100,101,110,34,58,99,97,115,101,34,105,110,100,101,116,101,114,109,105,110,97,116,101,34,58,99,97,115,101,34,108,111,111,112,34,58,99,97,115,101,34,109,117,116,101,100,34,58,99,97,115,101,34,110,111,118,97,108,105,100,97,116,101,34,58,99,97,115,101,34,111,112,101,110,34,58,99,97,115,101,34,114,101,97,100,79,110,108,121,34,58,99,97,115,101,34,114,101,113,117,105,114,101,100,34,58,99,97,115,101,34,114,101,118,101,114,115,101,100,34,58,99,97,115,101,34,115,99,111,112,101,100,34,58,99,97,115,101,34,115,101,97,109,108,101,115,115,34,58,99,97,115,101,34,115,101,108,101,99,116,101,100,34,58,111,91,101,93,61,33,33,110,59,98,114,101,97,107,59,99,97,115,101,34,100,101,102,97,117,108,116,67,104,101,99,107,101,100,34,58,99,97,115,101,34,118,97,108,117,101,34,58,99,97,115,101,34,118,111,108,117,109,101,34,58,105,102,40,105,38,38,34,118,97,108,117,101,34,61,61,61,101,41,114,101,116,117,114,110,59,118,97,114,32,115,61,68,40,110,41,63,34,34,58,110,59,111,91,101,93,33,61,61,115,38,38,40,111,91,101,93,61,115,41,59,98,114,101,97,107,59,99,97,115,101,34,100,97,110,103,101,114,111,117,115,108,121,83,101,116,73,110,110,101,114,72,84,77,76,34,58,118,97,114,32,108,61,116,38,38,116,46,95,95,104,116,109,108,124,124,34,34,44,100,61,110,38,38,110,46,95,95,104,116,109,108,124,124,34,34,59,108,33,61,61,100,38,38,40,68,40,100,41,124,124,87,40,111,44,100,41,124,124,40,121,40,97,41,124,124,40,49,50,38,97,46,99,104,105,108,100,70,108,97,103,115,63,108,101,40,97,46,99,104,105,108,100,114,101,110,41,58,50,61,61,61,97,46,99,104,105,108,100,70,108,97,103,115,38,38,115,101,40,97,46,99,104,105,108,100,114,101,110,41,44,97,46,99,104,105,108,100,114,101,110,61,110,117,108,108,44,97,46,99,104,105,108,100,70,108,97,103,115,61,49,41,44,111,46,105,110,110,101,114,72,84,77,76,61,100,41,41,59,98,114,101,97,107,59,100,101,102,97,117,108,116,58,34,111,34,61,61,61,101,91,48,93,38,38,34,110,34,61,61,61,101,91,49,93,63,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,111,41,123,118,97,114,32,114,44,105,44,97,61,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,59,105,102,40,95,40,110,41,124,124,68,40,110,41,41,123,118,97,114,32,115,61,111,91,97,93,59,115,38,38,115,46,119,114,97,112,112,101,100,124,124,40,111,91,97,93,61,110,41,125,101,108,115,101,123,118,97,114,32,108,61,110,46,101,118,101,110,116,59,108,38,38,95,40,108,41,38,38,40,111,91,97,93,61,40,114,61,108,44,105,61,110,44,102,117,110,99,116,105,111,110,40,101,41,123,114,40,105,46,100,97,116,97,44,101,41,125,41,41,125,125,40,101,44,48,44,110,44,111,41,58,68,40,110,41,63,111,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,40,101,41,58,34,115,116,121,108,101,34,61,61,61,101,63,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,111,44,114,44,105,61,110,46,115,116,121,108,101,59,105,102,40,104,40,116,41,41,105,46,99,115,115,84,101,120,116,61,116,59,101,108,115,101,32,105,102,40,68,40,101,41,124,124,104,40,101,41,41,102,111,114,40,111,32,105,110,32,116,41,114,61,116,91,111,93,44,105,91,111,93,61,118,40,114,41,63,99,101,40,111,44,114,41,58,114,59,101,108,115,101,123,102,111,114,40,111,32,105,110,32,116,41,40,114,61,116,91,111,93,41,33,61,61,101,91,111,93,38,38,40,105,91,111,93,61,118,40,114,41,63,99,101,40,111,44,114,41,58,114,41,59,102,111,114,40,111,32,105,110,32,101,41,68,40,116,91,111,93,41,38,38,40,105,91,111,93,61,34,34,41,125,125,40,116,44,110,44,111,41,58,114,38,38,84,91,101,93,63,111,46,115,101,116,65,116,116,114,105,98,117,116,101,78,83,40,84,91,101,93,44,101,44,110,41,58,111,46,115,101,116,65,116,116,114,105,98,117,116,101,40,101,44,110,41,125,125,102,117,110,99,116,105,111,110,32,112,101,40,101,44,116,44,110,44,111,44,114,41,123,118,97,114,32,105,61,33,49,44,97,61,48,60,40,52,52,56,38,116,41,59,102,111,114,40,118,97,114,32,115,32,105,110,32,97,38,38,40,105,61,105,101,40,110,41,41,38,38,114,101,40,116,44,111,44,110,41,44,110,41,117,101,40,115,44,110,117,108,108,44,110,91,115,93,44,111,44,114,44,105,44,110,117,108,108,41,59,97,38,38,111,101,40,116,44,101,44,111,44,110,44,33,48,44,105,41,125,102,117,110,99,116,105,111,110,32,102,101,40,101,44,116,44,110,44,111,41,123,118,97,114,32,114,61,110,101,119,32,116,40,110,44,111,41,59,105,102,40,40,101,46,99,104,105,108,100,114,101,110,61,114,41,46,36,86,61,101,44,114,46,36,66,83,61,33,49,44,114,46,99,111,110,116,101,120,116,61,111,44,114,46,112,114,111,112,115,61,61,61,76,38,38,40,114,46,112,114,111,112,115,61,110,41,44,114,46,36,85,78,61,33,49,44,95,40,114,46,99,111,109,112,111,110,101,110,116,87,105,108,108,77,111,117,110,116,41,41,123,105,102,40,114,46,36,66,82,61,33,48,44,114,46,99,111,109,112,111,110,101,110,116,87,105,108,108,77,111,117,110,116,40,41,44,114,46,36,80,83,83,41,123,118,97,114,32,105,61,114,46,115,116,97,116,101,44,97,61,114,46,36,80,83,59,105,102,40,121,40,105,41,41,114,46,115,116,97,116,101,61,97,59,101,108,115,101,32,102,111,114,40,118,97,114,32,115,32,105,110,32,97,41,105,91,115,93,61,97,91,115,93,59,114,46,36,80,83,83,61,33,49,44,114,46,36,80,83,61,110,117,108,108,125,114,46,36,66,82,61,33,49,125,95,40,80,46,98,101,102,111,114,101,82,101,110,100,101,114,41,38,38,80,46,98,101,102,111,114,101,82,101,110,100,101,114,40,114,41,59,118,97,114,32,108,44,100,61,104,101,40,114,46,114,101,110,100,101,114,40,110,44,114,46,115,116,97,116,101,44,111,41,44,101,41,59,114,101,116,117,114,110,32,95,40,114,46,103,101,116,67,104,105,108,100,67,111,110,116,101,120,116,41,38,38,40,108,61,114,46,103,101,116,67,104,105,108,100,67,111,110,116,101,120,116,40,41,41,44,68,40,108,41,63,114,46,36,67,88,61,111,58,114,46,36,67,88,61,98,40,111,44,108,41,44,95,40,80,46,97,102,116,101,114,82,101,110,100,101,114,41,38,38,80,46,97,102,116,101,114,82,101,110,100,101,114,40,114,41,44,114,46,36,76,73,61,100,44,114,125,102,117,110,99,116,105,111,110,32,104,101,40,101,44,116,41,123,114,101,116,117,114,110,32,102,40,101,41,63,101,61,120,40,41,58,112,40,101,41,63,101,61,36,40,101,44,110,117,108,108,41,58,40,101,46,100,111,109,38,38,40,101,61,119,40,101,41,41,44,49,52,38,101,46,102,108,97,103,115,38,38,40,101,46,112,97,114,101,110,116,86,78,111,100,101,61,116,41,41,44,101,125,102,117,110,99,116,105,111,110,32,118,101,40,101,44,116,44,110,44,111,41,123,118,97,114,32,114,61,101,46,102,108,97,103,115,59,114,101,116,117,114,110,32,52,56,49,38,114,63,109,101,40,101,44,116,44,110,44,111,41,58,49,52,38,114,63,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,111,44,114,41,123,118,97,114,32,105,44,97,61,101,46,116,121,112,101,44,115,61,101,46,112,114,111,112,115,124,124,76,44,108,61,101,46,114,101,102,59,105,102,40,114,41,123,118,97,114,32,100,61,102,101,40,101,44,97,44,115,44,110,41,59,101,46,100,111,109,61,105,61,118,101,40,100,46,36,76,73,44,110,117,108,108,44,100,46,36,67,88,44,111,41,44,98,101,40,101,44,108,44,100,41,44,100,46,36,85,80,68,61,33,49,125,101,108,115,101,123,118,97,114,32,99,61,104,101,40,97,40,115,44,110,41,44,101,41,59,101,46,99,104,105,108,100,114,101,110,61,99,44,101,46,100,111,109,61,105,61,118,101,40,99,44,110,117,108,108,44,110,44,111,41,44,107,101,40,115,44,108,44,105,41,125,121,40,116,41,124,124,77,40,116,44,105,41,59,114,101,116,117,114,110,32,105,125,40,101,44,116,44,110,44,111,44,48,60,40,52,38,114,41,41,58,53,49,50,38,114,124,124,49,54,38,114,63,103,101,40,101,44,116,41,58,49,48,50,52,38,114,63,40,118,101,40,101,46,99,104,105,108,100,114,101,110,44,101,46,116,121,112,101,44,110,44,33,49,41,44,101,46,100,111,109,61,103,101,40,120,40,41,44,116,41,41,58,118,111,105,100,32,48,125,102,117,110,99,116,105,111,110,32,103,101,40,101,44,116,41,123,118,97,114,32,110,61,101,46,100,111,109,61,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,84,101,120,116,78,111,100,101,40,101,46,99,104,105,108,100,114,101,110,41,59,114,101,116,117,114,110,32,121,40,116,41,124,124,77,40,116,44,110,41,44,110,125,102,117,110,99,116,105,111,110,32,109,101,40,101,44,116,44,110,44,111,41,123,118,97,114,32,114,61,101,46,102,108,97,103,115,44,105,61,101,46,99,104,105,108,100,114,101,110,44,97,61,101,46,112,114,111,112,115,44,115,61,101,46,99,108,97,115,115,78,97,109,101,44,108,61,101,46,114,101,102,44,100,61,101,46,99,104,105,108,100,70,108,97,103,115,59,111,61,111,124,124,48,60,40,51,50,38,114,41,59,118,97,114,32,99,44,117,61,40,99,61,101,46,116,121,112,101,44,33,48,61,61,61,111,63,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,78,83,40,79,44,99,41,58,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,99,41,41,59,105,102,40,101,46,100,111,109,61,117,44,68,40,115,41,124,124,34,34,61,61,61,115,124,124,40,111,63,117,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,115,41,58,117,46,99,108,97,115,115,78,97,109,101,61,115,41,44,121,40,116,41,124,124,77,40,116,44,117,41,44,48,61,61,40,49,38,100,41,41,123,118,97,114,32,112,61,33,48,61,61,61,111,38,38,34,102,111,114,101,105,103,110,79,98,106,101,99,116,34,33,61,61,101,46,116,121,112,101,59,50,61,61,61,100,63,118,101,40,105,44,117,44,110,44,112,41,58,49,50,38,100,38,38,121,101,40,105,44,117,44,110,44,112,41,125,114,101,116,117,114,110,32,121,40,97,41,124,124,112,101,40,101,44,114,44,97,44,117,44,111,41,44,95,40,108,41,38,38,67,101,40,117,44,108,41,44,117,125,102,117,110,99,116,105,111,110,32,121,101,40,101,44,116,44,110,44,111,41,123,102,111,114,40,118,97,114,32,114,61,48,44,105,61,101,46,108,101,110,103,116,104,59,114,60,105,59,114,43,43,41,123,118,97,114,32,97,61,101,91,114,93,59,121,40,97,46,100,111,109,41,124,124,40,101,91,114,93,61,97,61,119,40,97,41,41,44,118,101,40,97,44,116,44,110,44,111,41,125,125,102,117,110,99,116,105,111,110,32,98,101,40,101,44,116,44,110,41,123,118,97,114,32,111,59,95,40,116,41,38,38,116,40,110,41,44,95,40,110,46,99,111,109,112,111,110,101,110,116,68,105,100,77,111,117,110,116,41,38,38,85,46,112,117,115,104,40,40,111,61,110,44,102,117,110,99,116,105,111,110,40,41,123,111,46,99,111,109,112,111,110,101,110,116,68,105,100,77,111,117,110,116,40,41,125,41,41,125,102,117,110,99,116,105,111,110,32,107,101,40,101,44,116,44,110,41,123,118,97,114,32,111,44,114,44,105,59,68,40,116,41,124,124,40,95,40,116,46,111,110,67,111,109,112,111,110,101,110,116,87,105,108,108,77,111,117,110,116,41,38,38,116,46,111,110,67,111,109,112,111,110,101,110,116,87,105,108,108,77,111,117,110,116,40,101,41,44,95,40,116,46,111,110,67,111,109,112,111,110,101,110,116,68,105,100,77,111,117,110,116,41,38,38,85,46,112,117,115,104,40,40,111,61,116,44,114,61,110,44,105,61,101,44,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,111,46,111,110,67,111,109,112,111,110,101,110,116,68,105,100,77,111,117,110,116,40,114,44,105,41,125,41,41,41,125,102,117,110,99,116,105,111,110,32,67,101,40,101,44,116,41,123,85,46,112,117,115,104,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,40,101,41,125,41,125,102,117,110,99,116,105,111,110,32,36,101,40,101,44,116,44,110,44,111,41,123,118,97,114,32,114,44,105,44,97,61,101,46,99,104,105,108,100,114,101,110,44,115,61,101,46,112,114,111,112,115,44,108,61,101,46,99,108,97,115,115,78,97,109,101,44,100,61,101,46,102,108,97,103,115,44,99,61,101,46,114,101,102,59,105,102,40,111,61,111,124,124,48,60,40,51,50,38,100,41,44,49,33,61,61,116,46,110,111,100,101,84,121,112,101,124,124,116,46,116,97,103,78,97,109,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,33,61,61,101,46,116,121,112,101,41,123,118,97,114,32,117,61,109,101,40,101,44,110,117,108,108,44,110,44,111,41,59,101,46,100,111,109,61,117,44,70,40,116,46,112,97,114,101,110,116,78,111,100,101,44,117,44,116,41,125,101,108,115,101,123,118,97,114,32,112,61,40,101,46,100,111,109,61,116,41,46,102,105,114,115,116,67,104,105,108,100,44,102,61,101,46,99,104,105,108,100,70,108,97,103,115,59,105,102,40,48,61,61,40,49,38,102,41,41,123,102,111,114,40,118,97,114,32,104,61,110,117,108,108,59,112,59,41,104,61,112,46,110,101,120,116,83,105,98,108,105,110,103,44,56,61,61,61,112,46,110,111,100,101,84,121,112,101,38,38,40,34,33,34,61,61,61,112,46,100,97,116,97,63,116,46,114,101,112,108,97,99,101,67,104,105,108,100,40,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,84,101,120,116,78,111,100,101,40,34,34,41,44,112,41,58,116,46,114,101,109,111,118,101,67,104,105,108,100,40,112,41,41,44,112,61,104,59,105,102,40,112,61,116,46,102,105,114,115,116,67,104,105,108,100,44,50,61,61,61,102,41,121,40,112,41,63,118,101,40,97,44,116,44,110,44,111,41,58,40,104,61,112,46,110,101,120,116,83,105,98,108,105,110,103,44,68,101,40,97,44,112,44,110,44,111,41,44,112,61,104,41,59,101,108,115,101,32,105,102,40,49,50,38,102,41,102,111,114,40,118,97,114,32,118,61,48,44,103,61,97,46,108,101,110,103,116,104,59,118,60,103,59,118,43,43,41,123,118,97,114,32,109,61,97,91,118,93,59,121,40,112,41,63,118,101,40,109,44,116,44,110,44,111,41,58,40,104,61,112,46,110,101,120,116,83,105,98,108,105,110,103,44,68,101,40,109,44,112,44,110,44,111,41,44,112,61,104,41,125,102,111,114,40,59,112,59,41,104,61,112,46,110,101,120,116,83,105,98,108,105,110,103,44,116,46,114,101,109,111,118,101,67,104,105,108,100,40,112,41,44,112,61,104,125,101,108,115,101,32,121,40,116,46,102,105,114,115,116,67,104,105,108,100,41,124,124,40,114,61,116,44,105,61,115,44,66,111,111,108,101,97,110,40,105,38,38,105,46,100,97,110,103,101,114,111,117,115,108,121,83,101,116,73,110,110,101,114,72,84,77,76,38,38,105,46,100,97,110,103,101,114,111,117,115,108,121,83,101,116,73,110,110,101,114,72,84,77,76,46,95,95,104,116,109,108,38,38,87,40,114,44,105,46,100,97,110,103,101,114,111,117,115,108,121,83,101,116,73,110,110,101,114,72,84,77,76,46,95,95,104,116,109,108,41,41,41,124,124,40,116,46,116,101,120,116,67,111,110,116,101,110,116,61,34,34,44,52,52,56,38,100,38,38,40,116,46,100,101,102,97,117,108,116,86,97,108,117,101,61,34,34,41,41,59,121,40,115,41,124,124,112,101,40,101,44,100,44,115,44,116,44,111,41,44,68,40,108,41,63,34,34,33,61,61,116,46,99,108,97,115,115,78,97,109,101,38,38,116,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,41,58,111,63,116,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,108,41,58,116,46,99,108,97,115,115,78,97,109,101,61,108,44,95,40,99,41,38,38,67,101,40,116,44,99,41,125,125,102,117,110,99,116,105,111,110,32,68,101,40,101,44,116,44,110,44,111,41,123,118,97,114,32,114,61,101,46,102,108,97,103,115,59,49,52,38,114,63,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,111,44,114,41,123,118,97,114,32,105,61,101,46,116,121,112,101,44,97,61,101,46,114,101,102,44,115,61,101,46,112,114,111,112,115,124,124,76,59,105,102,40,114,41,123,118,97,114,32,108,61,102,101,40,101,44,105,44,115,44,110,41,44,100,61,108,46,36,76,73,59,68,101,40,100,44,116,44,108,46,36,67,88,44,111,41,44,101,46,100,111,109,61,100,46,100,111,109,44,98,101,40,48,44,97,44,108,41,44,108,46,36,85,80,68,61,33,49,125,101,108,115,101,123,118,97,114,32,99,61,104,101,40,105,40,115,44,110,41,44,101,41,59,68,101,40,99,44,116,44,110,44,111,41,44,101,46,99,104,105,108,100,114,101,110,61,99,44,101,46,100,111,109,61,99,46,100,111,109,44,107,101,40,115,44,97,44,116,41,125,125,40,101,44,116,44,110,44,111,44,48,60,40,52,38,114,41,41,58,52,56,49,38,114,63,36,101,40,101,44,116,44,110,44,111,41,58,49,54,38,114,63,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,102,40,51,33,61,61,116,46,110,111,100,101,84,121,112,101,41,123,118,97,114,32,110,61,103,101,40,101,44,110,117,108,108,41,59,101,46,100,111,109,61,110,44,70,40,116,46,112,97,114,101,110,116,78,111,100,101,44,110,44,116,41,125,101,108,115,101,123,118,97,114,32,111,61,101,46,99,104,105,108,100,114,101,110,59,116,46,110,111,100,101,86,97,108,117,101,33,61,61,111,38,38,40,116,46,110,111,100,101,86,97,108,117,101,61,111,41,44,101,46,100,111,109,61,116,125,125,40,101,44,116,41,58,53,49,50,38,114,63,101,46,100,111,109,61,116,58,102,117,110,99,116,105,111,110,40,101,41,123,116,104,114,111,119,32,101,124,124,40,101,61,97,41,44,110,101,119,32,69,114,114,111,114,40,34,73,110,102,101,114,110,111,32,69,114,114,111,114,58,32,34,43,101,41,125,40,41,125,102,117,110,99,116,105,111,110,32,95,101,40,101,44,116,44,110,44,111,44,114,41,123,115,101,40,101,41,44,70,40,110,44,118,101,40,116,44,110,117,108,108,44,111,44,114,41,44,101,46,100,111,109,41,125,102,117,110,99,116,105,111,110,32,120,101,40,101,44,116,44,110,44,111,44,114,41,123,105,102,40,101,33,61,61,116,41,123,118,97,114,32,105,61,48,124,116,46,102,108,97,103,115,59,101,46,102,108,97,103,115,33,61,61,105,124,124,50,48,52,56,38,105,63,95,101,40,101,44,116,44,110,44,111,44,114,41,58,52,56,49,38,105,63,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,111,44,114,41,123,118,97,114,32,105,61,116,46,116,121,112,101,59,105,102,40,101,46,116,121,112,101,33,61,61,105,41,95,101,40,101,44,116,44,110,44,111,44,114,41,59,101,108,115,101,123,118,97,114,32,97,44,115,61,101,46,100,111,109,44,108,61,116,46,102,108,97,103,115,44,100,61,101,46,112,114,111,112,115,44,99,61,116,46,112,114,111,112,115,44,117,61,33,49,44,112,61,33,49,59,105,102,40,116,46,100,111,109,61,115,44,114,61,114,124,124,48,60,40,51,50,38,108,41,44,100,33,61,61,99,41,123,118,97,114,32,102,61,100,124,124,76,59,105,102,40,40,97,61,99,124,124,76,41,33,61,61,76,41,102,111,114,40,118,97,114,32,104,32,105,110,40,117,61,48,60,40,52,52,56,38,108,41,41,38,38,40,112,61,105,101,40,97,41,41,44,97,41,123,118,97,114,32,118,61,102,91,104,93,44,103,61,97,91,104,93,59,118,33,61,61,103,38,38,117,101,40,104,44,118,44,103,44,115,44,114,44,112,44,101,41,125,105,102,40,102,33,61,61,76,41,102,111,114,40,118,97,114,32,109,32,105,110,32,102,41,97,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,109,41,124,124,68,40,102,91,109,93,41,124,124,117,101,40,109,44,102,91,109,93,44,110,117,108,108,44,115,44,114,44,112,44,101,41,125,118,97,114,32,121,61,101,46,99,104,105,108,100,114,101,110,44,98,61,116,46,99,104,105,108,100,114,101,110,44,107,61,116,46,114,101,102,44,67,61,101,46,99,108,97,115,115,78,97,109,101,44,36,61,116,46,99,108,97,115,115,78,97,109,101,59,121,33,61,61,98,38,38,119,101,40,101,46,99,104,105,108,100,70,108,97,103,115,44,116,46,99,104,105,108,100,70,108,97,103,115,44,121,44,98,44,115,44,111,44,114,38,38,34,102,111,114,101,105,103,110,79,98,106,101,99,116,34,33,61,61,105,41,44,117,38,38,111,101,40,108,44,116,44,115,44,97,44,33,49,44,112,41,44,67,33,61,61,36,38,38,40,68,40,36,41,63,115,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,41,58,114,63,115,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,36,41,58,115,46,99,108,97,115,115,78,97,109,101,61,36,41,44,95,40,107,41,38,38,101,46,114,101,102,33,61,61,107,38,38,67,101,40,115,44,107,41,125,125,40,101,44,116,44,110,44,111,44,114,41,58,49,52,38,105,63,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,111,44,114,44,105,41,123,118,97,114,32,97,61,116,46,116,121,112,101,44,115,61,101,46,107,101,121,44,108,61,116,46,107,101,121,59,105,102,40,101,46,116,121,112,101,33,61,61,97,124,124,115,33,61,61,108,41,95,101,40,101,44,116,44,110,44,111,44,114,41,59,101,108,115,101,123,118,97,114,32,100,61,116,46,112,114,111,112,115,124,124,76,59,105,102,40,105,41,123,118,97,114,32,99,61,101,46,99,104,105,108,100,114,101,110,59,99,46,36,85,80,68,61,33,48,44,99,46,36,86,61,116,44,78,101,40,99,44,99,46,115,116,97,116,101,44,116,44,100,44,110,44,111,44,114,44,33,49,44,33,49,41,44,99,46,36,85,80,68,61,33,49,125,101,108,115,101,123,118,97,114,32,117,61,33,48,44,112,61,101,46,112,114,111,112,115,44,102,61,116,46,114,101,102,44,104,61,33,68,40,102,41,44,118,61,101,46,99,104,105,108,100,114,101,110,59,105,102,40,116,46,100,111,109,61,101,46,100,111,109,44,116,46,99,104,105,108,100,114,101,110,61,118,44,104,38,38,95,40,102,46,111,110,67,111,109,112,111,110,101,110,116,83,104,111,117,108,100,85,112,100,97,116,101,41,38,38,40,117,61,102,46,111,110,67,111,109,112,111,110,101,110,116,83,104,111,117,108,100,85,112,100,97,116,101,40,112,44,100,41,41,44,33,49,33,61,61,117,41,123,104,38,38,95,40,102,46,111,110,67,111,109,112,111,110,101,110,116,87,105,108,108,85,112,100,97,116,101,41,38,38,102,46,111,110,67,111,109,112,111,110,101,110,116,87,105,108,108,85,112,100,97,116,101,40,112,44,100,41,59,118,97,114,32,103,61,97,40,100,44,111,41,59,103,33,61,61,109,38,38,40,103,61,104,101,40,103,44,116,41,44,120,101,40,118,44,103,44,110,44,111,44,114,41,44,116,46,99,104,105,108,100,114,101,110,61,103,44,116,46,100,111,109,61,103,46,100,111,109,44,104,38,38,95,40,102,46,111,110,67,111,109,112,111,110,101,110,116,68,105,100,85,112,100,97,116,101,41,38,38,102,46,111,110,67,111,109,112,111,110,101,110,116,68,105,100,85,112,100,97,116,101,40,112,44,100,41,41,125,101,108,115,101,32,49,52,38,118,46,102,108,97,103,115,38,38,40,118,46,112,97,114,101,110,116,86,78,111,100,101,61,116,41,125,125,125,40,101,44,116,44,110,44,111,44,114,44,48,60,40,52,38,105,41,41,58,49,54,38,105,63,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,111,44,114,61,116,46,99,104,105,108,100,114,101,110,59,121,40,110,46,102,105,114,115,116,67,104,105,108,100,41,63,40,110,46,116,101,120,116,67,111,110,116,101,110,116,61,114,44,111,61,110,46,102,105,114,115,116,67,104,105,108,100,41,58,40,111,61,101,46,100,111,109,44,114,33,61,61,101,46,99,104,105,108,100,114,101,110,38,38,40,111,46,110,111,100,101,86,97,108,117,101,61,114,41,41,59,116,46,100,111,109,61,111,125,40,101,44,116,44,110,41,58,53,49,50,38,105,63,116,46,100,111,109,61,101,46,100,111,109,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,111,61,101,46,116,121,112,101,44,114,61,116,46,116,121,112,101,44,105,61,116,46,99,104,105,108,100,114,101,110,59,105,102,40,119,101,40,101,46,99,104,105,108,100,70,108,97,103,115,44,116,46,99,104,105,108,100,70,108,97,103,115,44,101,46,99,104,105,108,100,114,101,110,44,105,44,111,44,110,44,33,49,41,44,116,46,100,111,109,61,101,46,100,111,109,44,111,33,61,61,114,38,38,33,102,40,105,41,41,123,118,97,114,32,97,61,105,46,100,111,109,59,111,46,114,101,109,111,118,101,67,104,105,108,100,40,97,41,44,114,46,97,112,112,101,110,100,67,104,105,108,100,40,97,41,125,125,40,101,44,116,44,111,41,125,125,102,117,110,99,116,105,111,110,32,119,101,40,101,44,116,44,110,44,111,44,114,44,105,44,97,41,123,115,119,105,116,99,104,40,101,41,123,99,97,115,101,32,50,58,115,119,105,116,99,104,40,116,41,123,99,97,115,101,32,50,58,120,101,40,110,44,111,44,114,44,105,44,97,41,59,98,114,101,97,107,59,99,97,115,101,32,49,58,97,101,40,110,44,114,41,59,98,114,101,97,107,59,100,101,102,97,117,108,116,58,97,101,40,110,44,114,41,44,121,101,40,111,44,114,44,105,44,97,41,125,98,114,101,97,107,59,99,97,115,101,32,49,58,115,119,105,116,99,104,40,116,41,123,99,97,115,101,32,50,58,118,101,40,111,44,114,44,105,44,97,41,59,98,114,101,97,107,59,99,97,115,101,32,49,58,98,114,101,97,107,59,100,101,102,97,117,108,116,58,121,101,40,111,44,114,44,105,44,97,41,125,98,114,101,97,107,59,100,101,102,97,117,108,116,58,105,102,40,49,50,38,116,41,123,118,97,114,32,115,61,110,46,108,101,110,103,116,104,44,108,61,111,46,108,101,110,103,116,104,59,48,61,61,61,115,63,48,60,108,38,38,121,101,40,111,44,114,44,105,44,97,41,58,48,61,61,61,108,63,100,101,40,114,44,110,41,58,56,61,61,61,116,38,38,56,61,61,61,101,63,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,111,44,114,44,105,44,97,41,123,118,97,114,32,115,44,108,44,100,61,105,45,49,44,99,61,97,45,49,44,117,61,48,44,112,61,101,91,117,93,44,102,61,116,91,117,93,59,101,58,123,102,111,114,40,59,112,46,107,101,121,61,61,61,102,46,107,101,121,59,41,123,105,102,40,102,46,100,111,109,38,38,40,116,91,117,93,61,102,61,119,40,102,41,41,44,120,101,40,112,44,102,44,110,44,111,44,114,41,44,101,91,117,93,61,102,44,100,60,43,43,117,124,124,99,60,117,41,98,114,101,97,107,32,101,59,112,61,101,91,117,93,44,102,61,116,91,117,93,125,102,111,114,40,112,61,101,91,100,93,44,102,61,116,91,99,93,59,112,46,107,101,121,61,61,61,102,46,107,101,121,59,41,123,105,102,40,102,46,100,111,109,38,38,40,116,91,99,93,61,102,61,119,40,102,41,41,44,120,101,40,112,44,102,44,110,44,111,44,114,41,44,101,91,100,93,61,102,44,99,45,45,44,45,45,100,60,117,124,124,99,60,117,41,98,114,101,97,107,32,101,59,112,61,101,91,100,93,44,102,61,116,91,99,93,125,125,105,102,40,100,60,117,41,123,105,102,40,117,60,61,99,41,102,111,114,40,118,97,114,32,104,61,40,108,61,99,43,49,41,60,97,63,116,91,108,93,46,100,111,109,58,110,117,108,108,59,117,60,61,99,59,41,40,102,61,116,91,117,93,41,46,100,111,109,38,38,40,116,91,117,93,61,102,61,119,40,102,41,41,44,117,43,43,44,69,40,110,44,118,101,40,102,44,110,117,108,108,44,111,44,114,41,44,104,41,125,101,108,115,101,32,105,102,40,99,60,117,41,102,111,114,40,59,117,60,61,100,59,41,97,101,40,101,91,117,43,43,93,44,110,41,59,101,108,115,101,123,118,97,114,32,118,61,117,44,103,61,117,44,109,61,100,45,117,43,49,44,121,61,99,45,117,43,49,44,98,61,91,93,59,102,111,114,40,115,61,48,59,115,60,121,59,115,43,43,41,98,46,112,117,115,104,40,48,41,59,118,97,114,32,107,61,109,61,61,61,105,44,67,61,33,49,44,36,61,48,44,68,61,48,59,105,102,40,97,60,52,124,124,40,109,124,121,41,60,51,50,41,102,111,114,40,115,61,118,59,115,60,61,100,59,115,43,43,41,105,102,40,112,61,101,91,115,93,44,68,60,121,41,123,102,111,114,40,117,61,103,59,117,60,61,99,59,117,43,43,41,105,102,40,102,61,116,91,117,93,44,112,46,107,101,121,61,61,61,102,46,107,101,121,41,123,105,102,40,98,91,117,45,103,93,61,115,43,49,44,107,41,102,111,114,40,107,61,33,49,59,118,60,115,59,41,97,101,40,101,91,118,43,43,93,44,110,41,59,117,60,36,63,67,61,33,48,58,36,61,117,44,102,46,100,111,109,38,38,40,116,91,117,93,61,102,61,119,40,102,41,41,44,120,101,40,112,44,102,44,110,44,111,44,114,41,44,68,43,43,59,98,114,101,97,107,125,33,107,38,38,99,60,117,38,38,97,101,40,112,44,110,41,125,101,108,115,101,32,107,124,124,97,101,40,112,44,110,41,59,101,108,115,101,123,118,97,114,32,95,61,123,125,59,102,111,114,40,115,61,103,59,115,60,61,99,59,115,43,43,41,95,91,116,91,115,93,46,107,101,121,93,61,115,59,102,111,114,40,115,61,118,59,115,60,61,100,59,115,43,43,41,105,102,40,112,61,101,91,115,93,44,68,60,121,41,105,102,40,118,111,105,100,32,48,33,61,61,40,117,61,95,91,112,46,107,101,121,93,41,41,123,105,102,40,107,41,102,111,114,40,107,61,33,49,59,118,60,115,59,41,97,101,40,101,91,118,43,43,93,44,110,41,59,102,61,116,91,117,93,44,98,91,117,45,103,93,61,115,43,49,44,117,60,36,63,67,61,33,48,58,36,61,117,44,102,46,100,111,109,38,38,40,116,91,117,93,61,102,61,119,40,102,41,41,44,120,101,40,112,44,102,44,110,44,111,44,114,41,44,68,43,43,125,101,108,115,101,32,107,124,124,97,101,40,112,44,110,41,59,101,108,115,101,32,107,124,124,97,101,40,112,44,110,41,125,105,102,40,107,41,100,101,40,110,44,101,41,44,121,101,40,116,44,110,44,111,44,114,41,59,101,108,115,101,32,105,102,40,67,41,123,118,97,114,32,120,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,44,110,44,111,44,114,44,105,44,97,61,101,46,115,108,105,99,101,40,41,44,115,61,91,48,93,44,108,61,101,46,108,101,110,103,116,104,59,102,111,114,40,116,61,48,59,116,60,108,59,116,43,43,41,123,118,97,114,32,100,61,101,91,116,93,59,105,102,40,48,33,61,61,100,41,123,105,102,40,110,61,115,91,115,46,108,101,110,103,116,104,45,49,93,44,101,91,110,93,60,100,41,123,97,91,116,93,61,110,44,115,46,112,117,115,104,40,116,41,59,99,111,110,116,105,110,117,101,125,102,111,114,40,111,61,48,44,114,61,115,46,108,101,110,103,116,104,45,49,59,111,60,114,59,41,101,91,115,91,105,61,40,111,43,114,41,47,50,124,48,93,93,60,100,63,111,61,105,43,49,58,114,61,105,59,100,60,101,91,115,91,111,93,93,38,38,40,48,60,111,38,38,40,97,91,116,93,61,115,91,111,45,49,93,41,44,115,91,111,93,61,116,41,125,125,111,61,115,46,108,101,110,103,116,104,44,114,61,115,91,111,45,49,93,59,102,111,114,40,59,48,60,111,45,45,59,41,115,91,111,93,61,114,44,114,61,97,91,114,93,59,114,101,116,117,114,110,32,115,125,40,98,41,59,102,111,114,40,117,61,120,46,108,101,110,103,116,104,45,49,44,115,61,121,45,49,59,48,60,61,115,59,115,45,45,41,48,61,61,61,98,91,115,93,63,40,40,102,61,116,91,36,61,115,43,103,93,41,46,100,111,109,38,38,40,116,91,36,93,61,102,61,119,40,102,41,41,44,108,61,36,43,49,44,69,40,110,44,118,101,40,102,44,110,117,108,108,44,111,44,114,41,44,108,60,97,63,116,91,108,93,46,100,111,109,58,110,117,108,108,41,41,58,117,60,48,124,124,115,33,61,61,120,91,117,93,63,40,102,61,116,91,36,61,115,43,103,93,44,108,61,36,43,49,44,69,40,110,44,102,46,100,111,109,44,108,60,97,63,116,91,108,93,46,100,111,109,58,110,117,108,108,41,41,58,117,45,45,125,101,108,115,101,32,105,102,40,68,33,61,61,121,41,102,111,114,40,115,61,121,45,49,59,48,60,61,115,59,115,45,45,41,48,61,61,61,98,91,115,93,38,38,40,40,102,61,116,91,36,61,115,43,103,93,41,46,100,111,109,38,38,40,116,91,36,93,61,102,61,119,40,102,41,41,44,108,61,36,43,49,44,69,40,110,44,118,101,40,102,44,110,117,108,108,44,111,44,114,41,44,108,60,97,63,116,91,108,93,46,100,111,109,58,110,117,108,108,41,41,125,125,40,110,44,111,44,114,44,105,44,97,44,115,44,108,41,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,111,44,114,44,105,44,97,41,123,102,111,114,40,118,97,114,32,115,44,108,44,100,61,97,60,105,63,97,58,105,44,99,61,48,59,99,60,100,59,99,43,43,41,115,61,116,91,99,93,44,108,61,101,91,99,93,44,115,46,100,111,109,38,38,40,115,61,116,91,99,93,61,119,40,115,41,41,44,120,101,40,108,44,115,44,110,44,111,44,114,41,44,101,91,99,93,61,115,59,105,102,40,105,60,97,41,102,111,114,40,99,61,100,59,99,60,97,59,99,43,43,41,40,115,61,116,91,99,93,41,46,100,111,109,38,38,40,115,61,116,91,99,93,61,119,40,115,41,41,44,118,101,40,115,44,110,44,111,44,114,41,59,101,108,115,101,32,105,102,40,97,60,105,41,102,111,114,40,99,61,100,59,99,60,105,59,99,43,43,41,97,101,40,101,91,99,93,44,110,41,125,40,110,44,111,44,114,44,105,44,97,44,115,44,108,41,125,101,108,115,101,32,49,61,61,61,116,63,100,101,40,114,44,110,41,58,40,100,101,40,114,44,110,41,44,118,101,40,111,44,114,44,105,44,97,41,41,125,125,102,117,110,99,116,105,111,110,32,78,101,40,101,44,116,44,110,44,111,44,114,44,105,44,97,44,115,44,108,41,123,118,97,114,32,100,44,99,61,101,46,115,116,97,116,101,44,117,61,101,46,112,114,111,112,115,59,105,102,40,33,40,110,46,99,104,105,108,100,114,101,110,61,101,41,46,36,85,78,41,123,105,102,40,117,33,61,61,111,124,124,111,61,61,61,76,41,123,105,102,40,33,108,38,38,95,40,101,46,99,111,109,112,111,110,101,110,116,87,105,108,108,82,101,99,101,105,118,101,80,114,111,112,115,41,41,123,105,102,40,101,46,36,66,82,61,33,48,44,101,46,99,111,109,112,111,110,101,110,116,87,105,108,108,82,101,99,101,105,118,101,80,114,111,112,115,40,111,44,105,41,44,101,46,36,85,78,41,114,101,116,117,114,110,59,101,46,36,66,82,61,33,49,125,101,46,36,80,83,83,38,38,40,116,61,98,40,116,44,101,46,36,80,83,41,44,101,46,36,80,83,83,61,33,49,44,101,46,36,80,83,61,110,117,108,108,41,125,118,97,114,32,112,61,66,111,111,108,101,97,110,40,101,46,115,104,111,117,108,100,67,111,109,112,111,110,101,110,116,85,112,100,97,116,101,41,59,105,102,40,115,124,124,33,112,124,124,112,38,38,101,46,115,104,111,117,108,100,67,111,109,112,111,110,101,110,116,85,112,100,97,116,101,40,111,44,116,44,105,41,41,123,95,40,101,46,99,111,109,112,111,110,101,110,116,87,105,108,108,85,112,100,97,116,101,41,38,38,40,101,46,36,66,83,61,33,48,44,101,46,99,111,109,112,111,110,101,110,116,87,105,108,108,85,112,100,97,116,101,40,111,44,116,44,105,41,44,101,46,36,66,83,61,33,49,41,44,101,46,112,114,111,112,115,61,111,44,101,46,115,116,97,116,101,61,116,44,101,46,99,111,110,116,101,120,116,61,105,44,95,40,80,46,98,101,102,111,114,101,82,101,110,100,101,114,41,38,38,80,46,98,101,102,111,114,101,82,101,110,100,101,114,40,101,41,44,100,61,101,46,114,101,110,100,101,114,40,111,44,116,44,105,41,44,95,40,80,46,97,102,116,101,114,82,101,110,100,101,114,41,38,38,80,46,97,102,116,101,114,82,101,110,100,101,114,40,101,41,59,118,97,114,32,102,44,104,61,100,33,61,61,109,59,105,102,40,95,40,101,46,103,101,116,67,104,105,108,100,67,111,110,116,101,120,116,41,38,38,40,102,61,101,46,103,101,116,67,104,105,108,100,67,111,110,116,101,120,116,40,41,41,44,102,61,68,40,102,41,63,105,58,98,40,105,44,102,41,44,101,46,36,67,88,61,102,44,104,41,120,101,40,101,46,36,76,73,44,101,46,36,76,73,61,104,101,40,100,44,110,41,44,114,44,102,44,97,41,44,95,40,101,46,99,111,109,112,111,110,101,110,116,68,105,100,85,112,100,97,116,101,41,38,38,101,46,99,111,109,112,111,110,101,110,116,68,105,100,85,112,100,97,116,101,40,117,44,99,41,125,101,108,115,101,32,101,46,112,114,111,112,115,61,111,44,101,46,115,116,97,116,101,61,116,44,101,46,99,111,110,116,101,120,116,61,105,59,110,46,100,111,109,61,101,46,36,76,73,46,100,111,109,125,125,101,38,38,100,111,99,117,109,101,110,116,46,98,111,100,121,59,102,117,110,99,116,105,111,110,32,114,40,101,44,116,44,110,41,123,105,102,40,101,33,61,61,109,41,123,118,97,114,32,111,61,116,46,36,86,59,114,101,116,117,114,110,32,68,40,111,41,63,102,40,101,41,124,124,40,101,46,100,111,109,38,38,40,101,61,119,40,101,41,41,44,121,40,116,46,102,105,114,115,116,67,104,105,108,100,41,63,40,118,101,40,101,44,116,44,76,44,33,49,41,44,116,46,36,86,61,101,41,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,111,61,116,46,102,105,114,115,116,67,104,105,108,100,59,105,102,40,33,121,40,111,41,41,102,111,114,40,102,40,101,41,124,124,68,101,40,101,44,111,44,76,44,33,49,41,44,111,61,116,46,102,105,114,115,116,67,104,105,108,100,59,111,61,111,46,110,101,120,116,83,105,98,108,105,110,103,59,41,116,46,114,101,109,111,118,101,67,104,105,108,100,40,111,41,59,48,60,85,46,108,101,110,103,116,104,38,38,73,40,85,41,44,116,46,36,86,61,101,44,95,40,110,41,38,38,110,40,41,125,40,101,44,116,41,44,111,61,101,41,58,68,40,101,41,63,40,97,101,40,111,44,116,41,44,116,46,36,86,61,110,117,108,108,41,58,40,101,46,100,111,109,38,38,40,101,61,119,40,101,41,41,44,120,101,40,111,44,101,44,116,44,76,44,33,49,41,44,111,61,116,46,36,86,61,101,41,44,48,60,85,46,108,101,110,103,116,104,38,38,73,40,85,41,44,95,40,110,41,38,38,110,40,41,44,95,40,80,46,114,101,110,100,101,114,67,111,109,112,108,101,116,101,41,38,38,80,46,114,101,110,100,101,114,67,111,109,112,108,101,116,101,40,111,41,44,111,38,38,49,52,38,111,46,102,108,97,103,115,63,111,46,99,104,105,108,100,114,101,110,58,118,111,105,100,32,48,125,125,118,97,114,32,83,101,61,34,117,110,100,101,102,105,110,101,100,34,61,61,116,121,112,101,111,102,32,80,114,111,109,105,115,101,63,110,117,108,108,58,80,114,111,109,105,115,101,46,114,101,115,111,108,118,101,40,41,44,80,101,61,34,117,110,100,101,102,105,110,101,100,34,61,61,116,121,112,101,111,102,32,114,101,113,117,101,115,116,65,110,105,109,97,116,105,111,110,70,114,97,109,101,63,115,101,116,84,105,109,101,111,117,116,58,114,101,113,117,101,115,116,65,110,105,109,97,116,105,111,110,70,114,97,109,101,46,98,105,110,100,40,119,105,110,100,111,119,41,59,102,117,110,99,116,105,111,110,32,79,101,40,101,44,116,44,110,44,111,41,123,95,40,116,41,38,38,40,116,61,116,40,101,46,115,116,97,116,101,44,101,46,112,114,111,112,115,44,101,46,99,111,110,116,101,120,116,41,41,59,118,97,114,32,114,44,105,44,97,44,115,61,101,46,36,80,83,59,105,102,40,68,40,115,41,41,101,46,36,80,83,61,116,59,101,108,115,101,32,102,111,114,40,118,97,114,32,108,32,105,110,32,116,41,115,91,108,93,61,116,91,108,93,59,105,102,40,101,46,36,80,83,83,124,124,101,46,36,66,82,41,101,46,36,80,83,83,61,33,48,44,101,46,36,66,82,38,38,95,40,110,41,38,38,85,46,112,117,115,104,40,110,46,98,105,110,100,40,101,41,41,59,101,108,115,101,32,105,102,40,101,46,36,85,80,68,41,123,118,97,114,32,100,61,101,46,36,81,85,59,121,40,100,41,38,38,40,100,61,101,46,36,81,85,61,91,93,44,105,61,101,44,97,61,100,44,114,61,102,117,110,99,116,105,111,110,40,41,123,105,46,36,81,85,61,110,117,108,108,44,105,46,36,85,80,68,61,33,48,44,84,101,40,105,44,33,49,44,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,118,97,114,32,101,61,48,44,116,61,97,46,108,101,110,103,116,104,59,101,60,116,59,101,43,43,41,97,91,101,93,46,99,97,108,108,40,105,41,125,41,44,105,46,36,85,80,68,61,33,49,125,44,83,101,63,83,101,46,116,104,101,110,40,114,41,58,80,101,40,114,41,41,44,95,40,110,41,38,38,100,46,112,117,115,104,40,110,41,125,101,108,115,101,32,101,46,36,80,83,83,61,33,48,44,101,46,36,85,80,68,61,33,48,44,84,101,40,101,44,111,44,110,41,44,101,46,36,85,80,68,61,33,49,125,102,117,110,99,116,105,111,110,32,84,101,40,101,44,116,44,110,41,123,105,102,40,33,101,46,36,85,78,41,123,105,102,40,116,124,124,33,101,46,36,66,82,41,123,101,46,36,80,83,83,61,33,49,59,118,97,114,32,111,61,101,46,36,80,83,44,114,61,98,40,101,46,115,116,97,116,101,44,111,41,44,105,61,101,46,112,114,111,112,115,44,97,61,101,46,99,111,110,116,101,120,116,59,101,46,36,80,83,61,110,117,108,108,59,118,97,114,32,115,61,101,46,36,86,44,108,61,101,46,36,76,73,59,105,102,40,78,101,40,101,44,114,44,115,44,105,44,108,46,100,111,109,38,38,108,46,100,111,109,46,112,97,114,101,110,116,78,111,100,101,44,97,44,48,60,40,51,50,38,115,46,102,108,97,103,115,41,44,116,44,33,48,41,44,101,46,36,85,78,41,114,101,116,117,114,110,59,105,102,40,48,61,61,40,49,48,50,52,38,101,46,36,76,73,46,102,108,97,103,115,41,41,102,111,114,40,118,97,114,32,100,61,101,46,36,76,73,46,100,111,109,59,33,121,40,115,61,115,46,112,97,114,101,110,116,86,78,111,100,101,41,59,41,48,60,40,49,52,38,115,46,102,108,97,103,115,41,38,38,40,115,46,100,111,109,61,100,41,59,48,60,85,46,108,101,110,103,116,104,38,38,73,40,85,41,125,101,108,115,101,32,101,46,115,116,97,116,101,61,101,46,36,80,83,44,101,46,36,80,83,61,110,117,108,108,59,95,40,110,41,38,38,110,46,99,97,108,108,40,101,41,125,125,118,97,114,32,76,101,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,116,104,105,115,46,115,116,97,116,101,61,110,117,108,108,44,116,104,105,115,46,36,66,82,61,33,49,44,116,104,105,115,46,36,66,83,61,33,48,44,116,104,105,115,46,36,80,83,83,61,33,49,44,116,104,105,115,46,36,80,83,61,110,117,108,108,44,116,104,105,115,46,36,76,73,61,110,117,108,108,44,116,104,105,115,46,36,86,61,110,117,108,108,44,116,104,105,115,46,36,85,78,61,33,49,44,116,104,105,115,46,36,67,88,61,110,117,108,108,44,116,104,105,115,46,36,85,80,68,61,33,48,44,116,104,105,115,46,36,81,85,61,110,117,108,108,44,116,104,105,115,46,112,114,111,112,115,61,101,124,124,76,44,116,104,105,115,46,99,111,110,116,101,120,116,61,116,124,124,76,125,59,76,101,46,112,114,111,116,111,116,121,112,101,46,102,111,114,99,101,85,112,100,97,116,101,61,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,36,85,78,124,124,79,101,40,116,104,105,115,44,123,125,44,101,44,33,48,41,125,44,76,101,46,112,114,111,116,111,116,121,112,101,46,115,101,116,83,116,97,116,101,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,116,104,105,115,46,36,85,78,124,124,116,104,105,115,46,36,66,83,124,124,79,101,40,116,104,105,115,44,101,44,116,44,33,49,41,125,44,76,101,46,112,114,111,116,111,116,121,112,101,46,114,101,110,100,101,114,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,125,59,118,97,114,32,85,101,61,49,50,44,77,101,61,51,55,44,69,101,61,51,56,44,70,101,61,51,57,44,73,101,61,52,48,59,118,97,114,32,65,101,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,102,40,33,40,101,32,105,110,115,116,97,110,99,101,111,102,32,116,41,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,67,97,110,110,111,116,32,99,97,108,108,32,97,32,99,108,97,115,115,32,97,115,32,97,32,102,117,110,99,116,105,111,110,34,41,125,44,86,101,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,111,40,101,44,116,41,123,102,111,114,40,118,97,114,32,110,61,48,59,110,60,116,46,108,101,110,103,116,104,59,110,43,43,41,123,118,97,114,32,111,61,116,91,110,93,59,111,46,101,110,117,109,101,114,97,98,108,101,61,111,46,101,110,117,109,101,114,97,98,108,101,124,124,33,49,44,111,46,99,111,110,102,105,103,117,114,97,98,108,101,61,33,48,44,34,118,97,108,117,101,34,105,110,32,111,38,38,40,111,46,119,114,105,116,97,98,108,101,61,33,48,41,44,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,101,44,111,46,107,101,121,44,111,41,125,125,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,114,101,116,117,114,110,32,116,38,38,111,40,101,46,112,114,111,116,111,116,121,112,101,44,116,41,44,110,38,38,111,40,101,44,110,41,44,101,125,125,40,41,44,82,101,61,79,98,106,101,99,116,46,97,115,115,105,103,110,124,124,102,117,110,99,116,105,111,110,40,101,41,123,102,111,114,40,118,97,114,32,116,61,49,59,116,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,116,43,43,41,123,118,97,114,32,110,61,97,114,103,117,109,101,110,116,115,91,116,93,59,102,111,114,40,118,97,114,32,111,32,105,110,32,110,41,79,98,106,101,99,116,46,112,114,111,116,111,116,121,112,101,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,46,99,97,108,108,40,110,44,111,41,38,38,40,101,91,111,93,61,110,91,111,93,41,125,114,101,116,117,114,110,32,101,125,44,106,101,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,102,40,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,116,38,38,110,117,108,108,33,61,61,116,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,83,117,112,101,114,32,101,120,112,114,101,115,115,105,111,110,32,109,117,115,116,32,101,105,116,104,101,114,32,98,101,32,110,117,108,108,32,111,114,32,97,32,102,117,110,99,116,105,111,110,44,32,110,111,116,32,34,43,116,121,112,101,111,102,32,116,41,59,101,46,112,114,111,116,111,116,121,112,101,61,79,98,106,101,99,116,46,99,114,101,97,116,101,40,116,38,38,116,46,112,114,111,116,111,116,121,112,101,44,123,99,111,110,115,116,114,117,99,116,111,114,58,123,118,97,108,117,101,58,101,44,101,110,117,109,101,114,97,98,108,101,58,33,49,44,119,114,105,116,97,98,108,101,58,33,48,44,99,111,110,102,105,103,117,114,97,98,108,101,58,33,48,125,125,41,44,116,38,38,40,79,98,106,101,99,116,46,115,101,116,80,114,111,116,111,116,121,112,101,79,102,63,79,98,106,101,99,116,46,115,101,116,80,114,111,116,111,116,121,112,101,79,102,40,101,44,116,41,58,101,46,95,95,112,114,111,116,111,95,95,61,116,41,125,44,66,101,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,102,40,33,101,41,116,104,114,111,119,32,110,101,119,32,82,101,102,101,114,101,110,99,101,69,114,114,111,114,40,34,116,104,105,115,32,104,97,115,110,39,116,32,98,101,101,110,32,105,110,105,116,105,97,108,105,115,101,100,32,45,32,115,117,112,101,114,40,41,32,104,97,115,110,39,116,32,98,101,101,110,32,99,97,108,108,101,100,34,41,59,114,101,116,117,114,110,33,116,124,124,34,111,98,106,101,99,116,34,33,61,116,121,112,101,111,102,32,116,38,38,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,116,63,101,58,116,125,44,87,101,61,102,117,110,99,116,105,111,110,40,101,41,123,102,117,110,99,116,105,111,110,32,116,40,41,123,114,101,116,117,114,110,32,65,101,40,116,104,105,115,44,116,41,44,66,101,40,116,104,105,115,44,40,116,46,95,95,112,114,111,116,111,95,95,124,124,79,98,106,101,99,116,46,103,101,116,80,114,111,116,111,116,121,112,101,79,102,40,116,41,41,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,41,125,114,101,116,117,114,110,32,106,101,40,116,44,76,101,41,44,86,101,40,116,44,91,123,107,101,121,58,34,99,108,105,99,107,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,116,104,105,115,44,110,61,102,117,110,99,116,105,111,110,40,41,123,116,46,112,114,111,112,115,46,110,111,100,101,46,116,111,103,103,108,101,67,104,101,99,107,40,41,125,59,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,101,109,105,116,40,34,110,111,100,101,46,99,108,105,99,107,34,44,101,44,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,44,110,41,44,101,46,116,114,101,101,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,124,124,110,40,41,125,125,44,123,107,101,121,58,34,114,101,110,100,101,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,115,40,54,52,44,34,105,110,112,117,116,34,44,110,117,108,108,44,110,117,108,108,44,49,44,123,99,104,101,99,107,101,100,58,116,104,105,115,46,112,114,111,112,115,46,99,104,101,99,107,101,100,44,105,110,100,101,116,101,114,109,105,110,97,116,101,58,116,104,105,115,46,112,114,111,112,115,46,105,110,100,101,116,101,114,109,105,110,97,116,101,44,111,110,67,108,105,99,107,58,116,104,105,115,46,99,108,105,99,107,46,98,105,110,100,40,116,104,105,115,41,44,116,121,112,101,58,34,99,104,101,99,107,98,111,120,34,125,41,125,125,93,41,44,116,125,40,41,44,72,101,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,49,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,38,38,118,111,105,100,32,48,33,61,61,97,114,103,117,109,101,110,116,115,91,49,93,63,97,114,103,117,109,101,110,116,115,91,49,93,58,34,108,105,34,44,110,61,101,46,105,116,114,101,101,91,116,93,46,97,116,116,114,105,98,117,116,101,115,44,111,61,91,93,44,114,61,110,46,99,108,97,115,115,124,124,110,46,99,108,97,115,115,78,97,109,101,59,114,101,116,117,114,110,32,108,46,105,115,70,117,110,99,116,105,111,110,40,114,41,38,38,40,114,61,114,40,101,41,41,44,108,46,105,115,69,109,112,116,121,40,114,41,124,124,40,108,46,105,115,83,116,114,105,110,103,40,114,41,63,111,61,111,46,99,111,110,99,97,116,40,114,46,115,112,108,105,116,40,47,91,92,115,92,46,93,43,47,41,41,58,108,46,105,115,65,114,114,97,121,40,114,41,38,38,40,111,61,111,46,99,111,110,99,97,116,40,114,41,41,41,44,111,125,44,113,101,61,102,117,110,99,116,105,111,110,40,101,41,123,102,117,110,99,116,105,111,110,32,116,40,41,123,114,101,116,117,114,110,32,65,101,40,116,104,105,115,44,116,41,44,66,101,40,116,104,105,115,44,40,116,46,95,95,112,114,111,116,111,95,95,124,124,79,98,106,101,99,116,46,103,101,116,80,114,111,116,111,116,121,112,101,79,102,40,116,41,41,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,41,125,114,101,116,117,114,110,32,106,101,40,116,44,76,101,41,44,86,101,40,116,44,91,123,107,101,121,58,34,115,104,111,117,108,100,67,111,109,112,111,110,101,110,116,85,112,100,97,116,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,33,49,125,125,44,123,107,101,121,58,34,97,100,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,101,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,44,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,46,97,100,100,67,104,105,108,100,40,123,116,101,120,116,58,34,78,101,119,32,78,111,100,101,34,44,105,116,114,101,101,58,123,115,116,97,116,101,58,123,101,100,105,116,105,110,103,58,33,48,44,102,111,99,117,115,101,100,58,33,48,125,125,125,41,44,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,46,101,120,112,97,110,100,40,41,125,125,44,123,107,101,121,58,34,101,100,105,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,101,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,44,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,46,116,111,103,103,108,101,69,100,105,116,105,110,103,40,41,125,125,44,123,107,101,121,58,34,114,101,109,111,118,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,101,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,44,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,46,114,101,109,111,118,101,40,41,125,125,44,123,107,101,121,58,34,114,101,110,100,101,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,91,93,59,114,101,116,117,114,110,32,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,99,111,110,102,105,103,46,101,100,105,116,105,110,103,46,101,100,105,116,38,38,101,46,112,117,115,104,40,115,40,49,44,34,97,34,44,34,98,116,110,32,105,99,111,110,32,105,99,111,110,45,112,101,110,99,105,108,34,44,110,117,108,108,44,49,44,123,111,110,99,108,105,99,107,58,116,104,105,115,46,101,100,105,116,46,98,105,110,100,40,116,104,105,115,41,44,116,105,116,108,101,58,34,69,100,105,116,32,116,104,105,115,32,110,111,100,101,34,125,41,41,44,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,99,111,110,102,105,103,46,101,100,105,116,105,110,103,46,97,100,100,38,38,101,46,112,117,115,104,40,115,40,49,44,34,97,34,44,34,98,116,110,32,105,99,111,110,32,105,99,111,110,45,112,108,117,115,34,44,110,117,108,108,44,49,44,123,111,110,99,108,105,99,107,58,116,104,105,115,46,97,100,100,46,98,105,110,100,40,116,104,105,115,41,44,116,105,116,108,101,58,34,65,100,100,32,97,32,99,104,105,108,100,32,110,111,100,101,34,125,41,41,44,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,99,111,110,102,105,103,46,101,100,105,116,105,110,103,46,114,101,109,111,118,101,38,38,101,46,112,117,115,104,40,115,40,49,44,34,97,34,44,34,98,116,110,32,105,99,111,110,32,105,99,111,110,45,109,105,110,117,115,34,44,110,117,108,108,44,49,44,123,111,110,99,108,105,99,107,58,116,104,105,115,46,114,101,109,111,118,101,46,98,105,110,100,40,116,104,105,115,41,44,116,105,116,108,101,58,34,82,101,109,111,118,101,32,116,104,105,115,32,110,111,100,101,34,125,41,41,44,115,40,49,44,34,115,112,97,110,34,44,34,98,116,110,45,103,114,111,117,112,34,44,101,44,48,41,125,125,93,41,44,116,125,40,41,44,75,101,61,102,117,110,99,116,105,111,110,40,101,41,123,102,117,110,99,116,105,111,110,32,116,40,41,123,114,101,116,117,114,110,32,65,101,40,116,104,105,115,44,116,41,44,66,101,40,116,104,105,115,44,40,116,46,95,95,112,114,111,116,111,95,95,124,124,79,98,106,101,99,116,46,103,101,116,80,114,111,116,111,116,121,112,101,79,102,40,116,41,41,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,41,125,114,101,116,117,114,110,32,106,101,40,116,44,76,101,41,44,86,101,40,116,44,91,123,107,101,121,58,34,114,101,110,100,101,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,115,40,49,44,34,111,108,34,44,110,117,108,108,44,115,40,49,44,34,108,105,34,44,34,108,101,97,102,34,44,115,40,49,44,34,115,112,97,110,34,44,34,116,105,116,108,101,32,105,99,111,110,32,105,99,111,110,45,102,105,108,101,45,101,109,112,116,121,32,101,109,112,116,121,34,44,116,104,105,115,46,112,114,111,112,115,46,116,101,120,116,44,48,41,44,50,41,44,50,41,125,125,93,41,44,116,125,40,41,59,102,117,110,99,116,105,111,110,32,88,101,40,116,44,110,41,123,118,97,114,32,111,61,110,46,100,105,114,116,121,124,124,33,49,59,114,101,116,117,114,110,32,111,124,124,108,46,101,97,99,104,40,79,98,106,101,99,116,46,107,101,121,115,40,110,41,44,102,117,110,99,116,105,111,110,40,101,41,123,105,102,40,34,100,105,114,116,121,34,33,61,61,101,38,38,110,91,101,93,33,61,61,116,91,101,93,41,114,101,116,117,114,110,33,40,111,61,33,48,41,125,41,44,111,125,118,97,114,32,81,101,61,102,117,110,99,116,105,111,110,40,101,41,123,102,117,110,99,116,105,111,110,32,110,40,101,41,123,65,101,40,116,104,105,115,44,110,41,59,118,97,114,32,116,61,66,101,40,116,104,105,115,44,40,110,46,95,95,112,114,111,116,111,95,95,124,124,79,98,106,101,99,116,46,103,101,116,80,114,111,116,111,116,121,112,101,79,102,40,110,41,41,46,99,97,108,108,40,116,104,105,115,44,101,41,41,59,114,101,116,117,114,110,32,116,46,115,116,97,116,101,61,116,46,103,101,116,83,116,97,116,101,70,114,111,109,78,111,100,101,115,40,101,46,110,111,100,101,41,44,116,125,114,101,116,117,114,110,32,106,101,40,110,44,76,101,41,44,86,101,40,110,44,91,123,107,101,121,58,34,103,101,116,83,116,97,116,101,70,114,111,109,78,111,100,101,115,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,123,116,101,120,116,58,101,46,116,101,120,116,125,125,125,44,123,107,101,121,58,34,99,111,109,112,111,110,101,110,116,87,105,108,108,82,101,99,101,105,118,101,80,114,111,112,115,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,115,101,116,83,116,97,116,101,40,116,104,105,115,46,103,101,116,83,116,97,116,101,70,114,111,109,78,111,100,101,115,40,101,46,110,111,100,101,41,41,125,125,44,123,107,101,121,58,34,115,104,111,117,108,100,67,111,109,112,111,110,101,110,116,85,112,100,97,116,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,88,101,40,116,104,105,115,46,115,116,97,116,101,44,116,41,125,125,44,123,107,101,121,58,34,99,108,105,99,107,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,116,104,105,115,44,110,61,102,117,110,99,116,105,111,110,40,41,123,116,46,112,114,111,112,115,46,110,111,100,101,46,116,111,103,103,108,101,67,104,101,99,107,40,41,125,59,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,101,109,105,116,40,34,110,111,100,101,46,99,108,105,99,107,34,44,101,44,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,44,110,41,44,101,46,116,114,101,101,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,124,124,110,40,41,125,125,44,123,107,101,121,58,34,107,101,121,112,114,101,115,115,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,105,102,40,101,46,119,104,105,99,104,61,61,61,85,101,41,114,101,116,117,114,110,32,116,104,105,115,46,115,97,118,101,40,41,125,125,44,123,107,101,121,58,34,105,110,112,117,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,115,101,116,83,116,97,116,101,40,123,116,101,120,116,58,101,46,116,97,114,103,101,116,46,118,97,108,117,101,125,41,125,125,44,123,107,101,121,58,34,99,97,110,99,101,108,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,101,38,38,101,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,44,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,46,116,111,103,103,108,101,69,100,105,116,105,110,103,40,41,125,125,44,123,107,101,121,58,34,115,97,118,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,101,38,38,101,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,59,118,97,114,32,116,61,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,46,116,101,120,116,44,110,61,116,104,105,115,46,114,101,102,46,118,97,108,117,101,59,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,46,115,101,116,40,34,116,101,120,116,34,44,110,41,44,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,46,115,116,97,116,101,40,34,101,100,105,116,105,110,103,34,44,33,49,41,44,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,46,109,97,114,107,68,105,114,116,121,40,41,44,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,97,112,112,108,121,67,104,97,110,103,101,115,40,41,44,116,33,61,61,110,38,38,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,101,109,105,116,40,34,110,111,100,101,46,101,100,105,116,101,100,34,44,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,44,116,44,110,41,125,125,44,123,107,101,121,58,34,114,101,110,100,101,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,59,114,101,116,117,114,110,32,115,40,49,44,34,102,111,114,109,34,44,110,117,108,108,44,91,115,40,54,52,44,34,105,110,112,117,116,34,44,110,117,108,108,44,110,117,108,108,44,49,44,123,111,110,67,108,105,99,107,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,125,44,111,110,73,110,112,117,116,58,116,104,105,115,46,105,110,112,117,116,46,98,105,110,100,40,116,104,105,115,41,44,111,110,75,101,121,80,114,101,115,115,58,116,104,105,115,46,107,101,121,112,114,101,115,115,46,98,105,110,100,40,116,104,105,115,41,44,118,97,108,117,101,58,116,104,105,115,46,115,116,97,116,101,46,116,101,120,116,125,44,110,117,108,108,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,46,114,101,102,61,101,125,41,44,115,40,49,44,34,115,112,97,110,34,44,34,98,116,110,45,103,114,111,117,112,34,44,91,115,40,49,44,34,98,117,116,116,111,110,34,44,34,98,116,110,32,105,99,111,110,32,105,99,111,110,45,99,104,101,99,107,34,44,110,117,108,108,44,49,44,123,111,110,67,108,105,99,107,58,116,104,105,115,46,115,97,118,101,46,98,105,110,100,40,116,104,105,115,41,44,116,105,116,108,101,58,34,83,97,118,101,34,44,116,121,112,101,58,34,98,117,116,116,111,110,34,125,41,44,115,40,49,44,34,98,117,116,116,111,110,34,44,34,98,116,110,32,105,99,111,110,32,105,99,111,110,45,99,114,111,115,115,34,44,110,117,108,108,44,49,44,123,111,110,67,108,105,99,107,58,116,104,105,115,46,99,97,110,99,101,108,46,98,105,110,100,40,116,104,105,115,41,44,116,105,116,108,101,58,34,67,97,110,99,101,108,34,44,116,121,112,101,58,34,98,117,116,116,111,110,34,125,41,93,44,52,41,93,44,52,44,123,111,110,115,117,98,109,105,116,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,125,125,41,125,125,93,41,44,110,125,40,41,44,122,101,61,102,117,110,99,116,105,111,110,40,101,41,123,102,117,110,99,116,105,111,110,32,116,40,41,123,114,101,116,117,114,110,32,65,101,40,116,104,105,115,44,116,41,44,66,101,40,116,104,105,115,44,40,116,46,95,95,112,114,111,116,111,95,95,124,124,79,98,106,101,99,116,46,103,101,116,80,114,111,116,111,116,121,112,101,79,102,40,116,41,41,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,41,125,114,101,116,117,114,110,32,106,101,40,116,44,76,101,41,44,86,101,40,116,44,91,123,107,101,121,58,34,98,108,117,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,46,98,108,117,114,40,41,125,125,44,123,107,101,121,58,34,99,108,105,99,107,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,116,104,105,115,44,101,61,116,104,105,115,46,112,114,111,112,115,44,111,61,101,46,110,111,100,101,44,114,61,101,46,100,111,109,44,105,61,102,117,110,99,116,105,111,110,40,41,123,105,102,40,116,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,33,110,46,112,114,111,112,115,46,101,100,105,116,105,110,103,41,123,105,102,40,40,116,46,109,101,116,97,75,101,121,124,124,116,46,99,116,114,108,75,101,121,124,124,116,46,115,104,105,102,116,75,101,121,41,38,38,114,46,95,116,114,101,101,46,100,105,115,97,98,108,101,68,101,115,101,108,101,99,116,105,111,110,40,41,44,116,46,115,104,105,102,116,75,101,121,41,123,114,46,99,108,101,97,114,83,101,108,101,99,116,105,111,110,40,41,59,118,97,114,32,101,61,114,46,95,116,114,101,101,46,108,97,115,116,83,101,108,101,99,116,101,100,78,111,100,101,40,41,59,101,38,38,114,46,95,116,114,101,101,46,115,101,108,101,99,116,66,101,116,119,101,101,110,46,97,112,112,108,121,40,114,46,95,116,114,101,101,44,114,46,95,116,114,101,101,46,98,111,117,110,100,105,110,103,78,111,100,101,115,40,101,44,111,41,41,125,111,46,115,101,108,101,99,116,101,100,40,41,63,114,46,95,116,114,101,101,46,99,111,110,102,105,103,46,115,101,108,101,99,116,105,111,110,46,100,105,115,97,98,108,101,68,105,114,101,99,116,68,101,115,101,108,101,99,116,105,111,110,124,124,111,46,100,101,115,101,108,101,99,116,40,41,58,111,46,115,101,108,101,99,116,40,41,44,114,46,95,116,114,101,101,46,101,110,97,98,108,101,68,101,115,101,108,101,99,116,105,111,110,40,41,125,125,59,114,46,95,116,114,101,101,46,101,109,105,116,40,34,110,111,100,101,46,99,108,105,99,107,34,44,116,44,111,44,105,41,44,116,46,116,114,101,101,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,124,124,105,40,41,125,125,44,123,107,101,121,58,34,99,111,110,116,101,120,116,77,101,110,117,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,116,104,105,115,46,112,114,111,112,115,44,110,61,116,46,110,111,100,101,59,116,46,100,111,109,46,95,116,114,101,101,46,101,109,105,116,40,34,110,111,100,101,46,99,111,110,116,101,120,116,109,101,110,117,34,44,101,44,110,41,125,125,44,123,107,101,121,58,34,100,98,108,99,108,105,99,107,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,116,104,105,115,46,112,114,111,112,115,44,110,61,116,46,110,111,100,101,44,111,61,116,46,100,111,109,44,114,61,102,117,110,99,116,105,111,110,40,41,123,111,46,99,108,101,97,114,83,101,108,101,99,116,105,111,110,40,41,44,110,46,116,111,103,103,108,101,67,111,108,108,97,112,115,101,40,41,125,59,111,46,95,116,114,101,101,46,101,109,105,116,40,34,110,111,100,101,46,100,98,108,99,108,105,99,107,34,44,101,44,110,44,114,41,44,101,46,116,114,101,101,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,124,124,114,40,41,125,125,44,123,107,101,121,58,34,102,111,99,117,115,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,46,102,111,99,117,115,40,101,41,125,125,44,123,107,101,121,58,34,109,111,117,115,101,100,111,119,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,105,115,68,114,97,103,68,114,111,112,69,110,97,98,108,101,100,38,38,40,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,105,115,77,111,117,115,101,72,101,108,100,61,33,48,41,125,125,44,123,107,101,121,58,34,114,101,110,100,101,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,44,116,61,108,46,99,108,111,110,101,40,101,46,105,116,114,101,101,46,97,46,97,116,116,114,105,98,117,116,101,115,41,124,124,123,125,59,116,46,116,97,98,105,110,100,101,120,61,49,44,116,46,117,110,115,101,108,101,99,116,97,98,108,101,61,34,111,110,34,59,118,97,114,32,110,61,72,101,40,101,44,34,97,34,41,46,99,111,110,99,97,116,40,91,34,116,105,116,108,101,34,44,34,105,99,111,110,34,93,41,59,105,102,40,33,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,99,111,110,102,105,103,46,115,104,111,119,67,104,101,99,107,98,111,120,101,115,41,123,118,97,114,32,111,61,116,104,105,115,46,112,114,111,112,115,46,101,120,112,97,110,100,101,100,63,34,105,99,111,110,45,102,111,108,100,101,114,45,111,112,101,110,34,58,34,105,99,111,110,45,102,111,108,100,101,114,34,59,110,46,112,117,115,104,40,101,46,105,116,114,101,101,46,105,99,111,110,124,124,40,116,104,105,115,46,112,114,111,112,115,46,104,97,115,79,114,87,105,108,108,72,97,118,101,67,104,105,108,100,114,101,110,63,111,58,34,105,99,111,110,45,102,105,108,101,45,101,109,112,116,121,34,41,41,125,116,46,99,108,97,115,115,61,116,46,99,108,97,115,115,78,97,109,101,61,110,46,106,111,105,110,40,34,32,34,41,59,118,97,114,32,114,61,101,46,116,101,120,116,59,114,101,116,117,114,110,32,101,46,101,100,105,116,105,110,103,40,41,38,38,40,114,61,100,40,50,44,81,101,44,123,100,111,109,58,116,104,105,115,46,112,114,111,112,115,46,100,111,109,44,110,111,100,101,58,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,125,41,41,44,99,40,115,40,49,44,34,97,34,44,110,117,108,108,44,114,44,48,44,82,101,40,123,34,100,97,116,97,45,117,105,100,34,58,101,46,105,100,44,111,110,66,108,117,114,58,116,104,105,115,46,98,108,117,114,46,98,105,110,100,40,116,104,105,115,41,44,111,110,67,108,105,99,107,58,116,104,105,115,46,99,108,105,99,107,46,98,105,110,100,40,116,104,105,115,41,44,111,110,67,111,110,116,101,120,116,77,101,110,117,58,116,104,105,115,46,99,111,110,116,101,120,116,77,101,110,117,46,98,105,110,100,40,116,104,105,115,41,44,111,110,68,98,108,67,108,105,99,107,58,116,104,105,115,46,100,98,108,99,108,105,99,107,46,98,105,110,100,40,116,104,105,115,41,44,111,110,70,111,99,117,115,58,116,104,105,115,46,102,111,99,117,115,46,98,105,110,100,40,116,104,105,115,41,44,111,110,77,111,117,115,101,68,111,119,110,58,116,104,105,115,46,109,111,117,115,101,100,111,119,110,46,98,105,110,100,40,116,104,105,115,41,125,44,116,41,41,41,125,125,93,41,44,116,125,40,41,44,71,101,61,102,117,110,99,116,105,111,110,40,101,41,123,102,117,110,99,116,105,111,110,32,116,40,41,123,114,101,116,117,114,110,32,65,101,40,116,104,105,115,44,116,41,44,66,101,40,116,104,105,115,44,40,116,46,95,95,112,114,111,116,111,95,95,124,124,79,98,106,101,99,116,46,103,101,116,80,114,111,116,111,116,121,112,101,79,102,40,116,41,41,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,41,125,114,101,116,117,114,110,32,106,101,40,116,44,76,101,41,44,86,101,40,116,44,91,123,107,101,121,58,34,99,108,97,115,115,78,97,109,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,34,116,111,103,103,108,101,32,105,99,111,110,32,34,43,40,116,104,105,115,46,112,114,111,112,115,46,99,111,108,108,97,112,115,101,100,63,34,105,99,111,110,45,101,120,112,97,110,100,34,58,34,105,99,111,110,45,99,111,108,108,97,112,115,101,34,41,125,125,44,123,107,101,121,58,34,114,101,110,100,101,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,115,40,49,44,34,97,34,44,116,104,105,115,46,99,108,97,115,115,78,97,109,101,40,41,44,110,117,108,108,44,49,44,123,111,110,67,108,105,99,107,58,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,46,116,111,103,103,108,101,67,111,108,108,97,112,115,101,46,98,105,110,100,40,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,41,125,41,125,125,93,41,44,116,125,40,41,44,89,101,61,102,117,110,99,116,105,111,110,40,101,41,123,102,117,110,99,116,105,111,110,32,110,40,101,41,123,65,101,40,116,104,105,115,44,110,41,59,118,97,114,32,116,61,66,101,40,116,104,105,115,44,40,110,46,95,95,112,114,111,116,111,95,95,124,124,79,98,106,101,99,116,46,103,101,116,80,114,111,116,111,116,121,112,101,79,102,40,110,41,41,46,99,97,108,108,40,116,104,105,115,44,101,41,41,59,114,101,116,117,114,110,32,116,46,115,116,97,116,101,61,116,46,115,116,97,116,101,70,114,111,109,78,111,100,101,40,101,46,110,111,100,101,41,44,116,125,114,101,116,117,114,110,32,106,101,40,110,44,76,101,41,44,86,101,40,110,44,91,123,107,101,121,58,34,115,116,97,116,101,70,114,111,109,78,111,100,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,123,100,105,114,116,121,58,101,46,105,116,114,101,101,46,100,105,114,116,121,125,125,125,44,123,107,101,121,58,34,99,111,109,112,111,110,101,110,116,87,105,108,108,82,101,99,101,105,118,101,80,114,111,112,115,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,115,101,116,83,116,97,116,101,40,116,104,105,115,46,115,116,97,116,101,70,114,111,109,78,111,100,101,40,101,46,110,111,100,101,41,41,125,125,44,123,107,101,121,58,34,115,104,111,117,108,100,67,111,109,112,111,110,101,110,116,85,112,100,97,116,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,116,46,100,105,114,116,121,125,125,44,123,107,101,121,58,34,103,101,116,65,116,116,114,105,98,117,116,101,115,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,44,116,61,108,46,99,108,111,110,101,40,101,46,105,116,114,101,101,46,108,105,46,97,116,116,114,105,98,117,116,101,115,41,124,124,123,125,59,114,101,116,117,114,110,32,116,46,99,108,97,115,115,61,116,46,99,108,97,115,115,78,97,109,101,61,116,104,105,115,46,103,101,116,67,108,97,115,115,78,97,109,101,115,40,41,44,116,91,34,100,97,116,97,45,117,105,100,34,93,61,101,46,105,100,44,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,99,111,110,102,105,103,46,100,114,97,103,65,110,100,68,114,111,112,46,101,110,97,98,108,101,100,38,38,40,116,46,100,114,97,103,103,97,98,108,101,61,101,46,115,116,97,116,101,40,34,100,114,97,103,103,97,98,108,101,34,41,44,116,46,111,110,68,114,97,103,69,110,100,61,116,104,105,115,46,111,110,68,114,97,103,69,110,100,46,98,105,110,100,40,116,104,105,115,41,44,116,46,111,110,68,114,97,103,69,110,116,101,114,61,116,104,105,115,46,111,110,68,114,97,103,69,110,116,101,114,46,98,105,110,100,40,116,104,105,115,41,44,116,46,111,110,68,114,97,103,76,101,97,118,101,61,116,104,105,115,46,111,110,68,114,97,103,76,101,97,118,101,46,98,105,110,100,40,116,104,105,115,41,44,116,46,111,110,68,114,97,103,83,116,97,114,116,61,116,104,105,115,46,111,110,68,114,97,103,83,116,97,114,116,46,98,105,110,100,40,116,104,105,115,41,44,101,46,115,116,97,116,101,40,34,100,114,111,112,45,116,97,114,103,101,116,34,41,63,40,116,46,111,110,68,114,97,103,79,118,101,114,61,116,104,105,115,46,111,110,68,114,97,103,79,118,101,114,46,98,105,110,100,40,116,104,105,115,41,44,116,46,111,110,68,114,111,112,61,116,104,105,115,46,111,110,68,114,111,112,46,98,105,110,100,40,116,104,105,115,41,41,58,40,116,46,111,110,68,114,97,103,79,118,101,114,61,110,117,108,108,44,116,46,111,110,68,114,111,112,61,110,117,108,108,41,41,44,116,125,125,44,123,107,101,121,58,34,103,101,116,67,108,97,115,115,78,97,109,101,115,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,44,116,61,101,46,105,116,114,101,101,46,115,116,97,116,101,44,110,61,72,101,40,101,41,59,114,101,116,117,114,110,32,108,46,101,97,99,104,40,79,98,106,101,99,116,46,107,101,121,115,40,116,41,44,102,117,110,99,116,105,111,110,40,101,41,123,116,91,101,93,38,38,110,46,112,117,115,104,40,101,41,125,41,44,33,101,46,104,105,100,100,101,110,40,41,38,38,101,46,114,101,109,111,118,101,100,40,41,38,38,110,46,112,117,115,104,40,34,104,105,100,100,101,110,34,41,44,101,46,101,120,112,97,110,100,101,100,40,41,38,38,110,46,112,117,115,104,40,34,101,120,112,97,110,100,101,100,34,41,44,110,46,112,117,115,104,40,101,46,104,97,115,79,114,87,105,108,108,72,97,118,101,67,104,105,108,100,114,101,110,40,41,63,34,102,111,108,100,101,114,34,58,34,108,101,97,102,34,41,44,110,46,106,111,105,110,40,34,32,34,41,125,125,44,123,107,101,121,58,34,103,101,116,84,97,114,103,101,116,68,105,114,101,99,116,105,111,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,61,101,46,99,108,105,101,110,116,89,44,111,61,116,46,103,101,116,66,111,117,110,100,105,110,103,67,108,105,101,110,116,82,101,99,116,40,41,44,114,61,111,46,116,111,112,43,111,46,104,101,105,103,104,116,47,51,44,105,61,111,46,98,111,116,116,111,109,45,111,46,104,101,105,103,104,116,47,51,44,97,61,48,59,114,101,116,117,114,110,32,110,60,61,114,63,97,61,45,49,58,105,60,61,110,38,38,40,97,61,49,41,44,97,125,125,44,123,107,101,121,58,34,111,110,68,114,97,103,83,116,97,114,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,101,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,44,101,46,100,97,116,97,84,114,97,110,115,102,101,114,46,101,102,102,101,99,116,65,108,108,111,119,101,100,61,34,109,111,118,101,34,44,101,46,100,97,116,97,84,114,97,110,115,102,101,114,46,100,114,111,112,69,102,102,101,99,116,61,34,109,111,118,101,34,59,118,97,114,32,110,61,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,59,105,102,40,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,97,99,116,105,118,101,68,114,97,103,78,111,100,101,61,110,44,101,46,100,97,116,97,84,114,97,110,115,102,101,114,46,115,101,116,68,97,116,97,40,34,116,114,101,101,73,100,34,44,110,46,116,114,101,101,40,41,46,105,100,41,44,101,46,100,97,116,97,84,114,97,110,115,102,101,114,46,115,101,116,68,97,116,97,40,34,110,111,100,101,73,100,34,44,110,46,105,100,41,44,110,46,115,116,97,116,101,40,34,100,114,111,112,45,116,97,114,103,101,116,34,44,33,49,41,44,110,46,104,97,115,67,104,105,108,100,114,101,110,40,41,38,38,110,46,99,104,105,108,100,114,101,110,46,115,116,97,116,101,68,101,101,112,40,34,100,114,111,112,45,116,97,114,103,101,116,34,44,33,49,41,44,34,100,114,97,103,115,116,97,114,116,34,61,61,61,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,99,111,110,102,105,103,46,100,114,97,103,65,110,100,68,114,111,112,46,118,97,108,105,100,97,116,101,79,110,41,123,118,97,114,32,111,61,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,99,111,110,102,105,103,46,100,114,97,103,65,110,100,68,114,111,112,46,118,97,108,105,100,97,116,101,44,114,61,108,46,105,115,70,117,110,99,116,105,111,110,40,111,41,59,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,98,97,116,99,104,40,41,44,102,117,110,99,116,105,111,110,32,116,40,101,44,110,41,123,105,46,105,115,84,114,101,101,78,111,100,101,115,40,101,41,63,108,46,101,97,99,104,40,101,44,102,117,110,99,116,105,111,110,40,101,41,123,116,40,101,44,110,41,125,41,58,105,46,105,115,84,114,101,101,78,111,100,101,40,101,41,38,38,33,49,33,61,61,110,40,101,41,38,38,101,46,104,97,115,67,104,105,108,100,114,101,110,40,41,38,38,116,40,101,46,99,104,105,108,100,114,101,110,44,110,41,125,40,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,109,111,100,101,108,44,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,46,105,100,33,61,61,110,46,105,100,59,114,101,116,117,114,110,32,116,38,38,40,116,61,33,101,46,104,97,115,65,110,99,101,115,116,111,114,40,110,41,41,44,116,38,38,114,38,38,40,116,61,111,40,110,44,101,41,41,44,101,46,115,116,97,116,101,40,34,100,114,111,112,45,116,97,114,103,101,116,34,44,116,41,44,116,125,41,44,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,101,110,100,40,41,125,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,101,109,105,116,40,34,110,111,100,101,46,100,114,97,103,115,116,97,114,116,34,44,101,41,125,125,44,123,107,101,121,58,34,111,110,68,114,97,103,69,110,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,101,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,101,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,44,116,104,105,115,46,117,110,104,105,103,104,108,105,103,104,116,84,97,114,103,101,116,40,41,44,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,101,109,105,116,40,34,110,111,100,101,46,100,114,97,103,101,110,100,34,44,101,41,125,125,44,123,107,101,121,58,34,111,110,68,114,97,103,69,110,116,101,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,101,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,101,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,44,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,46,114,101,99,117,114,115,101,85,112,40,116,104,105,115,46,117,110,104,105,103,104,108,105,103,104,116,84,97,114,103,101,116,41,44,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,46,115,116,97,116,101,40,34,100,114,97,103,45,116,97,114,103,101,116,105,110,103,34,44,33,48,41,44,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,101,109,105,116,40,34,110,111,100,101,46,100,114,97,103,101,110,116,101,114,34,44,101,41,125,125,44,123,107,101,121,58,34,111,110,68,114,97,103,76,101,97,118,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,101,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,101,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,44,116,104,105,115,46,117,110,104,105,103,104,108,105,103,104,116,84,97,114,103,101,116,40,41,44,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,101,109,105,116,40,34,110,111,100,101,46,100,114,97,103,108,101,97,118,101,34,44,101,41,125,125,44,123,107,101,121,58,34,111,110,68,114,97,103,79,118,101,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,101,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,101,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,59,118,97,114,32,116,61,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,97,99,116,105,118,101,68,114,97,103,78,111,100,101,44,110,61,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,44,111,61,116,104,105,115,46,103,101,116,84,97,114,103,101,116,68,105,114,101,99,116,105,111,110,40,101,44,110,46,105,116,114,101,101,46,114,101,102,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,34,97,34,41,41,59,105,102,40,34,100,114,97,103,111,118,101,114,34,61,61,61,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,99,111,110,102,105,103,46,100,114,97,103,65,110,100,68,114,111,112,46,118,97,108,105,100,97,116,101,79,110,41,123,118,97,114,32,114,61,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,99,111,110,102,105,103,46,100,114,97,103,65,110,100,68,114,111,112,46,118,97,108,105,100,97,116,101,44,105,61,108,46,105,115,70,117,110,99,116,105,111,110,40,114,41,44,97,61,116,46,105,100,33,61,61,110,46,105,100,59,105,102,40,97,38,38,40,97,61,33,110,46,104,97,115,65,110,99,101,115,116,111,114,40,116,41,41,44,97,38,38,105,38,38,40,97,61,114,40,116,44,110,44,111,41,41,44,110,46,115,116,97,116,101,40,34,100,114,111,112,45,116,97,114,103,101,116,34,44,97,41,44,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,97,112,112,108,121,67,104,97,110,103,101,115,40,41,44,33,97,41,114,101,116,117,114,110,125,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,98,97,116,99,104,40,41,44,110,46,115,116,97,116,101,40,34,100,114,97,103,45,116,97,114,103,101,116,105,110,103,34,44,33,48,41,44,110,46,115,116,97,116,101,40,34,100,114,97,103,45,116,97,114,103,101,116,105,110,103,45,97,98,111,118,101,34,44,45,49,61,61,61,111,41,44,110,46,115,116,97,116,101,40,34,100,114,97,103,45,116,97,114,103,101,116,105,110,103,45,98,101,108,111,119,34,44,49,61,61,61,111,41,44,110,46,115,116,97,116,101,40,34,100,114,97,103,45,116,97,114,103,101,116,105,110,103,45,105,110,115,101,114,116,34,44,48,61,61,61,111,41,44,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,101,110,100,40,41,44,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,101,109,105,116,40,34,110,111,100,101,46,100,114,97,103,111,118,101,114,34,44,101,44,111,41,125,125,44,123,107,101,121,58,34,111,110,68,114,111,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,101,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,101,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,44,116,104,105,115,46,117,110,104,105,103,104,108,105,103,104,116,84,97,114,103,101,116,40,41,59,118,97,114,32,116,61,101,46,100,97,116,97,84,114,97,110,115,102,101,114,46,103,101,116,68,97,116,97,40,34,116,114,101,101,73,100,34,41,44,110,61,101,46,100,97,116,97,84,114,97,110,115,102,101,114,46,103,101,116,68,97,116,97,40,34,110,111,100,101,73,100,34,41,44,111,61,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,59,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,97,99,116,105,118,101,68,114,97,103,78,111,100,101,61,110,117,108,108,59,118,97,114,32,114,61,116,104,105,115,46,103,101,116,84,97,114,103,101,116,68,105,114,101,99,116,105,111,110,40,101,44,101,46,116,97,114,103,101,116,41,44,105,61,118,111,105,100,32,48,59,116,61,61,61,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,105,100,63,105,61,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,58,116,38,38,40,105,61,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,39,91,100,97,116,97,45,117,105,100,61,34,39,43,116,43,39,34,93,39,41,46,105,110,115,112,105,114,101,84,114,101,101,41,59,118,97,114,32,97,61,118,111,105,100,32,48,44,115,61,118,111,105,100,32,48,59,105,102,40,105,41,123,118,97,114,32,108,61,105,46,110,111,100,101,40,110,41,59,108,46,115,116,97,116,101,40,34,100,114,111,112,45,116,97,114,103,101,116,34,44,33,48,41,59,118,97,114,32,100,61,108,46,114,101,109,111,118,101,40,33,48,41,44,99,61,111,46,99,111,110,116,101,120,116,40,41,46,105,110,100,101,120,79,102,40,111,41,59,48,61,61,61,114,63,40,97,61,111,46,97,100,100,67,104,105,108,100,40,100,41,44,115,61,111,46,99,104,105,108,100,114,101,110,46,105,110,100,101,120,79,102,40,97,41,44,111,46,101,120,112,97,110,100,40,41,41,58,40,115,61,49,61,61,61,114,63,43,43,99,58,99,44,97,61,111,46,99,111,110,116,101,120,116,40,41,46,105,110,115,101,114,116,65,116,40,115,44,100,41,41,125,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,101,109,105,116,40,34,110,111,100,101,46,100,114,111,112,34,44,101,44,97,44,111,44,115,41,125,125,44,123,107,101,121,58,34,117,110,104,105,103,104,108,105,103,104,116,84,97,114,103,101,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,40,101,124,124,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,41,46,115,116,97,116,101,115,40,91,34,100,114,97,103,45,116,97,114,103,101,116,105,110,103,34,44,34,100,114,97,103,45,116,97,114,103,101,116,105,110,103,45,97,98,111,118,101,34,44,34,100,114,97,103,45,116,97,114,103,101,116,105,110,103,45,98,101,108,111,119,34,44,34,100,114,97,103,45,116,97,114,103,101,116,105,110,103,45,105,110,115,101,114,116,34,93,44,33,49,41,125,125,44,123,107,101,121,58,34,114,101,110,100,101,114,67,104,101,99,107,98,111,120,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,59,105,102,40,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,99,111,110,102,105,103,46,115,104,111,119,67,104,101,99,107,98,111,120,101,115,41,114,101,116,117,114,110,32,100,40,50,44,87,101,44,123,99,104,101,99,107,101,100,58,101,46,99,104,101,99,107,101,100,40,41,44,100,111,109,58,116,104,105,115,46,112,114,111,112,115,46,100,111,109,44,105,110,100,101,116,101,114,109,105,110,97,116,101,58,101,46,105,110,100,101,116,101,114,109,105,110,97,116,101,40,41,44,110,111,100,101,58,101,125,41,125,125,44,123,107,101,121,58,34,114,101,110,100,101,114,67,104,105,108,100,114,101,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,112,114,111,112,115,44,116,61,101,46,110,111,100,101,44,110,61,101,46,100,111,109,59,105,102,40,116,46,104,97,115,67,104,105,108,100,114,101,110,40,41,41,123,118,97,114,32,111,61,116,46,99,104,105,108,100,114,101,110,44,114,61,110,46,108,111,97,100,105,110,103,44,105,61,111,46,112,97,103,105,110,97,116,105,111,110,40,41,59,114,101,116,117,114,110,32,100,40,50,44,74,101,44,123,99,111,110,116,101,120,116,58,116,44,100,111,109,58,110,44,108,105,109,105,116,58,105,46,108,105,109,105,116,44,108,111,97,100,105,110,103,58,114,44,110,111,100,101,115,58,111,44,116,111,116,97,108,58,105,46,116,111,116,97,108,125,41,125,105,102,40,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,105,115,68,121,110,97,109,105,99,38,38,116,46,99,104,105,108,100,114,101,110,41,114,101,116,117,114,110,32,116,46,104,97,115,76,111,97,100,101,100,67,104,105,108,100,114,101,110,40,41,63,100,40,50,44,75,101,44,123,116,101,120,116,58,34,78,111,32,82,101,115,117,108,116,115,34,125,41,58,100,40,50,44,75,101,44,123,116,101,120,116,58,34,76,111,97,100,105,110,103,46,46,46,34,125,41,125,125,44,123,107,101,121,58,34,114,101,110,100,101,114,69,100,105,116,84,111,111,108,98,97,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,105,102,40,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,99,111,110,102,105,103,46,101,100,105,116,105,110,103,46,101,100,105,116,38,38,33,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,46,101,100,105,116,105,110,103,40,41,41,114,101,116,117,114,110,32,100,40,50,44,113,101,44,123,100,111,109,58,116,104,105,115,46,112,114,111,112,115,46,100,111,109,44,110,111,100,101,58,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,125,41,125,125,44,123,107,101,121,58,34,114,101,110,100,101,114,84,111,103,103,108,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,59,105,102,40,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,105,115,68,121,110,97,109,105,99,63,66,111,111,108,101,97,110,40,101,46,99,104,105,108,100,114,101,110,41,58,101,46,104,97,115,86,105,115,105,98,108,101,67,104,105,108,100,114,101,110,40,41,41,114,101,116,117,114,110,32,100,40,50,44,71,101,44,123,99,111,108,108,97,112,115,101,100,58,101,46,99,111,108,108,97,112,115,101,100,40,41,44,110,111,100,101,58,101,125,41,125,125,44,123,107,101,121,58,34,114,101,110,100,101,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,44,101,61,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,44,110,61,99,40,115,40,49,44,34,108,105,34,44,110,117,108,108,44,91,116,104,105,115,46,114,101,110,100,101,114,69,100,105,116,84,111,111,108,98,97,114,40,41,44,115,40,49,44,34,100,105,118,34,44,34,116,105,116,108,101,45,119,114,97,112,34,44,91,116,104,105,115,46,114,101,110,100,101,114,84,111,103,103,108,101,40,41,44,116,104,105,115,46,114,101,110,100,101,114,67,104,101,99,107,98,111,120,40,41,44,100,40,50,44,122,101,44,123,100,111,109,58,116,104,105,115,46,112,114,111,112,115,46,100,111,109,44,101,100,105,116,105,110,103,58,101,46,101,100,105,116,105,110,103,40,41,44,101,120,112,97,110,100,101,100,58,101,46,101,120,112,97,110,100,101,100,40,41,44,104,97,115,79,114,87,105,108,108,72,97,118,101,67,104,105,108,100,114,101,110,58,101,46,104,97,115,79,114,87,105,108,108,72,97,118,101,67,104,105,108,100,114,101,110,40,41,44,110,111,100,101,58,101,44,116,101,120,116,58,101,46,116,101,120,116,125,41,93,44,48,41,44,115,40,49,44,34,100,105,118,34,44,34,119,104,111,108,101,114,111,119,34,41,44,116,104,105,115,46,114,101,110,100,101,114,67,104,105,108,100,114,101,110,40,41,93,44,48,44,82,101,40,123,125,44,116,104,105,115,46,103,101,116,65,116,116,114,105,98,117,116,101,115,40,41,41,44,110,117,108,108,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,46,110,111,100,101,61,116,46,112,114,111,112,115,46,110,111,100,101,46,105,116,114,101,101,46,114,101,102,61,101,125,41,41,59,114,101,116,117,114,110,32,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,46,115,116,97,116,101,40,34,114,101,110,100,101,114,101,100,34,44,33,48,41,44,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,46,105,116,114,101,101,46,100,105,114,116,121,61,33,49,44,110,125,125,93,41,44,110,125,40,41,44,74,101,61,102,117,110,99,116,105,111,110,40,101,41,123,102,117,110,99,116,105,111,110,32,116,40,41,123,114,101,116,117,114,110,32,65,101,40,116,104,105,115,44,116,41,44,66,101,40,116,104,105,115,44,40,116,46,95,95,112,114,111,116,111,95,95,124,124,79,98,106,101,99,116,46,103,101,116,80,114,111,116,111,116,121,112,101,79,102,40,116,41,41,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,41,125,114,101,116,117,114,110,32,106,101,40,116,44,76,101,41,44,86,101,40,116,44,91,123,107,101,121,58,34,115,104,111,117,108,100,67,111,109,112,111,110,101,110,116,85,112,100,97,116,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,108,46,102,105,110,100,40,101,46,110,111,100,101,115,44,34,105,116,114,101,101,46,100,105,114,116,121,34,41,124,124,88,101,40,116,104,105,115,46,112,114,111,112,115,44,101,41,125,125,44,123,107,101,121,58,34,105,115,68,101,102,101,114,114,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,99,111,110,102,105,103,46,100,101,102,101,114,114,101,100,82,101,110,100,101,114,105,110,103,124,124,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,99,111,110,102,105,103,46,100,101,102,101,114,114,101,100,76,111,97,100,105,110,103,125,125,44,123,107,101,121,58,34,108,111,97,100,77,111,114,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,101,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,116,104,105,115,46,112,114,111,112,115,46,99,111,110,116,101,120,116,63,116,104,105,115,46,112,114,111,112,115,46,99,111,110,116,101,120,116,46,108,111,97,100,77,111,114,101,40,101,41,58,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,108,111,97,100,77,111,114,101,40,101,41,125,125,44,123,107,101,121,58,34,114,101,110,100,101,114,76,111,97,100,77,111,114,101,78,111,100,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,115,40,49,44,34,108,105,34,44,34,108,101,97,102,32,100,101,116,97,99,104,101,100,34,44,115,40,49,44,34,97,34,44,34,116,105,116,108,101,32,105,99,111,110,32,105,99,111,110,45,109,111,114,101,32,108,111,97,100,45,109,111,114,101,34,44,36,40,34,76,111,97,100,32,77,111,114,101,34,41,44,50,44,123,111,110,67,108,105,99,107,58,116,104,105,115,46,108,111,97,100,77,111,114,101,46,98,105,110,100,40,116,104,105,115,41,125,41,44,50,41,125,125,44,123,107,101,121,58,34,114,101,110,100,101,114,76,111,97,100,105,110,103,84,101,120,116,78,111,100,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,115,40,49,44,34,108,105,34,44,34,108,101,97,102,34,44,115,40,49,44,34,115,112,97,110,34,44,34,116,105,116,108,101,32,105,99,111,110,32,105,99,111,110,45,109,111,114,101,34,44,36,40,34,76,111,97,100,105,110,103,46,46,46,34,41,44,50,41,44,50,41,125,125,44,123,107,101,121,58,34,114,101,110,100,101,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,44,101,61,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,115,44,110,61,101,46,112,97,103,105,110,97,116,105,111,110,40,41,59,105,102,40,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,99,111,110,102,105,103,46,100,101,102,101,114,114,101,100,82,101,110,100,101,114,105,110,103,41,123,118,97,114,32,111,61,48,59,101,61,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,33,40,101,46,104,105,100,100,101,110,40,41,124,124,101,46,114,101,109,111,118,101,100,40,41,41,59,114,101,116,117,114,110,32,116,38,38,111,43,43,44,111,60,61,110,46,108,105,109,105,116,38,38,116,125,41,125,118,97,114,32,114,61,108,46,109,97,112,40,101,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,100,40,50,44,89,101,44,123,100,111,109,58,116,46,112,114,111,112,115,46,100,111,109,44,110,111,100,101,58,101,125,44,101,46,105,100,41,125,41,59,114,101,116,117,114,110,32,116,104,105,115,46,105,115,68,101,102,101,114,114,101,100,40,41,38,38,110,46,108,105,109,105,116,60,110,46,116,111,116,97,108,38,38,40,116,104,105,115,46,112,114,111,112,115,46,108,111,97,100,105,110,103,63,114,46,112,117,115,104,40,116,104,105,115,46,114,101,110,100,101,114,76,111,97,100,105,110,103,84,101,120,116,78,111,100,101,40,41,41,58,114,46,112,117,115,104,40,116,104,105,115,46,114,101,110,100,101,114,76,111,97,100,77,111,114,101,78,111,100,101,40,41,41,41,44,115,40,49,44,34,111,108,34,44,110,117,108,108,44,91,114,44,116,104,105,115,46,112,114,111,112,115,46,99,104,105,108,100,114,101,110,93,44,48,41,125,125,93,41,44,116,125,40,41,44,90,101,61,102,117,110,99,116,105,111,110,40,101,41,123,102,117,110,99,116,105,111,110,32,116,40,41,123,114,101,116,117,114,110,32,65,101,40,116,104,105,115,44,116,41,44,66,101,40,116,104,105,115,44,40,116,46,95,95,112,114,111,116,111,95,95,124,124,79,98,106,101,99,116,46,103,101,116,80,114,111,116,111,116,121,112,101,79,102,40,116,41,41,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,41,125,114,101,116,117,114,110,32,106,101,40,116,44,76,101,41,44,86,101,40,116,44,91,123,107,101,121,58,34,97,100,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,102,111,99,117,115,101,100,40,41,46,98,108,117,114,40,41,44,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,97,100,100,78,111,100,101,40,123,116,101,120,116,58,34,78,101,119,32,78,111,100,101,34,44,105,116,114,101,101,58,123,115,116,97,116,101,58,123,101,100,105,116,105,110,103,58,33,48,44,102,111,99,117,115,101,100,58,33,48,125,125,125,41,125,125,44,123,107,101,121,58,34,114,101,110,100,101,114,65,100,100,76,105,110,107,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,105,102,40,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,99,111,110,102,105,103,46,101,100,105,116,105,110,103,46,97,100,100,41,114,101,116,117,114,110,32,115,40,49,44,34,108,105,34,44,110,117,108,108,44,115,40,49,44,34,97,34,44,34,98,116,110,32,105,99,111,110,32,105,99,111,110,45,112,108,117,115,34,44,110,117,108,108,44,49,44,123,111,110,67,108,105,99,107,58,116,104,105,115,46,97,100,100,46,98,105,110,100,40,116,104,105,115,41,44,116,105,116,108,101,58,34,65,100,100,32,97,32,110,101,119,32,114,111,111,116,32,110,111,100,101,34,125,41,44,50,41,125,125,44,123,107,101,121,58,34,114,101,110,100,101,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,112,114,111,112,115,44,116,61,101,46,100,111,109,44,110,61,101,46,110,111,100,101,115,44,111,61,116,46,108,111,97,100,105,110,103,44,114,61,110,46,112,97,103,105,110,97,116,105,111,110,40,41,59,114,101,116,117,114,110,32,100,40,50,44,74,101,44,123,100,111,109,58,116,44,108,105,109,105,116,58,114,46,108,105,109,105,116,44,108,111,97,100,105,110,103,58,111,44,110,111,100,101,115,58,110,44,116,111,116,97,108,58,114,46,116,111,116,97,108,44,99,104,105,108,100,114,101,110,58,116,104,105,115,46,114,101,110,100,101,114,65,100,100,76,105,110,107,40,41,125,41,125,125,93,41,44,116,125,40,41,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,115,40,101,44,116,41,123,118,97,114,32,110,61,116,104,105,115,59,105,102,40,65,101,40,116,104,105,115,44,115,41,44,33,40,101,32,105,110,115,116,97,110,99,101,111,102,32,105,41,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,84,114,101,101,32,97,114,103,117,109,101,110,116,32,105,115,32,110,111,116,32,97,110,32,73,110,115,112,105,114,101,84,114,101,101,32,105,110,115,116,97,110,99,101,46,34,41,59,105,102,40,116,104,105,115,46,95,116,114,101,101,61,101,44,116,104,105,115,46,98,97,116,99,104,105,110,103,61,48,44,116,104,105,115,46,100,114,111,112,84,97,114,103,101,116,115,61,91,93,44,116,104,105,115,46,36,115,99,114,111,108,108,76,97,121,101,114,44,33,116,46,116,97,114,103,101,116,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,73,110,118,97,108,105,100,32,96,116,97,114,103,101,116,96,32,112,114,111,112,101,114,116,121,32,45,32,109,117,115,116,32,98,101,32,97,32,115,101,108,101,99,116,111,114,44,32,72,84,77,76,69,108,101,109,101,110,116,44,32,111,114,32,106,81,117,101,114,121,32,101,108,101,109,101,110,116,46,34,41,59,118,97,114,32,111,61,123,101,110,97,98,108,101,100,58,33,40,101,46,117,115,101,115,78,97,116,105,118,101,68,79,77,61,33,48,41,44,118,97,108,105,100,97,116,101,79,110,58,34,100,114,97,103,115,116,97,114,116,34,44,118,97,108,105,100,97,116,101,58,110,117,108,108,125,59,116,104,105,115,46,99,111,110,102,105,103,61,108,46,100,101,102,97,117,108,116,115,68,101,101,112,40,123,125,44,116,44,123,97,117,116,111,76,111,97,100,77,111,114,101,58,33,48,44,100,101,102,101,114,114,101,100,82,101,110,100,101,114,105,110,103,58,33,49,44,100,114,97,103,65,110,100,68,114,111,112,58,111,44,110,111,100,101,72,101,105,103,104,116,58,50,53,44,115,104,111,119,67,104,101,99,107,98,111,120,101,115,58,33,49,44,116,97,98,105,110,100,101,120,58,45,49,44,116,97,114,103,101,116,58,33,49,125,41,44,33,48,61,61,61,116,46,100,114,97,103,65,110,100,68,114,111,112,38,38,40,116,104,105,115,46,99,111,110,102,105,103,46,100,114,97,103,65,110,100,68,114,111,112,61,111,44,116,104,105,115,46,99,111,110,102,105,103,46,100,114,97,103,65,110,100,68,114,111,112,46,101,110,97,98,108,101,100,61,33,48,41,44,34,99,104,101,99,107,98,111,120,34,33,61,61,101,46,99,111,110,102,105,103,46,115,101,108,101,99,116,105,111,110,46,109,111,100,101,124,124,108,46,105,115,66,111,111,108,101,97,110,40,108,46,103,101,116,40,116,44,34,115,104,111,119,67,104,101,99,107,98,111,120,101,115,34,41,41,124,124,40,116,104,105,115,46,99,111,110,102,105,103,46,115,104,111,119,67,104,101,99,107,98,111,120,101,115,61,33,48,41,44,116,104,105,115,46,105,115,68,121,110,97,109,105,99,61,108,46,105,115,70,117,110,99,116,105,111,110,40,116,104,105,115,46,95,116,114,101,101,46,99,111,110,102,105,103,46,100,97,116,97,41,44,116,104,105,115,46,97,116,116,97,99,104,40,116,104,105,115,46,99,111,110,102,105,103,46,116,97,114,103,101,116,41,59,118,97,114,32,114,61,33,48,59,101,46,111,110,40,34,99,104,97,110,103,101,115,46,97,112,112,108,105,101,100,34,44,102,117,110,99,116,105,111,110,40,41,123,110,46,114,101,110,100,101,114,78,111,100,101,115,40,41,44,114,38,38,40,110,46,115,99,114,111,108,108,83,101,108,101,99,116,101,100,73,110,116,111,86,105,101,119,40,41,44,114,61,33,49,41,125,41,44,116,104,105,115,46,114,101,110,100,101,114,78,111,100,101,115,40,41,125,114,101,116,117,114,110,32,86,101,40,115,44,91,123,107,101,121,58,34,97,116,116,97,99,104,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,105,102,40,116,104,105,115,46,36,116,97,114,103,101,116,61,116,104,105,115,46,103,101,116,69,108,101,109,101,110,116,40,101,41,44,116,104,105,115,46,36,115,99,114,111,108,108,76,97,121,101,114,61,116,104,105,115,46,103,101,116,83,99,114,111,108,108,97,98,108,101,65,110,99,101,115,116,111,114,40,116,104,105,115,46,36,116,97,114,103,101,116,41,44,33,116,104,105,115,46,36,116,97,114,103,101,116,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,78,111,32,118,97,108,105,100,32,101,108,101,109,101,110,116,32,116,111,32,97,116,116,97,99,104,32,116,111,46,34,41,59,116,104,105,115,46,36,116,97,114,103,101,116,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,100,97,116,97,45,117,105,100,34,44,116,104,105,115,46,95,116,114,101,101,46,105,100,41,59,118,97,114,32,110,61,116,104,105,115,46,36,116,97,114,103,101,116,46,99,108,97,115,115,78,97,109,101,46,115,112,108,105,116,40,34,32,34,41,59,105,102,40,110,46,112,117,115,104,40,34,105,110,115,112,105,114,101,45,116,114,101,101,34,41,44,116,104,105,115,46,95,116,114,101,101,46,99,111,110,102,105,103,46,101,100,105,116,97,98,108,101,38,38,40,110,46,112,117,115,104,40,34,101,100,105,116,97,98,108,101,34,41,44,108,46,101,97,99,104,40,108,46,112,105,99,107,66,121,40,116,104,105,115,46,95,116,114,101,101,46,99,111,110,102,105,103,46,101,100,105,116,105,110,103,44,108,46,105,100,101,110,116,105,116,121,41,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,110,46,112,117,115,104,40,34,101,100,105,116,97,98,108,101,45,34,43,116,41,125,41,41,44,116,104,105,115,46,36,116,97,114,103,101,116,46,99,108,97,115,115,78,97,109,101,61,110,46,106,111,105,110,40,34,32,34,41,44,116,104,105,115,46,36,116,97,114,103,101,116,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,116,97,98,105,110,100,101,120,34,44,116,104,105,115,46,99,111,110,102,105,103,46,116,97,98,105,110,100,101,120,124,124,48,41,44,116,104,105,115,46,36,116,97,114,103,101,116,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,107,101,121,100,111,119,110,34,44,116,104,105,115,46,107,101,121,98,111,97,114,100,76,105,115,116,101,110,101,114,46,98,105,110,100,40,116,104,105,115,41,41,44,116,104,105,115,46,99,111,110,102,105,103,46,100,114,97,103,65,110,100,68,114,111,112,46,101,110,97,98,108,101,100,38,38,40,116,104,105,115,46,36,116,97,114,103,101,116,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,100,114,97,103,101,110,116,101,114,34,44,116,104,105,115,46,111,110,68,114,97,103,69,110,116,101,114,46,98,105,110,100,40,116,104,105,115,41,44,33,49,41,44,116,104,105,115,46,36,116,97,114,103,101,116,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,100,114,97,103,108,101,97,118,101,34,44,116,104,105,115,46,111,110,68,114,97,103,76,101,97,118,101,46,98,105,110,100,40,116,104,105,115,41,44,33,49,41,44,116,104,105,115,46,36,116,97,114,103,101,116,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,100,114,97,103,111,118,101,114,34,44,116,104,105,115,46,111,110,68,114,97,103,79,118,101,114,46,98,105,110,100,40,116,104,105,115,41,44,33,49,41,44,116,104,105,115,46,36,116,97,114,103,101,116,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,100,114,111,112,34,44,116,104,105,115,46,111,110,68,114,111,112,46,98,105,110,100,40,116,104,105,115,41,44,33,49,41,44,116,104,105,115,46,36,116,97,114,103,101,116,46,99,108,97,115,115,76,105,115,116,46,97,100,100,40,34,100,114,97,103,45,97,110,100,45,100,114,111,112,34,41,41,44,116,104,105,115,46,95,116,114,101,101,46,111,110,40,34,110,111,100,101,46,102,111,99,117,115,101,100,34,44,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,46,105,116,114,101,101,46,114,101,102,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,34,46,116,105,116,108,101,34,41,59,116,33,61,61,100,111,99,117,109,101,110,116,46,97,99,116,105,118,101,69,108,101,109,101,110,116,38,38,116,46,102,111,99,117,115,40,41,125,41,44,116,104,105,115,46,99,111,110,102,105,103,46,100,101,102,101,114,114,101,100,82,101,110,100,101,114,105,110,103,124,124,116,104,105,115,46,95,116,114,101,101,46,99,111,110,102,105,103,46,100,101,102,101,114,114,101,100,76,111,97,100,105,110,103,41,123,118,97,114,32,116,61,116,104,105,115,46,95,116,114,101,101,46,99,111,110,102,105,103,46,112,97,103,105,110,97,116,105,111,110,46,108,105,109,105,116,59,116,104,105,115,46,95,116,114,101,101,46,99,111,110,102,105,103,46,112,97,103,105,110,97,116,105,111,110,46,108,105,109,105,116,61,48,60,116,63,116,58,108,46,99,101,105,108,40,116,104,105,115,46,36,115,99,114,111,108,108,76,97,121,101,114,46,99,108,105,101,110,116,72,101,105,103,104,116,47,116,104,105,115,46,99,111,110,102,105,103,46,110,111,100,101,72,101,105,103,104,116,41,44,116,104,105,115,46,99,111,110,102,105,103,46,97,117,116,111,76,111,97,100,77,111,114,101,38,38,116,104,105,115,46,36,116,97,114,103,101,116,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,115,99,114,111,108,108,34,44,108,46,116,104,114,111,116,116,108,101,40,116,104,105,115,46,115,99,114,111,108,108,76,105,115,116,101,110,101,114,46,98,105,110,100,40,116,104,105,115,41,44,50,48,41,41,125,116,104,105,115,46,36,116,97,114,103,101,116,46,105,110,115,112,105,114,101,84,114,101,101,61,116,104,105,115,46,95,116,114,101,101,125,125,44,123,107,101,121,58,34,99,108,101,97,114,83,101,108,101,99,116,105,111,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,100,111,99,117,109,101,110,116,46,115,101,108,101,99,116,105,111,110,38,38,100,111,99,117,109,101,110,116,46,115,101,108,101,99,116,105,111,110,46,101,109,112,116,121,63,100,111,99,117,109,101,110,116,46,115,101,108,101,99,116,105,111,110,46,101,109,112,116,121,40,41,58,119,105,110,100,111,119,46,103,101,116,83,101,108,101,99,116,105,111,110,38,38,119,105,110,100,111,119,46,103,101,116,83,101,108,101,99,116,105,111,110,40,41,46,114,101,109,111,118,101,65,108,108,82,97,110,103,101,115,40,41,125,125,44,123,107,101,121,58,34,103,101,116,69,108,101,109,101,110,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,118,111,105,100,32,48,59,105,102,40,101,32,105,110,115,116,97,110,99,101,111,102,32,72,84,77,76,69,108,101,109,101,110,116,41,116,61,101,59,101,108,115,101,32,105,102,40,108,46,105,115,79,98,106,101,99,116,40,101,41,38,38,108,46,105,115,79,98,106,101,99,116,40,101,91,48,93,41,41,116,61,101,91,48,93,59,101,108,115,101,32,105,102,40,108,46,105,115,83,116,114,105,110,103,40,101,41,41,123,118,97,114,32,110,61,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,101,41,59,110,38,38,40,116,61,110,41,125,114,101,116,117,114,110,32,116,125,125,44,123,107,101,121,58,34,103,101,116,83,99,114,111,108,108,97,98,108,101,65,110,99,101,115,116,111,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,101,32,105,110,115,116,97,110,99,101,111,102,32,69,108,101,109,101,110,116,38,38,40,34,97,117,116,111,34,33,61,61,103,101,116,67,111,109,112,117,116,101,100,83,116,121,108,101,40,101,41,46,111,118,101,114,102,108,111,119,38,38,101,46,112,97,114,101,110,116,78,111,100,101,38,38,40,101,61,116,104,105,115,46,103,101,116,83,99,114,111,108,108,97,98,108,101,65,110,99,101,115,116,111,114,40,101,46,112,97,114,101,110,116,78,111,100,101,41,41,41,59,114,101,116,117,114,110,32,101,125,125,44,123,107,101,121,58,34,107,101,121,98,111,97,114,100,76,105,115,116,101,110,101,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,105,102,40,101,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,44,33,40,91,73,101,44,85,101,44,77,101,44,70,101,44,69,101,93,46,105,110,100,101,120,79,102,40,101,46,119,104,105,99,104,41,60,48,41,41,123,118,97,114,32,116,61,116,104,105,115,46,95,116,114,101,101,46,102,111,99,117,115,101,100,40,41,59,105,102,40,116,46,108,101,110,103,116,104,41,115,119,105,116,99,104,40,101,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,101,46,119,104,105,99,104,41,123,99,97,115,101,32,73,101,58,116,104,105,115,46,109,111,118,101,70,111,99,117,115,68,111,119,110,70,114,111,109,40,116,91,48,93,41,59,98,114,101,97,107,59,99,97,115,101,32,85,101,58,116,91,48,93,46,116,111,103,103,108,101,83,101,108,101,99,116,40,41,59,98,114,101,97,107,59,99,97,115,101,32,77,101,58,116,91,48,93,46,99,111,108,108,97,112,115,101,40,41,59,98,114,101,97,107,59,99,97,115,101,32,70,101,58,116,91,48,93,46,101,120,112,97,110,100,40,41,59,98,114,101,97,107,59,99,97,115,101,32,69,101,58,116,104,105,115,46,109,111,118,101,70,111,99,117,115,85,112,70,114,111,109,40,116,91,48,93,41,125,125,125,125,44,123,107,101,121,58,34,109,111,118,101,70,111,99,117,115,68,111,119,110,70,114,111,109,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,46,110,101,120,116,86,105,115,105,98,108,101,78,111,100,101,40,41,59,116,38,38,116,46,102,111,99,117,115,40,41,125,125,44,123,107,101,121,58,34,109,111,118,101,70,111,99,117,115,85,112,70,114,111,109,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,46,112,114,101,118,105,111,117,115,86,105,115,105,98,108,101,78,111,100,101,40,41,59,116,38,38,116,46,102,111,99,117,115,40,41,125,125,44,123,107,101,121,58,34,110,111,100,101,70,114,111,109,84,105,116,108,101,68,79,77,69,108,101,109,101,110,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,46,112,97,114,101,110,116,78,111,100,101,46,112,97,114,101,110,116,78,111,100,101,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,100,97,116,97,45,117,105,100,34,41,59,114,101,116,117,114,110,32,116,104,105,115,46,95,116,114,101,101,46,110,111,100,101,40,116,41,125,125,44,123,107,101,121,58,34,111,110,68,114,97,103,69,110,116,101,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,101,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,101,46,116,97,114,103,101,116,46,99,108,97,115,115,76,105,115,116,46,97,100,100,40,34,100,114,97,103,45,116,97,114,103,101,116,105,110,103,34,44,34,100,114,97,103,45,116,97,114,103,101,116,105,110,103,45,105,110,115,101,114,116,34,41,125,125,44,123,107,101,121,58,34,111,110,68,114,97,103,76,101,97,118,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,101,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,116,104,105,115,46,117,110,104,105,103,104,108,105,103,104,116,84,97,114,103,101,116,40,101,46,116,97,114,103,101,116,41,125,125,44,123,107,101,121,58,34,111,110,68,114,97,103,79,118,101,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,101,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,125,125,44,123,107,101,121,58,34,111,110,68,114,111,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,101,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,116,104,105,115,46,117,110,104,105,103,104,108,105,103,104,116,84,97,114,103,101,116,40,101,46,116,97,114,103,101,116,41,59,118,97,114,32,116,61,101,46,100,97,116,97,84,114,97,110,115,102,101,114,46,103,101,116,68,97,116,97,40,34,116,114,101,101,73,100,34,41,44,110,61,101,46,100,97,116,97,84,114,97,110,115,102,101,114,46,103,101,116,68,97,116,97,40,34,110,111,100,101,73,100,34,41,44,111,61,115,46,103,101,116,84,114,101,101,66,121,73,100,40,116,41,46,110,111,100,101,40,110,41,59,111,46,115,116,97,116,101,40,34,100,114,111,112,45,116,97,114,103,101,116,34,44,33,48,41,59,118,97,114,32,114,61,111,46,114,101,109,111,118,101,40,33,48,41,44,105,61,116,104,105,115,46,95,116,114,101,101,46,97,100,100,78,111,100,101,40,114,41,44,97,61,116,104,105,115,46,95,116,114,101,101,46,105,110,100,101,120,79,102,40,105,41,59,116,104,105,115,46,95,116,114,101,101,46,101,109,105,116,40,34,110,111,100,101,46,100,114,111,112,34,44,101,44,105,44,110,117,108,108,44,97,41,125,125,44,123,107,101,121,58,34,114,101,110,100,101,114,78,111,100,101,115,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,40,100,40,50,44,90,101,44,123,100,111,109,58,116,104,105,115,44,110,111,100,101,115,58,101,124,124,116,104,105,115,46,95,116,114,101,101,46,110,111,100,101,115,40,41,125,41,44,116,104,105,115,46,36,116,97,114,103,101,116,41,125,125,44,123,107,101,121,58,34,115,99,114,111,108,108,76,105,115,116,101,110,101,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,114,41,123,118,97,114,32,105,61,116,104,105,115,59,105,102,40,33,116,104,105,115,46,114,101,110,100,101,114,105,110,103,38,38,33,116,104,105,115,46,108,111,97,100,105,110,103,41,123,118,97,114,32,97,61,116,104,105,115,46,36,115,99,114,111,108,108,76,97,121,101,114,46,103,101,116,66,111,117,110,100,105,110,103,67,108,105,101,110,116,82,101,99,116,40,41,44,101,61,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,34,46,108,111,97,100,45,109,111,114,101,34,41,59,108,46,101,97,99,104,40,101,44,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,46,103,101,116,66,111,117,110,100,105,110,103,67,108,105,101,110,116,82,101,99,116,40,41,59,105,102,40,33,40,97,46,114,105,103,104,116,60,116,46,108,101,102,116,124,124,97,46,108,101,102,116,62,116,46,114,105,103,104,116,124,124,97,46,98,111,116,116,111,109,60,116,46,116,111,112,124,124,97,46,116,111,112,62,116,46,98,111,116,116,111,109,41,41,123,118,97,114,32,110,61,118,111,105,100,32,48,44,111,61,101,46,112,97,114,101,110,116,78,111,100,101,46,112,97,114,101,110,116,78,111,100,101,46,112,97,114,101,110,116,78,111,100,101,59,34,76,73,34,61,61,61,111,46,116,97,103,78,97,109,101,38,38,40,110,61,105,46,95,116,114,101,101,46,110,111,100,101,40,111,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,100,97,116,97,45,117,105,100,34,41,41,41,44,105,46,95,116,114,101,101,46,108,111,97,100,77,111,114,101,40,110,44,114,41,125,125,41,125,125,125,44,123,107,101,121,58,34,115,99,114,111,108,108,83,101,108,101,99,116,101,100,73,110,116,111,86,105,101,119,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,36,116,97,114,103,101,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,34,46,115,101,108,101,99,116,101,100,34,41,59,101,38,38,116,104,105,115,46,36,115,99,114,111,108,108,76,97,121,101,114,38,38,40,116,104,105,115,46,36,115,99,114,111,108,108,76,97,121,101,114,46,115,99,114,111,108,108,84,111,112,61,101,46,111,102,102,115,101,116,84,111,112,41,125,125,44,123,107,101,121,58,34,117,110,104,105,103,104,108,105,103,104,116,84,97,114,103,101,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,101,38,38,101,46,99,108,97,115,115,76,105,115,116,46,114,101,109,111,118,101,40,34,100,114,97,103,45,116,97,114,103,101,116,105,110,103,34,44,34,100,114,97,103,45,116,97,114,103,101,116,105,110,103,45,105,110,115,101,114,116,34,41,125,125,93,44,91,123,107,101,121,58,34,103,101,116,84,114,101,101,66,121,73,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,39,91,100,97,116,97,45,117,105,100,61,34,39,43,101,43,39,34,93,39,41,59,105,102,40,116,41,114,101,116,117,114,110,32,116,46,105,110,115,112,105,114,101,84,114,101,101,125,125,93,41,44,115,125,40,41,125,41,59,59,10,10,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,79,98,106,101,99,116,46,99,114,101,97,116,101,38,38,40,79,98,106,101,99,116,46,99,114,101,97,116,101,61,102,117,110,99,116,105,111,110,40,116,41,123,102,117,110,99,116,105,111,110,32,111,40,41,123,125,114,101,116,117,114,110,32,111,46,112,114,111,116,111,116,121,112,101,61,116,44,110,101,119,32,111,125,41,44,102,117,110,99,116,105,111,110,40,116,44,111,44,105,44,115,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,118,97,114,32,110,61,123,95,112,111,115,105,116,105,111,110,67,108,97,115,115,101,115,58,91,34,98,111,116,116,111,109,45,108,101,102,116,34,44,34,98,111,116,116,111,109,45,114,105,103,104,116,34,44,34,116,111,112,45,114,105,103,104,116,34,44,34,116,111,112,45,108,101,102,116,34,44,34,98,111,116,116,111,109,45,99,101,110,116,101,114,34,44,34,116,111,112,45,99,101,110,116,101,114,34,44,34,109,105,100,45,99,101,110,116,101,114,34,93,44,95,100,101,102,97,117,108,116,73,99,111,110,115,58,91,34,115,117,99,99,101,115,115,34,44,34,101,114,114,111,114,34,44,34,105,110,102,111,34,44,34,119,97,114,110,105,110,103,34,93,44,105,110,105,116,58,102,117,110,99,116,105,111,110,40,111,44,105,41,123,116,104,105,115,46,112,114,101,112,97,114,101,79,112,116,105,111,110,115,40,111,44,116,46,116,111,97,115,116,46,111,112,116,105,111,110,115,41,44,116,104,105,115,46,112,114,111,99,101,115,115,40,41,125,44,112,114,101,112,97,114,101,79,112,116,105,111,110,115,58,102,117,110,99,116,105,111,110,40,111,44,105,41,123,118,97,114,32,115,61,123,125,59,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,111,124,124,111,32,105,110,115,116,97,110,99,101,111,102,32,65,114,114,97,121,63,115,46,116,101,120,116,61,111,58,115,61,111,44,116,104,105,115,46,111,112,116,105,111,110,115,61,116,46,101,120,116,101,110,100,40,123,125,44,105,44,115,41,125,44,112,114,111,99,101,115,115,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,115,101,116,117,112,40,41,44,116,104,105,115,46,97,100,100,84,111,68,111,109,40,41,44,116,104,105,115,46,112,111,115,105,116,105,111,110,40,41,44,116,104,105,115,46,98,105,110,100,84,111,97,115,116,40,41,44,116,104,105,115,46,97,110,105,109,97,116,101,40,41,125,44,115,101,116,117,112,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,111,61,34,34,59,105,102,40,116,104,105,115,46,95,116,111,97,115,116,69,108,61,116,104,105,115,46,95,116,111,97,115,116,69,108,124,124,116,40,34,60,100,105,118,62,60,47,100,105,118,62,34,44,123,99,108,97,115,115,58,34,106,113,45,116,111,97,115,116,45,115,105,110,103,108,101,34,125,41,44,111,43,61,39,60,115,112,97,110,32,99,108,97,115,115,61,34,106,113,45,116,111,97,115,116,45,108,111,97,100,101,114,34,62,60,47,115,112,97,110,62,39,44,116,104,105,115,46,111,112,116,105,111,110,115,46,97,108,108,111,119,84,111,97,115,116,67,108,111,115,101,38,38,40,111,43,61,39,60,115,112,97,110,32,99,108,97,115,115,61,34,99,108,111,115,101,45,106,113,45,116,111,97,115,116,45,115,105,110,103,108,101,34,62,38,116,105,109,101,115,59,60,47,115,112,97,110,62,39,41,44,116,104,105,115,46,111,112,116,105,111,110,115,46,116,101,120,116,32,105,110,115,116,97,110,99,101,111,102,32,65,114,114,97,121,41,123,116,104,105,115,46,111,112,116,105,111,110,115,46,104,101,97,100,105,110,103,38,38,40,111,43,61,39,60,104,50,32,99,108,97,115,115,61,34,106,113,45,116,111,97,115,116,45,104,101,97,100,105,110,103,34,62,39,43,116,104,105,115,46,111,112,116,105,111,110,115,46,104,101,97,100,105,110,103,43,34,60,47,104,50,62,34,41,44,111,43,61,39,60,117,108,32,99,108,97,115,115,61,34,106,113,45,116,111,97,115,116,45,117,108,34,62,39,59,102,111,114,40,118,97,114,32,105,61,48,59,105,60,116,104,105,115,46,111,112,116,105,111,110,115,46,116,101,120,116,46,108,101,110,103,116,104,59,105,43,43,41,111,43,61,39,60,108,105,32,99,108,97,115,115,61,34,106,113,45,116,111,97,115,116,45,108,105,34,32,105,100,61,34,106,113,45,116,111,97,115,116,45,105,116,101,109,45,39,43,105,43,39,34,62,39,43,116,104,105,115,46,111,112,116,105,111,110,115,46,116,101,120,116,91,105,93,43,34,60,47,108,105,62,34,59,111,43,61,34,60,47,117,108,62,34,125,101,108,115,101,32,116,104,105,115,46,111,112,116,105,111,110,115,46,104,101,97,100,105,110,103,38,38,40,111,43,61,39,60,104,50,32,99,108,97,115,115,61,34,106,113,45,116,111,97,115,116,45,104,101,97,100,105,110,103,34,62,39,43,116,104,105,115,46,111,112,116,105,111,110,115,46,104,101,97,100,105,110,103,43,34,60,47,104,50,62,34,41,44,111,43,61,116,104,105,115,46,111,112,116,105,111,110,115,46,116,101,120,116,59,116,104,105,115,46,95,116,111,97,115,116,69,108,46,104,116,109,108,40,111,41,44,33,49,33,61,61,116,104,105,115,46,111,112,116,105,111,110,115,46,98,103,67,111,108,111,114,38,38,116,104,105,115,46,95,116,111,97,115,116,69,108,46,99,115,115,40,34,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,34,44,116,104,105,115,46,111,112,116,105,111,110,115,46,98,103,67,111,108,111,114,41,44,33,49,33,61,61,116,104,105,115,46,111,112,116,105,111,110,115,46,116,101,120,116,67,111,108,111,114,38,38,116,104,105,115,46,95,116,111,97,115,116,69,108,46,99,115,115,40,34,99,111,108,111,114,34,44,116,104,105,115,46,111,112,116,105,111,110,115,46,116,101,120,116,67,111,108,111,114,41,44,116,104,105,115,46,111,112,116,105,111,110,115,46,116,101,120,116,65,108,105,103,110,38,38,116,104,105,115,46,95,116,111,97,115,116,69,108,46,99,115,115,40,34,116,101,120,116,45,97,108,105,103,110,34,44,116,104,105,115,46,111,112,116,105,111,110,115,46,116,101,120,116,65,108,105,103,110,41,44,33,49,33,61,61,116,104,105,115,46,111,112,116,105,111,110,115,46,105,99,111,110,38,38,40,116,104,105,115,46,95,116,111,97,115,116,69,108,46,97,100,100,67,108,97,115,115,40,34,106,113,45,104,97,115,45,105,99,111,110,34,41,44,45,49,33,61,61,116,46,105,110,65,114,114,97,121,40,116,104,105,115,46,111,112,116,105,111,110,115,46,105,99,111,110,44,116,104,105,115,46,95,100,101,102,97,117,108,116,73,99,111,110,115,41,38,38,116,104,105,115,46,95,116,111,97,115,116,69,108,46,97,100,100,67,108,97,115,115,40,34,106,113,45,105,99,111,110,45,34,43,116,104,105,115,46,111,112,116,105,111,110,115,46,105,99,111,110,41,41,44,33,49,33,61,61,116,104,105,115,46,111,112,116,105,111,110,115,46,99,108,97,115,115,38,38,116,104,105,115,46,95,116,111,97,115,116,69,108,46,97,100,100,67,108,97,115,115,40,116,104,105,115,46,111,112,116,105,111,110,115,46,99,108,97,115,115,41,125,44,112,111,115,105,116,105,111,110,58,102,117,110,99,116,105,111,110,40,41,123,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,116,104,105,115,46,111,112,116,105,111,110,115,46,112,111,115,105,116,105,111,110,38,38,45,49,33,61,61,116,46,105,110,65,114,114,97,121,40,116,104,105,115,46,111,112,116,105,111,110,115,46,112,111,115,105,116,105,111,110,44,116,104,105,115,46,95,112,111,115,105,116,105,111,110,67,108,97,115,115,101,115,41,63,34,98,111,116,116,111,109,45,99,101,110,116,101,114,34,61,61,61,116,104,105,115,46,111,112,116,105,111,110,115,46,112,111,115,105,116,105,111,110,63,116,104,105,115,46,95,99,111,110,116,97,105,110,101,114,46,99,115,115,40,123,108,101,102,116,58,116,40,111,41,46,111,117,116,101,114,87,105,100,116,104,40,41,47,50,45,116,104,105,115,46,95,99,111,110,116,97,105,110,101,114,46,111,117,116,101,114,87,105,100,116,104,40,41,47,50,44,98,111,116,116,111,109,58,50,48,125,41,58,34,116,111,112,45,99,101,110,116,101,114,34,61,61,61,116,104,105,115,46,111,112,116,105,111,110,115,46,112,111,115,105,116,105,111,110,63,116,104,105,115,46,95,99,111,110,116,97,105,110,101,114,46,99,115,115,40,123,108,101,102,116,58,116,40,111,41,46,111,117,116,101,114,87,105,100,116,104,40,41,47,50,45,116,104,105,115,46,95,99,111,110,116,97,105,110,101,114,46,111,117,116,101,114,87,105,100,116,104,40,41,47,50,44,116,111,112,58,50,48,125,41,58,34,109,105,100,45,99,101,110,116,101,114,34,61,61,61,116,104,105,115,46,111,112,116,105,111,110,115,46,112,111,115,105,116,105,111,110,63,116,104,105,115,46,95,99,111,110,116,97,105,110,101,114,46,99,115,115,40,123,108,101,102,116,58,116,40,111,41,46,111,117,116,101,114,87,105,100,116,104,40,41,47,50,45,116,104,105,115,46,95,99,111,110,116,97,105,110,101,114,46,111,117,116,101,114,87,105,100,116,104,40,41,47,50,44,116,111,112,58,116,40,111,41,46,111,117,116,101,114,72,101,105,103,104,116,40,41,47,50,45,116,104,105,115,46,95,99,111,110,116,97,105,110,101,114,46,111,117,116,101,114,72,101,105,103,104,116,40,41,47,50,125,41,58,116,104,105,115,46,95,99,111,110,116,97,105,110,101,114,46,97,100,100,67,108,97,115,115,40,116,104,105,115,46,111,112,116,105,111,110,115,46,112,111,115,105,116,105,111,110,41,58,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,116,104,105,115,46,111,112,116,105,111,110,115,46,112,111,115,105,116,105,111,110,63,116,104,105,115,46,95,99,111,110,116,97,105,110,101,114,46,99,115,115,40,123,116,111,112,58,116,104,105,115,46,111,112,116,105,111,110,115,46,112,111,115,105,116,105,111,110,46,116,111,112,63,116,104,105,115,46,111,112,116,105,111,110,115,46,112,111,115,105,116,105,111,110,46,116,111,112,58,34,97,117,116,111,34,44,98,111,116,116,111,109,58,116,104,105,115,46,111,112,116,105,111,110,115,46,112,111,115,105,116,105,111,110,46,98,111,116,116,111,109,63,116,104,105,115,46,111,112,116,105,111,110,115,46,112,111,115,105,116,105,111,110,46,98,111,116,116,111,109,58,34,97,117,116,111,34,44,108,101,102,116,58,116,104,105,115,46,111,112,116,105,111,110,115,46,112,111,115,105,116,105,111,110,46,108,101,102,116,63,116,104,105,115,46,111,112,116,105,111,110,115,46,112,111,115,105,116,105,111,110,46,108,101,102,116,58,34,97,117,116,111,34,44,114,105,103,104,116,58,116,104,105,115,46,111,112,116,105,111,110,115,46,112,111,115,105,116,105,111,110,46,114,105,103,104,116,63,116,104,105,115,46,111,112,116,105,111,110,115,46,112,111,115,105,116,105,111,110,46,114,105,103,104,116,58,34,97,117,116,111,34,125,41,58,116,104,105,115,46,95,99,111,110,116,97,105,110,101,114,46,97,100,100,67,108,97,115,115,40,34,98,111,116,116,111,109,45,108,101,102,116,34,41,125,44,98,105,110,100,84,111,97,115,116,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,59,116,104,105,115,46,95,116,111,97,115,116,69,108,46,111,110,40,34,97,102,116,101,114,83,104,111,119,110,34,44,102,117,110,99,116,105,111,110,40,41,123,116,46,112,114,111,99,101,115,115,76,111,97,100,101,114,40,41,125,41,44,116,104,105,115,46,95,116,111,97,115,116,69,108,46,102,105,110,100,40,34,46,99,108,111,115,101,45,106,113,45,116,111,97,115,116,45,115,105,110,103,108,101,34,41,46,111,110,40,34,99,108,105,99,107,34,44,102,117,110,99,116,105,111,110,40,111,41,123,111,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,34,102,97,100,101,34,61,61,61,116,46,111,112,116,105,111,110,115,46,115,104,111,119,72,105,100,101,84,114,97,110,115,105,116,105,111,110,63,40,116,46,95,116,111,97,115,116,69,108,46,116,114,105,103,103,101,114,40,34,98,101,102,111,114,101,72,105,100,101,34,41,44,116,46,95,116,111,97,115,116,69,108,46,102,97,100,101,79,117,116,40,102,117,110,99,116,105,111,110,40,41,123,116,46,95,116,111,97,115,116,69,108,46,116,114,105,103,103,101,114,40,34,97,102,116,101,114,72,105,100,100,101,110,34,41,125,41,41,58,34,115,108,105,100,101,34,61,61,61,116,46,111,112,116,105,111,110,115,46,115,104,111,119,72,105,100,101,84,114,97,110,115,105,116,105,111,110,63,40,116,46,95,116,111,97,115,116,69,108,46,116,114,105,103,103,101,114,40,34,98,101,102,111,114,101,72,105,100,101,34,41,44,116,46,95,116,111,97,115,116,69,108,46,115,108,105,100,101,85,112,40,102,117,110,99,116,105,111,110,40,41,123,116,46,95,116,111,97,115,116,69,108,46,116,114,105,103,103,101,114,40,34,97,102,116,101,114,72,105,100,100,101,110,34,41,125,41,41,58,40,116,46,95,116,111,97,115,116,69,108,46,116,114,105,103,103,101,114,40,34,98,101,102,111,114,101,72,105,100,101,34,41,44,116,46,95,116,111,97,115,116,69,108,46,104,105,100,101,40,102,117,110,99,116,105,111,110,40,41,123,116,46,95,116,111,97,115,116,69,108,46,116,114,105,103,103,101,114,40,34,97,102,116,101,114,72,105,100,100,101,110,34,41,125,41,41,125,41,44,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,104,105,115,46,111,112,116,105,111,110,115,46,98,101,102,111,114,101,83,104,111,119,38,38,116,104,105,115,46,95,116,111,97,115,116,69,108,46,111,110,40,34,98,101,102,111,114,101,83,104,111,119,34,44,102,117,110,99,116,105,111,110,40,41,123,116,46,111,112,116,105,111,110,115,46,98,101,102,111,114,101,83,104,111,119,40,116,46,95,116,111,97,115,116,69,108,41,125,41,44,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,104,105,115,46,111,112,116,105,111,110,115,46,97,102,116,101,114,83,104,111,119,110,38,38,116,104,105,115,46,95,116,111,97,115,116,69,108,46,111,110,40,34,97,102,116,101,114,83,104,111,119,110,34,44,102,117,110,99,116,105,111,110,40,41,123,116,46,111,112,116,105,111,110,115,46,97,102,116,101,114,83,104,111,119,110,40,116,46,95,116,111,97,115,116,69,108,41,125,41,44,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,104,105,115,46,111,112,116,105,111,110,115,46,98,101,102,111,114,101,72,105,100,101,38,38,116,104,105,115,46,95,116,111,97,115,116,69,108,46,111,110,40,34,98,101,102,111,114,101,72,105,100,101,34,44,102,117,110,99,116,105,111,110,40,41,123,116,46,111,112,116,105,111,110,115,46,98,101,102,111,114,101,72,105,100,101,40,116,46,95,116,111,97,115,116,69,108,41,125,41,44,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,104,105,115,46,111,112,116,105,111,110,115,46,97,102,116,101,114,72,105,100,100,101,110,38,38,116,104,105,115,46,95,116,111,97,115,116,69,108,46,111,110,40,34,97,102,116,101,114,72,105,100,100,101,110,34,44,102,117,110,99,116,105,111,110,40,41,123,116,46,111,112,116,105,111,110,115,46,97,102,116,101,114,72,105,100,100,101,110,40,116,46,95,116,111,97,115,116,69,108,41,125,41,44,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,104,105,115,46,111,112,116,105,111,110,115,46,111,110,67,108,105,99,107,38,38,116,104,105,115,46,95,116,111,97,115,116,69,108,46,111,110,40,34,99,108,105,99,107,34,44,102,117,110,99,116,105,111,110,40,41,123,116,46,111,112,116,105,111,110,115,46,111,110,67,108,105,99,107,40,116,46,95,116,111,97,115,116,69,108,41,125,41,125,44,97,100,100,84,111,68,111,109,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,111,61,116,40,34,46,106,113,45,116,111,97,115,116,45,119,114,97,112,34,41,59,105,102,40,48,61,61,61,111,46,108,101,110,103,116,104,63,40,111,61,116,40,34,60,100,105,118,62,60,47,100,105,118,62,34,44,123,99,108,97,115,115,58,34,106,113,45,116,111,97,115,116,45,119,114,97,112,34,44,114,111,108,101,58,34,97,108,101,114,116,34,44,34,97,114,105,97,45,108,105,118,101,34,58,34,112,111,108,105,116,101,34,125,41,44,116,40,34,98,111,100,121,34,41,46,97,112,112,101,110,100,40,111,41,41,58,116,104,105,115,46,111,112,116,105,111,110,115,46,115,116,97,99,107,38,38,33,105,115,78,97,78,40,112,97,114,115,101,73,110,116,40,116,104,105,115,46,111,112,116,105,111,110,115,46,115,116,97,99,107,44,49,48,41,41,124,124,111,46,101,109,112,116,121,40,41,44,111,46,102,105,110,100,40,34,46,106,113,45,116,111,97,115,116,45,115,105,110,103,108,101,58,104,105,100,100,101,110,34,41,46,114,101,109,111,118,101,40,41,44,111,46,97,112,112,101,110,100,40,116,104,105,115,46,95,116,111,97,115,116,69,108,41,44,116,104,105,115,46,111,112,116,105,111,110,115,46,115,116,97,99,107,38,38,33,105,115,78,97,78,40,112,97,114,115,101,73,110,116,40,116,104,105,115,46,111,112,116,105,111,110,115,46,115,116,97,99,107,41,44,49,48,41,41,123,118,97,114,32,105,61,111,46,102,105,110,100,40,34,46,106,113,45,116,111,97,115,116,45,115,105,110,103,108,101,34,41,46,108,101,110,103,116,104,45,116,104,105,115,46,111,112,116,105,111,110,115,46,115,116,97,99,107,59,105,62,48,38,38,116,40,34,46,106,113,45,116,111,97,115,116,45,119,114,97,112,34,41,46,102,105,110,100,40,34,46,106,113,45,116,111,97,115,116,45,115,105,110,103,108,101,34,41,46,115,108,105,99,101,40,48,44,105,41,46,114,101,109,111,118,101,40,41,125,116,104,105,115,46,95,99,111,110,116,97,105,110,101,114,61,111,125,44,99,97,110,65,117,116,111,72,105,100,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,33,49,33,61,61,116,104,105,115,46,111,112,116,105,111,110,115,46,104,105,100,101,65,102,116,101,114,38,38,33,105,115,78,97,78,40,112,97,114,115,101,73,110,116,40,116,104,105,115,46,111,112,116,105,111,110,115,46,104,105,100,101,65,102,116,101,114,44,49,48,41,41,125,44,112,114,111,99,101,115,115,76,111,97,100,101,114,58,102,117,110,99,116,105,111,110,40,41,123,105,102,40,33,116,104,105,115,46,99,97,110,65,117,116,111,72,105,100,101,40,41,124,124,33,49,61,61,61,116,104,105,115,46,111,112,116,105,111,110,115,46,108,111,97,100,101,114,41,114,101,116,117,114,110,33,49,59,118,97,114,32,116,61,116,104,105,115,46,95,116,111,97,115,116,69,108,46,102,105,110,100,40,34,46,106,113,45,116,111,97,115,116,45,108,111,97,100,101,114,34,41,44,111,61,40,116,104,105,115,46,111,112,116,105,111,110,115,46,104,105,100,101,65,102,116,101,114,45,52,48,48,41,47,49,101,51,43,34,115,34,44,105,61,116,104,105,115,46,111,112,116,105,111,110,115,46,108,111,97,100,101,114,66,103,44,115,61,116,46,97,116,116,114,40,34,115,116,121,108,101,34,41,124,124,34,34,59,115,61,115,46,115,117,98,115,116,114,105,110,103,40,48,44,115,46,105,110,100,101,120,79,102,40,34,45,119,101,98,107,105,116,45,116,114,97,110,115,105,116,105,111,110,34,41,41,44,115,43,61,34,45,119,101,98,107,105,116,45,116,114,97,110,115,105,116,105,111,110,58,32,119,105,100,116,104,32,34,43,111,43,34,32,101,97,115,101,45,105,110,59,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,45,111,45,116,114,97,110,115,105,116,105,111,110,58,32,119,105,100,116,104,32,34,43,111,43,34,32,101,97,115,101,45,105,110,59,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,114,97,110,115,105,116,105,111,110,58,32,119,105,100,116,104,32,34,43,111,43,34,32,101,97,115,101,45,105,110,59,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,34,43,105,43,34,59,34,44,116,46,97,116,116,114,40,34,115,116,121,108,101,34,44,115,41,46,97,100,100,67,108,97,115,115,40,34,106,113,45,116,111,97,115,116,45,108,111,97,100,101,100,34,41,125,44,97,110,105,109,97,116,101,58,102,117,110,99,116,105,111,110,40,41,123,116,61,116,104,105,115,59,105,102,40,116,104,105,115,46,95,116,111,97,115,116,69,108,46,104,105,100,101,40,41,44,116,104,105,115,46,95,116,111,97,115,116,69,108,46,116,114,105,103,103,101,114,40,34,98,101,102,111,114,101,83,104,111,119,34,41,44,34,102,97,100,101,34,61,61,61,116,104,105,115,46,111,112,116,105,111,110,115,46,115,104,111,119,72,105,100,101,84,114,97,110,115,105,116,105,111,110,46,116,111,76,111,119,101,114,67,97,115,101,40,41,63,116,104,105,115,46,95,116,111,97,115,116,69,108,46,102,97,100,101,73,110,40,102,117,110,99,116,105,111,110,40,41,123,116,46,95,116,111,97,115,116,69,108,46,116,114,105,103,103,101,114,40,34,97,102,116,101,114,83,104,111,119,110,34,41,125,41,58,34,115,108,105,100,101,34,61,61,61,116,104,105,115,46,111,112,116,105,111,110,115,46,115,104,111,119,72,105,100,101,84,114,97,110,115,105,116,105,111,110,46,116,111,76,111,119,101,114,67,97,115,101,40,41,63,116,104,105,115,46,95,116,111,97,115,116,69,108,46,115,108,105,100,101,68,111,119,110,40,102,117,110,99,116,105,111,110,40,41,123,116,46,95,116,111,97,115,116,69,108,46,116,114,105,103,103,101,114,40,34,97,102,116,101,114,83,104,111,119,110,34,41,125,41,58,116,104,105,115,46,95,116,111,97,115,116,69,108,46,115,104,111,119,40,102,117,110,99,116,105,111,110,40,41,123,116,46,95,116,111,97,115,116,69,108,46,116,114,105,103,103,101,114,40,34,97,102,116,101,114,83,104,111,119,110,34,41,125,41,44,116,104,105,115,46,99,97,110,65,117,116,111,72,105,100,101,40,41,41,123,118,97,114,32,116,61,116,104,105,115,59,111,46,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,40,41,123,34,102,97,100,101,34,61,61,61,116,46,111,112,116,105,111,110,115,46,115,104,111,119,72,105,100,101,84,114,97,110,115,105,116,105,111,110,46,116,111,76,111,119,101,114,67,97,115,101,40,41,63,40,116,46,95,116,111,97,115,116,69,108,46,116,114,105,103,103,101,114,40,34,98,101,102,111,114,101,72,105,100,101,34,41,44,116,46,95,116,111,97,115,116,69,108,46,102,97,100,101,79,117,116,40,102,117,110,99,116,105,111,110,40,41,123,116,46,95,116,111,97,115,116,69,108,46,116,114,105,103,103,101,114,40,34,97,102,116,101,114,72,105,100,100,101,110,34,41,125,41,41,58,34,115,108,105,100,101,34,61,61,61,116,46,111,112,116,105,111,110,115,46,115,104,111,119,72,105,100,101,84,114,97,110,115,105,116,105,111,110,46,116,111,76,111,119,101,114,67,97,115,101,40,41,63,40,116,46,95,116,111,97,115,116,69,108,46,116,114,105,103,103,101,114,40,34,98,101,102,111,114,101,72,105,100,101,34,41,44,116,46,95,116,111,97,115,116,69,108,46,115,108,105,100,101,85,112,40,102,117,110,99,116,105,111,110,40,41,123,116,46,95,116,111,97,115,116,69,108,46,116,114,105,103,103,101,114,40,34,97,102,116,101,114,72,105,100,100,101,110,34,41,125,41,41,58,40,116,46,95,116,111,97,115,116,69,108,46,116,114,105,103,103,101,114,40,34,98,101,102,111,114,101,72,105,100,101,34,41,44,116,46,95,116,111,97,115,116,69,108,46,104,105,100,101,40,102,117,110,99,116,105,111,110,40,41,123,116,46,95,116,111,97,115,116,69,108,46,116,114,105,103,103,101,114,40,34,97,102,116,101,114,72,105,100,100,101,110,34,41,125,41,41,125,44,116,104,105,115,46,111,112,116,105,111,110,115,46,104,105,100,101,65,102,116,101,114,41,125,125,44,114,101,115,101,116,58,102,117,110,99,116,105,111,110,40,111,41,123,34,97,108,108,34,61,61,61,111,63,116,40,34,46,106,113,45,116,111,97,115,116,45,119,114,97,112,34,41,46,114,101,109,111,118,101,40,41,58,116,104,105,115,46,95,116,111,97,115,116,69,108,46,114,101,109,111,118,101,40,41,125,44,117,112,100,97,116,101,58,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,112,114,101,112,97,114,101,79,112,116,105,111,110,115,40,116,44,116,104,105,115,46,111,112,116,105,111,110,115,41,44,116,104,105,115,46,115,101,116,117,112,40,41,44,116,104,105,115,46,98,105,110,100,84,111,97,115,116,40,41,125,44,99,108,111,115,101,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,116,111,97,115,116,69,108,46,102,105,110,100,40,34,46,99,108,111,115,101,45,106,113,45,116,111,97,115,116,45,115,105,110,103,108,101,34,41,46,99,108,105,99,107,40,41,125,125,59,116,46,116,111,97,115,116,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,111,61,79,98,106,101,99,116,46,99,114,101,97,116,101,40,110,41,59,114,101,116,117,114,110,32,111,46,105,110,105,116,40,116,44,116,104,105,115,41,44,123,114,101,115,101,116,58,102,117,110,99,116,105,111,110,40,116,41,123,111,46,114,101,115,101,116,40,116,41,125,44,117,112,100,97,116,101,58,102,117,110,99,116,105,111,110,40,116,41,123,111,46,117,112,100,97,116,101,40,116,41,125,44,99,108,111,115,101,58,102,117,110,99,116,105,111,110,40,41,123,111,46,99,108,111,115,101,40,41,125,125,125,44,116,46,116,111,97,115,116,46,111,112,116,105,111,110,115,61,123,116,101,120,116,58,34,34,44,104,101,97,100,105,110,103,58,34,34,44,115,104,111,119,72,105,100,101,84,114,97,110,115,105,116,105,111,110,58,34,102,97,100,101,34,44,97,108,108,111,119,84,111,97,115,116,67,108,111,115,101,58,33,48,44,104,105,100,101,65,102,116,101,114,58,51,101,51,44,108,111,97,100,101,114,58,33,48,44,108,111,97,100,101,114,66,103,58,34,35,57,69,67,54,48,48,34,44,115,116,97,99,107,58,53,44,112,111,115,105,116,105,111,110,58,34,98,111,116,116,111,109,45,108,101,102,116,34,44,98,103,67,111,108,111,114,58,33,49,44,116,101,120,116,67,111,108,111,114,58,33,49,44,116,101,120,116,65,108,105,103,110,58,34,108,101,102,116,34,44,105,99,111,110,58,33,49,44,98,101,102,111,114,101,83,104,111,119,58,102,117,110,99,116,105,111,110,40,41,123,125,44,97,102,116,101,114,83,104,111,119,110,58,102,117,110,99,116,105,111,110,40,41,123,125,44,98,101,102,111,114,101,72,105,100,101,58,102,117,110,99,116,105,111,110,40,41,123,125,44,97,102,116,101,114,72,105,100,100,101,110,58,102,117,110,99,116,105,111,110,40,41,123,125,44,111,110,67,108,105,99,107,58,102,117,110,99,116,105,111,110,40,41,123,125,125,125,40,106,81,117,101,114,121,44,119,105,110,100,111,119,44,100,111,99,117,109,101,110,116,41,59,10,47,47,32,74,97,118,97,83,99,114,105,112,116,32,97,117,116,111,67,111,109,112,108,101,116,101,32,118,49,46,48,46,52,10,47,47,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,80,105,120,97,98,97,121,47,74,97,118,97,83,99,114,105,112,116,45,97,117,116,111,67,111,109,112,108,101,116,101,10,118,97,114,32,97,117,116,111,67,111,109,112,108,101,116,101,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,101,40,101,41,123,102,117,110,99,116,105,111,110,32,116,40,101,44,116,41,123,114,101,116,117,114,110,32,101,46,99,108,97,115,115,76,105,115,116,63,101,46,99,108,97,115,115,76,105,115,116,46,99,111,110,116,97,105,110,115,40,116,41,58,110,101,119,32,82,101,103,69,120,112,40,34,92,92,98,34,43,116,43,34,92,92,98,34,41,46,116,101,115,116,40,101,46,99,108,97,115,115,78,97,109,101,41,125,102,117,110,99,116,105,111,110,32,111,40,101,44,116,44,111,41,123,101,46,97,116,116,97,99,104,69,118,101,110,116,63,101,46,97,116,116,97,99,104,69,118,101,110,116,40,34,111,110,34,43,116,44,111,41,58,101,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,116,44,111,41,125,102,117,110,99,116,105,111,110,32,115,40,101,44,116,44,111,41,123,101,46,100,101,116,97,99,104,69,118,101,110,116,63,101,46,100,101,116,97,99,104,69,118,101,110,116,40,34,111,110,34,43,116,44,111,41,58,101,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,40,116,44,111,41,125,102,117,110,99,116,105,111,110,32,110,40,101,44,115,44,110,44,108,41,123,111,40,108,124,124,100,111,99,117,109,101,110,116,44,115,44,102,117,110,99,116,105,111,110,40,111,41,123,102,111,114,40,118,97,114,32,115,44,108,61,111,46,116,97,114,103,101,116,124,124,111,46,115,114,99,69,108,101,109,101,110,116,59,108,38,38,33,40,115,61,116,40,108,44,101,41,41,59,41,108,61,108,46,112,97,114,101,110,116,69,108,101,109,101,110,116,59,115,38,38,110,46,99,97,108,108,40,108,44,111,41,125,41,125,105,102,40,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,41,123,118,97,114,32,108,61,123,115,101,108,101,99,116,111,114,58,48,44,115,111,117,114,99,101,58,48,44,109,105,110,67,104,97,114,115,58,51,44,100,101,108,97,121,58,49,53,48,44,111,102,102,115,101,116,76,101,102,116,58,48,44,111,102,102,115,101,116,84,111,112,58,49,44,99,97,99,104,101,58,49,44,109,101,110,117,67,108,97,115,115,58,34,34,44,114,101,110,100,101,114,73,116,101,109,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,116,61,116,46,114,101,112,108,97,99,101,40,47,91,45,92,47,92,92,94,36,42,43,63,46,40,41,124,91,92,93,123,125,93,47,103,44,34,92,92,36,38,34,41,59,118,97,114,32,111,61,110,101,119,32,82,101,103,69,120,112,40,34,40,34,43,116,46,115,112,108,105,116,40,34,32,34,41,46,106,111,105,110,40,34,124,34,41,43,34,41,34,44,34,103,105,34,41,59,114,101,116,117,114,110,39,60,100,105,118,32,99,108,97,115,115,61,34,97,117,116,111,99,111,109,112,108,101,116,101,45,115,117,103,103,101,115,116,105,111,110,34,32,100,97,116,97,45,118,97,108,61,34,39,43,101,43,39,34,62,39,43,101,46,114,101,112,108,97,99,101,40,111,44,34,60,98,62,36,49,60,47,98,62,34,41,43,34,60,47,100,105,118,62,34,125,44,111,110,83,101,108,101,99,116,58,102,117,110,99,116,105,111,110,40,41,123,125,125,59,102,111,114,40,118,97,114,32,99,32,105,110,32,101,41,101,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,99,41,38,38,40,108,91,99,93,61,101,91,99,93,41,59,102,111,114,40,118,97,114,32,97,61,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,108,46,115,101,108,101,99,116,111,114,63,91,108,46,115,101,108,101,99,116,111,114,93,58,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,108,46,115,101,108,101,99,116,111,114,41,44,117,61,48,59,117,60,97,46,108,101,110,103,116,104,59,117,43,43,41,123,118,97,114,32,105,61,97,91,117,93,59,105,46,115,99,61,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,44,105,46,115,99,46,99,108,97,115,115,78,97,109,101,61,34,97,117,116,111,99,111,109,112,108,101,116,101,45,115,117,103,103,101,115,116,105,111,110,115,32,34,43,108,46,109,101,110,117,67,108,97,115,115,44,105,46,97,117,116,111,99,111,109,112,108,101,116,101,65,116,116,114,61,105,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,97,117,116,111,99,111,109,112,108,101,116,101,34,41,44,105,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,97,117,116,111,99,111,109,112,108,101,116,101,34,44,34,111,102,102,34,41,44,105,46,99,97,99,104,101,61,123,125,44,105,46,108,97,115,116,95,118,97,108,61,34,34,44,105,46,117,112,100,97,116,101,83,67,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,111,61,105,46,103,101,116,66,111,117,110,100,105,110,103,67,108,105,101,110,116,82,101,99,116,40,41,59,105,102,40,105,46,115,99,46,115,116,121,108,101,46,108,101,102,116,61,77,97,116,104,46,114,111,117,110,100,40,111,46,108,101,102,116,43,40,119,105,110,100,111,119,46,112,97,103,101,88,79,102,102,115,101,116,124,124,100,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,46,115,99,114,111,108,108,76,101,102,116,41,43,108,46,111,102,102,115,101,116,76,101,102,116,41,43,34,112,120,34,44,105,46,115,99,46,115,116,121,108,101,46,116,111,112,61,77,97,116,104,46,114,111,117,110,100,40,111,46,98,111,116,116,111,109,43,40,119,105,110,100,111,119,46,112,97,103,101,89,79,102,102,115,101,116,124,124,100,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,46,115,99,114,111,108,108,84,111,112,41,43,108,46,111,102,102,115,101,116,84,111,112,41,43,34,112,120,34,44,105,46,115,99,46,115,116,121,108,101,46,119,105,100,116,104,61,77,97,116,104,46,114,111,117,110,100,40,111,46,114,105,103,104,116,45,111,46,108,101,102,116,41,43,34,112,120,34,44,33,101,38,38,40,105,46,115,99,46,115,116,121,108,101,46,100,105,115,112,108,97,121,61,34,98,108,111,99,107,34,44,105,46,115,99,46,109,97,120,72,101,105,103,104,116,124,124,40,105,46,115,99,46,109,97,120,72,101,105,103,104,116,61,112,97,114,115,101,73,110,116,40,40,119,105,110,100,111,119,46,103,101,116,67,111,109,112,117,116,101,100,83,116,121,108,101,63,103,101,116,67,111,109,112,117,116,101,100,83,116,121,108,101,40,105,46,115,99,44,110,117,108,108,41,58,105,46,115,99,46,99,117,114,114,101,110,116,83,116,121,108,101,41,46,109,97,120,72,101,105,103,104,116,41,41,44,105,46,115,99,46,115,117,103,103,101,115,116,105,111,110,72,101,105,103,104,116,124,124,40,105,46,115,99,46,115,117,103,103,101,115,116,105,111,110,72,101,105,103,104,116,61,105,46,115,99,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,34,46,97,117,116,111,99,111,109,112,108,101,116,101,45,115,117,103,103,101,115,116,105,111,110,34,41,46,111,102,102,115,101,116,72,101,105,103,104,116,41,44,105,46,115,99,46,115,117,103,103,101,115,116,105,111,110,72,101,105,103,104,116,41,41,105,102,40,116,41,123,118,97,114,32,115,61,105,46,115,99,46,115,99,114,111,108,108,84,111,112,44,110,61,116,46,103,101,116,66,111,117,110,100,105,110,103,67,108,105,101,110,116,82,101,99,116,40,41,46,116,111,112,45,105,46,115,99,46,103,101,116,66,111,117,110,100,105,110,103,67,108,105,101,110,116,82,101,99,116,40,41,46,116,111,112,59,110,43,105,46,115,99,46,115,117,103,103,101,115,116,105,111,110,72,101,105,103,104,116,45,105,46,115,99,46,109,97,120,72,101,105,103,104,116,62,48,63,105,46,115,99,46,115,99,114,111,108,108,84,111,112,61,110,43,105,46,115,99,46,115,117,103,103,101,115,116,105,111,110,72,101,105,103,104,116,43,115,45,105,46,115,99,46,109,97,120,72,101,105,103,104,116,58,48,62,110,38,38,40,105,46,115,99,46,115,99,114,111,108,108,84,111,112,61,110,43,115,41,125,101,108,115,101,32,105,46,115,99,46,115,99,114,111,108,108,84,111,112,61,48,125,44,111,40,119,105,110,100,111,119,44,34,114,101,115,105,122,101,34,44,105,46,117,112,100,97,116,101,83,67,41,44,100,111,99,117,109,101,110,116,46,98,111,100,121,46,97,112,112,101,110,100,67,104,105,108,100,40,105,46,115,99,41,44,110,40,34,97,117,116,111,99,111,109,112,108,101,116,101,45,115,117,103,103,101,115,116,105,111,110,34,44,34,109,111,117,115,101,108,101,97,118,101,34,44,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,105,46,115,99,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,34,46,97,117,116,111,99,111,109,112,108,101,116,101,45,115,117,103,103,101,115,116,105,111,110,46,115,101,108,101,99,116,101,100,34,41,59,101,38,38,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,40,41,123,101,46,99,108,97,115,115,78,97,109,101,61,101,46,99,108,97,115,115,78,97,109,101,46,114,101,112,108,97,99,101,40,34,115,101,108,101,99,116,101,100,34,44,34,34,41,125,44,50,48,41,125,44,105,46,115,99,41,44,110,40,34,97,117,116,111,99,111,109,112,108,101,116,101,45,115,117,103,103,101,115,116,105,111,110,34,44,34,109,111,117,115,101,111,118,101,114,34,44,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,105,46,115,99,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,34,46,97,117,116,111,99,111,109,112,108,101,116,101,45,115,117,103,103,101,115,116,105,111,110,46,115,101,108,101,99,116,101,100,34,41,59,101,38,38,40,101,46,99,108,97,115,115,78,97,109,101,61,101,46,99,108,97,115,115,78,97,109,101,46,114,101,112,108,97,99,101,40,34,115,101,108,101,99,116,101,100,34,44,34,34,41,41,44,116,104,105,115,46,99,108,97,115,115,78,97,109,101,43,61,34,32,115,101,108,101,99,116,101,100,34,125,44,105,46,115,99,41,44,110,40,34,97,117,116,111,99,111,109,112,108,101,116,101,45,115,117,103,103,101,115,116,105,111,110,34,44,34,109,111,117,115,101,100,111,119,110,34,44,102,117,110,99,116,105,111,110,40,101,41,123,105,102,40,116,40,116,104,105,115,44,34,97,117,116,111,99,111,109,112,108,101,116,101,45,115,117,103,103,101,115,116,105,111,110,34,41,41,123,118,97,114,32,111,61,116,104,105,115,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,100,97,116,97,45,118,97,108,34,41,59,105,46,118,97,108,117,101,61,111,44,108,46,111,110,83,101,108,101,99,116,40,101,44,111,44,116,104,105,115,41,44,105,46,115,99,46,115,116,121,108,101,46,100,105,115,112,108,97,121,61,34,110,111,110,101,34,125,125,44,105,46,115,99,41,44,105,46,98,108,117,114,72,97,110,100,108,101,114,61,102,117,110,99,116,105,111,110,40,41,123,116,114,121,123,118,97,114,32,101,61,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,34,46,97,117,116,111,99,111,109,112,108,101,116,101,45,115,117,103,103,101,115,116,105,111,110,115,58,104,111,118,101,114,34,41,125,99,97,116,99,104,40,116,41,123,118,97,114,32,101,61,48,125,101,63,105,33,61,61,100,111,99,117,109,101,110,116,46,97,99,116,105,118,101,69,108,101,109,101,110,116,38,38,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,40,41,123,105,46,102,111,99,117,115,40,41,125,44,50,48,41,58,40,105,46,108,97,115,116,95,118,97,108,61,105,46,118,97,108,117,101,44,105,46,115,99,46,115,116,121,108,101,46,100,105,115,112,108,97,121,61,34,110,111,110,101,34,44,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,40,41,123,105,46,115,99,46,115,116,121,108,101,46,100,105,115,112,108,97,121,61,34,110,111,110,101,34,125,44,51,53,48,41,41,125,44,111,40,105,44,34,98,108,117,114,34,44,105,46,98,108,117,114,72,97,110,100,108,101,114,41,59,118,97,114,32,114,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,105,46,118,97,108,117,101,59,105,102,40,105,46,99,97,99,104,101,91,116,93,61,101,44,101,46,108,101,110,103,116,104,38,38,116,46,108,101,110,103,116,104,62,61,108,46,109,105,110,67,104,97,114,115,41,123,102,111,114,40,118,97,114,32,111,61,34,34,44,115,61,48,59,115,60,101,46,108,101,110,103,116,104,59,115,43,43,41,111,43,61,108,46,114,101,110,100,101,114,73,116,101,109,40,101,91,115,93,44,116,41,59,105,46,115,99,46,105,110,110,101,114,72,84,77,76,61,111,44,105,46,117,112,100,97,116,101,83,67,40,48,41,125,101,108,115,101,32,105,46,115,99,46,115,116,121,108,101,46,100,105,115,112,108,97,121,61,34,110,111,110,101,34,125,59,105,46,107,101,121,100,111,119,110,72,97,110,100,108,101,114,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,119,105,110,100,111,119,46,101,118,101,110,116,63,101,46,107,101,121,67,111,100,101,58,101,46,119,104,105,99,104,59,105,102,40,40,52,48,61,61,116,124,124,51,56,61,61,116,41,38,38,105,46,115,99,46,105,110,110,101,114,72,84,77,76,41,123,118,97,114,32,111,44,115,61,105,46,115,99,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,34,46,97,117,116,111,99,111,109,112,108,101,116,101,45,115,117,103,103,101,115,116,105,111,110,46,115,101,108,101,99,116,101,100,34,41,59,114,101,116,117,114,110,32,115,63,40,111,61,52,48,61,61,116,63,115,46,110,101,120,116,83,105,98,108,105,110,103,58,115,46,112,114,101,118,105,111,117,115,83,105,98,108,105,110,103,44,111,63,40,115,46,99,108,97,115,115,78,97,109,101,61,115,46,99,108,97,115,115,78,97,109,101,46,114,101,112,108,97,99,101,40,34,115,101,108,101,99,116,101,100,34,44,34,34,41,44,111,46,99,108,97,115,115,78,97,109,101,43,61,34,32,115,101,108,101,99,116,101,100,34,44,105,46,118,97,108,117,101,61,111,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,100,97,116,97,45,118,97,108,34,41,41,58,40,115,46,99,108,97,115,115,78,97,109,101,61,115,46,99,108,97,115,115,78,97,109,101,46,114,101,112,108,97,99,101,40,34,115,101,108,101,99,116,101,100,34,44,34,34,41,44,105,46,118,97,108,117,101,61,105,46,108,97,115,116,95,118,97,108,44,111,61,48,41,41,58,40,111,61,52,48,61,61,116,63,105,46,115,99,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,34,46,97,117,116,111,99,111,109,112,108,101,116,101,45,115,117,103,103,101,115,116,105,111,110,34,41,58,105,46,115,99,46,99,104,105,108,100,78,111,100,101,115,91,105,46,115,99,46,99,104,105,108,100,78,111,100,101,115,46,108,101,110,103,116,104,45,49,93,44,111,46,99,108,97,115,115,78,97,109,101,43,61,34,32,115,101,108,101,99,116,101,100,34,44,105,46,118,97,108,117,101,61,111,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,100,97,116,97,45,118,97,108,34,41,41,44,105,46,117,112,100,97,116,101,83,67,40,48,44,111,41,44,33,49,125,105,102,40,50,55,61,61,116,41,105,46,118,97,108,117,101,61,105,46,108,97,115,116,95,118,97,108,44,105,46,115,99,46,115,116,121,108,101,46,100,105,115,112,108,97,121,61,34,110,111,110,101,34,59,101,108,115,101,32,105,102,40,49,51,61,61,116,124,124,57,61,61,116,41,123,118,97,114,32,115,61,105,46,115,99,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,34,46,97,117,116,111,99,111,109,112,108,101,116,101,45,115,117,103,103,101,115,116,105,111,110,46,115,101,108,101,99,116,101,100,34,41,59,115,38,38,34,110,111,110,101,34,33,61,105,46,115,99,46,115,116,121,108,101,46,100,105,115,112,108,97,121,38,38,40,108,46,111,110,83,101,108,101,99,116,40,101,44,115,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,100,97,116,97,45,118,97,108,34,41,44,115,41,44,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,40,41,123,105,46,115,99,46,115,116,121,108,101,46,100,105,115,112,108,97,121,61,34,110,111,110,101,34,125,44,50,48,41,41,125,125,44,111,40,105,44,34,107,101,121,100,111,119,110,34,44,105,46,107,101,121,100,111,119,110,72,97,110,100,108,101,114,41,44,105,46,107,101,121,117,112,72,97,110,100,108,101,114,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,119,105,110,100,111,119,46,101,118,101,110,116,63,101,46,107,101,121,67,111,100,101,58,101,46,119,104,105,99,104,59,105,102,40,33,116,124,124,40,51,53,62,116,124,124,116,62,52,48,41,38,38,49,51,33,61,116,38,38,50,55,33,61,116,41,123,118,97,114,32,111,61,105,46,118,97,108,117,101,59,105,102,40,111,46,108,101,110,103,116,104,62,61,108,46,109,105,110,67,104,97,114,115,41,123,105,102,40,111,33,61,105,46,108,97,115,116,95,118,97,108,41,123,105,102,40,105,46,108,97,115,116,95,118,97,108,61,111,44,99,108,101,97,114,84,105,109,101,111,117,116,40,105,46,116,105,109,101,114,41,44,108,46,99,97,99,104,101,41,123,105,102,40,111,32,105,110,32,105,46,99,97,99,104,101,41,114,101,116,117,114,110,32,118,111,105,100,32,114,40,105,46,99,97,99,104,101,91,111,93,41,59,102,111,114,40,118,97,114,32,115,61,49,59,115,60,111,46,108,101,110,103,116,104,45,108,46,109,105,110,67,104,97,114,115,59,115,43,43,41,123,118,97,114,32,110,61,111,46,115,108,105,99,101,40,48,44,111,46,108,101,110,103,116,104,45,115,41,59,105,102,40,110,32,105,110,32,105,46,99,97,99,104,101,38,38,33,105,46,99,97,99,104,101,91,110,93,46,108,101,110,103,116,104,41,114,101,116,117,114,110,32,118,111,105,100,32,114,40,91,93,41,125,125,105,46,116,105,109,101,114,61,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,40,41,123,108,46,115,111,117,114,99,101,40,111,44,114,41,125,44,108,46,100,101,108,97,121,41,125,125,101,108,115,101,32,105,46,108,97,115,116,95,118,97,108,61,111,44,105,46,115,99,46,115,116,121,108,101,46,100,105,115,112,108,97,121,61,34,110,111,110,101,34,125,125,44,111,40,105,44,34,107,101,121,117,112,34,44,105,46,107,101,121,117,112,72,97,110,100,108,101,114,41,44,105,46,102,111,99,117,115,72,97,110,100,108,101,114,61,102,117,110,99,116,105,111,110,40,101,41,123,105,46,108,97,115,116,95,118,97,108,61,34,92,110,34,44,105,46,107,101,121,117,112,72,97,110,100,108,101,114,40,101,41,125,44,108,46,109,105,110,67,104,97,114,115,124,124,111,40,105,44,34,102,111,99,117,115,34,44,105,46,102,111,99,117,115,72,97,110,100,108,101,114,41,125,116,104,105,115,46,100,101,115,116,114,111,121,61,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,118,97,114,32,101,61,48,59,101,60,97,46,108,101,110,103,116,104,59,101,43,43,41,123,118,97,114,32,116,61,97,91,101,93,59,115,40,119,105,110,100,111,119,44,34,114,101,115,105,122,101,34,44,116,46,117,112,100,97,116,101,83,67,41,44,115,40,116,44,34,98,108,117,114,34,44,116,46,98,108,117,114,72,97,110,100,108,101,114,41,44,115,40,116,44,34,102,111,99,117,115,34,44,116,46,102,111,99,117,115,72,97,110,100,108,101,114,41,44,115,40,116,44,34,107,101,121,100,111,119,110,34,44,116,46,107,101,121,100,111,119,110,72,97,110,100,108,101,114,41,44,115,40,116,44,34,107,101,121,117,112,34,44,116,46,107,101,121,117,112,72,97,110,100,108,101,114,41,44,116,46,97,117,116,111,99,111,109,112,108,101,116,101,65,116,116,114,63,116,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,97,117,116,111,99,111,109,112,108,101,116,101,34,44,116,46,97,117,116,111,99,111,109,112,108,101,116,101,65,116,116,114,41,58,116,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,40,34,97,117,116,111,99,111,109,112,108,101,116,101,34,41,44,100,111,99,117,109,101,110,116,46,98,111,100,121,46,114,101,109,111,118,101,67,104,105,108,100,40,116,46,115,99,41,44,116,61,110,117,108,108,125,125,125,125,114,101,116,117,114,110,32,101,125,40,41,59,33,102,117,110,99,116,105,111,110,40,41,123,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,100,101,102,105,110,101,38,38,100,101,102,105,110,101,46,97,109,100,63,100,101,102,105,110,101,40,34,97,117,116,111,67,111,109,112,108,101,116,101,34,44,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,97,117,116,111,67,111,109,112,108,101,116,101,125,41,58,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,109,111,100,117,108,101,38,38,109,111,100,117,108,101,46,101,120,112,111,114,116,115,63,109,111,100,117,108,101,46,101,120,112,111,114,116,115,61,97,117,116,111,67,111,109,112,108,101,116,101,58,119,105,110,100,111,119,46,97,117,116,111,67,111,109,112,108,101,116,101,61,97,117,116,111,67,111,109,112,108,101,116,101,125,40,41,59,47,42,33,10,32,42,32,66,111,111,116,115,116,114,97,112,32,67,111,108,111,114,112,105,99,107,101,114,32,45,32,66,111,111,116,115,116,114,97,112,32,67,111,108,111,114,112,105,99,107,101,114,32,105,115,32,97,32,109,111,100,117,108,97,114,32,99,111,108,111,114,32,112,105,99,107,101,114,32,112,108,117,103,105,110,32,102,111,114,32,66,111,111,116,115,116,114,97,112,32,52,46,10,32,42,32,64,112,97,99,107,97,103,101,32,98,111,111,116,115,116,114,97,112,45,99,111,108,111,114,112,105,99,107,101,114,10,32,42,32,64,118,101,114,115,105,111,110,32,118,51,46,49,46,50,10,32,42,32,64,108,105,99,101,110,115,101,32,77,73,84,10,32,42,32,64,108,105,110,107,32,104,116,116,112,115,58,47,47,102,97,114,98,101,108,111,117,115,46,103,105,116,104,117,98,46,105,111,47,98,111,111,116,115,116,114,97,112,45,99,111,108,111,114,112,105,99,107,101,114,47,10,32,42,32,64,108,105,110,107,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,102,97,114,98,101,108,111,117,115,47,98,111,111,116,115,116,114,97,112,45,99,111,108,111,114,112,105,99,107,101,114,46,103,105,116,10,32,42,47,10,33,102,117,110,99,116,105,111,110,40,101,44,116,41,123,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,101,120,112,111,114,116,115,38,38,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,109,111,100,117,108,101,63,109,111,100,117,108,101,46,101,120,112,111,114,116,115,61,116,40,114,101,113,117,105,114,101,40,34,106,113,117,101,114,121,34,41,41,58,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,100,101,102,105,110,101,38,38,100,101,102,105,110,101,46,97,109,100,63,100,101,102,105,110,101,40,34,98,111,111,116,115,116,114,97,112,45,99,111,108,111,114,112,105,99,107,101,114,34,44,91,34,106,113,117,101,114,121,34,93,44,116,41,58,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,101,120,112,111,114,116,115,63,101,120,112,111,114,116,115,91,34,98,111,111,116,115,116,114,97,112,45,99,111,108,111,114,112,105,99,107,101,114,34,93,61,116,40,114,101,113,117,105,114,101,40,34,106,113,117,101,114,121,34,41,41,58,101,91,34,98,111,111,116,115,116,114,97,112,45,99,111,108,111,114,112,105,99,107,101,114,34,93,61,116,40,101,46,106,81,117,101,114,121,41,125,40,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,115,101,108,102,63,115,101,108,102,58,116,104,105,115,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,101,41,123,102,117,110,99,116,105,111,110,32,116,40,114,41,123,105,102,40,111,91,114,93,41,114,101,116,117,114,110,32,111,91,114,93,46,101,120,112,111,114,116,115,59,118,97,114,32,110,61,111,91,114,93,61,123,105,58,114,44,108,58,33,49,44,101,120,112,111,114,116,115,58,123,125,125,59,114,101,116,117,114,110,32,101,91,114,93,46,99,97,108,108,40,110,46,101,120,112,111,114,116,115,44,110,44,110,46,101,120,112,111,114,116,115,44,116,41,44,110,46,108,61,33,48,44,110,46,101,120,112,111,114,116,115,125,118,97,114,32,111,61,123,125,59,114,101,116,117,114,110,32,116,46,109,61,101,44,116,46,99,61,111,44,116,46,100,61,102,117,110,99,116,105,111,110,40,101,44,111,44,114,41,123,116,46,111,40,101,44,111,41,124,124,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,101,44,111,44,123,99,111,110,102,105,103,117,114,97,98,108,101,58,33,49,44,101,110,117,109,101,114,97,98,108,101,58,33,48,44,103,101,116,58,114,125,41,125,44,116,46,110,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,111,61,101,38,38,101,46,95,95,101,115,77,111,100,117,108,101,63,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,101,46,100,101,102,97,117,108,116,125,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,101,125,59,114,101,116,117,114,110,32,116,46,100,40,111,44,34,97,34,44,111,41,44,111,125,44,116,46,111,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,79,98,106,101,99,116,46,112,114,111,116,111,116,121,112,101,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,46,99,97,108,108,40,101,44,116,41,125,44,116,46,112,61,34,34,44,116,40,116,46,115,61,55,41,125,40,91,102,117,110,99,116,105,111,110,40,116,44,111,41,123,116,46,101,120,112,111,114,116,115,61,101,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,111,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,102,117,110,99,116,105,111,110,32,114,40,101,44,116,41,123,105,102,40,33,40,101,32,105,110,115,116,97,110,99,101,111,102,32,116,41,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,67,97,110,110,111,116,32,99,97,108,108,32,97,32,99,108,97,115,115,32,97,115,32,97,32,102,117,110,99,116,105,111,110,34,41,125,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,44,34,95,95,101,115,77,111,100,117,108,101,34,44,123,118,97,108,117,101,58,33,48,125,41,59,118,97,114,32,110,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,101,40,101,44,116,41,123,102,111,114,40,118,97,114,32,111,61,48,59,111,60,116,46,108,101,110,103,116,104,59,111,43,43,41,123,118,97,114,32,114,61,116,91,111,93,59,114,46,101,110,117,109,101,114,97,98,108,101,61,114,46,101,110,117,109,101,114,97,98,108,101,124,124,33,49,44,114,46,99,111,110,102,105,103,117,114,97,98,108,101,61,33,48,44,34,118,97,108,117,101,34,105,110,32,114,38,38,40,114,46,119,114,105,116,97,98,108,101,61,33,48,41,44,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,101,44,114,46,107,101,121,44,114,41,125,125,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,44,111,44,114,41,123,114,101,116,117,114,110,32,111,38,38,101,40,116,46,112,114,111,116,111,116,121,112,101,44,111,41,44,114,38,38,101,40,116,44,114,41,44,116,125,125,40,41,44,105,61,111,40,48,41,44,97,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,38,38,101,46,95,95,101,115,77,111,100,117,108,101,63,101,58,123,100,101,102,97,117,108,116,58,101,125,125,40,105,41,44,108,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,101,40,116,41,123,118,97,114,32,111,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,62,49,38,38,118,111,105,100,32,48,33,61,61,97,114,103,117,109,101,110,116,115,91,49,93,63,97,114,103,117,109,101,110,116,115,91,49,93,58,123,125,59,105,102,40,114,40,116,104,105,115,44,101,41,44,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,61,116,44,116,104,105,115,46,111,112,116,105,111,110,115,61,111,44,33,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,101,108,101,109,101,110,116,124,124,33,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,101,108,101,109,101,110,116,46,108,101,110,103,116,104,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,69,120,116,101,110,115,105,111,110,58,32,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,101,108,101,109,101,110,116,32,105,115,32,110,111,116,32,118,97,108,105,100,34,41,59,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,101,108,101,109,101,110,116,46,111,110,40,34,99,111,108,111,114,112,105,99,107,101,114,67,114,101,97,116,101,46,99,111,108,111,114,112,105,99,107,101,114,45,101,120,116,34,44,97,46,100,101,102,97,117,108,116,46,112,114,111,120,121,40,116,104,105,115,46,111,110,67,114,101,97,116,101,44,116,104,105,115,41,41,44,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,101,108,101,109,101,110,116,46,111,110,40,34,99,111,108,111,114,112,105,99,107,101,114,68,101,115,116,114,111,121,46,99,111,108,111,114,112,105,99,107,101,114,45,101,120,116,34,44,97,46,100,101,102,97,117,108,116,46,112,114,111,120,121,40,116,104,105,115,46,111,110,68,101,115,116,114,111,121,44,116,104,105,115,41,41,44,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,101,108,101,109,101,110,116,46,111,110,40,34,99,111,108,111,114,112,105,99,107,101,114,85,112,100,97,116,101,46,99,111,108,111,114,112,105,99,107,101,114,45,101,120,116,34,44,97,46,100,101,102,97,117,108,116,46,112,114,111,120,121,40,116,104,105,115,46,111,110,85,112,100,97,116,101,44,116,104,105,115,41,41,44,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,101,108,101,109,101,110,116,46,111,110,40,34,99,111,108,111,114,112,105,99,107,101,114,67,104,97,110,103,101,46,99,111,108,111,114,112,105,99,107,101,114,45,101,120,116,34,44,97,46,100,101,102,97,117,108,116,46,112,114,111,120,121,40,116,104,105,115,46,111,110,67,104,97,110,103,101,44,116,104,105,115,41,41,44,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,101,108,101,109,101,110,116,46,111,110,40,34,99,111,108,111,114,112,105,99,107,101,114,73,110,118,97,108,105,100,46,99,111,108,111,114,112,105,99,107,101,114,45,101,120,116,34,44,97,46,100,101,102,97,117,108,116,46,112,114,111,120,121,40,116,104,105,115,46,111,110,73,110,118,97,108,105,100,44,116,104,105,115,41,41,44,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,101,108,101,109,101,110,116,46,111,110,40,34,99,111,108,111,114,112,105,99,107,101,114,83,104,111,119,46,99,111,108,111,114,112,105,99,107,101,114,45,101,120,116,34,44,97,46,100,101,102,97,117,108,116,46,112,114,111,120,121,40,116,104,105,115,46,111,110,83,104,111,119,44,116,104,105,115,41,41,44,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,101,108,101,109,101,110,116,46,111,110,40,34,99,111,108,111,114,112,105,99,107,101,114,72,105,100,101,46,99,111,108,111,114,112,105,99,107,101,114,45,101,120,116,34,44,97,46,100,101,102,97,117,108,116,46,112,114,111,120,121,40,116,104,105,115,46,111,110,72,105,100,101,44,116,104,105,115,41,41,44,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,101,108,101,109,101,110,116,46,111,110,40,34,99,111,108,111,114,112,105,99,107,101,114,69,110,97,98,108,101,46,99,111,108,111,114,112,105,99,107,101,114,45,101,120,116,34,44,97,46,100,101,102,97,117,108,116,46,112,114,111,120,121,40,116,104,105,115,46,111,110,69,110,97,98,108,101,44,116,104,105,115,41,41,44,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,101,108,101,109,101,110,116,46,111,110,40,34,99,111,108,111,114,112,105,99,107,101,114,68,105,115,97,98,108,101,46,99,111,108,111,114,112,105,99,107,101,114,45,101,120,116,34,44,97,46,100,101,102,97,117,108,116,46,112,114,111,120,121,40,116,104,105,115,46,111,110,68,105,115,97,98,108,101,44,116,104,105,115,41,41,125,114,101,116,117,114,110,32,110,40,101,44,91,123,107,101,121,58,34,114,101,115,111,108,118,101,67,111,108,111,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,33,40,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,62,49,38,38,118,111,105,100,32,48,33,61,61,97,114,103,117,109,101,110,116,115,91,49,93,41,124,124,97,114,103,117,109,101,110,116,115,91,49,93,59,114,101,116,117,114,110,33,49,125,125,44,123,107,101,121,58,34,111,110,67,114,101,97,116,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,125,125,44,123,107,101,121,58,34,111,110,68,101,115,116,114,111,121,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,101,108,101,109,101,110,116,46,111,102,102,40,34,46,99,111,108,111,114,112,105,99,107,101,114,45,101,120,116,34,41,125,125,44,123,107,101,121,58,34,111,110,85,112,100,97,116,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,125,125,44,123,107,101,121,58,34,111,110,67,104,97,110,103,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,125,125,44,123,107,101,121,58,34,111,110,73,110,118,97,108,105,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,125,125,44,123,107,101,121,58,34,111,110,72,105,100,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,125,125,44,123,107,101,121,58,34,111,110,83,104,111,119,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,125,125,44,123,107,101,121,58,34,111,110,68,105,115,97,98,108,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,125,125,44,123,107,101,121,58,34,111,110,69,110,97,98,108,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,125,125,93,41,44,101,125,40,41,59,116,46,100,101,102,97,117,108,116,61,108,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,111,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,102,117,110,99,116,105,111,110,32,114,40,101,44,116,41,123,105,102,40,33,40,101,32,105,110,115,116,97,110,99,101,111,102,32,116,41,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,67,97,110,110,111,116,32,99,97,108,108,32,97,32,99,108,97,115,115,32,97,115,32,97,32,102,117,110,99,116,105,111,110,34,41,125,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,44,34,95,95,101,115,77,111,100,117,108,101,34,44,123,118,97,108,117,101,58,33,48,125,41,44,116,46,67,111,108,111,114,73,116,101,109,61,116,46,72,83,86,65,67,111,108,111,114,61,118,111,105,100,32,48,59,118,97,114,32,110,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,101,40,101,44,116,41,123,102,111,114,40,118,97,114,32,111,61,48,59,111,60,116,46,108,101,110,103,116,104,59,111,43,43,41,123,118,97,114,32,114,61,116,91,111,93,59,114,46,101,110,117,109,101,114,97,98,108,101,61,114,46,101,110,117,109,101,114,97,98,108,101,124,124,33,49,44,114,46,99,111,110,102,105,103,117,114,97,98,108,101,61,33,48,44,34,118,97,108,117,101,34,105,110,32,114,38,38,40,114,46,119,114,105,116,97,98,108,101,61,33,48,41,44,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,101,44,114,46,107,101,121,44,114,41,125,125,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,44,111,44,114,41,123,114,101,116,117,114,110,32,111,38,38,101,40,116,46,112,114,111,116,111,116,121,112,101,44,111,41,44,114,38,38,101,40,116,44,114,41,44,116,125,125,40,41,44,105,61,111,40,49,54,41,44,97,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,38,38,101,46,95,95,101,115,77,111,100,117,108,101,63,101,58,123,100,101,102,97,117,108,116,58,101,125,125,40,105,41,44,108,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,101,40,116,44,111,44,110,44,105,41,123,114,40,116,104,105,115,44,101,41,44,116,104,105,115,46,104,61,105,115,78,97,78,40,116,41,63,48,58,116,44,116,104,105,115,46,115,61,105,115,78,97,78,40,111,41,63,48,58,111,44,116,104,105,115,46,118,61,105,115,78,97,78,40,110,41,63,48,58,110,44,116,104,105,115,46,97,61,105,115,78,97,78,40,116,41,63,49,58,105,125,114,101,116,117,114,110,32,110,40,101,44,91,123,107,101,121,58,34,116,111,83,116,114,105,110,103,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,104,43,34,44,32,34,43,116,104,105,115,46,115,43,34,37,44,32,34,43,116,104,105,115,46,118,43,34,37,44,32,34,43,116,104,105,115,46,97,125,125,93,41,44,101,125,40,41,44,115,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,101,40,41,123,118,97,114,32,116,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,62,48,38,38,118,111,105,100,32,48,33,61,61,97,114,103,117,109,101,110,116,115,91,48,93,63,97,114,103,117,109,101,110,116,115,91,48,93,58,110,117,108,108,44,111,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,62,49,38,38,118,111,105,100,32,48,33,61,61,97,114,103,117,109,101,110,116,115,91,49,93,63,97,114,103,117,109,101,110,116,115,91,49,93,58,110,117,108,108,59,114,40,116,104,105,115,44,101,41,44,116,104,105,115,46,114,101,112,108,97,99,101,40,116,44,111,41,125,114,101,116,117,114,110,32,110,40,101,44,91,123,107,101,121,58,34,97,112,105,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,116,41,123,102,111,114,40,118,97,114,32,111,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,44,114,61,65,114,114,97,121,40,111,62,49,63,111,45,49,58,48,41,44,110,61,49,59,110,60,111,59,110,43,43,41,114,91,110,45,49,93,61,97,114,103,117,109,101,110,116,115,91,110,93,59,105,102,40,48,61,61,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,114,101,116,117,114,110,32,116,104,105,115,46,95,99,111,108,111,114,59,118,97,114,32,105,61,116,104,105,115,46,95,99,111,108,111,114,91,116,93,46,97,112,112,108,121,40,116,104,105,115,46,95,99,111,108,111,114,44,114,41,59,114,101,116,117,114,110,32,105,32,105,110,115,116,97,110,99,101,111,102,32,97,46,100,101,102,97,117,108,116,63,110,101,119,32,101,40,105,44,116,104,105,115,46,102,111,114,109,97,116,41,58,105,125,125,44,123,107,101,121,58,34,111,114,105,103,105,110,97,108,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,111,114,105,103,105,110,97,108,125,125,93,44,91,123,107,101,121,58,34,72,83,86,65,67,111,108,111,114,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,108,125,125,93,41,44,110,40,101,44,91,123,107,101,121,58,34,114,101,112,108,97,99,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,111,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,62,49,38,38,118,111,105,100,32,48,33,61,61,97,114,103,117,109,101,110,116,115,91,49,93,63,97,114,103,117,109,101,110,116,115,91,49,93,58,110,117,108,108,59,105,102,40,111,61,101,46,115,97,110,105,116,105,122,101,70,111,114,109,97,116,40,111,41,44,116,104,105,115,46,95,111,114,105,103,105,110,97,108,61,123,99,111,108,111,114,58,116,44,102,111,114,109,97,116,58,111,44,118,97,108,105,100,58,33,48,125,44,116,104,105,115,46,95,99,111,108,111,114,61,101,46,112,97,114,115,101,40,116,41,44,110,117,108,108,61,61,61,116,104,105,115,46,95,99,111,108,111,114,41,114,101,116,117,114,110,32,116,104,105,115,46,95,99,111,108,111,114,61,40,48,44,97,46,100,101,102,97,117,108,116,41,40,41,44,118,111,105,100,40,116,104,105,115,46,95,111,114,105,103,105,110,97,108,46,118,97,108,105,100,61,33,49,41,59,116,104,105,115,46,95,102,111,114,109,97,116,61,111,124,124,40,101,46,105,115,72,101,120,40,116,41,63,34,104,101,120,34,58,116,104,105,115,46,95,99,111,108,111,114,46,109,111,100,101,108,41,125,125,44,123,107,101,121,58,34,105,115,86,97,108,105,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,33,48,61,61,61,116,104,105,115,46,95,111,114,105,103,105,110,97,108,46,118,97,108,105,100,125,125,44,123,107,101,121,58,34,115,101,116,72,117,101,82,97,116,105,111,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,104,117,101,61,51,54,48,42,40,49,45,101,41,125,125,44,123,107,101,121,58,34,115,101,116,83,97,116,117,114,97,116,105,111,110,82,97,116,105,111,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,115,97,116,117,114,97,116,105,111,110,61,49,48,48,42,101,125,125,44,123,107,101,121,58,34,115,101,116,86,97,108,117,101,82,97,116,105,111,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,118,97,108,117,101,61,49,48,48,42,40,49,45,101,41,125,125,44,123,107,101,121,58,34,115,101,116,65,108,112,104,97,82,97,116,105,111,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,97,108,112,104,97,61,49,45,101,125,125,44,123,107,101,121,58,34,105,115,68,101,115,97,116,117,114,97,116,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,48,61,61,61,116,104,105,115,46,115,97,116,117,114,97,116,105,111,110,125,125,44,123,107,101,121,58,34,105,115,84,114,97,110,115,112,97,114,101,110,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,48,61,61,61,116,104,105,115,46,97,108,112,104,97,125,125,44,123,107,101,121,58,34,104,97,115,84,114,97,110,115,112,97,114,101,110,99,121,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,104,97,115,65,108,112,104,97,40,41,38,38,116,104,105,115,46,97,108,112,104,97,60,49,125,125,44,123,107,101,121,58,34,104,97,115,65,108,112,104,97,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,33,105,115,78,97,78,40,116,104,105,115,46,97,108,112,104,97,41,125,125,44,123,107,101,121,58,34,116,111,79,98,106,101,99,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,110,101,119,32,108,40,116,104,105,115,46,104,117,101,44,116,104,105,115,46,115,97,116,117,114,97,116,105,111,110,44,116,104,105,115,46,118,97,108,117,101,44,116,104,105,115,46,97,108,112,104,97,41,125,125,44,123,107,101,121,58,34,116,111,72,115,118,97,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,116,111,79,98,106,101,99,116,40,41,125,125,44,123,107,101,121,58,34,116,111,72,115,118,97,82,97,116,105,111,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,110,101,119,32,108,40,116,104,105,115,46,104,117,101,47,51,54,48,44,116,104,105,115,46,115,97,116,117,114,97,116,105,111,110,47,49,48,48,44,116,104,105,115,46,118,97,108,117,101,47,49,48,48,44,116,104,105,115,46,97,108,112,104,97,41,125,125,44,123,107,101,121,58,34,116,111,83,116,114,105,110,103,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,115,116,114,105,110,103,40,41,125,125,44,123,107,101,121,58,34,115,116,114,105,110,103,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,62,48,38,38,118,111,105,100,32,48,33,61,61,97,114,103,117,109,101,110,116,115,91,48,93,63,97,114,103,117,109,101,110,116,115,91,48,93,58,110,117,108,108,59,105,102,40,33,40,116,61,101,46,115,97,110,105,116,105,122,101,70,111,114,109,97,116,40,116,124,124,116,104,105,115,46,102,111,114,109,97,116,41,41,41,114,101,116,117,114,110,32,116,104,105,115,46,95,99,111,108,111,114,46,114,111,117,110,100,40,41,46,115,116,114,105,110,103,40,41,59,105,102,40,118,111,105,100,32,48,61,61,61,116,104,105,115,46,95,99,111,108,111,114,91,116,93,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,85,110,115,117,112,112,111,114,116,101,100,32,99,111,108,111,114,32,102,111,114,109,97,116,58,32,39,34,43,116,43,34,39,34,41,59,118,97,114,32,111,61,116,104,105,115,46,95,99,111,108,111,114,91,116,93,40,41,59,114,101,116,117,114,110,32,111,46,114,111,117,110,100,63,111,46,114,111,117,110,100,40,41,46,115,116,114,105,110,103,40,41,58,111,125,125,44,123,107,101,121,58,34,101,113,117,97,108,115,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,61,116,32,105,110,115,116,97,110,99,101,111,102,32,101,63,116,58,110,101,119,32,101,40,116,41,44,33,40,33,116,46,105,115,86,97,108,105,100,40,41,124,124,33,116,104,105,115,46,105,115,86,97,108,105,100,40,41,41,38,38,40,116,104,105,115,46,104,117,101,61,61,61,116,46,104,117,101,38,38,116,104,105,115,46,115,97,116,117,114,97,116,105,111,110,61,61,61,116,46,115,97,116,117,114,97,116,105,111,110,38,38,116,104,105,115,46,118,97,108,117,101,61,61,61,116,46,118,97,108,117,101,38,38,116,104,105,115,46,97,108,112,104,97,61,61,61,116,46,97,108,112,104,97,41,125,125,44,123,107,101,121,58,34,103,101,116,67,108,111,110,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,110,101,119,32,101,40,116,104,105,115,46,95,99,111,108,111,114,44,116,104,105,115,46,102,111,114,109,97,116,41,125,125,44,123,107,101,121,58,34,103,101,116,67,108,111,110,101,72,117,101,79,110,108,121,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,110,101,119,32,101,40,91,116,104,105,115,46,104,117,101,44,49,48,48,44,49,48,48,44,49,93,44,116,104,105,115,46,102,111,114,109,97,116,41,125,125,44,123,107,101,121,58,34,103,101,116,67,108,111,110,101,79,112,97,113,117,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,110,101,119,32,101,40,116,104,105,115,46,95,99,111,108,111,114,46,97,108,112,104,97,40,49,41,44,116,104,105,115,46,102,111,114,109,97,116,41,125,125,44,123,107,101,121,58,34,116,111,82,103,98,83,116,114,105,110,103,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,115,116,114,105,110,103,40,34,114,103,98,34,41,125,125,44,123,107,101,121,58,34,116,111,72,101,120,83,116,114,105,110,103,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,115,116,114,105,110,103,40,34,104,101,120,34,41,125,125,44,123,107,101,121,58,34,116,111,72,115,108,83,116,114,105,110,103,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,115,116,114,105,110,103,40,34,104,115,108,34,41,125,125,44,123,107,101,121,58,34,105,115,68,97,114,107,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,99,111,108,111,114,46,105,115,68,97,114,107,40,41,125,125,44,123,107,101,121,58,34,105,115,76,105,103,104,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,99,111,108,111,114,46,105,115,76,105,103,104,116,40,41,125,125,44,123,107,101,121,58,34,103,101,110,101,114,97,116,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,111,61,91,93,59,105,102,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,116,41,41,111,61,116,59,101,108,115,101,123,105,102,40,33,101,46,99,111,108,111,114,70,111,114,109,117,108,97,115,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,116,41,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,78,111,32,99,111,108,111,114,32,102,111,114,109,117,108,97,32,102,111,117,110,100,32,119,105,116,104,32,116,104,101,32,110,97,109,101,32,39,34,43,116,43,34,39,46,34,41,59,111,61,101,46,99,111,108,111,114,70,111,114,109,117,108,97,115,91,116,93,125,118,97,114,32,114,61,91,93,44,110,61,116,104,105,115,46,95,99,111,108,111,114,44,105,61,116,104,105,115,46,102,111,114,109,97,116,59,114,101,116,117,114,110,32,111,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,111,61,91,116,63,40,110,46,104,117,101,40,41,43,116,41,37,51,54,48,58,110,46,104,117,101,40,41,44,110,46,115,97,116,117,114,97,116,105,111,110,118,40,41,44,110,46,118,97,108,117,101,40,41,44,110,46,97,108,112,104,97,40,41,93,59,114,46,112,117,115,104,40,110,101,119,32,101,40,111,44,105,41,41,125,41,44,114,125,125,44,123,107,101,121,58,34,104,117,101,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,99,111,108,111,114,46,104,117,101,40,41,125,44,115,101,116,58,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,95,99,111,108,111,114,61,116,104,105,115,46,95,99,111,108,111,114,46,104,117,101,40,101,41,125,125,44,123,107,101,121,58,34,115,97,116,117,114,97,116,105,111,110,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,99,111,108,111,114,46,115,97,116,117,114,97,116,105,111,110,118,40,41,125,44,115,101,116,58,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,95,99,111,108,111,114,61,116,104,105,115,46,95,99,111,108,111,114,46,115,97,116,117,114,97,116,105,111,110,118,40,101,41,125,125,44,123,107,101,121,58,34,118,97,108,117,101,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,99,111,108,111,114,46,118,97,108,117,101,40,41,125,44,115,101,116,58,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,95,99,111,108,111,114,61,116,104,105,115,46,95,99,111,108,111,114,46,118,97,108,117,101,40,101,41,125,125,44,123,107,101,121,58,34,97,108,112,104,97,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,95,99,111,108,111,114,46,97,108,112,104,97,40,41,59,114,101,116,117,114,110,32,105,115,78,97,78,40,101,41,63,49,58,101,125,44,115,101,116,58,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,95,99,111,108,111,114,61,116,104,105,115,46,95,99,111,108,111,114,46,97,108,112,104,97,40,77,97,116,104,46,114,111,117,110,100,40,49,48,48,42,101,41,47,49,48,48,41,125,125,44,123,107,101,121,58,34,102,111,114,109,97,116,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,102,111,114,109,97,116,63,116,104,105,115,46,95,102,111,114,109,97,116,58,116,104,105,115,46,95,99,111,108,111,114,46,109,111,100,101,108,125,44,115,101,116,58,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,95,102,111,114,109,97,116,61,101,46,115,97,110,105,116,105,122,101,70,111,114,109,97,116,40,116,41,125,125,93,44,91,123,107,101,121,58,34,112,97,114,115,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,116,32,105,110,115,116,97,110,99,101,111,102,32,97,46,100,101,102,97,117,108,116,41,114,101,116,117,114,110,32,116,59,105,102,40,116,32,105,110,115,116,97,110,99,101,111,102,32,101,41,114,101,116,117,114,110,32,116,46,95,99,111,108,111,114,59,118,97,114,32,111,61,110,117,108,108,59,105,102,40,110,117,108,108,61,61,61,40,116,61,116,32,105,110,115,116,97,110,99,101,111,102,32,108,63,91,116,46,104,44,116,46,115,44,116,46,118,44,105,115,78,97,78,40,116,46,97,41,63,49,58,116,46,97,93,58,101,46,115,97,110,105,116,105,122,101,83,116,114,105,110,103,40,116,41,41,41,114,101,116,117,114,110,32,110,117,108,108,59,65,114,114,97,121,46,105,115,65,114,114,97,121,40,116,41,38,38,40,111,61,34,104,115,118,34,41,59,116,114,121,123,114,101,116,117,114,110,40,48,44,97,46,100,101,102,97,117,108,116,41,40,116,44,111,41,125,99,97,116,99,104,40,101,41,123,114,101,116,117,114,110,32,110,117,108,108,125,125,125,44,123,107,101,121,58,34,115,97,110,105,116,105,122,101,83,116,114,105,110,103,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,101,124,124,101,32,105,110,115,116,97,110,99,101,111,102,32,83,116,114,105,110,103,63,101,46,109,97,116,99,104,40,47,94,91,48,45,57,97,45,102,93,123,50,44,125,36,47,105,41,63,34,35,34,43,101,58,34,116,114,97,110,115,112,97,114,101,110,116,34,61,61,61,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,63,34,35,70,70,70,70,70,70,48,48,34,58,101,58,101,125,125,44,123,107,101,121,58,34,105,115,72,101,120,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,40,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,101,124,124,101,32,105,110,115,116,97,110,99,101,111,102,32,83,116,114,105,110,103,41,38,38,33,33,101,46,109,97,116,99,104,40,47,94,35,63,91,48,45,57,97,45,102,93,123,50,44,125,36,47,105,41,125,125,44,123,107,101,121,58,34,115,97,110,105,116,105,122,101,70,111,114,109,97,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,115,119,105,116,99,104,40,101,41,123,99,97,115,101,34,104,101,120,34,58,99,97,115,101,34,104,101,120,51,34,58,99,97,115,101,34,104,101,120,52,34,58,99,97,115,101,34,104,101,120,54,34,58,99,97,115,101,34,104,101,120,56,34,58,114,101,116,117,114,110,34,104,101,120,34,59,99,97,115,101,34,114,103,98,34,58,99,97,115,101,34,114,103,98,97,34,58,99,97,115,101,34,107,101,121,119,111,114,100,34,58,99,97,115,101,34,110,97,109,101,34,58,114,101,116,117,114,110,34,114,103,98,34,59,99,97,115,101,34,104,115,108,34,58,99,97,115,101,34,104,115,108,97,34,58,99,97,115,101,34,104,115,118,34,58,99,97,115,101,34,104,115,118,97,34,58,99,97,115,101,34,104,119,98,34,58,99,97,115,101,34,104,119,98,97,34,58,114,101,116,117,114,110,34,104,115,108,34,59,100,101,102,97,117,108,116,58,114,101,116,117,114,110,34,34,125,125,125,93,41,44,101,125,40,41,59,115,46,99,111,108,111,114,70,111,114,109,117,108,97,115,61,123,99,111,109,112,108,101,109,101,110,116,97,114,121,58,91,49,56,48,93,44,116,114,105,97,100,58,91,48,44,49,50,48,44,50,52,48,93,44,116,101,116,114,97,100,58,91,48,44,57,48,44,49,56,48,44,50,55,48,93,44,115,112,108,105,116,99,111,109,112,108,101,109,101,110,116,58,91,48,44,55,50,44,50,49,54,93,125,44,116,46,100,101,102,97,117,108,116,61,115,44,116,46,72,83,86,65,67,111,108,111,114,61,108,44,116,46,67,111,108,111,114,73,116,101,109,61,115,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,111,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,44,34,95,95,101,115,77,111,100,117,108,101,34,44,123,118,97,108,117,101,58,33,48,125,41,59,118,97,114,32,114,61,123,98,97,114,95,115,105,122,101,95,115,104,111,114,116,58,49,54,44,98,97,115,101,95,109,97,114,103,105,110,58,54,44,99,111,108,117,109,110,115,58,54,125,44,110,61,114,46,98,97,114,95,115,105,122,101,95,115,104,111,114,116,42,114,46,99,111,108,117,109,110,115,43,114,46,98,97,115,101,95,109,97,114,103,105,110,42,40,114,46,99,111,108,117,109,110,115,45,49,41,59,116,46,100,101,102,97,117,108,116,61,123,99,117,115,116,111,109,67,108,97,115,115,58,110,117,108,108,44,99,111,108,111,114,58,33,49,44,102,97,108,108,98,97,99,107,67,111,108,111,114,58,33,49,44,102,111,114,109,97,116,58,34,97,117,116,111,34,44,104,111,114,105,122,111,110,116,97,108,58,33,49,44,105,110,108,105,110,101,58,33,49,44,99,111,110,116,97,105,110,101,114,58,33,49,44,112,111,112,111,118,101,114,58,123,97,110,105,109,97,116,105,111,110,58,33,48,44,112,108,97,99,101,109,101,110,116,58,34,98,111,116,116,111,109,34,44,102,97,108,108,98,97,99,107,80,108,97,99,101,109,101,110,116,58,34,102,108,105,112,34,125,44,100,101,98,117,103,58,33,49,44,105,110,112,117,116,58,34,105,110,112,117,116,34,44,97,100,100,111,110,58,34,46,99,111,108,111,114,112,105,99,107,101,114,45,105,110,112,117,116,45,97,100,100,111,110,34,44,97,117,116,111,73,110,112,117,116,70,97,108,108,98,97,99,107,58,33,48,44,117,115,101,72,97,115,104,80,114,101,102,105,120,58,33,48,44,117,115,101,65,108,112,104,97,58,33,48,44,116,101,109,112,108,97,116,101,58,39,60,100,105,118,32,99,108,97,115,115,61,34,99,111,108,111,114,112,105,99,107,101,114,34,62,92,110,32,32,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,99,111,108,111,114,112,105,99,107,101,114,45,115,97,116,117,114,97,116,105,111,110,34,62,60,105,32,99,108,97,115,115,61,34,99,111,108,111,114,112,105,99,107,101,114,45,103,117,105,100,101,34,62,60,47,105,62,60,47,100,105,118,62,92,110,32,32,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,99,111,108,111,114,112,105,99,107,101,114,45,104,117,101,34,62,60,105,32,99,108,97,115,115,61,34,99,111,108,111,114,112,105,99,107,101,114,45,103,117,105,100,101,34,62,60,47,105,62,60,47,100,105,118,62,92,110,32,32,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,99,111,108,111,114,112,105,99,107,101,114,45,97,108,112,104,97,34,62,92,110,32,32,32,32,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,99,111,108,111,114,112,105,99,107,101,114,45,97,108,112,104,97,45,99,111,108,111,114,34,62,60,47,100,105,118,62,92,110,32,32,32,32,32,32,32,32,60,105,32,99,108,97,115,115,61,34,99,111,108,111,114,112,105,99,107,101,114,45,103,117,105,100,101,34,62,60,47,105,62,92,110,32,32,32,32,32,32,60,47,100,105,118,62,92,110,32,32,32,32,60,47,100,105,118,62,39,44,101,120,116,101,110,115,105,111,110,115,58,91,123,110,97,109,101,58,34,112,114,101,118,105,101,119,34,44,111,112,116,105,111,110,115,58,123,115,104,111,119,84,101,120,116,58,33,48,125,125,93,44,115,108,105,100,101,114,115,58,123,115,97,116,117,114,97,116,105,111,110,58,123,115,101,108,101,99,116,111,114,58,34,46,99,111,108,111,114,112,105,99,107,101,114,45,115,97,116,117,114,97,116,105,111,110,34,44,109,97,120,76,101,102,116,58,110,44,109,97,120,84,111,112,58,110,44,99,97,108,108,76,101,102,116,58,34,115,101,116,83,97,116,117,114,97,116,105,111,110,82,97,116,105,111,34,44,99,97,108,108,84,111,112,58,34,115,101,116,86,97,108,117,101,82,97,116,105,111,34,125,44,104,117,101,58,123,115,101,108,101,99,116,111,114,58,34,46,99,111,108,111,114,112,105,99,107,101,114,45,104,117,101,34,44,109,97,120,76,101,102,116,58,48,44,109,97,120,84,111,112,58,110,44,99,97,108,108,76,101,102,116,58,33,49,44,99,97,108,108,84,111,112,58,34,115,101,116,72,117,101,82,97,116,105,111,34,125,44,97,108,112,104,97,58,123,115,101,108,101,99,116,111,114,58,34,46,99,111,108,111,114,112,105,99,107,101,114,45,97,108,112,104,97,34,44,99,104,105,108,100,83,101,108,101,99,116,111,114,58,34,46,99,111,108,111,114,112,105,99,107,101,114,45,97,108,112,104,97,45,99,111,108,111,114,34,44,109,97,120,76,101,102,116,58,48,44,109,97,120,84,111,112,58,110,44,99,97,108,108,76,101,102,116,58,33,49,44,99,97,108,108,84,111,112,58,34,115,101,116,65,108,112,104,97,82,97,116,105,111,34,125,125,44,115,108,105,100,101,114,115,72,111,114,122,58,123,115,97,116,117,114,97,116,105,111,110,58,123,115,101,108,101,99,116,111,114,58,34,46,99,111,108,111,114,112,105,99,107,101,114,45,115,97,116,117,114,97,116,105,111,110,34,44,109,97,120,76,101,102,116,58,110,44,109,97,120,84,111,112,58,110,44,99,97,108,108,76,101,102,116,58,34,115,101,116,83,97,116,117,114,97,116,105,111,110,82,97,116,105,111,34,44,99,97,108,108,84,111,112,58,34,115,101,116,86,97,108,117,101,82,97,116,105,111,34,125,44,104,117,101,58,123,115,101,108,101,99,116,111,114,58,34,46,99,111,108,111,114,112,105,99,107,101,114,45,104,117,101,34,44,109,97,120,76,101,102,116,58,110,44,109,97,120,84,111,112,58,48,44,99,97,108,108,76,101,102,116,58,34,115,101,116,72,117,101,82,97,116,105,111,34,44,99,97,108,108,84,111,112,58,33,49,125,44,97,108,112,104,97,58,123,115,101,108,101,99,116,111,114,58,34,46,99,111,108,111,114,112,105,99,107,101,114,45,97,108,112,104,97,34,44,99,104,105,108,100,83,101,108,101,99,116,111,114,58,34,46,99,111,108,111,114,112,105,99,107,101,114,45,97,108,112,104,97,45,99,111,108,111,114,34,44,109,97,120,76,101,102,116,58,110,44,109,97,120,84,111,112,58,48,44,99,97,108,108,76,101,102,116,58,34,115,101,116,65,108,112,104,97,82,97,116,105,111,34,44,99,97,108,108,84,111,112,58,33,49,125,125,125,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,111,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,102,117,110,99,116,105,111,110,32,114,40,101,41,123,114,101,116,117,114,110,32,101,38,38,101,46,95,95,101,115,77,111,100,117,108,101,63,101,58,123,100,101,102,97,117,108,116,58,101,125,125,102,117,110,99,116,105,111,110,32,110,40,101,44,116,41,123,105,102,40,33,40,101,32,105,110,115,116,97,110,99,101,111,102,32,116,41,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,67,97,110,110,111,116,32,99,97,108,108,32,97,32,99,108,97,115,115,32,97,115,32,97,32,102,117,110,99,116,105,111,110,34,41,125,102,117,110,99,116,105,111,110,32,105,40,101,44,116,41,123,105,102,40,33,101,41,116,104,114,111,119,32,110,101,119,32,82,101,102,101,114,101,110,99,101,69,114,114,111,114,40,34,116,104,105,115,32,104,97,115,110,39,116,32,98,101,101,110,32,105,110,105,116,105,97,108,105,115,101,100,32,45,32,115,117,112,101,114,40,41,32,104,97,115,110,39,116,32,98,101,101,110,32,99,97,108,108,101,100,34,41,59,114,101,116,117,114,110,33,116,124,124,34,111,98,106,101,99,116,34,33,61,116,121,112,101,111,102,32,116,38,38,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,116,63,101,58,116,125,102,117,110,99,116,105,111,110,32,97,40,101,44,116,41,123,105,102,40,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,116,38,38,110,117,108,108,33,61,61,116,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,83,117,112,101,114,32,101,120,112,114,101,115,115,105,111,110,32,109,117,115,116,32,101,105,116,104,101,114,32,98,101,32,110,117,108,108,32,111,114,32,97,32,102,117,110,99,116,105,111,110,44,32,110,111,116,32,34,43,116,121,112,101,111,102,32,116,41,59,101,46,112,114,111,116,111,116,121,112,101,61,79,98,106,101,99,116,46,99,114,101,97,116,101,40,116,38,38,116,46,112,114,111,116,111,116,121,112,101,44,123,99,111,110,115,116,114,117,99,116,111,114,58,123,118,97,108,117,101,58,101,44,101,110,117,109,101,114,97,98,108,101,58,33,49,44,119,114,105,116,97,98,108,101,58,33,48,44,99,111,110,102,105,103,117,114,97,98,108,101,58,33,48,125,125,41,44,116,38,38,40,79,98,106,101,99,116,46,115,101,116,80,114,111,116,111,116,121,112,101,79,102,63,79,98,106,101,99,116,46,115,101,116,80,114,111,116,111,116,121,112,101,79,102,40,101,44,116,41,58,101,46,95,95,112,114,111,116,111,95,95,61,116,41,125,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,44,34,95,95,101,115,77,111,100,117,108,101,34,44,123,118,97,108,117,101,58,33,48,125,41,59,118,97,114,32,108,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,83,121,109,98,111,108,38,38,34,115,121,109,98,111,108,34,61,61,116,121,112,101,111,102,32,83,121,109,98,111,108,46,105,116,101,114,97,116,111,114,63,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,121,112,101,111,102,32,101,125,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,38,38,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,83,121,109,98,111,108,38,38,101,46,99,111,110,115,116,114,117,99,116,111,114,61,61,61,83,121,109,98,111,108,38,38,101,33,61,61,83,121,109,98,111,108,46,112,114,111,116,111,116,121,112,101,63,34,115,121,109,98,111,108,34,58,116,121,112,101,111,102,32,101,125,44,115,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,101,40,101,44,116,41,123,102,111,114,40,118,97,114,32,111,61,48,59,111,60,116,46,108,101,110,103,116,104,59,111,43,43,41,123,118,97,114,32,114,61,116,91,111,93,59,114,46,101,110,117,109,101,114,97,98,108,101,61,114,46,101,110,117,109,101,114,97,98,108,101,124,124,33,49,44,114,46,99,111,110,102,105,103,117,114,97,98,108,101,61,33,48,44,34,118,97,108,117,101,34,105,110,32,114,38,38,40,114,46,119,114,105,116,97,98,108,101,61,33,48,41,44,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,101,44,114,46,107,101,121,44,114,41,125,125,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,44,111,44,114,41,123,114,101,116,117,114,110,32,111,38,38,101,40,116,46,112,114,111,116,111,116,121,112,101,44,111,41,44,114,38,38,101,40,116,44,114,41,44,116,125,125,40,41,44,99,61,111,40,49,41,44,117,61,114,40,99,41,44,104,61,111,40,48,41,44,112,61,114,40,104,41,44,102,61,123,99,111,108,111,114,115,58,110,117,108,108,44,110,97,109,101,115,65,115,86,97,108,117,101,115,58,33,48,125,44,100,61,102,117,110,99,116,105,111,110,40,101,41,123,102,117,110,99,116,105,111,110,32,116,40,101,41,123,118,97,114,32,111,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,62,49,38,38,118,111,105,100,32,48,33,61,61,97,114,103,117,109,101,110,116,115,91,49,93,63,97,114,103,117,109,101,110,116,115,91,49,93,58,123,125,59,110,40,116,104,105,115,44,116,41,59,118,97,114,32,114,61,105,40,116,104,105,115,44,40,116,46,95,95,112,114,111,116,111,95,95,124,124,79,98,106,101,99,116,46,103,101,116,80,114,111,116,111,116,121,112,101,79,102,40,116,41,41,46,99,97,108,108,40,116,104,105,115,44,101,44,112,46,100,101,102,97,117,108,116,46,101,120,116,101,110,100,40,33,48,44,123,125,44,102,44,111,41,41,41,59,114,101,116,117,114,110,32,65,114,114,97,121,46,105,115,65,114,114,97,121,40,114,46,111,112,116,105,111,110,115,46,99,111,108,111,114,115,41,124,124,34,111,98,106,101,99,116,34,61,61,61,108,40,114,46,111,112,116,105,111,110,115,46,99,111,108,111,114,115,41,124,124,40,114,46,111,112,116,105,111,110,115,46,99,111,108,111,114,115,61,110,117,108,108,41,44,114,125,114,101,116,117,114,110,32,97,40,116,44,101,41,44,115,40,116,44,91,123,107,101,121,58,34,99,111,108,111,114,115,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,111,112,116,105,111,110,115,46,99,111,108,111,114,115,125,125,93,41,44,115,40,116,44,91,123,107,101,121,58,34,103,101,116,76,101,110,103,116,104,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,111,112,116,105,111,110,115,46,99,111,108,111,114,115,63,65,114,114,97,121,46,105,115,65,114,114,97,121,40,116,104,105,115,46,111,112,116,105,111,110,115,46,99,111,108,111,114,115,41,63,116,104,105,115,46,111,112,116,105,111,110,115,46,99,111,108,111,114,115,46,108,101,110,103,116,104,58,34,111,98,106,101,99,116,34,61,61,61,108,40,116,104,105,115,46,111,112,116,105,111,110,115,46,99,111,108,111,114,115,41,63,79,98,106,101,99,116,46,107,101,121,115,40,116,104,105,115,46,111,112,116,105,111,110,115,46,99,111,108,111,114,115,41,46,108,101,110,103,116,104,58,48,58,48,125,125,44,123,107,101,121,58,34,114,101,115,111,108,118,101,67,111,108,111,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,33,40,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,62,49,38,38,118,111,105,100,32,48,33,61,61,97,114,103,117,109,101,110,116,115,91,49,93,41,124,124,97,114,103,117,109,101,110,116,115,91,49,93,59,114,101,116,117,114,110,33,40,116,104,105,115,46,103,101,116,76,101,110,103,116,104,40,41,60,61,48,41,38,38,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,116,104,105,115,46,111,112,116,105,111,110,115,46,99,111,108,111,114,115,41,63,116,104,105,115,46,111,112,116,105,111,110,115,46,99,111,108,111,114,115,46,105,110,100,101,120,79,102,40,101,41,62,61,48,63,101,58,116,104,105,115,46,111,112,116,105,111,110,115,46,99,111,108,111,114,115,46,105,110,100,101,120,79,102,40,101,46,116,111,85,112,112,101,114,67,97,115,101,40,41,41,62,61,48,63,101,46,116,111,85,112,112,101,114,67,97,115,101,40,41,58,116,104,105,115,46,111,112,116,105,111,110,115,46,99,111,108,111,114,115,46,105,110,100,101,120,79,102,40,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,41,62,61,48,38,38,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,58,34,111,98,106,101,99,116,34,61,61,61,108,40,116,104,105,115,46,111,112,116,105,111,110,115,46,99,111,108,111,114,115,41,38,38,40,33,116,104,105,115,46,111,112,116,105,111,110,115,46,110,97,109,101,115,65,115,86,97,108,117,101,115,124,124,116,63,116,104,105,115,46,103,101,116,86,97,108,117,101,40,101,44,33,49,41,58,116,104,105,115,46,103,101,116,78,97,109,101,40,101,44,116,104,105,115,46,103,101,116,78,97,109,101,40,34,35,34,43,101,41,41,41,41,125,125,44,123,107,101,121,58,34,103,101,116,78,97,109,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,62,49,38,38,118,111,105,100,32,48,33,61,61,97,114,103,117,109,101,110,116,115,91,49,93,38,38,97,114,103,117,109,101,110,116,115,91,49,93,59,105,102,40,34,115,116,114,105,110,103,34,33,61,116,121,112,101,111,102,32,101,124,124,33,116,104,105,115,46,111,112,116,105,111,110,115,46,99,111,108,111,114,115,41,114,101,116,117,114,110,32,116,59,102,111,114,40,118,97,114,32,111,32,105,110,32,116,104,105,115,46,111,112,116,105,111,110,115,46,99,111,108,111,114,115,41,105,102,40,116,104,105,115,46,111,112,116,105,111,110,115,46,99,111,108,111,114,115,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,111,41,38,38,116,104,105,115,46,111,112,116,105,111,110,115,46,99,111,108,111,114,115,91,111,93,46,116,111,76,111,119,101,114,67,97,115,101,40,41,61,61,61,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,41,114,101,116,117,114,110,32,111,59,114,101,116,117,114,110,32,116,125,125,44,123,107,101,121,58,34,103,101,116,86,97,108,117,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,62,49,38,38,118,111,105,100,32,48,33,61,61,97,114,103,117,109,101,110,116,115,91,49,93,38,38,97,114,103,117,109,101,110,116,115,91,49,93,59,114,101,116,117,114,110,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,101,38,38,116,104,105,115,46,111,112,116,105,111,110,115,46,99,111,108,111,114,115,38,38,116,104,105,115,46,111,112,116,105,111,110,115,46,99,111,108,111,114,115,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,101,41,63,116,104,105,115,46,111,112,116,105,111,110,115,46,99,111,108,111,114,115,91,101,93,58,116,125,125,93,41,44,116,125,40,117,46,100,101,102,97,117,108,116,41,59,116,46,100,101,102,97,117,108,116,61,100,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,111,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,101,46,101,120,112,111,114,116,115,61,123,97,108,105,99,101,98,108,117,101,58,91,50,52,48,44,50,52,56,44,50,53,53,93,44,97,110,116,105,113,117,101,119,104,105,116,101,58,91,50,53,48,44,50,51,53,44,50,49,53,93,44,97,113,117,97,58,91,48,44,50,53,53,44,50,53,53,93,44,97,113,117,97,109,97,114,105,110,101,58,91,49,50,55,44,50,53,53,44,50,49,50,93,44,97,122,117,114,101,58,91,50,52,48,44,50,53,53,44,50,53,53,93,44,98,101,105,103,101,58,91,50,52,53,44,50,52,53,44,50,50,48,93,44,98,105,115,113,117,101,58,91,50,53,53,44,50,50,56,44,49,57,54,93,44,98,108,97,99,107,58,91,48,44,48,44,48,93,44,98,108,97,110,99,104,101,100,97,108,109,111,110,100,58,91,50,53,53,44,50,51,53,44,50,48,53,93,44,98,108,117,101,58,91,48,44,48,44,50,53,53,93,44,98,108,117,101,118,105,111,108,101,116,58,91,49,51,56,44,52,51,44,50,50,54,93,44,98,114,111,119,110,58,91,49,54,53,44,52,50,44,52,50,93,44,98,117,114,108,121,119,111,111,100,58,91,50,50,50,44,49,56,52,44,49,51,53,93,44,99,97,100,101,116,98,108,117,101,58,91,57,53,44,49,53,56,44,49,54,48,93,44,99,104,97,114,116,114,101,117,115,101,58,91,49,50,55,44,50,53,53,44,48,93,44,99,104,111,99,111,108,97,116,101,58,91,50,49,48,44,49,48,53,44,51,48,93,44,99,111,114,97,108,58,91,50,53,53,44,49,50,55,44,56,48,93,44,99,111,114,110,102,108,111,119,101,114,98,108,117,101,58,91,49,48,48,44,49,52,57,44,50,51,55,93,44,99,111,114,110,115,105,108,107,58,91,50,53,53,44,50,52,56,44,50,50,48,93,44,99,114,105,109,115,111,110,58,91,50,50,48,44,50,48,44,54,48,93,44,99,121,97,110,58,91,48,44,50,53,53,44,50,53,53,93,44,100,97,114,107,98,108,117,101,58,91,48,44,48,44,49,51,57,93,44,100,97,114,107,99,121,97,110,58,91,48,44,49,51,57,44,49,51,57,93,44,100,97,114,107,103,111,108,100,101,110,114,111,100,58,91,49,56,52,44,49,51,52,44,49,49,93,44,100,97,114,107,103,114,97,121,58,91,49,54,57,44,49,54,57,44,49,54,57,93,44,100,97,114,107,103,114,101,101,110,58,91,48,44,49,48,48,44,48,93,44,100,97,114,107,103,114,101,121,58,91,49,54,57,44,49,54,57,44,49,54,57,93,44,100,97,114,107,107,104,97,107,105,58,91,49,56,57,44,49,56,51,44,49,48,55,93,44,100,97,114,107,109,97,103,101,110,116,97,58,91,49,51,57,44,48,44,49,51,57,93,44,100,97,114,107,111,108,105,118,101,103,114,101,101,110,58,91,56,53,44,49,48,55,44,52,55,93,44,100,97,114,107,111,114,97,110,103,101,58,91,50,53,53,44,49,52,48,44,48,93,44,100,97,114,107,111,114,99,104,105,100,58,91,49,53,51,44,53,48,44,50,48,52,93,44,100,97,114,107,114,101,100,58,91,49,51,57,44,48,44,48,93,44,100,97,114,107,115,97,108,109,111,110,58,91,50,51,51,44,49,53,48,44,49,50,50,93,44,100,97,114,107,115,101,97,103,114,101,101,110,58,91,49,52,51,44,49,56,56,44,49,52,51,93,44,100,97,114,107,115,108,97,116,101,98,108,117,101,58,91,55,50,44,54,49,44,49,51,57,93,44,100,97,114,107,115,108,97,116,101,103,114,97,121,58,91,52,55,44,55,57,44,55,57,93,44,100,97,114,107,115,108,97,116,101,103,114,101,121,58,91,52,55,44,55,57,44,55,57,93,44,100,97,114,107,116,117,114,113,117,111,105,115,101,58,91,48,44,50,48,54,44,50,48,57,93,44,100,97,114,107,118,105,111,108,101,116,58,91,49,52,56,44,48,44,50,49,49,93,44,100,101,101,112,112,105,110,107,58,91,50,53,53,44,50,48,44,49,52,55,93,44,100,101,101,112,115,107,121,98,108,117,101,58,91,48,44,49,57,49,44,50,53,53,93,44,100,105,109,103,114,97,121,58,91,49,48,53,44,49,48,53,44,49,48,53,93,44,100,105,109,103,114,101,121,58,91,49,48,53,44,49,48,53,44,49,48,53,93,44,100,111,100,103,101,114,98,108,117,101,58,91,51,48,44,49,52,52,44,50,53,53,93,44,102,105,114,101,98,114,105,99,107,58,91,49,55,56,44,51,52,44,51,52,93,44,102,108,111,114,97,108,119,104,105,116,101,58,91,50,53,53,44,50,53,48,44,50,52,48,93,44,102,111,114,101,115,116,103,114,101,101,110,58,91,51,52,44,49,51,57,44,51,52,93,44,102,117,99,104,115,105,97,58,91,50,53,53,44,48,44,50,53,53,93,44,103,97,105,110,115,98,111,114,111,58,91,50,50,48,44,50,50,48,44,50,50,48,93,44,103,104,111,115,116,119,104,105,116,101,58,91,50,52,56,44,50,52,56,44,50,53,53,93,44,103,111,108,100,58,91,50,53,53,44,50,49,53,44,48,93,44,103,111,108,100,101,110,114,111,100,58,91,50,49,56,44,49,54,53,44,51,50,93,44,103,114,97,121,58,91,49,50,56,44,49,50,56,44,49,50,56,93,44,103,114,101,101,110,58,91,48,44,49,50,56,44,48,93,44,103,114,101,101,110,121,101,108,108,111,119,58,91,49,55,51,44,50,53,53,44,52,55,93,44,103,114,101,121,58,91,49,50,56,44,49,50,56,44,49,50,56,93,44,104,111,110,101,121,100,101,119,58,91,50,52,48,44,50,53,53,44,50,52,48,93,44,104,111,116,112,105,110,107,58,91,50,53,53,44,49,48,53,44,49,56,48,93,44,105,110,100,105,97,110,114,101,100,58,91,50,48,53,44,57,50,44,57,50,93,44,105,110,100,105,103,111,58,91,55,53,44,48,44,49,51,48,93,44,105,118,111,114,121,58,91,50,53,53,44,50,53,53,44,50,52,48,93,44,107,104,97,107,105,58,91,50,52,48,44,50,51,48,44,49,52,48,93,44,108,97,118,101,110,100,101,114,58,91,50,51,48,44,50,51,48,44,50,53,48,93,44,108,97,118,101,110,100,101,114,98,108,117,115,104,58,91,50,53,53,44,50,52,48,44,50,52,53,93,44,108,97,119,110,103,114,101,101,110,58,91,49,50,52,44,50,53,50,44,48,93,44,108,101,109,111,110,99,104,105,102,102,111,110,58,91,50,53,53,44,50,53,48,44,50,48,53,93,44,108,105,103,104,116,98,108,117,101,58,91,49,55,51,44,50,49,54,44,50,51,48,93,44,108,105,103,104,116,99,111,114,97,108,58,91,50,52,48,44,49,50,56,44,49,50,56,93,44,108,105,103,104,116,99,121,97,110,58,91,50,50,52,44,50,53,53,44,50,53,53,93,44,108,105,103,104,116,103,111,108,100,101,110,114,111,100,121,101,108,108,111,119,58,91,50,53,48,44,50,53,48,44,50,49,48,93,44,108,105,103,104,116,103,114,97,121,58,91,50,49,49,44,50,49,49,44,50,49,49,93,44,108,105,103,104,116,103,114,101,101,110,58,91,49,52,52,44,50,51,56,44,49,52,52,93,44,108,105,103,104,116,103,114,101,121,58,91,50,49,49,44,50,49,49,44,50,49,49,93,44,108,105,103,104,116,112,105,110,107,58,91,50,53,53,44,49,56,50,44,49,57,51,93,44,108,105,103,104,116,115,97,108,109,111,110,58,91,50,53,53,44,49,54,48,44,49,50,50,93,44,108,105,103,104,116,115,101,97,103,114,101,101,110,58,91,51,50,44,49,55,56,44,49,55,48,93,44,108,105,103,104,116,115,107,121,98,108,117,101,58,91,49,51,53,44,50,48,54,44,50,53,48,93,44,108,105,103,104,116,115,108,97,116,101,103,114,97,121,58,91,49,49,57,44,49,51,54,44,49,53,51,93,44,108,105,103,104,116,115,108,97,116,101,103,114,101,121,58,91,49,49,57,44,49,51,54,44,49,53,51,93,44,108,105,103,104,116,115,116,101,101,108,98,108,117,101,58,91,49,55,54,44,49,57,54,44,50,50,50,93,44,108,105,103,104,116,121,101,108,108,111,119,58,91,50,53,53,44,50,53,53,44,50,50,52,93,44,108,105,109,101,58,91,48,44,50,53,53,44,48,93,44,108,105,109,101,103,114,101,101,110,58,91,53,48,44,50,48,53,44,53,48,93,44,108,105,110,101,110,58,91,50,53,48,44,50,52,48,44,50,51,48,93,44,109,97,103,101,110,116,97,58,91,50,53,53,44,48,44,50,53,53,93,44,109,97,114,111,111,110,58,91,49,50,56,44,48,44,48,93,44,109,101,100,105,117,109,97,113,117,97,109,97,114,105,110,101,58,91,49,48,50,44,50,48,53,44,49,55,48,93,44,109,101,100,105,117,109,98,108,117,101,58,91,48,44,48,44,50,48,53,93,44,109,101,100,105,117,109,111,114,99,104,105,100,58,91,49,56,54,44,56,53,44,50,49,49,93,44,109,101,100,105,117,109,112,117,114,112,108,101,58,91,49,52,55,44,49,49,50,44,50,49,57,93,44,109,101,100,105,117,109,115,101,97,103,114,101,101,110,58,91,54,48,44,49,55,57,44,49,49,51,93,44,109,101,100,105,117,109,115,108,97,116,101,98,108,117,101,58,91,49,50,51,44,49,48,52,44,50,51,56,93,44,109,101,100,105,117,109,115,112,114,105,110,103,103,114,101,101,110,58,91,48,44,50,53,48,44,49,53,52,93,44,109,101,100,105,117,109,116,117,114,113,117,111,105,115,101,58,91,55,50,44,50,48,57,44,50,48,52,93,44,109,101,100,105,117,109,118,105,111,108,101,116,114,101,100,58,91,49,57,57,44,50,49,44,49,51,51,93,44,109,105,100,110,105,103,104,116,98,108,117,101,58,91,50,53,44,50,53,44,49,49,50,93,44,109,105,110,116,99,114,101,97,109,58,91,50,52,53,44,50,53,53,44,50,53,48,93,44,109,105,115,116,121,114,111,115,101,58,91,50,53,53,44,50,50,56,44,50,50,53,93,44,109,111,99,99,97,115,105,110,58,91,50,53,53,44,50,50,56,44,49,56,49,93,44,110,97,118,97,106,111,119,104,105,116,101,58,91,50,53,53,44,50,50,50,44,49,55,51,93,44,110,97,118,121,58,91,48,44,48,44,49,50,56,93,44,111,108,100,108,97,99,101,58,91,50,53,51,44,50,52,53,44,50,51,48,93,44,111,108,105,118,101,58,91,49,50,56,44,49,50,56,44,48,93,44,111,108,105,118,101,100,114,97,98,58,91,49,48,55,44,49,52,50,44,51,53,93,44,111,114,97,110,103,101,58,91,50,53,53,44,49,54,53,44,48,93,44,111,114,97,110,103,101,114,101,100,58,91,50,53,53,44,54,57,44,48,93,44,111,114,99,104,105,100,58,91,50,49,56,44,49,49,50,44,50,49,52,93,44,112,97,108,101,103,111,108,100,101,110,114,111,100,58,91,50,51,56,44,50,51,50,44,49,55,48,93,44,112,97,108,101,103,114,101,101,110,58,91,49,53,50,44,50,53,49,44,49,53,50,93,44,112,97,108,101,116,117,114,113,117,111,105,115,101,58,91,49,55,53,44,50,51,56,44,50,51,56,93,44,112,97,108,101,118,105,111,108,101,116,114,101,100,58,91,50,49,57,44,49,49,50,44,49,52,55,93,44,112,97,112,97,121,97,119,104,105,112,58,91,50,53,53,44,50,51,57,44,50,49,51,93,44,112,101,97,99,104,112,117,102,102,58,91,50,53,53,44,50,49,56,44,49,56,53,93,44,112,101,114,117,58,91,50,48,53,44,49,51,51,44,54,51,93,44,112,105,110,107,58,91,50,53,53,44,49,57,50,44,50,48,51,93,44,112,108,117,109,58,91,50,50,49,44,49,54,48,44,50,50,49,93,44,112,111,119,100,101,114,98,108,117,101,58,91,49,55,54,44,50,50,52,44,50,51,48,93,44,112,117,114,112,108,101,58,91,49,50,56,44,48,44,49,50,56,93,44,114,101,98,101,99,99,97,112,117,114,112,108,101,58,91,49,48,50,44,53,49,44,49,53,51,93,44,114,101,100,58,91,50,53,53,44,48,44,48,93,44,114,111,115,121,98,114,111,119,110,58,91,49,56,56,44,49,52,51,44,49,52,51,93,44,114,111,121,97,108,98,108,117,101,58,91,54,53,44,49,48,53,44,50,50,53,93,44,115,97,100,100,108,101,98,114,111,119,110,58,91,49,51,57,44,54,57,44,49,57,93,44,115,97,108,109,111,110,58,91,50,53,48,44,49,50,56,44,49,49,52,93,44,115,97,110,100,121,98,114,111,119,110,58,91,50,52,52,44,49,54,52,44,57,54,93,44,115,101,97,103,114,101,101,110,58,91,52,54,44,49,51,57,44,56,55,93,44,115,101,97,115,104,101,108,108,58,91,50,53,53,44,50,52,53,44,50,51,56,93,44,115,105,101,110,110,97,58,91,49,54,48,44,56,50,44,52,53,93,44,115,105,108,118,101,114,58,91,49,57,50,44,49,57,50,44,49,57,50,93,44,115,107,121,98,108,117,101,58,91,49,51,53,44,50,48,54,44,50,51,53,93,44,115,108,97,116,101,98,108,117,101,58,91,49,48,54,44,57,48,44,50,48,53,93,44,115,108,97,116,101,103,114,97,121,58,91,49,49,50,44,49,50,56,44,49,52,52,93,44,115,108,97,116,101,103,114,101,121,58,91,49,49,50,44,49,50,56,44,49,52,52,93,44,115,110,111,119,58,91,50,53,53,44,50,53,48,44,50,53,48,93,44,115,112,114,105,110,103,103,114,101,101,110,58,91,48,44,50,53,53,44,49,50,55,93,44,115,116,101,101,108,98,108,117,101,58,91,55,48,44,49,51,48,44,49,56,48,93,44,116,97,110,58,91,50,49,48,44,49,56,48,44,49,52,48,93,44,116,101,97,108,58,91,48,44,49,50,56,44,49,50,56,93,44,116,104,105,115,116,108,101,58,91,50,49,54,44,49,57,49,44,50,49,54,93,44,116,111,109,97,116,111,58,91,50,53,53,44,57,57,44,55,49,93,44,116,117,114,113,117,111,105,115,101,58,91,54,52,44,50,50,52,44,50,48,56,93,44,118,105,111,108,101,116,58,91,50,51,56,44,49,51,48,44,50,51,56,93,44,119,104,101,97,116,58,91,50,52,53,44,50,50,50,44,49,55,57,93,44,119,104,105,116,101,58,91,50,53,53,44,50,53,53,44,50,53,53,93,44,119,104,105,116,101,115,109,111,107,101,58,91,50,52,53,44,50,52,53,44,50,52,53,93,44,121,101,108,108,111,119,58,91,50,53,53,44,50,53,53,44,48,93,44,121,101,108,108,111,119,103,114,101,101,110,58,91,49,53,52,44,50,48,53,44,53,48,93,125,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,111,41,123,102,117,110,99,116,105,111,110,32,114,40,101,44,116,41,123,114,101,116,117,114,110,32,77,97,116,104,46,112,111,119,40,101,91,48,93,45,116,91,48,93,44,50,41,43,77,97,116,104,46,112,111,119,40,101,91,49,93,45,116,91,49,93,44,50,41,43,77,97,116,104,46,112,111,119,40,101,91,50,93,45,116,91,50,93,44,50,41,125,118,97,114,32,110,61,111,40,53,41,44,105,61,123,125,59,102,111,114,40,118,97,114,32,97,32,105,110,32,110,41,110,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,97,41,38,38,40,105,91,110,91,97,93,93,61,97,41,59,118,97,114,32,108,61,101,46,101,120,112,111,114,116,115,61,123,114,103,98,58,123,99,104,97,110,110,101,108,115,58,51,44,108,97,98,101,108,115,58,34,114,103,98,34,125,44,104,115,108,58,123,99,104,97,110,110,101,108,115,58,51,44,108,97,98,101,108,115,58,34,104,115,108,34,125,44,104,115,118,58,123,99,104,97,110,110,101,108,115,58,51,44,108,97,98,101,108,115,58,34,104,115,118,34,125,44,104,119,98,58,123,99,104,97,110,110,101,108,115,58,51,44,108,97,98,101,108,115,58,34,104,119,98,34,125,44,99,109,121,107,58,123,99,104,97,110,110,101,108,115,58,52,44,108,97,98,101,108,115,58,34,99,109,121,107,34,125,44,120,121,122,58,123,99,104,97,110,110,101,108,115,58,51,44,108,97,98,101,108,115,58,34,120,121,122,34,125,44,108,97,98,58,123,99,104,97,110,110,101,108,115,58,51,44,108,97,98,101,108,115,58,34,108,97,98,34,125,44,108,99,104,58,123,99,104,97,110,110,101,108,115,58,51,44,108,97,98,101,108,115,58,34,108,99,104,34,125,44,104,101,120,58,123,99,104,97,110,110,101,108,115,58,49,44,108,97,98,101,108,115,58,91,34,104,101,120,34,93,125,44,107,101,121,119,111,114,100,58,123,99,104,97,110,110,101,108,115,58,49,44,108,97,98,101,108,115,58,91,34,107,101,121,119,111,114,100,34,93,125,44,97,110,115,105,49,54,58,123,99,104,97,110,110,101,108,115,58,49,44,108,97,98,101,108,115,58,91,34,97,110,115,105,49,54,34,93,125,44,97,110,115,105,50,53,54,58,123,99,104,97,110,110,101,108,115,58,49,44,108,97,98,101,108,115,58,91,34,97,110,115,105,50,53,54,34,93,125,44,104,99,103,58,123,99,104,97,110,110,101,108,115,58,51,44,108,97,98,101,108,115,58,91,34,104,34,44,34,99,34,44,34,103,34,93,125,44,97,112,112,108,101,58,123,99,104,97,110,110,101,108,115,58,51,44,108,97,98,101,108,115,58,91,34,114,49,54,34,44,34,103,49,54,34,44,34,98,49,54,34,93,125,44,103,114,97,121,58,123,99,104,97,110,110,101,108,115,58,49,44,108,97,98,101,108,115,58,91,34,103,114,97,121,34,93,125,125,59,102,111,114,40,118,97,114,32,115,32,105,110,32,108,41,105,102,40,108,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,115,41,41,123,105,102,40,33,40,34,99,104,97,110,110,101,108,115,34,105,110,32,108,91,115,93,41,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,109,105,115,115,105,110,103,32,99,104,97,110,110,101,108,115,32,112,114,111,112,101,114,116,121,58,32,34,43,115,41,59,105,102,40,33,40,34,108,97,98,101,108,115,34,105,110,32,108,91,115,93,41,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,109,105,115,115,105,110,103,32,99,104,97,110,110,101,108,32,108,97,98,101,108,115,32,112,114,111,112,101,114,116,121,58,32,34,43,115,41,59,105,102,40,108,91,115,93,46,108,97,98,101,108,115,46,108,101,110,103,116,104,33,61,61,108,91,115,93,46,99,104,97,110,110,101,108,115,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,99,104,97,110,110,101,108,32,97,110,100,32,108,97,98,101,108,32,99,111,117,110,116,115,32,109,105,115,109,97,116,99,104,58,32,34,43,115,41,59,118,97,114,32,99,61,108,91,115,93,46,99,104,97,110,110,101,108,115,44,117,61,108,91,115,93,46,108,97,98,101,108,115,59,100,101,108,101,116,101,32,108,91,115,93,46,99,104,97,110,110,101,108,115,44,100,101,108,101,116,101,32,108,91,115,93,46,108,97,98,101,108,115,44,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,108,91,115,93,44,34,99,104,97,110,110,101,108,115,34,44,123,118,97,108,117,101,58,99,125,41,44,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,108,91,115,93,44,34,108,97,98,101,108,115,34,44,123,118,97,108,117,101,58,117,125,41,125,108,46,114,103,98,46,104,115,108,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,44,111,44,114,44,110,61,101,91,48,93,47,50,53,53,44,105,61,101,91,49,93,47,50,53,53,44,97,61,101,91,50,93,47,50,53,53,44,108,61,77,97,116,104,46,109,105,110,40,110,44,105,44,97,41,44,115,61,77,97,116,104,46,109,97,120,40,110,44,105,44,97,41,44,99,61,115,45,108,59,114,101,116,117,114,110,32,115,61,61,61,108,63,116,61,48,58,110,61,61,61,115,63,116,61,40,105,45,97,41,47,99,58,105,61,61,61,115,63,116,61,50,43,40,97,45,110,41,47,99,58,97,61,61,61,115,38,38,40,116,61,52,43,40,110,45,105,41,47,99,41,44,116,61,77,97,116,104,46,109,105,110,40,54,48,42,116,44,51,54,48,41,44,116,60,48,38,38,40,116,43,61,51,54,48,41,44,114,61,40,108,43,115,41,47,50,44,111,61,115,61,61,61,108,63,48,58,114,60,61,46,53,63,99,47,40,115,43,108,41,58,99,47,40,50,45,115,45,108,41,44,91,116,44,49,48,48,42,111,44,49,48,48,42,114,93,125,44,108,46,114,103,98,46,104,115,118,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,44,111,44,114,44,110,44,105,44,97,61,101,91,48,93,47,50,53,53,44,108,61,101,91,49,93,47,50,53,53,44,115,61,101,91,50,93,47,50,53,53,44,99,61,77,97,116,104,46,109,97,120,40,97,44,108,44,115,41,44,117,61,99,45,77,97,116,104,46,109,105,110,40,97,44,108,44,115,41,44,104,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,40,99,45,101,41,47,54,47,117,43,46,53,125,59,114,101,116,117,114,110,32,48,61,61,61,117,63,110,61,105,61,48,58,40,105,61,117,47,99,44,116,61,104,40,97,41,44,111,61,104,40,108,41,44,114,61,104,40,115,41,44,97,61,61,61,99,63,110,61,114,45,111,58,108,61,61,61,99,63,110,61,49,47,51,43,116,45,114,58,115,61,61,61,99,38,38,40,110,61,50,47,51,43,111,45,116,41,44,110,60,48,63,110,43,61,49,58,110,62,49,38,38,40,110,45,61,49,41,41,44,91,51,54,48,42,110,44,49,48,48,42,105,44,49,48,48,42,99,93,125,44,108,46,114,103,98,46,104,119,98,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,91,48,93,44,111,61,101,91,49,93,44,114,61,101,91,50,93,44,110,61,108,46,114,103,98,46,104,115,108,40,101,41,91,48,93,44,105,61,49,47,50,53,53,42,77,97,116,104,46,109,105,110,40,116,44,77,97,116,104,46,109,105,110,40,111,44,114,41,41,59,114,101,116,117,114,110,32,114,61,49,45,49,47,50,53,53,42,77,97,116,104,46,109,97,120,40,116,44,77,97,116,104,46,109,97,120,40,111,44,114,41,41,44,91,110,44,49,48,48,42,105,44,49,48,48,42,114,93,125,44,108,46,114,103,98,46,99,109,121,107,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,44,111,44,114,44,110,44,105,61,101,91,48,93,47,50,53,53,44,97,61,101,91,49,93,47,50,53,53,44,108,61,101,91,50,93,47,50,53,53,59,114,101,116,117,114,110,32,110,61,77,97,116,104,46,109,105,110,40,49,45,105,44,49,45,97,44,49,45,108,41,44,116,61,40,49,45,105,45,110,41,47,40,49,45,110,41,124,124,48,44,111,61,40,49,45,97,45,110,41,47,40,49,45,110,41,124,124,48,44,114,61,40,49,45,108,45,110,41,47,40,49,45,110,41,124,124,48,44,91,49,48,48,42,116,44,49,48,48,42,111,44,49,48,48,42,114,44,49,48,48,42,110,93,125,44,108,46,114,103,98,46,107,101,121,119,111,114,100,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,105,91,101,93,59,105,102,40,116,41,114,101,116,117,114,110,32,116,59,118,97,114,32,111,44,97,61,49,47,48,59,102,111,114,40,118,97,114,32,108,32,105,110,32,110,41,105,102,40,110,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,108,41,41,123,118,97,114,32,115,61,110,91,108,93,44,99,61,114,40,101,44,115,41,59,99,60,97,38,38,40,97,61,99,44,111,61,108,41,125,114,101,116,117,114,110,32,111,125,44,108,46,107,101,121,119,111,114,100,46,114,103,98,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,110,91,101,93,125,44,108,46,114,103,98,46,120,121,122,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,91,48,93,47,50,53,53,44,111,61,101,91,49,93,47,50,53,53,44,114,61,101,91,50,93,47,50,53,53,59,114,101,116,117,114,110,32,116,61,116,62,46,48,52,48,52,53,63,77,97,116,104,46,112,111,119,40,40,116,43,46,48,53,53,41,47,49,46,48,53,53,44,50,46,52,41,58,116,47,49,50,46,57,50,44,111,61,111,62,46,48,52,48,52,53,63,77,97,116,104,46,112,111,119,40,40,111,43,46,48,53,53,41,47,49,46,48,53,53,44,50,46,52,41,58,111,47,49,50,46,57,50,44,114,61,114,62,46,48,52,48,52,53,63,77,97,116,104,46,112,111,119,40,40,114,43,46,48,53,53,41,47,49,46,48,53,53,44,50,46,52,41,58,114,47,49,50,46,57,50,44,91,49,48,48,42,40,46,52,49,50,52,42,116,43,46,51,53,55,54,42,111,43,46,49,56,48,53,42,114,41,44,49,48,48,42,40,46,50,49,50,54,42,116,43,46,55,49,53,50,42,111,43,46,48,55,50,50,42,114,41,44,49,48,48,42,40,46,48,49,57,51,42,116,43,46,49,49,57,50,42,111,43,46,57,53,48,53,42,114,41,93,125,44,108,46,114,103,98,46,108,97,98,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,44,111,44,114,44,110,61,108,46,114,103,98,46,120,121,122,40,101,41,44,105,61,110,91,48,93,44,97,61,110,91,49,93,44,115,61,110,91,50,93,59,114,101,116,117,114,110,32,105,47,61,57,53,46,48,52,55,44,97,47,61,49,48,48,44,115,47,61,49,48,56,46,56,56,51,44,105,61,105,62,46,48,48,56,56,53,54,63,77,97,116,104,46,112,111,119,40,105,44,49,47,51,41,58,55,46,55,56,55,42,105,43,49,54,47,49,49,54,44,97,61,97,62,46,48,48,56,56,53,54,63,77,97,116,104,46,112,111,119,40,97,44,49,47,51,41,58,55,46,55,56,55,42,97,43,49,54,47,49,49,54,44,115,61,115,62,46,48,48,56,56,53,54,63,77,97,116,104,46,112,111,119,40,115,44,49,47,51,41,58,55,46,55,56,55,42,115,43,49,54,47,49,49,54,44,116,61,49,49,54,42,97,45,49,54,44,111,61,53,48,48,42,40,105,45,97,41,44,114,61,50,48,48,42,40,97,45,115,41,44,91,116,44,111,44,114,93,125,44,108,46,104,115,108,46,114,103,98,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,44,111,44,114,44,110,44,105,44,97,61,101,91,48,93,47,51,54,48,44,108,61,101,91,49,93,47,49,48,48,44,115,61,101,91,50,93,47,49,48,48,59,105,102,40,48,61,61,61,108,41,114,101,116,117,114,110,32,105,61,50,53,53,42,115,44,91,105,44,105,44,105,93,59,111,61,115,60,46,53,63,115,42,40,49,43,108,41,58,115,43,108,45,115,42,108,44,116,61,50,42,115,45,111,44,110,61,91,48,44,48,44,48,93,59,102,111,114,40,118,97,114,32,99,61,48,59,99,60,51,59,99,43,43,41,114,61,97,43,49,47,51,42,45,40,99,45,49,41,44,114,60,48,38,38,114,43,43,44,114,62,49,38,38,114,45,45,44,105,61,54,42,114,60,49,63,116,43,54,42,40,111,45,116,41,42,114,58,50,42,114,60,49,63,111,58,51,42,114,60,50,63,116,43,40,111,45,116,41,42,40,50,47,51,45,114,41,42,54,58,116,44,110,91,99,93,61,50,53,53,42,105,59,114,101,116,117,114,110,32,110,125,44,108,46,104,115,108,46,104,115,118,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,44,111,44,114,61,101,91,48,93,44,110,61,101,91,49,93,47,49,48,48,44,105,61,101,91,50,93,47,49,48,48,44,97,61,110,44,108,61,77,97,116,104,46,109,97,120,40,105,44,46,48,49,41,59,114,101,116,117,114,110,32,105,42,61,50,44,110,42,61,105,60,61,49,63,105,58,50,45,105,44,97,42,61,108,60,61,49,63,108,58,50,45,108,44,111,61,40,105,43,110,41,47,50,44,116,61,48,61,61,61,105,63,50,42,97,47,40,108,43,97,41,58,50,42,110,47,40,105,43,110,41,44,91,114,44,49,48,48,42,116,44,49,48,48,42,111,93,125,44,108,46,104,115,118,46,114,103,98,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,91,48,93,47,54,48,44,111,61,101,91,49,93,47,49,48,48,44,114,61,101,91,50,93,47,49,48,48,44,110,61,77,97,116,104,46,102,108,111,111,114,40,116,41,37,54,44,105,61,116,45,77,97,116,104,46,102,108,111,111,114,40,116,41,44,97,61,50,53,53,42,114,42,40,49,45,111,41,44,108,61,50,53,53,42,114,42,40,49,45,111,42,105,41,44,115,61,50,53,53,42,114,42,40,49,45,111,42,40,49,45,105,41,41,59,115,119,105,116,99,104,40,114,42,61,50,53,53,44,110,41,123,99,97,115,101,32,48,58,114,101,116,117,114,110,91,114,44,115,44,97,93,59,99,97,115,101,32,49,58,114,101,116,117,114,110,91,108,44,114,44,97,93,59,99,97,115,101,32,50,58,114,101,116,117,114,110,91,97,44,114,44,115,93,59,99,97,115,101,32,51,58,114,101,116,117,114,110,91,97,44,108,44,114,93,59,99,97,115,101,32,52,58,114,101,116,117,114,110,91,115,44,97,44,114,93,59,99,97,115,101,32,53,58,114,101,116,117,114,110,91,114,44,97,44,108,93,125,125,44,108,46,104,115,118,46,104,115,108,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,44,111,44,114,44,110,61,101,91,48,93,44,105,61,101,91,49,93,47,49,48,48,44,97,61,101,91,50,93,47,49,48,48,44,108,61,77,97,116,104,46,109,97,120,40,97,44,46,48,49,41,59,114,101,116,117,114,110,32,114,61,40,50,45,105,41,42,97,44,116,61,40,50,45,105,41,42,108,44,111,61,105,42,108,44,111,47,61,116,60,61,49,63,116,58,50,45,116,44,111,61,111,124,124,48,44,114,47,61,50,44,91,110,44,49,48,48,42,111,44,49,48,48,42,114,93,125,44,108,46,104,119,98,46,114,103,98,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,44,111,44,114,44,110,44,105,61,101,91,48,93,47,51,54,48,44,97,61,101,91,49,93,47,49,48,48,44,108,61,101,91,50,93,47,49,48,48,44,115,61,97,43,108,59,115,62,49,38,38,40,97,47,61,115,44,108,47,61,115,41,44,116,61,77,97,116,104,46,102,108,111,111,114,40,54,42,105,41,44,111,61,49,45,108,44,114,61,54,42,105,45,116,44,48,33,61,40,49,38,116,41,38,38,40,114,61,49,45,114,41,44,110,61,97,43,114,42,40,111,45,97,41,59,118,97,114,32,99,44,117,44,104,59,115,119,105,116,99,104,40,116,41,123,100,101,102,97,117,108,116,58,99,97,115,101,32,54,58,99,97,115,101,32,48,58,99,61,111,44,117,61,110,44,104,61,97,59,98,114,101,97,107,59,99,97,115,101,32,49,58,99,61,110,44,117,61,111,44,104,61,97,59,98,114,101,97,107,59,99,97,115,101,32,50,58,99,61,97,44,117,61,111,44,104,61,110,59,98,114,101,97,107,59,99,97,115,101,32,51,58,99,61,97,44,117,61,110,44,104,61,111,59,98,114,101,97,107,59,99,97,115,101,32,52,58,99,61,110,44,117,61,97,44,104,61,111,59,98,114,101,97,107,59,99,97,115,101,32,53,58,99,61,111,44,117,61,97,44,104,61,110,125,114,101,116,117,114,110,91,50,53,53,42,99,44,50,53,53,42,117,44,50,53,53,42,104,93,125,44,108,46,99,109,121,107,46,114,103,98,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,44,111,44,114,44,110,61,101,91,48,93,47,49,48,48,44,105,61,101,91,49,93,47,49,48,48,44,97,61,101,91,50,93,47,49,48,48,44,108,61,101,91,51,93,47,49,48,48,59,114,101,116,117,114,110,32,116,61,49,45,77,97,116,104,46,109,105,110,40,49,44,110,42,40,49,45,108,41,43,108,41,44,111,61,49,45,77,97,116,104,46,109,105,110,40,49,44,105,42,40,49,45,108,41,43,108,41,44,114,61,49,45,77,97,116,104,46,109,105,110,40,49,44,97,42,40,49,45,108,41,43,108,41,44,91,50,53,53,42,116,44,50,53,53,42,111,44,50,53,53,42,114,93,125,44,108,46,120,121,122,46,114,103,98,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,44,111,44,114,44,110,61,101,91,48,93,47,49,48,48,44,105,61,101,91,49,93,47,49,48,48,44,97,61,101,91,50,93,47,49,48,48,59,114,101,116,117,114,110,32,116,61,51,46,50,52,48,54,42,110,43,45,49,46,53,51,55,50,42,105,43,45,46,52,57,56,54,42,97,44,111,61,45,46,57,54,56,57,42,110,43,49,46,56,55,53,56,42,105,43,46,48,52,49,53,42,97,44,114,61,46,48,53,53,55,42,110,43,45,46,50,48,52,42,105,43,49,46,48,53,55,42,97,44,116,61,116,62,46,48,48,51,49,51,48,56,63,49,46,48,53,53,42,77,97,116,104,46,112,111,119,40,116,44,49,47,50,46,52,41,45,46,48,53,53,58,49,50,46,57,50,42,116,44,111,61,111,62,46,48,48,51,49,51,48,56,63,49,46,48,53,53,42,77,97,116,104,46,112,111,119,40,111,44,49,47,50,46,52,41,45,46,48,53,53,58,49,50,46,57,50,42,111,44,114,61,114,62,46,48,48,51,49,51,48,56,63,49,46,48,53,53,42,77,97,116,104,46,112,111,119,40,114,44,49,47,50,46,52,41,45,46,48,53,53,58,49,50,46,57,50,42,114,44,116,61,77,97,116,104,46,109,105,110,40,77,97,116,104,46,109,97,120,40,48,44,116,41,44,49,41,44,111,61,77,97,116,104,46,109,105,110,40,77,97,116,104,46,109,97,120,40,48,44,111,41,44,49,41,44,114,61,77,97,116,104,46,109,105,110,40,77,97,116,104,46,109,97,120,40,48,44,114,41,44,49,41,44,91,50,53,53,42,116,44,50,53,53,42,111,44,50,53,53,42,114,93,125,44,108,46,120,121,122,46,108,97,98,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,44,111,44,114,44,110,61,101,91,48,93,44,105,61,101,91,49,93,44,97,61,101,91,50,93,59,114,101,116,117,114,110,32,110,47,61,57,53,46,48,52,55,44,105,47,61,49,48,48,44,97,47,61,49,48,56,46,56,56,51,44,110,61,110,62,46,48,48,56,56,53,54,63,77,97,116,104,46,112,111,119,40,110,44,49,47,51,41,58,55,46,55,56,55,42,110,43,49,54,47,49,49,54,44,105,61,105,62,46,48,48,56,56,53,54,63,77,97,116,104,46,112,111,119,40,105,44,49,47,51,41,58,55,46,55,56,55,42,105,43,49,54,47,49,49,54,44,97,61,97,62,46,48,48,56,56,53,54,63,77,97,116,104,46,112,111,119,40,97,44,49,47,51,41,58,55,46,55,56,55,42,97,43,49,54,47,49,49,54,44,116,61,49,49,54,42,105,45,49,54,44,111,61,53,48,48,42,40,110,45,105,41,44,114,61,50,48,48,42,40,105,45,97,41,44,91,116,44,111,44,114,93,125,44,108,46,108,97,98,46,120,121,122,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,44,111,44,114,44,110,61,101,91,48,93,44,105,61,101,91,49,93,44,97,61,101,91,50,93,59,111,61,40,110,43,49,54,41,47,49,49,54,44,116,61,105,47,53,48,48,43,111,44,114,61,111,45,97,47,50,48,48,59,118,97,114,32,108,61,77,97,116,104,46,112,111,119,40,111,44,51,41,44,115,61,77,97,116,104,46,112,111,119,40,116,44,51,41,44,99,61,77,97,116,104,46,112,111,119,40,114,44,51,41,59,114,101,116,117,114,110,32,111,61,108,62,46,48,48,56,56,53,54,63,108,58,40,111,45,49,54,47,49,49,54,41,47,55,46,55,56,55,44,116,61,115,62,46,48,48,56,56,53,54,63,115,58,40,116,45,49,54,47,49,49,54,41,47,55,46,55,56,55,44,114,61,99,62,46,48,48,56,56,53,54,63,99,58,40,114,45,49,54,47,49,49,54,41,47,55,46,55,56,55,44,116,42,61,57,53,46,48,52,55,44,111,42,61,49,48,48,44,114,42,61,49,48,56,46,56,56,51,44,91,116,44,111,44,114,93,125,44,108,46,108,97,98,46,108,99,104,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,44,111,44,114,44,110,61,101,91,48,93,44,105,61,101,91,49,93,44,97,61,101,91,50,93,59,114,101,116,117,114,110,32,116,61,77,97,116,104,46,97,116,97,110,50,40,97,44,105,41,44,111,61,51,54,48,42,116,47,50,47,77,97,116,104,46,80,73,44,111,60,48,38,38,40,111,43,61,51,54,48,41,44,114,61,77,97,116,104,46,115,113,114,116,40,105,42,105,43,97,42,97,41,44,91,110,44,114,44,111,93,125,44,108,46,108,99,104,46,108,97,98,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,44,111,44,114,44,110,61,101,91,48,93,44,105,61,101,91,49,93,44,97,61,101,91,50,93,59,114,101,116,117,114,110,32,114,61,97,47,51,54,48,42,50,42,77,97,116,104,46,80,73,44,116,61,105,42,77,97,116,104,46,99,111,115,40,114,41,44,111,61,105,42,77,97,116,104,46,115,105,110,40,114,41,44,91,110,44,116,44,111,93,125,44,108,46,114,103,98,46,97,110,115,105,49,54,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,91,48,93,44,111,61,101,91,49,93,44,114,61,101,91,50,93,44,110,61,49,32,105,110,32,97,114,103,117,109,101,110,116,115,63,97,114,103,117,109,101,110,116,115,91,49,93,58,108,46,114,103,98,46,104,115,118,40,101,41,91,50,93,59,105,102,40,48,61,61,61,40,110,61,77,97,116,104,46,114,111,117,110,100,40,110,47,53,48,41,41,41,114,101,116,117,114,110,32,51,48,59,118,97,114,32,105,61,51,48,43,40,77,97,116,104,46,114,111,117,110,100,40,114,47,50,53,53,41,60,60,50,124,77,97,116,104,46,114,111,117,110,100,40,111,47,50,53,53,41,60,60,49,124,77,97,116,104,46,114,111,117,110,100,40,116,47,50,53,53,41,41,59,114,101,116,117,114,110,32,50,61,61,61,110,38,38,40,105,43,61,54,48,41,44,105,125,44,108,46,104,115,118,46,97,110,115,105,49,54,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,108,46,114,103,98,46,97,110,115,105,49,54,40,108,46,104,115,118,46,114,103,98,40,101,41,44,101,91,50,93,41,125,44,108,46,114,103,98,46,97,110,115,105,50,53,54,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,91,48,93,44,111,61,101,91,49,93,44,114,61,101,91,50,93,59,114,101,116,117,114,110,32,116,61,61,61,111,38,38,111,61,61,61,114,63,116,60,56,63,49,54,58,116,62,50,52,56,63,50,51,49,58,77,97,116,104,46,114,111,117,110,100,40,40,116,45,56,41,47,50,52,55,42,50,52,41,43,50,51,50,58,49,54,43,51,54,42,77,97,116,104,46,114,111,117,110,100,40,116,47,50,53,53,42,53,41,43,54,42,77,97,116,104,46,114,111,117,110,100,40,111,47,50,53,53,42,53,41,43,77,97,116,104,46,114,111,117,110,100,40,114,47,50,53,53,42,53,41,125,44,108,46,97,110,115,105,49,54,46,114,103,98,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,37,49,48,59,105,102,40,48,61,61,61,116,124,124,55,61,61,61,116,41,114,101,116,117,114,110,32,101,62,53,48,38,38,40,116,43,61,51,46,53,41,44,116,61,116,47,49,48,46,53,42,50,53,53,44,91,116,44,116,44,116,93,59,118,97,114,32,111,61,46,53,42,40,49,43,126,126,40,101,62,53,48,41,41,59,114,101,116,117,114,110,91,40,49,38,116,41,42,111,42,50,53,53,44,40,116,62,62,49,38,49,41,42,111,42,50,53,53,44,40,116,62,62,50,38,49,41,42,111,42,50,53,53,93,125,44,108,46,97,110,115,105,50,53,54,46,114,103,98,61,102,117,110,99,116,105,111,110,40,101,41,123,105,102,40,101,62,61,50,51,50,41,123,118,97,114,32,116,61,49,48,42,40,101,45,50,51,50,41,43,56,59,114,101,116,117,114,110,91,116,44,116,44,116,93,125,101,45,61,49,54,59,118,97,114,32,111,59,114,101,116,117,114,110,91,77,97,116,104,46,102,108,111,111,114,40,101,47,51,54,41,47,53,42,50,53,53,44,77,97,116,104,46,102,108,111,111,114,40,40,111,61,101,37,51,54,41,47,54,41,47,53,42,50,53,53,44,111,37,54,47,53,42,50,53,53,93,125,44,108,46,114,103,98,46,104,101,120,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,40,40,50,53,53,38,77,97,116,104,46,114,111,117,110,100,40,101,91,48,93,41,41,60,60,49,54,41,43,40,40,50,53,53,38,77,97,116,104,46,114,111,117,110,100,40,101,91,49,93,41,41,60,60,56,41,43,40,50,53,53,38,77,97,116,104,46,114,111,117,110,100,40,101,91,50,93,41,41,44,111,61,116,46,116,111,83,116,114,105,110,103,40,49,54,41,46,116,111,85,112,112,101,114,67,97,115,101,40,41,59,114,101,116,117,114,110,34,48,48,48,48,48,48,34,46,115,117,98,115,116,114,105,110,103,40,111,46,108,101,110,103,116,104,41,43,111,125,44,108,46,104,101,120,46,114,103,98,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,46,116,111,83,116,114,105,110,103,40,49,54,41,46,109,97,116,99,104,40,47,91,97,45,102,48,45,57,93,123,54,125,124,91,97,45,102,48,45,57,93,123,51,125,47,105,41,59,105,102,40,33,116,41,114,101,116,117,114,110,91,48,44,48,44,48,93,59,118,97,114,32,111,61,116,91,48,93,59,51,61,61,61,116,91,48,93,46,108,101,110,103,116,104,38,38,40,111,61,111,46,115,112,108,105,116,40,34,34,41,46,109,97,112,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,43,101,125,41,46,106,111,105,110,40,34,34,41,41,59,118,97,114,32,114,61,112,97,114,115,101,73,110,116,40,111,44,49,54,41,59,114,101,116,117,114,110,91,114,62,62,49,54,38,50,53,53,44,114,62,62,56,38,50,53,53,44,50,53,53,38,114,93,125,44,108,46,114,103,98,46,104,99,103,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,44,111,44,114,61,101,91,48,93,47,50,53,53,44,110,61,101,91,49,93,47,50,53,53,44,105,61,101,91,50,93,47,50,53,53,44,97,61,77,97,116,104,46,109,97,120,40,77,97,116,104,46,109,97,120,40,114,44,110,41,44,105,41,44,108,61,77,97,116,104,46,109,105,110,40,77,97,116,104,46,109,105,110,40,114,44,110,41,44,105,41,44,115,61,97,45,108,59,114,101,116,117,114,110,32,116,61,115,60,49,63,108,47,40,49,45,115,41,58,48,44,111,61,115,60,61,48,63,48,58,97,61,61,61,114,63,40,110,45,105,41,47,115,37,54,58,97,61,61,61,110,63,50,43,40,105,45,114,41,47,115,58,52,43,40,114,45,110,41,47,115,43,52,44,111,47,61,54,44,111,37,61,49,44,91,51,54,48,42,111,44,49,48,48,42,115,44,49,48,48,42,116,93,125,44,108,46,104,115,108,46,104,99,103,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,91,49,93,47,49,48,48,44,111,61,101,91,50,93,47,49,48,48,44,114,61,49,44,110,61,48,59,114,101,116,117,114,110,32,114,61,111,60,46,53,63,50,42,116,42,111,58,50,42,116,42,40,49,45,111,41,44,114,60,49,38,38,40,110,61,40,111,45,46,53,42,114,41,47,40,49,45,114,41,41,44,91,101,91,48,93,44,49,48,48,42,114,44,49,48,48,42,110,93,125,44,108,46,104,115,118,46,104,99,103,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,91,49,93,47,49,48,48,44,111,61,101,91,50,93,47,49,48,48,44,114,61,116,42,111,44,110,61,48,59,114,101,116,117,114,110,32,114,60,49,38,38,40,110,61,40,111,45,114,41,47,40,49,45,114,41,41,44,91,101,91,48,93,44,49,48,48,42,114,44,49,48,48,42,110,93,125,44,108,46,104,99,103,46,114,103,98,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,91,48,93,47,51,54,48,44,111,61,101,91,49,93,47,49,48,48,44,114,61,101,91,50,93,47,49,48,48,59,105,102,40,48,61,61,61,111,41,114,101,116,117,114,110,91,50,53,53,42,114,44,50,53,53,42,114,44,50,53,53,42,114,93,59,118,97,114,32,110,61,91,48,44,48,44,48,93,44,105,61,116,37,49,42,54,44,97,61,105,37,49,44,108,61,49,45,97,44,115,61,48,59,115,119,105,116,99,104,40,77,97,116,104,46,102,108,111,111,114,40,105,41,41,123,99,97,115,101,32,48,58,110,91,48,93,61,49,44,110,91,49,93,61,97,44,110,91,50,93,61,48,59,98,114,101,97,107,59,99,97,115,101,32,49,58,110,91,48,93,61,108,44,110,91,49,93,61,49,44,110,91,50,93,61,48,59,98,114,101,97,107,59,99,97,115,101,32,50,58,110,91,48,93,61,48,44,110,91,49,93,61,49,44,110,91,50,93,61,97,59,98,114,101,97,107,59,99,97,115,101,32,51,58,110,91,48,93,61,48,44,110,91,49,93,61,108,44,110,91,50,93,61,49,59,98,114,101,97,107,59,99,97,115,101,32,52,58,110,91,48,93,61,97,44,110,91,49,93,61,48,44,110,91,50,93,61,49,59,98,114,101,97,107,59,100,101,102,97,117,108,116,58,110,91,48,93,61,49,44,110,91,49,93,61,48,44,110,91,50,93,61,108,125,114,101,116,117,114,110,32,115,61,40,49,45,111,41,42,114,44,91,50,53,53,42,40,111,42,110,91,48,93,43,115,41,44,50,53,53,42,40,111,42,110,91,49,93,43,115,41,44,50,53,53,42,40,111,42,110,91,50,93,43,115,41,93,125,44,108,46,104,99,103,46,104,115,118,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,91,49,93,47,49,48,48,44,111,61,101,91,50,93,47,49,48,48,44,114,61,116,43,111,42,40,49,45,116,41,44,110,61,48,59,114,101,116,117,114,110,32,114,62,48,38,38,40,110,61,116,47,114,41,44,91,101,91,48,93,44,49,48,48,42,110,44,49,48,48,42,114,93,125,44,108,46,104,99,103,46,104,115,108,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,91,49,93,47,49,48,48,44,111,61,101,91,50,93,47,49,48,48,44,114,61,111,42,40,49,45,116,41,43,46,53,42,116,44,110,61,48,59,114,101,116,117,114,110,32,114,62,48,38,38,114,60,46,53,63,110,61,116,47,40,50,42,114,41,58,114,62,61,46,53,38,38,114,60,49,38,38,40,110,61,116,47,40,50,42,40,49,45,114,41,41,41,44,91,101,91,48,93,44,49,48,48,42,110,44,49,48,48,42,114,93,125,44,108,46,104,99,103,46,104,119,98,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,91,49,93,47,49,48,48,44,111,61,101,91,50,93,47,49,48,48,44,114,61,116,43,111,42,40,49,45,116,41,59,114,101,116,117,114,110,91,101,91,48,93,44,49,48,48,42,40,114,45,116,41,44,49,48,48,42,40,49,45,114,41,93,125,44,108,46,104,119,98,46,104,99,103,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,91,49,93,47,49,48,48,44,111,61,101,91,50,93,47,49,48,48,44,114,61,49,45,111,44,110,61,114,45,116,44,105,61,48,59,114,101,116,117,114,110,32,110,60,49,38,38,40,105,61,40,114,45,110,41,47,40,49,45,110,41,41,44,91,101,91,48,93,44,49,48,48,42,110,44,49,48,48,42,105,93,125,44,108,46,97,112,112,108,101,46,114,103,98,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,91,101,91,48,93,47,54,53,53,51,53,42,50,53,53,44,101,91,49,93,47,54,53,53,51,53,42,50,53,53,44,101,91,50,93,47,54,53,53,51,53,42,50,53,53,93,125,44,108,46,114,103,98,46,97,112,112,108,101,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,91,101,91,48,93,47,50,53,53,42,54,53,53,51,53,44,101,91,49,93,47,50,53,53,42,54,53,53,51,53,44,101,91,50,93,47,50,53,53,42,54,53,53,51,53,93,125,44,108,46,103,114,97,121,46,114,103,98,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,91,101,91,48,93,47,49,48,48,42,50,53,53,44,101,91,48,93,47,49,48,48,42,50,53,53,44,101,91,48,93,47,49,48,48,42,50,53,53,93,125,44,108,46,103,114,97,121,46,104,115,108,61,108,46,103,114,97,121,46,104,115,118,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,91,48,44,48,44,101,91,48,93,93,125,44,108,46,103,114,97,121,46,104,119,98,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,91,48,44,49,48,48,44,101,91,48,93,93,125,44,108,46,103,114,97,121,46,99,109,121,107,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,91,48,44,48,44,48,44,101,91,48,93,93,125,44,108,46,103,114,97,121,46,108,97,98,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,91,101,91,48,93,44,48,44,48,93,125,44,108,46,103,114,97,121,46,104,101,120,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,50,53,53,38,77,97,116,104,46,114,111,117,110,100,40,101,91,48,93,47,49,48,48,42,50,53,53,41,44,111,61,40,116,60,60,49,54,41,43,40,116,60,60,56,41,43,116,44,114,61,111,46,116,111,83,116,114,105,110,103,40,49,54,41,46,116,111,85,112,112,101,114,67,97,115,101,40,41,59,114,101,116,117,114,110,34,48,48,48,48,48,48,34,46,115,117,98,115,116,114,105,110,103,40,114,46,108,101,110,103,116,104,41,43,114,125,44,108,46,114,103,98,46,103,114,97,121,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,91,40,101,91,48,93,43,101,91,49,93,43,101,91,50,93,41,47,51,47,50,53,53,42,49,48,48,93,125,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,111,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,102,117,110,99,116,105,111,110,32,114,40,101,41,123,114,101,116,117,114,110,32,101,38,38,101,46,95,95,101,115,77,111,100,117,108,101,63,101,58,123,100,101,102,97,117,108,116,58,101,125,125,118,97,114,32,110,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,83,121,109,98,111,108,38,38,34,115,121,109,98,111,108,34,61,61,116,121,112,101,111,102,32,83,121,109,98,111,108,46,105,116,101,114,97,116,111,114,63,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,121,112,101,111,102,32,101,125,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,38,38,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,83,121,109,98,111,108,38,38,101,46,99,111,110,115,116,114,117,99,116,111,114,61,61,61,83,121,109,98,111,108,38,38,101,33,61,61,83,121,109,98,111,108,46,112,114,111,116,111,116,121,112,101,63,34,115,121,109,98,111,108,34,58,116,121,112,101,111,102,32,101,125,44,105,61,111,40,56,41,44,97,61,114,40,105,41,44,108,61,111,40,48,41,44,115,61,114,40,108,41,44,99,61,34,99,111,108,111,114,112,105,99,107,101,114,34,59,115,46,100,101,102,97,117,108,116,91,99,93,61,97,46,100,101,102,97,117,108,116,44,115,46,100,101,102,97,117,108,116,46,102,110,91,99,93,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,115,108,105,99,101,46,99,97,108,108,40,97,114,103,117,109,101,110,116,115,44,49,41,44,111,61,49,61,61,61,116,104,105,115,46,108,101,110,103,116,104,44,114,61,110,117,108,108,44,105,61,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,105,61,40,48,44,115,46,100,101,102,97,117,108,116,41,40,116,104,105,115,41,44,108,61,105,46,100,97,116,97,40,99,41,44,117,61,34,111,98,106,101,99,116,34,61,61,61,40,118,111,105,100,32,48,61,61,61,101,63,34,117,110,100,101,102,105,110,101,100,34,58,110,40,101,41,41,63,101,58,123,125,59,108,124,124,40,108,61,110,101,119,32,97,46,100,101,102,97,117,108,116,40,116,104,105,115,44,117,41,44,105,46,100,97,116,97,40,99,44,108,41,41,44,111,38,38,40,114,61,105,44,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,101,38,38,40,114,61,34,99,111,108,111,114,112,105,99,107,101,114,34,61,61,61,101,63,108,58,115,46,100,101,102,97,117,108,116,46,105,115,70,117,110,99,116,105,111,110,40,108,91,101,93,41,63,108,91,101,93,46,97,112,112,108,121,40,108,44,116,41,58,108,91,101,93,41,41,125,41,59,114,101,116,117,114,110,32,111,63,114,58,105,125,44,115,46,100,101,102,97,117,108,116,46,102,110,91,99,93,46,99,111,110,115,116,114,117,99,116,111,114,61,97,46,100,101,102,97,117,108,116,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,111,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,102,117,110,99,116,105,111,110,32,114,40,101,41,123,114,101,116,117,114,110,32,101,38,38,101,46,95,95,101,115,77,111,100,117,108,101,63,101,58,123,100,101,102,97,117,108,116,58,101,125,125,102,117,110,99,116,105,111,110,32,110,40,101,44,116,41,123,105,102,40,33,40,101,32,105,110,115,116,97,110,99,101,111,102,32,116,41,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,67,97,110,110,111,116,32,99,97,108,108,32,97,32,99,108,97,115,115,32,97,115,32,97,32,102,117,110,99,116,105,111,110,34,41,125,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,44,34,95,95,101,115,77,111,100,117,108,101,34,44,123,118,97,108,117,101,58,33,48,125,41,59,118,97,114,32,105,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,101,40,101,44,116,41,123,102,111,114,40,118,97,114,32,111,61,48,59,111,60,116,46,108,101,110,103,116,104,59,111,43,43,41,123,118,97,114,32,114,61,116,91,111,93,59,114,46,101,110,117,109,101,114,97,98,108,101,61,114,46,101,110,117,109,101,114,97,98,108,101,124,124,33,49,44,114,46,99,111,110,102,105,103,117,114,97,98,108,101,61,33,48,44,34,118,97,108,117,101,34,105,110,32,114,38,38,40,114,46,119,114,105,116,97,98,108,101,61,33,48,41,44,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,101,44,114,46,107,101,121,44,114,41,125,125,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,44,111,44,114,41,123,114,101,116,117,114,110,32,111,38,38,101,40,116,46,112,114,111,116,111,116,121,112,101,44,111,41,44,114,38,38,101,40,116,44,114,41,44,116,125,125,40,41,44,97,61,111,40,49,41,44,108,61,114,40,97,41,44,115,61,111,40,51,41,44,99,61,114,40,115,41,44,117,61,111,40,57,41,44,104,61,114,40,117,41,44,112,61,111,40,48,41,44,102,61,114,40,112,41,44,100,61,111,40,49,51,41,44,118,61,114,40,100,41,44,107,61,111,40,49,52,41,44,103,61,114,40,107,41,44,121,61,111,40,49,53,41,44,98,61,114,40,121,41,44,109,61,111,40,50,50,41,44,119,61,114,40,109,41,44,120,61,111,40,50,51,41,44,95,61,114,40,120,41,44,67,61,111,40,50,52,41,44,77,61,114,40,67,41,44,79,61,111,40,50,41,44,106,61,114,40,79,41,44,72,61,48,44,80,61,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,115,101,108,102,63,115,101,108,102,58,118,111,105,100,32,48,44,69,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,101,40,116,44,111,41,123,110,40,116,104,105,115,44,101,41,44,72,43,61,49,44,116,104,105,115,46,105,100,61,72,44,116,104,105,115,46,108,97,115,116,69,118,101,110,116,61,123,97,108,105,97,115,58,110,117,108,108,44,101,58,110,117,108,108,125,44,116,104,105,115,46,101,108,101,109,101,110,116,61,40,48,44,102,46,100,101,102,97,117,108,116,41,40,116,41,46,97,100,100,67,108,97,115,115,40,34,99,111,108,111,114,112,105,99,107,101,114,45,101,108,101,109,101,110,116,34,41,46,97,116,116,114,40,34,100,97,116,97,45,99,111,108,111,114,112,105,99,107,101,114,45,105,100,34,44,116,104,105,115,46,105,100,41,44,116,104,105,115,46,111,112,116,105,111,110,115,61,102,46,100,101,102,97,117,108,116,46,101,120,116,101,110,100,40,33,48,44,123,125,44,99,46,100,101,102,97,117,108,116,44,111,44,116,104,105,115,46,101,108,101,109,101,110,116,46,100,97,116,97,40,41,41,44,116,104,105,115,46,100,105,115,97,98,108,101,100,61,33,49,44,116,104,105,115,46,101,120,116,101,110,115,105,111,110,115,61,91,93,44,116,104,105,115,46,99,111,110,116,97,105,110,101,114,61,33,48,61,61,61,116,104,105,115,46,111,112,116,105,111,110,115,46,99,111,110,116,97,105,110,101,114,124,124,33,48,33,61,61,116,104,105,115,46,111,112,116,105,111,110,115,46,99,111,110,116,97,105,110,101,114,38,38,33,48,61,61,61,116,104,105,115,46,111,112,116,105,111,110,115,46,105,110,108,105,110,101,63,116,104,105,115,46,101,108,101,109,101,110,116,58,116,104,105,115,46,111,112,116,105,111,110,115,46,99,111,110,116,97,105,110,101,114,44,116,104,105,115,46,99,111,110,116,97,105,110,101,114,61,33,49,33,61,61,116,104,105,115,46,99,111,110,116,97,105,110,101,114,38,38,40,48,44,102,46,100,101,102,97,117,108,116,41,40,116,104,105,115,46,99,111,110,116,97,105,110,101,114,41,44,116,104,105,115,46,105,110,112,117,116,72,97,110,100,108,101,114,61,110,101,119,32,98,46,100,101,102,97,117,108,116,40,116,104,105,115,41,44,116,104,105,115,46,99,111,108,111,114,72,97,110,100,108,101,114,61,110,101,119,32,119,46,100,101,102,97,117,108,116,40,116,104,105,115,41,44,116,104,105,115,46,115,108,105,100,101,114,72,97,110,100,108,101,114,61,110,101,119,32,118,46,100,101,102,97,117,108,116,40,116,104,105,115,41,44,116,104,105,115,46,112,111,112,117,112,72,97,110,100,108,101,114,61,110,101,119,32,103,46,100,101,102,97,117,108,116,40,116,104,105,115,44,80,41,44,116,104,105,115,46,112,105,99,107,101,114,72,97,110,100,108,101,114,61,110,101,119,32,95,46,100,101,102,97,117,108,116,40,116,104,105,115,41,44,116,104,105,115,46,97,100,100,111,110,72,97,110,100,108,101,114,61,110,101,119,32,77,46,100,101,102,97,117,108,116,40,116,104,105,115,41,44,116,104,105,115,46,105,110,105,116,40,41,44,40,48,44,102,46,100,101,102,97,117,108,116,41,40,102,46,100,101,102,97,117,108,116,46,112,114,111,120,121,40,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,116,114,105,103,103,101,114,40,34,99,111,108,111,114,112,105,99,107,101,114,67,114,101,97,116,101,34,41,125,44,116,104,105,115,41,41,125,114,101,116,117,114,110,32,105,40,101,44,91,123,107,101,121,58,34,99,111,108,111,114,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,99,111,108,111,114,72,97,110,100,108,101,114,46,99,111,108,111,114,125,125,44,123,107,101,121,58,34,102,111,114,109,97,116,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,99,111,108,111,114,72,97,110,100,108,101,114,46,102,111,114,109,97,116,125,125,44,123,107,101,121,58,34,112,105,99,107,101,114,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,112,105,99,107,101,114,72,97,110,100,108,101,114,46,112,105,99,107,101,114,125,125,93,44,91,123,107,101,121,58,34,67,111,108,111,114,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,106,46,100,101,102,97,117,108,116,125,125,44,123,107,101,121,58,34,69,120,116,101,110,115,105,111,110,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,108,46,100,101,102,97,117,108,116,125,125,93,41,44,105,40,101,44,91,123,107,101,121,58,34,105,110,105,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,97,100,100,111,110,72,97,110,100,108,101,114,46,98,105,110,100,40,41,44,116,104,105,115,46,105,110,112,117,116,72,97,110,100,108,101,114,46,98,105,110,100,40,41,44,116,104,105,115,46,105,110,105,116,69,120,116,101,110,115,105,111,110,115,40,41,44,116,104,105,115,46,99,111,108,111,114,72,97,110,100,108,101,114,46,98,105,110,100,40,41,44,116,104,105,115,46,112,105,99,107,101,114,72,97,110,100,108,101,114,46,98,105,110,100,40,41,44,116,104,105,115,46,115,108,105,100,101,114,72,97,110,100,108,101,114,46,98,105,110,100,40,41,44,116,104,105,115,46,112,111,112,117,112,72,97,110,100,108,101,114,46,98,105,110,100,40,41,44,116,104,105,115,46,112,105,99,107,101,114,72,97,110,100,108,101,114,46,97,116,116,97,99,104,40,41,44,116,104,105,115,46,117,112,100,97,116,101,40,41,44,116,104,105,115,46,105,110,112,117,116,72,97,110,100,108,101,114,46,105,115,68,105,115,97,98,108,101,100,40,41,38,38,116,104,105,115,46,100,105,115,97,98,108,101,40,41,125,125,44,123,107,101,121,58,34,105,110,105,116,69,120,116,101,110,115,105,111,110,115,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,59,65,114,114,97,121,46,105,115,65,114,114,97,121,40,116,104,105,115,46,111,112,116,105,111,110,115,46,101,120,116,101,110,115,105,111,110,115,41,124,124,40,116,104,105,115,46,111,112,116,105,111,110,115,46,101,120,116,101,110,115,105,111,110,115,61,91,93,41,44,116,104,105,115,46,111,112,116,105,111,110,115,46,100,101,98,117,103,38,38,116,104,105,115,46,111,112,116,105,111,110,115,46,101,120,116,101,110,115,105,111,110,115,46,112,117,115,104,40,123,110,97,109,101,58,34,100,101,98,117,103,103,101,114,34,125,41,44,116,104,105,115,46,111,112,116,105,111,110,115,46,101,120,116,101,110,115,105,111,110,115,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,111,41,123,116,46,114,101,103,105,115,116,101,114,69,120,116,101,110,115,105,111,110,40,101,46,101,120,116,101,110,115,105,111,110,115,91,111,46,110,97,109,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,93,44,111,46,111,112,116,105,111,110,115,124,124,123,125,41,125,41,125,125,44,123,107,101,121,58,34,114,101,103,105,115,116,101,114,69,120,116,101,110,115,105,111,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,62,49,38,38,118,111,105,100,32,48,33,61,61,97,114,103,117,109,101,110,116,115,91,49,93,63,97,114,103,117,109,101,110,116,115,91,49,93,58,123,125,44,111,61,110,101,119,32,101,40,116,104,105,115,44,116,41,59,114,101,116,117,114,110,32,116,104,105,115,46,101,120,116,101,110,115,105,111,110,115,46,112,117,115,104,40,111,41,44,111,125,125,44,123,107,101,121,58,34,100,101,115,116,114,111,121,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,99,111,108,111,114,59,116,104,105,115,46,115,108,105,100,101,114,72,97,110,100,108,101,114,46,117,110,98,105,110,100,40,41,44,116,104,105,115,46,105,110,112,117,116,72,97,110,100,108,101,114,46,117,110,98,105,110,100,40,41,44,116,104,105,115,46,112,111,112,117,112,72,97,110,100,108,101,114,46,117,110,98,105,110,100,40,41,44,116,104,105,115,46,99,111,108,111,114,72,97,110,100,108,101,114,46,117,110,98,105,110,100,40,41,44,116,104,105,115,46,97,100,100,111,110,72,97,110,100,108,101,114,46,117,110,98,105,110,100,40,41,44,116,104,105,115,46,112,105,99,107,101,114,72,97,110,100,108,101,114,46,117,110,98,105,110,100,40,41,44,116,104,105,115,46,101,108,101,109,101,110,116,46,114,101,109,111,118,101,67,108,97,115,115,40,34,99,111,108,111,114,112,105,99,107,101,114,45,101,108,101,109,101,110,116,34,41,46,114,101,109,111,118,101,68,97,116,97,40,34,99,111,108,111,114,112,105,99,107,101,114,34,44,34,99,111,108,111,114,34,41,46,111,102,102,40,34,46,99,111,108,111,114,112,105,99,107,101,114,34,41,44,116,104,105,115,46,116,114,105,103,103,101,114,40,34,99,111,108,111,114,112,105,99,107,101,114,68,101,115,116,114,111,121,34,44,101,41,125,125,44,123,107,101,121,58,34,115,104,111,119,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,112,111,112,117,112,72,97,110,100,108,101,114,46,115,104,111,119,40,101,41,125,125,44,123,107,101,121,58,34,104,105,100,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,112,111,112,117,112,72,97,110,100,108,101,114,46,104,105,100,101,40,101,41,125,125,44,123,107,101,121,58,34,116,111,103,103,108,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,112,111,112,117,112,72,97,110,100,108,101,114,46,116,111,103,103,108,101,40,101,41,125,125,44,123,107,101,121,58,34,103,101,116,86,97,108,117,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,62,48,38,38,118,111,105,100,32,48,33,61,61,97,114,103,117,109,101,110,116,115,91,48,93,63,97,114,103,117,109,101,110,116,115,91,48,93,58,110,117,108,108,44,116,61,116,104,105,115,46,99,111,108,111,114,72,97,110,100,108,101,114,46,99,111,108,111,114,59,114,101,116,117,114,110,32,116,61,116,32,105,110,115,116,97,110,99,101,111,102,32,106,46,100,101,102,97,117,108,116,63,116,58,101,44,116,32,105,110,115,116,97,110,99,101,111,102,32,106,46,100,101,102,97,117,108,116,63,116,46,115,116,114,105,110,103,40,116,104,105,115,46,102,111,114,109,97,116,41,58,116,125,125,44,123,107,101,121,58,34,115,101,116,86,97,108,117,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,105,102,40,33,116,104,105,115,46,105,115,68,105,115,97,98,108,101,100,40,41,41,123,118,97,114,32,116,61,116,104,105,115,46,99,111,108,111,114,72,97,110,100,108,101,114,59,116,46,104,97,115,67,111,108,111,114,40,41,38,38,101,38,38,116,46,99,111,108,111,114,46,101,113,117,97,108,115,40,101,41,124,124,33,116,46,104,97,115,67,111,108,111,114,40,41,38,38,33,101,124,124,40,116,46,99,111,108,111,114,61,101,63,116,46,99,114,101,97,116,101,67,111,108,111,114,40,101,44,116,104,105,115,46,111,112,116,105,111,110,115,46,97,117,116,111,73,110,112,117,116,70,97,108,108,98,97,99,107,41,58,110,117,108,108,44,116,104,105,115,46,116,114,105,103,103,101,114,40,34,99,111,108,111,114,112,105,99,107,101,114,67,104,97,110,103,101,34,44,116,46,99,111,108,111,114,44,101,41,44,116,104,105,115,46,117,112,100,97,116,101,40,41,41,125,125,125,44,123,107,101,121,58,34,117,112,100,97,116,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,99,111,108,111,114,72,97,110,100,108,101,114,46,104,97,115,67,111,108,111,114,40,41,63,116,104,105,115,46,105,110,112,117,116,72,97,110,100,108,101,114,46,117,112,100,97,116,101,40,41,58,116,104,105,115,46,99,111,108,111,114,72,97,110,100,108,101,114,46,97,115,115,117,114,101,67,111,108,111,114,40,41,44,116,104,105,115,46,97,100,100,111,110,72,97,110,100,108,101,114,46,117,112,100,97,116,101,40,41,44,116,104,105,115,46,112,105,99,107,101,114,72,97,110,100,108,101,114,46,117,112,100,97,116,101,40,41,44,116,104,105,115,46,116,114,105,103,103,101,114,40,34,99,111,108,111,114,112,105,99,107,101,114,85,112,100,97,116,101,34,41,125,125,44,123,107,101,121,58,34,101,110,97,98,108,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,110,112,117,116,72,97,110,100,108,101,114,46,101,110,97,98,108,101,40,41,44,116,104,105,115,46,100,105,115,97,98,108,101,100,61,33,49,44,116,104,105,115,46,112,105,99,107,101,114,46,114,101,109,111,118,101,67,108,97,115,115,40,34,99,111,108,111,114,112,105,99,107,101,114,45,100,105,115,97,98,108,101,100,34,41,44,116,104,105,115,46,116,114,105,103,103,101,114,40,34,99,111,108,111,114,112,105,99,107,101,114,69,110,97,98,108,101,34,41,44,33,48,125,125,44,123,107,101,121,58,34,100,105,115,97,98,108,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,110,112,117,116,72,97,110,100,108,101,114,46,100,105,115,97,98,108,101,40,41,44,116,104,105,115,46,100,105,115,97,98,108,101,100,61,33,48,44,116,104,105,115,46,112,105,99,107,101,114,46,97,100,100,67,108,97,115,115,40,34,99,111,108,111,114,112,105,99,107,101,114,45,100,105,115,97,98,108,101,100,34,41,44,116,104,105,115,46,116,114,105,103,103,101,114,40,34,99,111,108,111,114,112,105,99,107,101,114,68,105,115,97,98,108,101,34,41,44,33,48,125,125,44,123,107,101,121,58,34,105,115,69,110,97,98,108,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,33,116,104,105,115,46,105,115,68,105,115,97,98,108,101,100,40,41,125,125,44,123,107,101,121,58,34,105,115,68,105,115,97,98,108,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,33,48,61,61,61,116,104,105,115,46,100,105,115,97,98,108,101,100,125,125,44,123,107,101,121,58,34,116,114,105,103,103,101,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,62,49,38,38,118,111,105,100,32,48,33,61,61,97,114,103,117,109,101,110,116,115,91,49,93,63,97,114,103,117,109,101,110,116,115,91,49,93,58,110,117,108,108,44,111,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,62,50,38,38,118,111,105,100,32,48,33,61,61,97,114,103,117,109,101,110,116,115,91,50,93,63,97,114,103,117,109,101,110,116,115,91,50,93,58,110,117,108,108,59,116,104,105,115,46,101,108,101,109,101,110,116,46,116,114,105,103,103,101,114,40,123,116,121,112,101,58,101,44,99,111,108,111,114,112,105,99,107,101,114,58,116,104,105,115,44,99,111,108,111,114,58,116,124,124,116,104,105,115,46,99,111,108,111,114,44,118,97,108,117,101,58,111,124,124,116,104,105,115,46,103,101,116,86,97,108,117,101,40,41,125,41,125,125,93,41,44,101,125,40,41,59,69,46,101,120,116,101,110,115,105,111,110,115,61,104,46,100,101,102,97,117,108,116,44,116,46,100,101,102,97,117,108,116,61,69,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,111,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,102,117,110,99,116,105,111,110,32,114,40,101,41,123,114,101,116,117,114,110,32,101,38,38,101,46,95,95,101,115,77,111,100,117,108,101,63,101,58,123,100,101,102,97,117,108,116,58,101,125,125,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,44,34,95,95,101,115,77,111,100,117,108,101,34,44,123,118,97,108,117,101,58,33,48,125,41,44,116,46,80,97,108,101,116,116,101,61,116,46,83,119,97,116,99,104,101,115,61,116,46,80,114,101,118,105,101,119,61,116,46,68,101,98,117,103,103,101,114,61,118,111,105,100,32,48,59,118,97,114,32,110,61,111,40,49,48,41,44,105,61,114,40,110,41,44,97,61,111,40,49,49,41,44,108,61,114,40,97,41,44,115,61,111,40,49,50,41,44,99,61,114,40,115,41,44,117,61,111,40,52,41,44,104,61,114,40,117,41,59,116,46,68,101,98,117,103,103,101,114,61,105,46,100,101,102,97,117,108,116,44,116,46,80,114,101,118,105,101,119,61,108,46,100,101,102,97,117,108,116,44,116,46,83,119,97,116,99,104,101,115,61,99,46,100,101,102,97,117,108,116,44,116,46,80,97,108,101,116,116,101,61,104,46,100,101,102,97,117,108,116,44,116,46,100,101,102,97,117,108,116,61,123,100,101,98,117,103,103,101,114,58,105,46,100,101,102,97,117,108,116,44,112,114,101,118,105,101,119,58,108,46,100,101,102,97,117,108,116,44,115,119,97,116,99,104,101,115,58,99,46,100,101,102,97,117,108,116,44,112,97,108,101,116,116,101,58,104,46,100,101,102,97,117,108,116,125,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,111,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,102,117,110,99,116,105,111,110,32,114,40,101,41,123,114,101,116,117,114,110,32,101,38,38,101,46,95,95,101,115,77,111,100,117,108,101,63,101,58,123,100,101,102,97,117,108,116,58,101,125,125,102,117,110,99,116,105,111,110,32,110,40,101,44,116,41,123,105,102,40,33,40,101,32,105,110,115,116,97,110,99,101,111,102,32,116,41,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,67,97,110,110,111,116,32,99,97,108,108,32,97,32,99,108,97,115,115,32,97,115,32,97,32,102,117,110,99,116,105,111,110,34,41,125,102,117,110,99,116,105,111,110,32,105,40,101,44,116,41,123,105,102,40,33,101,41,116,104,114,111,119,32,110,101,119,32,82,101,102,101,114,101,110,99,101,69,114,114,111,114,40,34,116,104,105,115,32,104,97,115,110,39,116,32,98,101,101,110,32,105,110,105,116,105,97,108,105,115,101,100,32,45,32,115,117,112,101,114,40,41,32,104,97,115,110,39,116,32,98,101,101,110,32,99,97,108,108,101,100,34,41,59,114,101,116,117,114,110,33,116,124,124,34,111,98,106,101,99,116,34,33,61,116,121,112,101,111,102,32,116,38,38,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,116,63,101,58,116,125,102,117,110,99,116,105,111,110,32,97,40,101,44,116,41,123,105,102,40,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,116,38,38,110,117,108,108,33,61,61,116,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,83,117,112,101,114,32,101,120,112,114,101,115,115,105,111,110,32,109,117,115,116,32,101,105,116,104,101,114,32,98,101,32,110,117,108,108,32,111,114,32,97,32,102,117,110,99,116,105,111,110,44,32,110,111,116,32,34,43,116,121,112,101,111,102,32,116,41,59,101,46,112,114,111,116,111,116,121,112,101,61,79,98,106,101,99,116,46,99,114,101,97,116,101,40,116,38,38,116,46,112,114,111,116,111,116,121,112,101,44,123,99,111,110,115,116,114,117,99,116,111,114,58,123,118,97,108,117,101,58,101,44,101,110,117,109,101,114,97,98,108,101,58,33,49,44,119,114,105,116,97,98,108,101,58,33,48,44,99,111,110,102,105,103,117,114,97,98,108,101,58,33,48,125,125,41,44,116,38,38,40,79,98,106,101,99,116,46,115,101,116,80,114,111,116,111,116,121,112,101,79,102,63,79,98,106,101,99,116,46,115,101,116,80,114,111,116,111,116,121,112,101,79,102,40,101,44,116,41,58,101,46,95,95,112,114,111,116,111,95,95,61,116,41,125,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,44,34,95,95,101,115,77,111,100,117,108,101,34,44,123,118,97,108,117,101,58,33,48,125,41,59,118,97,114,32,108,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,101,40,101,44,116,41,123,102,111,114,40,118,97,114,32,111,61,48,59,111,60,116,46,108,101,110,103,116,104,59,111,43,43,41,123,118,97,114,32,114,61,116,91,111,93,59,114,46,101,110,117,109,101,114,97,98,108,101,61,114,46,101,110,117,109,101,114,97,98,108,101,124,124,33,49,44,114,46,99,111,110,102,105,103,117,114,97,98,108,101,61,33,48,44,34,118,97,108,117,101,34,105,110,32,114,38,38,40,114,46,119,114,105,116,97,98,108,101,61,33,48,41,44,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,101,44,114,46,107,101,121,44,114,41,125,125,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,44,111,44,114,41,123,114,101,116,117,114,110,32,111,38,38,101,40,116,46,112,114,111,116,111,116,121,112,101,44,111,41,44,114,38,38,101,40,116,44,114,41,44,116,125,125,40,41,44,115,61,102,117,110,99,116,105,111,110,32,101,40,116,44,111,44,114,41,123,110,117,108,108,61,61,61,116,38,38,40,116,61,70,117,110,99,116,105,111,110,46,112,114,111,116,111,116,121,112,101,41,59,118,97,114,32,110,61,79,98,106,101,99,116,46,103,101,116,79,119,110,80,114,111,112,101,114,116,121,68,101,115,99,114,105,112,116,111,114,40,116,44,111,41,59,105,102,40,118,111,105,100,32,48,61,61,61,110,41,123,118,97,114,32,105,61,79,98,106,101,99,116,46,103,101,116,80,114,111,116,111,116,121,112,101,79,102,40,116,41,59,114,101,116,117,114,110,32,110,117,108,108,61,61,61,105,63,118,111,105,100,32,48,58,101,40,105,44,111,44,114,41,125,105,102,40,34,118,97,108,117,101,34,105,110,32,110,41,114,101,116,117,114,110,32,110,46,118,97,108,117,101,59,118,97,114,32,97,61,110,46,103,101,116,59,105,102,40,118,111,105,100,32,48,33,61,61,97,41,114,101,116,117,114,110,32,97,46,99,97,108,108,40,114,41,125,44,99,61,111,40,49,41,44,117,61,114,40,99,41,44,104,61,111,40,48,41,44,112,61,114,40,104,41,44,102,61,102,117,110,99,116,105,111,110,40,101,41,123,102,117,110,99,116,105,111,110,32,116,40,101,41,123,118,97,114,32,111,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,62,49,38,38,118,111,105,100,32,48,33,61,61,97,114,103,117,109,101,110,116,115,91,49,93,63,97,114,103,117,109,101,110,116,115,91,49,93,58,123,125,59,110,40,116,104,105,115,44,116,41,59,118,97,114,32,114,61,105,40,116,104,105,115,44,40,116,46,95,95,112,114,111,116,111,95,95,124,124,79,98,106,101,99,116,46,103,101,116,80,114,111,116,111,116,121,112,101,79,102,40,116,41,41,46,99,97,108,108,40,116,104,105,115,44,101,44,111,41,41,59,114,101,116,117,114,110,32,114,46,101,118,101,110,116,67,111,117,110,116,101,114,61,48,44,114,46,99,111,108,111,114,112,105,99,107,101,114,46,105,110,112,117,116,72,97,110,100,108,101,114,46,104,97,115,73,110,112,117,116,40,41,38,38,114,46,99,111,108,111,114,112,105,99,107,101,114,46,105,110,112,117,116,72,97,110,100,108,101,114,46,105,110,112,117,116,46,111,110,40,34,99,104,97,110,103,101,46,99,111,108,111,114,112,105,99,107,101,114,45,101,120,116,34,44,112,46,100,101,102,97,117,108,116,46,112,114,111,120,121,40,114,46,111,110,67,104,97,110,103,101,73,110,112,117,116,44,114,41,41,44,114,125,114,101,116,117,114,110,32,97,40,116,44,101,41,44,108,40,116,44,91,123,107,101,121,58,34,108,111,103,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,102,111,114,40,118,97,114,32,116,44,111,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,44,114,61,65,114,114,97,121,40,111,62,49,63,111,45,49,58,48,41,44,110,61,49,59,110,60,111,59,110,43,43,41,114,91,110,45,49,93,61,97,114,103,117,109,101,110,116,115,91,110,93,59,116,104,105,115,46,101,118,101,110,116,67,111,117,110,116,101,114,43,61,49,59,118,97,114,32,105,61,34,35,34,43,116,104,105,115,46,101,118,101,110,116,67,111,117,110,116,101,114,43,34,58,32,67,111,108,111,114,112,105,99,107,101,114,35,34,43,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,105,100,43,34,32,91,34,43,101,43,34,93,34,59,40,116,61,99,111,110,115,111,108,101,41,46,100,101,98,117,103,46,97,112,112,108,121,40,116,44,91,105,93,46,99,111,110,99,97,116,40,114,41,41,44,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,101,108,101,109,101,110,116,46,116,114,105,103,103,101,114,40,123,116,121,112,101,58,34,99,111,108,111,114,112,105,99,107,101,114,68,101,98,117,103,34,44,99,111,108,111,114,112,105,99,107,101,114,58,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,44,99,111,108,111,114,58,116,104,105,115,46,99,111,108,111,114,44,118,97,108,117,101,58,110,117,108,108,44,100,101,98,117,103,58,123,100,101,98,117,103,103,101,114,58,116,104,105,115,44,101,118,101,110,116,78,97,109,101,58,101,44,108,111,103,65,114,103,115,58,114,44,108,111,103,77,101,115,115,97,103,101,58,105,125,125,41,125,125,44,123,107,101,121,58,34,114,101,115,111,108,118,101,67,111,108,111,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,33,40,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,62,49,38,38,118,111,105,100,32,48,33,61,61,97,114,103,117,109,101,110,116,115,91,49,93,41,124,124,97,114,103,117,109,101,110,116,115,91,49,93,59,114,101,116,117,114,110,32,116,104,105,115,46,108,111,103,40,34,114,101,115,111,108,118,101,67,111,108,111,114,40,41,34,44,101,44,116,41,44,33,49,125,125,44,123,107,101,121,58,34,111,110,67,114,101,97,116,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,108,111,103,40,34,99,111,108,111,114,112,105,99,107,101,114,67,114,101,97,116,101,34,41,44,115,40,116,46,112,114,111,116,111,116,121,112,101,46,95,95,112,114,111,116,111,95,95,124,124,79,98,106,101,99,116,46,103,101,116,80,114,111,116,111,116,121,112,101,79,102,40,116,46,112,114,111,116,111,116,121,112,101,41,44,34,111,110,67,114,101,97,116,101,34,44,116,104,105,115,41,46,99,97,108,108,40,116,104,105,115,44,101,41,125,125,44,123,107,101,121,58,34,111,110,68,101,115,116,114,111,121,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,108,111,103,40,34,99,111,108,111,114,112,105,99,107,101,114,68,101,115,116,114,111,121,34,41,44,116,104,105,115,46,101,118,101,110,116,67,111,117,110,116,101,114,61,48,44,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,105,110,112,117,116,72,97,110,100,108,101,114,46,104,97,115,73,110,112,117,116,40,41,38,38,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,105,110,112,117,116,72,97,110,100,108,101,114,46,105,110,112,117,116,46,111,102,102,40,34,46,99,111,108,111,114,112,105,99,107,101,114,45,101,120,116,34,41,44,115,40,116,46,112,114,111,116,111,116,121,112,101,46,95,95,112,114,111,116,111,95,95,124,124,79,98,106,101,99,116,46,103,101,116,80,114,111,116,111,116,121,112,101,79,102,40,116,46,112,114,111,116,111,116,121,112,101,41,44,34,111,110,68,101,115,116,114,111,121,34,44,116,104,105,115,41,46,99,97,108,108,40,116,104,105,115,44,101,41,125,125,44,123,107,101,121,58,34,111,110,85,112,100,97,116,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,108,111,103,40,34,99,111,108,111,114,112,105,99,107,101,114,85,112,100,97,116,101,34,41,125,125,44,123,107,101,121,58,34,111,110,67,104,97,110,103,101,73,110,112,117,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,108,111,103,40,34,105,110,112,117,116,58,99,104,97,110,103,101,46,99,111,108,111,114,112,105,99,107,101,114,34,44,101,46,118,97,108,117,101,44,101,46,99,111,108,111,114,41,125,125,44,123,107,101,121,58,34,111,110,67,104,97,110,103,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,108,111,103,40,34,99,111,108,111,114,112,105,99,107,101,114,67,104,97,110,103,101,34,44,101,46,118,97,108,117,101,44,101,46,99,111,108,111,114,41,125,125,44,123,107,101,121,58,34,111,110,73,110,118,97,108,105,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,108,111,103,40,34,99,111,108,111,114,112,105,99,107,101,114,73,110,118,97,108,105,100,34,44,101,46,118,97,108,117,101,44,101,46,99,111,108,111,114,41,125,125,44,123,107,101,121,58,34,111,110,72,105,100,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,108,111,103,40,34,99,111,108,111,114,112,105,99,107,101,114,72,105,100,101,34,41,44,116,104,105,115,46,101,118,101,110,116,67,111,117,110,116,101,114,61,48,125,125,44,123,107,101,121,58,34,111,110,83,104,111,119,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,108,111,103,40,34,99,111,108,111,114,112,105,99,107,101,114,83,104,111,119,34,41,125,125,44,123,107,101,121,58,34,111,110,68,105,115,97,98,108,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,108,111,103,40,34,99,111,108,111,114,112,105,99,107,101,114,68,105,115,97,98,108,101,34,41,125,125,44,123,107,101,121,58,34,111,110,69,110,97,98,108,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,108,111,103,40,34,99,111,108,111,114,112,105,99,107,101,114,69,110,97,98,108,101,34,41,125,125,93,41,44,116,125,40,117,46,100,101,102,97,117,108,116,41,59,116,46,100,101,102,97,117,108,116,61,102,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,111,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,102,117,110,99,116,105,111,110,32,114,40,101,41,123,114,101,116,117,114,110,32,101,38,38,101,46,95,95,101,115,77,111,100,117,108,101,63,101,58,123,100,101,102,97,117,108,116,58,101,125,125,102,117,110,99,116,105,111,110,32,110,40,101,44,116,41,123,105,102,40,33,40,101,32,105,110,115,116,97,110,99,101,111,102,32,116,41,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,67,97,110,110,111,116,32,99,97,108,108,32,97,32,99,108,97,115,115,32,97,115,32,97,32,102,117,110,99,116,105,111,110,34,41,125,102,117,110,99,116,105,111,110,32,105,40,101,44,116,41,123,105,102,40,33,101,41,116,104,114,111,119,32,110,101,119,32,82,101,102,101,114,101,110,99,101,69,114,114,111,114,40,34,116,104,105,115,32,104,97,115,110,39,116,32,98,101,101,110,32,105,110,105,116,105,97,108,105,115,101,100,32,45,32,115,117,112,101,114,40,41,32,104,97,115,110,39,116,32,98,101,101,110,32,99,97,108,108,101,100,34,41,59,114,101,116,117,114,110,33,116,124,124,34,111,98,106,101,99,116,34,33,61,116,121,112,101,111,102,32,116,38,38,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,116,63,101,58,116,125,102,117,110,99,116,105,111,110,32,97,40,101,44,116,41,123,105,102,40,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,116,38,38,110,117,108,108,33,61,61,116,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,83,117,112,101,114,32,101,120,112,114,101,115,115,105,111,110,32,109,117,115,116,32,101,105,116,104,101,114,32,98,101,32,110,117,108,108,32,111,114,32,97,32,102,117,110,99,116,105,111,110,44,32,110,111,116,32,34,43,116,121,112,101,111,102,32,116,41,59,101,46,112,114,111,116,111,116,121,112,101,61,79,98,106,101,99,116,46,99,114,101,97,116,101,40,116,38,38,116,46,112,114,111,116,111,116,121,112,101,44,123,99,111,110,115,116,114,117,99,116,111,114,58,123,118,97,108,117,101,58,101,44,101,110,117,109,101,114,97,98,108,101,58,33,49,44,119,114,105,116,97,98,108,101,58,33,48,44,99,111,110,102,105,103,117,114,97,98,108,101,58,33,48,125,125,41,44,116,38,38,40,79,98,106,101,99,116,46,115,101,116,80,114,111,116,111,116,121,112,101,79,102,63,79,98,106,101,99,116,46,115,101,116,80,114,111,116,111,116,121,112,101,79,102,40,101,44,116,41,58,101,46,95,95,112,114,111,116,111,95,95,61,116,41,125,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,44,34,95,95,101,115,77,111,100,117,108,101,34,44,123,118,97,108,117,101,58,33,48,125,41,59,118,97,114,32,108,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,101,40,101,44,116,41,123,102,111,114,40,118,97,114,32,111,61,48,59,111,60,116,46,108,101,110,103,116,104,59,111,43,43,41,123,118,97,114,32,114,61,116,91,111,93,59,114,46,101,110,117,109,101,114,97,98,108,101,61,114,46,101,110,117,109,101,114,97,98,108,101,124,124,33,49,44,114,46,99,111,110,102,105,103,117,114,97,98,108,101,61,33,48,44,34,118,97,108,117,101,34,105,110,32,114,38,38,40,114,46,119,114,105,116,97,98,108,101,61,33,48,41,44,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,101,44,114,46,107,101,121,44,114,41,125,125,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,44,111,44,114,41,123,114,101,116,117,114,110,32,111,38,38,101,40,116,46,112,114,111,116,111,116,121,112,101,44,111,41,44,114,38,38,101,40,116,44,114,41,44,116,125,125,40,41,44,115,61,102,117,110,99,116,105,111,110,32,101,40,116,44,111,44,114,41,123,110,117,108,108,61,61,61,116,38,38,40,116,61,70,117,110,99,116,105,111,110,46,112,114,111,116,111,116,121,112,101,41,59,118,97,114,32,110,61,79,98,106,101,99,116,46,103,101,116,79,119,110,80,114,111,112,101,114,116,121,68,101,115,99,114,105,112,116,111,114,40,116,44,111,41,59,105,102,40,118,111,105,100,32,48,61,61,61,110,41,123,118,97,114,32,105,61,79,98,106,101,99,116,46,103,101,116,80,114,111,116,111,116,121,112,101,79,102,40,116,41,59,114,101,116,117,114,110,32,110,117,108,108,61,61,61,105,63,118,111,105,100,32,48,58,101,40,105,44,111,44,114,41,125,105,102,40,34,118,97,108,117,101,34,105,110,32,110,41,114,101,116,117,114,110,32,110,46,118,97,108,117,101,59,118,97,114,32,97,61,110,46,103,101,116,59,105,102,40,118,111,105,100,32,48,33,61,61,97,41,114,101,116,117,114,110,32,97,46,99,97,108,108,40,114,41,125,44,99,61,111,40,49,41,44,117,61,114,40,99,41,44,104,61,111,40,48,41,44,112,61,114,40,104,41,44,102,61,102,117,110,99,116,105,111,110,40,101,41,123,102,117,110,99,116,105,111,110,32,116,40,101,41,123,118,97,114,32,111,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,62,49,38,38,118,111,105,100,32,48,33,61,61,97,114,103,117,109,101,110,116,115,91,49,93,63,97,114,103,117,109,101,110,116,115,91,49,93,58,123,125,59,110,40,116,104,105,115,44,116,41,59,118,97,114,32,114,61,105,40,116,104,105,115,44,40,116,46,95,95,112,114,111,116,111,95,95,124,124,79,98,106,101,99,116,46,103,101,116,80,114,111,116,111,116,121,112,101,79,102,40,116,41,41,46,99,97,108,108,40,116,104,105,115,44,101,44,112,46,100,101,102,97,117,108,116,46,101,120,116,101,110,100,40,33,48,44,123,125,44,123,116,101,109,112,108,97,116,101,58,39,60,100,105,118,32,99,108,97,115,115,61,34,99,111,108,111,114,112,105,99,107,101,114,45,98,97,114,32,99,111,108,111,114,112,105,99,107,101,114,45,112,114,101,118,105,101,119,34,62,60,100,105,118,32,47,62,60,47,100,105,118,62,39,44,115,104,111,119,84,101,120,116,58,33,48,44,102,111,114,109,97,116,58,101,46,102,111,114,109,97,116,125,44,111,41,41,41,59,114,101,116,117,114,110,32,114,46,101,108,101,109,101,110,116,61,40,48,44,112,46,100,101,102,97,117,108,116,41,40,114,46,111,112,116,105,111,110,115,46,116,101,109,112,108,97,116,101,41,44,114,46,101,108,101,109,101,110,116,73,110,110,101,114,61,114,46,101,108,101,109,101,110,116,46,102,105,110,100,40,34,100,105,118,34,41,44,114,125,114,101,116,117,114,110,32,97,40,116,44,101,41,44,108,40,116,44,91,123,107,101,121,58,34,111,110,67,114,101,97,116,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,115,40,116,46,112,114,111,116,111,116,121,112,101,46,95,95,112,114,111,116,111,95,95,124,124,79,98,106,101,99,116,46,103,101,116,80,114,111,116,111,116,121,112,101,79,102,40,116,46,112,114,111,116,111,116,121,112,101,41,44,34,111,110,67,114,101,97,116,101,34,44,116,104,105,115,41,46,99,97,108,108,40,116,104,105,115,44,101,41,44,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,112,105,99,107,101,114,46,97,112,112,101,110,100,40,116,104,105,115,46,101,108,101,109,101,110,116,41,125,125,44,123,107,101,121,58,34,111,110,85,112,100,97,116,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,105,102,40,115,40,116,46,112,114,111,116,111,116,121,112,101,46,95,95,112,114,111,116,111,95,95,124,124,79,98,106,101,99,116,46,103,101,116,80,114,111,116,111,116,121,112,101,79,102,40,116,46,112,114,111,116,111,116,121,112,101,41,44,34,111,110,85,112,100,97,116,101,34,44,116,104,105,115,41,46,99,97,108,108,40,116,104,105,115,44,101,41,44,33,101,46,99,111,108,111,114,41,114,101,116,117,114,110,32,118,111,105,100,32,116,104,105,115,46,101,108,101,109,101,110,116,73,110,110,101,114,46,99,115,115,40,34,98,97,99,107,103,114,111,117,110,100,67,111,108,111,114,34,44,110,117,108,108,41,46,99,115,115,40,34,99,111,108,111,114,34,44,110,117,108,108,41,46,104,116,109,108,40,34,34,41,59,116,104,105,115,46,101,108,101,109,101,110,116,73,110,110,101,114,46,99,115,115,40,34,98,97,99,107,103,114,111,117,110,100,67,111,108,111,114,34,44,101,46,99,111,108,111,114,46,116,111,82,103,98,83,116,114,105,110,103,40,41,41,44,116,104,105,115,46,111,112,116,105,111,110,115,46,115,104,111,119,84,101,120,116,38,38,40,116,104,105,115,46,101,108,101,109,101,110,116,73,110,110,101,114,46,104,116,109,108,40,101,46,99,111,108,111,114,46,115,116,114,105,110,103,40,116,104,105,115,46,111,112,116,105,111,110,115,46,102,111,114,109,97,116,124,124,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,102,111,114,109,97,116,41,41,44,101,46,99,111,108,111,114,46,105,115,68,97,114,107,40,41,38,38,101,46,99,111,108,111,114,46,97,108,112,104,97,62,46,53,63,116,104,105,115,46,101,108,101,109,101,110,116,73,110,110,101,114,46,99,115,115,40,34,99,111,108,111,114,34,44,34,119,104,105,116,101,34,41,58,116,104,105,115,46,101,108,101,109,101,110,116,73,110,110,101,114,46,99,115,115,40,34,99,111,108,111,114,34,44,34,98,108,97,99,107,34,41,41,125,125,93,41,44,116,125,40,117,46,100,101,102,97,117,108,116,41,59,116,46,100,101,102,97,117,108,116,61,102,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,111,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,102,117,110,99,116,105,111,110,32,114,40,101,41,123,114,101,116,117,114,110,32,101,38,38,101,46,95,95,101,115,77,111,100,117,108,101,63,101,58,123,100,101,102,97,117,108,116,58,101,125,125,102,117,110,99,116,105,111,110,32,110,40,101,44,116,41,123,105,102,40,33,40,101,32,105,110,115,116,97,110,99,101,111,102,32,116,41,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,67,97,110,110,111,116,32,99,97,108,108,32,97,32,99,108,97,115,115,32,97,115,32,97,32,102,117,110,99,116,105,111,110,34,41,125,102,117,110,99,116,105,111,110,32,105,40,101,44,116,41,123,105,102,40,33,101,41,116,104,114,111,119,32,110,101,119,32,82,101,102,101,114,101,110,99,101,69,114,114,111,114,40,34,116,104,105,115,32,104,97,115,110,39,116,32,98,101,101,110,32,105,110,105,116,105,97,108,105,115,101,100,32,45,32,115,117,112,101,114,40,41,32,104,97,115,110,39,116,32,98,101,101,110,32,99,97,108,108,101,100,34,41,59,114,101,116,117,114,110,33,116,124,124,34,111,98,106,101,99,116,34,33,61,116,121,112,101,111,102,32,116,38,38,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,116,63,101,58,116,125,102,117,110,99,116,105,111,110,32,97,40,101,44,116,41,123,105,102,40,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,116,38,38,110,117,108,108,33,61,61,116,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,83,117,112,101,114,32,101,120,112,114,101,115,115,105,111,110,32,109,117,115,116,32,101,105,116,104,101,114,32,98,101,32,110,117,108,108,32,111,114,32,97,32,102,117,110,99,116,105,111,110,44,32,110,111,116,32,34,43,116,121,112,101,111,102,32,116,41,59,101,46,112,114,111,116,111,116,121,112,101,61,79,98,106,101,99,116,46,99,114,101,97,116,101,40,116,38,38,116,46,112,114,111,116,111,116,121,112,101,44,123,99,111,110,115,116,114,117,99,116,111,114,58,123,118,97,108,117,101,58,101,44,101,110,117,109,101,114,97,98,108,101,58,33,49,44,119,114,105,116,97,98,108,101,58,33,48,44,99,111,110,102,105,103,117,114,97,98,108,101,58,33,48,125,125,41,44,116,38,38,40,79,98,106,101,99,116,46,115,101,116,80,114,111,116,111,116,121,112,101,79,102,63,79,98,106,101,99,116,46,115,101,116,80,114,111,116,111,116,121,112,101,79,102,40,101,44,116,41,58,101,46,95,95,112,114,111,116,111,95,95,61,116,41,125,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,44,34,95,95,101,115,77,111,100,117,108,101,34,44,123,118,97,108,117,101,58,33,48,125,41,59,118,97,114,32,108,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,101,40,101,44,116,41,123,102,111,114,40,118,97,114,32,111,61,48,59,111,60,116,46,108,101,110,103,116,104,59,111,43,43,41,123,118,97,114,32,114,61,116,91,111,93,59,114,46,101,110,117,109,101,114,97,98,108,101,61,114,46,101,110,117,109,101,114,97,98,108,101,124,124,33,49,44,114,46,99,111,110,102,105,103,117,114,97,98,108,101,61,33,48,44,34,118,97,108,117,101,34,105,110,32,114,38,38,40,114,46,119,114,105,116,97,98,108,101,61,33,48,41,44,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,101,44,114,46,107,101,121,44,114,41,125,125,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,44,111,44,114,41,123,114,101,116,117,114,110,32,111,38,38,101,40,116,46,112,114,111,116,111,116,121,112,101,44,111,41,44,114,38,38,101,40,116,44,114,41,44,116,125,125,40,41,44,115,61,102,117,110,99,116,105,111,110,32,101,40,116,44,111,44,114,41,123,110,117,108,108,61,61,61,116,38,38,40,116,61,70,117,110,99,116,105,111,110,46,112,114,111,116,111,116,121,112,101,41,59,118,97,114,32,110,61,79,98,106,101,99,116,46,103,101,116,79,119,110,80,114,111,112,101,114,116,121,68,101,115,99,114,105,112,116,111,114,40,116,44,111,41,59,105,102,40,118,111,105,100,32,48,61,61,61,110,41,123,118,97,114,32,105,61,79,98,106,101,99,116,46,103,101,116,80,114,111,116,111,116,121,112,101,79,102,40,116,41,59,114,101,116,117,114,110,32,110,117,108,108,61,61,61,105,63,118,111,105,100,32,48,58,101,40,105,44,111,44,114,41,125,105,102,40,34,118,97,108,117,101,34,105,110,32,110,41,114,101,116,117,114,110,32,110,46,118,97,108,117,101,59,118,97,114,32,97,61,110,46,103,101,116,59,105,102,40,118,111,105,100,32,48,33,61,61,97,41,114,101,116,117,114,110,32,97,46,99,97,108,108,40,114,41,125,44,99,61,111,40,52,41,44,117,61,114,40,99,41,44,104,61,111,40,48,41,44,112,61,114,40,104,41,44,102,61,123,98,97,114,84,101,109,112,108,97,116,101,58,39,60,100,105,118,32,99,108,97,115,115,61,34,99,111,108,111,114,112,105,99,107,101,114,45,98,97,114,32,99,111,108,111,114,112,105,99,107,101,114,45,115,119,97,116,99,104,101,115,34,62,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,99,111,108,111,114,112,105,99,107,101,114,45,115,119,97,116,99,104,101,115,45,45,105,110,110,101,114,34,62,60,47,100,105,118,62,92,110,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,100,105,118,62,39,44,115,119,97,116,99,104,84,101,109,112,108,97,116,101,58,39,60,105,32,99,108,97,115,115,61,34,99,111,108,111,114,112,105,99,107,101,114,45,115,119,97,116,99,104,34,62,60,105,32,99,108,97,115,115,61,34,99,111,108,111,114,112,105,99,107,101,114,45,115,119,97,116,99,104,45,45,105,110,110,101,114,34,62,60,47,105,62,60,47,105,62,39,125,44,100,61,102,117,110,99,116,105,111,110,40,101,41,123,102,117,110,99,116,105,111,110,32,116,40,101,41,123,118,97,114,32,111,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,62,49,38,38,118,111,105,100,32,48,33,61,61,97,114,103,117,109,101,110,116,115,91,49,93,63,97,114,103,117,109,101,110,116,115,91,49,93,58,123,125,59,110,40,116,104,105,115,44,116,41,59,118,97,114,32,114,61,105,40,116,104,105,115,44,40,116,46,95,95,112,114,111,116,111,95,95,124,124,79,98,106,101,99,116,46,103,101,116,80,114,111,116,111,116,121,112,101,79,102,40,116,41,41,46,99,97,108,108,40,116,104,105,115,44,101,44,112,46,100,101,102,97,117,108,116,46,101,120,116,101,110,100,40,33,48,44,123,125,44,102,44,111,41,41,41,59,114,101,116,117,114,110,32,114,46,101,108,101,109,101,110,116,61,110,117,108,108,44,114,125,114,101,116,117,114,110,32,97,40,116,44,101,41,44,108,40,116,44,91,123,107,101,121,58,34,105,115,69,110,97,98,108,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,103,101,116,76,101,110,103,116,104,40,41,62,48,125,125,44,123,107,101,121,58,34,111,110,67,114,101,97,116,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,115,40,116,46,112,114,111,116,111,116,121,112,101,46,95,95,112,114,111,116,111,95,95,124,124,79,98,106,101,99,116,46,103,101,116,80,114,111,116,111,116,121,112,101,79,102,40,116,46,112,114,111,116,111,116,121,112,101,41,44,34,111,110,67,114,101,97,116,101,34,44,116,104,105,115,41,46,99,97,108,108,40,116,104,105,115,44,101,41,44,116,104,105,115,46,105,115,69,110,97,98,108,101,100,40,41,38,38,40,116,104,105,115,46,101,108,101,109,101,110,116,61,40,48,44,112,46,100,101,102,97,117,108,116,41,40,116,104,105,115,46,111,112,116,105,111,110,115,46,98,97,114,84,101,109,112,108,97,116,101,41,44,116,104,105,115,46,108,111,97,100,40,41,44,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,112,105,99,107,101,114,46,97,112,112,101,110,100,40,116,104,105,115,46,101,108,101,109,101,110,116,41,41,125,125,44,123,107,101,121,58,34,108,111,97,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,44,116,61,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,44,111,61,116,104,105,115,46,101,108,101,109,101,110,116,46,102,105,110,100,40,34,46,99,111,108,111,114,112,105,99,107,101,114,45,115,119,97,116,99,104,101,115,45,45,105,110,110,101,114,34,41,44,114,61,33,48,61,61,61,116,104,105,115,46,111,112,116,105,111,110,115,46,110,97,109,101,115,65,115,86,97,108,117,101,115,38,38,33,65,114,114,97,121,46,105,115,65,114,114,97,121,40,116,104,105,115,46,99,111,108,111,114,115,41,59,111,46,101,109,112,116,121,40,41,44,112,46,100,101,102,97,117,108,116,46,101,97,99,104,40,116,104,105,115,46,99,111,108,111,114,115,44,102,117,110,99,116,105,111,110,40,110,44,105,41,123,118,97,114,32,97,61,40,48,44,112,46,100,101,102,97,117,108,116,41,40,101,46,111,112,116,105,111,110,115,46,115,119,97,116,99,104,84,101,109,112,108,97,116,101,41,46,97,116,116,114,40,34,100,97,116,97,45,110,97,109,101,34,44,110,41,46,97,116,116,114,40,34,100,97,116,97,45,118,97,108,117,101,34,44,105,41,46,97,116,116,114,40,34,116,105,116,108,101,34,44,114,63,110,43,34,58,32,34,43,105,58,105,41,46,111,110,40,34,109,111,117,115,101,100,111,119,110,46,99,111,108,111,114,112,105,99,107,101,114,32,116,111,117,99,104,115,116,97,114,116,46,99,111,108,111,114,112,105,99,107,101,114,34,44,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,111,61,40,48,44,112,46,100,101,102,97,117,108,116,41,40,116,104,105,115,41,59,116,46,115,101,116,86,97,108,117,101,40,114,63,111,46,97,116,116,114,40,34,100,97,116,97,45,110,97,109,101,34,41,58,111,46,97,116,116,114,40,34,100,97,116,97,45,118,97,108,117,101,34,41,41,125,41,59,97,46,102,105,110,100,40,34,46,99,111,108,111,114,112,105,99,107,101,114,45,115,119,97,116,99,104,45,45,105,110,110,101,114,34,41,46,99,115,115,40,34,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,34,44,105,41,44,111,46,97,112,112,101,110,100,40,97,41,125,41,44,111,46,97,112,112,101,110,100,40,40,48,44,112,46,100,101,102,97,117,108,116,41,40,39,60,105,32,99,108,97,115,115,61,34,99,111,108,111,114,112,105,99,107,101,114,45,99,108,101,97,114,34,62,60,47,105,62,39,41,41,125,125,93,41,44,116,125,40,117,46,100,101,102,97,117,108,116,41,59,116,46,100,101,102,97,117,108,116,61,100,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,111,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,102,117,110,99,116,105,111,110,32,114,40,101,44,116,41,123,105,102,40,33,40,101,32,105,110,115,116,97,110,99,101,111,102,32,116,41,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,67,97,110,110,111,116,32,99,97,108,108,32,97,32,99,108,97,115,115,32,97,115,32,97,32,102,117,110,99,116,105,111,110,34,41,125,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,44,34,95,95,101,115,77,111,100,117,108,101,34,44,123,118,97,108,117,101,58,33,48,125,41,59,118,97,114,32,110,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,101,40,101,44,116,41,123,102,111,114,40,118,97,114,32,111,61,48,59,111,60,116,46,108,101,110,103,116,104,59,111,43,43,41,123,118,97,114,32,114,61,116,91,111,93,59,114,46,101,110,117,109,101,114,97,98,108,101,61,114,46,101,110,117,109,101,114,97,98,108,101,124,124,33,49,44,114,46,99,111,110,102,105,103,117,114,97,98,108,101,61,33,48,44,34,118,97,108,117,101,34,105,110,32,114,38,38,40,114,46,119,114,105,116,97,98,108,101,61,33,48,41,44,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,101,44,114,46,107,101,121,44,114,41,125,125,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,44,111,44,114,41,123,114,101,116,117,114,110,32,111,38,38,101,40,116,46,112,114,111,116,111,116,121,112,101,44,111,41,44,114,38,38,101,40,116,44,114,41,44,116,125,125,40,41,44,105,61,111,40,48,41,44,97,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,38,38,101,46,95,95,101,115,77,111,100,117,108,101,63,101,58,123,100,101,102,97,117,108,116,58,101,125,125,40,105,41,44,108,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,101,40,116,41,123,114,40,116,104,105,115,44,101,41,44,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,61,116,44,116,104,105,115,46,99,117,114,114,101,110,116,83,108,105,100,101,114,61,110,117,108,108,44,116,104,105,115,46,109,111,117,115,101,80,111,105,110,116,101,114,61,123,108,101,102,116,58,48,44,116,111,112,58,48,125,44,116,104,105,115,46,111,110,77,111,118,101,61,97,46,100,101,102,97,117,108,116,46,112,114,111,120,121,40,116,104,105,115,46,100,101,102,97,117,108,116,79,110,77,111,118,101,44,116,104,105,115,41,125,114,101,116,117,114,110,32,110,40,101,44,91,123,107,101,121,58,34,100,101,102,97,117,108,116,79,110,77,111,118,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,102,40,116,104,105,115,46,99,117,114,114,101,110,116,83,108,105,100,101,114,41,123,118,97,114,32,111,61,116,104,105,115,46,99,117,114,114,101,110,116,83,108,105,100,101,114,44,114,61,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,44,110,61,114,46,99,111,108,111,114,72,97,110,100,108,101,114,44,105,61,110,46,104,97,115,67,111,108,111,114,40,41,63,110,46,99,111,108,111,114,46,103,101,116,67,108,111,110,101,40,41,58,110,46,103,101,116,70,97,108,108,98,97,99,107,67,111,108,111,114,40,41,59,111,46,103,117,105,100,101,83,116,121,108,101,46,108,101,102,116,61,116,43,34,112,120,34,44,111,46,103,117,105,100,101,83,116,121,108,101,46,116,111,112,61,101,43,34,112,120,34,44,111,46,99,97,108,108,76,101,102,116,38,38,105,91,111,46,99,97,108,108,76,101,102,116,93,40,116,47,111,46,109,97,120,76,101,102,116,41,44,111,46,99,97,108,108,84,111,112,38,38,105,91,111,46,99,97,108,108,84,111,112,93,40,101,47,111,46,109,97,120,84,111,112,41,44,114,46,115,101,116,86,97,108,117,101,40,105,41,44,114,46,112,111,112,117,112,72,97,110,100,108,101,114,46,102,111,99,117,115,40,41,125,125,125,44,123,107,101,121,58,34,98,105,110,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,111,112,116,105,111,110,115,46,104,111,114,105,122,111,110,116,97,108,63,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,111,112,116,105,111,110,115,46,115,108,105,100,101,114,115,72,111,114,122,58,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,111,112,116,105,111,110,115,46,115,108,105,100,101,114,115,44,116,61,91,93,59,102,111,114,40,118,97,114,32,111,32,105,110,32,101,41,101,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,111,41,38,38,116,46,112,117,115,104,40,101,91,111,93,46,115,101,108,101,99,116,111,114,41,59,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,112,105,99,107,101,114,46,102,105,110,100,40,116,46,106,111,105,110,40,34,44,32,34,41,41,46,111,110,40,34,109,111,117,115,101,100,111,119,110,46,99,111,108,111,114,112,105,99,107,101,114,32,116,111,117,99,104,115,116,97,114,116,46,99,111,108,111,114,112,105,99,107,101,114,34,44,97,46,100,101,102,97,117,108,116,46,112,114,111,120,121,40,116,104,105,115,46,112,114,101,115,115,101,100,44,116,104,105,115,41,41,125,125,44,123,107,101,121,58,34,117,110,98,105,110,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,40,48,44,97,46,100,101,102,97,117,108,116,41,40,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,112,105,99,107,101,114,41,46,111,102,102,40,123,34,109,111,117,115,101,109,111,118,101,46,99,111,108,111,114,112,105,99,107,101,114,34,58,97,46,100,101,102,97,117,108,116,46,112,114,111,120,121,40,116,104,105,115,46,109,111,118,101,100,44,116,104,105,115,41,44,34,116,111,117,99,104,109,111,118,101,46,99,111,108,111,114,112,105,99,107,101,114,34,58,97,46,100,101,102,97,117,108,116,46,112,114,111,120,121,40,116,104,105,115,46,109,111,118,101,100,44,116,104,105,115,41,44,34,109,111,117,115,101,117,112,46,99,111,108,111,114,112,105,99,107,101,114,34,58,97,46,100,101,102,97,117,108,116,46,112,114,111,120,121,40,116,104,105,115,46,114,101,108,101,97,115,101,100,44,116,104,105,115,41,44,34,116,111,117,99,104,101,110,100,46,99,111,108,111,114,112,105,99,107,101,114,34,58,97,46,100,101,102,97,117,108,116,46,112,114,111,120,121,40,116,104,105,115,46,114,101,108,101,97,115,101,100,44,116,104,105,115,41,125,41,125,125,44,123,107,101,121,58,34,112,114,101,115,115,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,105,102,40,33,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,105,115,68,105,115,97,98,108,101,100,40,41,41,123,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,108,97,115,116,69,118,101,110,116,46,97,108,105,97,115,61,34,112,114,101,115,115,101,100,34,44,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,108,97,115,116,69,118,101,110,116,46,101,61,101,44,33,101,46,112,97,103,101,88,38,38,33,101,46,112,97,103,101,89,38,38,101,46,111,114,105,103,105,110,97,108,69,118,101,110,116,38,38,101,46,111,114,105,103,105,110,97,108,69,118,101,110,116,46,116,111,117,99,104,101,115,38,38,40,101,46,112,97,103,101,88,61,101,46,111,114,105,103,105,110,97,108,69,118,101,110,116,46,116,111,117,99,104,101,115,91,48,93,46,112,97,103,101,88,44,101,46,112,97,103,101,89,61,101,46,111,114,105,103,105,110,97,108,69,118,101,110,116,46,116,111,117,99,104,101,115,91,48,93,46,112,97,103,101,89,41,59,118,97,114,32,116,61,40,48,44,97,46,100,101,102,97,117,108,116,41,40,101,46,116,97,114,103,101,116,41,44,111,61,116,46,99,108,111,115,101,115,116,40,34,100,105,118,34,41,44,114,61,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,111,112,116,105,111,110,115,46,104,111,114,105,122,111,110,116,97,108,63,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,111,112,116,105,111,110,115,46,115,108,105,100,101,114,115,72,111,114,122,58,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,111,112,116,105,111,110,115,46,115,108,105,100,101,114,115,59,105,102,40,33,111,46,105,115,40,34,46,99,111,108,111,114,112,105,99,107,101,114,34,41,41,123,116,104,105,115,46,99,117,114,114,101,110,116,83,108,105,100,101,114,61,110,117,108,108,59,102,111,114,40,118,97,114,32,110,32,105,110,32,114,41,105,102,40,114,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,110,41,41,123,118,97,114,32,105,61,114,91,110,93,59,105,102,40,111,46,105,115,40,105,46,115,101,108,101,99,116,111,114,41,41,123,116,104,105,115,46,99,117,114,114,101,110,116,83,108,105,100,101,114,61,97,46,100,101,102,97,117,108,116,46,101,120,116,101,110,100,40,123,125,44,105,44,123,110,97,109,101,58,110,125,41,59,98,114,101,97,107,125,105,102,40,118,111,105,100,32,48,33,61,61,105,46,99,104,105,108,100,83,101,108,101,99,116,111,114,38,38,111,46,105,115,40,105,46,99,104,105,108,100,83,101,108,101,99,116,111,114,41,41,123,116,104,105,115,46,99,117,114,114,101,110,116,83,108,105,100,101,114,61,97,46,100,101,102,97,117,108,116,46,101,120,116,101,110,100,40,123,125,44,105,44,123,110,97,109,101,58,110,125,41,44,111,61,111,46,112,97,114,101,110,116,40,41,59,98,114,101,97,107,125,125,118,97,114,32,108,61,111,46,102,105,110,100,40,34,46,99,111,108,111,114,112,105,99,107,101,114,45,103,117,105,100,101,34,41,46,103,101,116,40,48,41,59,105,102,40,110,117,108,108,33,61,61,116,104,105,115,46,99,117,114,114,101,110,116,83,108,105,100,101,114,38,38,110,117,108,108,33,61,61,108,41,123,118,97,114,32,115,61,111,46,111,102,102,115,101,116,40,41,59,116,104,105,115,46,99,117,114,114,101,110,116,83,108,105,100,101,114,46,103,117,105,100,101,83,116,121,108,101,61,108,46,115,116,121,108,101,44,116,104,105,115,46,99,117,114,114,101,110,116,83,108,105,100,101,114,46,108,101,102,116,61,101,46,112,97,103,101,88,45,115,46,108,101,102,116,44,116,104,105,115,46,99,117,114,114,101,110,116,83,108,105,100,101,114,46,116,111,112,61,101,46,112,97,103,101,89,45,115,46,116,111,112,44,116,104,105,115,46,109,111,117,115,101,80,111,105,110,116,101,114,61,123,108,101,102,116,58,101,46,112,97,103,101,88,44,116,111,112,58,101,46,112,97,103,101,89,125,44,40,48,44,97,46,100,101,102,97,117,108,116,41,40,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,112,105,99,107,101,114,41,46,111,110,40,123,34,109,111,117,115,101,109,111,118,101,46,99,111,108,111,114,112,105,99,107,101,114,34,58,97,46,100,101,102,97,117,108,116,46,112,114,111,120,121,40,116,104,105,115,46,109,111,118,101,100,44,116,104,105,115,41,44,34,116,111,117,99,104,109,111,118,101,46,99,111,108,111,114,112,105,99,107,101,114,34,58,97,46,100,101,102,97,117,108,116,46,112,114,111,120,121,40,116,104,105,115,46,109,111,118,101,100,44,116,104,105,115,41,44,34,109,111,117,115,101,117,112,46,99,111,108,111,114,112,105,99,107,101,114,34,58,97,46,100,101,102,97,117,108,116,46,112,114,111,120,121,40,116,104,105,115,46,114,101,108,101,97,115,101,100,44,116,104,105,115,41,44,34,116,111,117,99,104,101,110,100,46,99,111,108,111,114,112,105,99,107,101,114,34,58,97,46,100,101,102,97,117,108,116,46,112,114,111,120,121,40,116,104,105,115,46,114,101,108,101,97,115,101,100,44,116,104,105,115,41,125,41,46,116,114,105,103,103,101,114,40,34,109,111,117,115,101,109,111,118,101,34,41,125,125,125,125,125,44,123,107,101,121,58,34,109,111,118,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,108,97,115,116,69,118,101,110,116,46,97,108,105,97,115,61,34,109,111,118,101,100,34,44,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,108,97,115,116,69,118,101,110,116,46,101,61,101,44,33,101,46,112,97,103,101,88,38,38,33,101,46,112,97,103,101,89,38,38,101,46,111,114,105,103,105,110,97,108,69,118,101,110,116,38,38,101,46,111,114,105,103,105,110,97,108,69,118,101,110,116,46,116,111,117,99,104,101,115,38,38,40,101,46,112,97,103,101,88,61,101,46,111,114,105,103,105,110,97,108,69,118,101,110,116,46,116,111,117,99,104,101,115,91,48,93,46,112,97,103,101,88,44,101,46,112,97,103,101,89,61,101,46,111,114,105,103,105,110,97,108,69,118,101,110,116,46,116,111,117,99,104,101,115,91,48,93,46,112,97,103,101,89,41,44,101,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,59,118,97,114,32,116,61,77,97,116,104,46,109,97,120,40,48,44,77,97,116,104,46,109,105,110,40,116,104,105,115,46,99,117,114,114,101,110,116,83,108,105,100,101,114,46,109,97,120,76,101,102,116,44,116,104,105,115,46,99,117,114,114,101,110,116,83,108,105,100,101,114,46,108,101,102,116,43,40,40,101,46,112,97,103,101,88,124,124,116,104,105,115,46,109,111,117,115,101,80,111,105,110,116,101,114,46,108,101,102,116,41,45,116,104,105,115,46,109,111,117,115,101,80,111,105,110,116,101,114,46,108,101,102,116,41,41,41,44,111,61,77,97,116,104,46,109,97,120,40,48,44,77,97,116,104,46,109,105,110,40,116,104,105,115,46,99,117,114,114,101,110,116,83,108,105,100,101,114,46,109,97,120,84,111,112,44,116,104,105,115,46,99,117,114,114,101,110,116,83,108,105,100,101,114,46,116,111,112,43,40,40,101,46,112,97,103,101,89,124,124,116,104,105,115,46,109,111,117,115,101,80,111,105,110,116,101,114,46,116,111,112,41,45,116,104,105,115,46,109,111,117,115,101,80,111,105,110,116,101,114,46,116,111,112,41,41,41,59,116,104,105,115,46,111,110,77,111,118,101,40,111,44,116,41,125,125,44,123,107,101,121,58,34,114,101,108,101,97,115,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,108,97,115,116,69,118,101,110,116,46,97,108,105,97,115,61,34,114,101,108,101,97,115,101,100,34,44,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,108,97,115,116,69,118,101,110,116,46,101,61,101,44,40,48,44,97,46,100,101,102,97,117,108,116,41,40,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,112,105,99,107,101,114,41,46,111,102,102,40,123,34,109,111,117,115,101,109,111,118,101,46,99,111,108,111,114,112,105,99,107,101,114,34,58,116,104,105,115,46,109,111,118,101,100,44,34,116,111,117,99,104,109,111,118,101,46,99,111,108,111,114,112,105,99,107,101,114,34,58,116,104,105,115,46,109,111,118,101,100,44,34,109,111,117,115,101,117,112,46,99,111,108,111,114,112,105,99,107,101,114,34,58,116,104,105,115,46,114,101,108,101,97,115,101,100,44,34,116,111,117,99,104,101,110,100,46,99,111,108,111,114,112,105,99,107,101,114,34,58,116,104,105,115,46,114,101,108,101,97,115,101,100,125,41,125,125,93,41,44,101,125,40,41,59,116,46,100,101,102,97,117,108,116,61,108,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,111,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,102,117,110,99,116,105,111,110,32,114,40,101,41,123,114,101,116,117,114,110,32,101,38,38,101,46,95,95,101,115,77,111,100,117,108,101,63,101,58,123,100,101,102,97,117,108,116,58,101,125,125,102,117,110,99,116,105,111,110,32,110,40,101,44,116,41,123,105,102,40,33,40,101,32,105,110,115,116,97,110,99,101,111,102,32,116,41,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,67,97,110,110,111,116,32,99,97,108,108,32,97,32,99,108,97,115,115,32,97,115,32,97,32,102,117,110,99,116,105,111,110,34,41,125,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,44,34,95,95,101,115,77,111,100,117,108,101,34,44,123,118,97,108,117,101,58,33,48,125,41,59,118,97,114,32,105,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,101,40,101,44,116,41,123,102,111,114,40,118,97,114,32,111,61,48,59,111,60,116,46,108,101,110,103,116,104,59,111,43,43,41,123,118,97,114,32,114,61,116,91,111,93,59,114,46,101,110,117,109,101,114,97,98,108,101,61,114,46,101,110,117,109,101,114,97,98,108,101,124,124,33,49,44,114,46,99,111,110,102,105,103,117,114,97,98,108,101,61,33,48,44,34,118,97,108,117,101,34,105,110,32,114,38,38,40,114,46,119,114,105,116,97,98,108,101,61,33,48,41,44,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,101,44,114,46,107,101,121,44,114,41,125,125,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,44,111,44,114,41,123,114,101,116,117,114,110,32,111,38,38,101,40,116,46,112,114,111,116,111,116,121,112,101,44,111,41,44,114,38,38,101,40,116,44,114,41,44,116,125,125,40,41,44,97,61,111,40,48,41,44,108,61,114,40,97,41,44,115,61,111,40,51,41,44,99,61,114,40,115,41,44,117,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,101,40,116,44,111,41,123,110,40,116,104,105,115,44,101,41,44,116,104,105,115,46,114,111,111,116,61,111,44,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,61,116,44,116,104,105,115,46,112,111,112,111,118,101,114,84,97,114,103,101,116,61,110,117,108,108,44,116,104,105,115,46,112,111,112,111,118,101,114,84,105,112,61,110,117,108,108,44,116,104,105,115,46,99,108,105,99,107,105,110,103,61,33,49,44,116,104,105,115,46,104,105,100,100,105,110,103,61,33,49,44,116,104,105,115,46,115,104,111,119,105,110,103,61,33,49,125,114,101,116,117,114,110,32,105,40,101,44,91,123,107,101,121,58,34,98,105,110,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,59,105,102,40,101,46,111,112,116,105,111,110,115,46,105,110,108,105,110,101,41,114,101,116,117,114,110,32,118,111,105,100,32,101,46,112,105,99,107,101,114,46,97,100,100,67,108,97,115,115,40,34,99,111,108,111,114,112,105,99,107,101,114,45,105,110,108,105,110,101,32,99,111,108,111,114,112,105,99,107,101,114,45,118,105,115,105,98,108,101,34,41,59,101,46,112,105,99,107,101,114,46,97,100,100,67,108,97,115,115,40,34,99,111,108,111,114,112,105,99,107,101,114,45,112,111,112,117,112,32,99,111,108,111,114,112,105,99,107,101,114,45,104,105,100,100,101,110,34,41,44,40,116,104,105,115,46,104,97,115,73,110,112,117,116,124,124,116,104,105,115,46,104,97,115,65,100,100,111,110,41,38,38,40,101,46,111,112,116,105,111,110,115,46,112,111,112,111,118,101,114,38,38,116,104,105,115,46,99,114,101,97,116,101,80,111,112,111,118,101,114,40,41,44,116,104,105,115,46,104,97,115,65,100,100,111,110,38,38,40,116,104,105,115,46,97,100,100,111,110,46,97,116,116,114,40,34,116,97,98,105,110,100,101,120,34,41,124,124,116,104,105,115,46,97,100,100,111,110,46,97,116,116,114,40,34,116,97,98,105,110,100,101,120,34,44,48,41,44,116,104,105,115,46,97,100,100,111,110,46,111,110,40,123,34,109,111,117,115,101,100,111,119,110,46,99,111,108,111,114,112,105,99,107,101,114,32,116,111,117,99,104,115,116,97,114,116,46,99,111,108,111,114,112,105,99,107,101,114,34,58,108,46,100,101,102,97,117,108,116,46,112,114,111,120,121,40,116,104,105,115,46,116,111,103,103,108,101,44,116,104,105,115,41,125,41,44,116,104,105,115,46,97,100,100,111,110,46,111,110,40,123,34,102,111,99,117,115,46,99,111,108,111,114,112,105,99,107,101,114,34,58,108,46,100,101,102,97,117,108,116,46,112,114,111,120,121,40,116,104,105,115,46,115,104,111,119,44,116,104,105,115,41,125,41,44,116,104,105,115,46,97,100,100,111,110,46,111,110,40,123,34,102,111,99,117,115,111,117,116,46,99,111,108,111,114,112,105,99,107,101,114,34,58,108,46,100,101,102,97,117,108,116,46,112,114,111,120,121,40,116,104,105,115,46,104,105,100,101,44,116,104,105,115,41,125,41,41,44,116,104,105,115,46,104,97,115,73,110,112,117,116,38,38,33,116,104,105,115,46,104,97,115,65,100,100,111,110,38,38,40,116,104,105,115,46,105,110,112,117,116,46,111,110,40,123,34,109,111,117,115,101,100,111,119,110,46,99,111,108,111,114,112,105,99,107,101,114,32,116,111,117,99,104,115,116,97,114,116,46,99,111,108,111,114,112,105,99,107,101,114,34,58,108,46,100,101,102,97,117,108,116,46,112,114,111,120,121,40,116,104,105,115,46,115,104,111,119,44,116,104,105,115,41,44,34,102,111,99,117,115,46,99,111,108,111,114,112,105,99,107,101,114,34,58,108,46,100,101,102,97,117,108,116,46,112,114,111,120,121,40,116,104,105,115,46,115,104,111,119,44,116,104,105,115,41,125,41,44,116,104,105,115,46,105,110,112,117,116,46,111,110,40,123,34,102,111,99,117,115,111,117,116,46,99,111,108,111,114,112,105,99,107,101,114,34,58,108,46,100,101,102,97,117,108,116,46,112,114,111,120,121,40,116,104,105,115,46,104,105,100,101,44,116,104,105,115,41,125,41,41,44,40,48,44,108,46,100,101,102,97,117,108,116,41,40,116,104,105,115,46,114,111,111,116,41,46,111,110,40,34,114,101,115,105,122,101,46,99,111,108,111,114,112,105,99,107,101,114,34,44,108,46,100,101,102,97,117,108,116,46,112,114,111,120,121,40,116,104,105,115,46,114,101,112,111,115,105,116,105,111,110,44,116,104,105,115,41,41,41,125,125,44,123,107,101,121,58,34,117,110,98,105,110,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,104,97,115,73,110,112,117,116,38,38,40,116,104,105,115,46,105,110,112,117,116,46,111,102,102,40,123,34,109,111,117,115,101,100,111,119,110,46,99,111,108,111,114,112,105,99,107,101,114,32,116,111,117,99,104,115,116,97,114,116,46,99,111,108,111,114,112,105,99,107,101,114,34,58,108,46,100,101,102,97,117,108,116,46,112,114,111,120,121,40,116,104,105,115,46,115,104,111,119,44,116,104,105,115,41,44,34,102,111,99,117,115,46,99,111,108,111,114,112,105,99,107,101,114,34,58,108,46,100,101,102,97,117,108,116,46,112,114,111,120,121,40,116,104,105,115,46,115,104,111,119,44,116,104,105,115,41,125,41,44,116,104,105,115,46,105,110,112,117,116,46,111,102,102,40,123,34,102,111,99,117,115,111,117,116,46,99,111,108,111,114,112,105,99,107,101,114,34,58,108,46,100,101,102,97,117,108,116,46,112,114,111,120,121,40,116,104,105,115,46,104,105,100,101,44,116,104,105,115,41,125,41,41,44,116,104,105,115,46,104,97,115,65,100,100,111,110,38,38,40,116,104,105,115,46,97,100,100,111,110,46,111,102,102,40,123,34,109,111,117,115,101,100,111,119,110,46,99,111,108,111,114,112,105,99,107,101,114,32,116,111,117,99,104,115,116,97,114,116,46,99,111,108,111,114,112,105,99,107,101,114,34,58,108,46,100,101,102,97,117,108,116,46,112,114,111,120,121,40,116,104,105,115,46,116,111,103,103,108,101,44,116,104,105,115,41,125,41,44,116,104,105,115,46,97,100,100,111,110,46,111,102,102,40,123,34,102,111,99,117,115,46,99,111,108,111,114,112,105,99,107,101,114,34,58,108,46,100,101,102,97,117,108,116,46,112,114,111,120,121,40,116,104,105,115,46,115,104,111,119,44,116,104,105,115,41,125,41,44,116,104,105,115,46,97,100,100,111,110,46,111,102,102,40,123,34,102,111,99,117,115,111,117,116,46,99,111,108,111,114,112,105,99,107,101,114,34,58,108,46,100,101,102,97,117,108,116,46,112,114,111,120,121,40,116,104,105,115,46,104,105,100,101,44,116,104,105,115,41,125,41,41,44,116,104,105,115,46,112,111,112,111,118,101,114,84,97,114,103,101,116,38,38,116,104,105,115,46,112,111,112,111,118,101,114,84,97,114,103,101,116,46,112,111,112,111,118,101,114,40,34,100,105,115,112,111,115,101,34,41,44,40,48,44,108,46,100,101,102,97,117,108,116,41,40,116,104,105,115,46,114,111,111,116,41,46,111,102,102,40,34,114,101,115,105,122,101,46,99,111,108,111,114,112,105,99,107,101,114,34,44,108,46,100,101,102,97,117,108,116,46,112,114,111,120,121,40,116,104,105,115,46,114,101,112,111,115,105,116,105,111,110,44,116,104,105,115,41,41,44,40,48,44,108,46,100,101,102,97,117,108,116,41,40,116,104,105,115,46,114,111,111,116,46,100,111,99,117,109,101,110,116,41,46,111,102,102,40,34,109,111,117,115,101,100,111,119,110,46,99,111,108,111,114,112,105,99,107,101,114,32,116,111,117,99,104,115,116,97,114,116,46,99,111,108,111,114,112,105,99,107,101,114,34,44,108,46,100,101,102,97,117,108,116,46,112,114,111,120,121,40,116,104,105,115,46,104,105,100,101,44,116,104,105,115,41,41,44,40,48,44,108,46,100,101,102,97,117,108,116,41,40,116,104,105,115,46,114,111,111,116,46,100,111,99,117,109,101,110,116,41,46,111,102,102,40,34,109,111,117,115,101,100,111,119,110,46,99,111,108,111,114,112,105,99,107,101,114,32,116,111,117,99,104,115,116,97,114,116,46,99,111,108,111,114,112,105,99,107,101,114,34,44,108,46,100,101,102,97,117,108,116,46,112,114,111,120,121,40,116,104,105,115,46,111,110,67,108,105,99,107,105,110,103,73,110,115,105,100,101,44,116,104,105,115,41,41,125,125,44,123,107,101,121,58,34,105,115,67,108,105,99,107,105,110,103,73,110,115,105,100,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,33,33,101,38,38,40,116,104,105,115,46,105,115,79,114,73,115,73,110,115,105,100,101,40,116,104,105,115,46,112,111,112,111,118,101,114,84,105,112,44,101,46,99,117,114,114,101,110,116,84,97,114,103,101,116,41,124,124,116,104,105,115,46,105,115,79,114,73,115,73,110,115,105,100,101,40,116,104,105,115,46,112,111,112,111,118,101,114,84,105,112,44,101,46,116,97,114,103,101,116,41,124,124,116,104,105,115,46,105,115,79,114,73,115,73,110,115,105,100,101,40,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,112,105,99,107,101,114,44,101,46,99,117,114,114,101,110,116,84,97,114,103,101,116,41,124,124,116,104,105,115,46,105,115,79,114,73,115,73,110,115,105,100,101,40,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,112,105,99,107,101,114,44,101,46,116,97,114,103,101,116,41,41,125,125,44,123,107,101,121,58,34,105,115,79,114,73,115,73,110,115,105,100,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,33,40,33,101,124,124,33,116,41,38,38,40,116,61,40,48,44,108,46,100,101,102,97,117,108,116,41,40,116,41,44,116,46,105,115,40,101,41,124,124,101,46,102,105,110,100,40,116,41,46,108,101,110,103,116,104,62,48,41,125,125,44,123,107,101,121,58,34,111,110,67,108,105,99,107,105,110,103,73,110,115,105,100,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,99,108,105,99,107,105,110,103,61,116,104,105,115,46,105,115,67,108,105,99,107,105,110,103,73,110,115,105,100,101,40,101,41,125,125,44,123,107,101,121,58,34,99,114,101,97,116,101,80,111,112,111,118,101,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,59,116,104,105,115,46,112,111,112,111,118,101,114,84,97,114,103,101,116,61,116,104,105,115,46,104,97,115,65,100,100,111,110,63,116,104,105,115,46,97,100,100,111,110,58,116,104,105,115,46,105,110,112,117,116,44,101,46,112,105,99,107,101,114,46,97,100,100,67,108,97,115,115,40,34,99,111,108,111,114,112,105,99,107,101,114,45,98,115,45,112,111,112,111,118,101,114,45,99,111,110,116,101,110,116,34,41,44,116,104,105,115,46,112,111,112,111,118,101,114,84,97,114,103,101,116,46,112,111,112,111,118,101,114,40,108,46,100,101,102,97,117,108,116,46,101,120,116,101,110,100,40,33,48,44,123,125,44,99,46,100,101,102,97,117,108,116,46,112,111,112,111,118,101,114,44,101,46,111,112,116,105,111,110,115,46,112,111,112,111,118,101,114,44,123,116,114,105,103,103,101,114,58,34,109,97,110,117,97,108,34,44,99,111,110,116,101,110,116,58,101,46,112,105,99,107,101,114,44,104,116,109,108,58,33,48,125,41,41,44,116,104,105,115,46,112,111,112,111,118,101,114,84,105,112,61,40,48,44,108,46,100,101,102,97,117,108,116,41,40,116,104,105,115,46,112,111,112,111,118,101,114,84,97,114,103,101,116,46,112,111,112,111,118,101,114,40,34,103,101,116,84,105,112,69,108,101,109,101,110,116,34,41,46,100,97,116,97,40,34,98,115,46,112,111,112,111,118,101,114,34,41,46,116,105,112,41,44,116,104,105,115,46,112,111,112,111,118,101,114,84,105,112,46,97,100,100,67,108,97,115,115,40,34,99,111,108,111,114,112,105,99,107,101,114,45,98,115,45,112,111,112,111,118,101,114,34,41,44,116,104,105,115,46,112,111,112,111,118,101,114,84,97,114,103,101,116,46,111,110,40,34,115,104,111,119,110,46,98,115,46,112,111,112,111,118,101,114,34,44,108,46,100,101,102,97,117,108,116,46,112,114,111,120,121,40,116,104,105,115,46,102,105,114,101,83,104,111,119,44,116,104,105,115,41,41,44,116,104,105,115,46,112,111,112,111,118,101,114,84,97,114,103,101,116,46,111,110,40,34,104,105,100,100,101,110,46,98,115,46,112,111,112,111,118,101,114,34,44,108,46,100,101,102,97,117,108,116,46,112,114,111,120,121,40,116,104,105,115,46,102,105,114,101,72,105,100,101,44,116,104,105,115,41,41,125,125,44,123,107,101,121,58,34,114,101,112,111,115,105,116,105,111,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,112,111,112,111,118,101,114,84,97,114,103,101,116,38,38,116,104,105,115,46,105,115,86,105,115,105,98,108,101,40,41,38,38,116,104,105,115,46,112,111,112,111,118,101,114,84,97,114,103,101,116,46,112,111,112,111,118,101,114,40,34,117,112,100,97,116,101,34,41,125,125,44,123,107,101,121,58,34,116,111,103,103,108,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,105,115,86,105,115,105,98,108,101,40,41,63,116,104,105,115,46,104,105,100,101,40,101,41,58,116,104,105,115,46,115,104,111,119,40,101,41,125,125,44,123,107,101,121,58,34,115,104,111,119,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,105,102,40,33,40,116,104,105,115,46,105,115,86,105,115,105,98,108,101,40,41,124,124,116,104,105,115,46,115,104,111,119,105,110,103,124,124,116,104,105,115,46,104,105,100,100,105,110,103,41,41,123,116,104,105,115,46,115,104,111,119,105,110,103,61,33,48,44,116,104,105,115,46,104,105,100,100,105,110,103,61,33,49,44,116,104,105,115,46,99,108,105,99,107,105,110,103,61,33,49,59,118,97,114,32,116,61,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,59,116,46,108,97,115,116,69,118,101,110,116,46,97,108,105,97,115,61,34,115,104,111,119,34,44,116,46,108,97,115,116,69,118,101,110,116,46,101,61,101,44,101,38,38,40,33,116,104,105,115,46,104,97,115,73,110,112,117,116,124,124,34,99,111,108,111,114,34,61,61,61,116,104,105,115,46,105,110,112,117,116,46,97,116,116,114,40,34,116,121,112,101,34,41,41,38,38,101,38,38,101,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,38,38,40,101,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,44,101,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,41,44,116,104,105,115,46,105,115,80,111,112,111,118,101,114,38,38,40,48,44,108,46,100,101,102,97,117,108,116,41,40,116,104,105,115,46,114,111,111,116,41,46,111,110,40,34,114,101,115,105,122,101,46,99,111,108,111,114,112,105,99,107,101,114,34,44,108,46,100,101,102,97,117,108,116,46,112,114,111,120,121,40,116,104,105,115,46,114,101,112,111,115,105,116,105,111,110,44,116,104,105,115,41,41,44,116,46,112,105,99,107,101,114,46,97,100,100,67,108,97,115,115,40,34,99,111,108,111,114,112,105,99,107,101,114,45,118,105,115,105,98,108,101,34,41,46,114,101,109,111,118,101,67,108,97,115,115,40,34,99,111,108,111,114,112,105,99,107,101,114,45,104,105,100,100,101,110,34,41,44,116,104,105,115,46,112,111,112,111,118,101,114,84,97,114,103,101,116,63,116,104,105,115,46,112,111,112,111,118,101,114,84,97,114,103,101,116,46,112,111,112,111,118,101,114,40,34,115,104,111,119,34,41,58,116,104,105,115,46,102,105,114,101,83,104,111,119,40,41,125,125,125,44,123,107,101,121,58,34,102,105,114,101,83,104,111,119,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,104,105,100,100,105,110,103,61,33,49,44,116,104,105,115,46,115,104,111,119,105,110,103,61,33,49,44,116,104,105,115,46,105,115,80,111,112,111,118,101,114,38,38,40,40,48,44,108,46,100,101,102,97,117,108,116,41,40,116,104,105,115,46,114,111,111,116,46,100,111,99,117,109,101,110,116,41,46,111,110,40,34,109,111,117,115,101,100,111,119,110,46,99,111,108,111,114,112,105,99,107,101,114,32,116,111,117,99,104,115,116,97,114,116,46,99,111,108,111,114,112,105,99,107,101,114,34,44,108,46,100,101,102,97,117,108,116,46,112,114,111,120,121,40,116,104,105,115,46,104,105,100,101,44,116,104,105,115,41,41,44,40,48,44,108,46,100,101,102,97,117,108,116,41,40,116,104,105,115,46,114,111,111,116,46,100,111,99,117,109,101,110,116,41,46,111,110,40,34,109,111,117,115,101,100,111,119,110,46,99,111,108,111,114,112,105,99,107,101,114,32,116,111,117,99,104,115,116,97,114,116,46,99,111,108,111,114,112,105,99,107,101,114,34,44,108,46,100,101,102,97,117,108,116,46,112,114,111,120,121,40,116,104,105,115,46,111,110,67,108,105,99,107,105,110,103,73,110,115,105,100,101,44,116,104,105,115,41,41,41,44,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,116,114,105,103,103,101,114,40,34,99,111,108,111,114,112,105,99,107,101,114,83,104,111,119,34,41,125,125,44,123,107,101,121,58,34,104,105,100,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,105,102,40,33,40,116,104,105,115,46,105,115,72,105,100,100,101,110,40,41,124,124,116,104,105,115,46,115,104,111,119,105,110,103,124,124,116,104,105,115,46,104,105,100,100,105,110,103,41,41,123,118,97,114,32,116,61,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,44,111,61,116,104,105,115,46,99,108,105,99,107,105,110,103,124,124,116,104,105,115,46,105,115,67,108,105,99,107,105,110,103,73,110,115,105,100,101,40,101,41,59,105,102,40,116,104,105,115,46,104,105,100,100,105,110,103,61,33,48,44,116,104,105,115,46,115,104,111,119,105,110,103,61,33,49,44,116,104,105,115,46,99,108,105,99,107,105,110,103,61,33,49,44,116,46,108,97,115,116,69,118,101,110,116,46,97,108,105,97,115,61,34,104,105,100,101,34,44,116,46,108,97,115,116,69,118,101,110,116,46,101,61,101,44,111,41,114,101,116,117,114,110,32,118,111,105,100,40,116,104,105,115,46,104,105,100,100,105,110,103,61,33,49,41,59,116,104,105,115,46,112,111,112,111,118,101,114,84,97,114,103,101,116,63,116,104,105,115,46,112,111,112,111,118,101,114,84,97,114,103,101,116,46,112,111,112,111,118,101,114,40,34,104,105,100,101,34,41,58,116,104,105,115,46,102,105,114,101,72,105,100,101,40,41,125,125,125,44,123,107,101,121,58,34,102,105,114,101,72,105,100,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,104,105,100,100,105,110,103,61,33,49,44,116,104,105,115,46,115,104,111,119,105,110,103,61,33,49,59,118,97,114,32,101,61,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,59,101,46,112,105,99,107,101,114,46,97,100,100,67,108,97,115,115,40,34,99,111,108,111,114,112,105,99,107,101,114,45,104,105,100,100,101,110,34,41,46,114,101,109,111,118,101,67,108,97,115,115,40,34,99,111,108,111,114,112,105,99,107,101,114,45,118,105,115,105,98,108,101,34,41,44,40,48,44,108,46,100,101,102,97,117,108,116,41,40,116,104,105,115,46,114,111,111,116,41,46,111,102,102,40,34,114,101,115,105,122,101,46,99,111,108,111,114,112,105,99,107,101,114,34,44,108,46,100,101,102,97,117,108,116,46,112,114,111,120,121,40,116,104,105,115,46,114,101,112,111,115,105,116,105,111,110,44,116,104,105,115,41,41,44,40,48,44,108,46,100,101,102,97,117,108,116,41,40,116,104,105,115,46,114,111,111,116,46,100,111,99,117,109,101,110,116,41,46,111,102,102,40,34,109,111,117,115,101,100,111,119,110,46,99,111,108,111,114,112,105,99,107,101,114,32,116,111,117,99,104,115,116,97,114,116,46,99,111,108,111,114,112,105,99,107,101,114,34,44,108,46,100,101,102,97,117,108,116,46,112,114,111,120,121,40,116,104,105,115,46,104,105,100,101,44,116,104,105,115,41,41,44,40,48,44,108,46,100,101,102,97,117,108,116,41,40,116,104,105,115,46,114,111,111,116,46,100,111,99,117,109,101,110,116,41,46,111,102,102,40,34,109,111,117,115,101,100,111,119,110,46,99,111,108,111,114,112,105,99,107,101,114,32,116,111,117,99,104,115,116,97,114,116,46,99,111,108,111,114,112,105,99,107,101,114,34,44,108,46,100,101,102,97,117,108,116,46,112,114,111,120,121,40,116,104,105,115,46,111,110,67,108,105,99,107,105,110,103,73,110,115,105,100,101,44,116,104,105,115,41,41,44,101,46,116,114,105,103,103,101,114,40,34,99,111,108,111,114,112,105,99,107,101,114,72,105,100,101,34,41,125,125,44,123,107,101,121,58,34,102,111,99,117,115,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,104,97,115,65,100,100,111,110,63,116,104,105,115,46,97,100,100,111,110,46,102,111,99,117,115,40,41,58,33,33,116,104,105,115,46,104,97,115,73,110,112,117,116,38,38,116,104,105,115,46,105,110,112,117,116,46,102,111,99,117,115,40,41,125,125,44,123,107,101,121,58,34,105,115,86,105,115,105,98,108,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,112,105,99,107,101,114,46,104,97,115,67,108,97,115,115,40,34,99,111,108,111,114,112,105,99,107,101,114,45,118,105,115,105,98,108,101,34,41,38,38,33,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,112,105,99,107,101,114,46,104,97,115,67,108,97,115,115,40,34,99,111,108,111,114,112,105,99,107,101,114,45,104,105,100,100,101,110,34,41,125,125,44,123,107,101,121,58,34,105,115,72,105,100,100,101,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,112,105,99,107,101,114,46,104,97,115,67,108,97,115,115,40,34,99,111,108,111,114,112,105,99,107,101,114,45,104,105,100,100,101,110,34,41,38,38,33,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,112,105,99,107,101,114,46,104,97,115,67,108,97,115,115,40,34,99,111,108,111,114,112,105,99,107,101,114,45,118,105,115,105,98,108,101,34,41,125,125,44,123,107,101,121,58,34,105,110,112,117,116,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,105,110,112,117,116,72,97,110,100,108,101,114,46,105,110,112,117,116,125,125,44,123,107,101,121,58,34,104,97,115,73,110,112,117,116,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,105,110,112,117,116,72,97,110,100,108,101,114,46,104,97,115,73,110,112,117,116,40,41,125,125,44,123,107,101,121,58,34,97,100,100,111,110,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,97,100,100,111,110,72,97,110,100,108,101,114,46,97,100,100,111,110,125,125,44,123,107,101,121,58,34,104,97,115,65,100,100,111,110,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,97,100,100,111,110,72,97,110,100,108,101,114,46,104,97,115,65,100,100,111,110,40,41,125,125,44,123,107,101,121,58,34,105,115,80,111,112,111,118,101,114,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,33,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,111,112,116,105,111,110,115,46,105,110,108,105,110,101,38,38,33,33,116,104,105,115,46,112,111,112,111,118,101,114,84,105,112,125,125,93,41,44,101,125,40,41,59,116,46,100,101,102,97,117,108,116,61,117,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,111,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,102,117,110,99,116,105,111,110,32,114,40,101,41,123,114,101,116,117,114,110,32,101,38,38,101,46,95,95,101,115,77,111,100,117,108,101,63,101,58,123,100,101,102,97,117,108,116,58,101,125,125,102,117,110,99,116,105,111,110,32,110,40,101,44,116,41,123,105,102,40,33,40,101,32,105,110,115,116,97,110,99,101,111,102,32,116,41,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,67,97,110,110,111,116,32,99,97,108,108,32,97,32,99,108,97,115,115,32,97,115,32,97,32,102,117,110,99,116,105,111,110,34,41,125,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,44,34,95,95,101,115,77,111,100,117,108,101,34,44,123,118,97,108,117,101,58,33,48,125,41,59,118,97,114,32,105,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,101,40,101,44,116,41,123,102,111,114,40,118,97,114,32,111,61,48,59,111,60,116,46,108,101,110,103,116,104,59,111,43,43,41,123,118,97,114,32,114,61,116,91,111,93,59,114,46,101,110,117,109,101,114,97,98,108,101,61,114,46,101,110,117,109,101,114,97,98,108,101,124,124,33,49,44,114,46,99,111,110,102,105,103,117,114,97,98,108,101,61,33,48,44,34,118,97,108,117,101,34,105,110,32,114,38,38,40,114,46,119,114,105,116,97,98,108,101,61,33,48,41,44,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,101,44,114,46,107,101,121,44,114,41,125,125,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,44,111,44,114,41,123,114,101,116,117,114,110,32,111,38,38,101,40,116,46,112,114,111,116,111,116,121,112,101,44,111,41,44,114,38,38,101,40,116,44,114,41,44,116,125,125,40,41,44,97,61,111,40,48,41,44,108,61,114,40,97,41,44,115,61,111,40,50,41,44,99,61,114,40,115,41,44,117,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,101,40,116,41,123,110,40,116,104,105,115,44,101,41,44,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,61,116,44,116,104,105,115,46,105,110,112,117,116,61,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,101,108,101,109,101,110,116,46,105,115,40,34,105,110,112,117,116,34,41,63,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,101,108,101,109,101,110,116,58,33,33,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,111,112,116,105,111,110,115,46,105,110,112,117,116,38,38,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,101,108,101,109,101,110,116,46,102,105,110,100,40,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,111,112,116,105,111,110,115,46,105,110,112,117,116,41,44,116,104,105,115,46,105,110,112,117,116,38,38,48,61,61,61,116,104,105,115,46,105,110,112,117,116,46,108,101,110,103,116,104,38,38,40,116,104,105,115,46,105,110,112,117,116,61,33,49,41,44,116,104,105,115,46,95,105,110,105,116,86,97,108,117,101,40,41,125,114,101,116,117,114,110,32,105,40,101,44,91,123,107,101,121,58,34,98,105,110,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,104,97,115,73,110,112,117,116,40,41,38,38,40,116,104,105,115,46,105,110,112,117,116,46,111,110,40,123,34,107,101,121,117,112,46,99,111,108,111,114,112,105,99,107,101,114,34,58,108,46,100,101,102,97,117,108,116,46,112,114,111,120,121,40,116,104,105,115,46,111,110,107,101,121,117,112,44,116,104,105,115,41,125,41,44,116,104,105,115,46,105,110,112,117,116,46,111,110,40,123,34,99,104,97,110,103,101,46,99,111,108,111,114,112,105,99,107,101,114,34,58,108,46,100,101,102,97,117,108,116,46,112,114,111,120,121,40,116,104,105,115,46,111,110,99,104,97,110,103,101,44,116,104,105,115,41,125,41,41,125,125,44,123,107,101,121,58,34,117,110,98,105,110,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,104,97,115,73,110,112,117,116,40,41,38,38,116,104,105,115,46,105,110,112,117,116,46,111,102,102,40,34,46,99,111,108,111,114,112,105,99,107,101,114,34,41,125,125,44,123,107,101,121,58,34,95,105,110,105,116,86,97,108,117,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,105,102,40,116,104,105,115,46,104,97,115,73,110,112,117,116,40,41,41,123,118,97,114,32,101,61,34,34,59,91,116,104,105,115,46,105,110,112,117,116,46,118,97,108,40,41,44,116,104,105,115,46,105,110,112,117,116,46,100,97,116,97,40,34,99,111,108,111,114,34,41,44,116,104,105,115,46,105,110,112,117,116,46,97,116,116,114,40,34,100,97,116,97,45,99,111,108,111,114,34,41,93,46,109,97,112,40,102,117,110,99,116,105,111,110,40,116,41,123,116,38,38,34,34,61,61,61,101,38,38,40,101,61,116,41,125,41,44,101,32,105,110,115,116,97,110,99,101,111,102,32,99,46,100,101,102,97,117,108,116,63,101,61,116,104,105,115,46,103,101,116,70,111,114,109,97,116,116,101,100,67,111,108,111,114,40,101,46,115,116,114,105,110,103,40,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,102,111,114,109,97,116,41,41,58,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,101,124,124,101,32,105,110,115,116,97,110,99,101,111,102,32,83,116,114,105,110,103,124,124,40,101,61,34,34,41,44,116,104,105,115,46,105,110,112,117,116,46,112,114,111,112,40,34,118,97,108,117,101,34,44,101,41,125,125,125,44,123,107,101,121,58,34,103,101,116,86,97,108,117,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,33,33,116,104,105,115,46,104,97,115,73,110,112,117,116,40,41,38,38,116,104,105,115,46,105,110,112,117,116,46,118,97,108,40,41,125,125,44,123,107,101,121,58,34,115,101,116,86,97,108,117,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,105,102,40,116,104,105,115,46,104,97,115,73,110,112,117,116,40,41,41,123,118,97,114,32,116,61,116,104,105,115,46,105,110,112,117,116,46,112,114,111,112,40,34,118,97,108,117,101,34,41,59,101,61,101,124,124,34,34,44,101,33,61,61,40,116,124,124,34,34,41,38,38,40,116,104,105,115,46,105,110,112,117,116,46,112,114,111,112,40,34,118,97,108,117,101,34,44,101,41,44,116,104,105,115,46,105,110,112,117,116,46,116,114,105,103,103,101,114,40,123,116,121,112,101,58,34,99,104,97,110,103,101,34,44,99,111,108,111,114,112,105,99,107,101,114,58,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,44,99,111,108,111,114,58,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,99,111,108,111,114,44,118,97,108,117,101,58,101,125,41,41,125,125,125,44,123,107,101,121,58,34,103,101,116,70,111,114,109,97,116,116,101,100,67,111,108,111,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,62,48,38,38,118,111,105,100,32,48,33,61,61,97,114,103,117,109,101,110,116,115,91,48,93,63,97,114,103,117,109,101,110,116,115,91,48,93,58,110,117,108,108,59,114,101,116,117,114,110,40,101,61,101,124,124,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,99,111,108,111,114,72,97,110,100,108,101,114,46,103,101,116,67,111,108,111,114,83,116,114,105,110,103,40,41,41,63,40,101,61,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,99,111,108,111,114,72,97,110,100,108,101,114,46,114,101,115,111,108,118,101,67,111,108,111,114,68,101,108,101,103,97,116,101,40,101,44,33,49,41,44,33,49,61,61,61,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,111,112,116,105,111,110,115,46,117,115,101,72,97,115,104,80,114,101,102,105,120,38,38,40,101,61,101,46,114,101,112,108,97,99,101,40,47,94,35,47,103,44,34,34,41,41,44,101,41,58,34,34,125,125,44,123,107,101,121,58,34,104,97,115,73,110,112,117,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,33,49,33,61,61,116,104,105,115,46,105,110,112,117,116,125,125,44,123,107,101,121,58,34,105,115,69,110,97,98,108,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,104,97,115,73,110,112,117,116,40,41,38,38,33,116,104,105,115,46,105,115,68,105,115,97,98,108,101,100,40,41,125,125,44,123,107,101,121,58,34,105,115,68,105,115,97,98,108,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,104,97,115,73,110,112,117,116,40,41,38,38,33,48,61,61,61,116,104,105,115,46,105,110,112,117,116,46,112,114,111,112,40,34,100,105,115,97,98,108,101,100,34,41,125,125,44,123,107,101,121,58,34,100,105,115,97,98,108,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,104,97,115,73,110,112,117,116,40,41,38,38,116,104,105,115,46,105,110,112,117,116,46,112,114,111,112,40,34,100,105,115,97,98,108,101,100,34,44,33,48,41,125,125,44,123,107,101,121,58,34,101,110,97,98,108,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,104,97,115,73,110,112,117,116,40,41,38,38,116,104,105,115,46,105,110,112,117,116,46,112,114,111,112,40,34,100,105,115,97,98,108,101,100,34,44,33,49,41,125,125,44,123,107,101,121,58,34,117,112,100,97,116,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,104,97,115,73,110,112,117,116,40,41,38,38,40,33,49,61,61,61,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,111,112,116,105,111,110,115,46,97,117,116,111,73,110,112,117,116,70,97,108,108,98,97,99,107,38,38,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,99,111,108,111,114,72,97,110,100,108,101,114,46,105,115,73,110,118,97,108,105,100,67,111,108,111,114,40,41,124,124,116,104,105,115,46,115,101,116,86,97,108,117,101,40,116,104,105,115,46,103,101,116,70,111,114,109,97,116,116,101,100,67,111,108,111,114,40,41,41,41,125,125,44,123,107,101,121,58,34,111,110,99,104,97,110,103,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,108,97,115,116,69,118,101,110,116,46,97,108,105,97,115,61,34,105,110,112,117,116,46,99,104,97,110,103,101,34,44,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,108,97,115,116,69,118,101,110,116,46,101,61,101,59,118,97,114,32,116,61,116,104,105,115,46,103,101,116,86,97,108,117,101,40,41,59,116,33,61,61,101,46,118,97,108,117,101,38,38,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,115,101,116,86,97,108,117,101,40,116,41,125,125,44,123,107,101,121,58,34,111,110,107,101,121,117,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,108,97,115,116,69,118,101,110,116,46,97,108,105,97,115,61,34,105,110,112,117,116,46,107,101,121,117,112,34,44,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,108,97,115,116,69,118,101,110,116,46,101,61,101,59,118,97,114,32,116,61,116,104,105,115,46,103,101,116,86,97,108,117,101,40,41,59,116,33,61,61,101,46,118,97,108,117,101,38,38,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,115,101,116,86,97,108,117,101,40,116,41,125,125,93,41,44,101,125,40,41,59,116,46,100,101,102,97,117,108,116,61,117,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,111,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,102,117,110,99,116,105,111,110,32,114,40,101,44,116,41,123,105,102,40,33,40,116,104,105,115,32,105,110,115,116,97,110,99,101,111,102,32,114,41,41,114,101,116,117,114,110,32,110,101,119,32,114,40,101,44,116,41,59,105,102,40,116,38,38,116,32,105,110,32,102,38,38,40,116,61,110,117,108,108,41,44,116,38,38,33,40,116,32,105,110,32,104,41,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,85,110,107,110,111,119,110,32,109,111,100,101,108,58,32,34,43,116,41,59,118,97,114,32,111,44,110,59,105,102,40,118,111,105,100,32,48,61,61,61,101,41,116,104,105,115,46,109,111,100,101,108,61,34,114,103,98,34,44,116,104,105,115,46,99,111,108,111,114,61,91,48,44,48,44,48,93,44,116,104,105,115,46,118,97,108,112,104,97,61,49,59,101,108,115,101,32,105,102,40,101,32,105,110,115,116,97,110,99,101,111,102,32,114,41,116,104,105,115,46,109,111,100,101,108,61,101,46,109,111,100,101,108,44,116,104,105,115,46,99,111,108,111,114,61,101,46,99,111,108,111,114,46,115,108,105,99,101,40,41,44,116,104,105,115,46,118,97,108,112,104,97,61,101,46,118,97,108,112,104,97,59,101,108,115,101,32,105,102,40,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,101,41,123,118,97,114,32,105,61,117,46,103,101,116,40,101,41,59,105,102,40,110,117,108,108,61,61,61,105,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,85,110,97,98,108,101,32,116,111,32,112,97,114,115,101,32,99,111,108,111,114,32,102,114,111,109,32,115,116,114,105,110,103,58,32,34,43,101,41,59,116,104,105,115,46,109,111,100,101,108,61,105,46,109,111,100,101,108,44,110,61,104,91,116,104,105,115,46,109,111,100,101,108,93,46,99,104,97,110,110,101,108,115,44,116,104,105,115,46,99,111,108,111,114,61,105,46,118,97,108,117,101,46,115,108,105,99,101,40,48,44,110,41,44,116,104,105,115,46,118,97,108,112,104,97,61,34,110,117,109,98,101,114,34,61,61,116,121,112,101,111,102,32,105,46,118,97,108,117,101,91,110,93,63,105,46,118,97,108,117,101,91,110,93,58,49,125,101,108,115,101,32,105,102,40,101,46,108,101,110,103,116,104,41,123,116,104,105,115,46,109,111,100,101,108,61,116,124,124,34,114,103,98,34,44,110,61,104,91,116,104,105,115,46,109,111,100,101,108,93,46,99,104,97,110,110,101,108,115,59,118,97,114,32,97,61,112,46,99,97,108,108,40,101,44,48,44,110,41,59,116,104,105,115,46,99,111,108,111,114,61,99,40,97,44,110,41,44,116,104,105,115,46,118,97,108,112,104,97,61,34,110,117,109,98,101,114,34,61,61,116,121,112,101,111,102,32,101,91,110,93,63,101,91,110,93,58,49,125,101,108,115,101,32,105,102,40,34,110,117,109,98,101,114,34,61,61,116,121,112,101,111,102,32,101,41,101,38,61,49,54,55,55,55,50,49,53,44,116,104,105,115,46,109,111,100,101,108,61,34,114,103,98,34,44,116,104,105,115,46,99,111,108,111,114,61,91,101,62,62,49,54,38,50,53,53,44,101,62,62,56,38,50,53,53,44,50,53,53,38,101,93,44,116,104,105,115,46,118,97,108,112,104,97,61,49,59,101,108,115,101,123,116,104,105,115,46,118,97,108,112,104,97,61,49,59,118,97,114,32,108,61,79,98,106,101,99,116,46,107,101,121,115,40,101,41,59,34,97,108,112,104,97,34,105,110,32,101,38,38,40,108,46,115,112,108,105,99,101,40,108,46,105,110,100,101,120,79,102,40,34,97,108,112,104,97,34,41,44,49,41,44,116,104,105,115,46,118,97,108,112,104,97,61,34,110,117,109,98,101,114,34,61,61,116,121,112,101,111,102,32,101,46,97,108,112,104,97,63,101,46,97,108,112,104,97,58,48,41,59,118,97,114,32,115,61,108,46,115,111,114,116,40,41,46,106,111,105,110,40,34,34,41,59,105,102,40,33,40,115,32,105,110,32,100,41,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,85,110,97,98,108,101,32,116,111,32,112,97,114,115,101,32,99,111,108,111,114,32,102,114,111,109,32,111,98,106,101,99,116,58,32,34,43,74,83,79,78,46,115,116,114,105,110,103,105,102,121,40,101,41,41,59,116,104,105,115,46,109,111,100,101,108,61,100,91,115,93,59,118,97,114,32,107,61,104,91,116,104,105,115,46,109,111,100,101,108,93,46,108,97,98,101,108,115,44,103,61,91,93,59,102,111,114,40,111,61,48,59,111,60,107,46,108,101,110,103,116,104,59,111,43,43,41,103,46,112,117,115,104,40,101,91,107,91,111,93,93,41,59,116,104,105,115,46,99,111,108,111,114,61,99,40,103,41,125,105,102,40,118,91,116,104,105,115,46,109,111,100,101,108,93,41,102,111,114,40,110,61,104,91,116,104,105,115,46,109,111,100,101,108,93,46,99,104,97,110,110,101,108,115,44,111,61,48,59,111,60,110,59,111,43,43,41,123,118,97,114,32,121,61,118,91,116,104,105,115,46,109,111,100,101,108,93,91,111,93,59,121,38,38,40,116,104,105,115,46,99,111,108,111,114,91,111,93,61,121,40,116,104,105,115,46,99,111,108,111,114,91,111,93,41,41,125,116,104,105,115,46,118,97,108,112,104,97,61,77,97,116,104,46,109,97,120,40,48,44,77,97,116,104,46,109,105,110,40,49,44,116,104,105,115,46,118,97,108,112,104,97,41,41,44,79,98,106,101,99,116,46,102,114,101,101,122,101,38,38,79,98,106,101,99,116,46,102,114,101,101,122,101,40,116,104,105,115,41,125,102,117,110,99,116,105,111,110,32,110,40,101,44,116,41,123,114,101,116,117,114,110,32,78,117,109,98,101,114,40,101,46,116,111,70,105,120,101,100,40,116,41,41,125,102,117,110,99,116,105,111,110,32,105,40,101,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,40,116,44,101,41,125,125,102,117,110,99,116,105,111,110,32,97,40,101,44,116,44,111,41,123,114,101,116,117,114,110,32,101,61,65,114,114,97,121,46,105,115,65,114,114,97,121,40,101,41,63,101,58,91,101,93,44,101,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,101,41,123,40,118,91,101,93,124,124,40,118,91,101,93,61,91,93,41,41,91,116,93,61,111,125,41,44,101,61,101,91,48,93,44,102,117,110,99,116,105,111,110,40,114,41,123,118,97,114,32,110,59,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,111,38,38,40,114,61,111,40,114,41,41,44,110,61,116,104,105,115,91,101,93,40,41,44,110,46,99,111,108,111,114,91,116,93,61,114,44,110,41,58,40,110,61,116,104,105,115,91,101,93,40,41,46,99,111,108,111,114,91,116,93,44,111,38,38,40,110,61,111,40,110,41,41,44,110,41,125,125,102,117,110,99,116,105,111,110,32,108,40,101,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,77,97,116,104,46,109,97,120,40,48,44,77,97,116,104,46,109,105,110,40,101,44,116,41,41,125,125,102,117,110,99,116,105,111,110,32,115,40,101,41,123,114,101,116,117,114,110,32,65,114,114,97,121,46,105,115,65,114,114,97,121,40,101,41,63,101,58,91,101,93,125,102,117,110,99,116,105,111,110,32,99,40,101,44,116,41,123,102,111,114,40,118,97,114,32,111,61,48,59,111,60,116,59,111,43,43,41,34,110,117,109,98,101,114,34,33,61,116,121,112,101,111,102,32,101,91,111,93,38,38,40,101,91,111,93,61,48,41,59,114,101,116,117,114,110,32,101,125,118,97,114,32,117,61,111,40,49,55,41,44,104,61,111,40,50,48,41,44,112,61,91,93,46,115,108,105,99,101,44,102,61,91,34,107,101,121,119,111,114,100,34,44,34,103,114,97,121,34,44,34,104,101,120,34,93,44,100,61,123,125,59,79,98,106,101,99,116,46,107,101,121,115,40,104,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,101,41,123,100,91,112,46,99,97,108,108,40,104,91,101,93,46,108,97,98,101,108,115,41,46,115,111,114,116,40,41,46,106,111,105,110,40,34,34,41,93,61,101,125,41,59,118,97,114,32,118,61,123,125,59,114,46,112,114,111,116,111,116,121,112,101,61,123,116,111,83,116,114,105,110,103,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,115,116,114,105,110,103,40,41,125,44,116,111,74,83,79,78,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,91,116,104,105,115,46,109,111,100,101,108,93,40,41,125,44,115,116,114,105,110,103,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,116,104,105,115,46,109,111,100,101,108,32,105,110,32,117,46,116,111,63,116,104,105,115,58,116,104,105,115,46,114,103,98,40,41,59,116,61,116,46,114,111,117,110,100,40,34,110,117,109,98,101,114,34,61,61,116,121,112,101,111,102,32,101,63,101,58,49,41,59,118,97,114,32,111,61,49,61,61,61,116,46,118,97,108,112,104,97,63,116,46,99,111,108,111,114,58,116,46,99,111,108,111,114,46,99,111,110,99,97,116,40,116,104,105,115,46,118,97,108,112,104,97,41,59,114,101,116,117,114,110,32,117,46,116,111,91,116,46,109,111,100,101,108,93,40,111,41,125,44,112,101,114,99,101,110,116,83,116,114,105,110,103,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,116,104,105,115,46,114,103,98,40,41,46,114,111,117,110,100,40,34,110,117,109,98,101,114,34,61,61,116,121,112,101,111,102,32,101,63,101,58,49,41,44,111,61,49,61,61,61,116,46,118,97,108,112,104,97,63,116,46,99,111,108,111,114,58,116,46,99,111,108,111,114,46,99,111,110,99,97,116,40,116,104,105,115,46,118,97,108,112,104,97,41,59,114,101,116,117,114,110,32,117,46,116,111,46,114,103,98,46,112,101,114,99,101,110,116,40,111,41,125,44,97,114,114,97,121,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,49,61,61,61,116,104,105,115,46,118,97,108,112,104,97,63,116,104,105,115,46,99,111,108,111,114,46,115,108,105,99,101,40,41,58,116,104,105,115,46,99,111,108,111,114,46,99,111,110,99,97,116,40,116,104,105,115,46,118,97,108,112,104,97,41,125,44,111,98,106,101,99,116,58,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,118,97,114,32,101,61,123,125,44,116,61,104,91,116,104,105,115,46,109,111,100,101,108,93,46,99,104,97,110,110,101,108,115,44,111,61,104,91,116,104,105,115,46,109,111,100,101,108,93,46,108,97,98,101,108,115,44,114,61,48,59,114,60,116,59,114,43,43,41,101,91,111,91,114,93,93,61,116,104,105,115,46,99,111,108,111,114,91,114,93,59,114,101,116,117,114,110,32,49,33,61,61,116,104,105,115,46,118,97,108,112,104,97,38,38,40,101,46,97,108,112,104,97,61,116,104,105,115,46,118,97,108,112,104,97,41,44,101,125,44,117,110,105,116,65,114,114,97,121,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,114,103,98,40,41,46,99,111,108,111,114,59,114,101,116,117,114,110,32,101,91,48,93,47,61,50,53,53,44,101,91,49,93,47,61,50,53,53,44,101,91,50,93,47,61,50,53,53,44,49,33,61,61,116,104,105,115,46,118,97,108,112,104,97,38,38,101,46,112,117,115,104,40,116,104,105,115,46,118,97,108,112,104,97,41,44,101,125,44,117,110,105,116,79,98,106,101,99,116,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,114,103,98,40,41,46,111,98,106,101,99,116,40,41,59,114,101,116,117,114,110,32,101,46,114,47,61,50,53,53,44,101,46,103,47,61,50,53,53,44,101,46,98,47,61,50,53,53,44,49,33,61,61,116,104,105,115,46,118,97,108,112,104,97,38,38,40,101,46,97,108,112,104,97,61,116,104,105,115,46,118,97,108,112,104,97,41,44,101,125,44,114,111,117,110,100,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,61,77,97,116,104,46,109,97,120,40,101,124,124,48,44,48,41,44,110,101,119,32,114,40,116,104,105,115,46,99,111,108,111,114,46,109,97,112,40,105,40,101,41,41,46,99,111,110,99,97,116,40,116,104,105,115,46,118,97,108,112,104,97,41,44,116,104,105,115,46,109,111,100,101,108,41,125,44,97,108,112,104,97,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,110,101,119,32,114,40,116,104,105,115,46,99,111,108,111,114,46,99,111,110,99,97,116,40,77,97,116,104,46,109,97,120,40,48,44,77,97,116,104,46,109,105,110,40,49,44,101,41,41,41,44,116,104,105,115,46,109,111,100,101,108,41,58,116,104,105,115,46,118,97,108,112,104,97,125,44,114,101,100,58,97,40,34,114,103,98,34,44,48,44,108,40,50,53,53,41,41,44,103,114,101,101,110,58,97,40,34,114,103,98,34,44,49,44,108,40,50,53,53,41,41,44,98,108,117,101,58,97,40,34,114,103,98,34,44,50,44,108,40,50,53,53,41,41,44,104,117,101,58,97,40,91,34,104,115,108,34,44,34,104,115,118,34,44,34,104,115,108,34,44,34,104,119,98,34,44,34,104,99,103,34,93,44,48,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,40,101,37,51,54,48,43,51,54,48,41,37,51,54,48,125,41,44,115,97,116,117,114,97,116,105,111,110,108,58,97,40,34,104,115,108,34,44,49,44,108,40,49,48,48,41,41,44,108,105,103,104,116,110,101,115,115,58,97,40,34,104,115,108,34,44,50,44,108,40,49,48,48,41,41,44,115,97,116,117,114,97,116,105,111,110,118,58,97,40,34,104,115,118,34,44,49,44,108,40,49,48,48,41,41,44,118,97,108,117,101,58,97,40,34,104,115,118,34,44,50,44,108,40,49,48,48,41,41,44,99,104,114,111,109,97,58,97,40,34,104,99,103,34,44,49,44,108,40,49,48,48,41,41,44,103,114,97,121,58,97,40,34,104,99,103,34,44,50,44,108,40,49,48,48,41,41,44,119,104,105,116,101,58,97,40,34,104,119,98,34,44,49,44,108,40,49,48,48,41,41,44,119,98,108,97,99,107,58,97,40,34,104,119,98,34,44,50,44,108,40,49,48,48,41,41,44,99,121,97,110,58,97,40,34,99,109,121,107,34,44,48,44,108,40,49,48,48,41,41,44,109,97,103,101,110,116,97,58,97,40,34,99,109,121,107,34,44,49,44,108,40,49,48,48,41,41,44,121,101,108,108,111,119,58,97,40,34,99,109,121,107,34,44,50,44,108,40,49,48,48,41,41,44,98,108,97,99,107,58,97,40,34,99,109,121,107,34,44,51,44,108,40,49,48,48,41,41,44,120,58,97,40,34,120,121,122,34,44,48,44,108,40,49,48,48,41,41,44,121,58,97,40,34,120,121,122,34,44,49,44,108,40,49,48,48,41,41,44,122,58,97,40,34,120,121,122,34,44,50,44,108,40,49,48,48,41,41,44,108,58,97,40,34,108,97,98,34,44,48,44,108,40,49,48,48,41,41,44,97,58,97,40,34,108,97,98,34,44,49,41,44,98,58,97,40,34,108,97,98,34,44,50,41,44,107,101,121,119,111,114,100,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,110,101,119,32,114,40,101,41,58,104,91,116,104,105,115,46,109,111,100,101,108,93,46,107,101,121,119,111,114,100,40,116,104,105,115,46,99,111,108,111,114,41,125,44,104,101,120,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,110,101,119,32,114,40,101,41,58,117,46,116,111,46,104,101,120,40,116,104,105,115,46,114,103,98,40,41,46,114,111,117,110,100,40,41,46,99,111,108,111,114,41,125,44,114,103,98,78,117,109,98,101,114,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,114,103,98,40,41,46,99,111,108,111,114,59,114,101,116,117,114,110,40,50,53,53,38,101,91,48,93,41,60,60,49,54,124,40,50,53,53,38,101,91,49,93,41,60,60,56,124,50,53,53,38,101,91,50,93,125,44,108,117,109,105,110,111,115,105,116,121,58,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,118,97,114,32,101,61,116,104,105,115,46,114,103,98,40,41,46,99,111,108,111,114,44,116,61,91,93,44,111,61,48,59,111,60,101,46,108,101,110,103,116,104,59,111,43,43,41,123,118,97,114,32,114,61,101,91,111,93,47,50,53,53,59,116,91,111,93,61,114,60,61,46,48,51,57,50,56,63,114,47,49,50,46,57,50,58,77,97,116,104,46,112,111,119,40,40,114,43,46,48,53,53,41,47,49,46,48,53,53,44,50,46,52,41,125,114,101,116,117,114,110,46,50,49,50,54,42,116,91,48,93,43,46,55,49,53,50,42,116,91,49,93,43,46,48,55,50,50,42,116,91,50,93,125,44,99,111,110,116,114,97,115,116,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,116,104,105,115,46,108,117,109,105,110,111,115,105,116,121,40,41,44,111,61,101,46,108,117,109,105,110,111,115,105,116,121,40,41,59,114,101,116,117,114,110,32,116,62,111,63,40,116,43,46,48,53,41,47,40,111,43,46,48,53,41,58,40,111,43,46,48,53,41,47,40,116,43,46,48,53,41,125,44,108,101,118,101,108,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,116,104,105,115,46,99,111,110,116,114,97,115,116,40,101,41,59,114,101,116,117,114,110,32,116,62,61,55,46,49,63,34,65,65,65,34,58,116,62,61,52,46,53,63,34,65,65,34,58,34,34,125,44,105,115,68,97,114,107,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,114,103,98,40,41,46,99,111,108,111,114,59,114,101,116,117,114,110,40,50,57,57,42,101,91,48,93,43,53,56,55,42,101,91,49,93,43,49,49,52,42,101,91,50,93,41,47,49,101,51,60,49,50,56,125,44,105,115,76,105,103,104,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,33,116,104,105,115,46,105,115,68,97,114,107,40,41,125,44,110,101,103,97,116,101,58,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,118,97,114,32,101,61,116,104,105,115,46,114,103,98,40,41,44,116,61,48,59,116,60,51,59,116,43,43,41,101,46,99,111,108,111,114,91,116,93,61,50,53,53,45,101,46,99,111,108,111,114,91,116,93,59,114,101,116,117,114,110,32,101,125,44,108,105,103,104,116,101,110,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,116,104,105,115,46,104,115,108,40,41,59,114,101,116,117,114,110,32,116,46,99,111,108,111,114,91,50,93,43,61,116,46,99,111,108,111,114,91,50,93,42,101,44,116,125,44,100,97,114,107,101,110,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,116,104,105,115,46,104,115,108,40,41,59,114,101,116,117,114,110,32,116,46,99,111,108,111,114,91,50,93,45,61,116,46,99,111,108,111,114,91,50,93,42,101,44,116,125,44,115,97,116,117,114,97,116,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,116,104,105,115,46,104,115,108,40,41,59,114,101,116,117,114,110,32,116,46,99,111,108,111,114,91,49,93,43,61,116,46,99,111,108,111,114,91,49,93,42,101,44,116,125,44,100,101,115,97,116,117,114,97,116,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,116,104,105,115,46,104,115,108,40,41,59,114,101,116,117,114,110,32,116,46,99,111,108,111,114,91,49,93,45,61,116,46,99,111,108,111,114,91,49,93,42,101,44,116,125,44,119,104,105,116,101,110,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,116,104,105,115,46,104,119,98,40,41,59,114,101,116,117,114,110,32,116,46,99,111,108,111,114,91,49,93,43,61,116,46,99,111,108,111,114,91,49,93,42,101,44,116,125,44,98,108,97,99,107,101,110,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,116,104,105,115,46,104,119,98,40,41,59,114,101,116,117,114,110,32,116,46,99,111,108,111,114,91,50,93,43,61,116,46,99,111,108,111,114,91,50,93,42,101,44,116,125,44,103,114,97,121,115,99,97,108,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,114,103,98,40,41,46,99,111,108,111,114,44,116,61,46,51,42,101,91,48,93,43,46,53,57,42,101,91,49,93,43,46,49,49,42,101,91,50,93,59,114,101,116,117,114,110,32,114,46,114,103,98,40,116,44,116,44,116,41,125,44,102,97,100,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,97,108,112,104,97,40,116,104,105,115,46,118,97,108,112,104,97,45,116,104,105,115,46,118,97,108,112,104,97,42,101,41,125,44,111,112,97,113,117,101,114,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,97,108,112,104,97,40,116,104,105,115,46,118,97,108,112,104,97,43,116,104,105,115,46,118,97,108,112,104,97,42,101,41,125,44,114,111,116,97,116,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,116,104,105,115,46,104,115,108,40,41,44,111,61,116,46,99,111,108,111,114,91,48,93,59,114,101,116,117,114,110,32,111,61,40,111,43,101,41,37,51,54,48,44,111,61,111,60,48,63,51,54,48,43,111,58,111,44,116,46,99,111,108,111,114,91,48,93,61,111,44,116,125,44,109,105,120,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,102,40,33,101,124,124,33,101,46,114,103,98,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,39,65,114,103,117,109,101,110,116,32,116,111,32,34,109,105,120,34,32,119,97,115,32,110,111,116,32,97,32,67,111,108,111,114,32,105,110,115,116,97,110,99,101,44,32,98,117,116,32,114,97,116,104,101,114,32,97,110,32,105,110,115,116,97,110,99,101,32,111,102,32,39,43,116,121,112,101,111,102,32,101,41,59,118,97,114,32,111,61,101,46,114,103,98,40,41,44,110,61,116,104,105,115,46,114,103,98,40,41,44,105,61,118,111,105,100,32,48,61,61,61,116,63,46,53,58,116,44,97,61,50,42,105,45,49,44,108,61,111,46,97,108,112,104,97,40,41,45,110,46,97,108,112,104,97,40,41,44,115,61,40,40,97,42,108,61,61,45,49,63,97,58,40,97,43,108,41,47,40,49,43,97,42,108,41,41,43,49,41,47,50,44,99,61,49,45,115,59,114,101,116,117,114,110,32,114,46,114,103,98,40,115,42,111,46,114,101,100,40,41,43,99,42,110,46,114,101,100,40,41,44,115,42,111,46,103,114,101,101,110,40,41,43,99,42,110,46,103,114,101,101,110,40,41,44,115,42,111,46,98,108,117,101,40,41,43,99,42,110,46,98,108,117,101,40,41,44,111,46,97,108,112,104,97,40,41,42,105,43,110,46,97,108,112,104,97,40,41,42,40,49,45,105,41,41,125,125,44,79,98,106,101,99,116,46,107,101,121,115,40,104,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,101,41,123,105,102,40,45,49,61,61,61,102,46,105,110,100,101,120,79,102,40,101,41,41,123,118,97,114,32,116,61,104,91,101,93,46,99,104,97,110,110,101,108,115,59,114,46,112,114,111,116,111,116,121,112,101,91,101,93,61,102,117,110,99,116,105,111,110,40,41,123,105,102,40,116,104,105,115,46,109,111,100,101,108,61,61,61,101,41,114,101,116,117,114,110,32,110,101,119,32,114,40,116,104,105,115,41,59,105,102,40,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,114,101,116,117,114,110,32,110,101,119,32,114,40,97,114,103,117,109,101,110,116,115,44,101,41,59,118,97,114,32,111,61,34,110,117,109,98,101,114,34,61,61,116,121,112,101,111,102,32,97,114,103,117,109,101,110,116,115,91,116,93,63,116,58,116,104,105,115,46,118,97,108,112,104,97,59,114,101,116,117,114,110,32,110,101,119,32,114,40,115,40,104,91,116,104,105,115,46,109,111,100,101,108,93,91,101,93,46,114,97,119,40,116,104,105,115,46,99,111,108,111,114,41,41,46,99,111,110,99,97,116,40,111,41,44,101,41,125,44,114,91,101,93,61,102,117,110,99,116,105,111,110,40,111,41,123,114,101,116,117,114,110,34,110,117,109,98,101,114,34,61,61,116,121,112,101,111,102,32,111,38,38,40,111,61,99,40,112,46,99,97,108,108,40,97,114,103,117,109,101,110,116,115,41,44,116,41,41,44,110,101,119,32,114,40,111,44,101,41,125,125,125,41,44,101,46,101,120,112,111,114,116,115,61,114,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,111,41,123,102,117,110,99,116,105,111,110,32,114,40,101,44,116,44,111,41,123,114,101,116,117,114,110,32,77,97,116,104,46,109,105,110,40,77,97,116,104,46,109,97,120,40,116,44,101,41,44,111,41,125,102,117,110,99,116,105,111,110,32,110,40,101,41,123,118,97,114,32,116,61,101,46,116,111,83,116,114,105,110,103,40,49,54,41,46,116,111,85,112,112,101,114,67,97,115,101,40,41,59,114,101,116,117,114,110,32,116,46,108,101,110,103,116,104,60,50,63,34,48,34,43,116,58,116,125,118,97,114,32,105,61,111,40,53,41,44,97,61,111,40,49,56,41,44,108,61,123,125,59,102,111,114,40,118,97,114,32,115,32,105,110,32,105,41,105,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,115,41,38,38,40,108,91,105,91,115,93,93,61,115,41,59,118,97,114,32,99,61,101,46,101,120,112,111,114,116,115,61,123,116,111,58,123,125,44,103,101,116,58,123,125,125,59,99,46,103,101,116,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,44,111,44,114,61,101,46,115,117,98,115,116,114,105,110,103,40,48,44,51,41,46,116,111,76,111,119,101,114,67,97,115,101,40,41,59,115,119,105,116,99,104,40,114,41,123,99,97,115,101,34,104,115,108,34,58,116,61,99,46,103,101,116,46,104,115,108,40,101,41,44,111,61,34,104,115,108,34,59,98,114,101,97,107,59,99,97,115,101,34,104,119,98,34,58,116,61,99,46,103,101,116,46,104,119,98,40,101,41,44,111,61,34,104,119,98,34,59,98,114,101,97,107,59,100,101,102,97,117,108,116,58,116,61,99,46,103,101,116,46,114,103,98,40,101,41,44,111,61,34,114,103,98,34,125,114,101,116,117,114,110,32,116,63,123,109,111,100,101,108,58,111,44,118,97,108,117,101,58,116,125,58,110,117,108,108,125,44,99,46,103,101,116,46,114,103,98,61,102,117,110,99,116,105,111,110,40,101,41,123,105,102,40,33,101,41,114,101,116,117,114,110,32,110,117,108,108,59,118,97,114,32,116,44,111,44,110,44,97,61,47,94,35,40,91,97,45,102,48,45,57,93,123,51,44,52,125,41,36,47,105,44,108,61,47,94,35,40,91,97,45,102,48,45,57,93,123,54,125,41,40,91,97,45,102,48,45,57,93,123,50,125,41,63,36,47,105,44,115,61,47,94,114,103,98,97,63,92,40,92,115,42,40,91,43,45,93,63,92,100,43,41,92,115,42,44,92,115,42,40,91,43,45,93,63,92,100,43,41,92,115,42,44,92,115,42,40,91,43,45,93,63,92,100,43,41,92,115,42,40,63,58,44,92,115,42,40,91,43,45,93,63,91,92,100,92,46,93,43,41,92,115,42,41,63,92,41,36,47,44,99,61,47,94,114,103,98,97,63,92,40,92,115,42,40,91,43,45,93,63,91,92,100,92,46,93,43,41,92,37,92,115,42,44,92,115,42,40,91,43,45,93,63,91,92,100,92,46,93,43,41,92,37,92,115,42,44,92,115,42,40,91,43,45,93,63,91,92,100,92,46,93,43,41,92,37,92,115,42,40,63,58,44,92,115,42,40,91,43,45,93,63,91,92,100,92,46,93,43,41,92,115,42,41,63,92,41,36,47,44,117,61,47,40,92,68,43,41,47,44,104,61,91,48,44,48,44,48,44,49,93,59,105,102,40,116,61,101,46,109,97,116,99,104,40,108,41,41,123,102,111,114,40,110,61,116,91,50,93,44,116,61,116,91,49,93,44,111,61,48,59,111,60,51,59,111,43,43,41,123,118,97,114,32,112,61,50,42,111,59,104,91,111,93,61,112,97,114,115,101,73,110,116,40,116,46,115,108,105,99,101,40,112,44,112,43,50,41,44,49,54,41,125,110,38,38,40,104,91,51,93,61,77,97,116,104,46,114,111,117,110,100,40,112,97,114,115,101,73,110,116,40,110,44,49,54,41,47,50,53,53,42,49,48,48,41,47,49,48,48,41,125,101,108,115,101,32,105,102,40,116,61,101,46,109,97,116,99,104,40,97,41,41,123,102,111,114,40,116,61,116,91,49,93,44,110,61,116,91,51,93,44,111,61,48,59,111,60,51,59,111,43,43,41,104,91,111,93,61,112,97,114,115,101,73,110,116,40,116,91,111,93,43,116,91,111,93,44,49,54,41,59,110,38,38,40,104,91,51,93,61,77,97,116,104,46,114,111,117,110,100,40,112,97,114,115,101,73,110,116,40,110,43,110,44,49,54,41,47,50,53,53,42,49,48,48,41,47,49,48,48,41,125,101,108,115,101,32,105,102,40,116,61,101,46,109,97,116,99,104,40,115,41,41,123,102,111,114,40,111,61,48,59,111,60,51,59,111,43,43,41,104,91,111,93,61,112,97,114,115,101,73,110,116,40,116,91,111,43,49,93,44,48,41,59,116,91,52,93,38,38,40,104,91,51,93,61,112,97,114,115,101,70,108,111,97,116,40,116,91,52,93,41,41,125,101,108,115,101,123,105,102,40,33,40,116,61,101,46,109,97,116,99,104,40,99,41,41,41,114,101,116,117,114,110,40,116,61,101,46,109,97,116,99,104,40,117,41,41,63,34,116,114,97,110,115,112,97,114,101,110,116,34,61,61,61,116,91,49,93,63,91,48,44,48,44,48,44,48,93,58,40,104,61,105,91,116,91,49,93,93,41,63,40,104,91,51,93,61,49,44,104,41,58,110,117,108,108,58,110,117,108,108,59,102,111,114,40,111,61,48,59,111,60,51,59,111,43,43,41,104,91,111,93,61,77,97,116,104,46,114,111,117,110,100,40,50,46,53,53,42,112,97,114,115,101,70,108,111,97,116,40,116,91,111,43,49,93,41,41,59,116,91,52,93,38,38,40,104,91,51,93,61,112,97,114,115,101,70,108,111,97,116,40,116,91,52,93,41,41,125,102,111,114,40,111,61,48,59,111,60,51,59,111,43,43,41,104,91,111,93,61,114,40,104,91,111,93,44,48,44,50,53,53,41,59,114,101,116,117,114,110,32,104,91,51,93,61,114,40,104,91,51,93,44,48,44,49,41,44,104,125,44,99,46,103,101,116,46,104,115,108,61,102,117,110,99,116,105,111,110,40,101,41,123,105,102,40,33,101,41,114,101,116,117,114,110,32,110,117,108,108,59,118,97,114,32,116,61,47,94,104,115,108,97,63,92,40,92,115,42,40,91,43,45,93,63,40,63,58,92,100,42,92,46,41,63,92,100,43,41,40,63,58,100,101,103,41,63,92,115,42,44,92,115,42,40,91,43,45,93,63,91,92,100,92,46,93,43,41,37,92,115,42,44,92,115,42,40,91,43,45,93,63,91,92,100,92,46,93,43,41,37,92,115,42,40,63,58,44,92,115,42,40,91,43,45,93,63,91,92,100,92,46,93,43,41,92,115,42,41,63,92,41,36,47,44,111,61,101,46,109,97,116,99,104,40,116,41,59,105,102,40,111,41,123,118,97,114,32,110,61,112,97,114,115,101,70,108,111,97,116,40,111,91,52,93,41,59,114,101,116,117,114,110,91,40,112,97,114,115,101,70,108,111,97,116,40,111,91,49,93,41,43,51,54,48,41,37,51,54,48,44,114,40,112,97,114,115,101,70,108,111,97,116,40,111,91,50,93,41,44,48,44,49,48,48,41,44,114,40,112,97,114,115,101,70,108,111,97,116,40,111,91,51,93,41,44,48,44,49,48,48,41,44,114,40,105,115,78,97,78,40,110,41,63,49,58,110,44,48,44,49,41,93,125,114,101,116,117,114,110,32,110,117,108,108,125,44,99,46,103,101,116,46,104,119,98,61,102,117,110,99,116,105,111,110,40,101,41,123,105,102,40,33,101,41,114,101,116,117,114,110,32,110,117,108,108,59,118,97,114,32,116,61,47,94,104,119,98,92,40,92,115,42,40,91,43,45,93,63,92,100,42,91,92,46,93,63,92,100,43,41,40,63,58,100,101,103,41,63,92,115,42,44,92,115,42,40,91,43,45,93,63,91,92,100,92,46,93,43,41,37,92,115,42,44,92,115,42,40,91,43,45,93,63,91,92,100,92,46,93,43,41,37,92,115,42,40,63,58,44,92,115,42,40,91,43,45,93,63,91,92,100,92,46,93,43,41,92,115,42,41,63,92,41,36,47,44,111,61,101,46,109,97,116,99,104,40,116,41,59,105,102,40,111,41,123,118,97,114,32,110,61,112,97,114,115,101,70,108,111,97,116,40,111,91,52,93,41,59,114,101,116,117,114,110,91,40,112,97,114,115,101,70,108,111,97,116,40,111,91,49,93,41,37,51,54,48,43,51,54,48,41,37,51,54,48,44,114,40,112,97,114,115,101,70,108,111,97,116,40,111,91,50,93,41,44,48,44,49,48,48,41,44,114,40,112,97,114,115,101,70,108,111,97,116,40,111,91,51,93,41,44,48,44,49,48,48,41,44,114,40,105,115,78,97,78,40,110,41,63,49,58,110,44,48,44,49,41,93,125,114,101,116,117,114,110,32,110,117,108,108,125,44,99,46,116,111,46,104,101,120,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,97,40,97,114,103,117,109,101,110,116,115,41,59,114,101,116,117,114,110,34,35,34,43,110,40,101,91,48,93,41,43,110,40,101,91,49,93,41,43,110,40,101,91,50,93,41,43,40,101,91,51,93,60,49,63,110,40,77,97,116,104,46,114,111,117,110,100,40,50,53,53,42,101,91,51,93,41,41,58,34,34,41,125,44,99,46,116,111,46,114,103,98,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,97,40,97,114,103,117,109,101,110,116,115,41,59,114,101,116,117,114,110,32,101,46,108,101,110,103,116,104,60,52,124,124,49,61,61,61,101,91,51,93,63,34,114,103,98,40,34,43,77,97,116,104,46,114,111,117,110,100,40,101,91,48,93,41,43,34,44,32,34,43,77,97,116,104,46,114,111,117,110,100,40,101,91,49,93,41,43,34,44,32,34,43,77,97,116,104,46,114,111,117,110,100,40,101,91,50,93,41,43,34,41,34,58,34,114,103,98,97,40,34,43,77,97,116,104,46,114,111,117,110,100,40,101,91,48,93,41,43,34,44,32,34,43,77,97,116,104,46,114,111,117,110,100,40,101,91,49,93,41,43,34,44,32,34,43,77,97,116,104,46,114,111,117,110,100,40,101,91,50,93,41,43,34,44,32,34,43,101,91,51,93,43,34,41,34,125,44,99,46,116,111,46,114,103,98,46,112,101,114,99,101,110,116,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,97,40,97,114,103,117,109,101,110,116,115,41,44,116,61,77,97,116,104,46,114,111,117,110,100,40,101,91,48,93,47,50,53,53,42,49,48,48,41,44,111,61,77,97,116,104,46,114,111,117,110,100,40,101,91,49,93,47,50,53,53,42,49,48,48,41,44,114,61,77,97,116,104,46,114,111,117,110,100,40,101,91,50,93,47,50,53,53,42,49,48,48,41,59,114,101,116,117,114,110,32,101,46,108,101,110,103,116,104,60,52,124,124,49,61,61,61,101,91,51,93,63,34,114,103,98,40,34,43,116,43,34,37,44,32,34,43,111,43,34,37,44,32,34,43,114,43,34,37,41,34,58,34,114,103,98,97,40,34,43,116,43,34,37,44,32,34,43,111,43,34,37,44,32,34,43,114,43,34,37,44,32,34,43,101,91,51,93,43,34,41,34,125,44,99,46,116,111,46,104,115,108,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,97,40,97,114,103,117,109,101,110,116,115,41,59,114,101,116,117,114,110,32,101,46,108,101,110,103,116,104,60,52,124,124,49,61,61,61,101,91,51,93,63,34,104,115,108,40,34,43,101,91,48,93,43,34,44,32,34,43,101,91,49,93,43,34,37,44,32,34,43,101,91,50,93,43,34,37,41,34,58,34,104,115,108,97,40,34,43,101,91,48,93,43,34,44,32,34,43,101,91,49,93,43,34,37,44,32,34,43,101,91,50,93,43,34,37,44,32,34,43,101,91,51,93,43,34,41,34,125,44,99,46,116,111,46,104,119,98,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,97,40,97,114,103,117,109,101,110,116,115,41,44,116,61,34,34,59,114,101,116,117,114,110,32,101,46,108,101,110,103,116,104,62,61,52,38,38,49,33,61,61,101,91,51,93,38,38,40,116,61,34,44,32,34,43,101,91,51,93,41,44,34,104,119,98,40,34,43,101,91,48,93,43,34,44,32,34,43,101,91,49,93,43,34,37,44,32,34,43,101,91,50,93,43,34,37,34,43,116,43,34,41,34,125,44,99,46,116,111,46,107,101,121,119,111,114,100,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,108,91,101,46,115,108,105,99,101,40,48,44,51,41,93,125,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,111,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,118,97,114,32,114,61,111,40,49,57,41,44,110,61,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,99,111,110,99,97,116,44,105,61,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,115,108,105,99,101,44,97,61,101,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,101,41,123,102,111,114,40,118,97,114,32,116,61,91,93,44,111,61,48,44,97,61,101,46,108,101,110,103,116,104,59,111,60,97,59,111,43,43,41,123,118,97,114,32,108,61,101,91,111,93,59,114,40,108,41,63,116,61,110,46,99,97,108,108,40,116,44,105,46,99,97,108,108,40,108,41,41,58,116,46,112,117,115,104,40,108,41,125,114,101,116,117,114,110,32,116,125,59,97,46,119,114,97,112,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,101,40,97,40,97,114,103,117,109,101,110,116,115,41,41,125,125,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,111,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,101,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,33,33,101,38,38,40,101,32,105,110,115,116,97,110,99,101,111,102,32,65,114,114,97,121,124,124,65,114,114,97,121,46,105,115,65,114,114,97,121,40,101,41,124,124,101,46,108,101,110,103,116,104,62,61,48,38,38,101,46,115,112,108,105,99,101,32,105,110,115,116,97,110,99,101,111,102,32,70,117,110,99,116,105,111,110,41,125,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,111,41,123,102,117,110,99,116,105,111,110,32,114,40,101,41,123,118,97,114,32,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,118,111,105,100,32,48,61,61,61,116,124,124,110,117,108,108,61,61,61,116,63,116,58,40,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,62,49,38,38,40,116,61,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,115,108,105,99,101,46,99,97,108,108,40,97,114,103,117,109,101,110,116,115,41,41,44,101,40,116,41,41,125,59,114,101,116,117,114,110,34,99,111,110,118,101,114,115,105,111,110,34,105,110,32,101,38,38,40,116,46,99,111,110,118,101,114,115,105,111,110,61,101,46,99,111,110,118,101,114,115,105,111,110,41,44,116,125,102,117,110,99,116,105,111,110,32,110,40,101,41,123,118,97,114,32,116,61,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,118,111,105,100,32,48,61,61,61,116,124,124,110,117,108,108,61,61,61,116,41,114,101,116,117,114,110,32,116,59,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,62,49,38,38,40,116,61,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,115,108,105,99,101,46,99,97,108,108,40,97,114,103,117,109,101,110,116,115,41,41,59,118,97,114,32,111,61,101,40,116,41,59,105,102,40,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,111,41,102,111,114,40,118,97,114,32,114,61,111,46,108,101,110,103,116,104,44,110,61,48,59,110,60,114,59,110,43,43,41,111,91,110,93,61,77,97,116,104,46,114,111,117,110,100,40,111,91,110,93,41,59,114,101,116,117,114,110,32,111,125,59,114,101,116,117,114,110,34,99,111,110,118,101,114,115,105,111,110,34,105,110,32,101,38,38,40,116,46,99,111,110,118,101,114,115,105,111,110,61,101,46,99,111,110,118,101,114,115,105,111,110,41,44,116,125,118,97,114,32,105,61,111,40,54,41,44,97,61,111,40,50,49,41,44,108,61,123,125,59,79,98,106,101,99,116,46,107,101,121,115,40,105,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,101,41,123,108,91,101,93,61,123,125,44,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,108,91,101,93,44,34,99,104,97,110,110,101,108,115,34,44,123,118,97,108,117,101,58,105,91,101,93,46,99,104,97,110,110,101,108,115,125,41,44,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,108,91,101,93,44,34,108,97,98,101,108,115,34,44,123,118,97,108,117,101,58,105,91,101,93,46,108,97,98,101,108,115,125,41,59,118,97,114,32,116,61,97,40,101,41,59,79,98,106,101,99,116,46,107,101,121,115,40,116,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,111,41,123,118,97,114,32,105,61,116,91,111,93,59,108,91,101,93,91,111,93,61,110,40,105,41,44,108,91,101,93,91,111,93,46,114,97,119,61,114,40,105,41,125,41,125,41,44,101,46,101,120,112,111,114,116,115,61,108,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,111,41,123,102,117,110,99,116,105,111,110,32,114,40,41,123,102,111,114,40,118,97,114,32,101,61,123,125,44,116,61,79,98,106,101,99,116,46,107,101,121,115,40,108,41,44,111,61,116,46,108,101,110,103,116,104,44,114,61,48,59,114,60,111,59,114,43,43,41,101,91,116,91,114,93,93,61,123,100,105,115,116,97,110,99,101,58,45,49,44,112,97,114,101,110,116,58,110,117,108,108,125,59,114,101,116,117,114,110,32,101,125,102,117,110,99,116,105,111,110,32,110,40,101,41,123,118,97,114,32,116,61,114,40,41,44,111,61,91,101,93,59,102,111,114,40,116,91,101,93,46,100,105,115,116,97,110,99,101,61,48,59,111,46,108,101,110,103,116,104,59,41,102,111,114,40,118,97,114,32,110,61,111,46,112,111,112,40,41,44,105,61,79,98,106,101,99,116,46,107,101,121,115,40,108,91,110,93,41,44,97,61,105,46,108,101,110,103,116,104,44,115,61,48,59,115,60,97,59,115,43,43,41,123,118,97,114,32,99,61,105,91,115,93,44,117,61,116,91,99,93,59,45,49,61,61,61,117,46,100,105,115,116,97,110,99,101,38,38,40,117,46,100,105,115,116,97,110,99,101,61,116,91,110,93,46,100,105,115,116,97,110,99,101,43,49,44,117,46,112,97,114,101,110,116,61,110,44,111,46,117,110,115,104,105,102,116,40,99,41,41,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,105,40,101,44,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,111,41,123,114,101,116,117,114,110,32,116,40,101,40,111,41,41,125,125,102,117,110,99,116,105,111,110,32,97,40,101,44,116,41,123,102,111,114,40,118,97,114,32,111,61,91,116,91,101,93,46,112,97,114,101,110,116,44,101,93,44,114,61,108,91,116,91,101,93,46,112,97,114,101,110,116,93,91,101,93,44,110,61,116,91,101,93,46,112,97,114,101,110,116,59,116,91,110,93,46,112,97,114,101,110,116,59,41,111,46,117,110,115,104,105,102,116,40,116,91,110,93,46,112,97,114,101,110,116,41,44,114,61,105,40,108,91,116,91,110,93,46,112,97,114,101,110,116,93,91,110,93,44,114,41,44,110,61,116,91,110,93,46,112,97,114,101,110,116,59,114,101,116,117,114,110,32,114,46,99,111,110,118,101,114,115,105,111,110,61,111,44,114,125,118,97,114,32,108,61,111,40,54,41,59,101,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,101,41,123,102,111,114,40,118,97,114,32,116,61,110,40,101,41,44,111,61,123,125,44,114,61,79,98,106,101,99,116,46,107,101,121,115,40,116,41,44,105,61,114,46,108,101,110,103,116,104,44,108,61,48,59,108,60,105,59,108,43,43,41,123,118,97,114,32,115,61,114,91,108,93,59,110,117,108,108,33,61,61,116,91,115,93,46,112,97,114,101,110,116,38,38,40,111,91,115,93,61,97,40,115,44,116,41,41,125,114,101,116,117,114,110,32,111,125,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,111,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,102,117,110,99,116,105,111,110,32,114,40,101,41,123,114,101,116,117,114,110,32,101,38,38,101,46,95,95,101,115,77,111,100,117,108,101,63,101,58,123,100,101,102,97,117,108,116,58,101,125,125,102,117,110,99,116,105,111,110,32,110,40,101,44,116,41,123,105,102,40,33,40,101,32,105,110,115,116,97,110,99,101,111,102,32,116,41,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,67,97,110,110,111,116,32,99,97,108,108,32,97,32,99,108,97,115,115,32,97,115,32,97,32,102,117,110,99,116,105,111,110,34,41,125,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,44,34,95,95,101,115,77,111,100,117,108,101,34,44,123,118,97,108,117,101,58,33,48,125,41,59,118,97,114,32,105,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,101,40,101,44,116,41,123,102,111,114,40,118,97,114,32,111,61,48,59,111,60,116,46,108,101,110,103,116,104,59,111,43,43,41,123,118,97,114,32,114,61,116,91,111,93,59,114,46,101,110,117,109,101,114,97,98,108,101,61,114,46,101,110,117,109,101,114,97,98,108,101,124,124,33,49,44,114,46,99,111,110,102,105,103,117,114,97,98,108,101,61,33,48,44,34,118,97,108,117,101,34,105,110,32,114,38,38,40,114,46,119,114,105,116,97,98,108,101,61,33,48,41,44,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,101,44,114,46,107,101,121,44,114,41,125,125,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,44,111,44,114,41,123,114,101,116,117,114,110,32,111,38,38,101,40,116,46,112,114,111,116,111,116,121,112,101,44,111,41,44,114,38,38,101,40,116,44,114,41,44,116,125,125,40,41,44,97,61,111,40,48,41,44,108,61,114,40,97,41,44,115,61,111,40,50,41,44,99,61,114,40,115,41,44,117,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,101,40,116,41,123,110,40,116,104,105,115,44,101,41,44,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,61,116,125,114,101,116,117,114,110,32,105,40,101,44,91,123,107,101,121,58,34,98,105,110,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,105,102,40,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,111,112,116,105,111,110,115,46,99,111,108,111,114,41,114,101,116,117,114,110,32,118,111,105,100,40,116,104,105,115,46,99,111,108,111,114,61,116,104,105,115,46,99,114,101,97,116,101,67,111,108,111,114,40,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,111,112,116,105,111,110,115,46,99,111,108,111,114,41,41,59,33,116,104,105,115,46,99,111,108,111,114,38,38,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,105,110,112,117,116,72,97,110,100,108,101,114,46,103,101,116,86,97,108,117,101,40,41,38,38,40,116,104,105,115,46,99,111,108,111,114,61,116,104,105,115,46,99,114,101,97,116,101,67,111,108,111,114,40,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,105,110,112,117,116,72,97,110,100,108,101,114,46,103,101,116,86,97,108,117,101,40,41,44,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,111,112,116,105,111,110,115,46,97,117,116,111,73,110,112,117,116,70,97,108,108,98,97,99,107,41,41,125,125,44,123,107,101,121,58,34,117,110,98,105,110,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,101,108,101,109,101,110,116,46,114,101,109,111,118,101,68,97,116,97,40,34,99,111,108,111,114,34,41,125,125,44,123,107,101,121,58,34,103,101,116,67,111,108,111,114,83,116,114,105,110,103,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,104,97,115,67,111,108,111,114,40,41,63,116,104,105,115,46,99,111,108,111,114,46,115,116,114,105,110,103,40,116,104,105,115,46,102,111,114,109,97,116,41,58,34,34,125,125,44,123,107,101,121,58,34,115,101,116,67,111,108,111,114,83,116,114,105,110,103,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,63,116,104,105,115,46,99,114,101,97,116,101,67,111,108,111,114,40,101,41,58,110,117,108,108,59,116,104,105,115,46,99,111,108,111,114,61,116,124,124,110,117,108,108,125,125,44,123,107,101,121,58,34,99,114,101,97,116,101,67,111,108,111,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,33,40,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,62,49,38,38,118,111,105,100,32,48,33,61,61,97,114,103,117,109,101,110,116,115,91,49,93,41,124,124,97,114,103,117,109,101,110,116,115,91,49,93,44,111,61,110,101,119,32,99,46,100,101,102,97,117,108,116,40,116,104,105,115,46,114,101,115,111,108,118,101,67,111,108,111,114,68,101,108,101,103,97,116,101,40,101,41,44,116,104,105,115,46,102,111,114,109,97,116,41,59,114,101,116,117,114,110,32,111,46,105,115,86,97,108,105,100,40,41,124,124,40,116,38,38,40,111,61,116,104,105,115,46,103,101,116,70,97,108,108,98,97,99,107,67,111,108,111,114,40,41,41,44,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,116,114,105,103,103,101,114,40,34,99,111,108,111,114,112,105,99,107,101,114,73,110,118,97,108,105,100,34,44,111,44,101,41,41,44,116,104,105,115,46,105,115,65,108,112,104,97,69,110,97,98,108,101,100,40,41,124,124,40,111,46,97,108,112,104,97,61,49,41,44,111,125,125,44,123,107,101,121,58,34,103,101,116,70,97,108,108,98,97,99,107,67,111,108,111,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,105,102,40,116,104,105,115,46,102,97,108,108,98,97,99,107,38,38,116,104,105,115,46,102,97,108,108,98,97,99,107,61,61,61,116,104,105,115,46,99,111,108,111,114,41,114,101,116,117,114,110,32,116,104,105,115,46,99,111,108,111,114,59,118,97,114,32,101,61,116,104,105,115,46,114,101,115,111,108,118,101,67,111,108,111,114,68,101,108,101,103,97,116,101,40,116,104,105,115,46,102,97,108,108,98,97,99,107,41,44,116,61,110,101,119,32,99,46,100,101,102,97,117,108,116,40,101,44,116,104,105,115,46,102,111,114,109,97,116,41,59,114,101,116,117,114,110,32,116,46,105,115,86,97,108,105,100,40,41,63,116,58,40,99,111,110,115,111,108,101,46,119,97,114,110,40,34,84,104,101,32,102,97,108,108,98,97,99,107,32,99,111,108,111,114,32,105,115,32,105,110,118,97,108,105,100,46,32,70,97,108,108,105,110,103,32,98,97,99,107,32,116,111,32,116,104,101,32,112,114,101,118,105,111,117,115,32,99,111,108,111,114,32,111,114,32,98,108,97,99,107,32,105,102,32,97,110,121,46,34,41,44,116,104,105,115,46,99,111,108,111,114,63,116,104,105,115,46,99,111,108,111,114,58,110,101,119,32,99,46,100,101,102,97,117,108,116,40,34,35,48,48,48,48,48,48,34,44,116,104,105,115,46,102,111,114,109,97,116,41,41,125,125,44,123,107,101,121,58,34,97,115,115,117,114,101,67,111,108,111,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,104,97,115,67,111,108,111,114,40,41,124,124,40,116,104,105,115,46,99,111,108,111,114,61,116,104,105,115,46,103,101,116,70,97,108,108,98,97,99,107,67,111,108,111,114,40,41,41,44,116,104,105,115,46,99,111,108,111,114,125,125,44,123,107,101,121,58,34,114,101,115,111,108,118,101,67,111,108,111,114,68,101,108,101,103,97,116,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,33,40,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,62,49,38,38,118,111,105,100,32,48,33,61,61,97,114,103,117,109,101,110,116,115,91,49,93,41,124,124,97,114,103,117,109,101,110,116,115,91,49,93,44,111,61,33,49,59,114,101,116,117,114,110,32,108,46,100,101,102,97,117,108,116,46,101,97,99,104,40,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,101,120,116,101,110,115,105,111,110,115,44,102,117,110,99,116,105,111,110,40,114,44,110,41,123,33,49,61,61,61,111,38,38,40,111,61,110,46,114,101,115,111,108,118,101,67,111,108,111,114,40,101,44,116,41,41,125,41,44,111,124,124,101,125,125,44,123,107,101,121,58,34,105,115,73,110,118,97,108,105,100,67,111,108,111,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,33,116,104,105,115,46,104,97,115,67,111,108,111,114,40,41,124,124,33,116,104,105,115,46,99,111,108,111,114,46,105,115,86,97,108,105,100,40,41,125,125,44,123,107,101,121,58,34,105,115,65,108,112,104,97,69,110,97,98,108,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,33,49,33,61,61,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,111,112,116,105,111,110,115,46,117,115,101,65,108,112,104,97,125,125,44,123,107,101,121,58,34,104,97,115,67,111,108,111,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,99,111,108,111,114,32,105,110,115,116,97,110,99,101,111,102,32,99,46,100,101,102,97,117,108,116,125,125,44,123,107,101,121,58,34,102,97,108,108,98,97,99,107,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,111,112,116,105,111,110,115,46,102,97,108,108,98,97,99,107,67,111,108,111,114,63,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,111,112,116,105,111,110,115,46,102,97,108,108,98,97,99,107,67,111,108,111,114,58,116,104,105,115,46,104,97,115,67,111,108,111,114,40,41,63,116,104,105,115,46,99,111,108,111,114,58,110,117,108,108,125,125,44,123,107,101,121,58,34,102,111,114,109,97,116,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,111,112,116,105,111,110,115,46,102,111,114,109,97,116,63,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,111,112,116,105,111,110,115,46,102,111,114,109,97,116,58,116,104,105,115,46,104,97,115,67,111,108,111,114,40,41,38,38,116,104,105,115,46,99,111,108,111,114,46,104,97,115,84,114,97,110,115,112,97,114,101,110,99,121,40,41,38,38,116,104,105,115,46,99,111,108,111,114,46,102,111,114,109,97,116,46,109,97,116,99,104,40,47,94,104,101,120,47,41,63,116,104,105,115,46,105,115,65,108,112,104,97,69,110,97,98,108,101,100,40,41,63,34,114,103,98,97,34,58,34,104,101,120,34,58,116,104,105,115,46,104,97,115,67,111,108,111,114,40,41,63,116,104,105,115,46,99,111,108,111,114,46,102,111,114,109,97,116,58,34,114,103,98,34,125,125,44,123,107,101,121,58,34,99,111,108,111,114,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,101,108,101,109,101,110,116,46,100,97,116,97,40,34,99,111,108,111,114,34,41,125,44,115,101,116,58,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,101,108,101,109,101,110,116,46,100,97,116,97,40,34,99,111,108,111,114,34,44,101,41,44,101,32,105,110,115,116,97,110,99,101,111,102,32,99,46,100,101,102,97,117,108,116,38,38,34,97,117,116,111,34,61,61,61,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,111,112,116,105,111,110,115,46,102,111,114,109,97,116,38,38,40,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,111,112,116,105,111,110,115,46,102,111,114,109,97,116,61,116,104,105,115,46,99,111,108,111,114,46,102,111,114,109,97,116,41,125,125,93,41,44,101,125,40,41,59,116,46,100,101,102,97,117,108,116,61,117,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,111,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,102,117,110,99,116,105,111,110,32,114,40,101,44,116,41,123,105,102,40,33,40,101,32,105,110,115,116,97,110,99,101,111,102,32,116,41,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,67,97,110,110,111,116,32,99,97,108,108,32,97,32,99,108,97,115,115,32,97,115,32,97,32,102,117,110,99,116,105,111,110,34,41,125,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,44,34,95,95,101,115,77,111,100,117,108,101,34,44,123,118,97,108,117,101,58,33,48,125,41,59,118,97,114,32,110,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,101,40,101,44,116,41,123,102,111,114,40,118,97,114,32,111,61,48,59,111,60,116,46,108,101,110,103,116,104,59,111,43,43,41,123,118,97,114,32,114,61,116,91,111,93,59,114,46,101,110,117,109,101,114,97,98,108,101,61,114,46,101,110,117,109,101,114,97,98,108,101,124,124,33,49,44,114,46,99,111,110,102,105,103,117,114,97,98,108,101,61,33,48,44,34,118,97,108,117,101,34,105,110,32,114,38,38,40,114,46,119,114,105,116,97,98,108,101,61,33,48,41,44,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,101,44,114,46,107,101,121,44,114,41,125,125,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,44,111,44,114,41,123,114,101,116,117,114,110,32,111,38,38,101,40,116,46,112,114,111,116,111,116,121,112,101,44,111,41,44,114,38,38,101,40,116,44,114,41,44,116,125,125,40,41,44,105,61,111,40,48,41,44,97,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,38,38,101,46,95,95,101,115,77,111,100,117,108,101,63,101,58,123,100,101,102,97,117,108,116,58,101,125,125,40,105,41,44,108,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,101,40,116,41,123,114,40,116,104,105,115,44,101,41,44,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,61,116,44,116,104,105,115,46,112,105,99,107,101,114,61,110,117,108,108,125,114,101,116,117,114,110,32,110,40,101,44,91,123,107,101,121,58,34,98,105,110,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,112,105,99,107,101,114,61,40,48,44,97,46,100,101,102,97,117,108,116,41,40,116,104,105,115,46,111,112,116,105,111,110,115,46,116,101,109,112,108,97,116,101,41,59,116,104,105,115,46,111,112,116,105,111,110,115,46,99,117,115,116,111,109,67,108,97,115,115,38,38,101,46,97,100,100,67,108,97,115,115,40,116,104,105,115,46,111,112,116,105,111,110,115,46,99,117,115,116,111,109,67,108,97,115,115,41,44,116,104,105,115,46,111,112,116,105,111,110,115,46,104,111,114,105,122,111,110,116,97,108,38,38,101,46,97,100,100,67,108,97,115,115,40,34,99,111,108,111,114,112,105,99,107,101,114,45,104,111,114,105,122,111,110,116,97,108,34,41,44,116,104,105,115,46,95,115,117,112,112,111,114,116,115,65,108,112,104,97,66,97,114,40,41,63,40,116,104,105,115,46,111,112,116,105,111,110,115,46,117,115,101,65,108,112,104,97,61,33,48,44,101,46,97,100,100,67,108,97,115,115,40,34,99,111,108,111,114,112,105,99,107,101,114,45,119,105,116,104,45,97,108,112,104,97,34,41,41,58,116,104,105,115,46,111,112,116,105,111,110,115,46,117,115,101,65,108,112,104,97,61,33,49,125,125,44,123,107,101,121,58,34,97,116,116,97,99,104,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,99,111,110,116,97,105,110,101,114,63,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,99,111,110,116,97,105,110,101,114,58,110,117,108,108,59,101,38,38,116,104,105,115,46,112,105,99,107,101,114,46,97,112,112,101,110,100,84,111,40,101,41,125,125,44,123,107,101,121,58,34,117,110,98,105,110,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,112,105,99,107,101,114,46,114,101,109,111,118,101,40,41,125,125,44,123,107,101,121,58,34,95,115,117,112,112,111,114,116,115,65,108,112,104,97,66,97,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,40,116,104,105,115,46,111,112,116,105,111,110,115,46,117,115,101,65,108,112,104,97,124,124,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,99,111,108,111,114,72,97,110,100,108,101,114,46,104,97,115,67,111,108,111,114,40,41,38,38,116,104,105,115,46,99,111,108,111,114,46,104,97,115,84,114,97,110,115,112,97,114,101,110,99,121,40,41,41,38,38,33,49,33,61,61,116,104,105,115,46,111,112,116,105,111,110,115,46,117,115,101,65,108,112,104,97,38,38,40,33,116,104,105,115,46,111,112,116,105,111,110,115,46,102,111,114,109,97,116,124,124,116,104,105,115,46,111,112,116,105,111,110,115,46,102,111,114,109,97,116,38,38,33,116,104,105,115,46,111,112,116,105,111,110,115,46,102,111,114,109,97,116,46,109,97,116,99,104,40,47,94,104,101,120,40,91,51,54,93,41,63,36,47,105,41,41,125,125,44,123,107,101,121,58,34,117,112,100,97,116,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,105,102,40,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,99,111,108,111,114,72,97,110,100,108,101,114,46,104,97,115,67,111,108,111,114,40,41,41,123,118,97,114,32,101,61,33,48,33,61,61,116,104,105,115,46,111,112,116,105,111,110,115,46,104,111,114,105,122,111,110,116,97,108,44,116,61,101,63,116,104,105,115,46,111,112,116,105,111,110,115,46,115,108,105,100,101,114,115,58,116,104,105,115,46,111,112,116,105,111,110,115,46,115,108,105,100,101,114,115,72,111,114,122,44,111,61,116,104,105,115,46,112,105,99,107,101,114,46,102,105,110,100,40,34,46,99,111,108,111,114,112,105,99,107,101,114,45,115,97,116,117,114,97,116,105,111,110,32,46,99,111,108,111,114,112,105,99,107,101,114,45,103,117,105,100,101,34,41,44,114,61,116,104,105,115,46,112,105,99,107,101,114,46,102,105,110,100,40,34,46,99,111,108,111,114,112,105,99,107,101,114,45,104,117,101,32,46,99,111,108,111,114,112,105,99,107,101,114,45,103,117,105,100,101,34,41,44,110,61,116,104,105,115,46,112,105,99,107,101,114,46,102,105,110,100,40,34,46,99,111,108,111,114,112,105,99,107,101,114,45,97,108,112,104,97,32,46,99,111,108,111,114,112,105,99,107,101,114,45,103,117,105,100,101,34,41,44,105,61,116,104,105,115,46,99,111,108,111,114,46,116,111,72,115,118,97,82,97,116,105,111,40,41,59,114,46,108,101,110,103,116,104,38,38,114,46,99,115,115,40,101,63,34,116,111,112,34,58,34,108,101,102,116,34,44,40,101,63,116,46,104,117,101,46,109,97,120,84,111,112,58,116,46,104,117,101,46,109,97,120,76,101,102,116,41,42,40,49,45,105,46,104,41,41,44,110,46,108,101,110,103,116,104,38,38,110,46,99,115,115,40,101,63,34,116,111,112,34,58,34,108,101,102,116,34,44,40,101,63,116,46,97,108,112,104,97,46,109,97,120,84,111,112,58,116,46,97,108,112,104,97,46,109,97,120,76,101,102,116,41,42,40,49,45,105,46,97,41,41,44,111,46,108,101,110,103,116,104,38,38,111,46,99,115,115,40,123,116,111,112,58,116,46,115,97,116,117,114,97,116,105,111,110,46,109,97,120,84,111,112,45,105,46,118,42,116,46,115,97,116,117,114,97,116,105,111,110,46,109,97,120,84,111,112,44,108,101,102,116,58,105,46,115,42,116,46,115,97,116,117,114,97,116,105,111,110,46,109,97,120,76,101,102,116,125,41,44,116,104,105,115,46,112,105,99,107,101,114,46,102,105,110,100,40,34,46,99,111,108,111,114,112,105,99,107,101,114,45,115,97,116,117,114,97,116,105,111,110,34,41,46,99,115,115,40,34,98,97,99,107,103,114,111,117,110,100,67,111,108,111,114,34,44,116,104,105,115,46,99,111,108,111,114,46,103,101,116,67,108,111,110,101,72,117,101,79,110,108,121,40,41,46,116,111,72,101,120,83,116,114,105,110,103,40,41,41,59,118,97,114,32,97,61,116,104,105,115,46,99,111,108,111,114,46,116,111,72,101,120,83,116,114,105,110,103,40,41,44,108,61,34,34,59,108,61,116,104,105,115,46,111,112,116,105,111,110,115,46,104,111,114,105,122,111,110,116,97,108,63,34,108,105,110,101,97,114,45,103,114,97,100,105,101,110,116,40,116,111,32,114,105,103,104,116,44,32,34,43,97,43,34,32,48,37,44,32,116,114,97,110,115,112,97,114,101,110,116,32,49,48,48,37,41,34,58,34,108,105,110,101,97,114,45,103,114,97,100,105,101,110,116,40,116,111,32,98,111,116,116,111,109,44,32,34,43,97,43,34,32,48,37,44,32,116,114,97,110,115,112,97,114,101,110,116,32,49,48,48,37,41,34,44,116,104,105,115,46,112,105,99,107,101,114,46,102,105,110,100,40,34,46,99,111,108,111,114,112,105,99,107,101,114,45,97,108,112,104,97,45,99,111,108,111,114,34,41,46,99,115,115,40,34,98,97,99,107,103,114,111,117,110,100,34,44,108,41,125,125,125,44,123,107,101,121,58,34,111,112,116,105,111,110,115,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,111,112,116,105,111,110,115,125,125,44,123,107,101,121,58,34,99,111,108,111,114,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,99,111,108,111,114,72,97,110,100,108,101,114,46,99,111,108,111,114,125,125,93,41,44,101,125,40,41,59,116,46,100,101,102,97,117,108,116,61,108,125,44,102,117,110,99,116,105,111,110,40,101,44,116,44,111,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,102,117,110,99,116,105,111,110,32,114,40,101,44,116,41,123,105,102,40,33,40,101,32,105,110,115,116,97,110,99,101,111,102,32,116,41,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,67,97,110,110,111,116,32,99,97,108,108,32,97,32,99,108,97,115,115,32,97,115,32,97,32,102,117,110,99,116,105,111,110,34,41,125,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,44,34,95,95,101,115,77,111,100,117,108,101,34,44,123,118,97,108,117,101,58,33,48,125,41,59,118,97,114,32,110,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,101,40,101,44,116,41,123,102,111,114,40,118,97,114,32,111,61,48,59,111,60,116,46,108,101,110,103,116,104,59,111,43,43,41,123,118,97,114,32,114,61,116,91,111,93,59,114,46,101,110,117,109,101,114,97,98,108,101,61,114,46,101,110,117,109,101,114,97,98,108,101,124,124,33,49,44,114,46,99,111,110,102,105,103,117,114,97,98,108,101,61,33,48,44,34,118,97,108,117,101,34,105,110,32,114,38,38,40,114,46,119,114,105,116,97,98,108,101,61,33,48,41,44,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,101,44,114,46,107,101,121,44,114,41,125,125,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,44,111,44,114,41,123,114,101,116,117,114,110,32,111,38,38,101,40,116,46,112,114,111,116,111,116,121,112,101,44,111,41,44,114,38,38,101,40,116,44,114,41,44,116,125,125,40,41,44,105,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,101,40,116,41,123,114,40,116,104,105,115,44,101,41,44,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,61,116,44,116,104,105,115,46,97,100,100,111,110,61,110,117,108,108,125,114,101,116,117,114,110,32,110,40,101,44,91,123,107,101,121,58,34,104,97,115,65,100,100,111,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,33,33,116,104,105,115,46,97,100,100,111,110,125,125,44,123,107,101,121,58,34,98,105,110,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,97,100,100,111,110,61,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,111,112,116,105,111,110,115,46,97,100,100,111,110,63,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,101,108,101,109,101,110,116,46,102,105,110,100,40,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,111,112,116,105,111,110,115,46,97,100,100,111,110,41,58,110,117,108,108,44,116,104,105,115,46,97,100,100,111,110,38,38,48,61,61,61,116,104,105,115,46,97,100,100,111,110,46,108,101,110,103,116,104,38,38,40,116,104,105,115,46,97,100,100,111,110,61,110,117,108,108,41,125,125,44,123,107,101,121,58,34,117,110,98,105,110,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,104,97,115,65,100,100,111,110,40,41,38,38,116,104,105,115,46,97,100,100,111,110,46,111,102,102,40,34,46,99,111,108,111,114,112,105,99,107,101,114,34,41,125,125,44,123,107,101,121,58,34,117,112,100,97,116,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,105,102,40,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,99,111,108,111,114,72,97,110,100,108,101,114,46,104,97,115,67,111,108,111,114,40,41,38,38,116,104,105,115,46,104,97,115,65,100,100,111,110,40,41,41,123,118,97,114,32,101,61,116,104,105,115,46,99,111,108,111,114,112,105,99,107,101,114,46,99,111,108,111,114,72,97,110,100,108,101,114,46,103,101,116,67,111,108,111,114,83,116,114,105,110,103,40,41,44,116,61,123,98,97,99,107,103,114,111,117,110,100,58,101,125,44,111,61,116,104,105,115,46,97,100,100,111,110,46,102,105,110,100,40,34,105,34,41,46,101,113,40,48,41,59,111,46,108,101,110,103,116,104,62,48,63,111,46,99,115,115,40,116,41,58,116,104,105,115,46,97,100,100,111,110,46,99,115,115,40,116,41,125,125,125,93,41,44,101,125,40,41,59,116,46,100,101,102,97,117,108,116,61,105,125,93,41,125,41,59,33,102,117,110,99,116,105,111,110,32,116,40,101,44,110,44,114,41,123,102,117,110,99,116,105,111,110,32,111,40,115,44,117,41,123,105,102,40,33,110,91,115,93,41,123,105,102,40,33,101,91,115,93,41,123,118,97,114,32,108,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,114,101,113,117,105,114,101,38,38,114,101,113,117,105,114,101,59,105,102,40,33,117,38,38,108,41,114,101,116,117,114,110,32,108,40,115,44,33,48,41,59,105,102,40,105,41,114,101,116,117,114,110,32,105,40,115,44,33,48,41,59,118,97,114,32,97,61,110,101,119,32,69,114,114,111,114,40,34,67,97,110,110,111,116,32,102,105,110,100,32,109,111,100,117,108,101,32,39,34,43,115,43,34,39,34,41,59,116,104,114,111,119,32,97,46,99,111,100,101,61,34,77,79,68,85,76,69,95,78,79,84,95,70,79,85,78,68,34,44,97,125,118,97,114,32,112,61,110,91,115,93,61,123,101,120,112,111,114,116,115,58,123,125,125,59,101,91,115,93,91,48,93,46,99,97,108,108,40,112,46,101,120,112,111,114,116,115,44,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,101,91,115,93,91,49,93,91,116,93,59,114,101,116,117,114,110,32,111,40,110,63,110,58,116,41,125,44,112,44,112,46,101,120,112,111,114,116,115,44,116,44,101,44,110,44,114,41,125,114,101,116,117,114,110,32,110,91,115,93,46,101,120,112,111,114,116,115,125,102,111,114,40,118,97,114,32,105,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,114,101,113,117,105,114,101,38,38,114,101,113,117,105,114,101,44,115,61,48,59,115,60,114,46,108,101,110,103,116,104,59,115,43,43,41,111,40,114,91,115,93,41,59,114,101,116,117,114,110,32,111,125,40,123,49,58,91,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,114,44,111,61,116,104,105,115,38,38,116,104,105,115,46,95,95,101,120,116,101,110,100,115,124,124,102,117,110,99,116,105,111,110,40,116,44,101,41,123,102,117,110,99,116,105,111,110,32,110,40,41,123,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,61,116,125,102,111,114,40,118,97,114,32,114,32,105,110,32,101,41,101,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,114,41,38,38,40,116,91,114,93,61,101,91,114,93,41,59,116,46,112,114,111,116,111,116,121,112,101,61,110,117,108,108,61,61,61,101,63,79,98,106,101,99,116,46,99,114,101,97,116,101,40,101,41,58,40,110,46,112,114,111,116,111,116,121,112,101,61,101,46,112,114,111,116,111,116,121,112,101,44,110,101,119,32,110,41,125,59,33,102,117,110,99,116,105,111,110,40,116,41,123,102,117,110,99,116,105,111,110,32,101,40,116,41,123,114,101,116,117,114,110,91,93,46,115,108,105,99,101,46,99,97,108,108,40,116,41,125,102,117,110,99,116,105,111,110,32,110,40,116,44,101,44,110,41,123,105,102,40,119,105,110,100,111,119,46,67,117,115,116,111,109,69,118,101,110,116,41,118,97,114,32,114,61,110,101,119,32,67,117,115,116,111,109,69,118,101,110,116,40,101,44,123,100,101,116,97,105,108,58,110,125,41,59,101,108,115,101,123,118,97,114,32,114,61,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,118,101,110,116,40,34,67,117,115,116,111,109,69,118,101,110,116,34,41,59,114,46,105,110,105,116,67,117,115,116,111,109,69,118,101,110,116,40,101,44,33,48,44,33,48,44,110,41,125,114,101,116,117,114,110,32,116,46,100,105,115,112,97,116,99,104,69,118,101,110,116,40,114,41,125,118,97,114,32,114,61,123,114,117,108,101,114,67,108,97,115,115,78,97,109,101,58,34,98,114,105,99,107,108,97,121,101,114,45,99,111,108,117,109,110,45,115,105,122,101,114,34,44,99,111,108,117,109,110,67,108,97,115,115,78,97,109,101,58,34,98,114,105,99,107,108,97,121,101,114,45,99,111,108,117,109,110,34,125,44,105,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,116,40,116,41,123,116,104,105,115,46,101,108,101,109,101,110,116,61,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,44,116,104,105,115,46,101,108,101,109,101,110,116,46,99,108,97,115,115,78,97,109,101,61,116,125,114,101,116,117,114,110,32,116,46,112,114,111,116,111,116,121,112,101,46,100,101,115,116,114,111,121,61,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,101,108,101,109,101,110,116,46,112,97,114,101,110,116,78,111,100,101,46,114,101,109,111,118,101,67,104,105,108,100,40,116,104,105,115,46,101,108,101,109,101,110,116,41,125,44,116,125,40,41,44,115,61,102,117,110,99,116,105,111,110,40,116,41,123,102,117,110,99,116,105,111,110,32,101,40,41,123,116,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,125,114,101,116,117,114,110,32,111,40,101,44,116,41,44,101,46,112,114,111,116,111,116,121,112,101,46,103,101,116,87,105,100,116,104,61,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,101,108,101,109,101,110,116,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,115,116,121,108,101,34,44,34,92,110,32,32,32,32,32,32,32,32,100,105,115,112,108,97,121,58,32,98,108,111,99,107,59,92,110,32,32,32,32,32,32,32,32,118,105,115,105,98,105,108,105,116,121,58,32,104,105,100,100,101,110,32,33,105,109,112,111,114,116,97,110,116,59,92,110,32,32,32,32,32,32,32,32,116,111,112,58,32,45,49,48,48,48,112,120,32,33,105,109,112,111,114,116,97,110,116,59,92,110,32,32,32,32,32,32,34,41,59,118,97,114,32,116,61,116,104,105,115,46,101,108,101,109,101,110,116,46,111,102,102,115,101,116,87,105,100,116,104,59,114,101,116,117,114,110,32,116,104,105,115,46,101,108,101,109,101,110,116,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,40,34,115,116,121,108,101,34,41,44,116,125,44,101,125,40,105,41,44,117,61,102,117,110,99,116,105,111,110,40,116,41,123,102,117,110,99,116,105,111,110,32,101,40,41,123,116,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,125,114,101,116,117,114,110,32,111,40,101,44,116,41,44,101,125,40,105,41,44,108,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,116,40,116,44,101,41,123,118,111,105,100,32,48,61,61,61,101,38,38,40,101,61,114,41,44,116,104,105,115,46,101,108,101,109,101,110,116,61,116,44,116,104,105,115,46,111,112,116,105,111,110,115,61,101,44,116,104,105,115,46,98,117,105,108,100,40,41,44,116,104,105,115,46,98,117,105,108,100,82,101,115,112,111,110,115,105,118,101,40,41,125,114,101,116,117,114,110,32,116,46,112,114,111,116,111,116,121,112,101,46,97,112,112,101,110,100,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,116,104,105,115,59,105,102,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,116,41,41,114,101,116,117,114,110,32,118,111,105,100,32,116,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,46,97,112,112,101,110,100,40,116,41,125,41,59,118,97,114,32,114,61,116,104,105,115,46,102,105,110,100,77,105,110,72,101,105,103,104,116,67,111,108,117,109,110,40,41,59,116,104,105,115,46,101,108,101,109,101,110,116,115,61,101,40,116,104,105,115,46,101,108,101,109,101,110,116,115,41,46,99,111,110,99,97,116,40,91,116,93,41,44,116,104,105,115,46,97,112,112,108,121,80,111,115,105,116,105,111,110,40,34,97,112,112,101,110,100,34,44,114,44,116,41,125,44,116,46,112,114,111,116,111,116,121,112,101,46,112,114,101,112,101,110,100,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,116,104,105,115,59,105,102,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,116,41,41,114,101,116,117,114,110,32,118,111,105,100,32,116,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,46,112,114,101,112,101,110,100,40,116,41,125,41,59,118,97,114,32,114,61,116,104,105,115,46,102,105,110,100,77,105,110,72,101,105,103,104,116,67,111,108,117,109,110,40,41,59,116,104,105,115,46,101,108,101,109,101,110,116,115,61,91,116,93,46,99,111,110,99,97,116,40,101,40,116,104,105,115,46,101,108,101,109,101,110,116,115,41,41,44,116,104,105,115,46,97,112,112,108,121,80,111,115,105,116,105,111,110,40,34,112,114,101,112,101,110,100,34,44,114,44,116,41,125,44,116,46,112,114,111,116,111,116,121,112,101,46,111,110,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,108,101,109,101,110,116,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,98,114,105,99,107,108,97,121,101,114,46,34,43,116,44,101,41,44,116,104,105,115,125,44,116,46,112,114,111,116,111,116,121,112,101,46,114,101,100,114,97,119,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,99,111,108,117,109,110,67,111,117,110,116,59,116,104,105,115,46,99,104,101,99,107,67,111,108,117,109,110,67,111,117,110,116,40,33,49,41,44,116,104,105,115,46,114,101,111,114,100,101,114,69,108,101,109,101,110,116,115,40,116,41,44,110,40,116,104,105,115,46,101,108,101,109,101,110,116,44,34,98,114,105,99,107,108,97,121,101,114,46,114,101,100,114,97,119,34,44,123,99,111,108,117,109,110,67,111,117,110,116,58,116,125,41,125,44,116,46,112,114,111,116,111,116,121,112,101,46,100,101,115,116,114,111,121,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,59,116,104,105,115,46,114,117,108,101,114,46,100,101,115,116,114,111,121,40,41,44,101,40,116,104,105,115,46,101,108,101,109,101,110,116,115,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,46,101,108,101,109,101,110,116,46,97,112,112,101,110,100,67,104,105,108,100,40,101,41,125,41,44,101,40,116,104,105,115,46,103,101,116,67,111,108,117,109,110,115,40,41,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,112,97,114,101,110,116,78,111,100,101,46,114,101,109,111,118,101,67,104,105,108,100,40,116,41,125,41,44,110,40,116,104,105,115,46,101,108,101,109,101,110,116,44,34,98,114,105,99,107,108,97,121,101,114,46,100,101,115,116,114,111,121,34,44,123,125,41,125,44,116,46,112,114,111,116,111,116,121,112,101,46,98,117,105,108,100,61,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,114,117,108,101,114,61,110,101,119,32,115,40,116,104,105,115,46,111,112,116,105,111,110,115,46,114,117,108,101,114,67,108,97,115,115,78,97,109,101,41,44,116,104,105,115,46,101,108,101,109,101,110,116,115,61,116,104,105,115,46,103,101,116,69,108,101,109,101,110,116,115,73,110,79,114,100,101,114,40,41,44,116,104,105,115,46,101,108,101,109,101,110,116,46,105,110,115,101,114,116,66,101,102,111,114,101,40,116,104,105,115,46,114,117,108,101,114,46,101,108,101,109,101,110,116,44,116,104,105,115,46,101,108,101,109,101,110,116,46,102,105,114,115,116,67,104,105,108,100,41,125,44,116,46,112,114,111,116,111,116,121,112,101,46,98,117,105,108,100,82,101,115,112,111,110,115,105,118,101,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,59,119,105,110,100,111,119,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,114,101,115,105,122,101,34,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,46,99,104,101,99,107,67,111,108,117,109,110,67,111,117,110,116,40,41,125,41,44,116,104,105,115,46,99,104,101,99,107,67,111,108,117,109,110,67,111,117,110,116,40,41,44,116,104,105,115,46,111,110,40,34,98,114,101,97,107,112,111,105,110,116,34,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,46,114,101,111,114,100,101,114,69,108,101,109,101,110,116,115,40,101,46,100,101,116,97,105,108,46,99,111,108,117,109,110,67,111,117,110,116,41,125,41,44,116,104,105,115,46,99,111,108,117,109,110,67,111,117,110,116,62,61,49,38,38,116,104,105,115,46,114,101,111,114,100,101,114,69,108,101,109,101,110,116,115,40,116,104,105,115,46,99,111,108,117,109,110,67,111,117,110,116,41,125,44,116,46,112,114,111,116,111,116,121,112,101,46,103,101,116,67,111,108,117,109,110,115,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,108,101,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,34,58,115,99,111,112,101,32,62,32,46,34,43,116,104,105,115,46,111,112,116,105,111,110,115,46,99,111,108,117,109,110,67,108,97,115,115,78,97,109,101,41,125,44,116,46,112,114,111,116,111,116,121,112,101,46,102,105,110,100,77,105,110,72,101,105,103,104,116,67,111,108,117,109,110,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,101,40,116,104,105,115,46,103,101,116,67,111,108,117,109,110,115,40,41,41,44,110,61,116,46,109,97,112,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,111,102,102,115,101,116,72,101,105,103,104,116,125,41,44,114,61,77,97,116,104,46,109,105,110,46,97,112,112,108,121,40,110,117,108,108,44,110,41,59,114,101,116,117,114,110,32,116,91,110,46,105,110,100,101,120,79,102,40,114,41,93,125,44,116,46,112,114,111,116,111,116,121,112,101,46,103,101,116,69,108,101,109,101,110,116,115,73,110,79,114,100,101,114,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,108,101,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,34,58,115,99,111,112,101,32,62,32,42,58,110,111,116,40,46,34,43,116,104,105,115,46,111,112,116,105,111,110,115,46,99,111,108,117,109,110,67,108,97,115,115,78,97,109,101,43,34,41,58,110,111,116,40,46,34,43,116,104,105,115,46,111,112,116,105,111,110,115,46,114,117,108,101,114,67,108,97,115,115,78,97,109,101,43,34,41,34,41,125,44,116,46,112,114,111,116,111,116,121,112,101,46,99,104,101,99,107,67,111,108,117,109,110,67,111,117,110,116,61,102,117,110,99,116,105,111,110,40,116,41,123,118,111,105,100,32,48,61,61,61,116,38,38,40,116,61,33,48,41,59,118,97,114,32,101,61,116,104,105,115,46,103,101,116,67,111,108,117,109,110,67,111,117,110,116,40,41,59,116,104,105,115,46,99,111,108,117,109,110,67,111,117,110,116,33,61,61,101,38,38,40,116,38,38,110,40,116,104,105,115,46,101,108,101,109,101,110,116,44,34,98,114,105,99,107,108,97,121,101,114,46,98,114,101,97,107,112,111,105,110,116,34,44,123,99,111,108,117,109,110,67,111,117,110,116,58,101,125,41,44,116,104,105,115,46,99,111,108,117,109,110,67,111,117,110,116,61,101,41,125,44,116,46,112,114,111,116,111,116,121,112,101,46,114,101,111,114,100,101,114,69,108,101,109,101,110,116,115,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,116,104,105,115,59,118,111,105,100,32,48,61,61,61,116,38,38,40,116,61,49,41,44,40,116,61,61,49,47,48,124,124,49,62,116,41,38,38,40,116,61,49,41,59,102,111,114,40,118,97,114,32,114,61,101,40,116,104,105,115,46,101,108,101,109,101,110,116,115,41,46,109,97,112,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,46,112,97,114,101,110,116,78,111,100,101,63,116,46,112,97,114,101,110,116,78,111,100,101,46,114,101,109,111,118,101,67,104,105,108,100,40,116,41,58,116,59,114,101,116,117,114,110,32,101,125,41,44,111,61,116,104,105,115,46,103,101,116,67,111,108,117,109,110,115,40,41,44,105,61,48,59,105,60,111,46,108,101,110,103,116,104,59,105,43,43,41,111,91,105,93,46,112,97,114,101,110,116,78,111,100,101,46,114,101,109,111,118,101,67,104,105,108,100,40,111,91,105,93,41,59,102,111,114,40,118,97,114,32,105,61,48,59,116,62,105,59,105,43,43,41,123,118,97,114,32,115,61,110,101,119,32,117,40,116,104,105,115,46,111,112,116,105,111,110,115,46,99,111,108,117,109,110,67,108,97,115,115,78,97,109,101,41,46,101,108,101,109,101,110,116,59,116,104,105,115,46,101,108,101,109,101,110,116,46,97,112,112,101,110,100,67,104,105,108,100,40,115,41,125,114,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,110,46,102,105,110,100,77,105,110,72,101,105,103,104,116,67,111,108,117,109,110,40,41,59,101,46,97,112,112,101,110,100,67,104,105,108,100,40,116,41,125,41,125,44,116,46,112,114,111,116,111,116,121,112,101,46,103,101,116,67,111,108,117,109,110,67,111,117,110,116,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,101,108,101,109,101,110,116,46,111,102,102,115,101,116,87,105,100,116,104,44,101,61,116,104,105,115,46,114,117,108,101,114,46,103,101,116,87,105,100,116,104,40,41,59,114,101,116,117,114,110,32,77,97,116,104,46,114,111,117,110,100,40,116,47,101,41,125,44,116,46,112,114,111,116,111,116,121,112,101,46,97,112,112,108,121,80,111,115,105,116,105,111,110,61,102,117,110,99,116,105,111,110,40,116,44,101,44,114,41,123,118,97,114,32,111,61,116,104,105,115,44,105,61,102,117,110,99,116,105,111,110,40,105,41,123,118,97,114,32,115,61,105,43,116,46,99,104,97,114,65,116,40,48,41,46,116,111,85,112,112,101,114,67,97,115,101,40,41,43,116,46,115,117,98,115,116,114,40,49,41,59,110,40,111,46,101,108,101,109,101,110,116,44,34,98,114,105,99,107,108,97,121,101,114,46,34,43,115,44,123,105,116,101,109,58,114,44,99,111,108,117,109,110,58,101,125,41,125,59,115,119,105,116,99,104,40,105,40,34,98,101,102,111,114,101,34,41,44,116,41,123,99,97,115,101,34,97,112,112,101,110,100,34,58,101,46,97,112,112,101,110,100,67,104,105,108,100,40,114,41,59,98,114,101,97,107,59,99,97,115,101,34,112,114,101,112,101,110,100,34,58,101,46,105,110,115,101,114,116,66,101,102,111,114,101,40,114,44,101,46,102,105,114,115,116,67,104,105,108,100,41,125,105,40,34,97,102,116,101,114,34,41,125,44,116,125,40,41,59,116,46,67,111,110,116,97,105,110,101,114,61,108,125,40,114,124,124,40,114,61,123,125,41,41,44,102,117,110,99,116,105,111,110,40,116,44,110,41,123,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,100,101,102,105,110,101,38,38,100,101,102,105,110,101,46,97,109,100,63,100,101,102,105,110,101,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,110,40,41,125,41,58,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,119,105,110,100,111,119,38,38,116,61,61,61,119,105,110,100,111,119,63,116,46,66,114,105,99,107,108,97,121,101,114,61,110,40,41,58,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,101,38,38,101,46,101,120,112,111,114,116,115,38,38,40,101,46,101,120,112,111,114,116,115,61,110,40,41,41,125,40,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,119,105,110,100,111,119,63,119,105,110,100,111,119,58,116,104,105,115,44,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,114,46,67,111,110,116,97,105,110,101,114,125,41,125,44,123,125,93,125,44,123,125,44,91,49,93,41,59,47,47,32,104,116,116,112,115,58,47,47,100,51,106,115,46,111,114,103,32,118,53,46,49,54,46,48,32,67,111,112,121,114,105,103,104,116,32,50,48,50,48,32,77,105,107,101,32,66,111,115,116,111,99,107,10,33,102,117,110,99,116,105,111,110,40,116,44,110,41,123,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,101,120,112,111,114,116,115,38,38,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,109,111,100,117,108,101,63,110,40,101,120,112,111,114,116,115,41,58,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,100,101,102,105,110,101,38,38,100,101,102,105,110,101,46,97,109,100,63,100,101,102,105,110,101,40,91,34,101,120,112,111,114,116,115,34,93,44,110,41,58,110,40,40,116,61,116,124,124,115,101,108,102,41,46,100,51,61,116,46,100,51,124,124,123,125,41,125,40,116,104,105,115,44,102,117,110,99,116,105,111,110,40,116,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,102,117,110,99,116,105,111,110,32,110,40,116,44,110,41,123,114,101,116,117,114,110,32,116,60,110,63,45,49,58,116,62,110,63,49,58,116,62,61,110,63,48,58,78,97,78,125,102,117,110,99,116,105,111,110,32,101,40,116,41,123,118,97,114,32,101,59,114,101,116,117,114,110,32,49,61,61,61,116,46,108,101,110,103,116,104,38,38,40,101,61,116,44,116,61,102,117,110,99,116,105,111,110,40,116,44,114,41,123,114,101,116,117,114,110,32,110,40,101,40,116,41,44,114,41,125,41,44,123,108,101,102,116,58,102,117,110,99,116,105,111,110,40,110,44,101,44,114,44,105,41,123,102,111,114,40,110,117,108,108,61,61,114,38,38,40,114,61,48,41,44,110,117,108,108,61,61,105,38,38,40,105,61,110,46,108,101,110,103,116,104,41,59,114,60,105,59,41,123,118,97,114,32,111,61,114,43,105,62,62,62,49,59,116,40,110,91,111,93,44,101,41,60,48,63,114,61,111,43,49,58,105,61,111,125,114,101,116,117,114,110,32,114,125,44,114,105,103,104,116,58,102,117,110,99,116,105,111,110,40,110,44,101,44,114,44,105,41,123,102,111,114,40,110,117,108,108,61,61,114,38,38,40,114,61,48,41,44,110,117,108,108,61,61,105,38,38,40,105,61,110,46,108,101,110,103,116,104,41,59,114,60,105,59,41,123,118,97,114,32,111,61,114,43,105,62,62,62,49,59,116,40,110,91,111,93,44,101,41,62,48,63,105,61,111,58,114,61,111,43,49,125,114,101,116,117,114,110,32,114,125,125,125,118,97,114,32,114,61,101,40,110,41,44,105,61,114,46,114,105,103,104,116,44,111,61,114,46,108,101,102,116,59,102,117,110,99,116,105,111,110,32,97,40,116,44,110,41,123,114,101,116,117,114,110,91,116,44,110,93,125,102,117,110,99,116,105,111,110,32,117,40,116,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,61,116,63,78,97,78,58,43,116,125,102,117,110,99,116,105,111,110,32,99,40,116,44,110,41,123,118,97,114,32,101,44,114,44,105,61,116,46,108,101,110,103,116,104,44,111,61,48,44,97,61,45,49,44,99,61,48,44,102,61,48,59,105,102,40,110,117,108,108,61,61,110,41,102,111,114,40,59,43,43,97,60,105,59,41,105,115,78,97,78,40,101,61,117,40,116,91,97,93,41,41,124,124,40,102,43,61,40,114,61,101,45,99,41,42,40,101,45,40,99,43,61,114,47,43,43,111,41,41,41,59,101,108,115,101,32,102,111,114,40,59,43,43,97,60,105,59,41,105,115,78,97,78,40,101,61,117,40,110,40,116,91,97,93,44,97,44,116,41,41,41,124,124,40,102,43,61,40,114,61,101,45,99,41,42,40,101,45,40,99,43,61,114,47,43,43,111,41,41,41,59,105,102,40,111,62,49,41,114,101,116,117,114,110,32,102,47,40,111,45,49,41,125,102,117,110,99,116,105,111,110,32,102,40,116,44,110,41,123,118,97,114,32,101,61,99,40,116,44,110,41,59,114,101,116,117,114,110,32,101,63,77,97,116,104,46,115,113,114,116,40,101,41,58,101,125,102,117,110,99,116,105,111,110,32,115,40,116,44,110,41,123,118,97,114,32,101,44,114,44,105,44,111,61,116,46,108,101,110,103,116,104,44,97,61,45,49,59,105,102,40,110,117,108,108,61,61,110,41,123,102,111,114,40,59,43,43,97,60,111,59,41,105,102,40,110,117,108,108,33,61,40,101,61,116,91,97,93,41,38,38,101,62,61,101,41,102,111,114,40,114,61,105,61,101,59,43,43,97,60,111,59,41,110,117,108,108,33,61,40,101,61,116,91,97,93,41,38,38,40,114,62,101,38,38,40,114,61,101,41,44,105,60,101,38,38,40,105,61,101,41,41,125,101,108,115,101,32,102,111,114,40,59,43,43,97,60,111,59,41,105,102,40,110,117,108,108,33,61,40,101,61,110,40,116,91,97,93,44,97,44,116,41,41,38,38,101,62,61,101,41,102,111,114,40,114,61,105,61,101,59,43,43,97,60,111,59,41,110,117,108,108,33,61,40,101,61,110,40,116,91,97,93,44,97,44,116,41,41,38,38,40,114,62,101,38,38,40,114,61,101,41,44,105,60,101,38,38,40,105,61,101,41,41,59,114,101,116,117,114,110,91,114,44,105,93,125,118,97,114,32,108,61,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,44,104,61,108,46,115,108,105,99,101,44,100,61,108,46,109,97,112,59,102,117,110,99,116,105,111,110,32,112,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,125,125,102,117,110,99,116,105,111,110,32,118,40,116,41,123,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,103,40,116,44,110,44,101,41,123,116,61,43,116,44,110,61,43,110,44,101,61,40,105,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,60,50,63,40,110,61,116,44,116,61,48,44,49,41,58,105,60,51,63,49,58,43,101,59,102,111,114,40,118,97,114,32,114,61,45,49,44,105,61,48,124,77,97,116,104,46,109,97,120,40,48,44,77,97,116,104,46,99,101,105,108,40,40,110,45,116,41,47,101,41,41,44,111,61,110,101,119,32,65,114,114,97,121,40,105,41,59,43,43,114,60,105,59,41,111,91,114,93,61,116,43,114,42,101,59,114,101,116,117,114,110,32,111,125,118,97,114,32,121,61,77,97,116,104,46,115,113,114,116,40,53,48,41,44,95,61,77,97,116,104,46,115,113,114,116,40,49,48,41,44,98,61,77,97,116,104,46,115,113,114,116,40,50,41,59,102,117,110,99,116,105,111,110,32,109,40,116,44,110,44,101,41,123,118,97,114,32,114,44,105,44,111,44,97,44,117,61,45,49,59,105,102,40,101,61,43,101,44,40,116,61,43,116,41,61,61,61,40,110,61,43,110,41,38,38,101,62,48,41,114,101,116,117,114,110,91,116,93,59,105,102,40,40,114,61,110,60,116,41,38,38,40,105,61,116,44,116,61,110,44,110,61,105,41,44,48,61,61,61,40,97,61,120,40,116,44,110,44,101,41,41,124,124,33,105,115,70,105,110,105,116,101,40,97,41,41,114,101,116,117,114,110,91,93,59,105,102,40,97,62,48,41,102,111,114,40,116,61,77,97,116,104,46,99,101,105,108,40,116,47,97,41,44,110,61,77,97,116,104,46,102,108,111,111,114,40,110,47,97,41,44,111,61,110,101,119,32,65,114,114,97,121,40,105,61,77,97,116,104,46,99,101,105,108,40,110,45,116,43,49,41,41,59,43,43,117,60,105,59,41,111,91,117,93,61,40,116,43,117,41,42,97,59,101,108,115,101,32,102,111,114,40,116,61,77,97,116,104,46,102,108,111,111,114,40,116,42,97,41,44,110,61,77,97,116,104,46,99,101,105,108,40,110,42,97,41,44,111,61,110,101,119,32,65,114,114,97,121,40,105,61,77,97,116,104,46,99,101,105,108,40,116,45,110,43,49,41,41,59,43,43,117,60,105,59,41,111,91,117,93,61,40,116,45,117,41,47,97,59,114,101,116,117,114,110,32,114,38,38,111,46,114,101,118,101,114,115,101,40,41,44,111,125,102,117,110,99,116,105,111,110,32,120,40,116,44,110,44,101,41,123,118,97,114,32,114,61,40,110,45,116,41,47,77,97,116,104,46,109,97,120,40,48,44,101,41,44,105,61,77,97,116,104,46,102,108,111,111,114,40,77,97,116,104,46,108,111,103,40,114,41,47,77,97,116,104,46,76,78,49,48,41,44,111,61,114,47,77,97,116,104,46,112,111,119,40,49,48,44,105,41,59,114,101,116,117,114,110,32,105,62,61,48,63,40,111,62,61,121,63,49,48,58,111,62,61,95,63,53,58,111,62,61,98,63,50,58,49,41,42,77,97,116,104,46,112,111,119,40,49,48,44,105,41,58,45,77,97,116,104,46,112,111,119,40,49,48,44,45,105,41,47,40,111,62,61,121,63,49,48,58,111,62,61,95,63,53,58,111,62,61,98,63,50,58,49,41,125,102,117,110,99,116,105,111,110,32,119,40,116,44,110,44,101,41,123,118,97,114,32,114,61,77,97,116,104,46,97,98,115,40,110,45,116,41,47,77,97,116,104,46,109,97,120,40,48,44,101,41,44,105,61,77,97,116,104,46,112,111,119,40,49,48,44,77,97,116,104,46,102,108,111,111,114,40,77,97,116,104,46,108,111,103,40,114,41,47,77,97,116,104,46,76,78,49,48,41,41,44,111,61,114,47,105,59,114,101,116,117,114,110,32,111,62,61,121,63,105,42,61,49,48,58,111,62,61,95,63,105,42,61,53,58,111,62,61,98,38,38,40,105,42,61,50,41,44,110,60,116,63,45,105,58,105,125,102,117,110,99,116,105,111,110,32,77,40,116,41,123,114,101,116,117,114,110,32,77,97,116,104,46,99,101,105,108,40,77,97,116,104,46,108,111,103,40,116,46,108,101,110,103,116,104,41,47,77,97,116,104,46,76,78,50,41,43,49,125,102,117,110,99,116,105,111,110,32,78,40,116,44,110,44,101,41,123,105,102,40,110,117,108,108,61,61,101,38,38,40,101,61,117,41,44,114,61,116,46,108,101,110,103,116,104,41,123,105,102,40,40,110,61,43,110,41,60,61,48,124,124,114,60,50,41,114,101,116,117,114,110,43,101,40,116,91,48,93,44,48,44,116,41,59,105,102,40,110,62,61,49,41,114,101,116,117,114,110,43,101,40,116,91,114,45,49,93,44,114,45,49,44,116,41,59,118,97,114,32,114,44,105,61,40,114,45,49,41,42,110,44,111,61,77,97,116,104,46,102,108,111,111,114,40,105,41,44,97,61,43,101,40,116,91,111,93,44,111,44,116,41,59,114,101,116,117,114,110,32,97,43,40,43,101,40,116,91,111,43,49,93,44,111,43,49,44,116,41,45,97,41,42,40,105,45,111,41,125,125,102,117,110,99,116,105,111,110,32,84,40,116,44,110,41,123,118,97,114,32,101,44,114,44,105,61,116,46,108,101,110,103,116,104,44,111,61,45,49,59,105,102,40,110,117,108,108,61,61,110,41,123,102,111,114,40,59,43,43,111,60,105,59,41,105,102,40,110,117,108,108,33,61,40,101,61,116,91,111,93,41,38,38,101,62,61,101,41,102,111,114,40,114,61,101,59,43,43,111,60,105,59,41,110,117,108,108,33,61,40,101,61,116,91,111,93,41,38,38,101,62,114,38,38,40,114,61,101,41,125,101,108,115,101,32,102,111,114,40,59,43,43,111,60,105,59,41,105,102,40,110,117,108,108,33,61,40,101,61,110,40,116,91,111,93,44,111,44,116,41,41,38,38,101,62,61,101,41,102,111,114,40,114,61,101,59,43,43,111,60,105,59,41,110,117,108,108,33,61,40,101,61,110,40,116,91,111,93,44,111,44,116,41,41,38,38,101,62,114,38,38,40,114,61,101,41,59,114,101,116,117,114,110,32,114,125,102,117,110,99,116,105,111,110,32,65,40,116,41,123,102,111,114,40,118,97,114,32,110,44,101,44,114,44,105,61,116,46,108,101,110,103,116,104,44,111,61,45,49,44,97,61,48,59,43,43,111,60,105,59,41,97,43,61,116,91,111,93,46,108,101,110,103,116,104,59,102,111,114,40,101,61,110,101,119,32,65,114,114,97,121,40,97,41,59,45,45,105,62,61,48,59,41,102,111,114,40,110,61,40,114,61,116,91,105,93,41,46,108,101,110,103,116,104,59,45,45,110,62,61,48,59,41,101,91,45,45,97,93,61,114,91,110,93,59,114,101,116,117,114,110,32,101,125,102,117,110,99,116,105,111,110,32,83,40,116,44,110,41,123,118,97,114,32,101,44,114,44,105,61,116,46,108,101,110,103,116,104,44,111,61,45,49,59,105,102,40,110,117,108,108,61,61,110,41,123,102,111,114,40,59,43,43,111,60,105,59,41,105,102,40,110,117,108,108,33,61,40,101,61,116,91,111,93,41,38,38,101,62,61,101,41,102,111,114,40,114,61,101,59,43,43,111,60,105,59,41,110,117,108,108,33,61,40,101,61,116,91,111,93,41,38,38,114,62,101,38,38,40,114,61,101,41,125,101,108,115,101,32,102,111,114,40,59,43,43,111,60,105,59,41,105,102,40,110,117,108,108,33,61,40,101,61,110,40,116,91,111,93,44,111,44,116,41,41,38,38,101,62,61,101,41,102,111,114,40,114,61,101,59,43,43,111,60,105,59,41,110,117,108,108,33,61,40,101,61,110,40,116,91,111,93,44,111,44,116,41,41,38,38,114,62,101,38,38,40,114,61,101,41,59,114,101,116,117,114,110,32,114,125,102,117,110,99,116,105,111,110,32,107,40,116,41,123,105,102,40,33,40,105,61,116,46,108,101,110,103,116,104,41,41,114,101,116,117,114,110,91,93,59,102,111,114,40,118,97,114,32,110,61,45,49,44,101,61,83,40,116,44,69,41,44,114,61,110,101,119,32,65,114,114,97,121,40,101,41,59,43,43,110,60,101,59,41,102,111,114,40,118,97,114,32,105,44,111,61,45,49,44,97,61,114,91,110,93,61,110,101,119,32,65,114,114,97,121,40,105,41,59,43,43,111,60,105,59,41,97,91,111,93,61,116,91,111,93,91,110,93,59,114,101,116,117,114,110,32,114,125,102,117,110,99,116,105,111,110,32,69,40,116,41,123,114,101,116,117,114,110,32,116,46,108,101,110,103,116,104,125,118,97,114,32,67,61,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,115,108,105,99,101,59,102,117,110,99,116,105,111,110,32,80,40,116,41,123,114,101,116,117,114,110,32,116,125,118,97,114,32,122,61,49,44,82,61,50,44,68,61,51,44,113,61,52,44,76,61,49,101,45,54,59,102,117,110,99,116,105,111,110,32,85,40,116,41,123,114,101,116,117,114,110,34,116,114,97,110,115,108,97,116,101,40,34,43,40,116,43,46,53,41,43,34,44,48,41,34,125,102,117,110,99,116,105,111,110,32,79,40,116,41,123,114,101,116,117,114,110,34,116,114,97,110,115,108,97,116,101,40,48,44,34,43,40,116,43,46,53,41,43,34,41,34,125,102,117,110,99,116,105,111,110,32,66,40,41,123,114,101,116,117,114,110,33,116,104,105,115,46,95,95,97,120,105,115,125,102,117,110,99,116,105,111,110,32,70,40,116,44,110,41,123,118,97,114,32,101,61,91,93,44,114,61,110,117,108,108,44,105,61,110,117,108,108,44,111,61,54,44,97,61,54,44,117,61,51,44,99,61,116,61,61,61,122,124,124,116,61,61,61,113,63,45,49,58,49,44,102,61,116,61,61,61,113,124,124,116,61,61,61,82,63,34,120,34,58,34,121,34,44,115,61,116,61,61,61,122,124,124,116,61,61,61,68,63,85,58,79,59,102,117,110,99,116,105,111,110,32,108,40,108,41,123,118,97,114,32,104,61,110,117,108,108,61,61,114,63,110,46,116,105,99,107,115,63,110,46,116,105,99,107,115,46,97,112,112,108,121,40,110,44,101,41,58,110,46,100,111,109,97,105,110,40,41,58,114,44,100,61,110,117,108,108,61,61,105,63,110,46,116,105,99,107,70,111,114,109,97,116,63,110,46,116,105,99,107,70,111,114,109,97,116,46,97,112,112,108,121,40,110,44,101,41,58,80,58,105,44,112,61,77,97,116,104,46,109,97,120,40,111,44,48,41,43,117,44,118,61,110,46,114,97,110,103,101,40,41,44,103,61,43,118,91,48,93,43,46,53,44,121,61,43,118,91,118,46,108,101,110,103,116,104,45,49,93,43,46,53,44,95,61,40,110,46,98,97,110,100,119,105,100,116,104,63,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,77,97,116,104,46,109,97,120,40,48,44,116,46,98,97,110,100,119,105,100,116,104,40,41,45,49,41,47,50,59,114,101,116,117,114,110,32,116,46,114,111,117,110,100,40,41,38,38,40,110,61,77,97,116,104,46,114,111,117,110,100,40,110,41,41,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,43,116,40,101,41,43,110,125,125,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,43,116,40,110,41,125,125,41,40,110,46,99,111,112,121,40,41,41,44,98,61,108,46,115,101,108,101,99,116,105,111,110,63,108,46,115,101,108,101,99,116,105,111,110,40,41,58,108,44,109,61,98,46,115,101,108,101,99,116,65,108,108,40,34,46,100,111,109,97,105,110,34,41,46,100,97,116,97,40,91,110,117,108,108,93,41,44,120,61,98,46,115,101,108,101,99,116,65,108,108,40,34,46,116,105,99,107,34,41,46,100,97,116,97,40,104,44,110,41,46,111,114,100,101,114,40,41,44,119,61,120,46,101,120,105,116,40,41,44,77,61,120,46,101,110,116,101,114,40,41,46,97,112,112,101,110,100,40,34,103,34,41,46,97,116,116,114,40,34,99,108,97,115,115,34,44,34,116,105,99,107,34,41,44,78,61,120,46,115,101,108,101,99,116,40,34,108,105,110,101,34,41,44,84,61,120,46,115,101,108,101,99,116,40,34,116,101,120,116,34,41,59,109,61,109,46,109,101,114,103,101,40,109,46,101,110,116,101,114,40,41,46,105,110,115,101,114,116,40,34,112,97,116,104,34,44,34,46,116,105,99,107,34,41,46,97,116,116,114,40,34,99,108,97,115,115,34,44,34,100,111,109,97,105,110,34,41,46,97,116,116,114,40,34,115,116,114,111,107,101,34,44,34,99,117,114,114,101,110,116,67,111,108,111,114,34,41,41,44,120,61,120,46,109,101,114,103,101,40,77,41,44,78,61,78,46,109,101,114,103,101,40,77,46,97,112,112,101,110,100,40,34,108,105,110,101,34,41,46,97,116,116,114,40,34,115,116,114,111,107,101,34,44,34,99,117,114,114,101,110,116,67,111,108,111,114,34,41,46,97,116,116,114,40,102,43,34,50,34,44,99,42,111,41,41,44,84,61,84,46,109,101,114,103,101,40,77,46,97,112,112,101,110,100,40,34,116,101,120,116,34,41,46,97,116,116,114,40,34,102,105,108,108,34,44,34,99,117,114,114,101,110,116,67,111,108,111,114,34,41,46,97,116,116,114,40,102,44,99,42,112,41,46,97,116,116,114,40,34,100,121,34,44,116,61,61,61,122,63,34,48,101,109,34,58,116,61,61,61,68,63,34,48,46,55,49,101,109,34,58,34,48,46,51,50,101,109,34,41,41,44,108,33,61,61,98,38,38,40,109,61,109,46,116,114,97,110,115,105,116,105,111,110,40,108,41,44,120,61,120,46,116,114,97,110,115,105,116,105,111,110,40,108,41,44,78,61,78,46,116,114,97,110,115,105,116,105,111,110,40,108,41,44,84,61,84,46,116,114,97,110,115,105,116,105,111,110,40,108,41,44,119,61,119,46,116,114,97,110,115,105,116,105,111,110,40,108,41,46,97,116,116,114,40,34,111,112,97,99,105,116,121,34,44,76,41,46,97,116,116,114,40,34,116,114,97,110,115,102,111,114,109,34,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,105,115,70,105,110,105,116,101,40,116,61,95,40,116,41,41,63,115,40,116,41,58,116,104,105,115,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,116,114,97,110,115,102,111,114,109,34,41,125,41,44,77,46,97,116,116,114,40,34,111,112,97,99,105,116,121,34,44,76,41,46,97,116,116,114,40,34,116,114,97,110,115,102,111,114,109,34,44,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,116,104,105,115,46,112,97,114,101,110,116,78,111,100,101,46,95,95,97,120,105,115,59,114,101,116,117,114,110,32,115,40,110,38,38,105,115,70,105,110,105,116,101,40,110,61,110,40,116,41,41,63,110,58,95,40,116,41,41,125,41,41,44,119,46,114,101,109,111,118,101,40,41,44,109,46,97,116,116,114,40,34,100,34,44,116,61,61,61,113,124,124,116,61,61,82,63,97,63,34,77,34,43,99,42,97,43,34,44,34,43,103,43,34,72,48,46,53,86,34,43,121,43,34,72,34,43,99,42,97,58,34,77,48,46,53,44,34,43,103,43,34,86,34,43,121,58,97,63,34,77,34,43,103,43,34,44,34,43,99,42,97,43,34,86,48,46,53,72,34,43,121,43,34,86,34,43,99,42,97,58,34,77,34,43,103,43,34,44,48,46,53,72,34,43,121,41,44,120,46,97,116,116,114,40,34,111,112,97,99,105,116,121,34,44,49,41,46,97,116,116,114,40,34,116,114,97,110,115,102,111,114,109,34,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,115,40,95,40,116,41,41,125,41,44,78,46,97,116,116,114,40,102,43,34,50,34,44,99,42,111,41,44,84,46,97,116,116,114,40,102,44,99,42,112,41,46,116,101,120,116,40,100,41,44,98,46,102,105,108,116,101,114,40,66,41,46,97,116,116,114,40,34,102,105,108,108,34,44,34,110,111,110,101,34,41,46,97,116,116,114,40,34,102,111,110,116,45,115,105,122,101,34,44,49,48,41,46,97,116,116,114,40,34,102,111,110,116,45,102,97,109,105,108,121,34,44,34,115,97,110,115,45,115,101,114,105,102,34,41,46,97,116,116,114,40,34,116,101,120,116,45,97,110,99,104,111,114,34,44,116,61,61,61,82,63,34,115,116,97,114,116,34,58,116,61,61,61,113,63,34,101,110,100,34,58,34,109,105,100,100,108,101,34,41,44,98,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,95,97,120,105,115,61,95,125,41,125,114,101,116,117,114,110,32,108,46,115,99,97,108,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,110,61,116,44,108,41,58,110,125,44,108,46,116,105,99,107,115,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,101,61,67,46,99,97,108,108,40,97,114,103,117,109,101,110,116,115,41,44,108,125,44,108,46,116,105,99,107,65,114,103,117,109,101,110,116,115,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,101,61,110,117,108,108,61,61,116,63,91,93,58,67,46,99,97,108,108,40,116,41,44,108,41,58,101,46,115,108,105,99,101,40,41,125,44,108,46,116,105,99,107,86,97,108,117,101,115,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,114,61,110,117,108,108,61,61,116,63,110,117,108,108,58,67,46,99,97,108,108,40,116,41,44,108,41,58,114,38,38,114,46,115,108,105,99,101,40,41,125,44,108,46,116,105,99,107,70,111,114,109,97,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,105,61,116,44,108,41,58,105,125,44,108,46,116,105,99,107,83,105,122,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,111,61,97,61,43,116,44,108,41,58,111,125,44,108,46,116,105,99,107,83,105,122,101,73,110,110,101,114,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,111,61,43,116,44,108,41,58,111,125,44,108,46,116,105,99,107,83,105,122,101,79,117,116,101,114,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,97,61,43,116,44,108,41,58,97,125,44,108,46,116,105,99,107,80,97,100,100,105,110,103,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,117,61,43,116,44,108,41,58,117,125,44,108,125,118,97,114,32,89,61,123,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,125,125,59,102,117,110,99,116,105,111,110,32,73,40,41,123,102,111,114,40,118,97,114,32,116,44,110,61,48,44,101,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,44,114,61,123,125,59,110,60,101,59,43,43,110,41,123,105,102,40,33,40,116,61,97,114,103,117,109,101,110,116,115,91,110,93,43,34,34,41,124,124,116,32,105,110,32,114,124,124,47,91,92,115,46,93,47,46,116,101,115,116,40,116,41,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,105,108,108,101,103,97,108,32,116,121,112,101,58,32,34,43,116,41,59,114,91,116,93,61,91,93,125,114,101,116,117,114,110,32,110,101,119,32,72,40,114,41,125,102,117,110,99,116,105,111,110,32,72,40,116,41,123,116,104,105,115,46,95,61,116,125,102,117,110,99,116,105,111,110,32,106,40,116,44,110,41,123,114,101,116,117,114,110,32,116,46,116,114,105,109,40,41,46,115,112,108,105,116,40,47,94,124,92,115,43,47,41,46,109,97,112,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,34,34,44,114,61,116,46,105,110,100,101,120,79,102,40,34,46,34,41,59,105,102,40,114,62,61,48,38,38,40,101,61,116,46,115,108,105,99,101,40,114,43,49,41,44,116,61,116,46,115,108,105,99,101,40,48,44,114,41,41,44,116,38,38,33,110,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,116,41,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,117,110,107,110,111,119,110,32,116,121,112,101,58,32,34,43,116,41,59,114,101,116,117,114,110,123,116,121,112,101,58,116,44,110,97,109,101,58,101,125,125,41,125,102,117,110,99,116,105,111,110,32,88,40,116,44,110,41,123,102,111,114,40,118,97,114,32,101,44,114,61,48,44,105,61,116,46,108,101,110,103,116,104,59,114,60,105,59,43,43,114,41,105,102,40,40,101,61,116,91,114,93,41,46,110,97,109,101,61,61,61,110,41,114,101,116,117,114,110,32,101,46,118,97,108,117,101,125,102,117,110,99,116,105,111,110,32,86,40,116,44,110,44,101,41,123,102,111,114,40,118,97,114,32,114,61,48,44,105,61,116,46,108,101,110,103,116,104,59,114,60,105,59,43,43,114,41,105,102,40,116,91,114,93,46,110,97,109,101,61,61,61,110,41,123,116,91,114,93,61,89,44,116,61,116,46,115,108,105,99,101,40,48,44,114,41,46,99,111,110,99,97,116,40,116,46,115,108,105,99,101,40,114,43,49,41,41,59,98,114,101,97,107,125,114,101,116,117,114,110,32,110,117,108,108,33,61,101,38,38,116,46,112,117,115,104,40,123,110,97,109,101,58,110,44,118,97,108,117,101,58,101,125,41,44,116,125,72,46,112,114,111,116,111,116,121,112,101,61,73,46,112,114,111,116,111,116,121,112,101,61,123,99,111,110,115,116,114,117,99,116,111,114,58,72,44,111,110,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,44,114,61,116,104,105,115,46,95,44,105,61,106,40,116,43,34,34,44,114,41,44,111,61,45,49,44,97,61,105,46,108,101,110,103,116,104,59,105,102,40,33,40,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,60,50,41,41,123,105,102,40,110,117,108,108,33,61,110,38,38,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,110,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,105,110,118,97,108,105,100,32,99,97,108,108,98,97,99,107,58,32,34,43,110,41,59,102,111,114,40,59,43,43,111,60,97,59,41,105,102,40,101,61,40,116,61,105,91,111,93,41,46,116,121,112,101,41,114,91,101,93,61,86,40,114,91,101,93,44,116,46,110,97,109,101,44,110,41,59,101,108,115,101,32,105,102,40,110,117,108,108,61,61,110,41,102,111,114,40,101,32,105,110,32,114,41,114,91,101,93,61,86,40,114,91,101,93,44,116,46,110,97,109,101,44,110,117,108,108,41,59,114,101,116,117,114,110,32,116,104,105,115,125,102,111,114,40,59,43,43,111,60,97,59,41,105,102,40,40,101,61,40,116,61,105,91,111,93,41,46,116,121,112,101,41,38,38,40,101,61,88,40,114,91,101,93,44,116,46,110,97,109,101,41,41,41,114,101,116,117,114,110,32,101,125,44,99,111,112,121,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,123,125,44,110,61,116,104,105,115,46,95,59,102,111,114,40,118,97,114,32,101,32,105,110,32,110,41,116,91,101,93,61,110,91,101,93,46,115,108,105,99,101,40,41,59,114,101,116,117,114,110,32,110,101,119,32,72,40,116,41,125,44,99,97,108,108,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,105,102,40,40,101,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,45,50,41,62,48,41,102,111,114,40,118,97,114,32,101,44,114,44,105,61,110,101,119,32,65,114,114,97,121,40,101,41,44,111,61,48,59,111,60,101,59,43,43,111,41,105,91,111,93,61,97,114,103,117,109,101,110,116,115,91,111,43,50,93,59,105,102,40,33,116,104,105,115,46,95,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,116,41,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,117,110,107,110,111,119,110,32,116,121,112,101,58,32,34,43,116,41,59,102,111,114,40,111,61,48,44,101,61,40,114,61,116,104,105,115,46,95,91,116,93,41,46,108,101,110,103,116,104,59,111,60,101,59,43,43,111,41,114,91,111,93,46,118,97,108,117,101,46,97,112,112,108,121,40,110,44,105,41,125,44,97,112,112,108,121,58,102,117,110,99,116,105,111,110,40,116,44,110,44,101,41,123,105,102,40,33,116,104,105,115,46,95,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,116,41,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,117,110,107,110,111,119,110,32,116,121,112,101,58,32,34,43,116,41,59,102,111,114,40,118,97,114,32,114,61,116,104,105,115,46,95,91,116,93,44,105,61,48,44,111,61,114,46,108,101,110,103,116,104,59,105,60,111,59,43,43,105,41,114,91,105,93,46,118,97,108,117,101,46,97,112,112,108,121,40,110,44,101,41,125,125,59,118,97,114,32,71,61,34,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,49,57,57,57,47,120,104,116,109,108,34,44,36,61,123,115,118,103,58,34,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,115,118,103,34,44,120,104,116,109,108,58,71,44,120,108,105,110,107,58,34,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,49,57,57,57,47,120,108,105,110,107,34,44,120,109,108,58,34,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,88,77,76,47,49,57,57,56,47,110,97,109,101,115,112,97,99,101,34,44,120,109,108,110,115,58,34,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,120,109,108,110,115,47,34,125,59,102,117,110,99,116,105,111,110,32,87,40,116,41,123,118,97,114,32,110,61,116,43,61,34,34,44,101,61,110,46,105,110,100,101,120,79,102,40,34,58,34,41,59,114,101,116,117,114,110,32,101,62,61,48,38,38,34,120,109,108,110,115,34,33,61,61,40,110,61,116,46,115,108,105,99,101,40,48,44,101,41,41,38,38,40,116,61,116,46,115,108,105,99,101,40,101,43,49,41,41,44,36,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,110,41,63,123,115,112,97,99,101,58,36,91,110,93,44,108,111,99,97,108,58,116,125,58,116,125,102,117,110,99,116,105,111,110,32,90,40,116,41,123,118,97,114,32,110,61,87,40,116,41,59,114,101,116,117,114,110,40,110,46,108,111,99,97,108,63,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,111,119,110,101,114,68,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,78,83,40,116,46,115,112,97,99,101,44,116,46,108,111,99,97,108,41,125,125,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,110,61,116,104,105,115,46,111,119,110,101,114,68,111,99,117,109,101,110,116,44,101,61,116,104,105,115,46,110,97,109,101,115,112,97,99,101,85,82,73,59,114,101,116,117,114,110,32,101,61,61,61,71,38,38,110,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,46,110,97,109,101,115,112,97,99,101,85,82,73,61,61,61,71,63,110,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,116,41,58,110,46,99,114,101,97,116,101,69,108,101,109,101,110,116,78,83,40,101,44,116,41,125,125,41,40,110,41,125,102,117,110,99,116,105,111,110,32,81,40,41,123,125,102,117,110,99,116,105,111,110,32,75,40,116,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,116,63,81,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,116,41,125,125,102,117,110,99,116,105,111,110,32,74,40,41,123,114,101,116,117,114,110,91,93,125,102,117,110,99,116,105,111,110,32,116,116,40,116,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,116,63,74,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,116,41,125,125,102,117,110,99,116,105,111,110,32,110,116,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,109,97,116,99,104,101,115,40,116,41,125,125,102,117,110,99,116,105,111,110,32,101,116,40,116,41,123,114,101,116,117,114,110,32,110,101,119,32,65,114,114,97,121,40,116,46,108,101,110,103,116,104,41,125,102,117,110,99,116,105,111,110,32,114,116,40,116,44,110,41,123,116,104,105,115,46,111,119,110,101,114,68,111,99,117,109,101,110,116,61,116,46,111,119,110,101,114,68,111,99,117,109,101,110,116,44,116,104,105,115,46,110,97,109,101,115,112,97,99,101,85,82,73,61,116,46,110,97,109,101,115,112,97,99,101,85,82,73,44,116,104,105,115,46,95,110,101,120,116,61,110,117,108,108,44,116,104,105,115,46,95,112,97,114,101,110,116,61,116,44,116,104,105,115,46,95,95,100,97,116,97,95,95,61,110,125,114,116,46,112,114,111,116,111,116,121,112,101,61,123,99,111,110,115,116,114,117,99,116,111,114,58,114,116,44,97,112,112,101,110,100,67,104,105,108,100,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,112,97,114,101,110,116,46,105,110,115,101,114,116,66,101,102,111,114,101,40,116,44,116,104,105,115,46,95,110,101,120,116,41,125,44,105,110,115,101,114,116,66,101,102,111,114,101,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,112,97,114,101,110,116,46,105,110,115,101,114,116,66,101,102,111,114,101,40,116,44,110,41,125,44,113,117,101,114,121,83,101,108,101,99,116,111,114,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,112,97,114,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,116,41,125,44,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,112,97,114,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,116,41,125,125,59,118,97,114,32,105,116,61,34,36,34,59,102,117,110,99,116,105,111,110,32,111,116,40,116,44,110,44,101,44,114,44,105,44,111,41,123,102,111,114,40,118,97,114,32,97,44,117,61,48,44,99,61,110,46,108,101,110,103,116,104,44,102,61,111,46,108,101,110,103,116,104,59,117,60,102,59,43,43,117,41,40,97,61,110,91,117,93,41,63,40,97,46,95,95,100,97,116,97,95,95,61,111,91,117,93,44,114,91,117,93,61,97,41,58,101,91,117,93,61,110,101,119,32,114,116,40,116,44,111,91,117,93,41,59,102,111,114,40,59,117,60,99,59,43,43,117,41,40,97,61,110,91,117,93,41,38,38,40,105,91,117,93,61,97,41,125,102,117,110,99,116,105,111,110,32,97,116,40,116,44,110,44,101,44,114,44,105,44,111,44,97,41,123,118,97,114,32,117,44,99,44,102,44,115,61,123,125,44,108,61,110,46,108,101,110,103,116,104,44,104,61,111,46,108,101,110,103,116,104,44,100,61,110,101,119,32,65,114,114,97,121,40,108,41,59,102,111,114,40,117,61,48,59,117,60,108,59,43,43,117,41,40,99,61,110,91,117,93,41,38,38,40,100,91,117,93,61,102,61,105,116,43,97,46,99,97,108,108,40,99,44,99,46,95,95,100,97,116,97,95,95,44,117,44,110,41,44,102,32,105,110,32,115,63,105,91,117,93,61,99,58,115,91,102,93,61,99,41,59,102,111,114,40,117,61,48,59,117,60,104,59,43,43,117,41,40,99,61,115,91,102,61,105,116,43,97,46,99,97,108,108,40,116,44,111,91,117,93,44,117,44,111,41,93,41,63,40,114,91,117,93,61,99,44,99,46,95,95,100,97,116,97,95,95,61,111,91,117,93,44,115,91,102,93,61,110,117,108,108,41,58,101,91,117,93,61,110,101,119,32,114,116,40,116,44,111,91,117,93,41,59,102,111,114,40,117,61,48,59,117,60,108,59,43,43,117,41,40,99,61,110,91,117,93,41,38,38,115,91,100,91,117,93,93,61,61,61,99,38,38,40,105,91,117,93,61,99,41,125,102,117,110,99,116,105,111,110,32,117,116,40,116,44,110,41,123,114,101,116,117,114,110,32,116,60,110,63,45,49,58,116,62,110,63,49,58,116,62,61,110,63,48,58,78,97,78,125,102,117,110,99,116,105,111,110,32,99,116,40,116,41,123,114,101,116,117,114,110,32,116,46,111,119,110,101,114,68,111,99,117,109,101,110,116,38,38,116,46,111,119,110,101,114,68,111,99,117,109,101,110,116,46,100,101,102,97,117,108,116,86,105,101,119,124,124,116,46,100,111,99,117,109,101,110,116,38,38,116,124,124,116,46,100,101,102,97,117,108,116,86,105,101,119,125,102,117,110,99,116,105,111,110,32,102,116,40,116,44,110,41,123,114,101,116,117,114,110,32,116,46,115,116,121,108,101,46,103,101,116,80,114,111,112,101,114,116,121,86,97,108,117,101,40,110,41,124,124,99,116,40,116,41,46,103,101,116,67,111,109,112,117,116,101,100,83,116,121,108,101,40,116,44,110,117,108,108,41,46,103,101,116,80,114,111,112,101,114,116,121,86,97,108,117,101,40,110,41,125,102,117,110,99,116,105,111,110,32,115,116,40,116,41,123,114,101,116,117,114,110,32,116,46,116,114,105,109,40,41,46,115,112,108,105,116,40,47,94,124,92,115,43,47,41,125,102,117,110,99,116,105,111,110,32,108,116,40,116,41,123,114,101,116,117,114,110,32,116,46,99,108,97,115,115,76,105,115,116,124,124,110,101,119,32,104,116,40,116,41,125,102,117,110,99,116,105,111,110,32,104,116,40,116,41,123,116,104,105,115,46,95,110,111,100,101,61,116,44,116,104,105,115,46,95,110,97,109,101,115,61,115,116,40,116,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,41,124,124,34,34,41,125,102,117,110,99,116,105,111,110,32,100,116,40,116,44,110,41,123,102,111,114,40,118,97,114,32,101,61,108,116,40,116,41,44,114,61,45,49,44,105,61,110,46,108,101,110,103,116,104,59,43,43,114,60,105,59,41,101,46,97,100,100,40,110,91,114,93,41,125,102,117,110,99,116,105,111,110,32,112,116,40,116,44,110,41,123,102,111,114,40,118,97,114,32,101,61,108,116,40,116,41,44,114,61,45,49,44,105,61,110,46,108,101,110,103,116,104,59,43,43,114,60,105,59,41,101,46,114,101,109,111,118,101,40,110,91,114,93,41,125,102,117,110,99,116,105,111,110,32,118,116,40,41,123,116,104,105,115,46,116,101,120,116,67,111,110,116,101,110,116,61,34,34,125,102,117,110,99,116,105,111,110,32,103,116,40,41,123,116,104,105,115,46,105,110,110,101,114,72,84,77,76,61,34,34,125,102,117,110,99,116,105,111,110,32,121,116,40,41,123,116,104,105,115,46,110,101,120,116,83,105,98,108,105,110,103,38,38,116,104,105,115,46,112,97,114,101,110,116,78,111,100,101,46,97,112,112,101,110,100,67,104,105,108,100,40,116,104,105,115,41,125,102,117,110,99,116,105,111,110,32,95,116,40,41,123,116,104,105,115,46,112,114,101,118,105,111,117,115,83,105,98,108,105,110,103,38,38,116,104,105,115,46,112,97,114,101,110,116,78,111,100,101,46,105,110,115,101,114,116,66,101,102,111,114,101,40,116,104,105,115,44,116,104,105,115,46,112,97,114,101,110,116,78,111,100,101,46,102,105,114,115,116,67,104,105,108,100,41,125,102,117,110,99,116,105,111,110,32,98,116,40,41,123,114,101,116,117,114,110,32,110,117,108,108,125,102,117,110,99,116,105,111,110,32,109,116,40,41,123,118,97,114,32,116,61,116,104,105,115,46,112,97,114,101,110,116,78,111,100,101,59,116,38,38,116,46,114,101,109,111,118,101,67,104,105,108,100,40,116,104,105,115,41,125,102,117,110,99,116,105,111,110,32,120,116,40,41,123,118,97,114,32,116,61,116,104,105,115,46,99,108,111,110,101,78,111,100,101,40,33,49,41,44,110,61,116,104,105,115,46,112,97,114,101,110,116,78,111,100,101,59,114,101,116,117,114,110,32,110,63,110,46,105,110,115,101,114,116,66,101,102,111,114,101,40,116,44,116,104,105,115,46,110,101,120,116,83,105,98,108,105,110,103,41,58,116,125,102,117,110,99,116,105,111,110,32,119,116,40,41,123,118,97,114,32,116,61,116,104,105,115,46,99,108,111,110,101,78,111,100,101,40,33,48,41,44,110,61,116,104,105,115,46,112,97,114,101,110,116,78,111,100,101,59,114,101,116,117,114,110,32,110,63,110,46,105,110,115,101,114,116,66,101,102,111,114,101,40,116,44,116,104,105,115,46,110,101,120,116,83,105,98,108,105,110,103,41,58,116,125,104,116,46,112,114,111,116,111,116,121,112,101,61,123,97,100,100,58,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,95,110,97,109,101,115,46,105,110,100,101,120,79,102,40,116,41,60,48,38,38,40,116,104,105,115,46,95,110,97,109,101,115,46,112,117,115,104,40,116,41,44,116,104,105,115,46,95,110,111,100,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,116,104,105,115,46,95,110,97,109,101,115,46,106,111,105,110,40,34,32,34,41,41,41,125,44,114,101,109,111,118,101,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,116,104,105,115,46,95,110,97,109,101,115,46,105,110,100,101,120,79,102,40,116,41,59,110,62,61,48,38,38,40,116,104,105,115,46,95,110,97,109,101,115,46,115,112,108,105,99,101,40,110,44,49,41,44,116,104,105,115,46,95,110,111,100,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,116,104,105,115,46,95,110,97,109,101,115,46,106,111,105,110,40,34,32,34,41,41,41,125,44,99,111,110,116,97,105,110,115,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,110,97,109,101,115,46,105,110,100,101,120,79,102,40,116,41,62,61,48,125,125,59,118,97,114,32,77,116,61,123,125,59,40,116,46,101,118,101,110,116,61,110,117,108,108,44,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,100,111,99,117,109,101,110,116,41,38,38,40,34,111,110,109,111,117,115,101,101,110,116,101,114,34,105,110,32,100,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,124,124,40,77,116,61,123,109,111,117,115,101,101,110,116,101,114,58,34,109,111,117,115,101,111,118,101,114,34,44,109,111,117,115,101,108,101,97,118,101,58,34,109,111,117,115,101,111,117,116,34,125,41,41,59,102,117,110,99,116,105,111,110,32,78,116,40,116,44,110,44,101,41,123,114,101,116,117,114,110,32,116,61,84,116,40,116,44,110,44,101,41,44,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,101,61,110,46,114,101,108,97,116,101,100,84,97,114,103,101,116,59,101,38,38,40,101,61,61,61,116,104,105,115,124,124,56,38,101,46,99,111,109,112,97,114,101,68,111,99,117,109,101,110,116,80,111,115,105,116,105,111,110,40,116,104,105,115,41,41,124,124,116,46,99,97,108,108,40,116,104,105,115,44,110,41,125,125,102,117,110,99,116,105,111,110,32,84,116,40,110,44,101,44,114,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,105,41,123,118,97,114,32,111,61,116,46,101,118,101,110,116,59,116,46,101,118,101,110,116,61,105,59,116,114,121,123,110,46,99,97,108,108,40,116,104,105,115,44,116,104,105,115,46,95,95,100,97,116,97,95,95,44,101,44,114,41,125,102,105,110,97,108,108,121,123,116,46,101,118,101,110,116,61,111,125,125,125,102,117,110,99,116,105,111,110,32,65,116,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,110,61,116,104,105,115,46,95,95,111,110,59,105,102,40,110,41,123,102,111,114,40,118,97,114,32,101,44,114,61,48,44,105,61,45,49,44,111,61,110,46,108,101,110,103,116,104,59,114,60,111,59,43,43,114,41,101,61,110,91,114,93,44,116,46,116,121,112,101,38,38,101,46,116,121,112,101,33,61,61,116,46,116,121,112,101,124,124,101,46,110,97,109,101,33,61,61,116,46,110,97,109,101,63,110,91,43,43,105,93,61,101,58,116,104,105,115,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,40,101,46,116,121,112,101,44,101,46,108,105,115,116,101,110,101,114,44,101,46,99,97,112,116,117,114,101,41,59,43,43,105,63,110,46,108,101,110,103,116,104,61,105,58,100,101,108,101,116,101,32,116,104,105,115,46,95,95,111,110,125,125,125,102,117,110,99,116,105,111,110,32,83,116,40,116,44,110,44,101,41,123,118,97,114,32,114,61,77,116,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,116,46,116,121,112,101,41,63,78,116,58,84,116,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,105,44,111,44,97,41,123,118,97,114,32,117,44,99,61,116,104,105,115,46,95,95,111,110,44,102,61,114,40,110,44,111,44,97,41,59,105,102,40,99,41,102,111,114,40,118,97,114,32,115,61,48,44,108,61,99,46,108,101,110,103,116,104,59,115,60,108,59,43,43,115,41,105,102,40,40,117,61,99,91,115,93,41,46,116,121,112,101,61,61,61,116,46,116,121,112,101,38,38,117,46,110,97,109,101,61,61,61,116,46,110,97,109,101,41,114,101,116,117,114,110,32,116,104,105,115,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,40,117,46,116,121,112,101,44,117,46,108,105,115,116,101,110,101,114,44,117,46,99,97,112,116,117,114,101,41,44,116,104,105,115,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,117,46,116,121,112,101,44,117,46,108,105,115,116,101,110,101,114,61,102,44,117,46,99,97,112,116,117,114,101,61,101,41,44,118,111,105,100,40,117,46,118,97,108,117,101,61,110,41,59,116,104,105,115,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,116,46,116,121,112,101,44,102,44,101,41,44,117,61,123,116,121,112,101,58,116,46,116,121,112,101,44,110,97,109,101,58,116,46,110,97,109,101,44,118,97,108,117,101,58,110,44,108,105,115,116,101,110,101,114,58,102,44,99,97,112,116,117,114,101,58,101,125,44,99,63,99,46,112,117,115,104,40,117,41,58,116,104,105,115,46,95,95,111,110,61,91,117,93,125,125,102,117,110,99,116,105,111,110,32,107,116,40,110,44,101,44,114,44,105,41,123,118,97,114,32,111,61,116,46,101,118,101,110,116,59,110,46,115,111,117,114,99,101,69,118,101,110,116,61,116,46,101,118,101,110,116,44,116,46,101,118,101,110,116,61,110,59,116,114,121,123,114,101,116,117,114,110,32,101,46,97,112,112,108,121,40,114,44,105,41,125,102,105,110,97,108,108,121,123,116,46,101,118,101,110,116,61,111,125,125,102,117,110,99,116,105,111,110,32,69,116,40,116,44,110,44,101,41,123,118,97,114,32,114,61,99,116,40,116,41,44,105,61,114,46,67,117,115,116,111,109,69,118,101,110,116,59,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,105,63,105,61,110,101,119,32,105,40,110,44,101,41,58,40,105,61,114,46,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,118,101,110,116,40,34,69,118,101,110,116,34,41,44,101,63,40,105,46,105,110,105,116,69,118,101,110,116,40,110,44,101,46,98,117,98,98,108,101,115,44,101,46,99,97,110,99,101,108,97,98,108,101,41,44,105,46,100,101,116,97,105,108,61,101,46,100,101,116,97,105,108,41,58,105,46,105,110,105,116,69,118,101,110,116,40,110,44,33,49,44,33,49,41,41,44,116,46,100,105,115,112,97,116,99,104,69,118,101,110,116,40,105,41,125,118,97,114,32,67,116,61,91,110,117,108,108,93,59,102,117,110,99,116,105,111,110,32,80,116,40,116,44,110,41,123,116,104,105,115,46,95,103,114,111,117,112,115,61,116,44,116,104,105,115,46,95,112,97,114,101,110,116,115,61,110,125,102,117,110,99,116,105,111,110,32,122,116,40,41,123,114,101,116,117,114,110,32,110,101,119,32,80,116,40,91,91,100,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,93,93,44,67,116,41,125,102,117,110,99,116,105,111,110,32,82,116,40,116,41,123,114,101,116,117,114,110,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,116,63,110,101,119,32,80,116,40,91,91,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,116,41,93,93,44,91,100,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,93,41,58,110,101,119,32,80,116,40,91,91,116,93,93,44,67,116,41,125,80,116,46,112,114,111,116,111,116,121,112,101,61,122,116,46,112,114,111,116,111,116,121,112,101,61,123,99,111,110,115,116,114,117,99,116,111,114,58,80,116,44,115,101,108,101,99,116,58,102,117,110,99,116,105,111,110,40,116,41,123,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,116,38,38,40,116,61,75,40,116,41,41,59,102,111,114,40,118,97,114,32,110,61,116,104,105,115,46,95,103,114,111,117,112,115,44,101,61,110,46,108,101,110,103,116,104,44,114,61,110,101,119,32,65,114,114,97,121,40,101,41,44,105,61,48,59,105,60,101,59,43,43,105,41,102,111,114,40,118,97,114,32,111,44,97,44,117,61,110,91,105,93,44,99,61,117,46,108,101,110,103,116,104,44,102,61,114,91,105,93,61,110,101,119,32,65,114,114,97,121,40,99,41,44,115,61,48,59,115,60,99,59,43,43,115,41,40,111,61,117,91,115,93,41,38,38,40,97,61,116,46,99,97,108,108,40,111,44,111,46,95,95,100,97,116,97,95,95,44,115,44,117,41,41,38,38,40,34,95,95,100,97,116,97,95,95,34,105,110,32,111,38,38,40,97,46,95,95,100,97,116,97,95,95,61,111,46,95,95,100,97,116,97,95,95,41,44,102,91,115,93,61,97,41,59,114,101,116,117,114,110,32,110,101,119,32,80,116,40,114,44,116,104,105,115,46,95,112,97,114,101,110,116,115,41,125,44,115,101,108,101,99,116,65,108,108,58,102,117,110,99,116,105,111,110,40,116,41,123,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,116,38,38,40,116,61,116,116,40,116,41,41,59,102,111,114,40,118,97,114,32,110,61,116,104,105,115,46,95,103,114,111,117,112,115,44,101,61,110,46,108,101,110,103,116,104,44,114,61,91,93,44,105,61,91,93,44,111,61,48,59,111,60,101,59,43,43,111,41,102,111,114,40,118,97,114,32,97,44,117,61,110,91,111,93,44,99,61,117,46,108,101,110,103,116,104,44,102,61,48,59,102,60,99,59,43,43,102,41,40,97,61,117,91,102,93,41,38,38,40,114,46,112,117,115,104,40,116,46,99,97,108,108,40,97,44,97,46,95,95,100,97,116,97,95,95,44,102,44,117,41,41,44,105,46,112,117,115,104,40,97,41,41,59,114,101,116,117,114,110,32,110,101,119,32,80,116,40,114,44,105,41,125,44,102,105,108,116,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,116,38,38,40,116,61,110,116,40,116,41,41,59,102,111,114,40,118,97,114,32,110,61,116,104,105,115,46,95,103,114,111,117,112,115,44,101,61,110,46,108,101,110,103,116,104,44,114,61,110,101,119,32,65,114,114,97,121,40,101,41,44,105,61,48,59,105,60,101,59,43,43,105,41,102,111,114,40,118,97,114,32,111,44,97,61,110,91,105,93,44,117,61,97,46,108,101,110,103,116,104,44,99,61,114,91,105,93,61,91,93,44,102,61,48,59,102,60,117,59,43,43,102,41,40,111,61,97,91,102,93,41,38,38,116,46,99,97,108,108,40,111,44,111,46,95,95,100,97,116,97,95,95,44,102,44,97,41,38,38,99,46,112,117,115,104,40,111,41,59,114,101,116,117,114,110,32,110,101,119,32,80,116,40,114,44,116,104,105,115,46,95,112,97,114,101,110,116,115,41,125,44,100,97,116,97,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,105,102,40,33,116,41,114,101,116,117,114,110,32,100,61,110,101,119,32,65,114,114,97,121,40,116,104,105,115,46,115,105,122,101,40,41,41,44,102,61,45,49,44,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,116,41,123,100,91,43,43,102,93,61,116,125,41,44,100,59,118,97,114,32,101,61,110,63,97,116,58,111,116,44,114,61,116,104,105,115,46,95,112,97,114,101,110,116,115,44,105,61,116,104,105,115,46,95,103,114,111,117,112,115,59,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,116,38,38,40,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,125,125,40,116,41,41,59,102,111,114,40,118,97,114,32,111,61,105,46,108,101,110,103,116,104,44,97,61,110,101,119,32,65,114,114,97,121,40,111,41,44,117,61,110,101,119,32,65,114,114,97,121,40,111,41,44,99,61,110,101,119,32,65,114,114,97,121,40,111,41,44,102,61,48,59,102,60,111,59,43,43,102,41,123,118,97,114,32,115,61,114,91,102,93,44,108,61,105,91,102,93,44,104,61,108,46,108,101,110,103,116,104,44,100,61,116,46,99,97,108,108,40,115,44,115,38,38,115,46,95,95,100,97,116,97,95,95,44,102,44,114,41,44,112,61,100,46,108,101,110,103,116,104,44,118,61,117,91,102,93,61,110,101,119,32,65,114,114,97,121,40,112,41,44,103,61,97,91,102,93,61,110,101,119,32,65,114,114,97,121,40,112,41,59,101,40,115,44,108,44,118,44,103,44,99,91,102,93,61,110,101,119,32,65,114,114,97,121,40,104,41,44,100,44,110,41,59,102,111,114,40,118,97,114,32,121,44,95,44,98,61,48,44,109,61,48,59,98,60,112,59,43,43,98,41,105,102,40,121,61,118,91,98,93,41,123,102,111,114,40,98,62,61,109,38,38,40,109,61,98,43,49,41,59,33,40,95,61,103,91,109,93,41,38,38,43,43,109,60,112,59,41,59,121,46,95,110,101,120,116,61,95,124,124,110,117,108,108,125,125,114,101,116,117,114,110,40,97,61,110,101,119,32,80,116,40,97,44,114,41,41,46,95,101,110,116,101,114,61,117,44,97,46,95,101,120,105,116,61,99,44,97,125,44,101,110,116,101,114,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,110,101,119,32,80,116,40,116,104,105,115,46,95,101,110,116,101,114,124,124,116,104,105,115,46,95,103,114,111,117,112,115,46,109,97,112,40,101,116,41,44,116,104,105,115,46,95,112,97,114,101,110,116,115,41,125,44,101,120,105,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,110,101,119,32,80,116,40,116,104,105,115,46,95,101,120,105,116,124,124,116,104,105,115,46,95,103,114,111,117,112,115,46,109,97,112,40,101,116,41,44,116,104,105,115,46,95,112,97,114,101,110,116,115,41,125,44,106,111,105,110,58,102,117,110,99,116,105,111,110,40,116,44,110,44,101,41,123,118,97,114,32,114,61,116,104,105,115,46,101,110,116,101,114,40,41,44,105,61,116,104,105,115,44,111,61,116,104,105,115,46,101,120,105,116,40,41,59,114,101,116,117,114,110,32,114,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,40,114,41,58,114,46,97,112,112,101,110,100,40,116,43,34,34,41,44,110,117,108,108,33,61,110,38,38,40,105,61,110,40,105,41,41,44,110,117,108,108,61,61,101,63,111,46,114,101,109,111,118,101,40,41,58,101,40,111,41,44,114,38,38,105,63,114,46,109,101,114,103,101,40,105,41,46,111,114,100,101,114,40,41,58,105,125,44,109,101,114,103,101,58,102,117,110,99,116,105,111,110,40,116,41,123,102,111,114,40,118,97,114,32,110,61,116,104,105,115,46,95,103,114,111,117,112,115,44,101,61,116,46,95,103,114,111,117,112,115,44,114,61,110,46,108,101,110,103,116,104,44,105,61,101,46,108,101,110,103,116,104,44,111,61,77,97,116,104,46,109,105,110,40,114,44,105,41,44,97,61,110,101,119,32,65,114,114,97,121,40,114,41,44,117,61,48,59,117,60,111,59,43,43,117,41,102,111,114,40,118,97,114,32,99,44,102,61,110,91,117,93,44,115,61,101,91,117,93,44,108,61,102,46,108,101,110,103,116,104,44,104,61,97,91,117,93,61,110,101,119,32,65,114,114,97,121,40,108,41,44,100,61,48,59,100,60,108,59,43,43,100,41,40,99,61,102,91,100,93,124,124,115,91,100,93,41,38,38,40,104,91,100,93,61,99,41,59,102,111,114,40,59,117,60,114,59,43,43,117,41,97,91,117,93,61,110,91,117,93,59,114,101,116,117,114,110,32,110,101,119,32,80,116,40,97,44,116,104,105,115,46,95,112,97,114,101,110,116,115,41,125,44,111,114,100,101,114,58,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,118,97,114,32,116,61,116,104,105,115,46,95,103,114,111,117,112,115,44,110,61,45,49,44,101,61,116,46,108,101,110,103,116,104,59,43,43,110,60,101,59,41,102,111,114,40,118,97,114,32,114,44,105,61,116,91,110,93,44,111,61,105,46,108,101,110,103,116,104,45,49,44,97,61,105,91,111,93,59,45,45,111,62,61,48,59,41,40,114,61,105,91,111,93,41,38,38,40,97,38,38,52,94,114,46,99,111,109,112,97,114,101,68,111,99,117,109,101,110,116,80,111,115,105,116,105,111,110,40,97,41,38,38,97,46,112,97,114,101,110,116,78,111,100,101,46,105,110,115,101,114,116,66,101,102,111,114,101,40,114,44,97,41,44,97,61,114,41,59,114,101,116,117,114,110,32,116,104,105,115,125,44,115,111,114,116,58,102,117,110,99,116,105,111,110,40,116,41,123,102,117,110,99,116,105,111,110,32,110,40,110,44,101,41,123,114,101,116,117,114,110,32,110,38,38,101,63,116,40,110,46,95,95,100,97,116,97,95,95,44,101,46,95,95,100,97,116,97,95,95,41,58,33,110,45,33,101,125,116,124,124,40,116,61,117,116,41,59,102,111,114,40,118,97,114,32,101,61,116,104,105,115,46,95,103,114,111,117,112,115,44,114,61,101,46,108,101,110,103,116,104,44,105,61,110,101,119,32,65,114,114,97,121,40,114,41,44,111,61,48,59,111,60,114,59,43,43,111,41,123,102,111,114,40,118,97,114,32,97,44,117,61,101,91,111,93,44,99,61,117,46,108,101,110,103,116,104,44,102,61,105,91,111,93,61,110,101,119,32,65,114,114,97,121,40,99,41,44,115,61,48,59,115,60,99,59,43,43,115,41,40,97,61,117,91,115,93,41,38,38,40,102,91,115,93,61,97,41,59,102,46,115,111,114,116,40,110,41,125,114,101,116,117,114,110,32,110,101,119,32,80,116,40,105,44,116,104,105,115,46,95,112,97,114,101,110,116,115,41,46,111,114,100,101,114,40,41,125,44,99,97,108,108,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,97,114,103,117,109,101,110,116,115,91,48,93,59,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,91,48,93,61,116,104,105,115,44,116,46,97,112,112,108,121,40,110,117,108,108,44,97,114,103,117,109,101,110,116,115,41,44,116,104,105,115,125,44,110,111,100,101,115,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,110,101,119,32,65,114,114,97,121,40,116,104,105,115,46,115,105,122,101,40,41,41,44,110,61,45,49,59,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,116,91,43,43,110,93,61,116,104,105,115,125,41,44,116,125,44,110,111,100,101,58,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,118,97,114,32,116,61,116,104,105,115,46,95,103,114,111,117,112,115,44,110,61,48,44,101,61,116,46,108,101,110,103,116,104,59,110,60,101,59,43,43,110,41,102,111,114,40,118,97,114,32,114,61,116,91,110,93,44,105,61,48,44,111,61,114,46,108,101,110,103,116,104,59,105,60,111,59,43,43,105,41,123,118,97,114,32,97,61,114,91,105,93,59,105,102,40,97,41,114,101,116,117,114,110,32,97,125,114,101,116,117,114,110,32,110,117,108,108,125,44,115,105,122,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,48,59,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,43,43,116,125,41,44,116,125,44,101,109,112,116,121,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,33,116,104,105,115,46,110,111,100,101,40,41,125,44,101,97,99,104,58,102,117,110,99,116,105,111,110,40,116,41,123,102,111,114,40,118,97,114,32,110,61,116,104,105,115,46,95,103,114,111,117,112,115,44,101,61,48,44,114,61,110,46,108,101,110,103,116,104,59,101,60,114,59,43,43,101,41,102,111,114,40,118,97,114,32,105,44,111,61,110,91,101,93,44,97,61,48,44,117,61,111,46,108,101,110,103,116,104,59,97,60,117,59,43,43,97,41,40,105,61,111,91,97,93,41,38,38,116,46,99,97,108,108,40,105,44,105,46,95,95,100,97,116,97,95,95,44,97,44,111,41,59,114,101,116,117,114,110,32,116,104,105,115,125,44,97,116,116,114,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,61,87,40,116,41,59,105,102,40,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,60,50,41,123,118,97,114,32,114,61,116,104,105,115,46,110,111,100,101,40,41,59,114,101,116,117,114,110,32,101,46,108,111,99,97,108,63,114,46,103,101,116,65,116,116,114,105,98,117,116,101,78,83,40,101,46,115,112,97,99,101,44,101,46,108,111,99,97,108,41,58,114,46,103,101,116,65,116,116,114,105,98,117,116,101,40,101,41,125,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,40,110,117,108,108,61,61,110,63,101,46,108,111,99,97,108,63,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,78,83,40,116,46,115,112,97,99,101,44,116,46,108,111,99,97,108,41,125,125,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,40,116,41,125,125,58,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,110,63,101,46,108,111,99,97,108,63,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,110,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,59,110,117,108,108,61,61,101,63,116,104,105,115,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,78,83,40,116,46,115,112,97,99,101,44,116,46,108,111,99,97,108,41,58,116,104,105,115,46,115,101,116,65,116,116,114,105,98,117,116,101,78,83,40,116,46,115,112,97,99,101,44,116,46,108,111,99,97,108,44,101,41,125,125,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,110,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,59,110,117,108,108,61,61,101,63,116,104,105,115,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,40,116,41,58,116,104,105,115,46,115,101,116,65,116,116,114,105,98,117,116,101,40,116,44,101,41,125,125,58,101,46,108,111,99,97,108,63,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,115,101,116,65,116,116,114,105,98,117,116,101,78,83,40,116,46,115,112,97,99,101,44,116,46,108,111,99,97,108,44,110,41,125,125,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,115,101,116,65,116,116,114,105,98,117,116,101,40,116,44,110,41,125,125,41,40,101,44,110,41,41,125,44,115,116,121,108,101,58,102,117,110,99,116,105,111,110,40,116,44,110,44,101,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,62,49,63,116,104,105,115,46,101,97,99,104,40,40,110,117,108,108,61,61,110,63,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,115,116,121,108,101,46,114,101,109,111,118,101,80,114,111,112,101,114,116,121,40,116,41,125,125,58,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,110,63,102,117,110,99,116,105,111,110,40,116,44,110,44,101,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,114,61,110,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,59,110,117,108,108,61,61,114,63,116,104,105,115,46,115,116,121,108,101,46,114,101,109,111,118,101,80,114,111,112,101,114,116,121,40,116,41,58,116,104,105,115,46,115,116,121,108,101,46,115,101,116,80,114,111,112,101,114,116,121,40,116,44,114,44,101,41,125,125,58,102,117,110,99,116,105,111,110,40,116,44,110,44,101,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,115,116,121,108,101,46,115,101,116,80,114,111,112,101,114,116,121,40,116,44,110,44,101,41,125,125,41,40,116,44,110,44,110,117,108,108,61,61,101,63,34,34,58,101,41,41,58,102,116,40,116,104,105,115,46,110,111,100,101,40,41,44,116,41,125,44,112,114,111,112,101,114,116,121,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,62,49,63,116,104,105,115,46,101,97,99,104,40,40,110,117,108,108,61,61,110,63,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,100,101,108,101,116,101,32,116,104,105,115,91,116,93,125,125,58,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,110,63,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,110,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,59,110,117,108,108,61,61,101,63,100,101,108,101,116,101,32,116,104,105,115,91,116,93,58,116,104,105,115,91,116,93,61,101,125,125,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,91,116,93,61,110,125,125,41,40,116,44,110,41,41,58,116,104,105,115,46,110,111,100,101,40,41,91,116,93,125,44,99,108,97,115,115,101,100,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,61,115,116,40,116,43,34,34,41,59,105,102,40,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,60,50,41,123,102,111,114,40,118,97,114,32,114,61,108,116,40,116,104,105,115,46,110,111,100,101,40,41,41,44,105,61,45,49,44,111,61,101,46,108,101,110,103,116,104,59,43,43,105,60,111,59,41,105,102,40,33,114,46,99,111,110,116,97,105,110,115,40,101,91,105,93,41,41,114,101,116,117,114,110,33,49,59,114,101,116,117,114,110,33,48,125,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,40,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,110,63,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,40,110,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,63,100,116,58,112,116,41,40,116,104,105,115,44,116,41,125,125,58,110,63,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,100,116,40,116,104,105,115,44,116,41,125,125,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,112,116,40,116,104,105,115,44,116,41,125,125,41,40,101,44,110,41,41,125,44,116,101,120,116,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,116,104,105,115,46,101,97,99,104,40,110,117,108,108,61,61,116,63,118,116,58,40,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,110,61,116,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,59,116,104,105,115,46,116,101,120,116,67,111,110,116,101,110,116,61,110,117,108,108,61,61,110,63,34,34,58,110,125,125,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,116,101,120,116,67,111,110,116,101,110,116,61,116,125,125,41,40,116,41,41,58,116,104,105,115,46,110,111,100,101,40,41,46,116,101,120,116,67,111,110,116,101,110,116,125,44,104,116,109,108,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,116,104,105,115,46,101,97,99,104,40,110,117,108,108,61,61,116,63,103,116,58,40,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,110,61,116,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,59,116,104,105,115,46,105,110,110,101,114,72,84,77,76,61,110,117,108,108,61,61,110,63,34,34,58,110,125,125,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,105,110,110,101,114,72,84,77,76,61,116,125,125,41,40,116,41,41,58,116,104,105,115,46,110,111,100,101,40,41,46,105,110,110,101,114,72,84,77,76,125,44,114,97,105,115,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,121,116,41,125,44,108,111,119,101,114,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,95,116,41,125,44,97,112,112,101,110,100,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,90,40,116,41,59,114,101,116,117,114,110,32,116,104,105,115,46,115,101,108,101,99,116,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,97,112,112,101,110,100,67,104,105,108,100,40,110,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,41,125,41,125,44,105,110,115,101,114,116,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,90,40,116,41,44,114,61,110,117,108,108,61,61,110,63,98,116,58,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,110,63,110,58,75,40,110,41,59,114,101,116,117,114,110,32,116,104,105,115,46,115,101,108,101,99,116,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,110,115,101,114,116,66,101,102,111,114,101,40,101,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,44,114,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,124,124,110,117,108,108,41,125,41,125,44,114,101,109,111,118,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,109,116,41,125,44,99,108,111,110,101,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,104,105,115,46,115,101,108,101,99,116,40,116,63,119,116,58,120,116,41,125,44,100,97,116,117,109,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,116,104,105,115,46,112,114,111,112,101,114,116,121,40,34,95,95,100,97,116,97,95,95,34,44,116,41,58,116,104,105,115,46,110,111,100,101,40,41,46,95,95,100,97,116,97,95,95,125,44,111,110,58,102,117,110,99,116,105,111,110,40,116,44,110,44,101,41,123,118,97,114,32,114,44,105,44,111,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,116,114,105,109,40,41,46,115,112,108,105,116,40,47,94,124,92,115,43,47,41,46,109,97,112,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,34,34,44,101,61,116,46,105,110,100,101,120,79,102,40,34,46,34,41,59,114,101,116,117,114,110,32,101,62,61,48,38,38,40,110,61,116,46,115,108,105,99,101,40,101,43,49,41,44,116,61,116,46,115,108,105,99,101,40,48,44,101,41,41,44,123,116,121,112,101,58,116,44,110,97,109,101,58,110,125,125,41,125,40,116,43,34,34,41,44,97,61,111,46,108,101,110,103,116,104,59,105,102,40,33,40,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,60,50,41,41,123,102,111,114,40,117,61,110,63,83,116,58,65,116,44,110,117,108,108,61,61,101,38,38,40,101,61,33,49,41,44,114,61,48,59,114,60,97,59,43,43,114,41,116,104,105,115,46,101,97,99,104,40,117,40,111,91,114,93,44,110,44,101,41,41,59,114,101,116,117,114,110,32,116,104,105,115,125,118,97,114,32,117,61,116,104,105,115,46,110,111,100,101,40,41,46,95,95,111,110,59,105,102,40,117,41,102,111,114,40,118,97,114,32,99,44,102,61,48,44,115,61,117,46,108,101,110,103,116,104,59,102,60,115,59,43,43,102,41,102,111,114,40,114,61,48,44,99,61,117,91,102,93,59,114,60,97,59,43,43,114,41,105,102,40,40,105,61,111,91,114,93,41,46,116,121,112,101,61,61,61,99,46,116,121,112,101,38,38,105,46,110,97,109,101,61,61,61,99,46,110,97,109,101,41,114,101,116,117,114,110,32,99,46,118,97,108,117,101,125,44,100,105,115,112,97,116,99,104,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,40,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,110,63,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,69,116,40,116,104,105,115,44,116,44,110,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,41,125,125,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,69,116,40,116,104,105,115,44,116,44,110,41,125,125,41,40,116,44,110,41,41,125,125,59,118,97,114,32,68,116,61,48,59,102,117,110,99,116,105,111,110,32,113,116,40,41,123,114,101,116,117,114,110,32,110,101,119,32,76,116,125,102,117,110,99,116,105,111,110,32,76,116,40,41,123,116,104,105,115,46,95,61,34,64,34,43,40,43,43,68,116,41,46,116,111,83,116,114,105,110,103,40,51,54,41,125,102,117,110,99,116,105,111,110,32,85,116,40,41,123,102,111,114,40,118,97,114,32,110,44,101,61,116,46,101,118,101,110,116,59,110,61,101,46,115,111,117,114,99,101,69,118,101,110,116,59,41,101,61,110,59,114,101,116,117,114,110,32,101,125,102,117,110,99,116,105,111,110,32,79,116,40,116,44,110,41,123,118,97,114,32,101,61,116,46,111,119,110,101,114,83,86,71,69,108,101,109,101,110,116,124,124,116,59,105,102,40,101,46,99,114,101,97,116,101,83,86,71,80,111,105,110,116,41,123,118,97,114,32,114,61,101,46,99,114,101,97,116,101,83,86,71,80,111,105,110,116,40,41,59,114,101,116,117,114,110,32,114,46,120,61,110,46,99,108,105,101,110,116,88,44,114,46,121,61,110,46,99,108,105,101,110,116,89,44,91,40,114,61,114,46,109,97,116,114,105,120,84,114,97,110,115,102,111,114,109,40,116,46,103,101,116,83,99,114,101,101,110,67,84,77,40,41,46,105,110,118,101,114,115,101,40,41,41,41,46,120,44,114,46,121,93,125,118,97,114,32,105,61,116,46,103,101,116,66,111,117,110,100,105,110,103,67,108,105,101,110,116,82,101,99,116,40,41,59,114,101,116,117,114,110,91,110,46,99,108,105,101,110,116,88,45,105,46,108,101,102,116,45,116,46,99,108,105,101,110,116,76,101,102,116,44,110,46,99,108,105,101,110,116,89,45,105,46,116,111,112,45,116,46,99,108,105,101,110,116,84,111,112,93,125,102,117,110,99,116,105,111,110,32,66,116,40,116,41,123,118,97,114,32,110,61,85,116,40,41,59,114,101,116,117,114,110,32,110,46,99,104,97,110,103,101,100,84,111,117,99,104,101,115,38,38,40,110,61,110,46,99,104,97,110,103,101,100,84,111,117,99,104,101,115,91,48,93,41,44,79,116,40,116,44,110,41,125,102,117,110,99,116,105,111,110,32,70,116,40,116,44,110,44,101,41,123,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,60,51,38,38,40,101,61,110,44,110,61,85,116,40,41,46,99,104,97,110,103,101,100,84,111,117,99,104,101,115,41,59,102,111,114,40,118,97,114,32,114,44,105,61,48,44,111,61,110,63,110,46,108,101,110,103,116,104,58,48,59,105,60,111,59,43,43,105,41,105,102,40,40,114,61,110,91,105,93,41,46,105,100,101,110,116,105,102,105,101,114,61,61,61,101,41,114,101,116,117,114,110,32,79,116,40,116,44,114,41,59,114,101,116,117,114,110,32,110,117,108,108,125,102,117,110,99,116,105,111,110,32,89,116,40,41,123,116,46,101,118,101,110,116,46,115,116,111,112,73,109,109,101,100,105,97,116,101,80,114,111,112,97,103,97,116,105,111,110,40,41,125,102,117,110,99,116,105,111,110,32,73,116,40,41,123,116,46,101,118,101,110,116,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,116,46,101,118,101,110,116,46,115,116,111,112,73,109,109,101,100,105,97,116,101,80,114,111,112,97,103,97,116,105,111,110,40,41,125,102,117,110,99,116,105,111,110,32,72,116,40,116,41,123,118,97,114,32,110,61,116,46,100,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,44,101,61,82,116,40,116,41,46,111,110,40,34,100,114,97,103,115,116,97,114,116,46,100,114,97,103,34,44,73,116,44,33,48,41,59,34,111,110,115,101,108,101,99,116,115,116,97,114,116,34,105,110,32,110,63,101,46,111,110,40,34,115,101,108,101,99,116,115,116,97,114,116,46,100,114,97,103,34,44,73,116,44,33,48,41,58,40,110,46,95,95,110,111,115,101,108,101,99,116,61,110,46,115,116,121,108,101,46,77,111,122,85,115,101,114,83,101,108,101,99,116,44,110,46,115,116,121,108,101,46,77,111,122,85,115,101,114,83,101,108,101,99,116,61,34,110,111,110,101,34,41,125,102,117,110,99,116,105,111,110,32,106,116,40,116,44,110,41,123,118,97,114,32,101,61,116,46,100,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,44,114,61,82,116,40,116,41,46,111,110,40,34,100,114,97,103,115,116,97,114,116,46,100,114,97,103,34,44,110,117,108,108,41,59,110,38,38,40,114,46,111,110,40,34,99,108,105,99,107,46,100,114,97,103,34,44,73,116,44,33,48,41,44,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,40,41,123,114,46,111,110,40,34,99,108,105,99,107,46,100,114,97,103,34,44,110,117,108,108,41,125,44,48,41,41,44,34,111,110,115,101,108,101,99,116,115,116,97,114,116,34,105,110,32,101,63,114,46,111,110,40,34,115,101,108,101,99,116,115,116,97,114,116,46,100,114,97,103,34,44,110,117,108,108,41,58,40,101,46,115,116,121,108,101,46,77,111,122,85,115,101,114,83,101,108,101,99,116,61,101,46,95,95,110,111,115,101,108,101,99,116,44,100,101,108,101,116,101,32,101,46,95,95,110,111,115,101,108,101,99,116,41,125,102,117,110,99,116,105,111,110,32,88,116,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,125,125,102,117,110,99,116,105,111,110,32,86,116,40,116,44,110,44,101,44,114,44,105,44,111,44,97,44,117,44,99,44,102,41,123,116,104,105,115,46,116,97,114,103,101,116,61,116,44,116,104,105,115,46,116,121,112,101,61,110,44,116,104,105,115,46,115,117,98,106,101,99,116,61,101,44,116,104,105,115,46,105,100,101,110,116,105,102,105,101,114,61,114,44,116,104,105,115,46,97,99,116,105,118,101,61,105,44,116,104,105,115,46,120,61,111,44,116,104,105,115,46,121,61,97,44,116,104,105,115,46,100,120,61,117,44,116,104,105,115,46,100,121,61,99,44,116,104,105,115,46,95,61,102,125,102,117,110,99,116,105,111,110,32,71,116,40,41,123,114,101,116,117,114,110,33,116,46,101,118,101,110,116,46,99,116,114,108,75,101,121,38,38,33,116,46,101,118,101,110,116,46,98,117,116,116,111,110,125,102,117,110,99,116,105,111,110,32,36,116,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,112,97,114,101,110,116,78,111,100,101,125,102,117,110,99,116,105,111,110,32,87,116,40,110,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,110,63,123,120,58,116,46,101,118,101,110,116,46,120,44,121,58,116,46,101,118,101,110,116,46,121,125,58,110,125,102,117,110,99,116,105,111,110,32,90,116,40,41,123,114,101,116,117,114,110,32,110,97,118,105,103,97,116,111,114,46,109,97,120,84,111,117,99,104,80,111,105,110,116,115,124,124,34,111,110,116,111,117,99,104,115,116,97,114,116,34,105,110,32,116,104,105,115,125,102,117,110,99,116,105,111,110,32,81,116,40,116,44,110,44,101,41,123,116,46,112,114,111,116,111,116,121,112,101,61,110,46,112,114,111,116,111,116,121,112,101,61,101,44,101,46,99,111,110,115,116,114,117,99,116,111,114,61,116,125,102,117,110,99,116,105,111,110,32,75,116,40,116,44,110,41,123,118,97,114,32,101,61,79,98,106,101,99,116,46,99,114,101,97,116,101,40,116,46,112,114,111,116,111,116,121,112,101,41,59,102,111,114,40,118,97,114,32,114,32,105,110,32,110,41,101,91,114,93,61,110,91,114,93,59,114,101,116,117,114,110,32,101,125,102,117,110,99,116,105,111,110,32,74,116,40,41,123,125,76,116,46,112,114,111,116,111,116,121,112,101,61,113,116,46,112,114,111,116,111,116,121,112,101,61,123,99,111,110,115,116,114,117,99,116,111,114,58,76,116,44,103,101,116,58,102,117,110,99,116,105,111,110,40,116,41,123,102,111,114,40,118,97,114,32,110,61,116,104,105,115,46,95,59,33,40,110,32,105,110,32,116,41,59,41,105,102,40,33,40,116,61,116,46,112,97,114,101,110,116,78,111,100,101,41,41,114,101,116,117,114,110,59,114,101,116,117,114,110,32,116,91,110,93,125,44,115,101,116,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,116,91,116,104,105,115,46,95,93,61,110,125,44,114,101,109,111,118,101,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,32,105,110,32,116,38,38,100,101,108,101,116,101,32,116,91,116,104,105,115,46,95,93,125,44,116,111,83,116,114,105,110,103,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,125,125,44,86,116,46,112,114,111,116,111,116,121,112,101,46,111,110,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,95,46,111,110,46,97,112,112,108,121,40,116,104,105,115,46,95,44,97,114,103,117,109,101,110,116,115,41,59,114,101,116,117,114,110,32,116,61,61,61,116,104,105,115,46,95,63,116,104,105,115,58,116,125,59,118,97,114,32,116,110,61,34,92,92,115,42,40,91,43,45,93,63,92,92,100,43,41,92,92,115,42,34,44,110,110,61,34,92,92,115,42,40,91,43,45,93,63,92,92,100,42,92,92,46,63,92,92,100,43,40,63,58,91,101,69,93,91,43,45,93,63,92,92,100,43,41,63,41,92,92,115,42,34,44,101,110,61,34,92,92,115,42,40,91,43,45,93,63,92,92,100,42,92,92,46,63,92,92,100,43,40,63,58,91,101,69,93,91,43,45,93,63,92,92,100,43,41,63,41,37,92,92,115,42,34,44,114,110,61,47,94,35,40,91,48,45,57,97,45,102,93,123,51,44,56,125,41,36,47,44,111,110,61,110,101,119,32,82,101,103,69,120,112,40,34,94,114,103,98,92,92,40,34,43,91,116,110,44,116,110,44,116,110,93,43,34,92,92,41,36,34,41,44,97,110,61,110,101,119,32,82,101,103,69,120,112,40,34,94,114,103,98,92,92,40,34,43,91,101,110,44,101,110,44,101,110,93,43,34,92,92,41,36,34,41,44,117,110,61,110,101,119,32,82,101,103,69,120,112,40,34,94,114,103,98,97,92,92,40,34,43,91,116,110,44,116,110,44,116,110,44,110,110,93,43,34,92,92,41,36,34,41,44,99,110,61,110,101,119,32,82,101,103,69,120,112,40,34,94,114,103,98,97,92,92,40,34,43,91,101,110,44,101,110,44,101,110,44,110,110,93,43,34,92,92,41,36,34,41,44,102,110,61,110,101,119,32,82,101,103,69,120,112,40,34,94,104,115,108,92,92,40,34,43,91,110,110,44,101,110,44,101,110,93,43,34,92,92,41,36,34,41,44,115,110,61,110,101,119,32,82,101,103,69,120,112,40,34,94,104,115,108,97,92,92,40,34,43,91,110,110,44,101,110,44,101,110,44,110,110,93,43,34,92,92,41,36,34,41,44,108,110,61,123,97,108,105,99,101,98,108,117,101,58,49,53,55,57,50,51,56,51,44,97,110,116,105,113,117,101,119,104,105,116,101,58,49,54,52,52,52,51,55,53,44,97,113,117,97,58,54,53,53,51,53,44,97,113,117,97,109,97,114,105,110,101,58,56,51,56,56,53,54,52,44,97,122,117,114,101,58,49,53,55,57,52,49,55,53,44,98,101,105,103,101,58,49,54,49,49,57,50,54,48,44,98,105,115,113,117,101,58,49,54,55,55,48,50,52,52,44,98,108,97,99,107,58,48,44,98,108,97,110,99,104,101,100,97,108,109,111,110,100,58,49,54,55,55,50,48,52,53,44,98,108,117,101,58,50,53,53,44,98,108,117,101,118,105,111,108,101,116,58,57,48,53,53,50,48,50,44,98,114,111,119,110,58,49,48,56,50,52,50,51,52,44,98,117,114,108,121,119,111,111,100,58,49,52,53,57,54,50,51,49,44,99,97,100,101,116,98,108,117,101,58,54,50,54,54,53,50,56,44,99,104,97,114,116,114,101,117,115,101,58,56,51,56,56,51,53,50,44,99,104,111,99,111,108,97,116,101,58,49,51,55,56,57,52,55,48,44,99,111,114,97,108,58,49,54,55,52,52,50,55,50,44,99,111,114,110,102,108,111,119,101,114,98,108,117,101,58,54,53,57,49,57,56,49,44,99,111,114,110,115,105,108,107,58,49,54,55,55,53,51,56,56,44,99,114,105,109,115,111,110,58,49,52,52,50,51,49,48,48,44,99,121,97,110,58,54,53,53,51,53,44,100,97,114,107,98,108,117,101,58,49,51,57,44,100,97,114,107,99,121,97,110,58,51,53,55,50,51,44,100,97,114,107,103,111,108,100,101,110,114,111,100,58,49,50,48,57,50,57,51,57,44,100,97,114,107,103,114,97,121,58,49,49,49,49,57,48,49,55,44,100,97,114,107,103,114,101,101,110,58,50,53,54,48,48,44,100,97,114,107,103,114,101,121,58,49,49,49,49,57,48,49,55,44,100,97,114,107,107,104,97,107,105,58,49,50,52,51,51,50,53,57,44,100,97,114,107,109,97,103,101,110,116,97,58,57,49,48,57,54,52,51,44,100,97,114,107,111,108,105,118,101,103,114,101,101,110,58,53,53,57,55,57,57,57,44,100,97,114,107,111,114,97,110,103,101,58,49,54,55,52,55,53,50,48,44,100,97,114,107,111,114,99,104,105,100,58,49,48,48,52,48,48,49,50,44,100,97,114,107,114,101,100,58,57,49,48,57,53,48,52,44,100,97,114,107,115,97,108,109,111,110,58,49,53,51,48,56,52,49,48,44,100,97,114,107,115,101,97,103,114,101,101,110,58,57,52,49,57,57,49,57,44,100,97,114,107,115,108,97,116,101,98,108,117,101,58,52,55,51,52,51,52,55,44,100,97,114,107,115,108,97,116,101,103,114,97,121,58,51,49,48,48,52,57,53,44,100,97,114,107,115,108,97,116,101,103,114,101,121,58,51,49,48,48,52,57,53,44,100,97,114,107,116,117,114,113,117,111,105,115,101,58,53,50,57,52,53,44,100,97,114,107,118,105,111,108,101,116,58,57,54,57,57,53,51,57,44,100,101,101,112,112,105,110,107,58,49,54,55,49,54,57,52,55,44,100,101,101,112,115,107,121,98,108,117,101,58,52,57,49,53,49,44,100,105,109,103,114,97,121,58,54,57,48,56,50,54,53,44,100,105,109,103,114,101,121,58,54,57,48,56,50,54,53,44,100,111,100,103,101,114,98,108,117,101,58,50,48,48,51,49,57,57,44,102,105,114,101,98,114,105,99,107,58,49,49,54,55,52,49,52,54,44,102,108,111,114,97,108,119,104,105,116,101,58,49,54,55,55,53,57,50,48,44,102,111,114,101,115,116,103,114,101,101,110,58,50,50,54,51,56,52,50,44,102,117,99,104,115,105,97,58,49,54,55,49,49,57,51,53,44,103,97,105,110,115,98,111,114,111,58,49,52,52,55,52,52,54,48,44,103,104,111,115,116,119,104,105,116,101,58,49,54,51,49,54,54,55,49,44,103,111,108,100,58,49,54,55,54,54,55,50,48,44,103,111,108,100,101,110,114,111,100,58,49,52,51,50,57,49,50,48,44,103,114,97,121,58,56,52,50,49,53,48,52,44,103,114,101,101,110,58,51,50,55,54,56,44,103,114,101,101,110,121,101,108,108,111,119,58,49,49,52,48,51,48,53,53,44,103,114,101,121,58,56,52,50,49,53,48,52,44,104,111,110,101,121,100,101,119,58,49,53,55,57,52,49,54,48,44,104,111,116,112,105,110,107,58,49,54,55,51,56,55,52,48,44,105,110,100,105,97,110,114,101,100,58,49,51,52,53,56,53,50,52,44,105,110,100,105,103,111,58,52,57,49,53,51,51,48,44,105,118,111,114,121,58,49,54,55,55,55,50,48,48,44,107,104,97,107,105,58,49,53,55,56,55,54,54,48,44,108,97,118,101,110,100,101,114,58,49,53,49,51,50,52,49,48,44,108,97,118,101,110,100,101,114,98,108,117,115,104,58,49,54,55,55,51,51,54,53,44,108,97,119,110,103,114,101,101,110,58,56,49,57,48,57,55,54,44,108,101,109,111,110,99,104,105,102,102,111,110,58,49,54,55,55,53,56,56,53,44,108,105,103,104,116,98,108,117,101,58,49,49,51,57,51,50,53,52,44,108,105,103,104,116,99,111,114,97,108,58,49,53,55,54,49,53,51,54,44,108,105,103,104,116,99,121,97,110,58,49,52,55,52,53,53,57,57,44,108,105,103,104,116,103,111,108,100,101,110,114,111,100,121,101,108,108,111,119,58,49,54,52,52,56,50,49,48,44,108,105,103,104,116,103,114,97,121,58,49,51,56,56,50,51,50,51,44,108,105,103,104,116,103,114,101,101,110,58,57,52,57,56,50,53,54,44,108,105,103,104,116,103,114,101,121,58,49,51,56,56,50,51,50,51,44,108,105,103,104,116,112,105,110,107,58,49,54,55,53,56,52,54,53,44,108,105,103,104,116,115,97,108,109,111,110,58,49,54,55,53,50,55,54,50,44,108,105,103,104,116,115,101,97,103,114,101,101,110,58,50,49,52,50,56,57,48,44,108,105,103,104,116,115,107,121,98,108,117,101,58,56,57,48,48,51,52,54,44,108,105,103,104,116,115,108,97,116,101,103,114,97,121,58,55,56,51,51,55,53,51,44,108,105,103,104,116,115,108,97,116,101,103,114,101,121,58,55,56,51,51,55,53,51,44,108,105,103,104,116,115,116,101,101,108,98,108,117,101,58,49,49,53,56,52,55,51,52,44,108,105,103,104,116,121,101,108,108,111,119,58,49,54,55,55,55,49,56,52,44,108,105,109,101,58,54,53,50,56,48,44,108,105,109,101,103,114,101,101,110,58,51,51,50,57,51,51,48,44,108,105,110,101,110,58,49,54,52,52,53,54,55,48,44,109,97,103,101,110,116,97,58,49,54,55,49,49,57,51,53,44,109,97,114,111,111,110,58,56,51,56,56,54,48,56,44,109,101,100,105,117,109,97,113,117,97,109,97,114,105,110,101,58,54,55,51,55,51,50,50,44,109,101,100,105,117,109,98,108,117,101,58,50,48,53,44,109,101,100,105,117,109,111,114,99,104,105,100,58,49,50,50,49,49,54,54,55,44,109,101,100,105,117,109,112,117,114,112,108,101,58,57,54,54,50,54,56,51,44,109,101,100,105,117,109,115,101,97,103,114,101,101,110,58,51,57,55,56,48,57,55,44,109,101,100,105,117,109,115,108,97,116,101,98,108,117,101,58,56,48,56,55,55,57,48,44,109,101,100,105,117,109,115,112,114,105,110,103,103,114,101,101,110,58,54,52,49,53,52,44,109,101,100,105,117,109,116,117,114,113,117,111,105,115,101,58,52,55,55,50,51,48,48,44,109,101,100,105,117,109,118,105,111,108,101,116,114,101,100,58,49,51,48,52,55,49,55,51,44,109,105,100,110,105,103,104,116,98,108,117,101,58,49,54,52,52,57,49,50,44,109,105,110,116,99,114,101,97,109,58,49,54,49,50,49,56,53,48,44,109,105,115,116,121,114,111,115,101,58,49,54,55,55,48,50,55,51,44,109,111,99,99,97,115,105,110,58,49,54,55,55,48,50,50,57,44,110,97,118,97,106,111,119,104,105,116,101,58,49,54,55,54,56,54,56,53,44,110,97,118,121,58,49,50,56,44,111,108,100,108,97,99,101,58,49,54,54,52,51,53,53,56,44,111,108,105,118,101,58,56,52,50,49,51,55,54,44,111,108,105,118,101,100,114,97,98,58,55,48,52,56,55,51,57,44,111,114,97,110,103,101,58,49,54,55,53,51,57,50,48,44,111,114,97,110,103,101,114,101,100,58,49,54,55,50,57,51,52,52,44,111,114,99,104,105,100,58,49,52,51,49,53,55,51,52,44,112,97,108,101,103,111,108,100,101,110,114,111,100,58,49,53,54,53,55,49,51,48,44,112,97,108,101,103,114,101,101,110,58,49,48,48,50,53,56,56,48,44,112,97,108,101,116,117,114,113,117,111,105,115,101,58,49,49,53,50,57,57,54,54,44,112,97,108,101,118,105,111,108,101,116,114,101,100,58,49,52,51,56,49,50,48,51,44,112,97,112,97,121,97,119,104,105,112,58,49,54,55,55,51,48,55,55,44,112,101,97,99,104,112,117,102,102,58,49,54,55,54,55,54,55,51,44,112,101,114,117,58,49,51,52,54,56,57,57,49,44,112,105,110,107,58,49,54,55,54,49,48,51,53,44,112,108,117,109,58,49,52,53,50,52,54,51,55,44,112,111,119,100,101,114,98,108,117,101,58,49,49,53,57,49,57,49,48,44,112,117,114,112,108,101,58,56,51,56,56,55,51,54,44,114,101,98,101,99,99,97,112,117,114,112,108,101,58,54,54,57,55,56,56,49,44,114,101,100,58,49,54,55,49,49,54,56,48,44,114,111,115,121,98,114,111,119,110,58,49,50,51,53,55,53,49,57,44,114,111,121,97,108,98,108,117,101,58,52,50,56,54,57,52,53,44,115,97,100,100,108,101,98,114,111,119,110,58,57,49,50,55,49,56,55,44,115,97,108,109,111,110,58,49,54,52,49,54,56,56,50,44,115,97,110,100,121,98,114,111,119,110,58,49,54,48,51,50,56,54,52,44,115,101,97,103,114,101,101,110,58,51,48,53,48,51,50,55,44,115,101,97,115,104,101,108,108,58,49,54,55,55,52,54,51,56,44,115,105,101,110,110,97,58,49,48,53,48,54,55,57,55,44,115,105,108,118,101,114,58,49,50,54,51,50,50,53,54,44,115,107,121,98,108,117,101,58,56,57,48,48,51,51,49,44,115,108,97,116,101,98,108,117,101,58,54,57,55,48,48,54,49,44,115,108,97,116,101,103,114,97,121,58,55,51,55,50,57,52,52,44,115,108,97,116,101,103,114,101,121,58,55,51,55,50,57,52,52,44,115,110,111,119,58,49,54,55,55,53,57,51,48,44,115,112,114,105,110,103,103,114,101,101,110,58,54,53,52,48,55,44,115,116,101,101,108,98,108,117,101,58,52,54,50,48,57,56,48,44,116,97,110,58,49,51,56,48,56,55,56,48,44,116,101,97,108,58,51,50,56,57,54,44,116,104,105,115,116,108,101,58,49,52,50,48,52,56,56,56,44,116,111,109,97,116,111,58,49,54,55,51,55,48,57,53,44,116,117,114,113,117,111,105,115,101,58,52,50,53,49,56,53,54,44,118,105,111,108,101,116,58,49,53,54,51,49,48,56,54,44,119,104,101,97,116,58,49,54,49,49,51,51,51,49,44,119,104,105,116,101,58,49,54,55,55,55,50,49,53,44,119,104,105,116,101,115,109,111,107,101,58,49,54,49,49,57,50,56,53,44,121,101,108,108,111,119,58,49,54,55,55,54,57,54,48,44,121,101,108,108,111,119,103,114,101,101,110,58,49,48,49,52,53,48,55,52,125,59,102,117,110,99,116,105,111,110,32,104,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,114,103,98,40,41,46,102,111,114,109,97,116,72,101,120,40,41,125,102,117,110,99,116,105,111,110,32,100,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,114,103,98,40,41,46,102,111,114,109,97,116,82,103,98,40,41,125,102,117,110,99,116,105,111,110,32,112,110,40,116,41,123,118,97,114,32,110,44,101,59,114,101,116,117,114,110,32,116,61,40,116,43,34,34,41,46,116,114,105,109,40,41,46,116,111,76,111,119,101,114,67,97,115,101,40,41,44,40,110,61,114,110,46,101,120,101,99,40,116,41,41,63,40,101,61,110,91,49,93,46,108,101,110,103,116,104,44,110,61,112,97,114,115,101,73,110,116,40,110,91,49,93,44,49,54,41,44,54,61,61,61,101,63,118,110,40,110,41,58,51,61,61,61,101,63,110,101,119,32,98,110,40,110,62,62,56,38,49,53,124,110,62,62,52,38,50,52,48,44,110,62,62,52,38,49,53,124,50,52,48,38,110,44,40,49,53,38,110,41,60,60,52,124,49,53,38,110,44,49,41,58,56,61,61,61,101,63,103,110,40,110,62,62,50,52,38,50,53,53,44,110,62,62,49,54,38,50,53,53,44,110,62,62,56,38,50,53,53,44,40,50,53,53,38,110,41,47,50,53,53,41,58,52,61,61,61,101,63,103,110,40,110,62,62,49,50,38,49,53,124,110,62,62,56,38,50,52,48,44,110,62,62,56,38,49,53,124,110,62,62,52,38,50,52,48,44,110,62,62,52,38,49,53,124,50,52,48,38,110,44,40,40,49,53,38,110,41,60,60,52,124,49,53,38,110,41,47,50,53,53,41,58,110,117,108,108,41,58,40,110,61,111,110,46,101,120,101,99,40,116,41,41,63,110,101,119,32,98,110,40,110,91,49,93,44,110,91,50,93,44,110,91,51,93,44,49,41,58,40,110,61,97,110,46,101,120,101,99,40,116,41,41,63,110,101,119,32,98,110,40,50,53,53,42,110,91,49,93,47,49,48,48,44,50,53,53,42,110,91,50,93,47,49,48,48,44,50,53,53,42,110,91,51,93,47,49,48,48,44,49,41,58,40,110,61,117,110,46,101,120,101,99,40,116,41,41,63,103,110,40,110,91,49,93,44,110,91,50,93,44,110,91,51,93,44,110,91,52,93,41,58,40,110,61,99,110,46,101,120,101,99,40,116,41,41,63,103,110,40,50,53,53,42,110,91,49,93,47,49,48,48,44,50,53,53,42,110,91,50,93,47,49,48,48,44,50,53,53,42,110,91,51,93,47,49,48,48,44,110,91,52,93,41,58,40,110,61,102,110,46,101,120,101,99,40,116,41,41,63,77,110,40,110,91,49,93,44,110,91,50,93,47,49,48,48,44,110,91,51,93,47,49,48,48,44,49,41,58,40,110,61,115,110,46,101,120,101,99,40,116,41,41,63,77,110,40,110,91,49,93,44,110,91,50,93,47,49,48,48,44,110,91,51,93,47,49,48,48,44,110,91,52,93,41,58,108,110,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,116,41,63,118,110,40,108,110,91,116,93,41,58,34,116,114,97,110,115,112,97,114,101,110,116,34,61,61,61,116,63,110,101,119,32,98,110,40,78,97,78,44,78,97,78,44,78,97,78,44,48,41,58,110,117,108,108,125,102,117,110,99,116,105,111,110,32,118,110,40,116,41,123,114,101,116,117,114,110,32,110,101,119,32,98,110,40,116,62,62,49,54,38,50,53,53,44,116,62,62,56,38,50,53,53,44,50,53,53,38,116,44,49,41,125,102,117,110,99,116,105,111,110,32,103,110,40,116,44,110,44,101,44,114,41,123,114,101,116,117,114,110,32,114,60,61,48,38,38,40,116,61,110,61,101,61,78,97,78,41,44,110,101,119,32,98,110,40,116,44,110,44,101,44,114,41,125,102,117,110,99,116,105,111,110,32,121,110,40,116,41,123,114,101,116,117,114,110,32,116,32,105,110,115,116,97,110,99,101,111,102,32,74,116,124,124,40,116,61,112,110,40,116,41,41,44,116,63,110,101,119,32,98,110,40,40,116,61,116,46,114,103,98,40,41,41,46,114,44,116,46,103,44,116,46,98,44,116,46,111,112,97,99,105,116,121,41,58,110,101,119,32,98,110,125,102,117,110,99,116,105,111,110,32,95,110,40,116,44,110,44,101,44,114,41,123,114,101,116,117,114,110,32,49,61,61,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,121,110,40,116,41,58,110,101,119,32,98,110,40,116,44,110,44,101,44,110,117,108,108,61,61,114,63,49,58,114,41,125,102,117,110,99,116,105,111,110,32,98,110,40,116,44,110,44,101,44,114,41,123,116,104,105,115,46,114,61,43,116,44,116,104,105,115,46,103,61,43,110,44,116,104,105,115,46,98,61,43,101,44,116,104,105,115,46,111,112,97,99,105,116,121,61,43,114,125,102,117,110,99,116,105,111,110,32,109,110,40,41,123,114,101,116,117,114,110,34,35,34,43,119,110,40,116,104,105,115,46,114,41,43,119,110,40,116,104,105,115,46,103,41,43,119,110,40,116,104,105,115,46,98,41,125,102,117,110,99,116,105,111,110,32,120,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,111,112,97,99,105,116,121,59,114,101,116,117,114,110,40,49,61,61,61,40,116,61,105,115,78,97,78,40,116,41,63,49,58,77,97,116,104,46,109,97,120,40,48,44,77,97,116,104,46,109,105,110,40,49,44,116,41,41,41,63,34,114,103,98,40,34,58,34,114,103,98,97,40,34,41,43,77,97,116,104,46,109,97,120,40,48,44,77,97,116,104,46,109,105,110,40,50,53,53,44,77,97,116,104,46,114,111,117,110,100,40,116,104,105,115,46,114,41,124,124,48,41,41,43,34,44,32,34,43,77,97,116,104,46,109,97,120,40,48,44,77,97,116,104,46,109,105,110,40,50,53,53,44,77,97,116,104,46,114,111,117,110,100,40,116,104,105,115,46,103,41,124,124,48,41,41,43,34,44,32,34,43,77,97,116,104,46,109,97,120,40,48,44,77,97,116,104,46,109,105,110,40,50,53,53,44,77,97,116,104,46,114,111,117,110,100,40,116,104,105,115,46,98,41,124,124,48,41,41,43,40,49,61,61,61,116,63,34,41,34,58,34,44,32,34,43,116,43,34,41,34,41,125,102,117,110,99,116,105,111,110,32,119,110,40,116,41,123,114,101,116,117,114,110,40,40,116,61,77,97,116,104,46,109,97,120,40,48,44,77,97,116,104,46,109,105,110,40,50,53,53,44,77,97,116,104,46,114,111,117,110,100,40,116,41,124,124,48,41,41,41,60,49,54,63,34,48,34,58,34,34,41,43,116,46,116,111,83,116,114,105,110,103,40,49,54,41,125,102,117,110,99,116,105,111,110,32,77,110,40,116,44,110,44,101,44,114,41,123,114,101,116,117,114,110,32,114,60,61,48,63,116,61,110,61,101,61,78,97,78,58,101,60,61,48,124,124,101,62,61,49,63,116,61,110,61,78,97,78,58,110,60,61,48,38,38,40,116,61,78,97,78,41,44,110,101,119,32,65,110,40,116,44,110,44,101,44,114,41,125,102,117,110,99,116,105,111,110,32,78,110,40,116,41,123,105,102,40,116,32,105,110,115,116,97,110,99,101,111,102,32,65,110,41,114,101,116,117,114,110,32,110,101,119,32,65,110,40,116,46,104,44,116,46,115,44,116,46,108,44,116,46,111,112,97,99,105,116,121,41,59,105,102,40,116,32,105,110,115,116,97,110,99,101,111,102,32,74,116,124,124,40,116,61,112,110,40,116,41,41,44,33,116,41,114,101,116,117,114,110,32,110,101,119,32,65,110,59,105,102,40,116,32,105,110,115,116,97,110,99,101,111,102,32,65,110,41,114,101,116,117,114,110,32,116,59,118,97,114,32,110,61,40,116,61,116,46,114,103,98,40,41,41,46,114,47,50,53,53,44,101,61,116,46,103,47,50,53,53,44,114,61,116,46,98,47,50,53,53,44,105,61,77,97,116,104,46,109,105,110,40,110,44,101,44,114,41,44,111,61,77,97,116,104,46,109,97,120,40,110,44,101,44,114,41,44,97,61,78,97,78,44,117,61,111,45,105,44,99,61,40,111,43,105,41,47,50,59,114,101,116,117,114,110,32,117,63,40,97,61,110,61,61,61,111,63,40,101,45,114,41,47,117,43,54,42,40,101,60,114,41,58,101,61,61,61,111,63,40,114,45,110,41,47,117,43,50,58,40,110,45,101,41,47,117,43,52,44,117,47,61,99,60,46,53,63,111,43,105,58,50,45,111,45,105,44,97,42,61,54,48,41,58,117,61,99,62,48,38,38,99,60,49,63,48,58,97,44,110,101,119,32,65,110,40,97,44,117,44,99,44,116,46,111,112,97,99,105,116,121,41,125,102,117,110,99,116,105,111,110,32,84,110,40,116,44,110,44,101,44,114,41,123,114,101,116,117,114,110,32,49,61,61,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,78,110,40,116,41,58,110,101,119,32,65,110,40,116,44,110,44,101,44,110,117,108,108,61,61,114,63,49,58,114,41,125,102,117,110,99,116,105,111,110,32,65,110,40,116,44,110,44,101,44,114,41,123,116,104,105,115,46,104,61,43,116,44,116,104,105,115,46,115,61,43,110,44,116,104,105,115,46,108,61,43,101,44,116,104,105,115,46,111,112,97,99,105,116,121,61,43,114,125,102,117,110,99,116,105,111,110,32,83,110,40,116,44,110,44,101,41,123,114,101,116,117,114,110,32,50,53,53,42,40,116,60,54,48,63,110,43,40,101,45,110,41,42,116,47,54,48,58,116,60,49,56,48,63,101,58,116,60,50,52,48,63,110,43,40,101,45,110,41,42,40,50,52,48,45,116,41,47,54,48,58,110,41,125,81,116,40,74,116,44,112,110,44,123,99,111,112,121,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,79,98,106,101,99,116,46,97,115,115,105,103,110,40,110,101,119,32,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,44,116,104,105,115,44,116,41,125,44,100,105,115,112,108,97,121,97,98,108,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,114,103,98,40,41,46,100,105,115,112,108,97,121,97,98,108,101,40,41,125,44,104,101,120,58,104,110,44,102,111,114,109,97,116,72,101,120,58,104,110,44,102,111,114,109,97,116,72,115,108,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,78,110,40,116,104,105,115,41,46,102,111,114,109,97,116,72,115,108,40,41,125,44,102,111,114,109,97,116,82,103,98,58,100,110,44,116,111,83,116,114,105,110,103,58,100,110,125,41,44,81,116,40,98,110,44,95,110,44,75,116,40,74,116,44,123,98,114,105,103,104,116,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,61,110,117,108,108,61,61,116,63,49,47,46,55,58,77,97,116,104,46,112,111,119,40,49,47,46,55,44,116,41,44,110,101,119,32,98,110,40,116,104,105,115,46,114,42,116,44,116,104,105,115,46,103,42,116,44,116,104,105,115,46,98,42,116,44,116,104,105,115,46,111,112,97,99,105,116,121,41,125,44,100,97,114,107,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,61,110,117,108,108,61,61,116,63,46,55,58,77,97,116,104,46,112,111,119,40,46,55,44,116,41,44,110,101,119,32,98,110,40,116,104,105,115,46,114,42,116,44,116,104,105,115,46,103,42,116,44,116,104,105,115,46,98,42,116,44,116,104,105,115,46,111,112,97,99,105,116,121,41,125,44,114,103,98,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,125,44,100,105,115,112,108,97,121,97,98,108,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,45,46,53,60,61,116,104,105,115,46,114,38,38,116,104,105,115,46,114,60,50,53,53,46,53,38,38,45,46,53,60,61,116,104,105,115,46,103,38,38,116,104,105,115,46,103,60,50,53,53,46,53,38,38,45,46,53,60,61,116,104,105,115,46,98,38,38,116,104,105,115,46,98,60,50,53,53,46,53,38,38,48,60,61,116,104,105,115,46,111,112,97,99,105,116,121,38,38,116,104,105,115,46,111,112,97,99,105,116,121,60,61,49,125,44,104,101,120,58,109,110,44,102,111,114,109,97,116,72,101,120,58,109,110,44,102,111,114,109,97,116,82,103,98,58,120,110,44,116,111,83,116,114,105,110,103,58,120,110,125,41,41,44,81,116,40,65,110,44,84,110,44,75,116,40,74,116,44,123,98,114,105,103,104,116,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,61,110,117,108,108,61,61,116,63,49,47,46,55,58,77,97,116,104,46,112,111,119,40,49,47,46,55,44,116,41,44,110,101,119,32,65,110,40,116,104,105,115,46,104,44,116,104,105,115,46,115,44,116,104,105,115,46,108,42,116,44,116,104,105,115,46,111,112,97,99,105,116,121,41,125,44,100,97,114,107,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,61,110,117,108,108,61,61,116,63,46,55,58,77,97,116,104,46,112,111,119,40,46,55,44,116,41,44,110,101,119,32,65,110,40,116,104,105,115,46,104,44,116,104,105,115,46,115,44,116,104,105,115,46,108,42,116,44,116,104,105,115,46,111,112,97,99,105,116,121,41,125,44,114,103,98,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,104,37,51,54,48,43,51,54,48,42,40,116,104,105,115,46,104,60,48,41,44,110,61,105,115,78,97,78,40,116,41,124,124,105,115,78,97,78,40,116,104,105,115,46,115,41,63,48,58,116,104,105,115,46,115,44,101,61,116,104,105,115,46,108,44,114,61,101,43,40,101,60,46,53,63,101,58,49,45,101,41,42,110,44,105,61,50,42,101,45,114,59,114,101,116,117,114,110,32,110,101,119,32,98,110,40,83,110,40,116,62,61,50,52,48,63,116,45,50,52,48,58,116,43,49,50,48,44,105,44,114,41,44,83,110,40,116,44,105,44,114,41,44,83,110,40,116,60,49,50,48,63,116,43,50,52,48,58,116,45,49,50,48,44,105,44,114,41,44,116,104,105,115,46,111,112,97,99,105,116,121,41,125,44,100,105,115,112,108,97,121,97,98,108,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,40,48,60,61,116,104,105,115,46,115,38,38,116,104,105,115,46,115,60,61,49,124,124,105,115,78,97,78,40,116,104,105,115,46,115,41,41,38,38,48,60,61,116,104,105,115,46,108,38,38,116,104,105,115,46,108,60,61,49,38,38,48,60,61,116,104,105,115,46,111,112,97,99,105,116,121,38,38,116,104,105,115,46,111,112,97,99,105,116,121,60,61,49,125,44,102,111,114,109,97,116,72,115,108,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,111,112,97,99,105,116,121,59,114,101,116,117,114,110,40,49,61,61,61,40,116,61,105,115,78,97,78,40,116,41,63,49,58,77,97,116,104,46,109,97,120,40,48,44,77,97,116,104,46,109,105,110,40,49,44,116,41,41,41,63,34,104,115,108,40,34,58,34,104,115,108,97,40,34,41,43,40,116,104,105,115,46,104,124,124,48,41,43,34,44,32,34,43,49,48,48,42,40,116,104,105,115,46,115,124,124,48,41,43,34,37,44,32,34,43,49,48,48,42,40,116,104,105,115,46,108,124,124,48,41,43,34,37,34,43,40,49,61,61,61,116,63,34,41,34,58,34,44,32,34,43,116,43,34,41,34,41,125,125,41,41,59,118,97,114,32,107,110,61,77,97,116,104,46,80,73,47,49,56,48,44,69,110,61,49,56,48,47,77,97,116,104,46,80,73,44,67,110,61,46,57,54,52,50,50,44,80,110,61,49,44,122,110,61,46,56,50,53,50,49,44,82,110,61,52,47,50,57,44,68,110,61,54,47,50,57,44,113,110,61,51,42,68,110,42,68,110,44,76,110,61,68,110,42,68,110,42,68,110,59,102,117,110,99,116,105,111,110,32,85,110,40,116,41,123,105,102,40,116,32,105,110,115,116,97,110,99,101,111,102,32,66,110,41,114,101,116,117,114,110,32,110,101,119,32,66,110,40,116,46,108,44,116,46,97,44,116,46,98,44,116,46,111,112,97,99,105,116,121,41,59,105,102,40,116,32,105,110,115,116,97,110,99,101,111,102,32,86,110,41,114,101,116,117,114,110,32,71,110,40,116,41,59,116,32,105,110,115,116,97,110,99,101,111,102,32,98,110,124,124,40,116,61,121,110,40,116,41,41,59,118,97,114,32,110,44,101,44,114,61,72,110,40,116,46,114,41,44,105,61,72,110,40,116,46,103,41,44,111,61,72,110,40,116,46,98,41,44,97,61,70,110,40,40,46,50,50,50,53,48,52,53,42,114,43,46,55,49,54,56,55,56,54,42,105,43,46,48,54,48,54,49,54,57,42,111,41,47,80,110,41,59,114,101,116,117,114,110,32,114,61,61,61,105,38,38,105,61,61,61,111,63,110,61,101,61,97,58,40,110,61,70,110,40,40,46,52,51,54,48,55,52,55,42,114,43,46,51,56,53,48,54,52,57,42,105,43,46,49,52,51,48,56,48,52,42,111,41,47,67,110,41,44,101,61,70,110,40,40,46,48,49,51,57,51,50,50,42,114,43,46,48,57,55,49,48,52,53,42,105,43,46,55,49,52,49,55,51,51,42,111,41,47,122,110,41,41,44,110,101,119,32,66,110,40,49,49,54,42,97,45,49,54,44,53,48,48,42,40,110,45,97,41,44,50,48,48,42,40,97,45,101,41,44,116,46,111,112,97,99,105,116,121,41,125,102,117,110,99,116,105,111,110,32,79,110,40,116,44,110,44,101,44,114,41,123,114,101,116,117,114,110,32,49,61,61,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,85,110,40,116,41,58,110,101,119,32,66,110,40,116,44,110,44,101,44,110,117,108,108,61,61,114,63,49,58,114,41,125,102,117,110,99,116,105,111,110,32,66,110,40,116,44,110,44,101,44,114,41,123,116,104,105,115,46,108,61,43,116,44,116,104,105,115,46,97,61,43,110,44,116,104,105,115,46,98,61,43,101,44,116,104,105,115,46,111,112,97,99,105,116,121,61,43,114,125,102,117,110,99,116,105,111,110,32,70,110,40,116,41,123,114,101,116,117,114,110,32,116,62,76,110,63,77,97,116,104,46,112,111,119,40,116,44,49,47,51,41,58,116,47,113,110,43,82,110,125,102,117,110,99,116,105,111,110,32,89,110,40,116,41,123,114,101,116,117,114,110,32,116,62,68,110,63,116,42,116,42,116,58,113,110,42,40,116,45,82,110,41,125,102,117,110,99,116,105,111,110,32,73,110,40,116,41,123,114,101,116,117,114,110,32,50,53,53,42,40,116,60,61,46,48,48,51,49,51,48,56,63,49,50,46,57,50,42,116,58,49,46,48,53,53,42,77,97,116,104,46,112,111,119,40,116,44,49,47,50,46,52,41,45,46,48,53,53,41,125,102,117,110,99,116,105,111,110,32,72,110,40,116,41,123,114,101,116,117,114,110,40,116,47,61,50,53,53,41,60,61,46,48,52,48,52,53,63,116,47,49,50,46,57,50,58,77,97,116,104,46,112,111,119,40,40,116,43,46,48,53,53,41,47,49,46,48,53,53,44,50,46,52,41,125,102,117,110,99,116,105,111,110,32,106,110,40,116,41,123,105,102,40,116,32,105,110,115,116,97,110,99,101,111,102,32,86,110,41,114,101,116,117,114,110,32,110,101,119,32,86,110,40,116,46,104,44,116,46,99,44,116,46,108,44,116,46,111,112,97,99,105,116,121,41,59,105,102,40,116,32,105,110,115,116,97,110,99,101,111,102,32,66,110,124,124,40,116,61,85,110,40,116,41,41,44,48,61,61,61,116,46,97,38,38,48,61,61,61,116,46,98,41,114,101,116,117,114,110,32,110,101,119,32,86,110,40,78,97,78,44,48,60,116,46,108,38,38,116,46,108,60,49,48,48,63,48,58,78,97,78,44,116,46,108,44,116,46,111,112,97,99,105,116,121,41,59,118,97,114,32,110,61,77,97,116,104,46,97,116,97,110,50,40,116,46,98,44,116,46,97,41,42,69,110,59,114,101,116,117,114,110,32,110,101,119,32,86,110,40,110,60,48,63,110,43,51,54,48,58,110,44,77,97,116,104,46,115,113,114,116,40,116,46,97,42,116,46,97,43,116,46,98,42,116,46,98,41,44,116,46,108,44,116,46,111,112,97,99,105,116,121,41,125,102,117,110,99,116,105,111,110,32,88,110,40,116,44,110,44,101,44,114,41,123,114,101,116,117,114,110,32,49,61,61,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,106,110,40,116,41,58,110,101,119,32,86,110,40,116,44,110,44,101,44,110,117,108,108,61,61,114,63,49,58,114,41,125,102,117,110,99,116,105,111,110,32,86,110,40,116,44,110,44,101,44,114,41,123,116,104,105,115,46,104,61,43,116,44,116,104,105,115,46,99,61,43,110,44,116,104,105,115,46,108,61,43,101,44,116,104,105,115,46,111,112,97,99,105,116,121,61,43,114,125,102,117,110,99,116,105,111,110,32,71,110,40,116,41,123,105,102,40,105,115,78,97,78,40,116,46,104,41,41,114,101,116,117,114,110,32,110,101,119,32,66,110,40,116,46,108,44,48,44,48,44,116,46,111,112,97,99,105,116,121,41,59,118,97,114,32,110,61,116,46,104,42,107,110,59,114,101,116,117,114,110,32,110,101,119,32,66,110,40,116,46,108,44,77,97,116,104,46,99,111,115,40,110,41,42,116,46,99,44,77,97,116,104,46,115,105,110,40,110,41,42,116,46,99,44,116,46,111,112,97,99,105,116,121,41,125,81,116,40,66,110,44,79,110,44,75,116,40,74,116,44,123,98,114,105,103,104,116,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,101,119,32,66,110,40,116,104,105,115,46,108,43,49,56,42,40,110,117,108,108,61,61,116,63,49,58,116,41,44,116,104,105,115,46,97,44,116,104,105,115,46,98,44,116,104,105,115,46,111,112,97,99,105,116,121,41,125,44,100,97,114,107,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,101,119,32,66,110,40,116,104,105,115,46,108,45,49,56,42,40,110,117,108,108,61,61,116,63,49,58,116,41,44,116,104,105,115,46,97,44,116,104,105,115,46,98,44,116,104,105,115,46,111,112,97,99,105,116,121,41,125,44,114,103,98,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,40,116,104,105,115,46,108,43,49,54,41,47,49,49,54,44,110,61,105,115,78,97,78,40,116,104,105,115,46,97,41,63,116,58,116,43,116,104,105,115,46,97,47,53,48,48,44,101,61,105,115,78,97,78,40,116,104,105,115,46,98,41,63,116,58,116,45,116,104,105,115,46,98,47,50,48,48,59,114,101,116,117,114,110,32,110,101,119,32,98,110,40,73,110,40,51,46,49,51,51,56,53,54,49,42,40,110,61,67,110,42,89,110,40,110,41,41,45,49,46,54,49,54,56,54,54,55,42,40,116,61,80,110,42,89,110,40,116,41,41,45,46,52,57,48,54,49,52,54,42,40,101,61,122,110,42,89,110,40,101,41,41,41,44,73,110,40,45,46,57,55,56,55,54,56,52,42,110,43,49,46,57,49,54,49,52,49,53,42,116,43,46,48,51,51,52,53,52,42,101,41,44,73,110,40,46,48,55,49,57,52,53,51,42,110,45,46,50,50,56,57,57,49,52,42,116,43,49,46,52,48,53,50,52,50,55,42,101,41,44,116,104,105,115,46,111,112,97,99,105,116,121,41,125,125,41,41,44,81,116,40,86,110,44,88,110,44,75,116,40,74,116,44,123,98,114,105,103,104,116,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,101,119,32,86,110,40,116,104,105,115,46,104,44,116,104,105,115,46,99,44,116,104,105,115,46,108,43,49,56,42,40,110,117,108,108,61,61,116,63,49,58,116,41,44,116,104,105,115,46,111,112,97,99,105,116,121,41,125,44,100,97,114,107,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,101,119,32,86,110,40,116,104,105,115,46,104,44,116,104,105,115,46,99,44,116,104,105,115,46,108,45,49,56,42,40,110,117,108,108,61,61,116,63,49,58,116,41,44,116,104,105,115,46,111,112,97,99,105,116,121,41,125,44,114,103,98,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,71,110,40,116,104,105,115,41,46,114,103,98,40,41,125,125,41,41,59,118,97,114,32,36,110,61,45,46,49,52,56,54,49,44,87,110,61,49,46,55,56,50,55,55,44,90,110,61,45,46,50,57,50,50,55,44,81,110,61,45,46,57,48,54,52,57,44,75,110,61,49,46,57,55,50,57,52,44,74,110,61,75,110,42,81,110,44,116,101,61,75,110,42,87,110,44,110,101,61,87,110,42,90,110,45,81,110,42,36,110,59,102,117,110,99,116,105,111,110,32,101,101,40,116,44,110,44,101,44,114,41,123,114,101,116,117,114,110,32,49,61,61,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,116,32,105,110,115,116,97,110,99,101,111,102,32,114,101,41,114,101,116,117,114,110,32,110,101,119,32,114,101,40,116,46,104,44,116,46,115,44,116,46,108,44,116,46,111,112,97,99,105,116,121,41,59,116,32,105,110,115,116,97,110,99,101,111,102,32,98,110,124,124,40,116,61,121,110,40,116,41,41,59,118,97,114,32,110,61,116,46,114,47,50,53,53,44,101,61,116,46,103,47,50,53,53,44,114,61,116,46,98,47,50,53,53,44,105,61,40,110,101,42,114,43,74,110,42,110,45,116,101,42,101,41,47,40,110,101,43,74,110,45,116,101,41,44,111,61,114,45,105,44,97,61,40,75,110,42,40,101,45,105,41,45,90,110,42,111,41,47,81,110,44,117,61,77,97,116,104,46,115,113,114,116,40,97,42,97,43,111,42,111,41,47,40,75,110,42,105,42,40,49,45,105,41,41,44,99,61,117,63,77,97,116,104,46,97,116,97,110,50,40,97,44,111,41,42,69,110,45,49,50,48,58,78,97,78,59,114,101,116,117,114,110,32,110,101,119,32,114,101,40,99,60,48,63,99,43,51,54,48,58,99,44,117,44,105,44,116,46,111,112,97,99,105,116,121,41,125,40,116,41,58,110,101,119,32,114,101,40,116,44,110,44,101,44,110,117,108,108,61,61,114,63,49,58,114,41,125,102,117,110,99,116,105,111,110,32,114,101,40,116,44,110,44,101,44,114,41,123,116,104,105,115,46,104,61,43,116,44,116,104,105,115,46,115,61,43,110,44,116,104,105,115,46,108,61,43,101,44,116,104,105,115,46,111,112,97,99,105,116,121,61,43,114,125,102,117,110,99,116,105,111,110,32,105,101,40,116,44,110,44,101,44,114,44,105,41,123,118,97,114,32,111,61,116,42,116,44,97,61,111,42,116,59,114,101,116,117,114,110,40,40,49,45,51,42,116,43,51,42,111,45,97,41,42,110,43,40,52,45,54,42,111,43,51,42,97,41,42,101,43,40,49,43,51,42,116,43,51,42,111,45,51,42,97,41,42,114,43,97,42,105,41,47,54,125,102,117,110,99,116,105,111,110,32,111,101,40,116,41,123,118,97,114,32,110,61,116,46,108,101,110,103,116,104,45,49,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,114,61,101,60,61,48,63,101,61,48,58,101,62,61,49,63,40,101,61,49,44,110,45,49,41,58,77,97,116,104,46,102,108,111,111,114,40,101,42,110,41,44,105,61,116,91,114,93,44,111,61,116,91,114,43,49,93,44,97,61,114,62,48,63,116,91,114,45,49,93,58,50,42,105,45,111,44,117,61,114,60,110,45,49,63,116,91,114,43,50,93,58,50,42,111,45,105,59,114,101,116,117,114,110,32,105,101,40,40,101,45,114,47,110,41,42,110,44,97,44,105,44,111,44,117,41,125,125,102,117,110,99,116,105,111,110,32,97,101,40,116,41,123,118,97,114,32,110,61,116,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,114,61,77,97,116,104,46,102,108,111,111,114,40,40,40,101,37,61,49,41,60,48,63,43,43,101,58,101,41,42,110,41,44,105,61,116,91,40,114,43,110,45,49,41,37,110,93,44,111,61,116,91,114,37,110,93,44,97,61,116,91,40,114,43,49,41,37,110,93,44,117,61,116,91,40,114,43,50,41,37,110,93,59,114,101,116,117,114,110,32,105,101,40,40,101,45,114,47,110,41,42,110,44,105,44,111,44,97,44,117,41,125,125,102,117,110,99,116,105,111,110,32,117,101,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,125,125,102,117,110,99,116,105,111,110,32,99,101,40,116,44,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,43,101,42,110,125,125,102,117,110,99,116,105,111,110,32,102,101,40,116,44,110,41,123,118,97,114,32,101,61,110,45,116,59,114,101,116,117,114,110,32,101,63,99,101,40,116,44,101,62,49,56,48,124,124,101,60,45,49,56,48,63,101,45,51,54,48,42,77,97,116,104,46,114,111,117,110,100,40,101,47,51,54,48,41,58,101,41,58,117,101,40,105,115,78,97,78,40,116,41,63,110,58,116,41,125,102,117,110,99,116,105,111,110,32,115,101,40,116,41,123,114,101,116,117,114,110,32,49,61,61,40,116,61,43,116,41,63,108,101,58,102,117,110,99,116,105,111,110,40,110,44,101,41,123,114,101,116,117,114,110,32,101,45,110,63,102,117,110,99,116,105,111,110,40,116,44,110,44,101,41,123,114,101,116,117,114,110,32,116,61,77,97,116,104,46,112,111,119,40,116,44,101,41,44,110,61,77,97,116,104,46,112,111,119,40,110,44,101,41,45,116,44,101,61,49,47,101,44,102,117,110,99,116,105,111,110,40,114,41,123,114,101,116,117,114,110,32,77,97,116,104,46,112,111,119,40,116,43,114,42,110,44,101,41,125,125,40,110,44,101,44,116,41,58,117,101,40,105,115,78,97,78,40,110,41,63,101,58,110,41,125,125,102,117,110,99,116,105,111,110,32,108,101,40,116,44,110,41,123,118,97,114,32,101,61,110,45,116,59,114,101,116,117,114,110,32,101,63,99,101,40,116,44,101,41,58,117,101,40,105,115,78,97,78,40,116,41,63,110,58,116,41,125,81,116,40,114,101,44,101,101,44,75,116,40,74,116,44,123,98,114,105,103,104,116,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,61,110,117,108,108,61,61,116,63,49,47,46,55,58,77,97,116,104,46,112,111,119,40,49,47,46,55,44,116,41,44,110,101,119,32,114,101,40,116,104,105,115,46,104,44,116,104,105,115,46,115,44,116,104,105,115,46,108,42,116,44,116,104,105,115,46,111,112,97,99,105,116,121,41,125,44,100,97,114,107,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,61,110,117,108,108,61,61,116,63,46,55,58,77,97,116,104,46,112,111,119,40,46,55,44,116,41,44,110,101,119,32,114,101,40,116,104,105,115,46,104,44,116,104,105,115,46,115,44,116,104,105,115,46,108,42,116,44,116,104,105,115,46,111,112,97,99,105,116,121,41,125,44,114,103,98,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,105,115,78,97,78,40,116,104,105,115,46,104,41,63,48,58,40,116,104,105,115,46,104,43,49,50,48,41,42,107,110,44,110,61,43,116,104,105,115,46,108,44,101,61,105,115,78,97,78,40,116,104,105,115,46,115,41,63,48,58,116,104,105,115,46,115,42,110,42,40,49,45,110,41,44,114,61,77,97,116,104,46,99,111,115,40,116,41,44,105,61,77,97,116,104,46,115,105,110,40,116,41,59,114,101,116,117,114,110,32,110,101,119,32,98,110,40,50,53,53,42,40,110,43,101,42,40,36,110,42,114,43,87,110,42,105,41,41,44,50,53,53,42,40,110,43,101,42,40,90,110,42,114,43,81,110,42,105,41,41,44,50,53,53,42,40,110,43,101,42,40,75,110,42,114,41,41,44,116,104,105,115,46,111,112,97,99,105,116,121,41,125,125,41,41,59,118,97,114,32,104,101,61,102,117,110,99,116,105,111,110,32,116,40,110,41,123,118,97,114,32,101,61,115,101,40,110,41,59,102,117,110,99,116,105,111,110,32,114,40,116,44,110,41,123,118,97,114,32,114,61,101,40,40,116,61,95,110,40,116,41,41,46,114,44,40,110,61,95,110,40,110,41,41,46,114,41,44,105,61,101,40,116,46,103,44,110,46,103,41,44,111,61,101,40,116,46,98,44,110,46,98,41,44,97,61,108,101,40,116,46,111,112,97,99,105,116,121,44,110,46,111,112,97,99,105,116,121,41,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,46,114,61,114,40,110,41,44,116,46,103,61,105,40,110,41,44,116,46,98,61,111,40,110,41,44,116,46,111,112,97,99,105,116,121,61,97,40,110,41,44,116,43,34,34,125,125,114,101,116,117,114,110,32,114,46,103,97,109,109,97,61,116,44,114,125,40,49,41,59,102,117,110,99,116,105,111,110,32,100,101,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,101,44,114,44,105,61,110,46,108,101,110,103,116,104,44,111,61,110,101,119,32,65,114,114,97,121,40,105,41,44,97,61,110,101,119,32,65,114,114,97,121,40,105,41,44,117,61,110,101,119,32,65,114,114,97,121,40,105,41,59,102,111,114,40,101,61,48,59,101,60,105,59,43,43,101,41,114,61,95,110,40,110,91,101,93,41,44,111,91,101,93,61,114,46,114,124,124,48,44,97,91,101,93,61,114,46,103,124,124,48,44,117,91,101,93,61,114,46,98,124,124,48,59,114,101,116,117,114,110,32,111,61,116,40,111,41,44,97,61,116,40,97,41,44,117,61,116,40,117,41,44,114,46,111,112,97,99,105,116,121,61,49,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,114,46,114,61,111,40,116,41,44,114,46,103,61,97,40,116,41,44,114,46,98,61,117,40,116,41,44,114,43,34,34,125,125,125,118,97,114,32,112,101,61,100,101,40,111,101,41,44,118,101,61,100,101,40,97,101,41,59,102,117,110,99,116,105,111,110,32,103,101,40,116,44,110,41,123,110,124,124,40,110,61,91,93,41,59,118,97,114,32,101,44,114,61,116,63,77,97,116,104,46,109,105,110,40,110,46,108,101,110,103,116,104,44,116,46,108,101,110,103,116,104,41,58,48,44,105,61,110,46,115,108,105,99,101,40,41,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,111,41,123,102,111,114,40,101,61,48,59,101,60,114,59,43,43,101,41,105,91,101,93,61,116,91,101,93,42,40,49,45,111,41,43,110,91,101,93,42,111,59,114,101,116,117,114,110,32,105,125,125,102,117,110,99,116,105,111,110,32,121,101,40,116,41,123,114,101,116,117,114,110,32,65,114,114,97,121,66,117,102,102,101,114,46,105,115,86,105,101,119,40,116,41,38,38,33,40,116,32,105,110,115,116,97,110,99,101,111,102,32,68,97,116,97,86,105,101,119,41,125,102,117,110,99,116,105,111,110,32,95,101,40,116,44,110,41,123,118,97,114,32,101,44,114,61,110,63,110,46,108,101,110,103,116,104,58,48,44,105,61,116,63,77,97,116,104,46,109,105,110,40,114,44,116,46,108,101,110,103,116,104,41,58,48,44,111,61,110,101,119,32,65,114,114,97,121,40,105,41,44,97,61,110,101,119,32,65,114,114,97,121,40,114,41,59,102,111,114,40,101,61,48,59,101,60,105,59,43,43,101,41,111,91,101,93,61,84,101,40,116,91,101,93,44,110,91,101,93,41,59,102,111,114,40,59,101,60,114,59,43,43,101,41,97,91,101,93,61,110,91,101,93,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,41,123,102,111,114,40,101,61,48,59,101,60,105,59,43,43,101,41,97,91,101,93,61,111,91,101,93,40,116,41,59,114,101,116,117,114,110,32,97,125,125,102,117,110,99,116,105,111,110,32,98,101,40,116,44,110,41,123,118,97,114,32,101,61,110,101,119,32,68,97,116,101,59,114,101,116,117,114,110,32,116,61,43,116,44,110,61,43,110,44,102,117,110,99,116,105,111,110,40,114,41,123,114,101,116,117,114,110,32,101,46,115,101,116,84,105,109,101,40,116,42,40,49,45,114,41,43,110,42,114,41,44,101,125,125,102,117,110,99,116,105,111,110,32,109,101,40,116,44,110,41,123,114,101,116,117,114,110,32,116,61,43,116,44,110,61,43,110,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,42,40,49,45,101,41,43,110,42,101,125,125,102,117,110,99,116,105,111,110,32,120,101,40,116,44,110,41,123,118,97,114,32,101,44,114,61,123,125,44,105,61,123,125,59,102,111,114,40,101,32,105,110,32,110,117,108,108,33,61,61,116,38,38,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,116,124,124,40,116,61,123,125,41,44,110,117,108,108,33,61,61,110,38,38,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,110,124,124,40,110,61,123,125,41,44,110,41,101,32,105,110,32,116,63,114,91,101,93,61,84,101,40,116,91,101,93,44,110,91,101,93,41,58,105,91,101,93,61,110,91,101,93,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,41,123,102,111,114,40,101,32,105,110,32,114,41,105,91,101,93,61,114,91,101,93,40,116,41,59,114,101,116,117,114,110,32,105,125,125,118,97,114,32,119,101,61,47,91,45,43,93,63,40,63,58,92,100,43,92,46,63,92,100,42,124,92,46,63,92,100,43,41,40,63,58,91,101,69,93,91,45,43,93,63,92,100,43,41,63,47,103,44,77,101,61,110,101,119,32,82,101,103,69,120,112,40,119,101,46,115,111,117,114,99,101,44,34,103,34,41,59,102,117,110,99,116,105,111,110,32,78,101,40,116,44,110,41,123,118,97,114,32,101,44,114,44,105,44,111,61,119,101,46,108,97,115,116,73,110,100,101,120,61,77,101,46,108,97,115,116,73,110,100,101,120,61,48,44,97,61,45,49,44,117,61,91,93,44,99,61,91,93,59,102,111,114,40,116,43,61,34,34,44,110,43,61,34,34,59,40,101,61,119,101,46,101,120,101,99,40,116,41,41,38,38,40,114,61,77,101,46,101,120,101,99,40,110,41,41,59,41,40,105,61,114,46,105,110,100,101,120,41,62,111,38,38,40,105,61,110,46,115,108,105,99,101,40,111,44,105,41,44,117,91,97,93,63,117,91,97,93,43,61,105,58,117,91,43,43,97,93,61,105,41,44,40,101,61,101,91,48,93,41,61,61,61,40,114,61,114,91,48,93,41,63,117,91,97,93,63,117,91,97,93,43,61,114,58,117,91,43,43,97,93,61,114,58,40,117,91,43,43,97,93,61,110,117,108,108,44,99,46,112,117,115,104,40,123,105,58,97,44,120,58,109,101,40,101,44,114,41,125,41,41,44,111,61,77,101,46,108,97,115,116,73,110,100,101,120,59,114,101,116,117,114,110,32,111,60,110,46,108,101,110,103,116,104,38,38,40,105,61,110,46,115,108,105,99,101,40,111,41,44,117,91,97,93,63,117,91,97,93,43,61,105,58,117,91,43,43,97,93,61,105,41,44,117,46,108,101,110,103,116,104,60,50,63,99,91,48,93,63,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,40,110,41,43,34,34,125,125,40,99,91,48,93,46,120,41,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,125,125,40,110,41,58,40,110,61,99,46,108,101,110,103,116,104,44,102,117,110,99,116,105,111,110,40,116,41,123,102,111,114,40,118,97,114,32,101,44,114,61,48,59,114,60,110,59,43,43,114,41,117,91,40,101,61,99,91,114,93,41,46,105,93,61,101,46,120,40,116,41,59,114,101,116,117,114,110,32,117,46,106,111,105,110,40,34,34,41,125,41,125,102,117,110,99,116,105,111,110,32,84,101,40,116,44,110,41,123,118,97,114,32,101,44,114,61,116,121,112,101,111,102,32,110,59,114,101,116,117,114,110,32,110,117,108,108,61,61,110,124,124,34,98,111,111,108,101,97,110,34,61,61,61,114,63,117,101,40,110,41,58,40,34,110,117,109,98,101,114,34,61,61,61,114,63,109,101,58,34,115,116,114,105,110,103,34,61,61,61,114,63,40,101,61,112,110,40,110,41,41,63,40,110,61,101,44,104,101,41,58,78,101,58,110,32,105,110,115,116,97,110,99,101,111,102,32,112,110,63,104,101,58,110,32,105,110,115,116,97,110,99,101,111,102,32,68,97,116,101,63,98,101,58,121,101,40,110,41,63,103,101,58,65,114,114,97,121,46,105,115,65,114,114,97,121,40,110,41,63,95,101,58,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,110,46,118,97,108,117,101,79,102,38,38,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,110,46,116,111,83,116,114,105,110,103,124,124,105,115,78,97,78,40,110,41,63,120,101,58,109,101,41,40,116,44,110,41,125,102,117,110,99,116,105,111,110,32,65,101,40,116,44,110,41,123,114,101,116,117,114,110,32,116,61,43,116,44,110,61,43,110,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,77,97,116,104,46,114,111,117,110,100,40,116,42,40,49,45,101,41,43,110,42,101,41,125,125,118,97,114,32,83,101,44,107,101,44,69,101,44,67,101,44,80,101,61,49,56,48,47,77,97,116,104,46,80,73,44,122,101,61,123,116,114,97,110,115,108,97,116,101,88,58,48,44,116,114,97,110,115,108,97,116,101,89,58,48,44,114,111,116,97,116,101,58,48,44,115,107,101,119,88,58,48,44,115,99,97,108,101,88,58,49,44,115,99,97,108,101,89,58,49,125,59,102,117,110,99,116,105,111,110,32,82,101,40,116,44,110,44,101,44,114,44,105,44,111,41,123,118,97,114,32,97,44,117,44,99,59,114,101,116,117,114,110,40,97,61,77,97,116,104,46,115,113,114,116,40,116,42,116,43,110,42,110,41,41,38,38,40,116,47,61,97,44,110,47,61,97,41,44,40,99,61,116,42,101,43,110,42,114,41,38,38,40,101,45,61,116,42,99,44,114,45,61,110,42,99,41,44,40,117,61,77,97,116,104,46,115,113,114,116,40,101,42,101,43,114,42,114,41,41,38,38,40,101,47,61,117,44,114,47,61,117,44,99,47,61,117,41,44,116,42,114,60,110,42,101,38,38,40,116,61,45,116,44,110,61,45,110,44,99,61,45,99,44,97,61,45,97,41,44,123,116,114,97,110,115,108,97,116,101,88,58,105,44,116,114,97,110,115,108,97,116,101,89,58,111,44,114,111,116,97,116,101,58,77,97,116,104,46,97,116,97,110,50,40,110,44,116,41,42,80,101,44,115,107,101,119,88,58,77,97,116,104,46,97,116,97,110,40,99,41,42,80,101,44,115,99,97,108,101,88,58,97,44,115,99,97,108,101,89,58,117,125,125,102,117,110,99,116,105,111,110,32,68,101,40,116,44,110,44,101,44,114,41,123,102,117,110,99,116,105,111,110,32,105,40,116,41,123,114,101,116,117,114,110,32,116,46,108,101,110,103,116,104,63,116,46,112,111,112,40,41,43,34,32,34,58,34,34,125,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,111,44,97,41,123,118,97,114,32,117,61,91,93,44,99,61,91,93,59,114,101,116,117,114,110,32,111,61,116,40,111,41,44,97,61,116,40,97,41,44,102,117,110,99,116,105,111,110,40,116,44,114,44,105,44,111,44,97,44,117,41,123,105,102,40,116,33,61,61,105,124,124,114,33,61,61,111,41,123,118,97,114,32,99,61,97,46,112,117,115,104,40,34,116,114,97,110,115,108,97,116,101,40,34,44,110,117,108,108,44,110,44,110,117,108,108,44,101,41,59,117,46,112,117,115,104,40,123,105,58,99,45,52,44,120,58,109,101,40,116,44,105,41,125,44,123,105,58,99,45,50,44,120,58,109,101,40,114,44,111,41,125,41,125,101,108,115,101,40,105,124,124,111,41,38,38,97,46,112,117,115,104,40,34,116,114,97,110,115,108,97,116,101,40,34,43,105,43,110,43,111,43,101,41,125,40,111,46,116,114,97,110,115,108,97,116,101,88,44,111,46,116,114,97,110,115,108,97,116,101,89,44,97,46,116,114,97,110,115,108,97,116,101,88,44,97,46,116,114,97,110,115,108,97,116,101,89,44,117,44,99,41,44,102,117,110,99,116,105,111,110,40,116,44,110,44,101,44,111,41,123,116,33,61,61,110,63,40,116,45,110,62,49,56,48,63,110,43,61,51,54,48,58,110,45,116,62,49,56,48,38,38,40,116,43,61,51,54,48,41,44,111,46,112,117,115,104,40,123,105,58,101,46,112,117,115,104,40,105,40,101,41,43,34,114,111,116,97,116,101,40,34,44,110,117,108,108,44,114,41,45,50,44,120,58,109,101,40,116,44,110,41,125,41,41,58,110,38,38,101,46,112,117,115,104,40,105,40,101,41,43,34,114,111,116,97,116,101,40,34,43,110,43,114,41,125,40,111,46,114,111,116,97,116,101,44,97,46,114,111,116,97,116,101,44,117,44,99,41,44,102,117,110,99,116,105,111,110,40,116,44,110,44,101,44,111,41,123,116,33,61,61,110,63,111,46,112,117,115,104,40,123,105,58,101,46,112,117,115,104,40,105,40,101,41,43,34,115,107,101,119,88,40,34,44,110,117,108,108,44,114,41,45,50,44,120,58,109,101,40,116,44,110,41,125,41,58,110,38,38,101,46,112,117,115,104,40,105,40,101,41,43,34,115,107,101,119,88,40,34,43,110,43,114,41,125,40,111,46,115,107,101,119,88,44,97,46,115,107,101,119,88,44,117,44,99,41,44,102,117,110,99,116,105,111,110,40,116,44,110,44,101,44,114,44,111,44,97,41,123,105,102,40,116,33,61,61,101,124,124,110,33,61,61,114,41,123,118,97,114,32,117,61,111,46,112,117,115,104,40,105,40,111,41,43,34,115,99,97,108,101,40,34,44,110,117,108,108,44,34,44,34,44,110,117,108,108,44,34,41,34,41,59,97,46,112,117,115,104,40,123,105,58,117,45,52,44,120,58,109,101,40,116,44,101,41,125,44,123,105,58,117,45,50,44,120,58,109,101,40,110,44,114,41,125,41,125,101,108,115,101,32,49,61,61,61,101,38,38,49,61,61,61,114,124,124,111,46,112,117,115,104,40,105,40,111,41,43,34,115,99,97,108,101,40,34,43,101,43,34,44,34,43,114,43,34,41,34,41,125,40,111,46,115,99,97,108,101,88,44,111,46,115,99,97,108,101,89,44,97,46,115,99,97,108,101,88,44,97,46,115,99,97,108,101,89,44,117,44,99,41,44,111,61,97,61,110,117,108,108,44,102,117,110,99,116,105,111,110,40,116,41,123,102,111,114,40,118,97,114,32,110,44,101,61,45,49,44,114,61,99,46,108,101,110,103,116,104,59,43,43,101,60,114,59,41,117,91,40,110,61,99,91,101,93,41,46,105,93,61,110,46,120,40,116,41,59,114,101,116,117,114,110,32,117,46,106,111,105,110,40,34,34,41,125,125,125,118,97,114,32,113,101,61,68,101,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,34,110,111,110,101,34,61,61,61,116,63,122,101,58,40,83,101,124,124,40,83,101,61,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,68,73,86,34,41,44,107,101,61,100,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,44,69,101,61,100,111,99,117,109,101,110,116,46,100,101,102,97,117,108,116,86,105,101,119,41,44,83,101,46,115,116,121,108,101,46,116,114,97,110,115,102,111,114,109,61,116,44,116,61,69,101,46,103,101,116,67,111,109,112,117,116,101,100,83,116,121,108,101,40,107,101,46,97,112,112,101,110,100,67,104,105,108,100,40,83,101,41,44,110,117,108,108,41,46,103,101,116,80,114,111,112,101,114,116,121,86,97,108,117,101,40,34,116,114,97,110,115,102,111,114,109,34,41,44,107,101,46,114,101,109,111,118,101,67,104,105,108,100,40,83,101,41,44,82,101,40,43,40,116,61,116,46,115,108,105,99,101,40,55,44,45,49,41,46,115,112,108,105,116,40,34,44,34,41,41,91,48,93,44,43,116,91,49,93,44,43,116,91,50,93,44,43,116,91,51,93,44,43,116,91,52,93,44,43,116,91,53,93,41,41,125,44,34,112,120,44,32,34,44,34,112,120,41,34,44,34,100,101,103,41,34,41,44,76,101,61,68,101,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,116,63,122,101,58,40,67,101,124,124,40,67,101,61,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,78,83,40,34,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,115,118,103,34,44,34,103,34,41,41,44,67,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,116,114,97,110,115,102,111,114,109,34,44,116,41,44,40,116,61,67,101,46,116,114,97,110,115,102,111,114,109,46,98,97,115,101,86,97,108,46,99,111,110,115,111,108,105,100,97,116,101,40,41,41,63,82,101,40,40,116,61,116,46,109,97,116,114,105,120,41,46,97,44,116,46,98,44,116,46,99,44,116,46,100,44,116,46,101,44,116,46,102,41,58,122,101,41,125,44,34,44,32,34,44,34,41,34,44,34,41,34,41,44,85,101,61,77,97,116,104,46,83,81,82,84,50,44,79,101,61,50,44,66,101,61,52,44,70,101,61,49,101,45,49,50,59,102,117,110,99,116,105,111,110,32,89,101,40,116,41,123,114,101,116,117,114,110,40,40,116,61,77,97,116,104,46,101,120,112,40,116,41,41,43,49,47,116,41,47,50,125,102,117,110,99,116,105,111,110,32,73,101,40,116,44,110,41,123,118,97,114,32,101,44,114,44,105,61,116,91,48,93,44,111,61,116,91,49,93,44,97,61,116,91,50,93,44,117,61,110,91,48,93,44,99,61,110,91,49,93,44,102,61,110,91,50,93,44,115,61,117,45,105,44,108,61,99,45,111,44,104,61,115,42,115,43,108,42,108,59,105,102,40,104,60,70,101,41,114,61,77,97,116,104,46,108,111,103,40,102,47,97,41,47,85,101,44,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,91,105,43,116,42,115,44,111,43,116,42,108,44,97,42,77,97,116,104,46,101,120,112,40,85,101,42,116,42,114,41,93,125,59,101,108,115,101,123,118,97,114,32,100,61,77,97,116,104,46,115,113,114,116,40,104,41,44,112,61,40,102,42,102,45,97,42,97,43,66,101,42,104,41,47,40,50,42,97,42,79,101,42,100,41,44,118,61,40,102,42,102,45,97,42,97,45,66,101,42,104,41,47,40,50,42,102,42,79,101,42,100,41,44,103,61,77,97,116,104,46,108,111,103,40,77,97,116,104,46,115,113,114,116,40,112,42,112,43,49,41,45,112,41,44,121,61,77,97,116,104,46,108,111,103,40,77,97,116,104,46,115,113,114,116,40,118,42,118,43,49,41,45,118,41,59,114,61,40,121,45,103,41,47,85,101,44,101,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,116,42,114,44,101,61,89,101,40,103,41,44,117,61,97,47,40,79,101,42,100,41,42,40,101,42,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,40,40,116,61,77,97,116,104,46,101,120,112,40,50,42,116,41,41,45,49,41,47,40,116,43,49,41,125,40,85,101,42,110,43,103,41,45,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,40,40,116,61,77,97,116,104,46,101,120,112,40,116,41,41,45,49,47,116,41,47,50,125,40,103,41,41,59,114,101,116,117,114,110,91,105,43,117,42,115,44,111,43,117,42,108,44,97,42,101,47,89,101,40,85,101,42,110,43,103,41,93,125,125,114,101,116,117,114,110,32,101,46,100,117,114,97,116,105,111,110,61,49,101,51,42,114,44,101,125,102,117,110,99,116,105,111,110,32,72,101,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,110,44,101,41,123,118,97,114,32,114,61,116,40,40,110,61,84,110,40,110,41,41,46,104,44,40,101,61,84,110,40,101,41,41,46,104,41,44,105,61,108,101,40,110,46,115,44,101,46,115,41,44,111,61,108,101,40,110,46,108,44,101,46,108,41,44,97,61,108,101,40,110,46,111,112,97,99,105,116,121,44,101,46,111,112,97,99,105,116,121,41,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,46,104,61,114,40,116,41,44,110,46,115,61,105,40,116,41,44,110,46,108,61,111,40,116,41,44,110,46,111,112,97,99,105,116,121,61,97,40,116,41,44,110,43,34,34,125,125,125,118,97,114,32,106,101,61,72,101,40,102,101,41,44,88,101,61,72,101,40,108,101,41,59,102,117,110,99,116,105,111,110,32,86,101,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,110,44,101,41,123,118,97,114,32,114,61,116,40,40,110,61,88,110,40,110,41,41,46,104,44,40,101,61,88,110,40,101,41,41,46,104,41,44,105,61,108,101,40,110,46,99,44,101,46,99,41,44,111,61,108,101,40,110,46,108,44,101,46,108,41,44,97,61,108,101,40,110,46,111,112,97,99,105,116,121,44,101,46,111,112,97,99,105,116,121,41,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,46,104,61,114,40,116,41,44,110,46,99,61,105,40,116,41,44,110,46,108,61,111,40,116,41,44,110,46,111,112,97,99,105,116,121,61,97,40,116,41,44,110,43,34,34,125,125,125,118,97,114,32,71,101,61,86,101,40,102,101,41,44,36,101,61,86,101,40,108,101,41,59,102,117,110,99,116,105,111,110,32,87,101,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,110,40,101,41,123,102,117,110,99,116,105,111,110,32,114,40,110,44,114,41,123,118,97,114,32,105,61,116,40,40,110,61,101,101,40,110,41,41,46,104,44,40,114,61,101,101,40,114,41,41,46,104,41,44,111,61,108,101,40,110,46,115,44,114,46,115,41,44,97,61,108,101,40,110,46,108,44,114,46,108,41,44,117,61,108,101,40,110,46,111,112,97,99,105,116,121,44,114,46,111,112,97,99,105,116,121,41,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,46,104,61,105,40,116,41,44,110,46,115,61,111,40,116,41,44,110,46,108,61,97,40,77,97,116,104,46,112,111,119,40,116,44,101,41,41,44,110,46,111,112,97,99,105,116,121,61,117,40,116,41,44,110,43,34,34,125,125,114,101,116,117,114,110,32,101,61,43,101,44,114,46,103,97,109,109,97,61,110,44,114,125,40,49,41,125,118,97,114,32,90,101,61,87,101,40,102,101,41,44,81,101,61,87,101,40,108,101,41,59,118,97,114,32,75,101,44,74,101,44,116,114,61,48,44,110,114,61,48,44,101,114,61,48,44,114,114,61,49,101,51,44,105,114,61,48,44,111,114,61,48,44,97,114,61,48,44,117,114,61,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,112,101,114,102,111,114,109,97,110,99,101,38,38,112,101,114,102,111,114,109,97,110,99,101,46,110,111,119,63,112,101,114,102,111,114,109,97,110,99,101,58,68,97,116,101,44,99,114,61,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,119,105,110,100,111,119,38,38,119,105,110,100,111,119,46,114,101,113,117,101,115,116,65,110,105,109,97,116,105,111,110,70,114,97,109,101,63,119,105,110,100,111,119,46,114,101,113,117,101,115,116,65,110,105,109,97,116,105,111,110,70,114,97,109,101,46,98,105,110,100,40,119,105,110,100,111,119,41,58,102,117,110,99,116,105,111,110,40,116,41,123,115,101,116,84,105,109,101,111,117,116,40,116,44,49,55,41,125,59,102,117,110,99,116,105,111,110,32,102,114,40,41,123,114,101,116,117,114,110,32,111,114,124,124,40,99,114,40,115,114,41,44,111,114,61,117,114,46,110,111,119,40,41,43,97,114,41,125,102,117,110,99,116,105,111,110,32,115,114,40,41,123,111,114,61,48,125,102,117,110,99,116,105,111,110,32,108,114,40,41,123,116,104,105,115,46,95,99,97,108,108,61,116,104,105,115,46,95,116,105,109,101,61,116,104,105,115,46,95,110,101,120,116,61,110,117,108,108,125,102,117,110,99,116,105,111,110,32,104,114,40,116,44,110,44,101,41,123,118,97,114,32,114,61,110,101,119,32,108,114,59,114,101,116,117,114,110,32,114,46,114,101,115,116,97,114,116,40,116,44,110,44,101,41,44,114,125,102,117,110,99,116,105,111,110,32,100,114,40,41,123,102,114,40,41,44,43,43,116,114,59,102,111,114,40,118,97,114,32,116,44,110,61,75,101,59,110,59,41,40,116,61,111,114,45,110,46,95,116,105,109,101,41,62,61,48,38,38,110,46,95,99,97,108,108,46,99,97,108,108,40,110,117,108,108,44,116,41,44,110,61,110,46,95,110,101,120,116,59,45,45,116,114,125,102,117,110,99,116,105,111,110,32,112,114,40,41,123,111,114,61,40,105,114,61,117,114,46,110,111,119,40,41,41,43,97,114,44,116,114,61,110,114,61,48,59,116,114,121,123,100,114,40,41,125,102,105,110,97,108,108,121,123,116,114,61,48,44,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,44,110,44,101,61,75,101,44,114,61,49,47,48,59,102,111,114,40,59,101,59,41,101,46,95,99,97,108,108,63,40,114,62,101,46,95,116,105,109,101,38,38,40,114,61,101,46,95,116,105,109,101,41,44,116,61,101,44,101,61,101,46,95,110,101,120,116,41,58,40,110,61,101,46,95,110,101,120,116,44,101,46,95,110,101,120,116,61,110,117,108,108,44,101,61,116,63,116,46,95,110,101,120,116,61,110,58,75,101,61,110,41,59,74,101,61,116,44,103,114,40,114,41,125,40,41,44,111,114,61,48,125,125,102,117,110,99,116,105,111,110,32,118,114,40,41,123,118,97,114,32,116,61,117,114,46,110,111,119,40,41,44,110,61,116,45,105,114,59,110,62,114,114,38,38,40,97,114,45,61,110,44,105,114,61,116,41,125,102,117,110,99,116,105,111,110,32,103,114,40,116,41,123,116,114,124,124,40,110,114,38,38,40,110,114,61,99,108,101,97,114,84,105,109,101,111,117,116,40,110,114,41,41,44,116,45,111,114,62,50,52,63,40,116,60,49,47,48,38,38,40,110,114,61,115,101,116,84,105,109,101,111,117,116,40,112,114,44,116,45,117,114,46,110,111,119,40,41,45,97,114,41,41,44,101,114,38,38,40,101,114,61,99,108,101,97,114,73,110,116,101,114,118,97,108,40,101,114,41,41,41,58,40,101,114,124,124,40,105,114,61,117,114,46,110,111,119,40,41,44,101,114,61,115,101,116,73,110,116,101,114,118,97,108,40,118,114,44,114,114,41,41,44,116,114,61,49,44,99,114,40,112,114,41,41,41,125,102,117,110,99,116,105,111,110,32,121,114,40,116,44,110,44,101,41,123,118,97,114,32,114,61,110,101,119,32,108,114,59,114,101,116,117,114,110,32,110,61,110,117,108,108,61,61,110,63,48,58,43,110,44,114,46,114,101,115,116,97,114,116,40,102,117,110,99,116,105,111,110,40,101,41,123,114,46,115,116,111,112,40,41,44,116,40,101,43,110,41,125,44,110,44,101,41,44,114,125,108,114,46,112,114,111,116,111,116,121,112,101,61,104,114,46,112,114,111,116,111,116,121,112,101,61,123,99,111,110,115,116,114,117,99,116,111,114,58,108,114,44,114,101,115,116,97,114,116,58,102,117,110,99,116,105,111,110,40,116,44,110,44,101,41,123,105,102,40,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,116,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,99,97,108,108,98,97,99,107,32,105,115,32,110,111,116,32,97,32,102,117,110,99,116,105,111,110,34,41,59,101,61,40,110,117,108,108,61,61,101,63,102,114,40,41,58,43,101,41,43,40,110,117,108,108,61,61,110,63,48,58,43,110,41,44,116,104,105,115,46,95,110,101,120,116,124,124,74,101,61,61,61,116,104,105,115,124,124,40,74,101,63,74,101,46,95,110,101,120,116,61,116,104,105,115,58,75,101,61,116,104,105,115,44,74,101,61,116,104,105,115,41,44,116,104,105,115,46,95,99,97,108,108,61,116,44,116,104,105,115,46,95,116,105,109,101,61,101,44,103,114,40,41,125,44,115,116,111,112,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,99,97,108,108,38,38,40,116,104,105,115,46,95,99,97,108,108,61,110,117,108,108,44,116,104,105,115,46,95,116,105,109,101,61,49,47,48,44,103,114,40,41,41,125,125,59,118,97,114,32,95,114,61,73,40,34,115,116,97,114,116,34,44,34,101,110,100,34,44,34,99,97,110,99,101,108,34,44,34,105,110,116,101,114,114,117,112,116,34,41,44,98,114,61,91,93,44,109,114,61,48,44,120,114,61,49,44,119,114,61,50,44,77,114,61,51,44,78,114,61,52,44,84,114,61,53,44,65,114,61,54,59,102,117,110,99,116,105,111,110,32,83,114,40,116,44,110,44,101,44,114,44,105,44,111,41,123,118,97,114,32,97,61,116,46,95,95,116,114,97,110,115,105,116,105,111,110,59,105,102,40,97,41,123,105,102,40,101,32,105,110,32,97,41,114,101,116,117,114,110,125,101,108,115,101,32,116,46,95,95,116,114,97,110,115,105,116,105,111,110,61,123,125,59,33,102,117,110,99,116,105,111,110,40,116,44,110,44,101,41,123,118,97,114,32,114,44,105,61,116,46,95,95,116,114,97,110,115,105,116,105,111,110,59,102,117,110,99,116,105,111,110,32,111,40,99,41,123,118,97,114,32,102,44,115,44,108,44,104,59,105,102,40,101,46,115,116,97,116,101,33,61,61,120,114,41,114,101,116,117,114,110,32,117,40,41,59,102,111,114,40,102,32,105,110,32,105,41,105,102,40,40,104,61,105,91,102,93,41,46,110,97,109,101,61,61,61,101,46,110,97,109,101,41,123,105,102,40,104,46,115,116,97,116,101,61,61,61,77,114,41,114,101,116,117,114,110,32,121,114,40,111,41,59,104,46,115,116,97,116,101,61,61,61,78,114,63,40,104,46,115,116,97,116,101,61,65,114,44,104,46,116,105,109,101,114,46,115,116,111,112,40,41,44,104,46,111,110,46,99,97,108,108,40,34,105,110,116,101,114,114,117,112,116,34,44,116,44,116,46,95,95,100,97,116,97,95,95,44,104,46,105,110,100,101,120,44,104,46,103,114,111,117,112,41,44,100,101,108,101,116,101,32,105,91,102,93,41,58,43,102,60,110,38,38,40,104,46,115,116,97,116,101,61,65,114,44,104,46,116,105,109,101,114,46,115,116,111,112,40,41,44,104,46,111,110,46,99,97,108,108,40,34,99,97,110,99,101,108,34,44,116,44,116,46,95,95,100,97,116,97,95,95,44,104,46,105,110,100,101,120,44,104,46,103,114,111,117,112,41,44,100,101,108,101,116,101,32,105,91,102,93,41,125,105,102,40,121,114,40,102,117,110,99,116,105,111,110,40,41,123,101,46,115,116,97,116,101,61,61,61,77,114,38,38,40,101,46,115,116,97,116,101,61,78,114,44,101,46,116,105,109,101,114,46,114,101,115,116,97,114,116,40,97,44,101,46,100,101,108,97,121,44,101,46,116,105,109,101,41,44,97,40,99,41,41,125,41,44,101,46,115,116,97,116,101,61,119,114,44,101,46,111,110,46,99,97,108,108,40,34,115,116,97,114,116,34,44,116,44,116,46,95,95,100,97,116,97,95,95,44,101,46,105,110,100,101,120,44,101,46,103,114,111,117,112,41,44,101,46,115,116,97,116,101,61,61,61,119,114,41,123,102,111,114,40,101,46,115,116,97,116,101,61,77,114,44,114,61,110,101,119,32,65,114,114,97,121,40,108,61,101,46,116,119,101,101,110,46,108,101,110,103,116,104,41,44,102,61,48,44,115,61,45,49,59,102,60,108,59,43,43,102,41,40,104,61,101,46,116,119,101,101,110,91,102,93,46,118,97,108,117,101,46,99,97,108,108,40,116,44,116,46,95,95,100,97,116,97,95,95,44,101,46,105,110,100,101,120,44,101,46,103,114,111,117,112,41,41,38,38,40,114,91,43,43,115,93,61,104,41,59,114,46,108,101,110,103,116,104,61,115,43,49,125,125,102,117,110,99,116,105,111,110,32,97,40,110,41,123,102,111,114,40,118,97,114,32,105,61,110,60,101,46,100,117,114,97,116,105,111,110,63,101,46,101,97,115,101,46,99,97,108,108,40,110,117,108,108,44,110,47,101,46,100,117,114,97,116,105,111,110,41,58,40,101,46,116,105,109,101,114,46,114,101,115,116,97,114,116,40,117,41,44,101,46,115,116,97,116,101,61,84,114,44,49,41,44,111,61,45,49,44,97,61,114,46,108,101,110,103,116,104,59,43,43,111,60,97,59,41,114,91,111,93,46,99,97,108,108,40,116,44,105,41,59,101,46,115,116,97,116,101,61,61,61,84,114,38,38,40,101,46,111,110,46,99,97,108,108,40,34,101,110,100,34,44,116,44,116,46,95,95,100,97,116,97,95,95,44,101,46,105,110,100,101,120,44,101,46,103,114,111,117,112,41,44,117,40,41,41,125,102,117,110,99,116,105,111,110,32,117,40,41,123,102,111,114,40,118,97,114,32,114,32,105,110,32,101,46,115,116,97,116,101,61,65,114,44,101,46,116,105,109,101,114,46,115,116,111,112,40,41,44,100,101,108,101,116,101,32,105,91,110,93,44,105,41,114,101,116,117,114,110,59,100,101,108,101,116,101,32,116,46,95,95,116,114,97,110,115,105,116,105,111,110,125,105,91,110,93,61,101,44,101,46,116,105,109,101,114,61,104,114,40,102,117,110,99,116,105,111,110,40,116,41,123,101,46,115,116,97,116,101,61,120,114,44,101,46,116,105,109,101,114,46,114,101,115,116,97,114,116,40,111,44,101,46,100,101,108,97,121,44,101,46,116,105,109,101,41,44,101,46,100,101,108,97,121,60,61,116,38,38,111,40,116,45,101,46,100,101,108,97,121,41,125,44,48,44,101,46,116,105,109,101,41,125,40,116,44,101,44,123,110,97,109,101,58,110,44,105,110,100,101,120,58,114,44,103,114,111,117,112,58,105,44,111,110,58,95,114,44,116,119,101,101,110,58,98,114,44,116,105,109,101,58,111,46,116,105,109,101,44,100,101,108,97,121,58,111,46,100,101,108,97,121,44,100,117,114,97,116,105,111,110,58,111,46,100,117,114,97,116,105,111,110,44,101,97,115,101,58,111,46,101,97,115,101,44,116,105,109,101,114,58,110,117,108,108,44,115,116,97,116,101,58,109,114,125,41,125,102,117,110,99,116,105,111,110,32,107,114,40,116,44,110,41,123,118,97,114,32,101,61,67,114,40,116,44,110,41,59,105,102,40,101,46,115,116,97,116,101,62,109,114,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,116,111,111,32,108,97,116,101,59,32,97,108,114,101,97,100,121,32,115,99,104,101,100,117,108,101,100,34,41,59,114,101,116,117,114,110,32,101,125,102,117,110,99,116,105,111,110,32,69,114,40,116,44,110,41,123,118,97,114,32,101,61,67,114,40,116,44,110,41,59,105,102,40,101,46,115,116,97,116,101,62,77,114,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,116,111,111,32,108,97,116,101,59,32,97,108,114,101,97,100,121,32,114,117,110,110,105,110,103,34,41,59,114,101,116,117,114,110,32,101,125,102,117,110,99,116,105,111,110,32,67,114,40,116,44,110,41,123,118,97,114,32,101,61,116,46,95,95,116,114,97,110,115,105,116,105,111,110,59,105,102,40,33,101,124,124,33,40,101,61,101,91,110,93,41,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,116,114,97,110,115,105,116,105,111,110,32,110,111,116,32,102,111,117,110,100,34,41,59,114,101,116,117,114,110,32,101,125,102,117,110,99,116,105,111,110,32,80,114,40,116,44,110,41,123,118,97,114,32,101,44,114,44,105,44,111,61,116,46,95,95,116,114,97,110,115,105,116,105,111,110,44,97,61,33,48,59,105,102,40,111,41,123,102,111,114,40,105,32,105,110,32,110,61,110,117,108,108,61,61,110,63,110,117,108,108,58,110,43,34,34,44,111,41,40,101,61,111,91,105,93,41,46,110,97,109,101,61,61,61,110,63,40,114,61,101,46,115,116,97,116,101,62,119,114,38,38,101,46,115,116,97,116,101,60,84,114,44,101,46,115,116,97,116,101,61,65,114,44,101,46,116,105,109,101,114,46,115,116,111,112,40,41,44,101,46,111,110,46,99,97,108,108,40,114,63,34,105,110,116,101,114,114,117,112,116,34,58,34,99,97,110,99,101,108,34,44,116,44,116,46,95,95,100,97,116,97,95,95,44,101,46,105,110,100,101,120,44,101,46,103,114,111,117,112,41,44,100,101,108,101,116,101,32,111,91,105,93,41,58,97,61,33,49,59,97,38,38,100,101,108,101,116,101,32,116,46,95,95,116,114,97,110,115,105,116,105,111,110,125,125,102,117,110,99,116,105,111,110,32,122,114,40,116,44,110,44,101,41,123,118,97,114,32,114,61,116,46,95,105,100,59,114,101,116,117,114,110,32,116,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,69,114,40,116,104,105,115,44,114,41,59,40,116,46,118,97,108,117,101,124,124,40,116,46,118,97,108,117,101,61,123,125,41,41,91,110,93,61,101,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,125,41,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,67,114,40,116,44,114,41,46,118,97,108,117,101,91,110,93,125,125,102,117,110,99,116,105,111,110,32,82,114,40,116,44,110,41,123,118,97,114,32,101,59,114,101,116,117,114,110,40,34,110,117,109,98,101,114,34,61,61,116,121,112,101,111,102,32,110,63,109,101,58,110,32,105,110,115,116,97,110,99,101,111,102,32,112,110,63,104,101,58,40,101,61,112,110,40,110,41,41,63,40,110,61,101,44,104,101,41,58,78,101,41,40,116,44,110,41,125,118,97,114,32,68,114,61,122,116,46,112,114,111,116,111,116,121,112,101,46,99,111,110,115,116,114,117,99,116,111,114,59,102,117,110,99,116,105,111,110,32,113,114,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,115,116,121,108,101,46,114,101,109,111,118,101,80,114,111,112,101,114,116,121,40,116,41,125,125,118,97,114,32,76,114,61,48,59,102,117,110,99,116,105,111,110,32,85,114,40,116,44,110,44,101,44,114,41,123,116,104,105,115,46,95,103,114,111,117,112,115,61,116,44,116,104,105,115,46,95,112,97,114,101,110,116,115,61,110,44,116,104,105,115,46,95,110,97,109,101,61,101,44,116,104,105,115,46,95,105,100,61,114,125,102,117,110,99,116,105,111,110,32,79,114,40,116,41,123,114,101,116,117,114,110,32,122,116,40,41,46,116,114,97,110,115,105,116,105,111,110,40,116,41,125,102,117,110,99,116,105,111,110,32,66,114,40,41,123,114,101,116,117,114,110,43,43,76,114,125,118,97,114,32,70,114,61,122,116,46,112,114,111,116,111,116,121,112,101,59,102,117,110,99,116,105,111,110,32,89,114,40,116,41,123,114,101,116,117,114,110,40,40,116,42,61,50,41,60,61,49,63,116,42,116,58,45,45,116,42,40,50,45,116,41,43,49,41,47,50,125,102,117,110,99,116,105,111,110,32,73,114,40,116,41,123,114,101,116,117,114,110,40,40,116,42,61,50,41,60,61,49,63,116,42,116,42,116,58,40,116,45,61,50,41,42,116,42,116,43,50,41,47,50,125,85,114,46,112,114,111,116,111,116,121,112,101,61,79,114,46,112,114,111,116,111,116,121,112,101,61,123,99,111,110,115,116,114,117,99,116,111,114,58,85,114,44,115,101,108,101,99,116,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,116,104,105,115,46,95,110,97,109,101,44,101,61,116,104,105,115,46,95,105,100,59,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,116,38,38,40,116,61,75,40,116,41,41,59,102,111,114,40,118,97,114,32,114,61,116,104,105,115,46,95,103,114,111,117,112,115,44,105,61,114,46,108,101,110,103,116,104,44,111,61,110,101,119,32,65,114,114,97,121,40,105,41,44,97,61,48,59,97,60,105,59,43,43,97,41,102,111,114,40,118,97,114,32,117,44,99,44,102,61,114,91,97,93,44,115,61,102,46,108,101,110,103,116,104,44,108,61,111,91,97,93,61,110,101,119,32,65,114,114,97,121,40,115,41,44,104,61,48,59,104,60,115,59,43,43,104,41,40,117,61,102,91,104,93,41,38,38,40,99,61,116,46,99,97,108,108,40,117,44,117,46,95,95,100,97,116,97,95,95,44,104,44,102,41,41,38,38,40,34,95,95,100,97,116,97,95,95,34,105,110,32,117,38,38,40,99,46,95,95,100,97,116,97,95,95,61,117,46,95,95,100,97,116,97,95,95,41,44,108,91,104,93,61,99,44,83,114,40,108,91,104,93,44,110,44,101,44,104,44,108,44,67,114,40,117,44,101,41,41,41,59,114,101,116,117,114,110,32,110,101,119,32,85,114,40,111,44,116,104,105,115,46,95,112,97,114,101,110,116,115,44,110,44,101,41,125,44,115,101,108,101,99,116,65,108,108,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,116,104,105,115,46,95,110,97,109,101,44,101,61,116,104,105,115,46,95,105,100,59,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,116,38,38,40,116,61,116,116,40,116,41,41,59,102,111,114,40,118,97,114,32,114,61,116,104,105,115,46,95,103,114,111,117,112,115,44,105,61,114,46,108,101,110,103,116,104,44,111,61,91,93,44,97,61,91,93,44,117,61,48,59,117,60,105,59,43,43,117,41,102,111,114,40,118,97,114,32,99,44,102,61,114,91,117,93,44,115,61,102,46,108,101,110,103,116,104,44,108,61,48,59,108,60,115,59,43,43,108,41,105,102,40,99,61,102,91,108,93,41,123,102,111,114,40,118,97,114,32,104,44,100,61,116,46,99,97,108,108,40,99,44,99,46,95,95,100,97,116,97,95,95,44,108,44,102,41,44,112,61,67,114,40,99,44,101,41,44,118,61,48,44,103,61,100,46,108,101,110,103,116,104,59,118,60,103,59,43,43,118,41,40,104,61,100,91,118,93,41,38,38,83,114,40,104,44,110,44,101,44,118,44,100,44,112,41,59,111,46,112,117,115,104,40,100,41,44,97,46,112,117,115,104,40,99,41,125,114,101,116,117,114,110,32,110,101,119,32,85,114,40,111,44,97,44,110,44,101,41,125,44,102,105,108,116,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,116,38,38,40,116,61,110,116,40,116,41,41,59,102,111,114,40,118,97,114,32,110,61,116,104,105,115,46,95,103,114,111,117,112,115,44,101,61,110,46,108,101,110,103,116,104,44,114,61,110,101,119,32,65,114,114,97,121,40,101,41,44,105,61,48,59,105,60,101,59,43,43,105,41,102,111,114,40,118,97,114,32,111,44,97,61,110,91,105,93,44,117,61,97,46,108,101,110,103,116,104,44,99,61,114,91,105,93,61,91,93,44,102,61,48,59,102,60,117,59,43,43,102,41,40,111,61,97,91,102,93,41,38,38,116,46,99,97,108,108,40,111,44,111,46,95,95,100,97,116,97,95,95,44,102,44,97,41,38,38,99,46,112,117,115,104,40,111,41,59,114,101,116,117,114,110,32,110,101,119,32,85,114,40,114,44,116,104,105,115,46,95,112,97,114,101,110,116,115,44,116,104,105,115,46,95,110,97,109,101,44,116,104,105,115,46,95,105,100,41,125,44,109,101,114,103,101,58,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,116,46,95,105,100,33,61,61,116,104,105,115,46,95,105,100,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,59,102,111,114,40,118,97,114,32,110,61,116,104,105,115,46,95,103,114,111,117,112,115,44,101,61,116,46,95,103,114,111,117,112,115,44,114,61,110,46,108,101,110,103,116,104,44,105,61,101,46,108,101,110,103,116,104,44,111,61,77,97,116,104,46,109,105,110,40,114,44,105,41,44,97,61,110,101,119,32,65,114,114,97,121,40,114,41,44,117,61,48,59,117,60,111,59,43,43,117,41,102,111,114,40,118,97,114,32,99,44,102,61,110,91,117,93,44,115,61,101,91,117,93,44,108,61,102,46,108,101,110,103,116,104,44,104,61,97,91,117,93,61,110,101,119,32,65,114,114,97,121,40,108,41,44,100,61,48,59,100,60,108,59,43,43,100,41,40,99,61,102,91,100,93,124,124,115,91,100,93,41,38,38,40,104,91,100,93,61,99,41,59,102,111,114,40,59,117,60,114,59,43,43,117,41,97,91,117,93,61,110,91,117,93,59,114,101,116,117,114,110,32,110,101,119,32,85,114,40,97,44,116,104,105,115,46,95,112,97,114,101,110,116,115,44,116,104,105,115,46,95,110,97,109,101,44,116,104,105,115,46,95,105,100,41,125,44,115,101,108,101,99,116,105,111,110,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,110,101,119,32,68,114,40,116,104,105,115,46,95,103,114,111,117,112,115,44,116,104,105,115,46,95,112,97,114,101,110,116,115,41,125,44,116,114,97,110,115,105,116,105,111,110,58,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,118,97,114,32,116,61,116,104,105,115,46,95,110,97,109,101,44,110,61,116,104,105,115,46,95,105,100,44,101,61,66,114,40,41,44,114,61,116,104,105,115,46,95,103,114,111,117,112,115,44,105,61,114,46,108,101,110,103,116,104,44,111,61,48,59,111,60,105,59,43,43,111,41,102,111,114,40,118,97,114,32,97,44,117,61,114,91,111,93,44,99,61,117,46,108,101,110,103,116,104,44,102,61,48,59,102,60,99,59,43,43,102,41,105,102,40,97,61,117,91,102,93,41,123,118,97,114,32,115,61,67,114,40,97,44,110,41,59,83,114,40,97,44,116,44,101,44,102,44,117,44,123,116,105,109,101,58,115,46,116,105,109,101,43,115,46,100,101,108,97,121,43,115,46,100,117,114,97,116,105,111,110,44,100,101,108,97,121,58,48,44,100,117,114,97,116,105,111,110,58,115,46,100,117,114,97,116,105,111,110,44,101,97,115,101,58,115,46,101,97,115,101,125,41,125,114,101,116,117,114,110,32,110,101,119,32,85,114,40,114,44,116,104,105,115,46,95,112,97,114,101,110,116,115,44,116,44,101,41,125,44,99,97,108,108,58,70,114,46,99,97,108,108,44,110,111,100,101,115,58,70,114,46,110,111,100,101,115,44,110,111,100,101,58,70,114,46,110,111,100,101,44,115,105,122,101,58,70,114,46,115,105,122,101,44,101,109,112,116,121,58,70,114,46,101,109,112,116,121,44,101,97,99,104,58,70,114,46,101,97,99,104,44,111,110,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,61,116,104,105,115,46,95,105,100,59,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,60,50,63,67,114,40,116,104,105,115,46,110,111,100,101,40,41,44,101,41,46,111,110,46,111,110,40,116,41,58,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,116,44,110,44,101,41,123,118,97,114,32,114,44,105,44,111,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,40,116,43,34,34,41,46,116,114,105,109,40,41,46,115,112,108,105,116,40,47,94,124,92,115,43,47,41,46,101,118,101,114,121,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,116,46,105,110,100,101,120,79,102,40,34,46,34,41,59,114,101,116,117,114,110,32,110,62,61,48,38,38,40,116,61,116,46,115,108,105,99,101,40,48,44,110,41,41,44,33,116,124,124,34,115,116,97,114,116,34,61,61,61,116,125,41,125,40,110,41,63,107,114,58,69,114,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,97,61,111,40,116,104,105,115,44,116,41,44,117,61,97,46,111,110,59,117,33,61,61,114,38,38,40,105,61,40,114,61,117,41,46,99,111,112,121,40,41,41,46,111,110,40,110,44,101,41,44,97,46,111,110,61,105,125,125,40,101,44,116,44,110,41,41,125,44,97,116,116,114,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,61,87,40,116,41,44,114,61,34,116,114,97,110,115,102,111,114,109,34,61,61,61,101,63,76,101,58,82,114,59,114,101,116,117,114,110,32,116,104,105,115,46,97,116,116,114,84,119,101,101,110,40,116,44,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,110,63,40,101,46,108,111,99,97,108,63,102,117,110,99,116,105,111,110,40,116,44,110,44,101,41,123,118,97,114,32,114,44,105,44,111,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,97,44,117,44,99,61,101,40,116,104,105,115,41,59,105,102,40,110,117,108,108,33,61,99,41,114,101,116,117,114,110,40,97,61,116,104,105,115,46,103,101,116,65,116,116,114,105,98,117,116,101,78,83,40,116,46,115,112,97,99,101,44,116,46,108,111,99,97,108,41,41,61,61,61,40,117,61,99,43,34,34,41,63,110,117,108,108,58,97,61,61,61,114,38,38,117,61,61,61,105,63,111,58,40,105,61,117,44,111,61,110,40,114,61,97,44,99,41,41,59,116,104,105,115,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,78,83,40,116,46,115,112,97,99,101,44,116,46,108,111,99,97,108,41,125,125,58,102,117,110,99,116,105,111,110,40,116,44,110,44,101,41,123,118,97,114,32,114,44,105,44,111,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,97,44,117,44,99,61,101,40,116,104,105,115,41,59,105,102,40,110,117,108,108,33,61,99,41,114,101,116,117,114,110,40,97,61,116,104,105,115,46,103,101,116,65,116,116,114,105,98,117,116,101,40,116,41,41,61,61,61,40,117,61,99,43,34,34,41,63,110,117,108,108,58,97,61,61,61,114,38,38,117,61,61,61,105,63,111,58,40,105,61,117,44,111,61,110,40,114,61,97,44,99,41,41,59,116,104,105,115,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,40,116,41,125,125,41,40,101,44,114,44,122,114,40,116,104,105,115,44,34,97,116,116,114,46,34,43,116,44,110,41,41,58,110,117,108,108,61,61,110,63,40,101,46,108,111,99,97,108,63,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,78,83,40,116,46,115,112,97,99,101,44,116,46,108,111,99,97,108,41,125,125,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,40,116,41,125,125,41,40,101,41,58,40,101,46,108,111,99,97,108,63,102,117,110,99,116,105,111,110,40,116,44,110,44,101,41,123,118,97,114,32,114,44,105,44,111,61,101,43,34,34,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,97,61,116,104,105,115,46,103,101,116,65,116,116,114,105,98,117,116,101,78,83,40,116,46,115,112,97,99,101,44,116,46,108,111,99,97,108,41,59,114,101,116,117,114,110,32,97,61,61,61,111,63,110,117,108,108,58,97,61,61,61,114,63,105,58,105,61,110,40,114,61,97,44,101,41,125,125,58,102,117,110,99,116,105,111,110,40,116,44,110,44,101,41,123,118,97,114,32,114,44,105,44,111,61,101,43,34,34,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,97,61,116,104,105,115,46,103,101,116,65,116,116,114,105,98,117,116,101,40,116,41,59,114,101,116,117,114,110,32,97,61,61,61,111,63,110,117,108,108,58,97,61,61,61,114,63,105,58,105,61,110,40,114,61,97,44,101,41,125,125,41,40,101,44,114,44,110,41,41,125,44,97,116,116,114,84,119,101,101,110,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,61,34,97,116,116,114,46,34,43,116,59,105,102,40,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,60,50,41,114,101,116,117,114,110,40,101,61,116,104,105,115,46,116,119,101,101,110,40,101,41,41,38,38,101,46,95,118,97,108,117,101,59,105,102,40,110,117,108,108,61,61,110,41,114,101,116,117,114,110,32,116,104,105,115,46,116,119,101,101,110,40,101,44,110,117,108,108,41,59,105,102,40,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,110,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,59,118,97,114,32,114,61,87,40,116,41,59,114,101,116,117,114,110,32,116,104,105,115,46,116,119,101,101,110,40,101,44,40,114,46,108,111,99,97,108,63,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,44,114,59,102,117,110,99,116,105,111,110,32,105,40,41,123,118,97,114,32,105,61,110,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,59,114,101,116,117,114,110,32,105,33,61,61,114,38,38,40,101,61,40,114,61,105,41,38,38,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,115,101,116,65,116,116,114,105,98,117,116,101,78,83,40,116,46,115,112,97,99,101,44,116,46,108,111,99,97,108,44,110,46,99,97,108,108,40,116,104,105,115,44,101,41,41,125,125,40,116,44,105,41,41,44,101,125,114,101,116,117,114,110,32,105,46,95,118,97,108,117,101,61,110,44,105,125,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,44,114,59,102,117,110,99,116,105,111,110,32,105,40,41,123,118,97,114,32,105,61,110,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,59,114,101,116,117,114,110,32,105,33,61,61,114,38,38,40,101,61,40,114,61,105,41,38,38,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,115,101,116,65,116,116,114,105,98,117,116,101,40,116,44,110,46,99,97,108,108,40,116,104,105,115,44,101,41,41,125,125,40,116,44,105,41,41,44,101,125,114,101,116,117,114,110,32,105,46,95,118,97,108,117,101,61,110,44,105,125,41,40,114,44,110,41,41,125,44,115,116,121,108,101,58,102,117,110,99,116,105,111,110,40,116,44,110,44,101,41,123,118,97,114,32,114,61,34,116,114,97,110,115,102,111,114,109,34,61,61,40,116,43,61,34,34,41,63,113,101,58,82,114,59,114,101,116,117,114,110,32,110,117,108,108,61,61,110,63,116,104,105,115,46,115,116,121,108,101,84,119,101,101,110,40,116,44,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,44,114,44,105,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,111,61,102,116,40,116,104,105,115,44,116,41,44,97,61,40,116,104,105,115,46,115,116,121,108,101,46,114,101,109,111,118,101,80,114,111,112,101,114,116,121,40,116,41,44,102,116,40,116,104,105,115,44,116,41,41,59,114,101,116,117,114,110,32,111,61,61,61,97,63,110,117,108,108,58,111,61,61,61,101,38,38,97,61,61,61,114,63,105,58,105,61,110,40,101,61,111,44,114,61,97,41,125,125,40,116,44,114,41,41,46,111,110,40,34,101,110,100,46,115,116,121,108,101,46,34,43,116,44,113,114,40,116,41,41,58,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,110,63,116,104,105,115,46,115,116,121,108,101,84,119,101,101,110,40,116,44,102,117,110,99,116,105,111,110,40,116,44,110,44,101,41,123,118,97,114,32,114,44,105,44,111,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,97,61,102,116,40,116,104,105,115,44,116,41,44,117,61,101,40,116,104,105,115,41,44,99,61,117,43,34,34,59,114,101,116,117,114,110,32,110,117,108,108,61,61,117,38,38,40,116,104,105,115,46,115,116,121,108,101,46,114,101,109,111,118,101,80,114,111,112,101,114,116,121,40,116,41,44,99,61,117,61,102,116,40,116,104,105,115,44,116,41,41,44,97,61,61,61,99,63,110,117,108,108,58,97,61,61,61,114,38,38,99,61,61,61,105,63,111,58,40,105,61,99,44,111,61,110,40,114,61,97,44,117,41,41,125,125,40,116,44,114,44,122,114,40,116,104,105,115,44,34,115,116,121,108,101,46,34,43,116,44,110,41,41,41,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,44,114,44,105,44,111,44,97,61,34,115,116,121,108,101,46,34,43,110,44,117,61,34,101,110,100,46,34,43,97,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,99,61,69,114,40,116,104,105,115,44,116,41,44,102,61,99,46,111,110,44,115,61,110,117,108,108,61,61,99,46,118,97,108,117,101,91,97,93,63,111,124,124,40,111,61,113,114,40,110,41,41,58,118,111,105,100,32,48,59,102,61,61,61,101,38,38,105,61,61,61,115,124,124,40,114,61,40,101,61,102,41,46,99,111,112,121,40,41,41,46,111,110,40,117,44,105,61,115,41,44,99,46,111,110,61,114,125,125,40,116,104,105,115,46,95,105,100,44,116,41,41,58,116,104,105,115,46,115,116,121,108,101,84,119,101,101,110,40,116,44,102,117,110,99,116,105,111,110,40,116,44,110,44,101,41,123,118,97,114,32,114,44,105,44,111,61,101,43,34,34,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,97,61,102,116,40,116,104,105,115,44,116,41,59,114,101,116,117,114,110,32,97,61,61,61,111,63,110,117,108,108,58,97,61,61,61,114,63,105,58,105,61,110,40,114,61,97,44,101,41,125,125,40,116,44,114,44,110,41,44,101,41,46,111,110,40,34,101,110,100,46,115,116,121,108,101,46,34,43,116,44,110,117,108,108,41,125,44,115,116,121,108,101,84,119,101,101,110,58,102,117,110,99,116,105,111,110,40,116,44,110,44,101,41,123,118,97,114,32,114,61,34,115,116,121,108,101,46,34,43,40,116,43,61,34,34,41,59,105,102,40,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,60,50,41,114,101,116,117,114,110,40,114,61,116,104,105,115,46,116,119,101,101,110,40,114,41,41,38,38,114,46,95,118,97,108,117,101,59,105,102,40,110,117,108,108,61,61,110,41,114,101,116,117,114,110,32,116,104,105,115,46,116,119,101,101,110,40,114,44,110,117,108,108,41,59,105,102,40,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,110,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,59,114,101,116,117,114,110,32,116,104,105,115,46,116,119,101,101,110,40,114,44,102,117,110,99,116,105,111,110,40,116,44,110,44,101,41,123,118,97,114,32,114,44,105,59,102,117,110,99,116,105,111,110,32,111,40,41,123,118,97,114,32,111,61,110,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,59,114,101,116,117,114,110,32,111,33,61,61,105,38,38,40,114,61,40,105,61,111,41,38,38,102,117,110,99,116,105,111,110,40,116,44,110,44,101,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,114,41,123,116,104,105,115,46,115,116,121,108,101,46,115,101,116,80,114,111,112,101,114,116,121,40,116,44,110,46,99,97,108,108,40,116,104,105,115,44,114,41,44,101,41,125,125,40,116,44,111,44,101,41,41,44,114,125,114,101,116,117,114,110,32,111,46,95,118,97,108,117,101,61,110,44,111,125,40,116,44,110,44,110,117,108,108,61,61,101,63,34,34,58,101,41,41,125,44,116,101,120,116,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,104,105,115,46,116,119,101,101,110,40,34,116,101,120,116,34,44,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,110,61,116,40,116,104,105,115,41,59,116,104,105,115,46,116,101,120,116,67,111,110,116,101,110,116,61,110,117,108,108,61,61,110,63,34,34,58,110,125,125,40,122,114,40,116,104,105,115,44,34,116,101,120,116,34,44,116,41,41,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,116,101,120,116,67,111,110,116,101,110,116,61,116,125,125,40,110,117,108,108,61,61,116,63,34,34,58,116,43,34,34,41,41,125,44,116,101,120,116,84,119,101,101,110,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,34,116,101,120,116,34,59,105,102,40,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,60,49,41,114,101,116,117,114,110,40,110,61,116,104,105,115,46,116,119,101,101,110,40,110,41,41,38,38,110,46,95,118,97,108,117,101,59,105,102,40,110,117,108,108,61,61,116,41,114,101,116,117,114,110,32,116,104,105,115,46,116,119,101,101,110,40,110,44,110,117,108,108,41,59,105,102,40,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,116,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,59,114,101,116,117,114,110,32,116,104,105,115,46,116,119,101,101,110,40,110,44,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,44,101,59,102,117,110,99,116,105,111,110,32,114,40,41,123,118,97,114,32,114,61,116,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,59,114,101,116,117,114,110,32,114,33,61,61,101,38,38,40,110,61,40,101,61,114,41,38,38,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,110,41,123,116,104,105,115,46,116,101,120,116,67,111,110,116,101,110,116,61,116,46,99,97,108,108,40,116,104,105,115,44,110,41,125,125,40,114,41,41,44,110,125,114,101,116,117,114,110,32,114,46,95,118,97,108,117,101,61,116,44,114,125,40,116,41,41,125,44,114,101,109,111,118,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,111,110,40,34,101,110,100,46,114,101,109,111,118,101,34,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,110,61,116,104,105,115,46,112,97,114,101,110,116,78,111,100,101,59,102,111,114,40,118,97,114,32,101,32,105,110,32,116,104,105,115,46,95,95,116,114,97,110,115,105,116,105,111,110,41,105,102,40,43,101,33,61,61,116,41,114,101,116,117,114,110,59,110,38,38,110,46,114,101,109,111,118,101,67,104,105,108,100,40,116,104,105,115,41,125,125,40,116,104,105,115,46,95,105,100,41,41,125,44,116,119,101,101,110,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,61,116,104,105,115,46,95,105,100,59,105,102,40,116,43,61,34,34,44,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,60,50,41,123,102,111,114,40,118,97,114,32,114,44,105,61,67,114,40,116,104,105,115,46,110,111,100,101,40,41,44,101,41,46,116,119,101,101,110,44,111,61,48,44,97,61,105,46,108,101,110,103,116,104,59,111,60,97,59,43,43,111,41,105,102,40,40,114,61,105,91,111,93,41,46,110,97,109,101,61,61,61,116,41,114,101,116,117,114,110,32,114,46,118,97,108,117,101,59,114,101,116,117,114,110,32,110,117,108,108,125,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,40,110,117,108,108,61,61,110,63,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,44,114,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,105,61,69,114,40,116,104,105,115,44,116,41,44,111,61,105,46,116,119,101,101,110,59,105,102,40,111,33,61,61,101,41,102,111,114,40,118,97,114,32,97,61,48,44,117,61,40,114,61,101,61,111,41,46,108,101,110,103,116,104,59,97,60,117,59,43,43,97,41,105,102,40,114,91,97,93,46,110,97,109,101,61,61,61,110,41,123,40,114,61,114,46,115,108,105,99,101,40,41,41,46,115,112,108,105,99,101,40,97,44,49,41,59,98,114,101,97,107,125,105,46,116,119,101,101,110,61,114,125,125,58,102,117,110,99,116,105,111,110,40,116,44,110,44,101,41,123,118,97,114,32,114,44,105,59,105,102,40,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,101,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,111,61,69,114,40,116,104,105,115,44,116,41,44,97,61,111,46,116,119,101,101,110,59,105,102,40,97,33,61,61,114,41,123,105,61,40,114,61,97,41,46,115,108,105,99,101,40,41,59,102,111,114,40,118,97,114,32,117,61,123,110,97,109,101,58,110,44,118,97,108,117,101,58,101,125,44,99,61,48,44,102,61,105,46,108,101,110,103,116,104,59,99,60,102,59,43,43,99,41,105,102,40,105,91,99,93,46,110,97,109,101,61,61,61,110,41,123,105,91,99,93,61,117,59,98,114,101,97,107,125,99,61,61,61,102,38,38,105,46,112,117,115,104,40,117,41,125,111,46,116,119,101,101,110,61,105,125,125,41,40,101,44,116,44,110,41,41,125,44,100,101,108,97,121,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,116,104,105,115,46,95,105,100,59,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,116,104,105,115,46,101,97,99,104,40,40,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,107,114,40,116,104,105,115,44,116,41,46,100,101,108,97,121,61,43,110,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,125,125,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,110,61,43,110,44,102,117,110,99,116,105,111,110,40,41,123,107,114,40,116,104,105,115,44,116,41,46,100,101,108,97,121,61,110,125,125,41,40,110,44,116,41,41,58,67,114,40,116,104,105,115,46,110,111,100,101,40,41,44,110,41,46,100,101,108,97,121,125,44,100,117,114,97,116,105,111,110,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,116,104,105,115,46,95,105,100,59,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,116,104,105,115,46,101,97,99,104,40,40,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,69,114,40,116,104,105,115,44,116,41,46,100,117,114,97,116,105,111,110,61,43,110,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,125,125,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,110,61,43,110,44,102,117,110,99,116,105,111,110,40,41,123,69,114,40,116,104,105,115,44,116,41,46,100,117,114,97,116,105,111,110,61,110,125,125,41,40,110,44,116,41,41,58,67,114,40,116,104,105,115,46,110,111,100,101,40,41,44,110,41,46,100,117,114,97,116,105,111,110,125,44,101,97,115,101,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,116,104,105,115,46,95,105,100,59,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,116,44,110,41,123,105,102,40,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,110,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,69,114,40,116,104,105,115,44,116,41,46,101,97,115,101,61,110,125,125,40,110,44,116,41,41,58,67,114,40,116,104,105,115,46,110,111,100,101,40,41,44,110,41,46,101,97,115,101,125,44,101,110,100,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,44,110,44,101,61,116,104,105,115,44,114,61,101,46,95,105,100,44,105,61,101,46,115,105,122,101,40,41,59,114,101,116,117,114,110,32,110,101,119,32,80,114,111,109,105,115,101,40,102,117,110,99,116,105,111,110,40,111,44,97,41,123,118,97,114,32,117,61,123,118,97,108,117,101,58,97,125,44,99,61,123,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,48,61,61,45,45,105,38,38,111,40,41,125,125,59,101,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,69,114,40,116,104,105,115,44,114,41,44,105,61,101,46,111,110,59,105,33,61,61,116,38,38,40,40,110,61,40,116,61,105,41,46,99,111,112,121,40,41,41,46,95,46,99,97,110,99,101,108,46,112,117,115,104,40,117,41,44,110,46,95,46,105,110,116,101,114,114,117,112,116,46,112,117,115,104,40,117,41,44,110,46,95,46,101,110,100,46,112,117,115,104,40,99,41,41,44,101,46,111,110,61,110,125,41,125,41,125,125,59,118,97,114,32,72,114,61,102,117,110,99,116,105,111,110,32,116,40,110,41,123,102,117,110,99,116,105,111,110,32,101,40,116,41,123,114,101,116,117,114,110,32,77,97,116,104,46,112,111,119,40,116,44,110,41,125,114,101,116,117,114,110,32,110,61,43,110,44,101,46,101,120,112,111,110,101,110,116,61,116,44,101,125,40,51,41,44,106,114,61,102,117,110,99,116,105,111,110,32,116,40,110,41,123,102,117,110,99,116,105,111,110,32,101,40,116,41,123,114,101,116,117,114,110,32,49,45,77,97,116,104,46,112,111,119,40,49,45,116,44,110,41,125,114,101,116,117,114,110,32,110,61,43,110,44,101,46,101,120,112,111,110,101,110,116,61,116,44,101,125,40,51,41,44,88,114,61,102,117,110,99,116,105,111,110,32,116,40,110,41,123,102,117,110,99,116,105,111,110,32,101,40,116,41,123,114,101,116,117,114,110,40,40,116,42,61,50,41,60,61,49,63,77,97,116,104,46,112,111,119,40,116,44,110,41,58,50,45,77,97,116,104,46,112,111,119,40,50,45,116,44,110,41,41,47,50,125,114,101,116,117,114,110,32,110,61,43,110,44,101,46,101,120,112,111,110,101,110,116,61,116,44,101,125,40,51,41,44,86,114,61,77,97,116,104,46,80,73,44,71,114,61,86,114,47,50,59,102,117,110,99,116,105,111,110,32,36,114,40,116,41,123,114,101,116,117,114,110,40,49,45,77,97,116,104,46,99,111,115,40,86,114,42,116,41,41,47,50,125,102,117,110,99,116,105,111,110,32,87,114,40,116,41,123,114,101,116,117,114,110,40,40,116,42,61,50,41,60,61,49,63,77,97,116,104,46,112,111,119,40,50,44,49,48,42,116,45,49,48,41,58,50,45,77,97,116,104,46,112,111,119,40,50,44,49,48,45,49,48,42,116,41,41,47,50,125,102,117,110,99,116,105,111,110,32,90,114,40,116,41,123,114,101,116,117,114,110,40,40,116,42,61,50,41,60,61,49,63,49,45,77,97,116,104,46,115,113,114,116,40,49,45,116,42,116,41,58,77,97,116,104,46,115,113,114,116,40,49,45,40,116,45,61,50,41,42,116,41,43,49,41,47,50,125,118,97,114,32,81,114,61,52,47,49,49,44,75,114,61,54,47,49,49,44,74,114,61,56,47,49,49,44,116,105,61,46,55,53,44,110,105,61,57,47,49,49,44,101,105,61,49,48,47,49,49,44,114,105,61,46,57,51,55,53,44,105,105,61,50,49,47,50,50,44,111,105,61,54,51,47,54,52,44,97,105,61,49,47,81,114,47,81,114,59,102,117,110,99,116,105,111,110,32,117,105,40,116,41,123,114,101,116,117,114,110,40,116,61,43,116,41,60,81,114,63,97,105,42,116,42,116,58,116,60,74,114,63,97,105,42,40,116,45,61,75,114,41,42,116,43,116,105,58,116,60,101,105,63,97,105,42,40,116,45,61,110,105,41,42,116,43,114,105,58,97,105,42,40,116,45,61,105,105,41,42,116,43,111,105,125,118,97,114,32,99,105,61,102,117,110,99,116,105,111,110,32,116,40,110,41,123,102,117,110,99,116,105,111,110,32,101,40,116,41,123,114,101,116,117,114,110,32,116,42,116,42,40,40,110,43,49,41,42,116,45,110,41,125,114,101,116,117,114,110,32,110,61,43,110,44,101,46,111,118,101,114,115,104,111,111,116,61,116,44,101,125,40,49,46,55,48,49,53,56,41,44,102,105,61,102,117,110,99,116,105,111,110,32,116,40,110,41,123,102,117,110,99,116,105,111,110,32,101,40,116,41,123,114,101,116,117,114,110,45,45,116,42,116,42,40,40,110,43,49,41,42,116,43,110,41,43,49,125,114,101,116,117,114,110,32,110,61,43,110,44,101,46,111,118,101,114,115,104,111,111,116,61,116,44,101,125,40,49,46,55,48,49,53,56,41,44,115,105,61,102,117,110,99,116,105,111,110,32,116,40,110,41,123,102,117,110,99,116,105,111,110,32,101,40,116,41,123,114,101,116,117,114,110,40,40,116,42,61,50,41,60,49,63,116,42,116,42,40,40,110,43,49,41,42,116,45,110,41,58,40,116,45,61,50,41,42,116,42,40,40,110,43,49,41,42,116,43,110,41,43,50,41,47,50,125,114,101,116,117,114,110,32,110,61,43,110,44,101,46,111,118,101,114,115,104,111,111,116,61,116,44,101,125,40,49,46,55,48,49,53,56,41,44,108,105,61,50,42,77,97,116,104,46,80,73,44,104,105,61,102,117,110,99,116,105,111,110,32,116,40,110,44,101,41,123,118,97,114,32,114,61,77,97,116,104,46,97,115,105,110,40,49,47,40,110,61,77,97,116,104,46,109,97,120,40,49,44,110,41,41,41,42,40,101,47,61,108,105,41,59,102,117,110,99,116,105,111,110,32,105,40,116,41,123,114,101,116,117,114,110,32,110,42,77,97,116,104,46,112,111,119,40,50,44,49,48,42,45,45,116,41,42,77,97,116,104,46,115,105,110,40,40,114,45,116,41,47,101,41,125,114,101,116,117,114,110,32,105,46,97,109,112,108,105,116,117,100,101,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,40,110,44,101,42,108,105,41,125,44,105,46,112,101,114,105,111,100,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,40,110,44,101,41,125,44,105,125,40,49,44,46,51,41,44,100,105,61,102,117,110,99,116,105,111,110,32,116,40,110,44,101,41,123,118,97,114,32,114,61,77,97,116,104,46,97,115,105,110,40,49,47,40,110,61,77,97,116,104,46,109,97,120,40,49,44,110,41,41,41,42,40,101,47,61,108,105,41,59,102,117,110,99,116,105,111,110,32,105,40,116,41,123,114,101,116,117,114,110,32,49,45,110,42,77,97,116,104,46,112,111,119,40,50,44,45,49,48,42,40,116,61,43,116,41,41,42,77,97,116,104,46,115,105,110,40,40,116,43,114,41,47,101,41,125,114,101,116,117,114,110,32,105,46,97,109,112,108,105,116,117,100,101,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,40,110,44,101,42,108,105,41,125,44,105,46,112,101,114,105,111,100,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,40,110,44,101,41,125,44,105,125,40,49,44,46,51,41,44,112,105,61,102,117,110,99,116,105,111,110,32,116,40,110,44,101,41,123,118,97,114,32,114,61,77,97,116,104,46,97,115,105,110,40,49,47,40,110,61,77,97,116,104,46,109,97,120,40,49,44,110,41,41,41,42,40,101,47,61,108,105,41,59,102,117,110,99,116,105,111,110,32,105,40,116,41,123,114,101,116,117,114,110,40,40,116,61,50,42,116,45,49,41,60,48,63,110,42,77,97,116,104,46,112,111,119,40,50,44,49,48,42,116,41,42,77,97,116,104,46,115,105,110,40,40,114,45,116,41,47,101,41,58,50,45,110,42,77,97,116,104,46,112,111,119,40,50,44,45,49,48,42,116,41,42,77,97,116,104,46,115,105,110,40,40,114,43,116,41,47,101,41,41,47,50,125,114,101,116,117,114,110,32,105,46,97,109,112,108,105,116,117,100,101,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,40,110,44,101,42,108,105,41,125,44,105,46,112,101,114,105,111,100,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,40,110,44,101,41,125,44,105,125,40,49,44,46,51,41,44,118,105,61,123,116,105,109,101,58,110,117,108,108,44,100,101,108,97,121,58,48,44,100,117,114,97,116,105,111,110,58,50,53,48,44,101,97,115,101,58,73,114,125,59,102,117,110,99,116,105,111,110,32,103,105,40,116,44,110,41,123,102,111,114,40,118,97,114,32,101,59,33,40,101,61,116,46,95,95,116,114,97,110,115,105,116,105,111,110,41,124,124,33,40,101,61,101,91,110,93,41,59,41,105,102,40,33,40,116,61,116,46,112,97,114,101,110,116,78,111,100,101,41,41,114,101,116,117,114,110,32,118,105,46,116,105,109,101,61,102,114,40,41,44,118,105,59,114,101,116,117,114,110,32,101,125,122,116,46,112,114,111,116,111,116,121,112,101,46,105,110,116,101,114,114,117,112,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,80,114,40,116,104,105,115,44,116,41,125,41,125,44,122,116,46,112,114,111,116,111,116,121,112,101,46,116,114,97,110,115,105,116,105,111,110,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,44,101,59,116,32,105,110,115,116,97,110,99,101,111,102,32,85,114,63,40,110,61,116,46,95,105,100,44,116,61,116,46,95,110,97,109,101,41,58,40,110,61,66,114,40,41,44,40,101,61,118,105,41,46,116,105,109,101,61,102,114,40,41,44,116,61,110,117,108,108,61,61,116,63,110,117,108,108,58,116,43,34,34,41,59,102,111,114,40,118,97,114,32,114,61,116,104,105,115,46,95,103,114,111,117,112,115,44,105,61,114,46,108,101,110,103,116,104,44,111,61,48,59,111,60,105,59,43,43,111,41,102,111,114,40,118,97,114,32,97,44,117,61,114,91,111,93,44,99,61,117,46,108,101,110,103,116,104,44,102,61,48,59,102,60,99,59,43,43,102,41,40,97,61,117,91,102,93,41,38,38,83,114,40,97,44,116,44,110,44,102,44,117,44,101,124,124,103,105,40,97,44,110,41,41,59,114,101,116,117,114,110,32,110,101,119,32,85,114,40,114,44,116,104,105,115,46,95,112,97,114,101,110,116,115,44,116,44,110,41,125,59,118,97,114,32,121,105,61,91,110,117,108,108,93,59,102,117,110,99,116,105,111,110,32,95,105,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,125,125,102,117,110,99,116,105,111,110,32,98,105,40,116,44,110,44,101,41,123,116,104,105,115,46,116,97,114,103,101,116,61,116,44,116,104,105,115,46,116,121,112,101,61,110,44,116,104,105,115,46,115,101,108,101,99,116,105,111,110,61,101,125,102,117,110,99,116,105,111,110,32,109,105,40,41,123,116,46,101,118,101,110,116,46,115,116,111,112,73,109,109,101,100,105,97,116,101,80,114,111,112,97,103,97,116,105,111,110,40,41,125,102,117,110,99,116,105,111,110,32,120,105,40,41,123,116,46,101,118,101,110,116,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,116,46,101,118,101,110,116,46,115,116,111,112,73,109,109,101,100,105,97,116,101,80,114,111,112,97,103,97,116,105,111,110,40,41,125,118,97,114,32,119,105,61,123,110,97,109,101,58,34,100,114,97,103,34,125,44,77,105,61,123,110,97,109,101,58,34,115,112,97,99,101,34,125,44,78,105,61,123,110,97,109,101,58,34,104,97,110,100,108,101,34,125,44,84,105,61,123,110,97,109,101,58,34,99,101,110,116,101,114,34,125,59,102,117,110,99,116,105,111,110,32,65,105,40,116,41,123,114,101,116,117,114,110,91,43,116,91,48,93,44,43,116,91,49,93,93,125,102,117,110,99,116,105,111,110,32,83,105,40,116,41,123,114,101,116,117,114,110,91,65,105,40,116,91,48,93,41,44,65,105,40,116,91,49,93,41,93,125,118,97,114,32,107,105,61,123,110,97,109,101,58,34,120,34,44,104,97,110,100,108,101,115,58,91,34,119,34,44,34,101,34,93,46,109,97,112,40,76,105,41,44,105,110,112,117,116,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,116,63,110,117,108,108,58,91,91,43,116,91,48,93,44,110,91,48,93,91,49,93,93,44,91,43,116,91,49,93,44,110,91,49,93,91,49,93,93,93,125,44,111,117,116,112,117,116,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,38,38,91,116,91,48,93,91,48,93,44,116,91,49,93,91,48,93,93,125,125,44,69,105,61,123,110,97,109,101,58,34,121,34,44,104,97,110,100,108,101,115,58,91,34,110,34,44,34,115,34,93,46,109,97,112,40,76,105,41,44,105,110,112,117,116,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,116,63,110,117,108,108,58,91,91,110,91,48,93,91,48,93,44,43,116,91,48,93,93,44,91,110,91,49,93,91,48,93,44,43,116,91,49,93,93,93,125,44,111,117,116,112,117,116,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,38,38,91,116,91,48,93,91,49,93,44,116,91,49,93,91,49,93,93,125,125,44,67,105,61,123,110,97,109,101,58,34,120,121,34,44,104,97,110,100,108,101,115,58,91,34,110,34,44,34,119,34,44,34,101,34,44,34,115,34,44,34,110,119,34,44,34,110,101,34,44,34,115,119,34,44,34,115,101,34,93,46,109,97,112,40,76,105,41,44,105,110,112,117,116,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,116,63,110,117,108,108,58,83,105,40,116,41,125,44,111,117,116,112,117,116,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,125,125,44,80,105,61,123,111,118,101,114,108,97,121,58,34,99,114,111,115,115,104,97,105,114,34,44,115,101,108,101,99,116,105,111,110,58,34,109,111,118,101,34,44,110,58,34,110,115,45,114,101,115,105,122,101,34,44,101,58,34,101,119,45,114,101,115,105,122,101,34,44,115,58,34,110,115,45,114,101,115,105,122,101,34,44,119,58,34,101,119,45,114,101,115,105,122,101,34,44,110,119,58,34,110,119,115,101,45,114,101,115,105,122,101,34,44,110,101,58,34,110,101,115,119,45,114,101,115,105,122,101,34,44,115,101,58,34,110,119,115,101,45,114,101,115,105,122,101,34,44,115,119,58,34,110,101,115,119,45,114,101,115,105,122,101,34,125,44,122,105,61,123,101,58,34,119,34,44,119,58,34,101,34,44,110,119,58,34,110,101,34,44,110,101,58,34,110,119,34,44,115,101,58,34,115,119,34,44,115,119,58,34,115,101,34,125,44,82,105,61,123,110,58,34,115,34,44,115,58,34,110,34,44,110,119,58,34,115,119,34,44,110,101,58,34,115,101,34,44,115,101,58,34,110,101,34,44,115,119,58,34,110,119,34,125,44,68,105,61,123,111,118,101,114,108,97,121,58,49,44,115,101,108,101,99,116,105,111,110,58,49,44,110,58,110,117,108,108,44,101,58,49,44,115,58,110,117,108,108,44,119,58,45,49,44,110,119,58,45,49,44,110,101,58,49,44,115,101,58,49,44,115,119,58,45,49,125,44,113,105,61,123,111,118,101,114,108,97,121,58,49,44,115,101,108,101,99,116,105,111,110,58,49,44,110,58,45,49,44,101,58,110,117,108,108,44,115,58,49,44,119,58,110,117,108,108,44,110,119,58,45,49,44,110,101,58,45,49,44,115,101,58,49,44,115,119,58,49,125,59,102,117,110,99,116,105,111,110,32,76,105,40,116,41,123,114,101,116,117,114,110,123,116,121,112,101,58,116,125,125,102,117,110,99,116,105,111,110,32,85,105,40,41,123,114,101,116,117,114,110,33,116,46,101,118,101,110,116,46,99,116,114,108,75,101,121,38,38,33,116,46,101,118,101,110,116,46,98,117,116,116,111,110,125,102,117,110,99,116,105,111,110,32,79,105,40,41,123,118,97,114,32,116,61,116,104,105,115,46,111,119,110,101,114,83,86,71,69,108,101,109,101,110,116,124,124,116,104,105,115,59,114,101,116,117,114,110,32,116,46,104,97,115,65,116,116,114,105,98,117,116,101,40,34,118,105,101,119,66,111,120,34,41,63,91,91,40,116,61,116,46,118,105,101,119,66,111,120,46,98,97,115,101,86,97,108,41,46,120,44,116,46,121,93,44,91,116,46,120,43,116,46,119,105,100,116,104,44,116,46,121,43,116,46,104,101,105,103,104,116,93,93,58,91,91,48,44,48,93,44,91,116,46,119,105,100,116,104,46,98,97,115,101,86,97,108,46,118,97,108,117,101,44,116,46,104,101,105,103,104,116,46,98,97,115,101,86,97,108,46,118,97,108,117,101,93,93,125,102,117,110,99,116,105,111,110,32,66,105,40,41,123,114,101,116,117,114,110,32,110,97,118,105,103,97,116,111,114,46,109,97,120,84,111,117,99,104,80,111,105,110,116,115,124,124,34,111,110,116,111,117,99,104,115,116,97,114,116,34,105,110,32,116,104,105,115,125,102,117,110,99,116,105,111,110,32,70,105,40,116,41,123,102,111,114,40,59,33,116,46,95,95,98,114,117,115,104,59,41,105,102,40,33,40,116,61,116,46,112,97,114,101,110,116,78,111,100,101,41,41,114,101,116,117,114,110,59,114,101,116,117,114,110,32,116,46,95,95,98,114,117,115,104,125,102,117,110,99,116,105,111,110,32,89,105,40,110,41,123,118,97,114,32,101,44,114,61,79,105,44,105,61,85,105,44,111,61,66,105,44,97,61,33,48,44,117,61,73,40,34,115,116,97,114,116,34,44,34,98,114,117,115,104,34,44,34,101,110,100,34,41,44,99,61,54,59,102,117,110,99,116,105,111,110,32,102,40,116,41,123,118,97,114,32,101,61,116,46,112,114,111,112,101,114,116,121,40,34,95,95,98,114,117,115,104,34,44,103,41,46,115,101,108,101,99,116,65,108,108,40,34,46,111,118,101,114,108,97,121,34,41,46,100,97,116,97,40,91,76,105,40,34,111,118,101,114,108,97,121,34,41,93,41,59,101,46,101,110,116,101,114,40,41,46,97,112,112,101,110,100,40,34,114,101,99,116,34,41,46,97,116,116,114,40,34,99,108,97,115,115,34,44,34,111,118,101,114,108,97,121,34,41,46,97,116,116,114,40,34,112,111,105,110,116,101,114,45,101,118,101,110,116,115,34,44,34,97,108,108,34,41,46,97,116,116,114,40,34,99,117,114,115,111,114,34,44,80,105,46,111,118,101,114,108,97,121,41,46,109,101,114,103,101,40,101,41,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,70,105,40,116,104,105,115,41,46,101,120,116,101,110,116,59,82,116,40,116,104,105,115,41,46,97,116,116,114,40,34,120,34,44,116,91,48,93,91,48,93,41,46,97,116,116,114,40,34,121,34,44,116,91,48,93,91,49,93,41,46,97,116,116,114,40,34,119,105,100,116,104,34,44,116,91,49,93,91,48,93,45,116,91,48,93,91,48,93,41,46,97,116,116,114,40,34,104,101,105,103,104,116,34,44,116,91,49,93,91,49,93,45,116,91,48,93,91,49,93,41,125,41,44,116,46,115,101,108,101,99,116,65,108,108,40,34,46,115,101,108,101,99,116,105,111,110,34,41,46,100,97,116,97,40,91,76,105,40,34,115,101,108,101,99,116,105,111,110,34,41,93,41,46,101,110,116,101,114,40,41,46,97,112,112,101,110,100,40,34,114,101,99,116,34,41,46,97,116,116,114,40,34,99,108,97,115,115,34,44,34,115,101,108,101,99,116,105,111,110,34,41,46,97,116,116,114,40,34,99,117,114,115,111,114,34,44,80,105,46,115,101,108,101,99,116,105,111,110,41,46,97,116,116,114,40,34,102,105,108,108,34,44,34,35,55,55,55,34,41,46,97,116,116,114,40,34,102,105,108,108,45,111,112,97,99,105,116,121,34,44,46,51,41,46,97,116,116,114,40,34,115,116,114,111,107,101,34,44,34,35,102,102,102,34,41,46,97,116,116,114,40,34,115,104,97,112,101,45,114,101,110,100,101,114,105,110,103,34,44,34,99,114,105,115,112,69,100,103,101,115,34,41,59,118,97,114,32,114,61,116,46,115,101,108,101,99,116,65,108,108,40,34,46,104,97,110,100,108,101,34,41,46,100,97,116,97,40,110,46,104,97,110,100,108,101,115,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,116,121,112,101,125,41,59,114,46,101,120,105,116,40,41,46,114,101,109,111,118,101,40,41,44,114,46,101,110,116,101,114,40,41,46,97,112,112,101,110,100,40,34,114,101,99,116,34,41,46,97,116,116,114,40,34,99,108,97,115,115,34,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,34,104,97,110,100,108,101,32,104,97,110,100,108,101,45,45,34,43,116,46,116,121,112,101,125,41,46,97,116,116,114,40,34,99,117,114,115,111,114,34,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,80,105,91,116,46,116,121,112,101,93,125,41,44,116,46,101,97,99,104,40,115,41,46,97,116,116,114,40,34,102,105,108,108,34,44,34,110,111,110,101,34,41,46,97,116,116,114,40,34,112,111,105,110,116,101,114,45,101,118,101,110,116,115,34,44,34,97,108,108,34,41,46,111,110,40,34,109,111,117,115,101,100,111,119,110,46,98,114,117,115,104,34,44,100,41,46,102,105,108,116,101,114,40,111,41,46,111,110,40,34,116,111,117,99,104,115,116,97,114,116,46,98,114,117,115,104,34,44,100,41,46,111,110,40,34,116,111,117,99,104,109,111,118,101,46,98,114,117,115,104,34,44,112,41,46,111,110,40,34,116,111,117,99,104,101,110,100,46,98,114,117,115,104,32,116,111,117,99,104,99,97,110,99,101,108,46,98,114,117,115,104,34,44,118,41,46,115,116,121,108,101,40,34,116,111,117,99,104,45,97,99,116,105,111,110,34,44,34,110,111,110,101,34,41,46,115,116,121,108,101,40,34,45,119,101,98,107,105,116,45,116,97,112,45,104,105,103,104,108,105,103,104,116,45,99,111,108,111,114,34,44,34,114,103,98,97,40,48,44,48,44,48,44,48,41,34,41,125,102,117,110,99,116,105,111,110,32,115,40,41,123,118,97,114,32,116,61,82,116,40,116,104,105,115,41,44,110,61,70,105,40,116,104,105,115,41,46,115,101,108,101,99,116,105,111,110,59,110,63,40,116,46,115,101,108,101,99,116,65,108,108,40,34,46,115,101,108,101,99,116,105,111,110,34,41,46,115,116,121,108,101,40,34,100,105,115,112,108,97,121,34,44,110,117,108,108,41,46,97,116,116,114,40,34,120,34,44,110,91,48,93,91,48,93,41,46,97,116,116,114,40,34,121,34,44,110,91,48,93,91,49,93,41,46,97,116,116,114,40,34,119,105,100,116,104,34,44,110,91,49,93,91,48,93,45,110,91,48,93,91,48,93,41,46,97,116,116,114,40,34,104,101,105,103,104,116,34,44,110,91,49,93,91,49,93,45,110,91,48,93,91,49,93,41,44,116,46,115,101,108,101,99,116,65,108,108,40,34,46,104,97,110,100,108,101,34,41,46,115,116,121,108,101,40,34,100,105,115,112,108,97,121,34,44,110,117,108,108,41,46,97,116,116,114,40,34,120,34,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,34,101,34,61,61,61,116,46,116,121,112,101,91,116,46,116,121,112,101,46,108,101,110,103,116,104,45,49,93,63,110,91,49,93,91,48,93,45,99,47,50,58,110,91,48,93,91,48,93,45,99,47,50,125,41,46,97,116,116,114,40,34,121,34,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,34,115,34,61,61,61,116,46,116,121,112,101,91,48,93,63,110,91,49,93,91,49,93,45,99,47,50,58,110,91,48,93,91,49,93,45,99,47,50,125,41,46,97,116,116,114,40,34,119,105,100,116,104,34,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,34,110,34,61,61,61,116,46,116,121,112,101,124,124,34,115,34,61,61,61,116,46,116,121,112,101,63,110,91,49,93,91,48,93,45,110,91,48,93,91,48,93,43,99,58,99,125,41,46,97,116,116,114,40,34,104,101,105,103,104,116,34,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,34,101,34,61,61,61,116,46,116,121,112,101,124,124,34,119,34,61,61,61,116,46,116,121,112,101,63,110,91,49,93,91,49,93,45,110,91,48,93,91,49,93,43,99,58,99,125,41,41,58,116,46,115,101,108,101,99,116,65,108,108,40,34,46,115,101,108,101,99,116,105,111,110,44,46,104,97,110,100,108,101,34,41,46,115,116,121,108,101,40,34,100,105,115,112,108,97,121,34,44,34,110,111,110,101,34,41,46,97,116,116,114,40,34,120,34,44,110,117,108,108,41,46,97,116,116,114,40,34,121,34,44,110,117,108,108,41,46,97,116,116,114,40,34,119,105,100,116,104,34,44,110,117,108,108,41,46,97,116,116,114,40,34,104,101,105,103,104,116,34,44,110,117,108,108,41,125,102,117,110,99,116,105,111,110,32,108,40,116,44,110,44,101,41,123,114,101,116,117,114,110,33,101,38,38,116,46,95,95,98,114,117,115,104,46,101,109,105,116,116,101,114,124,124,110,101,119,32,104,40,116,44,110,41,125,102,117,110,99,116,105,111,110,32,104,40,116,44,110,41,123,116,104,105,115,46,116,104,97,116,61,116,44,116,104,105,115,46,97,114,103,115,61,110,44,116,104,105,115,46,115,116,97,116,101,61,116,46,95,95,98,114,117,115,104,44,116,104,105,115,46,97,99,116,105,118,101,61,48,125,102,117,110,99,116,105,111,110,32,100,40,41,123,105,102,40,40,33,101,124,124,116,46,101,118,101,110,116,46,116,111,117,99,104,101,115,41,38,38,105,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,41,123,118,97,114,32,114,44,111,44,117,44,99,44,102,44,104,44,100,44,112,44,118,44,103,44,121,44,95,44,98,61,116,104,105,115,44,109,61,116,46,101,118,101,110,116,46,116,97,114,103,101,116,46,95,95,100,97,116,97,95,95,46,116,121,112,101,44,120,61,34,115,101,108,101,99,116,105,111,110,34,61,61,61,40,97,38,38,116,46,101,118,101,110,116,46,109,101,116,97,75,101,121,63,109,61,34,111,118,101,114,108,97,121,34,58,109,41,63,119,105,58,97,38,38,116,46,101,118,101,110,116,46,97,108,116,75,101,121,63,84,105,58,78,105,44,119,61,110,61,61,61,69,105,63,110,117,108,108,58,68,105,91,109,93,44,77,61,110,61,61,61,107,105,63,110,117,108,108,58,113,105,91,109,93,44,78,61,70,105,40,98,41,44,84,61,78,46,101,120,116,101,110,116,44,65,61,78,46,115,101,108,101,99,116,105,111,110,44,83,61,84,91,48,93,91,48,93,44,107,61,84,91,48,93,91,49,93,44,69,61,84,91,49,93,91,48,93,44,67,61,84,91,49,93,91,49,93,44,80,61,48,44,122,61,48,44,82,61,119,38,38,77,38,38,97,38,38,116,46,101,118,101,110,116,46,115,104,105,102,116,75,101,121,44,68,61,116,46,101,118,101,110,116,46,116,111,117,99,104,101,115,63,40,95,61,116,46,101,118,101,110,116,46,99,104,97,110,103,101,100,84,111,117,99,104,101,115,91,48,93,46,105,100,101,110,116,105,102,105,101,114,44,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,70,116,40,110,44,116,46,101,118,101,110,116,46,116,111,117,99,104,101,115,44,95,41,125,41,58,66,116,44,113,61,68,40,98,41,44,76,61,113,44,85,61,108,40,98,44,97,114,103,117,109,101,110,116,115,44,33,48,41,46,98,101,102,111,114,101,115,116,97,114,116,40,41,59,34,111,118,101,114,108,97,121,34,61,61,61,109,63,40,65,38,38,40,118,61,33,48,41,44,78,46,115,101,108,101,99,116,105,111,110,61,65,61,91,91,114,61,110,61,61,61,69,105,63,83,58,113,91,48,93,44,117,61,110,61,61,61,107,105,63,107,58,113,91,49,93,93,44,91,102,61,110,61,61,61,69,105,63,69,58,114,44,100,61,110,61,61,61,107,105,63,67,58,117,93,93,41,58,40,114,61,65,91,48,93,91,48,93,44,117,61,65,91,48,93,91,49,93,44,102,61,65,91,49,93,91,48,93,44,100,61,65,91,49,93,91,49,93,41,44,111,61,114,44,99,61,117,44,104,61,102,44,112,61,100,59,118,97,114,32,79,61,82,116,40,98,41,46,97,116,116,114,40,34,112,111,105,110,116,101,114,45,101,118,101,110,116,115,34,44,34,110,111,110,101,34,41,44,66,61,79,46,115,101,108,101,99,116,65,108,108,40,34,46,111,118,101,114,108,97,121,34,41,46,97,116,116,114,40,34,99,117,114,115,111,114,34,44,80,105,91,109,93,41,59,105,102,40,116,46,101,118,101,110,116,46,116,111,117,99,104,101,115,41,85,46,109,111,118,101,100,61,89,44,85,46,101,110,100,101,100,61,72,59,101,108,115,101,123,118,97,114,32,70,61,82,116,40,116,46,101,118,101,110,116,46,118,105,101,119,41,46,111,110,40,34,109,111,117,115,101,109,111,118,101,46,98,114,117,115,104,34,44,89,44,33,48,41,46,111,110,40,34,109,111,117,115,101,117,112,46,98,114,117,115,104,34,44,72,44,33,48,41,59,97,38,38,70,46,111,110,40,34,107,101,121,100,111,119,110,46,98,114,117,115,104,34,44,102,117,110,99,116,105,111,110,40,41,123,115,119,105,116,99,104,40,116,46,101,118,101,110,116,46,107,101,121,67,111,100,101,41,123,99,97,115,101,32,49,54,58,82,61,119,38,38,77,59,98,114,101,97,107,59,99,97,115,101,32,49,56,58,120,61,61,61,78,105,38,38,40,119,38,38,40,102,61,104,45,80,42,119,44,114,61,111,43,80,42,119,41,44,77,38,38,40,100,61,112,45,122,42,77,44,117,61,99,43,122,42,77,41,44,120,61,84,105,44,73,40,41,41,59,98,114,101,97,107,59,99,97,115,101,32,51,50,58,120,33,61,61,78,105,38,38,120,33,61,61,84,105,124,124,40,119,60,48,63,102,61,104,45,80,58,119,62,48,38,38,40,114,61,111,45,80,41,44,77,60,48,63,100,61,112,45,122,58,77,62,48,38,38,40,117,61,99,45,122,41,44,120,61,77,105,44,66,46,97,116,116,114,40,34,99,117,114,115,111,114,34,44,80,105,46,115,101,108,101,99,116,105,111,110,41,44,73,40,41,41,59,98,114,101,97,107,59,100,101,102,97,117,108,116,58,114,101,116,117,114,110,125,120,105,40,41,125,44,33,48,41,46,111,110,40,34,107,101,121,117,112,46,98,114,117,115,104,34,44,102,117,110,99,116,105,111,110,40,41,123,115,119,105,116,99,104,40,116,46,101,118,101,110,116,46,107,101,121,67,111,100,101,41,123,99,97,115,101,32,49,54,58,82,38,38,40,103,61,121,61,82,61,33,49,44,73,40,41,41,59,98,114,101,97,107,59,99,97,115,101,32,49,56,58,120,61,61,61,84,105,38,38,40,119,60,48,63,102,61,104,58,119,62,48,38,38,40,114,61,111,41,44,77,60,48,63,100,61,112,58,77,62,48,38,38,40,117,61,99,41,44,120,61,78,105,44,73,40,41,41,59,98,114,101,97,107,59,99,97,115,101,32,51,50,58,120,61,61,61,77,105,38,38,40,116,46,101,118,101,110,116,46,97,108,116,75,101,121,63,40,119,38,38,40,102,61,104,45,80,42,119,44,114,61,111,43,80,42,119,41,44,77,38,38,40,100,61,112,45,122,42,77,44,117,61,99,43,122,42,77,41,44,120,61,84,105,41,58,40,119,60,48,63,102,61,104,58,119,62,48,38,38,40,114,61,111,41,44,77,60,48,63,100,61,112,58,77,62,48,38,38,40,117,61,99,41,44,120,61,78,105,41,44,66,46,97,116,116,114,40,34,99,117,114,115,111,114,34,44,80,105,91,109,93,41,44,73,40,41,41,59,98,114,101,97,107,59,100,101,102,97,117,108,116,58,114,101,116,117,114,110,125,120,105,40,41,125,44,33,48,41,44,72,116,40,116,46,101,118,101,110,116,46,118,105,101,119,41,125,109,105,40,41,44,80,114,40,98,41,44,115,46,99,97,108,108,40,98,41,44,85,46,115,116,97,114,116,40,41,125,102,117,110,99,116,105,111,110,32,89,40,41,123,118,97,114,32,116,61,68,40,98,41,59,33,82,124,124,103,124,124,121,124,124,40,77,97,116,104,46,97,98,115,40,116,91,48,93,45,76,91,48,93,41,62,77,97,116,104,46,97,98,115,40,116,91,49,93,45,76,91,49,93,41,63,121,61,33,48,58,103,61,33,48,41,44,76,61,116,44,118,61,33,48,44,120,105,40,41,44,73,40,41,125,102,117,110,99,116,105,111,110,32,73,40,41,123,118,97,114,32,116,59,115,119,105,116,99,104,40,80,61,76,91,48,93,45,113,91,48,93,44,122,61,76,91,49,93,45,113,91,49,93,44,120,41,123,99,97,115,101,32,77,105,58,99,97,115,101,32,119,105,58,119,38,38,40,80,61,77,97,116,104,46,109,97,120,40,83,45,114,44,77,97,116,104,46,109,105,110,40,69,45,102,44,80,41,41,44,111,61,114,43,80,44,104,61,102,43,80,41,44,77,38,38,40,122,61,77,97,116,104,46,109,97,120,40,107,45,117,44,77,97,116,104,46,109,105,110,40,67,45,100,44,122,41,41,44,99,61,117,43,122,44,112,61,100,43,122,41,59,98,114,101,97,107,59,99,97,115,101,32,78,105,58,119,60,48,63,40,80,61,77,97,116,104,46,109,97,120,40,83,45,114,44,77,97,116,104,46,109,105,110,40,69,45,114,44,80,41,41,44,111,61,114,43,80,44,104,61,102,41,58,119,62,48,38,38,40,80,61,77,97,116,104,46,109,97,120,40,83,45,102,44,77,97,116,104,46,109,105,110,40,69,45,102,44,80,41,41,44,111,61,114,44,104,61,102,43,80,41,44,77,60,48,63,40,122,61,77,97,116,104,46,109,97,120,40,107,45,117,44,77,97,116,104,46,109,105,110,40,67,45,117,44,122,41,41,44,99,61,117,43,122,44,112,61,100,41,58,77,62,48,38,38,40,122,61,77,97,116,104,46,109,97,120,40,107,45,100,44,77,97,116,104,46,109,105,110,40,67,45,100,44,122,41,41,44,99,61,117,44,112,61,100,43,122,41,59,98,114,101,97,107,59,99,97,115,101,32,84,105,58,119,38,38,40,111,61,77,97,116,104,46,109,97,120,40,83,44,77,97,116,104,46,109,105,110,40,69,44,114,45,80,42,119,41,41,44,104,61,77,97,116,104,46,109,97,120,40,83,44,77,97,116,104,46,109,105,110,40,69,44,102,43,80,42,119,41,41,41,44,77,38,38,40,99,61,77,97,116,104,46,109,97,120,40,107,44,77,97,116,104,46,109,105,110,40,67,44,117,45,122,42,77,41,41,44,112,61,77,97,116,104,46,109,97,120,40,107,44,77,97,116,104,46,109,105,110,40,67,44,100,43,122,42,77,41,41,41,125,104,60,111,38,38,40,119,42,61,45,49,44,116,61,114,44,114,61,102,44,102,61,116,44,116,61,111,44,111,61,104,44,104,61,116,44,109,32,105,110,32,122,105,38,38,66,46,97,116,116,114,40,34,99,117,114,115,111,114,34,44,80,105,91,109,61,122,105,91,109,93,93,41,41,44,112,60,99,38,38,40,77,42,61,45,49,44,116,61,117,44,117,61,100,44,100,61,116,44,116,61,99,44,99,61,112,44,112,61,116,44,109,32,105,110,32,82,105,38,38,66,46,97,116,116,114,40,34,99,117,114,115,111,114,34,44,80,105,91,109,61,82,105,91,109,93,93,41,41,44,78,46,115,101,108,101,99,116,105,111,110,38,38,40,65,61,78,46,115,101,108,101,99,116,105,111,110,41,44,103,38,38,40,111,61,65,91,48,93,91,48,93,44,104,61,65,91,49,93,91,48,93,41,44,121,38,38,40,99,61,65,91,48,93,91,49,93,44,112,61,65,91,49,93,91,49,93,41,44,65,91,48,93,91,48,93,61,61,61,111,38,38,65,91,48,93,91,49,93,61,61,61,99,38,38,65,91,49,93,91,48,93,61,61,61,104,38,38,65,91,49,93,91,49,93,61,61,61,112,124,124,40,78,46,115,101,108,101,99,116,105,111,110,61,91,91,111,44,99,93,44,91,104,44,112,93,93,44,115,46,99,97,108,108,40,98,41,44,85,46,98,114,117,115,104,40,41,41,125,102,117,110,99,116,105,111,110,32,72,40,41,123,105,102,40,109,105,40,41,44,116,46,101,118,101,110,116,46,116,111,117,99,104,101,115,41,123,105,102,40,116,46,101,118,101,110,116,46,116,111,117,99,104,101,115,46,108,101,110,103,116,104,41,114,101,116,117,114,110,59,101,38,38,99,108,101,97,114,84,105,109,101,111,117,116,40,101,41,44,101,61,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,40,41,123,101,61,110,117,108,108,125,44,53,48,48,41,125,101,108,115,101,32,106,116,40,116,46,101,118,101,110,116,46,118,105,101,119,44,118,41,44,70,46,111,110,40,34,107,101,121,100,111,119,110,46,98,114,117,115,104,32,107,101,121,117,112,46,98,114,117,115,104,32,109,111,117,115,101,109,111,118,101,46,98,114,117,115,104,32,109,111,117,115,101,117,112,46,98,114,117,115,104,34,44,110,117,108,108,41,59,79,46,97,116,116,114,40,34,112,111,105,110,116,101,114,45,101,118,101,110,116,115,34,44,34,97,108,108,34,41,44,66,46,97,116,116,114,40,34,99,117,114,115,111,114,34,44,80,105,46,111,118,101,114,108,97,121,41,44,78,46,115,101,108,101,99,116,105,111,110,38,38,40,65,61,78,46,115,101,108,101,99,116,105,111,110,41,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,91,48,93,91,48,93,61,61,61,116,91,49,93,91,48,93,124,124,116,91,48,93,91,49,93,61,61,61,116,91,49,93,91,49,93,125,40,65,41,38,38,40,78,46,115,101,108,101,99,116,105,111,110,61,110,117,108,108,44,115,46,99,97,108,108,40,98,41,41,44,85,46,101,110,100,40,41,125,125,102,117,110,99,116,105,111,110,32,112,40,41,123,108,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,46,109,111,118,101,100,40,41,125,102,117,110,99,116,105,111,110,32,118,40,41,123,108,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,46,101,110,100,101,100,40,41,125,102,117,110,99,116,105,111,110,32,103,40,41,123,118,97,114,32,116,61,116,104,105,115,46,95,95,98,114,117,115,104,124,124,123,115,101,108,101,99,116,105,111,110,58,110,117,108,108,125,59,114,101,116,117,114,110,32,116,46,101,120,116,101,110,116,61,83,105,40,114,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,41,44,116,46,100,105,109,61,110,44,116,125,114,101,116,117,114,110,32,102,46,109,111,118,101,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,116,46,115,101,108,101,99,116,105,111,110,63,116,46,111,110,40,34,115,116,97,114,116,46,98,114,117,115,104,34,44,102,117,110,99,116,105,111,110,40,41,123,108,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,46,98,101,102,111,114,101,115,116,97,114,116,40,41,46,115,116,97,114,116,40,41,125,41,46,111,110,40,34,105,110,116,101,114,114,117,112,116,46,98,114,117,115,104,32,101,110,100,46,98,114,117,115,104,34,44,102,117,110,99,116,105,111,110,40,41,123,108,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,46,101,110,100,40,41,125,41,46,116,119,101,101,110,40,34,98,114,117,115,104,34,44,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,44,114,61,116,46,95,95,98,114,117,115,104,44,105,61,108,40,116,44,97,114,103,117,109,101,110,116,115,41,44,111,61,114,46,115,101,108,101,99,116,105,111,110,44,97,61,110,46,105,110,112,117,116,40,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,101,63,101,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,58,101,44,114,46,101,120,116,101,110,116,41,44,117,61,84,101,40,111,44,97,41,59,102,117,110,99,116,105,111,110,32,99,40,110,41,123,114,46,115,101,108,101,99,116,105,111,110,61,49,61,61,61,110,38,38,110,117,108,108,61,61,61,97,63,110,117,108,108,58,117,40,110,41,44,115,46,99,97,108,108,40,116,41,44,105,46,98,114,117,115,104,40,41,125,114,101,116,117,114,110,32,110,117,108,108,33,61,61,111,38,38,110,117,108,108,33,61,61,97,63,99,58,99,40,49,41,125,41,58,116,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,44,114,61,97,114,103,117,109,101,110,116,115,44,105,61,116,46,95,95,98,114,117,115,104,44,111,61,110,46,105,110,112,117,116,40,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,101,63,101,46,97,112,112,108,121,40,116,44,114,41,58,101,44,105,46,101,120,116,101,110,116,41,44,97,61,108,40,116,44,114,41,46,98,101,102,111,114,101,115,116,97,114,116,40,41,59,80,114,40,116,41,44,105,46,115,101,108,101,99,116,105,111,110,61,110,117,108,108,61,61,61,111,63,110,117,108,108,58,111,44,115,46,99,97,108,108,40,116,41,44,97,46,115,116,97,114,116,40,41,46,98,114,117,115,104,40,41,46,101,110,100,40,41,125,41,125,44,102,46,99,108,101,97,114,61,102,117,110,99,116,105,111,110,40,116,41,123,102,46,109,111,118,101,40,116,44,110,117,108,108,41,125,44,104,46,112,114,111,116,111,116,121,112,101,61,123,98,101,102,111,114,101,115,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,49,61,61,43,43,116,104,105,115,46,97,99,116,105,118,101,38,38,40,116,104,105,115,46,115,116,97,116,101,46,101,109,105,116,116,101,114,61,116,104,105,115,44,116,104,105,115,46,115,116,97,114,116,105,110,103,61,33,48,41,44,116,104,105,115,125,44,115,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,115,116,97,114,116,105,110,103,63,40,116,104,105,115,46,115,116,97,114,116,105,110,103,61,33,49,44,116,104,105,115,46,101,109,105,116,40,34,115,116,97,114,116,34,41,41,58,116,104,105,115,46,101,109,105,116,40,34,98,114,117,115,104,34,41,44,116,104,105,115,125,44,98,114,117,115,104,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,109,105,116,40,34,98,114,117,115,104,34,41,44,116,104,105,115,125,44,101,110,100,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,48,61,61,45,45,116,104,105,115,46,97,99,116,105,118,101,38,38,40,100,101,108,101,116,101,32,116,104,105,115,46,115,116,97,116,101,46,101,109,105,116,116,101,114,44,116,104,105,115,46,101,109,105,116,40,34,101,110,100,34,41,41,44,116,104,105,115,125,44,101,109,105,116,58,102,117,110,99,116,105,111,110,40,116,41,123,107,116,40,110,101,119,32,98,105,40,102,44,116,44,110,46,111,117,116,112,117,116,40,116,104,105,115,46,115,116,97,116,101,46,115,101,108,101,99,116,105,111,110,41,41,44,117,46,97,112,112,108,121,44,117,44,91,116,44,116,104,105,115,46,116,104,97,116,44,116,104,105,115,46,97,114,103,115,93,41,125,125,44,102,46,101,120,116,101,110,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,114,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,95,105,40,83,105,40,116,41,41,44,102,41,58,114,125,44,102,46,102,105,108,116,101,114,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,105,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,95,105,40,33,33,116,41,44,102,41,58,105,125,44,102,46,116,111,117,99,104,97,98,108,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,111,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,95,105,40,33,33,116,41,44,102,41,58,111,125,44,102,46,104,97,110,100,108,101,83,105,122,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,99,61,43,116,44,102,41,58,99,125,44,102,46,107,101,121,77,111,100,105,102,105,101,114,115,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,97,61,33,33,116,44,102,41,58,97,125,44,102,46,111,110,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,117,46,111,110,46,97,112,112,108,121,40,117,44,97,114,103,117,109,101,110,116,115,41,59,114,101,116,117,114,110,32,116,61,61,61,117,63,102,58,116,125,44,102,125,118,97,114,32,73,105,61,77,97,116,104,46,99,111,115,44,72,105,61,77,97,116,104,46,115,105,110,44,106,105,61,77,97,116,104,46,80,73,44,88,105,61,106,105,47,50,44,86,105,61,50,42,106,105,44,71,105,61,77,97,116,104,46,109,97,120,59,102,117,110,99,116,105,111,110,32,36,105,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,110,44,101,41,123,114,101,116,117,114,110,32,116,40,110,46,115,111,117,114,99,101,46,118,97,108,117,101,43,110,46,116,97,114,103,101,116,46,118,97,108,117,101,44,101,46,115,111,117,114,99,101,46,118,97,108,117,101,43,101,46,116,97,114,103,101,116,46,118,97,108,117,101,41,125,125,118,97,114,32,87,105,61,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,115,108,105,99,101,59,102,117,110,99,116,105,111,110,32,90,105,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,125,125,118,97,114,32,81,105,61,77,97,116,104,46,80,73,44,75,105,61,50,42,81,105,44,74,105,61,75,105,45,49,101,45,54,59,102,117,110,99,116,105,111,110,32,116,111,40,41,123,116,104,105,115,46,95,120,48,61,116,104,105,115,46,95,121,48,61,116,104,105,115,46,95,120,49,61,116,104,105,115,46,95,121,49,61,110,117,108,108,44,116,104,105,115,46,95,61,34,34,125,102,117,110,99,116,105,111,110,32,110,111,40,41,123,114,101,116,117,114,110,32,110,101,119,32,116,111,125,102,117,110,99,116,105,111,110,32,101,111,40,116,41,123,114,101,116,117,114,110,32,116,46,115,111,117,114,99,101,125,102,117,110,99,116,105,111,110,32,114,111,40,116,41,123,114,101,116,117,114,110,32,116,46,116,97,114,103,101,116,125,102,117,110,99,116,105,111,110,32,105,111,40,116,41,123,114,101,116,117,114,110,32,116,46,114,97,100,105,117,115,125,102,117,110,99,116,105,111,110,32,111,111,40,116,41,123,114,101,116,117,114,110,32,116,46,115,116,97,114,116,65,110,103,108,101,125,102,117,110,99,116,105,111,110,32,97,111,40,116,41,123,114,101,116,117,114,110,32,116,46,101,110,100,65,110,103,108,101,125,116,111,46,112,114,111,116,111,116,121,112,101,61,110,111,46,112,114,111,116,111,116,121,112,101,61,123,99,111,110,115,116,114,117,99,116,111,114,58,116,111,44,109,111,118,101,84,111,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,116,104,105,115,46,95,43,61,34,77,34,43,40,116,104,105,115,46,95,120,48,61,116,104,105,115,46,95,120,49,61,43,116,41,43,34,44,34,43,40,116,104,105,115,46,95,121,48,61,116,104,105,115,46,95,121,49,61,43,110,41,125,44,99,108,111,115,101,80,97,116,104,58,102,117,110,99,116,105,111,110,40,41,123,110,117,108,108,33,61,61,116,104,105,115,46,95,120,49,38,38,40,116,104,105,115,46,95,120,49,61,116,104,105,115,46,95,120,48,44,116,104,105,115,46,95,121,49,61,116,104,105,115,46,95,121,48,44,116,104,105,115,46,95,43,61,34,90,34,41,125,44,108,105,110,101,84,111,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,116,104,105,115,46,95,43,61,34,76,34,43,40,116,104,105,115,46,95,120,49,61,43,116,41,43,34,44,34,43,40,116,104,105,115,46,95,121,49,61,43,110,41,125,44,113,117,97,100,114,97,116,105,99,67,117,114,118,101,84,111,58,102,117,110,99,116,105,111,110,40,116,44,110,44,101,44,114,41,123,116,104,105,115,46,95,43,61,34,81,34,43,32,43,116,43,34,44,34,43,32,43,110,43,34,44,34,43,40,116,104,105,115,46,95,120,49,61,43,101,41,43,34,44,34,43,40,116,104,105,115,46,95,121,49,61,43,114,41,125,44,98,101,122,105,101,114,67,117,114,118,101,84,111,58,102,117,110,99,116,105,111,110,40,116,44,110,44,101,44,114,44,105,44,111,41,123,116,104,105,115,46,95,43,61,34,67,34,43,32,43,116,43,34,44,34,43,32,43,110,43,34,44,34,43,32,43,101,43,34,44,34,43,32,43,114,43,34,44,34,43,40,116,104,105,115,46,95,120,49,61,43,105,41,43,34,44,34,43,40,116,104,105,115,46,95,121,49,61,43,111,41,125,44,97,114,99,84,111,58,102,117,110,99,116,105,111,110,40,116,44,110,44,101,44,114,44,105,41,123,116,61,43,116,44,110,61,43,110,44,101,61,43,101,44,114,61,43,114,44,105,61,43,105,59,118,97,114,32,111,61,116,104,105,115,46,95,120,49,44,97,61,116,104,105,115,46,95,121,49,44,117,61,101,45,116,44,99,61,114,45,110,44,102,61,111,45,116,44,115,61,97,45,110,44,108,61,102,42,102,43,115,42,115,59,105,102,40,105,60,48,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,110,101,103,97,116,105,118,101,32,114,97,100,105,117,115,58,32,34,43,105,41,59,105,102,40,110,117,108,108,61,61,61,116,104,105,115,46,95,120,49,41,116,104,105,115,46,95,43,61,34,77,34,43,40,116,104,105,115,46,95,120,49,61,116,41,43,34,44,34,43,40,116,104,105,115,46,95,121,49,61,110,41,59,101,108,115,101,32,105,102,40,108,62,49,101,45,54,41,105,102,40,77,97,116,104,46,97,98,115,40,115,42,117,45,99,42,102,41,62,49,101,45,54,38,38,105,41,123,118,97,114,32,104,61,101,45,111,44,100,61,114,45,97,44,112,61,117,42,117,43,99,42,99,44,118,61,104,42,104,43,100,42,100,44,103,61,77,97,116,104,46,115,113,114,116,40,112,41,44,121,61,77,97,116,104,46,115,113,114,116,40,108,41,44,95,61,105,42,77,97,116,104,46,116,97,110,40,40,81,105,45,77,97,116,104,46,97,99,111,115,40,40,112,43,108,45,118,41,47,40,50,42,103,42,121,41,41,41,47,50,41,44,98,61,95,47,121,44,109,61,95,47,103,59,77,97,116,104,46,97,98,115,40,98,45,49,41,62,49,101,45,54,38,38,40,116,104,105,115,46,95,43,61,34,76,34,43,40,116,43,98,42,102,41,43,34,44,34,43,40,110,43,98,42,115,41,41,44,116,104,105,115,46,95,43,61,34,65,34,43,105,43,34,44,34,43,105,43,34,44,48,44,48,44,34,43,32,43,40,115,42,104,62,102,42,100,41,43,34,44,34,43,40,116,104,105,115,46,95,120,49,61,116,43,109,42,117,41,43,34,44,34,43,40,116,104,105,115,46,95,121,49,61,110,43,109,42,99,41,125,101,108,115,101,32,116,104,105,115,46,95,43,61,34,76,34,43,40,116,104,105,115,46,95,120,49,61,116,41,43,34,44,34,43,40,116,104,105,115,46,95,121,49,61,110,41,59,101,108,115,101,59,125,44,97,114,99,58,102,117,110,99,116,105,111,110,40,116,44,110,44,101,44,114,44,105,44,111,41,123,116,61,43,116,44,110,61,43,110,44,111,61,33,33,111,59,118,97,114,32,97,61,40,101,61,43,101,41,42,77,97,116,104,46,99,111,115,40,114,41,44,117,61,101,42,77,97,116,104,46,115,105,110,40,114,41,44,99,61,116,43,97,44,102,61,110,43,117,44,115,61,49,94,111,44,108,61,111,63,114,45,105,58,105,45,114,59,105,102,40,101,60,48,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,110,101,103,97,116,105,118,101,32,114,97,100,105,117,115,58,32,34,43,101,41,59,110,117,108,108,61,61,61,116,104,105,115,46,95,120,49,63,116,104,105,115,46,95,43,61,34,77,34,43,99,43,34,44,34,43,102,58,40,77,97,116,104,46,97,98,115,40,116,104,105,115,46,95,120,49,45,99,41,62,49,101,45,54,124,124,77,97,116,104,46,97,98,115,40,116,104,105,115,46,95,121,49,45,102,41,62,49,101,45,54,41,38,38,40,116,104,105,115,46,95,43,61,34,76,34,43,99,43,34,44,34,43,102,41,44,101,38,38,40,108,60,48,38,38,40,108,61,108,37,75,105,43,75,105,41,44,108,62,74,105,63,116,104,105,115,46,95,43,61,34,65,34,43,101,43,34,44,34,43,101,43,34,44,48,44,49,44,34,43,115,43,34,44,34,43,40,116,45,97,41,43,34,44,34,43,40,110,45,117,41,43,34,65,34,43,101,43,34,44,34,43,101,43,34,44,48,44,49,44,34,43,115,43,34,44,34,43,40,116,104,105,115,46,95,120,49,61,99,41,43,34,44,34,43,40,116,104,105,115,46,95,121,49,61,102,41,58,108,62,49,101,45,54,38,38,40,116,104,105,115,46,95,43,61,34,65,34,43,101,43,34,44,34,43,101,43,34,44,48,44,34,43,32,43,40,108,62,61,81,105,41,43,34,44,34,43,115,43,34,44,34,43,40,116,104,105,115,46,95,120,49,61,116,43,101,42,77,97,116,104,46,99,111,115,40,105,41,41,43,34,44,34,43,40,116,104,105,115,46,95,121,49,61,110,43,101,42,77,97,116,104,46,115,105,110,40,105,41,41,41,41,125,44,114,101,99,116,58,102,117,110,99,116,105,111,110,40,116,44,110,44,101,44,114,41,123,116,104,105,115,46,95,43,61,34,77,34,43,40,116,104,105,115,46,95,120,48,61,116,104,105,115,46,95,120,49,61,43,116,41,43,34,44,34,43,40,116,104,105,115,46,95,121,48,61,116,104,105,115,46,95,121,49,61,43,110,41,43,34,104,34,43,32,43,101,43,34,118,34,43,32,43,114,43,34,104,34,43,45,101,43,34,90,34,125,44,116,111,83,116,114,105,110,103,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,125,125,59,102,117,110,99,116,105,111,110,32,117,111,40,41,123,125,102,117,110,99,116,105,111,110,32,99,111,40,116,44,110,41,123,118,97,114,32,101,61,110,101,119,32,117,111,59,105,102,40,116,32,105,110,115,116,97,110,99,101,111,102,32,117,111,41,116,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,116,44,110,41,123,101,46,115,101,116,40,110,44,116,41,125,41,59,101,108,115,101,32,105,102,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,116,41,41,123,118,97,114,32,114,44,105,61,45,49,44,111,61,116,46,108,101,110,103,116,104,59,105,102,40,110,117,108,108,61,61,110,41,102,111,114,40,59,43,43,105,60,111,59,41,101,46,115,101,116,40,105,44,116,91,105,93,41,59,101,108,115,101,32,102,111,114,40,59,43,43,105,60,111,59,41,101,46,115,101,116,40,110,40,114,61,116,91,105,93,44,105,44,116,41,44,114,41,125,101,108,115,101,32,105,102,40,116,41,102,111,114,40,118,97,114,32,97,32,105,110,32,116,41,101,46,115,101,116,40,97,44,116,91,97,93,41,59,114,101,116,117,114,110,32,101,125,102,117,110,99,116,105,111,110,32,102,111,40,41,123,114,101,116,117,114,110,123,125,125,102,117,110,99,116,105,111,110,32,115,111,40,116,44,110,44,101,41,123,116,91,110,93,61,101,125,102,117,110,99,116,105,111,110,32,108,111,40,41,123,114,101,116,117,114,110,32,99,111,40,41,125,102,117,110,99,116,105,111,110,32,104,111,40,116,44,110,44,101,41,123,116,46,115,101,116,40,110,44,101,41,125,102,117,110,99,116,105,111,110,32,112,111,40,41,123,125,117,111,46,112,114,111,116,111,116,121,112,101,61,99,111,46,112,114,111,116,111,116,121,112,101,61,123,99,111,110,115,116,114,117,99,116,111,114,58,117,111,44,104,97,115,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,34,36,34,43,116,32,105,110,32,116,104,105,115,125,44,103,101,116,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,104,105,115,91,34,36,34,43,116,93,125,44,115,101,116,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,116,104,105,115,91,34,36,34,43,116,93,61,110,44,116,104,105,115,125,44,114,101,109,111,118,101,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,34,36,34,43,116,59,114,101,116,117,114,110,32,110,32,105,110,32,116,104,105,115,38,38,100,101,108,101,116,101,32,116,104,105,115,91,110,93,125,44,99,108,101,97,114,58,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,118,97,114,32,116,32,105,110,32,116,104,105,115,41,34,36,34,61,61,61,116,91,48,93,38,38,100,101,108,101,116,101,32,116,104,105,115,91,116,93,125,44,107,101,121,115,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,91,93,59,102,111,114,40,118,97,114,32,110,32,105,110,32,116,104,105,115,41,34,36,34,61,61,61,110,91,48,93,38,38,116,46,112,117,115,104,40,110,46,115,108,105,99,101,40,49,41,41,59,114,101,116,117,114,110,32,116,125,44,118,97,108,117,101,115,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,91,93,59,102,111,114,40,118,97,114,32,110,32,105,110,32,116,104,105,115,41,34,36,34,61,61,61,110,91,48,93,38,38,116,46,112,117,115,104,40,116,104,105,115,91,110,93,41,59,114,101,116,117,114,110,32,116,125,44,101,110,116,114,105,101,115,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,91,93,59,102,111,114,40,118,97,114,32,110,32,105,110,32,116,104,105,115,41,34,36,34,61,61,61,110,91,48,93,38,38,116,46,112,117,115,104,40,123,107,101,121,58,110,46,115,108,105,99,101,40,49,41,44,118,97,108,117,101,58,116,104,105,115,91,110,93,125,41,59,114,101,116,117,114,110,32,116,125,44,115,105,122,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,48,59,102,111,114,40,118,97,114,32,110,32,105,110,32,116,104,105,115,41,34,36,34,61,61,61,110,91,48,93,38,38,43,43,116,59,114,101,116,117,114,110,32,116,125,44,101,109,112,116,121,58,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,118,97,114,32,116,32,105,110,32,116,104,105,115,41,105,102,40,34,36,34,61,61,61,116,91,48,93,41,114,101,116,117,114,110,33,49,59,114,101,116,117,114,110,33,48,125,44,101,97,99,104,58,102,117,110,99,116,105,111,110,40,116,41,123,102,111,114,40,118,97,114,32,110,32,105,110,32,116,104,105,115,41,34,36,34,61,61,61,110,91,48,93,38,38,116,40,116,104,105,115,91,110,93,44,110,46,115,108,105,99,101,40,49,41,44,116,104,105,115,41,125,125,59,118,97,114,32,118,111,61,99,111,46,112,114,111,116,111,116,121,112,101,59,102,117,110,99,116,105,111,110,32,103,111,40,116,44,110,41,123,118,97,114,32,101,61,110,101,119,32,112,111,59,105,102,40,116,32,105,110,115,116,97,110,99,101,111,102,32,112,111,41,116,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,116,41,123,101,46,97,100,100,40,116,41,125,41,59,101,108,115,101,32,105,102,40,116,41,123,118,97,114,32,114,61,45,49,44,105,61,116,46,108,101,110,103,116,104,59,105,102,40,110,117,108,108,61,61,110,41,102,111,114,40,59,43,43,114,60,105,59,41,101,46,97,100,100,40,116,91,114,93,41,59,101,108,115,101,32,102,111,114,40,59,43,43,114,60,105,59,41,101,46,97,100,100,40,110,40,116,91,114,93,44,114,44,116,41,41,125,114,101,116,117,114,110,32,101,125,112,111,46,112,114,111,116,111,116,121,112,101,61,103,111,46,112,114,111,116,111,116,121,112,101,61,123,99,111,110,115,116,114,117,99,116,111,114,58,112,111,44,104,97,115,58,118,111,46,104,97,115,44,97,100,100,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,104,105,115,91,34,36,34,43,40,116,43,61,34,34,41,93,61,116,44,116,104,105,115,125,44,114,101,109,111,118,101,58,118,111,46,114,101,109,111,118,101,44,99,108,101,97,114,58,118,111,46,99,108,101,97,114,44,118,97,108,117,101,115,58,118,111,46,107,101,121,115,44,115,105,122,101,58,118,111,46,115,105,122,101,44,101,109,112,116,121,58,118,111,46,101,109,112,116,121,44,101,97,99,104,58,118,111,46,101,97,99,104,125,59,118,97,114,32,121,111,61,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,115,108,105,99,101,59,102,117,110,99,116,105,111,110,32,95,111,40,116,44,110,41,123,114,101,116,117,114,110,32,116,45,110,125,102,117,110,99,116,105,111,110,32,98,111,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,125,125,102,117,110,99,116,105,111,110,32,109,111,40,116,44,110,41,123,102,111,114,40,118,97,114,32,101,44,114,61,45,49,44,105,61,110,46,108,101,110,103,116,104,59,43,43,114,60,105,59,41,105,102,40,101,61,120,111,40,116,44,110,91,114,93,41,41,114,101,116,117,114,110,32,101,59,114,101,116,117,114,110,32,48,125,102,117,110,99,116,105,111,110,32,120,111,40,116,44,110,41,123,102,111,114,40,118,97,114,32,101,61,110,91,48,93,44,114,61,110,91,49,93,44,105,61,45,49,44,111,61,48,44,97,61,116,46,108,101,110,103,116,104,44,117,61,97,45,49,59,111,60,97,59,117,61,111,43,43,41,123,118,97,114,32,99,61,116,91,111,93,44,102,61,99,91,48,93,44,115,61,99,91,49,93,44,108,61,116,91,117,93,44,104,61,108,91,48,93,44,100,61,108,91,49,93,59,105,102,40,119,111,40,99,44,108,44,110,41,41,114,101,116,117,114,110,32,48,59,115,62,114,33,61,100,62,114,38,38,101,60,40,104,45,102,41,42,40,114,45,115,41,47,40,100,45,115,41,43,102,38,38,40,105,61,45,105,41,125,114,101,116,117,114,110,32,105,125,102,117,110,99,116,105,111,110,32,119,111,40,116,44,110,44,101,41,123,118,97,114,32,114,44,105,44,111,44,97,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,44,110,44,101,41,123,114,101,116,117,114,110,40,110,91,48,93,45,116,91,48,93,41,42,40,101,91,49,93,45,116,91,49,93,41,61,61,40,101,91,48,93,45,116,91,48,93,41,42,40,110,91,49,93,45,116,91,49,93,41,125,40,116,44,110,44,101,41,38,38,40,105,61,116,91,114,61,43,40,116,91,48,93,61,61,61,110,91,48,93,41,93,44,111,61,101,91,114,93,44,97,61,110,91,114,93,44,105,60,61,111,38,38,111,60,61,97,124,124,97,60,61,111,38,38,111,60,61,105,41,125,102,117,110,99,116,105,111,110,32,77,111,40,41,123,125,118,97,114,32,78,111,61,91,91,93,44,91,91,91,49,44,49,46,53,93,44,91,46,53,44,49,93,93,93,44,91,91,91,49,46,53,44,49,93,44,91,49,44,49,46,53,93,93,93,44,91,91,91,49,46,53,44,49,93,44,91,46,53,44,49,93,93,93,44,91,91,91,49,44,46,53,93,44,91,49,46,53,44,49,93,93,93,44,91,91,91,49,44,49,46,53,93,44,91,46,53,44,49,93,93,44,91,91,49,44,46,53,93,44,91,49,46,53,44,49,93,93,93,44,91,91,91,49,44,46,53,93,44,91,49,44,49,46,53,93,93,93,44,91,91,91,49,44,46,53,93,44,91,46,53,44,49,93,93,93,44,91,91,91,46,53,44,49,93,44,91,49,44,46,53,93,93,93,44,91,91,91,49,44,49,46,53,93,44,91,49,44,46,53,93,93,93,44,91,91,91,46,53,44,49,93,44,91,49,44,46,53,93,93,44,91,91,49,46,53,44,49,93,44,91,49,44,49,46,53,93,93,93,44,91,91,91,49,46,53,44,49,93,44,91,49,44,46,53,93,93,93,44,91,91,91,46,53,44,49,93,44,91,49,46,53,44,49,93,93,93,44,91,91,91,49,44,49,46,53,93,44,91,49,46,53,44,49,93,93,93,44,91,91,91,46,53,44,49,93,44,91,49,44,49,46,53,93,93,93,44,91,93,93,59,102,117,110,99,116,105,111,110,32,84,111,40,41,123,118,97,114,32,116,61,49,44,110,61,49,44,101,61,77,44,114,61,117,59,102,117,110,99,116,105,111,110,32,105,40,116,41,123,118,97,114,32,110,61,101,40,116,41,59,105,102,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,110,41,41,110,61,110,46,115,108,105,99,101,40,41,46,115,111,114,116,40,95,111,41,59,101,108,115,101,123,118,97,114,32,114,61,115,40,116,41,44,105,61,114,91,48,93,44,97,61,114,91,49,93,59,110,61,119,40,105,44,97,44,110,41,44,110,61,103,40,77,97,116,104,46,102,108,111,111,114,40,105,47,110,41,42,110,44,77,97,116,104,46,102,108,111,111,114,40,97,47,110,41,42,110,44,110,41,125,114,101,116,117,114,110,32,110,46,109,97,112,40,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,111,40,116,44,110,41,125,41,125,102,117,110,99,116,105,111,110,32,111,40,101,44,105,41,123,118,97,114,32,111,61,91,93,44,117,61,91,93,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,101,44,114,44,105,41,123,118,97,114,32,111,44,117,44,99,44,102,44,115,44,108,44,104,61,110,101,119,32,65,114,114,97,121,44,100,61,110,101,119,32,65,114,114,97,121,59,111,61,117,61,45,49,44,102,61,101,91,48,93,62,61,114,44,78,111,91,102,60,60,49,93,46,102,111,114,69,97,99,104,40,112,41,59,102,111,114,40,59,43,43,111,60,116,45,49,59,41,99,61,102,44,102,61,101,91,111,43,49,93,62,61,114,44,78,111,91,99,124,102,60,60,49,93,46,102,111,114,69,97,99,104,40,112,41,59,78,111,91,102,60,60,48,93,46,102,111,114,69,97,99,104,40,112,41,59,102,111,114,40,59,43,43,117,60,110,45,49,59,41,123,102,111,114,40,111,61,45,49,44,102,61,101,91,117,42,116,43,116,93,62,61,114,44,115,61,101,91,117,42,116,93,62,61,114,44,78,111,91,102,60,60,49,124,115,60,60,50,93,46,102,111,114,69,97,99,104,40,112,41,59,43,43,111,60,116,45,49,59,41,99,61,102,44,102,61,101,91,117,42,116,43,116,43,111,43,49,93,62,61,114,44,108,61,115,44,115,61,101,91,117,42,116,43,111,43,49,93,62,61,114,44,78,111,91,99,124,102,60,60,49,124,115,60,60,50,124,108,60,60,51,93,46,102,111,114,69,97,99,104,40,112,41,59,78,111,91,102,124,115,60,60,51,93,46,102,111,114,69,97,99,104,40,112,41,125,111,61,45,49,44,115,61,101,91,117,42,116,93,62,61,114,44,78,111,91,115,60,60,50,93,46,102,111,114,69,97,99,104,40,112,41,59,102,111,114,40,59,43,43,111,60,116,45,49,59,41,108,61,115,44,115,61,101,91,117,42,116,43,111,43,49,93,62,61,114,44,78,111,91,115,60,60,50,124,108,60,60,51,93,46,102,111,114,69,97,99,104,40,112,41,59,102,117,110,99,116,105,111,110,32,112,40,116,41,123,118,97,114,32,110,44,101,44,114,61,91,116,91,48,93,91,48,93,43,111,44,116,91,48,93,91,49,93,43,117,93,44,99,61,91,116,91,49,93,91,48,93,43,111,44,116,91,49,93,91,49,93,43,117,93,44,102,61,97,40,114,41,44,115,61,97,40,99,41,59,40,110,61,100,91,102,93,41,63,40,101,61,104,91,115,93,41,63,40,100,101,108,101,116,101,32,100,91,110,46,101,110,100,93,44,100,101,108,101,116,101,32,104,91,101,46,115,116,97,114,116,93,44,110,61,61,61,101,63,40,110,46,114,105,110,103,46,112,117,115,104,40,99,41,44,105,40,110,46,114,105,110,103,41,41,58,104,91,110,46,115,116,97,114,116,93,61,100,91,101,46,101,110,100,93,61,123,115,116,97,114,116,58,110,46,115,116,97,114,116,44,101,110,100,58,101,46,101,110,100,44,114,105,110,103,58,110,46,114,105,110,103,46,99,111,110,99,97,116,40,101,46,114,105,110,103,41,125,41,58,40,100,101,108,101,116,101,32,100,91,110,46,101,110,100,93,44,110,46,114,105,110,103,46,112,117,115,104,40,99,41,44,100,91,110,46,101,110,100,61,115,93,61,110,41,58,40,110,61,104,91,115,93,41,63,40,101,61,100,91,102,93,41,63,40,100,101,108,101,116,101,32,104,91,110,46,115,116,97,114,116,93,44,100,101,108,101,116,101,32,100,91,101,46,101,110,100,93,44,110,61,61,61,101,63,40,110,46,114,105,110,103,46,112,117,115,104,40,99,41,44,105,40,110,46,114,105,110,103,41,41,58,104,91,101,46,115,116,97,114,116,93,61,100,91,110,46,101,110,100,93,61,123,115,116,97,114,116,58,101,46,115,116,97,114,116,44,101,110,100,58,110,46,101,110,100,44,114,105,110,103,58,101,46,114,105,110,103,46,99,111,110,99,97,116,40,110,46,114,105,110,103,41,125,41,58,40,100,101,108,101,116,101,32,104,91,110,46,115,116,97,114,116,93,44,110,46,114,105,110,103,46,117,110,115,104,105,102,116,40,114,41,44,104,91,110,46,115,116,97,114,116,61,102,93,61,110,41,58,104,91,102,93,61,100,91,115,93,61,123,115,116,97,114,116,58,102,44,101,110,100,58,115,44,114,105,110,103,58,91,114,44,99,93,125,125,78,111,91,115,60,60,51,93,46,102,111,114,69,97,99,104,40,112,41,125,40,101,44,105,44,102,117,110,99,116,105,111,110,40,116,41,123,114,40,116,44,101,44,105,41,44,102,117,110,99,116,105,111,110,40,116,41,123,102,111,114,40,118,97,114,32,110,61,48,44,101,61,116,46,108,101,110,103,116,104,44,114,61,116,91,101,45,49,93,91,49,93,42,116,91,48,93,91,48,93,45,116,91,101,45,49,93,91,48,93,42,116,91,48,93,91,49,93,59,43,43,110,60,101,59,41,114,43,61,116,91,110,45,49,93,91,49,93,42,116,91,110,93,91,48,93,45,116,91,110,45,49,93,91,48,93,42,116,91,110,93,91,49,93,59,114,101,116,117,114,110,32,114,125,40,116,41,62,48,63,111,46,112,117,115,104,40,91,116,93,41,58,117,46,112,117,115,104,40,116,41,125,41,44,117,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,116,41,123,102,111,114,40,118,97,114,32,110,44,101,61,48,44,114,61,111,46,108,101,110,103,116,104,59,101,60,114,59,43,43,101,41,105,102,40,45,49,33,61,61,109,111,40,40,110,61,111,91,101,93,41,91,48,93,44,116,41,41,114,101,116,117,114,110,32,118,111,105,100,32,110,46,112,117,115,104,40,116,41,125,41,44,123,116,121,112,101,58,34,77,117,108,116,105,80,111,108,121,103,111,110,34,44,118,97,108,117,101,58,105,44,99,111,111,114,100,105,110,97,116,101,115,58,111,125,125,102,117,110,99,116,105,111,110,32,97,40,110,41,123,114,101,116,117,114,110,32,50,42,110,91,48,93,43,110,91,49,93,42,40,116,43,49,41,42,52,125,102,117,110,99,116,105,111,110,32,117,40,101,44,114,44,105,41,123,101,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,111,44,97,61,101,91,48,93,44,117,61,101,91,49,93,44,99,61,48,124,97,44,102,61,48,124,117,44,115,61,114,91,102,42,116,43,99,93,59,97,62,48,38,38,97,60,116,38,38,99,61,61,61,97,38,38,40,111,61,114,91,102,42,116,43,99,45,49,93,44,101,91,48,93,61,97,43,40,105,45,111,41,47,40,115,45,111,41,45,46,53,41,44,117,62,48,38,38,117,60,110,38,38,102,61,61,61,117,38,38,40,111,61,114,91,40,102,45,49,41,42,116,43,99,93,44,101,91,49,93,61,117,43,40,105,45,111,41,47,40,115,45,111,41,45,46,53,41,125,41,125,114,101,116,117,114,110,32,105,46,99,111,110,116,111,117,114,61,111,44,105,46,115,105,122,101,61,102,117,110,99,116,105,111,110,40,101,41,123,105,102,40,33,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,114,101,116,117,114,110,91,116,44,110,93,59,118,97,114,32,114,61,77,97,116,104,46,99,101,105,108,40,101,91,48,93,41,44,111,61,77,97,116,104,46,99,101,105,108,40,101,91,49,93,41,59,105,102,40,33,40,114,62,48,38,38,111,62,48,41,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,105,110,118,97,108,105,100,32,115,105,122,101,34,41,59,114,101,116,117,114,110,32,116,61,114,44,110,61,111,44,105,125,44,105,46,116,104,114,101,115,104,111,108,100,115,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,101,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,65,114,114,97,121,46,105,115,65,114,114,97,121,40,116,41,63,98,111,40,121,111,46,99,97,108,108,40,116,41,41,58,98,111,40,116,41,44,105,41,58,101,125,44,105,46,115,109,111,111,116,104,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,114,61,116,63,117,58,77,111,44,105,41,58,114,61,61,61,117,125,44,105,125,102,117,110,99,116,105,111,110,32,65,111,40,116,44,110,44,101,41,123,102,111,114,40,118,97,114,32,114,61,116,46,119,105,100,116,104,44,105,61,116,46,104,101,105,103,104,116,44,111,61,49,43,40,101,60,60,49,41,44,97,61,48,59,97,60,105,59,43,43,97,41,102,111,114,40,118,97,114,32,117,61,48,44,99,61,48,59,117,60,114,43,101,59,43,43,117,41,117,60,114,38,38,40,99,43,61,116,46,100,97,116,97,91,117,43,97,42,114,93,41,44,117,62,61,101,38,38,40,117,62,61,111,38,38,40,99,45,61,116,46,100,97,116,97,91,117,45,111,43,97,42,114,93,41,44,110,46,100,97,116,97,91,117,45,101,43,97,42,114,93,61,99,47,77,97,116,104,46,109,105,110,40,117,43,49,44,114,45,49,43,111,45,117,44,111,41,41,125,102,117,110,99,116,105,111,110,32,83,111,40,116,44,110,44,101,41,123,102,111,114,40,118,97,114,32,114,61,116,46,119,105,100,116,104,44,105,61,116,46,104,101,105,103,104,116,44,111,61,49,43,40,101,60,60,49,41,44,97,61,48,59,97,60,114,59,43,43,97,41,102,111,114,40,118,97,114,32,117,61,48,44,99,61,48,59,117,60,105,43,101,59,43,43,117,41,117,60,105,38,38,40,99,43,61,116,46,100,97,116,97,91,97,43,117,42,114,93,41,44,117,62,61,101,38,38,40,117,62,61,111,38,38,40,99,45,61,116,46,100,97,116,97,91,97,43,40,117,45,111,41,42,114,93,41,44,110,46,100,97,116,97,91,97,43,40,117,45,101,41,42,114,93,61,99,47,77,97,116,104,46,109,105,110,40,117,43,49,44,105,45,49,43,111,45,117,44,111,41,41,125,102,117,110,99,116,105,111,110,32,107,111,40,116,41,123,114,101,116,117,114,110,32,116,91,48,93,125,102,117,110,99,116,105,111,110,32,69,111,40,116,41,123,114,101,116,117,114,110,32,116,91,49,93,125,102,117,110,99,116,105,111,110,32,67,111,40,41,123,114,101,116,117,114,110,32,49,125,118,97,114,32,80,111,61,123,125,44,122,111,61,123,125,44,82,111,61,51,52,44,68,111,61,49,48,44,113,111,61,49,51,59,102,117,110,99,116,105,111,110,32,76,111,40,116,41,123,114,101,116,117,114,110,32,110,101,119,32,70,117,110,99,116,105,111,110,40,34,100,34,44,34,114,101,116,117,114,110,32,123,34,43,116,46,109,97,112,40,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,74,83,79,78,46,115,116,114,105,110,103,105,102,121,40,116,41,43,34,58,32,100,91,34,43,110,43,39,93,32,124,124,32,34,34,39,125,41,46,106,111,105,110,40,34,44,34,41,43,34,125,34,41,125,102,117,110,99,116,105,111,110,32,85,111,40,116,41,123,118,97,114,32,110,61,79,98,106,101,99,116,46,99,114,101,97,116,101,40,110,117,108,108,41,44,101,61,91,93,59,114,101,116,117,114,110,32,116,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,116,41,123,102,111,114,40,118,97,114,32,114,32,105,110,32,116,41,114,32,105,110,32,110,124,124,101,46,112,117,115,104,40,110,91,114,93,61,114,41,125,41,44,101,125,102,117,110,99,116,105,111,110,32,79,111,40,116,44,110,41,123,118,97,114,32,101,61,116,43,34,34,44,114,61,101,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,114,60,110,63,110,101,119,32,65,114,114,97,121,40,110,45,114,43,49,41,46,106,111,105,110,40,48,41,43,101,58,101,125,102,117,110,99,116,105,111,110,32,66,111,40,116,41,123,118,97,114,32,110,61,116,46,103,101,116,85,84,67,72,111,117,114,115,40,41,44,101,61,116,46,103,101,116,85,84,67,77,105,110,117,116,101,115,40,41,44,114,61,116,46,103,101,116,85,84,67,83,101,99,111,110,100,115,40,41,44,105,61,116,46,103,101,116,85,84,67,77,105,108,108,105,115,101,99,111,110,100,115,40,41,59,114,101,116,117,114,110,32,105,115,78,97,78,40,116,41,63,34,73,110,118,97,108,105,100,32,68,97,116,101,34,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,60,48,63,34,45,34,43,79,111,40,45,116,44,54,41,58,116,62,57,57,57,57,63,34,43,34,43,79,111,40,116,44,54,41,58,79,111,40,116,44,52,41,125,40,116,46,103,101,116,85,84,67,70,117,108,108,89,101,97,114,40,41,41,43,34,45,34,43,79,111,40,116,46,103,101,116,85,84,67,77,111,110,116,104,40,41,43,49,44,50,41,43,34,45,34,43,79,111,40,116,46,103,101,116,85,84,67,68,97,116,101,40,41,44,50,41,43,40,105,63,34,84,34,43,79,111,40,110,44,50,41,43,34,58,34,43,79,111,40,101,44,50,41,43,34,58,34,43,79,111,40,114,44,50,41,43,34,46,34,43,79,111,40,105,44,51,41,43,34,90,34,58,114,63,34,84,34,43,79,111,40,110,44,50,41,43,34,58,34,43,79,111,40,101,44,50,41,43,34,58,34,43,79,111,40,114,44,50,41,43,34,90,34,58,101,124,124,110,63,34,84,34,43,79,111,40,110,44,50,41,43,34,58,34,43,79,111,40,101,44,50,41,43,34,90,34,58,34,34,41,125,102,117,110,99,116,105,111,110,32,70,111,40,116,41,123,118,97,114,32,110,61,110,101,119,32,82,101,103,69,120,112,40,39,91,34,39,43,116,43,34,92,110,92,114,93,34,41,44,101,61,116,46,99,104,97,114,67,111,100,101,65,116,40,48,41,59,102,117,110,99,116,105,111,110,32,114,40,116,44,110,41,123,118,97,114,32,114,44,105,61,91,93,44,111,61,116,46,108,101,110,103,116,104,44,97,61,48,44,117,61,48,44,99,61,111,60,61,48,44,102,61,33,49,59,102,117,110,99,116,105,111,110,32,115,40,41,123,105,102,40,99,41,114,101,116,117,114,110,32,122,111,59,105,102,40,102,41,114,101,116,117,114,110,32,102,61,33,49,44,80,111,59,118,97,114,32,110,44,114,44,105,61,97,59,105,102,40,116,46,99,104,97,114,67,111,100,101,65,116,40,105,41,61,61,61,82,111,41,123,102,111,114,40,59,97,43,43,60,111,38,38,116,46,99,104,97,114,67,111,100,101,65,116,40,97,41,33,61,61,82,111,124,124,116,46,99,104,97,114,67,111,100,101,65,116,40,43,43,97,41,61,61,61,82,111,59,41,59,114,101,116,117,114,110,40,110,61,97,41,62,61,111,63,99,61,33,48,58,40,114,61,116,46,99,104,97,114,67,111,100,101,65,116,40,97,43,43,41,41,61,61,61,68,111,63,102,61,33,48,58,114,61,61,61,113,111,38,38,40,102,61,33,48,44,116,46,99,104,97,114,67,111,100,101,65,116,40,97,41,61,61,61,68,111,38,38,43,43,97,41,44,116,46,115,108,105,99,101,40,105,43,49,44,110,45,49,41,46,114,101,112,108,97,99,101,40,47,34,34,47,103,44,39,34,39,41,125,102,111,114,40,59,97,60,111,59,41,123,105,102,40,40,114,61,116,46,99,104,97,114,67,111,100,101,65,116,40,110,61,97,43,43,41,41,61,61,61,68,111,41,102,61,33,48,59,101,108,115,101,32,105,102,40,114,61,61,61,113,111,41,102,61,33,48,44,116,46,99,104,97,114,67,111,100,101,65,116,40,97,41,61,61,61,68,111,38,38,43,43,97,59,101,108,115,101,32,105,102,40,114,33,61,61,101,41,99,111,110,116,105,110,117,101,59,114,101,116,117,114,110,32,116,46,115,108,105,99,101,40,105,44,110,41,125,114,101,116,117,114,110,32,99,61,33,48,44,116,46,115,108,105,99,101,40,105,44,111,41,125,102,111,114,40,116,46,99,104,97,114,67,111,100,101,65,116,40,111,45,49,41,61,61,61,68,111,38,38,45,45,111,44,116,46,99,104,97,114,67,111,100,101,65,116,40,111,45,49,41,61,61,61,113,111,38,38,45,45,111,59,40,114,61,115,40,41,41,33,61,61,122,111,59,41,123,102,111,114,40,118,97,114,32,108,61,91,93,59,114,33,61,61,80,111,38,38,114,33,61,61,122,111,59,41,108,46,112,117,115,104,40,114,41,44,114,61,115,40,41,59,110,38,38,110,117,108,108,61,61,40,108,61,110,40,108,44,117,43,43,41,41,124,124,105,46,112,117,115,104,40,108,41,125,114,101,116,117,114,110,32,105,125,102,117,110,99,116,105,111,110,32,105,40,110,44,101,41,123,114,101,116,117,114,110,32,110,46,109,97,112,40,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,101,46,109,97,112,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,40,110,91,116,93,41,125,41,46,106,111,105,110,40,116,41,125,41,125,102,117,110,99,116,105,111,110,32,111,40,110,41,123,114,101,116,117,114,110,32,110,46,109,97,112,40,97,41,46,106,111,105,110,40,116,41,125,102,117,110,99,116,105,111,110,32,97,40,116,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,116,63,34,34,58,116,32,105,110,115,116,97,110,99,101,111,102,32,68,97,116,101,63,66,111,40,116,41,58,110,46,116,101,115,116,40,116,43,61,34,34,41,63,39,34,39,43,116,46,114,101,112,108,97,99,101,40,47,34,47,103,44,39,34,34,39,41,43,39,34,39,58,116,125,114,101,116,117,114,110,123,112,97,114,115,101,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,44,105,44,111,61,114,40,116,44,102,117,110,99,116,105,111,110,40,116,44,114,41,123,105,102,40,101,41,114,101,116,117,114,110,32,101,40,116,44,114,45,49,41,59,105,61,116,44,101,61,110,63,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,61,76,111,40,116,41,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,114,44,105,41,123,114,101,116,117,114,110,32,110,40,101,40,114,41,44,105,44,116,41,125,125,40,116,44,110,41,58,76,111,40,116,41,125,41,59,114,101,116,117,114,110,32,111,46,99,111,108,117,109,110,115,61,105,124,124,91,93,44,111,125,44,112,97,114,115,101,82,111,119,115,58,114,44,102,111,114,109,97,116,58,102,117,110,99,116,105,111,110,40,110,44,101,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,101,38,38,40,101,61,85,111,40,110,41,41,44,91,101,46,109,97,112,40,97,41,46,106,111,105,110,40,116,41,93,46,99,111,110,99,97,116,40,105,40,110,44,101,41,41,46,106,111,105,110,40,34,92,110,34,41,125,44,102,111,114,109,97,116,66,111,100,121,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,110,38,38,40,110,61,85,111,40,116,41,41,44,105,40,116,44,110,41,46,106,111,105,110,40,34,92,110,34,41,125,44,102,111,114,109,97,116,82,111,119,115,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,109,97,112,40,111,41,46,106,111,105,110,40,34,92,110,34,41,125,44,102,111,114,109,97,116,82,111,119,58,111,44,102,111,114,109,97,116,86,97,108,117,101,58,97,125,125,118,97,114,32,89,111,61,70,111,40,34,44,34,41,44,73,111,61,89,111,46,112,97,114,115,101,44,72,111,61,89,111,46,112,97,114,115,101,82,111,119,115,44,106,111,61,89,111,46,102,111,114,109,97,116,44,88,111,61,89,111,46,102,111,114,109,97,116,66,111,100,121,44,86,111,61,89,111,46,102,111,114,109,97,116,82,111,119,115,44,71,111,61,89,111,46,102,111,114,109,97,116,82,111,119,44,36,111,61,89,111,46,102,111,114,109,97,116,86,97,108,117,101,44,87,111,61,70,111,40,34,92,116,34,41,44,90,111,61,87,111,46,112,97,114,115,101,44,81,111,61,87,111,46,112,97,114,115,101,82,111,119,115,44,75,111,61,87,111,46,102,111,114,109,97,116,44,74,111,61,87,111,46,102,111,114,109,97,116,66,111,100,121,44,116,97,61,87,111,46,102,111,114,109,97,116,82,111,119,115,44,110,97,61,87,111,46,102,111,114,109,97,116,82,111,119,44,101,97,61,87,111,46,102,111,114,109,97,116,86,97,108,117,101,59,118,97,114,32,114,97,61,110,101,119,32,68,97,116,101,40,34,50,48,49,57,45,48,49,45,48,49,84,48,48,58,48,48,34,41,46,103,101,116,72,111,117,114,115,40,41,124,124,110,101,119,32,68,97,116,101,40,34,50,48,49,57,45,48,55,45,48,49,84,48,48,58,48,48,34,41,46,103,101,116,72,111,117,114,115,40,41,59,102,117,110,99,116,105,111,110,32,105,97,40,116,41,123,105,102,40,33,116,46,111,107,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,116,46,115,116,97,116,117,115,43,34,32,34,43,116,46,115,116,97,116,117,115,84,101,120,116,41,59,114,101,116,117,114,110,32,116,46,98,108,111,98,40,41,125,102,117,110,99,116,105,111,110,32,111,97,40,116,41,123,105,102,40,33,116,46,111,107,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,116,46,115,116,97,116,117,115,43,34,32,34,43,116,46,115,116,97,116,117,115,84,101,120,116,41,59,114,101,116,117,114,110,32,116,46,97,114,114,97,121,66,117,102,102,101,114,40,41,125,102,117,110,99,116,105,111,110,32,97,97,40,116,41,123,105,102,40,33,116,46,111,107,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,116,46,115,116,97,116,117,115,43,34,32,34,43,116,46,115,116,97,116,117,115,84,101,120,116,41,59,114,101,116,117,114,110,32,116,46,116,101,120,116,40,41,125,102,117,110,99,116,105,111,110,32,117,97,40,116,44,110,41,123,114,101,116,117,114,110,32,102,101,116,99,104,40,116,44,110,41,46,116,104,101,110,40,97,97,41,125,102,117,110,99,116,105,111,110,32,99,97,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,110,44,101,44,114,41,123,114,101,116,117,114,110,32,50,61,61,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,38,38,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,101,38,38,40,114,61,101,44,101,61,118,111,105,100,32,48,41,44,117,97,40,110,44,101,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,40,110,44,114,41,125,41,125,125,118,97,114,32,102,97,61,99,97,40,73,111,41,44,115,97,61,99,97,40,90,111,41,59,102,117,110,99,116,105,111,110,32,108,97,40,116,41,123,105,102,40,33,116,46,111,107,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,116,46,115,116,97,116,117,115,43,34,32,34,43,116,46,115,116,97,116,117,115,84,101,120,116,41,59,114,101,116,117,114,110,32,116,46,106,115,111,110,40,41,125,102,117,110,99,116,105,111,110,32,104,97,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,110,44,101,41,123,114,101,116,117,114,110,32,117,97,40,110,44,101,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,40,110,101,119,32,68,79,77,80,97,114,115,101,114,41,46,112,97,114,115,101,70,114,111,109,83,116,114,105,110,103,40,110,44,116,41,125,41,125,125,118,97,114,32,100,97,61,104,97,40,34,97,112,112,108,105,99,97,116,105,111,110,47,120,109,108,34,41,44,112,97,61,104,97,40,34,116,101,120,116,47,104,116,109,108,34,41,44,118,97,61,104,97,40,34,105,109,97,103,101,47,115,118,103,43,120,109,108,34,41,59,102,117,110,99,116,105,111,110,32,103,97,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,125,125,102,117,110,99,116,105,111,110,32,121,97,40,41,123,114,101,116,117,114,110,32,49,101,45,54,42,40,77,97,116,104,46,114,97,110,100,111,109,40,41,45,46,53,41,125,102,117,110,99,116,105,111,110,32,95,97,40,116,44,110,44,101,44,114,41,123,105,102,40,105,115,78,97,78,40,110,41,124,124,105,115,78,97,78,40,101,41,41,114,101,116,117,114,110,32,116,59,118,97,114,32,105,44,111,44,97,44,117,44,99,44,102,44,115,44,108,44,104,44,100,61,116,46,95,114,111,111,116,44,112,61,123,100,97,116,97,58,114,125,44,118,61,116,46,95,120,48,44,103,61,116,46,95,121,48,44,121,61,116,46,95,120,49,44,95,61,116,46,95,121,49,59,105,102,40,33,100,41,114,101,116,117,114,110,32,116,46,95,114,111,111,116,61,112,44,116,59,102,111,114,40,59,100,46,108,101,110,103,116,104,59,41,105,102,40,40,102,61,110,62,61,40,111,61,40,118,43,121,41,47,50,41,41,63,118,61,111,58,121,61,111,44,40,115,61,101,62,61,40,97,61,40,103,43,95,41,47,50,41,41,63,103,61,97,58,95,61,97,44,105,61,100,44,33,40,100,61,100,91,108,61,115,60,60,49,124,102,93,41,41,114,101,116,117,114,110,32,105,91,108,93,61,112,44,116,59,105,102,40,117,61,43,116,46,95,120,46,99,97,108,108,40,110,117,108,108,44,100,46,100,97,116,97,41,44,99,61,43,116,46,95,121,46,99,97,108,108,40,110,117,108,108,44,100,46,100,97,116,97,41,44,110,61,61,61,117,38,38,101,61,61,61,99,41,114,101,116,117,114,110,32,112,46,110,101,120,116,61,100,44,105,63,105,91,108,93,61,112,58,116,46,95,114,111,111,116,61,112,44,116,59,100,111,123,105,61,105,63,105,91,108,93,61,110,101,119,32,65,114,114,97,121,40,52,41,58,116,46,95,114,111,111,116,61,110,101,119,32,65,114,114,97,121,40,52,41,44,40,102,61,110,62,61,40,111,61,40,118,43,121,41,47,50,41,41,63,118,61,111,58,121,61,111,44,40,115,61,101,62,61,40,97,61,40,103,43,95,41,47,50,41,41,63,103,61,97,58,95,61,97,125,119,104,105,108,101,40,40,108,61,115,60,60,49,124,102,41,61,61,40,104,61,40,99,62,61,97,41,60,60,49,124,117,62,61,111,41,41,59,114,101,116,117,114,110,32,105,91,104,93,61,100,44,105,91,108,93,61,112,44,116,125,102,117,110,99,116,105,111,110,32,98,97,40,116,44,110,44,101,44,114,44,105,41,123,116,104,105,115,46,110,111,100,101,61,116,44,116,104,105,115,46,120,48,61,110,44,116,104,105,115,46,121,48,61,101,44,116,104,105,115,46,120,49,61,114,44,116,104,105,115,46,121,49,61,105,125,102,117,110,99,116,105,111,110,32,109,97,40,116,41,123,114,101,116,117,114,110,32,116,91,48,93,125,102,117,110,99,116,105,111,110,32,120,97,40,116,41,123,114,101,116,117,114,110,32,116,91,49,93,125,102,117,110,99,116,105,111,110,32,119,97,40,116,44,110,44,101,41,123,118,97,114,32,114,61,110,101,119,32,77,97,40,110,117,108,108,61,61,110,63,109,97,58,110,44,110,117,108,108,61,61,101,63,120,97,58,101,44,78,97,78,44,78,97,78,44,78,97,78,44,78,97,78,41,59,114,101,116,117,114,110,32,110,117,108,108,61,61,116,63,114,58,114,46,97,100,100,65,108,108,40,116,41,125,102,117,110,99,116,105,111,110,32,77,97,40,116,44,110,44,101,44,114,44,105,44,111,41,123,116,104,105,115,46,95,120,61,116,44,116,104,105,115,46,95,121,61,110,44,116,104,105,115,46,95,120,48,61,101,44,116,104,105,115,46,95,121,48,61,114,44,116,104,105,115,46,95,120,49,61,105,44,116,104,105,115,46,95,121,49,61,111,44,116,104,105,115,46,95,114,111,111,116,61,118,111,105,100,32,48,125,102,117,110,99,116,105,111,110,32,78,97,40,116,41,123,102,111,114,40,118,97,114,32,110,61,123,100,97,116,97,58,116,46,100,97,116,97,125,44,101,61,110,59,116,61,116,46,110,101,120,116,59,41,101,61,101,46,110,101,120,116,61,123,100,97,116,97,58,116,46,100,97,116,97,125,59,114,101,116,117,114,110,32,110,125,118,97,114,32,84,97,61,119,97,46,112,114,111,116,111,116,121,112,101,61,77,97,46,112,114,111,116,111,116,121,112,101,59,102,117,110,99,116,105,111,110,32,65,97,40,116,41,123,114,101,116,117,114,110,32,116,46,120,43,116,46,118,120,125,102,117,110,99,116,105,111,110,32,83,97,40,116,41,123,114,101,116,117,114,110,32,116,46,121,43,116,46,118,121,125,102,117,110,99,116,105,111,110,32,107,97,40,116,41,123,114,101,116,117,114,110,32,116,46,105,110,100,101,120,125,102,117,110,99,116,105,111,110,32,69,97,40,116,44,110,41,123,118,97,114,32,101,61,116,46,103,101,116,40,110,41,59,105,102,40,33,101,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,109,105,115,115,105,110,103,58,32,34,43,110,41,59,114,101,116,117,114,110,32,101,125,102,117,110,99,116,105,111,110,32,67,97,40,116,41,123,114,101,116,117,114,110,32,116,46,120,125,102,117,110,99,116,105,111,110,32,80,97,40,116,41,123,114,101,116,117,114,110,32,116,46,121,125,84,97,46,99,111,112,121,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,44,110,44,101,61,110,101,119,32,77,97,40,116,104,105,115,46,95,120,44,116,104,105,115,46,95,121,44,116,104,105,115,46,95,120,48,44,116,104,105,115,46,95,121,48,44,116,104,105,115,46,95,120,49,44,116,104,105,115,46,95,121,49,41,44,114,61,116,104,105,115,46,95,114,111,111,116,59,105,102,40,33,114,41,114,101,116,117,114,110,32,101,59,105,102,40,33,114,46,108,101,110,103,116,104,41,114,101,116,117,114,110,32,101,46,95,114,111,111,116,61,78,97,40,114,41,44,101,59,102,111,114,40,116,61,91,123,115,111,117,114,99,101,58,114,44,116,97,114,103,101,116,58,101,46,95,114,111,111,116,61,110,101,119,32,65,114,114,97,121,40,52,41,125,93,59,114,61,116,46,112,111,112,40,41,59,41,102,111,114,40,118,97,114,32,105,61,48,59,105,60,52,59,43,43,105,41,40,110,61,114,46,115,111,117,114,99,101,91,105,93,41,38,38,40,110,46,108,101,110,103,116,104,63,116,46,112,117,115,104,40,123,115,111,117,114,99,101,58,110,44,116,97,114,103,101,116,58,114,46,116,97,114,103,101,116,91,105,93,61,110,101,119,32,65,114,114,97,121,40,52,41,125,41,58,114,46,116,97,114,103,101,116,91,105,93,61,78,97,40,110,41,41,59,114,101,116,117,114,110,32,101,125,44,84,97,46,97,100,100,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,43,116,104,105,115,46,95,120,46,99,97,108,108,40,110,117,108,108,44,116,41,44,101,61,43,116,104,105,115,46,95,121,46,99,97,108,108,40,110,117,108,108,44,116,41,59,114,101,116,117,114,110,32,95,97,40,116,104,105,115,46,99,111,118,101,114,40,110,44,101,41,44,110,44,101,44,116,41,125,44,84,97,46,97,100,100,65,108,108,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,44,101,44,114,44,105,44,111,61,116,46,108,101,110,103,116,104,44,97,61,110,101,119,32,65,114,114,97,121,40,111,41,44,117,61,110,101,119,32,65,114,114,97,121,40,111,41,44,99,61,49,47,48,44,102,61,49,47,48,44,115,61,45,49,47,48,44,108,61,45,49,47,48,59,102,111,114,40,101,61,48,59,101,60,111,59,43,43,101,41,105,115,78,97,78,40,114,61,43,116,104,105,115,46,95,120,46,99,97,108,108,40,110,117,108,108,44,110,61,116,91,101,93,41,41,124,124,105,115,78,97,78,40,105,61,43,116,104,105,115,46,95,121,46,99,97,108,108,40,110,117,108,108,44,110,41,41,124,124,40,97,91,101,93,61,114,44,117,91,101,93,61,105,44,114,60,99,38,38,40,99,61,114,41,44,114,62,115,38,38,40,115,61,114,41,44,105,60,102,38,38,40,102,61,105,41,44,105,62,108,38,38,40,108,61,105,41,41,59,105,102,40,99,62,115,124,124,102,62,108,41,114,101,116,117,114,110,32,116,104,105,115,59,102,111,114,40,116,104,105,115,46,99,111,118,101,114,40,99,44,102,41,46,99,111,118,101,114,40,115,44,108,41,44,101,61,48,59,101,60,111,59,43,43,101,41,95,97,40,116,104,105,115,44,97,91,101,93,44,117,91,101,93,44,116,91,101,93,41,59,114,101,116,117,114,110,32,116,104,105,115,125,44,84,97,46,99,111,118,101,114,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,105,102,40,105,115,78,97,78,40,116,61,43,116,41,124,124,105,115,78,97,78,40,110,61,43,110,41,41,114,101,116,117,114,110,32,116,104,105,115,59,118,97,114,32,101,61,116,104,105,115,46,95,120,48,44,114,61,116,104,105,115,46,95,121,48,44,105,61,116,104,105,115,46,95,120,49,44,111,61,116,104,105,115,46,95,121,49,59,105,102,40,105,115,78,97,78,40,101,41,41,105,61,40,101,61,77,97,116,104,46,102,108,111,111,114,40,116,41,41,43,49,44,111,61,40,114,61,77,97,116,104,46,102,108,111,111,114,40,110,41,41,43,49,59,101,108,115,101,123,102,111,114,40,118,97,114,32,97,44,117,44,99,61,105,45,101,44,102,61,116,104,105,115,46,95,114,111,111,116,59,101,62,116,124,124,116,62,61,105,124,124,114,62,110,124,124,110,62,61,111,59,41,115,119,105,116,99,104,40,117,61,40,110,60,114,41,60,60,49,124,116,60,101,44,40,97,61,110,101,119,32,65,114,114,97,121,40,52,41,41,91,117,93,61,102,44,102,61,97,44,99,42,61,50,44,117,41,123,99,97,115,101,32,48,58,105,61,101,43,99,44,111,61,114,43,99,59,98,114,101,97,107,59,99,97,115,101,32,49,58,101,61,105,45,99,44,111,61,114,43,99,59,98,114,101,97,107,59,99,97,115,101,32,50,58,105,61,101,43,99,44,114,61,111,45,99,59,98,114,101,97,107,59,99,97,115,101,32,51,58,101,61,105,45,99,44,114,61,111,45,99,125,116,104,105,115,46,95,114,111,111,116,38,38,116,104,105,115,46,95,114,111,111,116,46,108,101,110,103,116,104,38,38,40,116,104,105,115,46,95,114,111,111,116,61,102,41,125,114,101,116,117,114,110,32,116,104,105,115,46,95,120,48,61,101,44,116,104,105,115,46,95,121,48,61,114,44,116,104,105,115,46,95,120,49,61,105,44,116,104,105,115,46,95,121,49,61,111,44,116,104,105,115,125,44,84,97,46,100,97,116,97,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,91,93,59,114,101,116,117,114,110,32,116,104,105,115,46,118,105,115,105,116,40,102,117,110,99,116,105,111,110,40,110,41,123,105,102,40,33,110,46,108,101,110,103,116,104,41,100,111,123,116,46,112,117,115,104,40,110,46,100,97,116,97,41,125,119,104,105,108,101,40,110,61,110,46,110,101,120,116,41,125,41,44,116,125,44,84,97,46,101,120,116,101,110,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,116,104,105,115,46,99,111,118,101,114,40,43,116,91,48,93,91,48,93,44,43,116,91,48,93,91,49,93,41,46,99,111,118,101,114,40,43,116,91,49,93,91,48,93,44,43,116,91,49,93,91,49,93,41,58,105,115,78,97,78,40,116,104,105,115,46,95,120,48,41,63,118,111,105,100,32,48,58,91,91,116,104,105,115,46,95,120,48,44,116,104,105,115,46,95,121,48,93,44,91,116,104,105,115,46,95,120,49,44,116,104,105,115,46,95,121,49,93,93,125,44,84,97,46,102,105,110,100,61,102,117,110,99,116,105,111,110,40,116,44,110,44,101,41,123,118,97,114,32,114,44,105,44,111,44,97,44,117,44,99,44,102,44,115,61,116,104,105,115,46,95,120,48,44,108,61,116,104,105,115,46,95,121,48,44,104,61,116,104,105,115,46,95,120,49,44,100,61,116,104,105,115,46,95,121,49,44,112,61,91,93,44,118,61,116,104,105,115,46,95,114,111,111,116,59,102,111,114,40,118,38,38,112,46,112,117,115,104,40,110,101,119,32,98,97,40,118,44,115,44,108,44,104,44,100,41,41,44,110,117,108,108,61,61,101,63,101,61,49,47,48,58,40,115,61,116,45,101,44,108,61,110,45,101,44,104,61,116,43,101,44,100,61,110,43,101,44,101,42,61,101,41,59,99,61,112,46,112,111,112,40,41,59,41,105,102,40,33,40,33,40,118,61,99,46,110,111,100,101,41,124,124,40,105,61,99,46,120,48,41,62,104,124,124,40,111,61,99,46,121,48,41,62,100,124,124,40,97,61,99,46,120,49,41,60,115,124,124,40,117,61,99,46,121,49,41,60,108,41,41,105,102,40,118,46,108,101,110,103,116,104,41,123,118,97,114,32,103,61,40,105,43,97,41,47,50,44,121,61,40,111,43,117,41,47,50,59,112,46,112,117,115,104,40,110,101,119,32,98,97,40,118,91,51,93,44,103,44,121,44,97,44,117,41,44,110,101,119,32,98,97,40,118,91,50,93,44,105,44,121,44,103,44,117,41,44,110,101,119,32,98,97,40,118,91,49,93,44,103,44,111,44,97,44,121,41,44,110,101,119,32,98,97,40,118,91,48,93,44,105,44,111,44,103,44,121,41,41,44,40,102,61,40,110,62,61,121,41,60,60,49,124,116,62,61,103,41,38,38,40,99,61,112,91,112,46,108,101,110,103,116,104,45,49,93,44,112,91,112,46,108,101,110,103,116,104,45,49,93,61,112,91,112,46,108,101,110,103,116,104,45,49,45,102,93,44,112,91,112,46,108,101,110,103,116,104,45,49,45,102,93,61,99,41,125,101,108,115,101,123,118,97,114,32,95,61,116,45,43,116,104,105,115,46,95,120,46,99,97,108,108,40,110,117,108,108,44,118,46,100,97,116,97,41,44,98,61,110,45,43,116,104,105,115,46,95,121,46,99,97,108,108,40,110,117,108,108,44,118,46,100,97,116,97,41,44,109,61,95,42,95,43,98,42,98,59,105,102,40,109,60,101,41,123,118,97,114,32,120,61,77,97,116,104,46,115,113,114,116,40,101,61,109,41,59,115,61,116,45,120,44,108,61,110,45,120,44,104,61,116,43,120,44,100,61,110,43,120,44,114,61,118,46,100,97,116,97,125,125,114,101,116,117,114,110,32,114,125,44,84,97,46,114,101,109,111,118,101,61,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,105,115,78,97,78,40,111,61,43,116,104,105,115,46,95,120,46,99,97,108,108,40,110,117,108,108,44,116,41,41,124,124,105,115,78,97,78,40,97,61,43,116,104,105,115,46,95,121,46,99,97,108,108,40,110,117,108,108,44,116,41,41,41,114,101,116,117,114,110,32,116,104,105,115,59,118,97,114,32,110,44,101,44,114,44,105,44,111,44,97,44,117,44,99,44,102,44,115,44,108,44,104,44,100,61,116,104,105,115,46,95,114,111,111,116,44,112,61,116,104,105,115,46,95,120,48,44,118,61,116,104,105,115,46,95,121,48,44,103,61,116,104,105,115,46,95,120,49,44,121,61,116,104,105,115,46,95,121,49,59,105,102,40,33,100,41,114,101,116,117,114,110,32,116,104,105,115,59,105,102,40,100,46,108,101,110,103,116,104,41,102,111,114,40,59,59,41,123,105,102,40,40,102,61,111,62,61,40,117,61,40,112,43,103,41,47,50,41,41,63,112,61,117,58,103,61,117,44,40,115,61,97,62,61,40,99,61,40,118,43,121,41,47,50,41,41,63,118,61,99,58,121,61,99,44,110,61,100,44,33,40,100,61,100,91,108,61,115,60,60,49,124,102,93,41,41,114,101,116,117,114,110,32,116,104,105,115,59,105,102,40,33,100,46,108,101,110,103,116,104,41,98,114,101,97,107,59,40,110,91,108,43,49,38,51,93,124,124,110,91,108,43,50,38,51,93,124,124,110,91,108,43,51,38,51,93,41,38,38,40,101,61,110,44,104,61,108,41,125,102,111,114,40,59,100,46,100,97,116,97,33,61,61,116,59,41,105,102,40,114,61,100,44,33,40,100,61,100,46,110,101,120,116,41,41,114,101,116,117,114,110,32,116,104,105,115,59,114,101,116,117,114,110,40,105,61,100,46,110,101,120,116,41,38,38,100,101,108,101,116,101,32,100,46,110,101,120,116,44,114,63,40,105,63,114,46,110,101,120,116,61,105,58,100,101,108,101,116,101,32,114,46,110,101,120,116,44,116,104,105,115,41,58,110,63,40,105,63,110,91,108,93,61,105,58,100,101,108,101,116,101,32,110,91,108,93,44,40,100,61,110,91,48,93,124,124,110,91,49,93,124,124,110,91,50,93,124,124,110,91,51,93,41,38,38,100,61,61,61,40,110,91,51,93,124,124,110,91,50,93,124,124,110,91,49,93,124,124,110,91,48,93,41,38,38,33,100,46,108,101,110,103,116,104,38,38,40,101,63,101,91,104,93,61,100,58,116,104,105,115,46,95,114,111,111,116,61,100,41,44,116,104,105,115,41,58,40,116,104,105,115,46,95,114,111,111,116,61,105,44,116,104,105,115,41,125,44,84,97,46,114,101,109,111,118,101,65,108,108,61,102,117,110,99,116,105,111,110,40,116,41,123,102,111,114,40,118,97,114,32,110,61,48,44,101,61,116,46,108,101,110,103,116,104,59,110,60,101,59,43,43,110,41,116,104,105,115,46,114,101,109,111,118,101,40,116,91,110,93,41,59,114,101,116,117,114,110,32,116,104,105,115,125,44,84,97,46,114,111,111,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,114,111,111,116,125,44,84,97,46,115,105,122,101,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,48,59,114,101,116,117,114,110,32,116,104,105,115,46,118,105,115,105,116,40,102,117,110,99,116,105,111,110,40,110,41,123,105,102,40,33,110,46,108,101,110,103,116,104,41,100,111,123,43,43,116,125,119,104,105,108,101,40,110,61,110,46,110,101,120,116,41,125,41,44,116,125,44,84,97,46,118,105,115,105,116,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,44,101,44,114,44,105,44,111,44,97,44,117,61,91,93,44,99,61,116,104,105,115,46,95,114,111,111,116,59,102,111,114,40,99,38,38,117,46,112,117,115,104,40,110,101,119,32,98,97,40,99,44,116,104,105,115,46,95,120,48,44,116,104,105,115,46,95,121,48,44,116,104,105,115,46,95,120,49,44,116,104,105,115,46,95,121,49,41,41,59,110,61,117,46,112,111,112,40,41,59,41,105,102,40,33,116,40,99,61,110,46,110,111,100,101,44,114,61,110,46,120,48,44,105,61,110,46,121,48,44,111,61,110,46,120,49,44,97,61,110,46,121,49,41,38,38,99,46,108,101,110,103,116,104,41,123,118,97,114,32,102,61,40,114,43,111,41,47,50,44,115,61,40,105,43,97,41,47,50,59,40,101,61,99,91,51,93,41,38,38,117,46,112,117,115,104,40,110,101,119,32,98,97,40,101,44,102,44,115,44,111,44,97,41,41,44,40,101,61,99,91,50,93,41,38,38,117,46,112,117,115,104,40,110,101,119,32,98,97,40,101,44,114,44,115,44,102,44,97,41,41,44,40,101,61,99,91,49,93,41,38,38,117,46,112,117,115,104,40,110,101,119,32,98,97,40,101,44,102,44,105,44,111,44,115,41,41,44,40,101,61,99,91,48,93,41,38,38,117,46,112,117,115,104,40,110,101,119,32,98,97,40,101,44,114,44,105,44,102,44,115,41,41,125,114,101,116,117,114,110,32,116,104,105,115,125,44,84,97,46,118,105,115,105,116,65,102,116,101,114,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,44,101,61,91,93,44,114,61,91,93,59,102,111,114,40,116,104,105,115,46,95,114,111,111,116,38,38,101,46,112,117,115,104,40,110,101,119,32,98,97,40,116,104,105,115,46,95,114,111,111,116,44,116,104,105,115,46,95,120,48,44,116,104,105,115,46,95,121,48,44,116,104,105,115,46,95,120,49,44,116,104,105,115,46,95,121,49,41,41,59,110,61,101,46,112,111,112,40,41,59,41,123,118,97,114,32,105,61,110,46,110,111,100,101,59,105,102,40,105,46,108,101,110,103,116,104,41,123,118,97,114,32,111,44,97,61,110,46,120,48,44,117,61,110,46,121,48,44,99,61,110,46,120,49,44,102,61,110,46,121,49,44,115,61,40,97,43,99,41,47,50,44,108,61,40,117,43,102,41,47,50,59,40,111,61,105,91,48,93,41,38,38,101,46,112,117,115,104,40,110,101,119,32,98,97,40,111,44,97,44,117,44,115,44,108,41,41,44,40,111,61,105,91,49,93,41,38,38,101,46,112,117,115,104,40,110,101,119,32,98,97,40,111,44,115,44,117,44,99,44,108,41,41,44,40,111,61,105,91,50,93,41,38,38,101,46,112,117,115,104,40,110,101,119,32,98,97,40,111,44,97,44,108,44,115,44,102,41,41,44,40,111,61,105,91,51,93,41,38,38,101,46,112,117,115,104,40,110,101,119,32,98,97,40,111,44,115,44,108,44,99,44,102,41,41,125,114,46,112,117,115,104,40,110,41,125,102,111,114,40,59,110,61,114,46,112,111,112,40,41,59,41,116,40,110,46,110,111,100,101,44,110,46,120,48,44,110,46,121,48,44,110,46,120,49,44,110,46,121,49,41,59,114,101,116,117,114,110,32,116,104,105,115,125,44,84,97,46,120,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,116,104,105,115,46,95,120,61,116,44,116,104,105,115,41,58,116,104,105,115,46,95,120,125,44,84,97,46,121,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,116,104,105,115,46,95,121,61,116,44,116,104,105,115,41,58,116,104,105,115,46,95,121,125,59,118,97,114,32,122,97,61,49,48,44,82,97,61,77,97,116,104,46,80,73,42,40,51,45,77,97,116,104,46,115,113,114,116,40,53,41,41,59,102,117,110,99,116,105,111,110,32,68,97,40,116,44,110,41,123,105,102,40,40,101,61,40,116,61,110,63,116,46,116,111,69,120,112,111,110,101,110,116,105,97,108,40,110,45,49,41,58,116,46,116,111,69,120,112,111,110,101,110,116,105,97,108,40,41,41,46,105,110,100,101,120,79,102,40,34,101,34,41,41,60,48,41,114,101,116,117,114,110,32,110,117,108,108,59,118,97,114,32,101,44,114,61,116,46,115,108,105,99,101,40,48,44,101,41,59,114,101,116,117,114,110,91,114,46,108,101,110,103,116,104,62,49,63,114,91,48,93,43,114,46,115,108,105,99,101,40,50,41,58,114,44,43,116,46,115,108,105,99,101,40,101,43,49,41,93,125,102,117,110,99,116,105,111,110,32,113,97,40,116,41,123,114,101,116,117,114,110,40,116,61,68,97,40,77,97,116,104,46,97,98,115,40,116,41,41,41,63,116,91,49,93,58,78,97,78,125,118,97,114,32,76,97,44,85,97,61,47,94,40,63,58,40,46,41,63,40,91,60,62,61,94,93,41,41,63,40,91,43,92,45,40,32,93,41,63,40,91,36,35,93,41,63,40,48,41,63,40,92,100,43,41,63,40,44,41,63,40,92,46,92,100,43,41,63,40,126,41,63,40,91,97,45,122,37,93,41,63,36,47,105,59,102,117,110,99,116,105,111,110,32,79,97,40,116,41,123,105,102,40,33,40,110,61,85,97,46,101,120,101,99,40,116,41,41,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,105,110,118,97,108,105,100,32,102,111,114,109,97,116,58,32,34,43,116,41,59,118,97,114,32,110,59,114,101,116,117,114,110,32,110,101,119,32,66,97,40,123,102,105,108,108,58,110,91,49,93,44,97,108,105,103,110,58,110,91,50,93,44,115,105,103,110,58,110,91,51,93,44,115,121,109,98,111,108,58,110,91,52,93,44,122,101,114,111,58,110,91,53,93,44,119,105,100,116,104,58,110,91,54,93,44,99,111,109,109,97,58,110,91,55,93,44,112,114,101,99,105,115,105,111,110,58,110,91,56,93,38,38,110,91,56,93,46,115,108,105,99,101,40,49,41,44,116,114,105,109,58,110,91,57,93,44,116,121,112,101,58,110,91,49,48,93,125,41,125,102,117,110,99,116,105,111,110,32,66,97,40,116,41,123,116,104,105,115,46,102,105,108,108,61,118,111,105,100,32,48,61,61,61,116,46,102,105,108,108,63,34,32,34,58,116,46,102,105,108,108,43,34,34,44,116,104,105,115,46,97,108,105,103,110,61,118,111,105,100,32,48,61,61,61,116,46,97,108,105,103,110,63,34,62,34,58,116,46,97,108,105,103,110,43,34,34,44,116,104,105,115,46,115,105,103,110,61,118,111,105,100,32,48,61,61,61,116,46,115,105,103,110,63,34,45,34,58,116,46,115,105,103,110,43,34,34,44,116,104,105,115,46,115,121,109,98,111,108,61,118,111,105,100,32,48,61,61,61,116,46,115,121,109,98,111,108,63,34,34,58,116,46,115,121,109,98,111,108,43,34,34,44,116,104,105,115,46,122,101,114,111,61,33,33,116,46,122,101,114,111,44,116,104,105,115,46,119,105,100,116,104,61,118,111,105,100,32,48,61,61,61,116,46,119,105,100,116,104,63,118,111,105,100,32,48,58,43,116,46,119,105,100,116,104,44,116,104,105,115,46,99,111,109,109,97,61,33,33,116,46,99,111,109,109,97,44,116,104,105,115,46,112,114,101,99,105,115,105,111,110,61,118,111,105,100,32,48,61,61,61,116,46,112,114,101,99,105,115,105,111,110,63,118,111,105,100,32,48,58,43,116,46,112,114,101,99,105,115,105,111,110,44,116,104,105,115,46,116,114,105,109,61,33,33,116,46,116,114,105,109,44,116,104,105,115,46,116,121,112,101,61,118,111,105,100,32,48,61,61,61,116,46,116,121,112,101,63,34,34,58,116,46,116,121,112,101,43,34,34,125,102,117,110,99,116,105,111,110,32,70,97,40,116,44,110,41,123,118,97,114,32,101,61,68,97,40,116,44,110,41,59,105,102,40,33,101,41,114,101,116,117,114,110,32,116,43,34,34,59,118,97,114,32,114,61,101,91,48,93,44,105,61,101,91,49,93,59,114,101,116,117,114,110,32,105,60,48,63,34,48,46,34,43,110,101,119,32,65,114,114,97,121,40,45,105,41,46,106,111,105,110,40,34,48,34,41,43,114,58,114,46,108,101,110,103,116,104,62,105,43,49,63,114,46,115,108,105,99,101,40,48,44,105,43,49,41,43,34,46,34,43,114,46,115,108,105,99,101,40,105,43,49,41,58,114,43,110,101,119,32,65,114,114,97,121,40,105,45,114,46,108,101,110,103,116,104,43,50,41,46,106,111,105,110,40,34,48,34,41,125,79,97,46,112,114,111,116,111,116,121,112,101,61,66,97,46,112,114,111,116,111,116,121,112,101,44,66,97,46,112,114,111,116,111,116,121,112,101,46,116,111,83,116,114,105,110,103,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,102,105,108,108,43,116,104,105,115,46,97,108,105,103,110,43,116,104,105,115,46,115,105,103,110,43,116,104,105,115,46,115,121,109,98,111,108,43,40,116,104,105,115,46,122,101,114,111,63,34,48,34,58,34,34,41,43,40,118,111,105,100,32,48,61,61,61,116,104,105,115,46,119,105,100,116,104,63,34,34,58,77,97,116,104,46,109,97,120,40,49,44,48,124,116,104,105,115,46,119,105,100,116,104,41,41,43,40,116,104,105,115,46,99,111,109,109,97,63,34,44,34,58,34,34,41,43,40,118,111,105,100,32,48,61,61,61,116,104,105,115,46,112,114,101,99,105,115,105,111,110,63,34,34,58,34,46,34,43,77,97,116,104,46,109,97,120,40,48,44,48,124,116,104,105,115,46,112,114,101,99,105,115,105,111,110,41,41,43,40,116,104,105,115,46,116,114,105,109,63,34,126,34,58,34,34,41,43,116,104,105,115,46,116,121,112,101,125,59,118,97,114,32,89,97,61,123,34,37,34,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,40,49,48,48,42,116,41,46,116,111,70,105,120,101,100,40,110,41,125,44,98,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,77,97,116,104,46,114,111,117,110,100,40,116,41,46,116,111,83,116,114,105,110,103,40,50,41,125,44,99,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,43,34,34,125,44,100,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,77,97,116,104,46,114,111,117,110,100,40,116,41,46,116,111,83,116,114,105,110,103,40,49,48,41,125,44,101,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,116,46,116,111,69,120,112,111,110,101,110,116,105,97,108,40,110,41,125,44,102,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,116,46,116,111,70,105,120,101,100,40,110,41,125,44,103,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,116,46,116,111,80,114,101,99,105,115,105,111,110,40,110,41,125,44,111,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,77,97,116,104,46,114,111,117,110,100,40,116,41,46,116,111,83,116,114,105,110,103,40,56,41,125,44,112,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,70,97,40,49,48,48,42,116,44,110,41,125,44,114,58,70,97,44,115,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,61,68,97,40,116,44,110,41,59,105,102,40,33,101,41,114,101,116,117,114,110,32,116,43,34,34,59,118,97,114,32,114,61,101,91,48,93,44,105,61,101,91,49,93,44,111,61,105,45,40,76,97,61,51,42,77,97,116,104,46,109,97,120,40,45,56,44,77,97,116,104,46,109,105,110,40,56,44,77,97,116,104,46,102,108,111,111,114,40,105,47,51,41,41,41,41,43,49,44,97,61,114,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,111,61,61,61,97,63,114,58,111,62,97,63,114,43,110,101,119,32,65,114,114,97,121,40,111,45,97,43,49,41,46,106,111,105,110,40,34,48,34,41,58,111,62,48,63,114,46,115,108,105,99,101,40,48,44,111,41,43,34,46,34,43,114,46,115,108,105,99,101,40,111,41,58,34,48,46,34,43,110,101,119,32,65,114,114,97,121,40,49,45,111,41,46,106,111,105,110,40,34,48,34,41,43,68,97,40,116,44,77,97,116,104,46,109,97,120,40,48,44,110,43,111,45,49,41,41,91,48,93,125,44,88,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,77,97,116,104,46,114,111,117,110,100,40,116,41,46,116,111,83,116,114,105,110,103,40,49,54,41,46,116,111,85,112,112,101,114,67,97,115,101,40,41,125,44,120,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,77,97,116,104,46,114,111,117,110,100,40,116,41,46,116,111,83,116,114,105,110,103,40,49,54,41,125,125,59,102,117,110,99,116,105,111,110,32,73,97,40,116,41,123,114,101,116,117,114,110,32,116,125,118,97,114,32,72,97,44,106,97,61,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,109,97,112,44,88,97,61,91,34,121,34,44,34,122,34,44,34,97,34,44,34,102,34,44,34,112,34,44,34,110,34,44,34,194,181,34,44,34,109,34,44,34,34,44,34,107,34,44,34,77,34,44,34,71,34,44,34,84,34,44,34,80,34,44,34,69,34,44,34,90,34,44,34,89,34,93,59,102,117,110,99,116,105,111,110,32,86,97,40,116,41,123,118,97,114,32,110,44,101,44,114,61,118,111,105,100,32,48,61,61,61,116,46,103,114,111,117,112,105,110,103,124,124,118,111,105,100,32,48,61,61,61,116,46,116,104,111,117,115,97,110,100,115,63,73,97,58,40,110,61,106,97,46,99,97,108,108,40,116,46,103,114,111,117,112,105,110,103,44,78,117,109,98,101,114,41,44,101,61,116,46,116,104,111,117,115,97,110,100,115,43,34,34,44,102,117,110,99,116,105,111,110,40,116,44,114,41,123,102,111,114,40,118,97,114,32,105,61,116,46,108,101,110,103,116,104,44,111,61,91,93,44,97,61,48,44,117,61,110,91,48,93,44,99,61,48,59,105,62,48,38,38,117,62,48,38,38,40,99,43,117,43,49,62,114,38,38,40,117,61,77,97,116,104,46,109,97,120,40,49,44,114,45,99,41,41,44,111,46,112,117,115,104,40,116,46,115,117,98,115,116,114,105,110,103,40,105,45,61,117,44,105,43,117,41,41,44,33,40,40,99,43,61,117,43,49,41,62,114,41,41,59,41,117,61,110,91,97,61,40,97,43,49,41,37,110,46,108,101,110,103,116,104,93,59,114,101,116,117,114,110,32,111,46,114,101,118,101,114,115,101,40,41,46,106,111,105,110,40,101,41,125,41,44,105,61,118,111,105,100,32,48,61,61,61,116,46,99,117,114,114,101,110,99,121,63,34,34,58,116,46,99,117,114,114,101,110,99,121,91,48,93,43,34,34,44,111,61,118,111,105,100,32,48,61,61,61,116,46,99,117,114,114,101,110,99,121,63,34,34,58,116,46,99,117,114,114,101,110,99,121,91,49,93,43,34,34,44,97,61,118,111,105,100,32,48,61,61,61,116,46,100,101,99,105,109,97,108,63,34,46,34,58,116,46,100,101,99,105,109,97,108,43,34,34,44,117,61,118,111,105,100,32,48,61,61,61,116,46,110,117,109,101,114,97,108,115,63,73,97,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,110,46,114,101,112,108,97,99,101,40,47,91,48,45,57,93,47,103,44,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,91,43,110,93,125,41,125,125,40,106,97,46,99,97,108,108,40,116,46,110,117,109,101,114,97,108,115,44,83,116,114,105,110,103,41,41,44,99,61,118,111,105,100,32,48,61,61,61,116,46,112,101,114,99,101,110,116,63,34,37,34,58,116,46,112,101,114,99,101,110,116,43,34,34,44,102,61,118,111,105,100,32,48,61,61,61,116,46,109,105,110,117,115,63,34,45,34,58,116,46,109,105,110,117,115,43,34,34,44,115,61,118,111,105,100,32,48,61,61,61,116,46,110,97,110,63,34,78,97,78,34,58,116,46,110,97,110,43,34,34,59,102,117,110,99,116,105,111,110,32,108,40,116,41,123,118,97,114,32,110,61,40,116,61,79,97,40,116,41,41,46,102,105,108,108,44,101,61,116,46,97,108,105,103,110,44,108,61,116,46,115,105,103,110,44,104,61,116,46,115,121,109,98,111,108,44,100,61,116,46,122,101,114,111,44,112,61,116,46,119,105,100,116,104,44,118,61,116,46,99,111,109,109,97,44,103,61,116,46,112,114,101,99,105,115,105,111,110,44,121,61,116,46,116,114,105,109,44,95,61,116,46,116,121,112,101,59,34,110,34,61,61,61,95,63,40,118,61,33,48,44,95,61,34,103,34,41,58,89,97,91,95,93,124,124,40,118,111,105,100,32,48,61,61,61,103,38,38,40,103,61,49,50,41,44,121,61,33,48,44,95,61,34,103,34,41,44,40,100,124,124,34,48,34,61,61,61,110,38,38,34,61,34,61,61,61,101,41,38,38,40,100,61,33,48,44,110,61,34,48,34,44,101,61,34,61,34,41,59,118,97,114,32,98,61,34,36,34,61,61,61,104,63,105,58,34,35,34,61,61,61,104,38,38,47,91,98,111,120,88,93,47,46,116,101,115,116,40,95,41,63,34,48,34,43,95,46,116,111,76,111,119,101,114,67,97,115,101,40,41,58,34,34,44,109,61,34,36,34,61,61,61,104,63,111,58,47,91,37,112,93,47,46,116,101,115,116,40,95,41,63,99,58,34,34,44,120,61,89,97,91,95,93,44,119,61,47,91,100,101,102,103,112,114,115,37,93,47,46,116,101,115,116,40,95,41,59,102,117,110,99,116,105,111,110,32,77,40,116,41,123,118,97,114,32,105,44,111,44,99,44,104,61,98,44,77,61,109,59,105,102,40,34,99,34,61,61,61,95,41,77,61,120,40,116,41,43,77,44,116,61,34,34,59,101,108,115,101,123,118,97,114,32,78,61,40,116,61,43,116,41,60,48,124,124,49,47,116,60,48,59,105,102,40,116,61,105,115,78,97,78,40,116,41,63,115,58,120,40,77,97,116,104,46,97,98,115,40,116,41,44,103,41,44,121,38,38,40,116,61,102,117,110,99,116,105,111,110,40,116,41,123,116,58,102,111,114,40,118,97,114,32,110,44,101,61,116,46,108,101,110,103,116,104,44,114,61,49,44,105,61,45,49,59,114,60,101,59,43,43,114,41,115,119,105,116,99,104,40,116,91,114,93,41,123,99,97,115,101,34,46,34,58,105,61,110,61,114,59,98,114,101,97,107,59,99,97,115,101,34,48,34,58,48,61,61,61,105,38,38,40,105,61,114,41,44,110,61,114,59,98,114,101,97,107,59,100,101,102,97,117,108,116,58,105,102,40,33,43,116,91,114,93,41,98,114,101,97,107,32,116,59,105,62,48,38,38,40,105,61,48,41,125,114,101,116,117,114,110,32,105,62,48,63,116,46,115,108,105,99,101,40,48,44,105,41,43,116,46,115,108,105,99,101,40,110,43,49,41,58,116,125,40,116,41,41,44,78,38,38,48,61,61,43,116,38,38,34,43,34,33,61,61,108,38,38,40,78,61,33,49,41,44,104,61,40,78,63,34,40,34,61,61,61,108,63,108,58,102,58,34,45,34,61,61,61,108,124,124,34,40,34,61,61,61,108,63,34,34,58,108,41,43,104,44,77,61,40,34,115,34,61,61,61,95,63,88,97,91,56,43,76,97,47,51,93,58,34,34,41,43,77,43,40,78,38,38,34,40,34,61,61,61,108,63,34,41,34,58,34,34,41,44,119,41,102,111,114,40,105,61,45,49,44,111,61,116,46,108,101,110,103,116,104,59,43,43,105,60,111,59,41,105,102,40,52,56,62,40,99,61,116,46,99,104,97,114,67,111,100,101,65,116,40,105,41,41,124,124,99,62,53,55,41,123,77,61,40,52,54,61,61,61,99,63,97,43,116,46,115,108,105,99,101,40,105,43,49,41,58,116,46,115,108,105,99,101,40,105,41,41,43,77,44,116,61,116,46,115,108,105,99,101,40,48,44,105,41,59,98,114,101,97,107,125,125,118,38,38,33,100,38,38,40,116,61,114,40,116,44,49,47,48,41,41,59,118,97,114,32,84,61,104,46,108,101,110,103,116,104,43,116,46,108,101,110,103,116,104,43,77,46,108,101,110,103,116,104,44,65,61,84,60,112,63,110,101,119,32,65,114,114,97,121,40,112,45,84,43,49,41,46,106,111,105,110,40,110,41,58,34,34,59,115,119,105,116,99,104,40,118,38,38,100,38,38,40,116,61,114,40,65,43,116,44,65,46,108,101,110,103,116,104,63,112,45,77,46,108,101,110,103,116,104,58,49,47,48,41,44,65,61,34,34,41,44,101,41,123,99,97,115,101,34,60,34,58,116,61,104,43,116,43,77,43,65,59,98,114,101,97,107,59,99,97,115,101,34,61,34,58,116,61,104,43,65,43,116,43,77,59,98,114,101,97,107,59,99,97,115,101,34,94,34,58,116,61,65,46,115,108,105,99,101,40,48,44,84,61,65,46,108,101,110,103,116,104,62,62,49,41,43,104,43,116,43,77,43,65,46,115,108,105,99,101,40,84,41,59,98,114,101,97,107,59,100,101,102,97,117,108,116,58,116,61,65,43,104,43,116,43,77,125,114,101,116,117,114,110,32,117,40,116,41,125,114,101,116,117,114,110,32,103,61,118,111,105,100,32,48,61,61,61,103,63,54,58,47,91,103,112,114,115,93,47,46,116,101,115,116,40,95,41,63,77,97,116,104,46,109,97,120,40,49,44,77,97,116,104,46,109,105,110,40,50,49,44,103,41,41,58,77,97,116,104,46,109,97,120,40,48,44,77,97,116,104,46,109,105,110,40,50,48,44,103,41,41,44,77,46,116,111,83,116,114,105,110,103,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,43,34,34,125,44,77,125,114,101,116,117,114,110,123,102,111,114,109,97,116,58,108,44,102,111,114,109,97,116,80,114,101,102,105,120,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,61,108,40,40,40,116,61,79,97,40,116,41,41,46,116,121,112,101,61,34,102,34,44,116,41,41,44,114,61,51,42,77,97,116,104,46,109,97,120,40,45,56,44,77,97,116,104,46,109,105,110,40,56,44,77,97,116,104,46,102,108,111,111,114,40,113,97,40,110,41,47,51,41,41,41,44,105,61,77,97,116,104,46,112,111,119,40,49,48,44,45,114,41,44,111,61,88,97,91,56,43,114,47,51,93,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,40,105,42,116,41,43,111,125,125,125,125,102,117,110,99,116,105,111,110,32,71,97,40,110,41,123,114,101,116,117,114,110,32,72,97,61,86,97,40,110,41,44,116,46,102,111,114,109,97,116,61,72,97,46,102,111,114,109,97,116,44,116,46,102,111,114,109,97,116,80,114,101,102,105,120,61,72,97,46,102,111,114,109,97,116,80,114,101,102,105,120,44,72,97,125,102,117,110,99,116,105,111,110,32,36,97,40,116,41,123,114,101,116,117,114,110,32,77,97,116,104,46,109,97,120,40,48,44,45,113,97,40,77,97,116,104,46,97,98,115,40,116,41,41,41,125,102,117,110,99,116,105,111,110,32,87,97,40,116,44,110,41,123,114,101,116,117,114,110,32,77,97,116,104,46,109,97,120,40,48,44,51,42,77,97,116,104,46,109,97,120,40,45,56,44,77,97,116,104,46,109,105,110,40,56,44,77,97,116,104,46,102,108,111,111,114,40,113,97,40,110,41,47,51,41,41,41,45,113,97,40,77,97,116,104,46,97,98,115,40,116,41,41,41,125,102,117,110,99,116,105,111,110,32,90,97,40,116,44,110,41,123,114,101,116,117,114,110,32,116,61,77,97,116,104,46,97,98,115,40,116,41,44,110,61,77,97,116,104,46,97,98,115,40,110,41,45,116,44,77,97,116,104,46,109,97,120,40,48,44,113,97,40,110,41,45,113,97,40,116,41,41,43,49,125,102,117,110,99,116,105,111,110,32,81,97,40,41,123,114,101,116,117,114,110,32,110,101,119,32,75,97,125,102,117,110,99,116,105,111,110,32,75,97,40,41,123,116,104,105,115,46,114,101,115,101,116,40,41,125,71,97,40,123,100,101,99,105,109,97,108,58,34,46,34,44,116,104,111,117,115,97,110,100,115,58,34,44,34,44,103,114,111,117,112,105,110,103,58,91,51,93,44,99,117,114,114,101,110,99,121,58,91,34,36,34,44,34,34,93,44,109,105,110,117,115,58,34,45,34,125,41,44,75,97,46,112,114,111,116,111,116,121,112,101,61,123,99,111,110,115,116,114,117,99,116,111,114,58,75,97,44,114,101,115,101,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,115,61,116,104,105,115,46,116,61,48,125,44,97,100,100,58,102,117,110,99,116,105,111,110,40,116,41,123,116,117,40,74,97,44,116,44,116,104,105,115,46,116,41,44,116,117,40,116,104,105,115,44,74,97,46,115,44,116,104,105,115,46,115,41,44,116,104,105,115,46,115,63,116,104,105,115,46,116,43,61,74,97,46,116,58,116,104,105,115,46,115,61,74,97,46,116,125,44,118,97,108,117,101,79,102,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,115,125,125,59,118,97,114,32,74,97,61,110,101,119,32,75,97,59,102,117,110,99,116,105,111,110,32,116,117,40,116,44,110,44,101,41,123,118,97,114,32,114,61,116,46,115,61,110,43,101,44,105,61,114,45,110,44,111,61,114,45,105,59,116,46,116,61,110,45,111,43,40,101,45,105,41,125,118,97,114,32,110,117,61,49,101,45,54,44,101,117,61,49,101,45,49,50,44,114,117,61,77,97,116,104,46,80,73,44,105,117,61,114,117,47,50,44,111,117,61,114,117,47,52,44,97,117,61,50,42,114,117,44,117,117,61,49,56,48,47,114,117,44,99,117,61,114,117,47,49,56,48,44,102,117,61,77,97,116,104,46,97,98,115,44,115,117,61,77,97,116,104,46,97,116,97,110,44,108,117,61,77,97,116,104,46,97,116,97,110,50,44,104,117,61,77,97,116,104,46,99,111,115,44,100,117,61,77,97,116,104,46,99,101,105,108,44,112,117,61,77,97,116,104,46,101,120,112,44,118,117,61,77,97,116,104,46,108,111,103,44,103,117,61,77,97,116,104,46,112,111,119,44,121,117,61,77,97,116,104,46,115,105,110,44,95,117,61,77,97,116,104,46,115,105,103,110,124,124,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,62,48,63,49,58,116,60,48,63,45,49,58,48,125,44,98,117,61,77,97,116,104,46,115,113,114,116,44,109,117,61,77,97,116,104,46,116,97,110,59,102,117,110,99,116,105,111,110,32,120,117,40,116,41,123,114,101,116,117,114,110,32,116,62,49,63,48,58,116,60,45,49,63,114,117,58,77,97,116,104,46,97,99,111,115,40,116,41,125,102,117,110,99,116,105,111,110,32,119,117,40,116,41,123,114,101,116,117,114,110,32,116,62,49,63,105,117,58,116,60,45,49,63,45,105,117,58,77,97,116,104,46,97,115,105,110,40,116,41,125,102,117,110,99,116,105,111,110,32,77,117,40,116,41,123,114,101,116,117,114,110,40,116,61,121,117,40,116,47,50,41,41,42,116,125,102,117,110,99,116,105,111,110,32,78,117,40,41,123,125,102,117,110,99,116,105,111,110,32,84,117,40,116,44,110,41,123,116,38,38,83,117,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,116,46,116,121,112,101,41,38,38,83,117,91,116,46,116,121,112,101,93,40,116,44,110,41,125,118,97,114,32,65,117,61,123,70,101,97,116,117,114,101,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,84,117,40,116,46,103,101,111,109,101,116,114,121,44,110,41,125,44,70,101,97,116,117,114,101,67,111,108,108,101,99,116,105,111,110,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,102,111,114,40,118,97,114,32,101,61,116,46,102,101,97,116,117,114,101,115,44,114,61,45,49,44,105,61,101,46,108,101,110,103,116,104,59,43,43,114,60,105,59,41,84,117,40,101,91,114,93,46,103,101,111,109,101,116,114,121,44,110,41,125,125,44,83,117,61,123,83,112,104,101,114,101,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,110,46,115,112,104,101,114,101,40,41,125,44,80,111,105,110,116,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,116,61,116,46,99,111,111,114,100,105,110,97,116,101,115,44,110,46,112,111,105,110,116,40,116,91,48,93,44,116,91,49,93,44,116,91,50,93,41,125,44,77,117,108,116,105,80,111,105,110,116,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,102,111,114,40,118,97,114,32,101,61,116,46,99,111,111,114,100,105,110,97,116,101,115,44,114,61,45,49,44,105,61,101,46,108,101,110,103,116,104,59,43,43,114,60,105,59,41,116,61,101,91,114,93,44,110,46,112,111,105,110,116,40,116,91,48,93,44,116,91,49,93,44,116,91,50,93,41,125,44,76,105,110,101,83,116,114,105,110,103,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,107,117,40,116,46,99,111,111,114,100,105,110,97,116,101,115,44,110,44,48,41,125,44,77,117,108,116,105,76,105,110,101,83,116,114,105,110,103,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,102,111,114,40,118,97,114,32,101,61,116,46,99,111,111,114,100,105,110,97,116,101,115,44,114,61,45,49,44,105,61,101,46,108,101,110,103,116,104,59,43,43,114,60,105,59,41,107,117,40,101,91,114,93,44,110,44,48,41,125,44,80,111,108,121,103,111,110,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,69,117,40,116,46,99,111,111,114,100,105,110,97,116,101,115,44,110,41,125,44,77,117,108,116,105,80,111,108,121,103,111,110,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,102,111,114,40,118,97,114,32,101,61,116,46,99,111,111,114,100,105,110,97,116,101,115,44,114,61,45,49,44,105,61,101,46,108,101,110,103,116,104,59,43,43,114,60,105,59,41,69,117,40,101,91,114,93,44,110,41,125,44,71,101,111,109,101,116,114,121,67,111,108,108,101,99,116,105,111,110,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,102,111,114,40,118,97,114,32,101,61,116,46,103,101,111,109,101,116,114,105,101,115,44,114,61,45,49,44,105,61,101,46,108,101,110,103,116,104,59,43,43,114,60,105,59,41,84,117,40,101,91,114,93,44,110,41,125,125,59,102,117,110,99,116,105,111,110,32,107,117,40,116,44,110,44,101,41,123,118,97,114,32,114,44,105,61,45,49,44,111,61,116,46,108,101,110,103,116,104,45,101,59,102,111,114,40,110,46,108,105,110,101,83,116,97,114,116,40,41,59,43,43,105,60,111,59,41,114,61,116,91,105,93,44,110,46,112,111,105,110,116,40,114,91,48,93,44,114,91,49,93,44,114,91,50,93,41,59,110,46,108,105,110,101,69,110,100,40,41,125,102,117,110,99,116,105,111,110,32,69,117,40,116,44,110,41,123,118,97,114,32,101,61,45,49,44,114,61,116,46,108,101,110,103,116,104,59,102,111,114,40,110,46,112,111,108,121,103,111,110,83,116,97,114,116,40,41,59,43,43,101,60,114,59,41,107,117,40,116,91,101,93,44,110,44,49,41,59,110,46,112,111,108,121,103,111,110,69,110,100,40,41,125,102,117,110,99,116,105,111,110,32,67,117,40,116,44,110,41,123,116,38,38,65,117,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,116,46,116,121,112,101,41,63,65,117,91,116,46,116,121,112,101,93,40,116,44,110,41,58,84,117,40,116,44,110,41,125,118,97,114,32,80,117,44,122,117,44,82,117,44,68,117,44,113,117,44,76,117,61,81,97,40,41,44,85,117,61,81,97,40,41,44,79,117,61,123,112,111,105,110,116,58,78,117,44,108,105,110,101,83,116,97,114,116,58,78,117,44,108,105,110,101,69,110,100,58,78,117,44,112,111,108,121,103,111,110,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,76,117,46,114,101,115,101,116,40,41,44,79,117,46,108,105,110,101,83,116,97,114,116,61,66,117,44,79,117,46,108,105,110,101,69,110,100,61,70,117,125,44,112,111,108,121,103,111,110,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,43,76,117,59,85,117,46,97,100,100,40,116,60,48,63,97,117,43,116,58,116,41,44,116,104,105,115,46,108,105,110,101,83,116,97,114,116,61,116,104,105,115,46,108,105,110,101,69,110,100,61,116,104,105,115,46,112,111,105,110,116,61,78,117,125,44,115,112,104,101,114,101,58,102,117,110,99,116,105,111,110,40,41,123,85,117,46,97,100,100,40,97,117,41,125,125,59,102,117,110,99,116,105,111,110,32,66,117,40,41,123,79,117,46,112,111,105,110,116,61,89,117,125,102,117,110,99,116,105,111,110,32,70,117,40,41,123,73,117,40,80,117,44,122,117,41,125,102,117,110,99,116,105,111,110,32,89,117,40,116,44,110,41,123,79,117,46,112,111,105,110,116,61,73,117,44,80,117,61,116,44,122,117,61,110,44,82,117,61,116,42,61,99,117,44,68,117,61,104,117,40,110,61,40,110,42,61,99,117,41,47,50,43,111,117,41,44,113,117,61,121,117,40,110,41,125,102,117,110,99,116,105,111,110,32,73,117,40,116,44,110,41,123,118,97,114,32,101,61,40,116,42,61,99,117,41,45,82,117,44,114,61,101,62,61,48,63,49,58,45,49,44,105,61,114,42,101,44,111,61,104,117,40,110,61,40,110,42,61,99,117,41,47,50,43,111,117,41,44,97,61,121,117,40,110,41,44,117,61,113,117,42,97,44,99,61,68,117,42,111,43,117,42,104,117,40,105,41,44,102,61,117,42,114,42,121,117,40,105,41,59,76,117,46,97,100,100,40,108,117,40,102,44,99,41,41,44,82,117,61,116,44,68,117,61,111,44,113,117,61,97,125,102,117,110,99,116,105,111,110,32,72,117,40,116,41,123,114,101,116,117,114,110,91,108,117,40,116,91,49,93,44,116,91,48,93,41,44,119,117,40,116,91,50,93,41,93,125,102,117,110,99,116,105,111,110,32,106,117,40,116,41,123,118,97,114,32,110,61,116,91,48,93,44,101,61,116,91,49,93,44,114,61,104,117,40,101,41,59,114,101,116,117,114,110,91,114,42,104,117,40,110,41,44,114,42,121,117,40,110,41,44,121,117,40,101,41,93,125,102,117,110,99,116,105,111,110,32,88,117,40,116,44,110,41,123,114,101,116,117,114,110,32,116,91,48,93,42,110,91,48,93,43,116,91,49,93,42,110,91,49,93,43,116,91,50,93,42,110,91,50,93,125,102,117,110,99,116,105,111,110,32,86,117,40,116,44,110,41,123,114,101,116,117,114,110,91,116,91,49,93,42,110,91,50,93,45,116,91,50,93,42,110,91,49,93,44,116,91,50,93,42,110,91,48,93,45,116,91,48,93,42,110,91,50,93,44,116,91,48,93,42,110,91,49,93,45,116,91,49,93,42,110,91,48,93,93,125,102,117,110,99,116,105,111,110,32,71,117,40,116,44,110,41,123,116,91,48,93,43,61,110,91,48,93,44,116,91,49,93,43,61,110,91,49,93,44,116,91,50,93,43,61,110,91,50,93,125,102,117,110,99,116,105,111,110,32,36,117,40,116,44,110,41,123,114,101,116,117,114,110,91,116,91,48,93,42,110,44,116,91,49,93,42,110,44,116,91,50,93,42,110,93,125,102,117,110,99,116,105,111,110,32,87,117,40,116,41,123,118,97,114,32,110,61,98,117,40,116,91,48,93,42,116,91,48,93,43,116,91,49,93,42,116,91,49,93,43,116,91,50,93,42,116,91,50,93,41,59,116,91,48,93,47,61,110,44,116,91,49,93,47,61,110,44,116,91,50,93,47,61,110,125,118,97,114,32,90,117,44,81,117,44,75,117,44,74,117,44,116,99,44,110,99,44,101,99,44,114,99,44,105,99,44,111,99,44,97,99,44,117,99,44,99,99,44,102,99,44,115,99,44,108,99,44,104,99,44,100,99,44,112,99,44,118,99,44,103,99,44,121,99,44,95,99,44,98,99,44,109,99,44,120,99,44,119,99,61,81,97,40,41,44,77,99,61,123,112,111,105,110,116,58,78,99,44,108,105,110,101,83,116,97,114,116,58,65,99,44,108,105,110,101,69,110,100,58,83,99,44,112,111,108,121,103,111,110,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,77,99,46,112,111,105,110,116,61,107,99,44,77,99,46,108,105,110,101,83,116,97,114,116,61,69,99,44,77,99,46,108,105,110,101,69,110,100,61,67,99,44,119,99,46,114,101,115,101,116,40,41,44,79,117,46,112,111,108,121,103,111,110,83,116,97,114,116,40,41,125,44,112,111,108,121,103,111,110,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,79,117,46,112,111,108,121,103,111,110,69,110,100,40,41,44,77,99,46,112,111,105,110,116,61,78,99,44,77,99,46,108,105,110,101,83,116,97,114,116,61,65,99,44,77,99,46,108,105,110,101,69,110,100,61,83,99,44,76,117,60,48,63,40,90,117,61,45,40,75,117,61,49,56,48,41,44,81,117,61,45,40,74,117,61,57,48,41,41,58,119,99,62,110,117,63,74,117,61,57,48,58,119,99,60,45,110,117,38,38,40,81,117,61,45,57,48,41,44,111,99,91,48,93,61,90,117,44,111,99,91,49,93,61,75,117,125,44,115,112,104,101,114,101,58,102,117,110,99,116,105,111,110,40,41,123,90,117,61,45,40,75,117,61,49,56,48,41,44,81,117,61,45,40,74,117,61,57,48,41,125,125,59,102,117,110,99,116,105,111,110,32,78,99,40,116,44,110,41,123,105,99,46,112,117,115,104,40,111,99,61,91,90,117,61,116,44,75,117,61,116,93,41,44,110,60,81,117,38,38,40,81,117,61,110,41,44,110,62,74,117,38,38,40,74,117,61,110,41,125,102,117,110,99,116,105,111,110,32,84,99,40,116,44,110,41,123,118,97,114,32,101,61,106,117,40,91,116,42,99,117,44,110,42,99,117,93,41,59,105,102,40,114,99,41,123,118,97,114,32,114,61,86,117,40,114,99,44,101,41,44,105,61,86,117,40,91,114,91,49,93,44,45,114,91,48,93,44,48,93,44,114,41,59,87,117,40,105,41,44,105,61,72,117,40,105,41,59,118,97,114,32,111,44,97,61,116,45,116,99,44,117,61,97,62,48,63,49,58,45,49,44,99,61,105,91,48,93,42,117,117,42,117,44,102,61,102,117,40,97,41,62,49,56,48,59,102,94,40,117,42,116,99,60,99,38,38,99,60,117,42,116,41,63,40,111,61,105,91,49,93,42,117,117,41,62,74,117,38,38,40,74,117,61,111,41,58,102,94,40,117,42,116,99,60,40,99,61,40,99,43,51,54,48,41,37,51,54,48,45,49,56,48,41,38,38,99,60,117,42,116,41,63,40,111,61,45,105,91,49,93,42,117,117,41,60,81,117,38,38,40,81,117,61,111,41,58,40,110,60,81,117,38,38,40,81,117,61,110,41,44,110,62,74,117,38,38,40,74,117,61,110,41,41,44,102,63,116,60,116,99,63,80,99,40,90,117,44,116,41,62,80,99,40,90,117,44,75,117,41,38,38,40,75,117,61,116,41,58,80,99,40,116,44,75,117,41,62,80,99,40,90,117,44,75,117,41,38,38,40,90,117,61,116,41,58,75,117,62,61,90,117,63,40,116,60,90,117,38,38,40,90,117,61,116,41,44,116,62,75,117,38,38,40,75,117,61,116,41,41,58,116,62,116,99,63,80,99,40,90,117,44,116,41,62,80,99,40,90,117,44,75,117,41,38,38,40,75,117,61,116,41,58,80,99,40,116,44,75,117,41,62,80,99,40,90,117,44,75,117,41,38,38,40,90,117,61,116,41,125,101,108,115,101,32,105,99,46,112,117,115,104,40,111,99,61,91,90,117,61,116,44,75,117,61,116,93,41,59,110,60,81,117,38,38,40,81,117,61,110,41,44,110,62,74,117,38,38,40,74,117,61,110,41,44,114,99,61,101,44,116,99,61,116,125,102,117,110,99,116,105,111,110,32,65,99,40,41,123,77,99,46,112,111,105,110,116,61,84,99,125,102,117,110,99,116,105,111,110,32,83,99,40,41,123,111,99,91,48,93,61,90,117,44,111,99,91,49,93,61,75,117,44,77,99,46,112,111,105,110,116,61,78,99,44,114,99,61,110,117,108,108,125,102,117,110,99,116,105,111,110,32,107,99,40,116,44,110,41,123,105,102,40,114,99,41,123,118,97,114,32,101,61,116,45,116,99,59,119,99,46,97,100,100,40,102,117,40,101,41,62,49,56,48,63,101,43,40,101,62,48,63,51,54,48,58,45,51,54,48,41,58,101,41,125,101,108,115,101,32,110,99,61,116,44,101,99,61,110,59,79,117,46,112,111,105,110,116,40,116,44,110,41,44,84,99,40,116,44,110,41,125,102,117,110,99,116,105,111,110,32,69,99,40,41,123,79,117,46,108,105,110,101,83,116,97,114,116,40,41,125,102,117,110,99,116,105,111,110,32,67,99,40,41,123,107,99,40,110,99,44,101,99,41,44,79,117,46,108,105,110,101,69,110,100,40,41,44,102,117,40,119,99,41,62,110,117,38,38,40,90,117,61,45,40,75,117,61,49,56,48,41,41,44,111,99,91,48,93,61,90,117,44,111,99,91,49,93,61,75,117,44,114,99,61,110,117,108,108,125,102,117,110,99,116,105,111,110,32,80,99,40,116,44,110,41,123,114,101,116,117,114,110,40,110,45,61,116,41,60,48,63,110,43,51,54,48,58,110,125,102,117,110,99,116,105,111,110,32,122,99,40,116,44,110,41,123,114,101,116,117,114,110,32,116,91,48,93,45,110,91,48,93,125,102,117,110,99,116,105,111,110,32,82,99,40,116,44,110,41,123,114,101,116,117,114,110,32,116,91,48,93,60,61,116,91,49,93,63,116,91,48,93,60,61,110,38,38,110,60,61,116,91,49,93,58,110,60,116,91,48,93,124,124,116,91,49,93,60,110,125,118,97,114,32,68,99,61,123,115,112,104,101,114,101,58,78,117,44,112,111,105,110,116,58,113,99,44,108,105,110,101,83,116,97,114,116,58,85,99,44,108,105,110,101,69,110,100,58,70,99,44,112,111,108,121,103,111,110,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,68,99,46,108,105,110,101,83,116,97,114,116,61,89,99,44,68,99,46,108,105,110,101,69,110,100,61,73,99,125,44,112,111,108,121,103,111,110,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,68,99,46,108,105,110,101,83,116,97,114,116,61,85,99,44,68,99,46,108,105,110,101,69,110,100,61,70,99,125,125,59,102,117,110,99,116,105,111,110,32,113,99,40,116,44,110,41,123,116,42,61,99,117,59,118,97,114,32,101,61,104,117,40,110,42,61,99,117,41,59,76,99,40,101,42,104,117,40,116,41,44,101,42,121,117,40,116,41,44,121,117,40,110,41,41,125,102,117,110,99,116,105,111,110,32,76,99,40,116,44,110,44,101,41,123,99,99,43,61,40,116,45,99,99,41,47,43,43,97,99,44,102,99,43,61,40,110,45,102,99,41,47,97,99,44,115,99,43,61,40,101,45,115,99,41,47,97,99,125,102,117,110,99,116,105,111,110,32,85,99,40,41,123,68,99,46,112,111,105,110,116,61,79,99,125,102,117,110,99,116,105,111,110,32,79,99,40,116,44,110,41,123,116,42,61,99,117,59,118,97,114,32,101,61,104,117,40,110,42,61,99,117,41,59,98,99,61,101,42,104,117,40,116,41,44,109,99,61,101,42,121,117,40,116,41,44,120,99,61,121,117,40,110,41,44,68,99,46,112,111,105,110,116,61,66,99,44,76,99,40,98,99,44,109,99,44,120,99,41,125,102,117,110,99,116,105,111,110,32,66,99,40,116,44,110,41,123,116,42,61,99,117,59,118,97,114,32,101,61,104,117,40,110,42,61,99,117,41,44,114,61,101,42,104,117,40,116,41,44,105,61,101,42,121,117,40,116,41,44,111,61,121,117,40,110,41,44,97,61,108,117,40,98,117,40,40,97,61,109,99,42,111,45,120,99,42,105,41,42,97,43,40,97,61,120,99,42,114,45,98,99,42,111,41,42,97,43,40,97,61,98,99,42,105,45,109,99,42,114,41,42,97,41,44,98,99,42,114,43,109,99,42,105,43,120,99,42,111,41,59,117,99,43,61,97,44,108,99,43,61,97,42,40,98,99,43,40,98,99,61,114,41,41,44,104,99,43,61,97,42,40,109,99,43,40,109,99,61,105,41,41,44,100,99,43,61,97,42,40,120,99,43,40,120,99,61,111,41,41,44,76,99,40,98,99,44,109,99,44,120,99,41,125,102,117,110,99,116,105,111,110,32,70,99,40,41,123,68,99,46,112,111,105,110,116,61,113,99,125,102,117,110,99,116,105,111,110,32,89,99,40,41,123,68,99,46,112,111,105,110,116,61,72,99,125,102,117,110,99,116,105,111,110,32,73,99,40,41,123,106,99,40,121,99,44,95,99,41,44,68,99,46,112,111,105,110,116,61,113,99,125,102,117,110,99,116,105,111,110,32,72,99,40,116,44,110,41,123,121,99,61,116,44,95,99,61,110,44,116,42,61,99,117,44,110,42,61,99,117,44,68,99,46,112,111,105,110,116,61,106,99,59,118,97,114,32,101,61,104,117,40,110,41,59,98,99,61,101,42,104,117,40,116,41,44,109,99,61,101,42,121,117,40,116,41,44,120,99,61,121,117,40,110,41,44,76,99,40,98,99,44,109,99,44,120,99,41,125,102,117,110,99,116,105,111,110,32,106,99,40,116,44,110,41,123,116,42,61,99,117,59,118,97,114,32,101,61,104,117,40,110,42,61,99,117,41,44,114,61,101,42,104,117,40,116,41,44,105,61,101,42,121,117,40,116,41,44,111,61,121,117,40,110,41,44,97,61,109,99,42,111,45,120,99,42,105,44,117,61,120,99,42,114,45,98,99,42,111,44,99,61,98,99,42,105,45,109,99,42,114,44,102,61,98,117,40,97,42,97,43,117,42,117,43,99,42,99,41,44,115,61,119,117,40,102,41,44,108,61,102,38,38,45,115,47,102,59,112,99,43,61,108,42,97,44,118,99,43,61,108,42,117,44,103,99,43,61,108,42,99,44,117,99,43,61,115,44,108,99,43,61,115,42,40,98,99,43,40,98,99,61,114,41,41,44,104,99,43,61,115,42,40,109,99,43,40,109,99,61,105,41,41,44,100,99,43,61,115,42,40,120,99,43,40,120,99,61,111,41,41,44,76,99,40,98,99,44,109,99,44,120,99,41,125,102,117,110,99,116,105,111,110,32,88,99,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,125,125,102,117,110,99,116,105,111,110,32,86,99,40,116,44,110,41,123,102,117,110,99,116,105,111,110,32,101,40,101,44,114,41,123,114,101,116,117,114,110,32,101,61,116,40,101,44,114,41,44,110,40,101,91,48,93,44,101,91,49,93,41,125,114,101,116,117,114,110,32,116,46,105,110,118,101,114,116,38,38,110,46,105,110,118,101,114,116,38,38,40,101,46,105,110,118,101,114,116,61,102,117,110,99,116,105,111,110,40,101,44,114,41,123,114,101,116,117,114,110,40,101,61,110,46,105,110,118,101,114,116,40,101,44,114,41,41,38,38,116,46,105,110,118,101,114,116,40,101,91,48,93,44,101,91,49,93,41,125,41,44,101,125,102,117,110,99,116,105,111,110,32,71,99,40,116,44,110,41,123,114,101,116,117,114,110,91,102,117,40,116,41,62,114,117,63,116,43,77,97,116,104,46,114,111,117,110,100,40,45,116,47,97,117,41,42,97,117,58,116,44,110,93,125,102,117,110,99,116,105,111,110,32,36,99,40,116,44,110,44,101,41,123,114,101,116,117,114,110,40,116,37,61,97,117,41,63,110,124,124,101,63,86,99,40,90,99,40,116,41,44,81,99,40,110,44,101,41,41,58,90,99,40,116,41,58,110,124,124,101,63,81,99,40,110,44,101,41,58,71,99,125,102,117,110,99,116,105,111,110,32,87,99,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,110,44,101,41,123,114,101,116,117,114,110,91,40,110,43,61,116,41,62,114,117,63,110,45,97,117,58,110,60,45,114,117,63,110,43,97,117,58,110,44,101,93,125,125,102,117,110,99,116,105,111,110,32,90,99,40,116,41,123,118,97,114,32,110,61,87,99,40,116,41,59,114,101,116,117,114,110,32,110,46,105,110,118,101,114,116,61,87,99,40,45,116,41,44,110,125,102,117,110,99,116,105,111,110,32,81,99,40,116,44,110,41,123,118,97,114,32,101,61,104,117,40,116,41,44,114,61,121,117,40,116,41,44,105,61,104,117,40,110,41,44,111,61,121,117,40,110,41,59,102,117,110,99,116,105,111,110,32,97,40,116,44,110,41,123,118,97,114,32,97,61,104,117,40,110,41,44,117,61,104,117,40,116,41,42,97,44,99,61,121,117,40,116,41,42,97,44,102,61,121,117,40,110,41,44,115,61,102,42,101,43,117,42,114,59,114,101,116,117,114,110,91,108,117,40,99,42,105,45,115,42,111,44,117,42,101,45,102,42,114,41,44,119,117,40,115,42,105,43,99,42,111,41,93,125,114,101,116,117,114,110,32,97,46,105,110,118,101,114,116,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,97,61,104,117,40,110,41,44,117,61,104,117,40,116,41,42,97,44,99,61,121,117,40,116,41,42,97,44,102,61,121,117,40,110,41,44,115,61,102,42,105,45,99,42,111,59,114,101,116,117,114,110,91,108,117,40,99,42,105,43,102,42,111,44,117,42,101,43,115,42,114,41,44,119,117,40,115,42,101,45,117,42,114,41,93,125,44,97,125,102,117,110,99,116,105,111,110,32,75,99,40,116,41,123,102,117,110,99,116,105,111,110,32,110,40,110,41,123,114,101,116,117,114,110,40,110,61,116,40,110,91,48,93,42,99,117,44,110,91,49,93,42,99,117,41,41,91,48,93,42,61,117,117,44,110,91,49,93,42,61,117,117,44,110,125,114,101,116,117,114,110,32,116,61,36,99,40,116,91,48,93,42,99,117,44,116,91,49,93,42,99,117,44,116,46,108,101,110,103,116,104,62,50,63,116,91,50,93,42,99,117,58,48,41,44,110,46,105,110,118,101,114,116,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,40,110,61,116,46,105,110,118,101,114,116,40,110,91,48,93,42,99,117,44,110,91,49,93,42,99,117,41,41,91,48,93,42,61,117,117,44,110,91,49,93,42,61,117,117,44,110,125,44,110,125,102,117,110,99,116,105,111,110,32,74,99,40,116,44,110,44,101,44,114,44,105,44,111,41,123,105,102,40,101,41,123,118,97,114,32,97,61,104,117,40,110,41,44,117,61,121,117,40,110,41,44,99,61,114,42,101,59,110,117,108,108,61,61,105,63,40,105,61,110,43,114,42,97,117,44,111,61,110,45,99,47,50,41,58,40,105,61,116,102,40,97,44,105,41,44,111,61,116,102,40,97,44,111,41,44,40,114,62,48,63,105,60,111,58,105,62,111,41,38,38,40,105,43,61,114,42,97,117,41,41,59,102,111,114,40,118,97,114,32,102,44,115,61,105,59,114,62,48,63,115,62,111,58,115,60,111,59,115,45,61,99,41,102,61,72,117,40,91,97,44,45,117,42,104,117,40,115,41,44,45,117,42,121,117,40,115,41,93,41,44,116,46,112,111,105,110,116,40,102,91,48,93,44,102,91,49,93,41,125,125,102,117,110,99,116,105,111,110,32,116,102,40,116,44,110,41,123,40,110,61,106,117,40,110,41,41,91,48,93,45,61,116,44,87,117,40,110,41,59,118,97,114,32,101,61,120,117,40,45,110,91,49,93,41,59,114,101,116,117,114,110,40,40,45,110,91,50,93,60,48,63,45,101,58,101,41,43,97,117,45,110,117,41,37,97,117,125,102,117,110,99,116,105,111,110,32,110,102,40,41,123,118,97,114,32,116,44,110,61,91,93,59,114,101,116,117,114,110,123,112,111,105,110,116,58,102,117,110,99,116,105,111,110,40,110,44,101,41,123,116,46,112,117,115,104,40,91,110,44,101,93,41,125,44,108,105,110,101,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,110,46,112,117,115,104,40,116,61,91,93,41,125,44,108,105,110,101,69,110,100,58,78,117,44,114,101,106,111,105,110,58,102,117,110,99,116,105,111,110,40,41,123,110,46,108,101,110,103,116,104,62,49,38,38,110,46,112,117,115,104,40,110,46,112,111,112,40,41,46,99,111,110,99,97,116,40,110,46,115,104,105,102,116,40,41,41,41,125,44,114,101,115,117,108,116,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,110,59,114,101,116,117,114,110,32,110,61,91,93,44,116,61,110,117,108,108,44,101,125,125,125,102,117,110,99,116,105,111,110,32,101,102,40,116,44,110,41,123,114,101,116,117,114,110,32,102,117,40,116,91,48,93,45,110,91,48,93,41,60,110,117,38,38,102,117,40,116,91,49,93,45,110,91,49,93,41,60,110,117,125,102,117,110,99,116,105,111,110,32,114,102,40,116,44,110,44,101,44,114,41,123,116,104,105,115,46,120,61,116,44,116,104,105,115,46,122,61,110,44,116,104,105,115,46,111,61,101,44,116,104,105,115,46,101,61,114,44,116,104,105,115,46,118,61,33,49,44,116,104,105,115,46,110,61,116,104,105,115,46,112,61,110,117,108,108,125,102,117,110,99,116,105,111,110,32,111,102,40,116,44,110,44,101,44,114,44,105,41,123,118,97,114,32,111,44,97,44,117,61,91,93,44,99,61,91,93,59,105,102,40,116,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,33,40,40,110,61,116,46,108,101,110,103,116,104,45,49,41,60,61,48,41,41,123,118,97,114,32,110,44,101,44,114,61,116,91,48,93,44,97,61,116,91,110,93,59,105,102,40,101,102,40,114,44,97,41,41,123,102,111,114,40,105,46,108,105,110,101,83,116,97,114,116,40,41,44,111,61,48,59,111,60,110,59,43,43,111,41,105,46,112,111,105,110,116,40,40,114,61,116,91,111,93,41,91,48,93,44,114,91,49,93,41,59,105,46,108,105,110,101,69,110,100,40,41,125,101,108,115,101,32,117,46,112,117,115,104,40,101,61,110,101,119,32,114,102,40,114,44,116,44,110,117,108,108,44,33,48,41,41,44,99,46,112,117,115,104,40,101,46,111,61,110,101,119,32,114,102,40,114,44,110,117,108,108,44,101,44,33,49,41,41,44,117,46,112,117,115,104,40,101,61,110,101,119,32,114,102,40,97,44,116,44,110,117,108,108,44,33,49,41,41,44,99,46,112,117,115,104,40,101,46,111,61,110,101,119,32,114,102,40,97,44,110,117,108,108,44,101,44,33,48,41,41,125,125,41,44,117,46,108,101,110,103,116,104,41,123,102,111,114,40,99,46,115,111,114,116,40,110,41,44,97,102,40,117,41,44,97,102,40,99,41,44,111,61,48,44,97,61,99,46,108,101,110,103,116,104,59,111,60,97,59,43,43,111,41,99,91,111,93,46,101,61,101,61,33,101,59,102,111,114,40,118,97,114,32,102,44,115,44,108,61,117,91,48,93,59,59,41,123,102,111,114,40,118,97,114,32,104,61,108,44,100,61,33,48,59,104,46,118,59,41,105,102,40,40,104,61,104,46,110,41,61,61,61,108,41,114,101,116,117,114,110,59,102,61,104,46,122,44,105,46,108,105,110,101,83,116,97,114,116,40,41,59,100,111,123,105,102,40,104,46,118,61,104,46,111,46,118,61,33,48,44,104,46,101,41,123,105,102,40,100,41,102,111,114,40,111,61,48,44,97,61,102,46,108,101,110,103,116,104,59,111,60,97,59,43,43,111,41,105,46,112,111,105,110,116,40,40,115,61,102,91,111,93,41,91,48,93,44,115,91,49,93,41,59,101,108,115,101,32,114,40,104,46,120,44,104,46,110,46,120,44,49,44,105,41,59,104,61,104,46,110,125,101,108,115,101,123,105,102,40,100,41,102,111,114,40,102,61,104,46,112,46,122,44,111,61,102,46,108,101,110,103,116,104,45,49,59,111,62,61,48,59,45,45,111,41,105,46,112,111,105,110,116,40,40,115,61,102,91,111,93,41,91,48,93,44,115,91,49,93,41,59,101,108,115,101,32,114,40,104,46,120,44,104,46,112,46,120,44,45,49,44,105,41,59,104,61,104,46,112,125,102,61,40,104,61,104,46,111,41,46,122,44,100,61,33,100,125,119,104,105,108,101,40,33,104,46,118,41,59,105,46,108,105,110,101,69,110,100,40,41,125,125,125,102,117,110,99,116,105,111,110,32,97,102,40,116,41,123,105,102,40,110,61,116,46,108,101,110,103,116,104,41,123,102,111,114,40,118,97,114,32,110,44,101,44,114,61,48,44,105,61,116,91,48,93,59,43,43,114,60,110,59,41,105,46,110,61,101,61,116,91,114,93,44,101,46,112,61,105,44,105,61,101,59,105,46,110,61,101,61,116,91,48,93,44,101,46,112,61,105,125,125,71,99,46,105,110,118,101,114,116,61,71,99,59,118,97,114,32,117,102,61,81,97,40,41,59,102,117,110,99,116,105,111,110,32,99,102,40,116,41,123,114,101,116,117,114,110,32,102,117,40,116,91,48,93,41,60,61,114,117,63,116,91,48,93,58,95,117,40,116,91,48,93,41,42,40,40,102,117,40,116,91,48,93,41,43,114,117,41,37,97,117,45,114,117,41,125,102,117,110,99,116,105,111,110,32,102,102,40,116,44,110,41,123,118,97,114,32,101,61,99,102,40,110,41,44,114,61,110,91,49,93,44,105,61,121,117,40,114,41,44,111,61,91,121,117,40,101,41,44,45,104,117,40,101,41,44,48,93,44,97,61,48,44,117,61,48,59,117,102,46,114,101,115,101,116,40,41,44,49,61,61,61,105,63,114,61,105,117,43,110,117,58,45,49,61,61,61,105,38,38,40,114,61,45,105,117,45,110,117,41,59,102,111,114,40,118,97,114,32,99,61,48,44,102,61,116,46,108,101,110,103,116,104,59,99,60,102,59,43,43,99,41,105,102,40,108,61,40,115,61,116,91,99,93,41,46,108,101,110,103,116,104,41,102,111,114,40,118,97,114,32,115,44,108,44,104,61,115,91,108,45,49,93,44,100,61,99,102,40,104,41,44,112,61,104,91,49,93,47,50,43,111,117,44,118,61,121,117,40,112,41,44,103,61,104,117,40,112,41,44,121,61,48,59,121,60,108,59,43,43,121,44,100,61,98,44,118,61,120,44,103,61,119,44,104,61,95,41,123,118,97,114,32,95,61,115,91,121,93,44,98,61,99,102,40,95,41,44,109,61,95,91,49,93,47,50,43,111,117,44,120,61,121,117,40,109,41,44,119,61,104,117,40,109,41,44,77,61,98,45,100,44,78,61,77,62,61,48,63,49,58,45,49,44,84,61,78,42,77,44,65,61,84,62,114,117,44,83,61,118,42,120,59,105,102,40,117,102,46,97,100,100,40,108,117,40,83,42,78,42,121,117,40,84,41,44,103,42,119,43,83,42,104,117,40,84,41,41,41,44,97,43,61,65,63,77,43,78,42,97,117,58,77,44,65,94,100,62,61,101,94,98,62,61,101,41,123,118,97,114,32,107,61,86,117,40,106,117,40,104,41,44,106,117,40,95,41,41,59,87,117,40,107,41,59,118,97,114,32,69,61,86,117,40,111,44,107,41,59,87,117,40,69,41,59,118,97,114,32,67,61,40,65,94,77,62,61,48,63,45,49,58,49,41,42,119,117,40,69,91,50,93,41,59,40,114,62,67,124,124,114,61,61,61,67,38,38,40,107,91,48,93,124,124,107,91,49,93,41,41,38,38,40,117,43,61,65,94,77,62,61,48,63,49,58,45,49,41,125,125,114,101,116,117,114,110,40,97,60,45,110,117,124,124,97,60,110,117,38,38,117,102,60,45,110,117,41,94,49,38,117,125,102,117,110,99,116,105,111,110,32,115,102,40,116,44,110,44,101,44,114,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,105,41,123,118,97,114,32,111,44,97,44,117,44,99,61,110,40,105,41,44,102,61,110,102,40,41,44,115,61,110,40,102,41,44,108,61,33,49,44,104,61,123,112,111,105,110,116,58,100,44,108,105,110,101,83,116,97,114,116,58,118,44,108,105,110,101,69,110,100,58,103,44,112,111,108,121,103,111,110,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,104,46,112,111,105,110,116,61,121,44,104,46,108,105,110,101,83,116,97,114,116,61,95,44,104,46,108,105,110,101,69,110,100,61,98,44,97,61,91,93,44,111,61,91,93,125,44,112,111,108,121,103,111,110,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,104,46,112,111,105,110,116,61,100,44,104,46,108,105,110,101,83,116,97,114,116,61,118,44,104,46,108,105,110,101,69,110,100,61,103,44,97,61,65,40,97,41,59,118,97,114,32,116,61,102,102,40,111,44,114,41,59,97,46,108,101,110,103,116,104,63,40,108,124,124,40,105,46,112,111,108,121,103,111,110,83,116,97,114,116,40,41,44,108,61,33,48,41,44,111,102,40,97,44,104,102,44,116,44,101,44,105,41,41,58,116,38,38,40,108,124,124,40,105,46,112,111,108,121,103,111,110,83,116,97,114,116,40,41,44,108,61,33,48,41,44,105,46,108,105,110,101,83,116,97,114,116,40,41,44,101,40,110,117,108,108,44,110,117,108,108,44,49,44,105,41,44,105,46,108,105,110,101,69,110,100,40,41,41,44,108,38,38,40,105,46,112,111,108,121,103,111,110,69,110,100,40,41,44,108,61,33,49,41,44,97,61,111,61,110,117,108,108,125,44,115,112,104,101,114,101,58,102,117,110,99,116,105,111,110,40,41,123,105,46,112,111,108,121,103,111,110,83,116,97,114,116,40,41,44,105,46,108,105,110,101,83,116,97,114,116,40,41,44,101,40,110,117,108,108,44,110,117,108,108,44,49,44,105,41,44,105,46,108,105,110,101,69,110,100,40,41,44,105,46,112,111,108,121,103,111,110,69,110,100,40,41,125,125,59,102,117,110,99,116,105,111,110,32,100,40,110,44,101,41,123,116,40,110,44,101,41,38,38,105,46,112,111,105,110,116,40,110,44,101,41,125,102,117,110,99,116,105,111,110,32,112,40,116,44,110,41,123,99,46,112,111,105,110,116,40,116,44,110,41,125,102,117,110,99,116,105,111,110,32,118,40,41,123,104,46,112,111,105,110,116,61,112,44,99,46,108,105,110,101,83,116,97,114,116,40,41,125,102,117,110,99,116,105,111,110,32,103,40,41,123,104,46,112,111,105,110,116,61,100,44,99,46,108,105,110,101,69,110,100,40,41,125,102,117,110,99,116,105,111,110,32,121,40,116,44,110,41,123,117,46,112,117,115,104,40,91,116,44,110,93,41,44,115,46,112,111,105,110,116,40,116,44,110,41,125,102,117,110,99,116,105,111,110,32,95,40,41,123,115,46,108,105,110,101,83,116,97,114,116,40,41,44,117,61,91,93,125,102,117,110,99,116,105,111,110,32,98,40,41,123,121,40,117,91,48,93,91,48,93,44,117,91,48,93,91,49,93,41,44,115,46,108,105,110,101,69,110,100,40,41,59,118,97,114,32,116,44,110,44,101,44,114,44,99,61,115,46,99,108,101,97,110,40,41,44,104,61,102,46,114,101,115,117,108,116,40,41,44,100,61,104,46,108,101,110,103,116,104,59,105,102,40,117,46,112,111,112,40,41,44,111,46,112,117,115,104,40,117,41,44,117,61,110,117,108,108,44,100,41,105,102,40,49,38,99,41,123,105,102,40,40,110,61,40,101,61,104,91,48,93,41,46,108,101,110,103,116,104,45,49,41,62,48,41,123,102,111,114,40,108,124,124,40,105,46,112,111,108,121,103,111,110,83,116,97,114,116,40,41,44,108,61,33,48,41,44,105,46,108,105,110,101,83,116,97,114,116,40,41,44,116,61,48,59,116,60,110,59,43,43,116,41,105,46,112,111,105,110,116,40,40,114,61,101,91,116,93,41,91,48,93,44,114,91,49,93,41,59,105,46,108,105,110,101,69,110,100,40,41,125,125,101,108,115,101,32,100,62,49,38,38,50,38,99,38,38,104,46,112,117,115,104,40,104,46,112,111,112,40,41,46,99,111,110,99,97,116,40,104,46,115,104,105,102,116,40,41,41,41,44,97,46,112,117,115,104,40,104,46,102,105,108,116,101,114,40,108,102,41,41,125,114,101,116,117,114,110,32,104,125,125,102,117,110,99,116,105,111,110,32,108,102,40,116,41,123,114,101,116,117,114,110,32,116,46,108,101,110,103,116,104,62,49,125,102,117,110,99,116,105,111,110,32,104,102,40,116,44,110,41,123,114,101,116,117,114,110,40,40,116,61,116,46,120,41,91,48,93,60,48,63,116,91,49,93,45,105,117,45,110,117,58,105,117,45,116,91,49,93,41,45,40,40,110,61,110,46,120,41,91,48,93,60,48,63,110,91,49,93,45,105,117,45,110,117,58,105,117,45,110,91,49,93,41,125,118,97,114,32,100,102,61,115,102,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,33,48,125,44,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,44,101,61,78,97,78,44,114,61,78,97,78,44,105,61,78,97,78,59,114,101,116,117,114,110,123,108,105,110,101,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,116,46,108,105,110,101,83,116,97,114,116,40,41,44,110,61,49,125,44,112,111,105,110,116,58,102,117,110,99,116,105,111,110,40,111,44,97,41,123,118,97,114,32,117,61,111,62,48,63,114,117,58,45,114,117,44,99,61,102,117,40,111,45,101,41,59,102,117,40,99,45,114,117,41,60,110,117,63,40,116,46,112,111,105,110,116,40,101,44,114,61,40,114,43,97,41,47,50,62,48,63,105,117,58,45,105,117,41,44,116,46,112,111,105,110,116,40,105,44,114,41,44,116,46,108,105,110,101,69,110,100,40,41,44,116,46,108,105,110,101,83,116,97,114,116,40,41,44,116,46,112,111,105,110,116,40,117,44,114,41,44,116,46,112,111,105,110,116,40,111,44,114,41,44,110,61,48,41,58,105,33,61,61,117,38,38,99,62,61,114,117,38,38,40,102,117,40,101,45,105,41,60,110,117,38,38,40,101,45,61,105,42,110,117,41,44,102,117,40,111,45,117,41,60,110,117,38,38,40,111,45,61,117,42,110,117,41,44,114,61,102,117,110,99,116,105,111,110,40,116,44,110,44,101,44,114,41,123,118,97,114,32,105,44,111,44,97,61,121,117,40,116,45,101,41,59,114,101,116,117,114,110,32,102,117,40,97,41,62,110,117,63,115,117,40,40,121,117,40,110,41,42,40,111,61,104,117,40,114,41,41,42,121,117,40,101,41,45,121,117,40,114,41,42,40,105,61,104,117,40,110,41,41,42,121,117,40,116,41,41,47,40,105,42,111,42,97,41,41,58,40,110,43,114,41,47,50,125,40,101,44,114,44,111,44,97,41,44,116,46,112,111,105,110,116,40,105,44,114,41,44,116,46,108,105,110,101,69,110,100,40,41,44,116,46,108,105,110,101,83,116,97,114,116,40,41,44,116,46,112,111,105,110,116,40,117,44,114,41,44,110,61,48,41,44,116,46,112,111,105,110,116,40,101,61,111,44,114,61,97,41,44,105,61,117,125,44,108,105,110,101,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,116,46,108,105,110,101,69,110,100,40,41,44,101,61,114,61,78,97,78,125,44,99,108,101,97,110,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,50,45,110,125,125,125,44,102,117,110,99,116,105,111,110,40,116,44,110,44,101,44,114,41,123,118,97,114,32,105,59,105,102,40,110,117,108,108,61,61,116,41,105,61,101,42,105,117,44,114,46,112,111,105,110,116,40,45,114,117,44,105,41,44,114,46,112,111,105,110,116,40,48,44,105,41,44,114,46,112,111,105,110,116,40,114,117,44,105,41,44,114,46,112,111,105,110,116,40,114,117,44,48,41,44,114,46,112,111,105,110,116,40,114,117,44,45,105,41,44,114,46,112,111,105,110,116,40,48,44,45,105,41,44,114,46,112,111,105,110,116,40,45,114,117,44,45,105,41,44,114,46,112,111,105,110,116,40,45,114,117,44,48,41,44,114,46,112,111,105,110,116,40,45,114,117,44,105,41,59,101,108,115,101,32,105,102,40,102,117,40,116,91,48,93,45,110,91,48,93,41,62,110,117,41,123,118,97,114,32,111,61,116,91,48,93,60,110,91,48,93,63,114,117,58,45,114,117,59,105,61,101,42,111,47,50,44,114,46,112,111,105,110,116,40,45,111,44,105,41,44,114,46,112,111,105,110,116,40,48,44,105,41,44,114,46,112,111,105,110,116,40,111,44,105,41,125,101,108,115,101,32,114,46,112,111,105,110,116,40,110,91,48,93,44,110,91,49,93,41,125,44,91,45,114,117,44,45,105,117,93,41,59,102,117,110,99,116,105,111,110,32,112,102,40,116,41,123,118,97,114,32,110,61,104,117,40,116,41,44,101,61,54,42,99,117,44,114,61,110,62,48,44,105,61,102,117,40,110,41,62,110,117,59,102,117,110,99,116,105,111,110,32,111,40,116,44,101,41,123,114,101,116,117,114,110,32,104,117,40,116,41,42,104,117,40,101,41,62,110,125,102,117,110,99,116,105,111,110,32,97,40,116,44,101,44,114,41,123,118,97,114,32,105,61,91,49,44,48,44,48,93,44,111,61,86,117,40,106,117,40,116,41,44,106,117,40,101,41,41,44,97,61,88,117,40,111,44,111,41,44,117,61,111,91,48,93,44,99,61,97,45,117,42,117,59,105,102,40,33,99,41,114,101,116,117,114,110,33,114,38,38,116,59,118,97,114,32,102,61,110,42,97,47,99,44,115,61,45,110,42,117,47,99,44,108,61,86,117,40,105,44,111,41,44,104,61,36,117,40,105,44,102,41,59,71,117,40,104,44,36,117,40,111,44,115,41,41,59,118,97,114,32,100,61,108,44,112,61,88,117,40,104,44,100,41,44,118,61,88,117,40,100,44,100,41,44,103,61,112,42,112,45,118,42,40,88,117,40,104,44,104,41,45,49,41,59,105,102,40,33,40,103,60,48,41,41,123,118,97,114,32,121,61,98,117,40,103,41,44,95,61,36,117,40,100,44,40,45,112,45,121,41,47,118,41,59,105,102,40,71,117,40,95,44,104,41,44,95,61,72,117,40,95,41,44,33,114,41,114,101,116,117,114,110,32,95,59,118,97,114,32,98,44,109,61,116,91,48,93,44,120,61,101,91,48,93,44,119,61,116,91,49,93,44,77,61,101,91,49,93,59,120,60,109,38,38,40,98,61,109,44,109,61,120,44,120,61,98,41,59,118,97,114,32,78,61,120,45,109,44,84,61,102,117,40,78,45,114,117,41,60,110,117,59,105,102,40,33,84,38,38,77,60,119,38,38,40,98,61,119,44,119,61,77,44,77,61,98,41,44,84,124,124,78,60,110,117,63,84,63,119,43,77,62,48,94,95,91,49,93,60,40,102,117,40,95,91,48,93,45,109,41,60,110,117,63,119,58,77,41,58,119,60,61,95,91,49,93,38,38,95,91,49,93,60,61,77,58,78,62,114,117,94,40,109,60,61,95,91,48,93,38,38,95,91,48,93,60,61,120,41,41,123,118,97,114,32,65,61,36,117,40,100,44,40,45,112,43,121,41,47,118,41,59,114,101,116,117,114,110,32,71,117,40,65,44,104,41,44,91,95,44,72,117,40,65,41,93,125,125,125,102,117,110,99,116,105,111,110,32,117,40,110,44,101,41,123,118,97,114,32,105,61,114,63,116,58,114,117,45,116,44,111,61,48,59,114,101,116,117,114,110,32,110,60,45,105,63,111,124,61,49,58,110,62,105,38,38,40,111,124,61,50,41,44,101,60,45,105,63,111,124,61,52,58,101,62,105,38,38,40,111,124,61,56,41,44,111,125,114,101,116,117,114,110,32,115,102,40,111,44,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,44,101,44,99,44,102,44,115,59,114,101,116,117,114,110,123,108,105,110,101,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,102,61,99,61,33,49,44,115,61,49,125,44,112,111,105,110,116,58,102,117,110,99,116,105,111,110,40,108,44,104,41,123,118,97,114,32,100,44,112,61,91,108,44,104,93,44,118,61,111,40,108,44,104,41,44,103,61,114,63,118,63,48,58,117,40,108,44,104,41,58,118,63,117,40,108,43,40,108,60,48,63,114,117,58,45,114,117,41,44,104,41,58,48,59,105,102,40,33,110,38,38,40,102,61,99,61,118,41,38,38,116,46,108,105,110,101,83,116,97,114,116,40,41,44,118,33,61,61,99,38,38,40,33,40,100,61,97,40,110,44,112,41,41,124,124,101,102,40,110,44,100,41,124,124,101,102,40,112,44,100,41,41,38,38,40,112,91,48,93,43,61,110,117,44,112,91,49,93,43,61,110,117,44,118,61,111,40,112,91,48,93,44,112,91,49,93,41,41,44,118,33,61,61,99,41,115,61,48,44,118,63,40,116,46,108,105,110,101,83,116,97,114,116,40,41,44,100,61,97,40,112,44,110,41,44,116,46,112,111,105,110,116,40,100,91,48,93,44,100,91,49,93,41,41,58,40,100,61,97,40,110,44,112,41,44,116,46,112,111,105,110,116,40,100,91,48,93,44,100,91,49,93,41,44,116,46,108,105,110,101,69,110,100,40,41,41,44,110,61,100,59,101,108,115,101,32,105,102,40,105,38,38,110,38,38,114,94,118,41,123,118,97,114,32,121,59,103,38,101,124,124,33,40,121,61,97,40,112,44,110,44,33,48,41,41,124,124,40,115,61,48,44,114,63,40,116,46,108,105,110,101,83,116,97,114,116,40,41,44,116,46,112,111,105,110,116,40,121,91,48,93,91,48,93,44,121,91,48,93,91,49,93,41,44,116,46,112,111,105,110,116,40,121,91,49,93,91,48,93,44,121,91,49,93,91,49,93,41,44,116,46,108,105,110,101,69,110,100,40,41,41,58,40,116,46,112,111,105,110,116,40,121,91,49,93,91,48,93,44,121,91,49,93,91,49,93,41,44,116,46,108,105,110,101,69,110,100,40,41,44,116,46,108,105,110,101,83,116,97,114,116,40,41,44,116,46,112,111,105,110,116,40,121,91,48,93,91,48,93,44,121,91,48,93,91,49,93,41,41,41,125,33,118,124,124,110,38,38,101,102,40,110,44,112,41,124,124,116,46,112,111,105,110,116,40,112,91,48,93,44,112,91,49,93,41,44,110,61,112,44,99,61,118,44,101,61,103,125,44,108,105,110,101,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,99,38,38,116,46,108,105,110,101,69,110,100,40,41,44,110,61,110,117,108,108,125,44,99,108,101,97,110,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,115,124,40,102,38,38,99,41,60,60,49,125,125,125,44,102,117,110,99,116,105,111,110,40,110,44,114,44,105,44,111,41,123,74,99,40,111,44,116,44,101,44,105,44,110,44,114,41,125,44,114,63,91,48,44,45,116,93,58,91,45,114,117,44,116,45,114,117,93,41,125,118,97,114,32,118,102,61,49,101,57,44,103,102,61,45,118,102,59,102,117,110,99,116,105,111,110,32,121,102,40,116,44,110,44,101,44,114,41,123,102,117,110,99,116,105,111,110,32,105,40,105,44,111,41,123,114,101,116,117,114,110,32,116,60,61,105,38,38,105,60,61,101,38,38,110,60,61,111,38,38,111,60,61,114,125,102,117,110,99,116,105,111,110,32,111,40,105,44,111,44,117,44,102,41,123,118,97,114,32,115,61,48,44,108,61,48,59,105,102,40,110,117,108,108,61,61,105,124,124,40,115,61,97,40,105,44,117,41,41,33,61,61,40,108,61,97,40,111,44,117,41,41,124,124,99,40,105,44,111,41,60,48,94,117,62,48,41,100,111,123,102,46,112,111,105,110,116,40,48,61,61,61,115,124,124,51,61,61,61,115,63,116,58,101,44,115,62,49,63,114,58,110,41,125,119,104,105,108,101,40,40,115,61,40,115,43,117,43,52,41,37,52,41,33,61,61,108,41,59,101,108,115,101,32,102,46,112,111,105,110,116,40,111,91,48,93,44,111,91,49,93,41,125,102,117,110,99,116,105,111,110,32,97,40,114,44,105,41,123,114,101,116,117,114,110,32,102,117,40,114,91,48,93,45,116,41,60,110,117,63,105,62,48,63,48,58,51,58,102,117,40,114,91,48,93,45,101,41,60,110,117,63,105,62,48,63,50,58,49,58,102,117,40,114,91,49,93,45,110,41,60,110,117,63,105,62,48,63,49,58,48,58,105,62,48,63,51,58,50,125,102,117,110,99,116,105,111,110,32,117,40,116,44,110,41,123,114,101,116,117,114,110,32,99,40,116,46,120,44,110,46,120,41,125,102,117,110,99,116,105,111,110,32,99,40,116,44,110,41,123,118,97,114,32,101,61,97,40,116,44,49,41,44,114,61,97,40,110,44,49,41,59,114,101,116,117,114,110,32,101,33,61,61,114,63,101,45,114,58,48,61,61,61,101,63,110,91,49,93,45,116,91,49,93,58,49,61,61,61,101,63,116,91,48,93,45,110,91,48,93,58,50,61,61,61,101,63,116,91,49,93,45,110,91,49,93,58,110,91,48,93,45,116,91,48,93,125,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,97,41,123,118,97,114,32,99,44,102,44,115,44,108,44,104,44,100,44,112,44,118,44,103,44,121,44,95,44,98,61,97,44,109,61,110,102,40,41,44,120,61,123,112,111,105,110,116,58,119,44,108,105,110,101,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,120,46,112,111,105,110,116,61,77,44,102,38,38,102,46,112,117,115,104,40,115,61,91,93,41,59,121,61,33,48,44,103,61,33,49,44,112,61,118,61,78,97,78,125,44,108,105,110,101,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,99,38,38,40,77,40,108,44,104,41,44,100,38,38,103,38,38,109,46,114,101,106,111,105,110,40,41,44,99,46,112,117,115,104,40,109,46,114,101,115,117,108,116,40,41,41,41,59,120,46,112,111,105,110,116,61,119,44,103,38,38,98,46,108,105,110,101,69,110,100,40,41,125,44,112,111,108,121,103,111,110,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,98,61,109,44,99,61,91,93,44,102,61,91,93,44,95,61,33,48,125,44,112,111,108,121,103,111,110,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,110,61,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,118,97,114,32,110,61,48,44,101,61,48,44,105,61,102,46,108,101,110,103,116,104,59,101,60,105,59,43,43,101,41,102,111,114,40,118,97,114,32,111,44,97,44,117,61,102,91,101,93,44,99,61,49,44,115,61,117,46,108,101,110,103,116,104,44,108,61,117,91,48,93,44,104,61,108,91,48,93,44,100,61,108,91,49,93,59,99,60,115,59,43,43,99,41,111,61,104,44,97,61,100,44,108,61,117,91,99,93,44,104,61,108,91,48,93,44,100,61,108,91,49,93,44,97,60,61,114,63,100,62,114,38,38,40,104,45,111,41,42,40,114,45,97,41,62,40,100,45,97,41,42,40,116,45,111,41,38,38,43,43,110,58,100,60,61,114,38,38,40,104,45,111,41,42,40,114,45,97,41,60,40,100,45,97,41,42,40,116,45,111,41,38,38,45,45,110,59,114,101,116,117,114,110,32,110,125,40,41,44,101,61,95,38,38,110,44,105,61,40,99,61,65,40,99,41,41,46,108,101,110,103,116,104,59,40,101,124,124,105,41,38,38,40,97,46,112,111,108,121,103,111,110,83,116,97,114,116,40,41,44,101,38,38,40,97,46,108,105,110,101,83,116,97,114,116,40,41,44,111,40,110,117,108,108,44,110,117,108,108,44,49,44,97,41,44,97,46,108,105,110,101,69,110,100,40,41,41,44,105,38,38,111,102,40,99,44,117,44,110,44,111,44,97,41,44,97,46,112,111,108,121,103,111,110,69,110,100,40,41,41,59,98,61,97,44,99,61,102,61,115,61,110,117,108,108,125,125,59,102,117,110,99,116,105,111,110,32,119,40,116,44,110,41,123,105,40,116,44,110,41,38,38,98,46,112,111,105,110,116,40,116,44,110,41,125,102,117,110,99,116,105,111,110,32,77,40,111,44,97,41,123,118,97,114,32,117,61,105,40,111,44,97,41,59,105,102,40,102,38,38,115,46,112,117,115,104,40,91,111,44,97,93,41,44,121,41,108,61,111,44,104,61,97,44,100,61,117,44,121,61,33,49,44,117,38,38,40,98,46,108,105,110,101,83,116,97,114,116,40,41,44,98,46,112,111,105,110,116,40,111,44,97,41,41,59,101,108,115,101,32,105,102,40,117,38,38,103,41,98,46,112,111,105,110,116,40,111,44,97,41,59,101,108,115,101,123,118,97,114,32,99,61,91,112,61,77,97,116,104,46,109,97,120,40,103,102,44,77,97,116,104,46,109,105,110,40,118,102,44,112,41,41,44,118,61,77,97,116,104,46,109,97,120,40,103,102,44,77,97,116,104,46,109,105,110,40,118,102,44,118,41,41,93,44,109,61,91,111,61,77,97,116,104,46,109,97,120,40,103,102,44,77,97,116,104,46,109,105,110,40,118,102,44,111,41,41,44,97,61,77,97,116,104,46,109,97,120,40,103,102,44,77,97,116,104,46,109,105,110,40,118,102,44,97,41,41,93,59,33,102,117,110,99,116,105,111,110,40,116,44,110,44,101,44,114,44,105,44,111,41,123,118,97,114,32,97,44,117,61,116,91,48,93,44,99,61,116,91,49,93,44,102,61,48,44,115,61,49,44,108,61,110,91,48,93,45,117,44,104,61,110,91,49,93,45,99,59,105,102,40,97,61,101,45,117,44,108,124,124,33,40,97,62,48,41,41,123,105,102,40,97,47,61,108,44,108,60,48,41,123,105,102,40,97,60,102,41,114,101,116,117,114,110,59,97,60,115,38,38,40,115,61,97,41,125,101,108,115,101,32,105,102,40,108,62,48,41,123,105,102,40,97,62,115,41,114,101,116,117,114,110,59,97,62,102,38,38,40,102,61,97,41,125,105,102,40,97,61,105,45,117,44,108,124,124,33,40,97,60,48,41,41,123,105,102,40,97,47,61,108,44,108,60,48,41,123,105,102,40,97,62,115,41,114,101,116,117,114,110,59,97,62,102,38,38,40,102,61,97,41,125,101,108,115,101,32,105,102,40,108,62,48,41,123,105,102,40,97,60,102,41,114,101,116,117,114,110,59,97,60,115,38,38,40,115,61,97,41,125,105,102,40,97,61,114,45,99,44,104,124,124,33,40,97,62,48,41,41,123,105,102,40,97,47,61,104,44,104,60,48,41,123,105,102,40,97,60,102,41,114,101,116,117,114,110,59,97,60,115,38,38,40,115,61,97,41,125,101,108,115,101,32,105,102,40,104,62,48,41,123,105,102,40,97,62,115,41,114,101,116,117,114,110,59,97,62,102,38,38,40,102,61,97,41,125,105,102,40,97,61,111,45,99,44,104,124,124,33,40,97,60,48,41,41,123,105,102,40,97,47,61,104,44,104,60,48,41,123,105,102,40,97,62,115,41,114,101,116,117,114,110,59,97,62,102,38,38,40,102,61,97,41,125,101,108,115,101,32,105,102,40,104,62,48,41,123,105,102,40,97,60,102,41,114,101,116,117,114,110,59,97,60,115,38,38,40,115,61,97,41,125,114,101,116,117,114,110,32,102,62,48,38,38,40,116,91,48,93,61,117,43,102,42,108,44,116,91,49,93,61,99,43,102,42,104,41,44,115,60,49,38,38,40,110,91,48,93,61,117,43,115,42,108,44,110,91,49,93,61,99,43,115,42,104,41,44,33,48,125,125,125,125,125,40,99,44,109,44,116,44,110,44,101,44,114,41,63,117,38,38,40,98,46,108,105,110,101,83,116,97,114,116,40,41,44,98,46,112,111,105,110,116,40,111,44,97,41,44,95,61,33,49,41,58,40,103,124,124,40,98,46,108,105,110,101,83,116,97,114,116,40,41,44,98,46,112,111,105,110,116,40,99,91,48,93,44,99,91,49,93,41,41,44,98,46,112,111,105,110,116,40,109,91,48,93,44,109,91,49,93,41,44,117,124,124,98,46,108,105,110,101,69,110,100,40,41,44,95,61,33,49,41,125,112,61,111,44,118,61,97,44,103,61,117,125,114,101,116,117,114,110,32,120,125,125,118,97,114,32,95,102,44,98,102,44,109,102,44,120,102,61,81,97,40,41,44,119,102,61,123,115,112,104,101,114,101,58,78,117,44,112,111,105,110,116,58,78,117,44,108,105,110,101,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,119,102,46,112,111,105,110,116,61,78,102,44,119,102,46,108,105,110,101,69,110,100,61,77,102,125,44,108,105,110,101,69,110,100,58,78,117,44,112,111,108,121,103,111,110,83,116,97,114,116,58,78,117,44,112,111,108,121,103,111,110,69,110,100,58,78,117,125,59,102,117,110,99,116,105,111,110,32,77,102,40,41,123,119,102,46,112,111,105,110,116,61,119,102,46,108,105,110,101,69,110,100,61,78,117,125,102,117,110,99,116,105,111,110,32,78,102,40,116,44,110,41,123,95,102,61,116,42,61,99,117,44,98,102,61,121,117,40,110,42,61,99,117,41,44,109,102,61,104,117,40,110,41,44,119,102,46,112,111,105,110,116,61,84,102,125,102,117,110,99,116,105,111,110,32,84,102,40,116,44,110,41,123,116,42,61,99,117,59,118,97,114,32,101,61,121,117,40,110,42,61,99,117,41,44,114,61,104,117,40,110,41,44,105,61,102,117,40,116,45,95,102,41,44,111,61,104,117,40,105,41,44,97,61,114,42,121,117,40,105,41,44,117,61,109,102,42,101,45,98,102,42,114,42,111,44,99,61,98,102,42,101,43,109,102,42,114,42,111,59,120,102,46,97,100,100,40,108,117,40,98,117,40,97,42,97,43,117,42,117,41,44,99,41,41,44,95,102,61,116,44,98,102,61,101,44,109,102,61,114,125,102,117,110,99,116,105,111,110,32,65,102,40,116,41,123,114,101,116,117,114,110,32,120,102,46,114,101,115,101,116,40,41,44,67,117,40,116,44,119,102,41,44,43,120,102,125,118,97,114,32,83,102,61,91,110,117,108,108,44,110,117,108,108,93,44,107,102,61,123,116,121,112,101,58,34,76,105,110,101,83,116,114,105,110,103,34,44,99,111,111,114,100,105,110,97,116,101,115,58,83,102,125,59,102,117,110,99,116,105,111,110,32,69,102,40,116,44,110,41,123,114,101,116,117,114,110,32,83,102,91,48,93,61,116,44,83,102,91,49,93,61,110,44,65,102,40,107,102,41,125,118,97,114,32,67,102,61,123,70,101,97,116,117,114,101,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,122,102,40,116,46,103,101,111,109,101,116,114,121,44,110,41,125,44,70,101,97,116,117,114,101,67,111,108,108,101,99,116,105,111,110,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,102,111,114,40,118,97,114,32,101,61,116,46,102,101,97,116,117,114,101,115,44,114,61,45,49,44,105,61,101,46,108,101,110,103,116,104,59,43,43,114,60,105,59,41,105,102,40,122,102,40,101,91,114,93,46,103,101,111,109,101,116,114,121,44,110,41,41,114,101,116,117,114,110,33,48,59,114,101,116,117,114,110,33,49,125,125,44,80,102,61,123,83,112,104,101,114,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,33,48,125,44,80,111,105,110,116,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,82,102,40,116,46,99,111,111,114,100,105,110,97,116,101,115,44,110,41,125,44,77,117,108,116,105,80,111,105,110,116,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,102,111,114,40,118,97,114,32,101,61,116,46,99,111,111,114,100,105,110,97,116,101,115,44,114,61,45,49,44,105,61,101,46,108,101,110,103,116,104,59,43,43,114,60,105,59,41,105,102,40,82,102,40,101,91,114,93,44,110,41,41,114,101,116,117,114,110,33,48,59,114,101,116,117,114,110,33,49,125,44,76,105,110,101,83,116,114,105,110,103,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,68,102,40,116,46,99,111,111,114,100,105,110,97,116,101,115,44,110,41,125,44,77,117,108,116,105,76,105,110,101,83,116,114,105,110,103,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,102,111,114,40,118,97,114,32,101,61,116,46,99,111,111,114,100,105,110,97,116,101,115,44,114,61,45,49,44,105,61,101,46,108,101,110,103,116,104,59,43,43,114,60,105,59,41,105,102,40,68,102,40,101,91,114,93,44,110,41,41,114,101,116,117,114,110,33,48,59,114,101,116,117,114,110,33,49,125,44,80,111,108,121,103,111,110,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,113,102,40,116,46,99,111,111,114,100,105,110,97,116,101,115,44,110,41,125,44,77,117,108,116,105,80,111,108,121,103,111,110,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,102,111,114,40,118,97,114,32,101,61,116,46,99,111,111,114,100,105,110,97,116,101,115,44,114,61,45,49,44,105,61,101,46,108,101,110,103,116,104,59,43,43,114,60,105,59,41,105,102,40,113,102,40,101,91,114,93,44,110,41,41,114,101,116,117,114,110,33,48,59,114,101,116,117,114,110,33,49,125,44,71,101,111,109,101,116,114,121,67,111,108,108,101,99,116,105,111,110,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,102,111,114,40,118,97,114,32,101,61,116,46,103,101,111,109,101,116,114,105,101,115,44,114,61,45,49,44,105,61,101,46,108,101,110,103,116,104,59,43,43,114,60,105,59,41,105,102,40,122,102,40,101,91,114,93,44,110,41,41,114,101,116,117,114,110,33,48,59,114,101,116,117,114,110,33,49,125,125,59,102,117,110,99,116,105,111,110,32,122,102,40,116,44,110,41,123,114,101,116,117,114,110,33,40,33,116,124,124,33,80,102,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,116,46,116,121,112,101,41,41,38,38,80,102,91,116,46,116,121,112,101,93,40,116,44,110,41,125,102,117,110,99,116,105,111,110,32,82,102,40,116,44,110,41,123,114,101,116,117,114,110,32,48,61,61,61,69,102,40,116,44,110,41,125,102,117,110,99,116,105,111,110,32,68,102,40,116,44,110,41,123,102,111,114,40,118,97,114,32,101,44,114,44,105,44,111,61,48,44,97,61,116,46,108,101,110,103,116,104,59,111,60,97,59,111,43,43,41,123,105,102,40,48,61,61,61,40,114,61,69,102,40,116,91,111,93,44,110,41,41,41,114,101,116,117,114,110,33,48,59,105,102,40,111,62,48,38,38,40,105,61,69,102,40,116,91,111,93,44,116,91,111,45,49,93,41,41,62,48,38,38,101,60,61,105,38,38,114,60,61,105,38,38,40,101,43,114,45,105,41,42,40,49,45,77,97,116,104,46,112,111,119,40,40,101,45,114,41,47,105,44,50,41,41,60,101,117,42,105,41,114,101,116,117,114,110,33,48,59,101,61,114,125,114,101,116,117,114,110,33,49,125,102,117,110,99,116,105,111,110,32,113,102,40,116,44,110,41,123,114,101,116,117,114,110,33,33,102,102,40,116,46,109,97,112,40,76,102,41,44,85,102,40,110,41,41,125,102,117,110,99,116,105,111,110,32,76,102,40,116,41,123,114,101,116,117,114,110,40,116,61,116,46,109,97,112,40,85,102,41,41,46,112,111,112,40,41,44,116,125,102,117,110,99,116,105,111,110,32,85,102,40,116,41,123,114,101,116,117,114,110,91,116,91,48,93,42,99,117,44,116,91,49,93,42,99,117,93,125,102,117,110,99,116,105,111,110,32,79,102,40,116,44,110,44,101,41,123,118,97,114,32,114,61,103,40,116,44,110,45,110,117,44,101,41,46,99,111,110,99,97,116,40,110,41,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,114,46,109,97,112,40,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,91,116,44,110,93,125,41,125,125,102,117,110,99,116,105,111,110,32,66,102,40,116,44,110,44,101,41,123,118,97,114,32,114,61,103,40,116,44,110,45,110,117,44,101,41,46,99,111,110,99,97,116,40,110,41,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,114,46,109,97,112,40,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,91,110,44,116,93,125,41,125,125,102,117,110,99,116,105,111,110,32,70,102,40,41,123,118,97,114,32,116,44,110,44,101,44,114,44,105,44,111,44,97,44,117,44,99,44,102,44,115,44,108,44,104,61,49,48,44,100,61,104,44,112,61,57,48,44,118,61,51,54,48,44,121,61,50,46,53,59,102,117,110,99,116,105,111,110,32,95,40,41,123,114,101,116,117,114,110,123,116,121,112,101,58,34,77,117,108,116,105,76,105,110,101,83,116,114,105,110,103,34,44,99,111,111,114,100,105,110,97,116,101,115,58,98,40,41,125,125,102,117,110,99,116,105,111,110,32,98,40,41,123,114,101,116,117,114,110,32,103,40,100,117,40,114,47,112,41,42,112,44,101,44,112,41,46,109,97,112,40,115,41,46,99,111,110,99,97,116,40,103,40,100,117,40,117,47,118,41,42,118,44,97,44,118,41,46,109,97,112,40,108,41,41,46,99,111,110,99,97,116,40,103,40,100,117,40,110,47,104,41,42,104,44,116,44,104,41,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,102,117,40,116,37,112,41,62,110,117,125,41,46,109,97,112,40,99,41,41,46,99,111,110,99,97,116,40,103,40,100,117,40,111,47,100,41,42,100,44,105,44,100,41,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,102,117,40,116,37,118,41,62,110,117,125,41,46,109,97,112,40,102,41,41,125,114,101,116,117,114,110,32,95,46,108,105,110,101,115,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,98,40,41,46,109,97,112,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,123,116,121,112,101,58,34,76,105,110,101,83,116,114,105,110,103,34,44,99,111,111,114,100,105,110,97,116,101,115,58,116,125,125,41,125,44,95,46,111,117,116,108,105,110,101,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,116,121,112,101,58,34,80,111,108,121,103,111,110,34,44,99,111,111,114,100,105,110,97,116,101,115,58,91,115,40,114,41,46,99,111,110,99,97,116,40,108,40,97,41,46,115,108,105,99,101,40,49,41,44,115,40,101,41,46,114,101,118,101,114,115,101,40,41,46,115,108,105,99,101,40,49,41,44,108,40,117,41,46,114,101,118,101,114,115,101,40,41,46,115,108,105,99,101,40,49,41,41,93,125,125,44,95,46,101,120,116,101,110,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,95,46,101,120,116,101,110,116,77,97,106,111,114,40,116,41,46,101,120,116,101,110,116,77,105,110,111,114,40,116,41,58,95,46,101,120,116,101,110,116,77,105,110,111,114,40,41,125,44,95,46,101,120,116,101,110,116,77,97,106,111,114,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,114,61,43,116,91,48,93,91,48,93,44,101,61,43,116,91,49,93,91,48,93,44,117,61,43,116,91,48,93,91,49,93,44,97,61,43,116,91,49,93,91,49,93,44,114,62,101,38,38,40,116,61,114,44,114,61,101,44,101,61,116,41,44,117,62,97,38,38,40,116,61,117,44,117,61,97,44,97,61,116,41,44,95,46,112,114,101,99,105,115,105,111,110,40,121,41,41,58,91,91,114,44,117,93,44,91,101,44,97,93,93,125,44,95,46,101,120,116,101,110,116,77,105,110,111,114,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,110,61,43,101,91,48,93,91,48,93,44,116,61,43,101,91,49,93,91,48,93,44,111,61,43,101,91,48,93,91,49,93,44,105,61,43,101,91,49,93,91,49,93,44,110,62,116,38,38,40,101,61,110,44,110,61,116,44,116,61,101,41,44,111,62,105,38,38,40,101,61,111,44,111,61,105,44,105,61,101,41,44,95,46,112,114,101,99,105,115,105,111,110,40,121,41,41,58,91,91,110,44,111,93,44,91,116,44,105,93,93,125,44,95,46,115,116,101,112,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,95,46,115,116,101,112,77,97,106,111,114,40,116,41,46,115,116,101,112,77,105,110,111,114,40,116,41,58,95,46,115,116,101,112,77,105,110,111,114,40,41,125,44,95,46,115,116,101,112,77,97,106,111,114,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,112,61,43,116,91,48,93,44,118,61,43,116,91,49,93,44,95,41,58,91,112,44,118,93,125,44,95,46,115,116,101,112,77,105,110,111,114,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,104,61,43,116,91,48,93,44,100,61,43,116,91,49,93,44,95,41,58,91,104,44,100,93,125,44,95,46,112,114,101,99,105,115,105,111,110,61,102,117,110,99,116,105,111,110,40,104,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,121,61,43,104,44,99,61,79,102,40,111,44,105,44,57,48,41,44,102,61,66,102,40,110,44,116,44,121,41,44,115,61,79,102,40,117,44,97,44,57,48,41,44,108,61,66,102,40,114,44,101,44,121,41,44,95,41,58,121,125,44,95,46,101,120,116,101,110,116,77,97,106,111,114,40,91,91,45,49,56,48,44,45,57,48,43,110,117,93,44,91,49,56,48,44,57,48,45,110,117,93,93,41,46,101,120,116,101,110,116,77,105,110,111,114,40,91,91,45,49,56,48,44,45,56,48,45,110,117,93,44,91,49,56,48,44,56,48,43,110,117,93,93,41,125,102,117,110,99,116,105,111,110,32,89,102,40,116,41,123,114,101,116,117,114,110,32,116,125,118,97,114,32,73,102,44,72,102,44,106,102,44,88,102,44,86,102,61,81,97,40,41,44,71,102,61,81,97,40,41,44,36,102,61,123,112,111,105,110,116,58,78,117,44,108,105,110,101,83,116,97,114,116,58,78,117,44,108,105,110,101,69,110,100,58,78,117,44,112,111,108,121,103,111,110,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,36,102,46,108,105,110,101,83,116,97,114,116,61,87,102,44,36,102,46,108,105,110,101,69,110,100,61,75,102,125,44,112,111,108,121,103,111,110,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,36,102,46,108,105,110,101,83,116,97,114,116,61,36,102,46,108,105,110,101,69,110,100,61,36,102,46,112,111,105,110,116,61,78,117,44,86,102,46,97,100,100,40,102,117,40,71,102,41,41,44,71,102,46,114,101,115,101,116,40,41,125,44,114,101,115,117,108,116,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,86,102,47,50,59,114,101,116,117,114,110,32,86,102,46,114,101,115,101,116,40,41,44,116,125,125,59,102,117,110,99,116,105,111,110,32,87,102,40,41,123,36,102,46,112,111,105,110,116,61,90,102,125,102,117,110,99,116,105,111,110,32,90,102,40,116,44,110,41,123,36,102,46,112,111,105,110,116,61,81,102,44,73,102,61,106,102,61,116,44,72,102,61,88,102,61,110,125,102,117,110,99,116,105,111,110,32,81,102,40,116,44,110,41,123,71,102,46,97,100,100,40,88,102,42,116,45,106,102,42,110,41,44,106,102,61,116,44,88,102,61,110,125,102,117,110,99,116,105,111,110,32,75,102,40,41,123,81,102,40,73,102,44,72,102,41,125,118,97,114,32,74,102,61,49,47,48,44,116,115,61,74,102,44,110,115,61,45,74,102,44,101,115,61,110,115,44,114,115,61,123,112,111,105,110,116,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,116,60,74,102,38,38,40,74,102,61,116,41,59,116,62,110,115,38,38,40,110,115,61,116,41,59,110,60,116,115,38,38,40,116,115,61,110,41,59,110,62,101,115,38,38,40,101,115,61,110,41,125,44,108,105,110,101,83,116,97,114,116,58,78,117,44,108,105,110,101,69,110,100,58,78,117,44,112,111,108,121,103,111,110,83,116,97,114,116,58,78,117,44,112,111,108,121,103,111,110,69,110,100,58,78,117,44,114,101,115,117,108,116,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,91,91,74,102,44,116,115,93,44,91,110,115,44,101,115,93,93,59,114,101,116,117,114,110,32,110,115,61,101,115,61,45,40,116,115,61,74,102,61,49,47,48,41,44,116,125,125,59,118,97,114,32,105,115,44,111,115,44,97,115,44,117,115,44,99,115,61,48,44,102,115,61,48,44,115,115,61,48,44,108,115,61,48,44,104,115,61,48,44,100,115,61,48,44,112,115,61,48,44,118,115,61,48,44,103,115,61,48,44,121,115,61,123,112,111,105,110,116,58,95,115,44,108,105,110,101,83,116,97,114,116,58,98,115,44,108,105,110,101,69,110,100,58,119,115,44,112,111,108,121,103,111,110,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,121,115,46,108,105,110,101,83,116,97,114,116,61,77,115,44,121,115,46,108,105,110,101,69,110,100,61,78,115,125,44,112,111,108,121,103,111,110,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,121,115,46,112,111,105,110,116,61,95,115,44,121,115,46,108,105,110,101,83,116,97,114,116,61,98,115,44,121,115,46,108,105,110,101,69,110,100,61,119,115,125,44,114,101,115,117,108,116,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,103,115,63,91,112,115,47,103,115,44,118,115,47,103,115,93,58,100,115,63,91,108,115,47,100,115,44,104,115,47,100,115,93,58,115,115,63,91,99,115,47,115,115,44,102,115,47,115,115,93,58,91,78,97,78,44,78,97,78,93,59,114,101,116,117,114,110,32,99,115,61,102,115,61,115,115,61,108,115,61,104,115,61,100,115,61,112,115,61,118,115,61,103,115,61,48,44,116,125,125,59,102,117,110,99,116,105,111,110,32,95,115,40,116,44,110,41,123,99,115,43,61,116,44,102,115,43,61,110,44,43,43,115,115,125,102,117,110,99,116,105,111,110,32,98,115,40,41,123,121,115,46,112,111,105,110,116,61,109,115,125,102,117,110,99,116,105,111,110,32,109,115,40,116,44,110,41,123,121,115,46,112,111,105,110,116,61,120,115,44,95,115,40,97,115,61,116,44,117,115,61,110,41,125,102,117,110,99,116,105,111,110,32,120,115,40,116,44,110,41,123,118,97,114,32,101,61,116,45,97,115,44,114,61,110,45,117,115,44,105,61,98,117,40,101,42,101,43,114,42,114,41,59,108,115,43,61,105,42,40,97,115,43,116,41,47,50,44,104,115,43,61,105,42,40,117,115,43,110,41,47,50,44,100,115,43,61,105,44,95,115,40,97,115,61,116,44,117,115,61,110,41,125,102,117,110,99,116,105,111,110,32,119,115,40,41,123,121,115,46,112,111,105,110,116,61,95,115,125,102,117,110,99,116,105,111,110,32,77,115,40,41,123,121,115,46,112,111,105,110,116,61,84,115,125,102,117,110,99,116,105,111,110,32,78,115,40,41,123,65,115,40,105,115,44,111,115,41,125,102,117,110,99,116,105,111,110,32,84,115,40,116,44,110,41,123,121,115,46,112,111,105,110,116,61,65,115,44,95,115,40,105,115,61,97,115,61,116,44,111,115,61,117,115,61,110,41,125,102,117,110,99,116,105,111,110,32,65,115,40,116,44,110,41,123,118,97,114,32,101,61,116,45,97,115,44,114,61,110,45,117,115,44,105,61,98,117,40,101,42,101,43,114,42,114,41,59,108,115,43,61,105,42,40,97,115,43,116,41,47,50,44,104,115,43,61,105,42,40,117,115,43,110,41,47,50,44,100,115,43,61,105,44,112,115,43,61,40,105,61,117,115,42,116,45,97,115,42,110,41,42,40,97,115,43,116,41,44,118,115,43,61,105,42,40,117,115,43,110,41,44,103,115,43,61,51,42,105,44,95,115,40,97,115,61,116,44,117,115,61,110,41,125,102,117,110,99,116,105,111,110,32,83,115,40,116,41,123,116,104,105,115,46,95,99,111,110,116,101,120,116,61,116,125,83,115,46,112,114,111,116,111,116,121,112,101,61,123,95,114,97,100,105,117,115,58,52,46,53,44,112,111,105,110,116,82,97,100,105,117,115,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,114,97,100,105,117,115,61,116,44,116,104,105,115,125,44,112,111,108,121,103,111,110,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,108,105,110,101,61,48,125,44,112,111,108,121,103,111,110,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,108,105,110,101,61,78,97,78,125,44,108,105,110,101,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,112,111,105,110,116,61,48,125,44,108,105,110,101,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,48,61,61,61,116,104,105,115,46,95,108,105,110,101,38,38,116,104,105,115,46,95,99,111,110,116,101,120,116,46,99,108,111,115,101,80,97,116,104,40,41,44,116,104,105,115,46,95,112,111,105,110,116,61,78,97,78,125,44,112,111,105,110,116,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,115,119,105,116,99,104,40,116,104,105,115,46,95,112,111,105,110,116,41,123,99,97,115,101,32,48,58,116,104,105,115,46,95,99,111,110,116,101,120,116,46,109,111,118,101,84,111,40,116,44,110,41,44,116,104,105,115,46,95,112,111,105,110,116,61,49,59,98,114,101,97,107,59,99,97,115,101,32,49,58,116,104,105,115,46,95,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,116,44,110,41,59,98,114,101,97,107,59,100,101,102,97,117,108,116,58,116,104,105,115,46,95,99,111,110,116,101,120,116,46,109,111,118,101,84,111,40,116,43,116,104,105,115,46,95,114,97,100,105,117,115,44,110,41,44,116,104,105,115,46,95,99,111,110,116,101,120,116,46,97,114,99,40,116,44,110,44,116,104,105,115,46,95,114,97,100,105,117,115,44,48,44,97,117,41,125,125,44,114,101,115,117,108,116,58,78,117,125,59,118,97,114,32,107,115,44,69,115,44,67,115,44,80,115,44,122,115,44,82,115,61,81,97,40,41,44,68,115,61,123,112,111,105,110,116,58,78,117,44,108,105,110,101,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,68,115,46,112,111,105,110,116,61,113,115,125,44,108,105,110,101,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,107,115,38,38,76,115,40,69,115,44,67,115,41,44,68,115,46,112,111,105,110,116,61,78,117,125,44,112,111,108,121,103,111,110,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,107,115,61,33,48,125,44,112,111,108,121,103,111,110,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,107,115,61,110,117,108,108,125,44,114,101,115,117,108,116,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,43,82,115,59,114,101,116,117,114,110,32,82,115,46,114,101,115,101,116,40,41,44,116,125,125,59,102,117,110,99,116,105,111,110,32,113,115,40,116,44,110,41,123,68,115,46,112,111,105,110,116,61,76,115,44,69,115,61,80,115,61,116,44,67,115,61,122,115,61,110,125,102,117,110,99,116,105,111,110,32,76,115,40,116,44,110,41,123,80,115,45,61,116,44,122,115,45,61,110,44,82,115,46,97,100,100,40,98,117,40,80,115,42,80,115,43,122,115,42,122,115,41,41,44,80,115,61,116,44,122,115,61,110,125,102,117,110,99,116,105,111,110,32,85,115,40,41,123,116,104,105,115,46,95,115,116,114,105,110,103,61,91,93,125,102,117,110,99,116,105,111,110,32,79,115,40,116,41,123,114,101,116,117,114,110,34,109,48,44,34,43,116,43,34,97,34,43,116,43,34,44,34,43,116,43,34,32,48,32,49,44,49,32,48,44,34,43,45,50,42,116,43,34,97,34,43,116,43,34,44,34,43,116,43,34,32,48,32,49,44,49,32,48,44,34,43,50,42,116,43,34,122,34,125,102,117,110,99,116,105,111,110,32,66,115,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,101,61,110,101,119,32,70,115,59,102,111,114,40,118,97,114,32,114,32,105,110,32,116,41,101,91,114,93,61,116,91,114,93,59,114,101,116,117,114,110,32,101,46,115,116,114,101,97,109,61,110,44,101,125,125,102,117,110,99,116,105,111,110,32,70,115,40,41,123,125,102,117,110,99,116,105,111,110,32,89,115,40,116,44,110,44,101,41,123,118,97,114,32,114,61,116,46,99,108,105,112,69,120,116,101,110,116,38,38,116,46,99,108,105,112,69,120,116,101,110,116,40,41,59,114,101,116,117,114,110,32,116,46,115,99,97,108,101,40,49,53,48,41,46,116,114,97,110,115,108,97,116,101,40,91,48,44,48,93,41,44,110,117,108,108,33,61,114,38,38,116,46,99,108,105,112,69,120,116,101,110,116,40,110,117,108,108,41,44,67,117,40,101,44,116,46,115,116,114,101,97,109,40,114,115,41,41,44,110,40,114,115,46,114,101,115,117,108,116,40,41,41,44,110,117,108,108,33,61,114,38,38,116,46,99,108,105,112,69,120,116,101,110,116,40,114,41,44,116,125,102,117,110,99,116,105,111,110,32,73,115,40,116,44,110,44,101,41,123,114,101,116,117,114,110,32,89,115,40,116,44,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,114,61,110,91,49,93,91,48,93,45,110,91,48,93,91,48,93,44,105,61,110,91,49,93,91,49,93,45,110,91,48,93,91,49,93,44,111,61,77,97,116,104,46,109,105,110,40,114,47,40,101,91,49,93,91,48,93,45,101,91,48,93,91,48,93,41,44,105,47,40,101,91,49,93,91,49,93,45,101,91,48,93,91,49,93,41,41,44,97,61,43,110,91,48,93,91,48,93,43,40,114,45,111,42,40,101,91,49,93,91,48,93,43,101,91,48,93,91,48,93,41,41,47,50,44,117,61,43,110,91,48,93,91,49,93,43,40,105,45,111,42,40,101,91,49,93,91,49,93,43,101,91,48,93,91,49,93,41,41,47,50,59,116,46,115,99,97,108,101,40,49,53,48,42,111,41,46,116,114,97,110,115,108,97,116,101,40,91,97,44,117,93,41,125,44,101,41,125,102,117,110,99,116,105,111,110,32,72,115,40,116,44,110,44,101,41,123,114,101,116,117,114,110,32,73,115,40,116,44,91,91,48,44,48,93,44,110,93,44,101,41,125,102,117,110,99,116,105,111,110,32,106,115,40,116,44,110,44,101,41,123,114,101,116,117,114,110,32,89,115,40,116,44,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,114,61,43,110,44,105,61,114,47,40,101,91,49,93,91,48,93,45,101,91,48,93,91,48,93,41,44,111,61,40,114,45,105,42,40,101,91,49,93,91,48,93,43,101,91,48,93,91,48,93,41,41,47,50,44,97,61,45,105,42,101,91,48,93,91,49,93,59,116,46,115,99,97,108,101,40,49,53,48,42,105,41,46,116,114,97,110,115,108,97,116,101,40,91,111,44,97,93,41,125,44,101,41,125,102,117,110,99,116,105,111,110,32,88,115,40,116,44,110,44,101,41,123,114,101,116,117,114,110,32,89,115,40,116,44,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,114,61,43,110,44,105,61,114,47,40,101,91,49,93,91,49,93,45,101,91,48,93,91,49,93,41,44,111,61,45,105,42,101,91,48,93,91,48,93,44,97,61,40,114,45,105,42,40,101,91,49,93,91,49,93,43,101,91,48,93,91,49,93,41,41,47,50,59,116,46,115,99,97,108,101,40,49,53,48,42,105,41,46,116,114,97,110,115,108,97,116,101,40,91,111,44,97,93,41,125,44,101,41,125,85,115,46,112,114,111,116,111,116,121,112,101,61,123,95,114,97,100,105,117,115,58,52,46,53,44,95,99,105,114,99,108,101,58,79,115,40,52,46,53,41,44,112,111,105,110,116,82,97,100,105,117,115,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,40,116,61,43,116,41,33,61,61,116,104,105,115,46,95,114,97,100,105,117,115,38,38,40,116,104,105,115,46,95,114,97,100,105,117,115,61,116,44,116,104,105,115,46,95,99,105,114,99,108,101,61,110,117,108,108,41,44,116,104,105,115,125,44,112,111,108,121,103,111,110,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,108,105,110,101,61,48,125,44,112,111,108,121,103,111,110,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,108,105,110,101,61,78,97,78,125,44,108,105,110,101,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,112,111,105,110,116,61,48,125,44,108,105,110,101,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,48,61,61,61,116,104,105,115,46,95,108,105,110,101,38,38,116,104,105,115,46,95,115,116,114,105,110,103,46,112,117,115,104,40,34,90,34,41,44,116,104,105,115,46,95,112,111,105,110,116,61,78,97,78,125,44,112,111,105,110,116,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,115,119,105,116,99,104,40,116,104,105,115,46,95,112,111,105,110,116,41,123,99,97,115,101,32,48,58,116,104,105,115,46,95,115,116,114,105,110,103,46,112,117,115,104,40,34,77,34,44,116,44,34,44,34,44,110,41,44,116,104,105,115,46,95,112,111,105,110,116,61,49,59,98,114,101,97,107,59,99,97,115,101,32,49,58,116,104,105,115,46,95,115,116,114,105,110,103,46,112,117,115,104,40,34,76,34,44,116,44,34,44,34,44,110,41,59,98,114,101,97,107,59,100,101,102,97,117,108,116,58,110,117,108,108,61,61,116,104,105,115,46,95,99,105,114,99,108,101,38,38,40,116,104,105,115,46,95,99,105,114,99,108,101,61,79,115,40,116,104,105,115,46,95,114,97,100,105,117,115,41,41,44,116,104,105,115,46,95,115,116,114,105,110,103,46,112,117,115,104,40,34,77,34,44,116,44,34,44,34,44,110,44,116,104,105,115,46,95,99,105,114,99,108,101,41,125,125,44,114,101,115,117,108,116,58,102,117,110,99,116,105,111,110,40,41,123,105,102,40,116,104,105,115,46,95,115,116,114,105,110,103,46,108,101,110,103,116,104,41,123,118,97,114,32,116,61,116,104,105,115,46,95,115,116,114,105,110,103,46,106,111,105,110,40,34,34,41,59,114,101,116,117,114,110,32,116,104,105,115,46,95,115,116,114,105,110,103,61,91,93,44,116,125,114,101,116,117,114,110,32,110,117,108,108,125,125,44,70,115,46,112,114,111,116,111,116,121,112,101,61,123,99,111,110,115,116,114,117,99,116,111,114,58,70,115,44,112,111,105,110,116,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,116,104,105,115,46,115,116,114,101,97,109,46,112,111,105,110,116,40,116,44,110,41,125,44,115,112,104,101,114,101,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,115,116,114,101,97,109,46,115,112,104,101,114,101,40,41,125,44,108,105,110,101,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,115,116,114,101,97,109,46,108,105,110,101,83,116,97,114,116,40,41,125,44,108,105,110,101,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,115,116,114,101,97,109,46,108,105,110,101,69,110,100,40,41,125,44,112,111,108,121,103,111,110,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,115,116,114,101,97,109,46,112,111,108,121,103,111,110,83,116,97,114,116,40,41,125,44,112,111,108,121,103,111,110,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,115,116,114,101,97,109,46,112,111,108,121,103,111,110,69,110,100,40,41,125,125,59,118,97,114,32,86,115,61,49,54,44,71,115,61,104,117,40,51,48,42,99,117,41,59,102,117,110,99,116,105,111,110,32,36,115,40,116,44,110,41,123,114,101,116,117,114,110,43,110,63,102,117,110,99,116,105,111,110,40,116,44,110,41,123,102,117,110,99,116,105,111,110,32,101,40,114,44,105,44,111,44,97,44,117,44,99,44,102,44,115,44,108,44,104,44,100,44,112,44,118,44,103,41,123,118,97,114,32,121,61,102,45,114,44,95,61,115,45,105,44,98,61,121,42,121,43,95,42,95,59,105,102,40,98,62,52,42,110,38,38,118,45,45,41,123,118,97,114,32,109,61,97,43,104,44,120,61,117,43,100,44,119,61,99,43,112,44,77,61,98,117,40,109,42,109,43,120,42,120,43,119,42,119,41,44,78,61,119,117,40,119,47,61,77,41,44,84,61,102,117,40,102,117,40,119,41,45,49,41,60,110,117,124,124,102,117,40,111,45,108,41,60,110,117,63,40,111,43,108,41,47,50,58,108,117,40,120,44,109,41,44,65,61,116,40,84,44,78,41,44,83,61,65,91,48,93,44,107,61,65,91,49,93,44,69,61,83,45,114,44,67,61,107,45,105,44,80,61,95,42,69,45,121,42,67,59,40,80,42,80,47,98,62,110,124,124,102,117,40,40,121,42,69,43,95,42,67,41,47,98,45,46,53,41,62,46,51,124,124,97,42,104,43,117,42,100,43,99,42,112,60,71,115,41,38,38,40,101,40,114,44,105,44,111,44,97,44,117,44,99,44,83,44,107,44,84,44,109,47,61,77,44,120,47,61,77,44,119,44,118,44,103,41,44,103,46,112,111,105,110,116,40,83,44,107,41,44,101,40,83,44,107,44,84,44,109,44,120,44,119,44,102,44,115,44,108,44,104,44,100,44,112,44,118,44,103,41,41,125,125,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,114,44,105,44,111,44,97,44,117,44,99,44,102,44,115,44,108,44,104,44,100,44,112,44,118,61,123,112,111,105,110,116,58,103,44,108,105,110,101,83,116,97,114,116,58,121,44,108,105,110,101,69,110,100,58,98,44,112,111,108,121,103,111,110,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,110,46,112,111,108,121,103,111,110,83,116,97,114,116,40,41,44,118,46,108,105,110,101,83,116,97,114,116,61,109,125,44,112,111,108,121,103,111,110,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,110,46,112,111,108,121,103,111,110,69,110,100,40,41,44,118,46,108,105,110,101,83,116,97,114,116,61,121,125,125,59,102,117,110,99,116,105,111,110,32,103,40,101,44,114,41,123,101,61,116,40,101,44,114,41,44,110,46,112,111,105,110,116,40,101,91,48,93,44,101,91,49,93,41,125,102,117,110,99,116,105,111,110,32,121,40,41,123,115,61,78,97,78,44,118,46,112,111,105,110,116,61,95,44,110,46,108,105,110,101,83,116,97,114,116,40,41,125,102,117,110,99,116,105,111,110,32,95,40,114,44,105,41,123,118,97,114,32,111,61,106,117,40,91,114,44,105,93,41,44,97,61,116,40,114,44,105,41,59,101,40,115,44,108,44,102,44,104,44,100,44,112,44,115,61,97,91,48,93,44,108,61,97,91,49,93,44,102,61,114,44,104,61,111,91,48,93,44,100,61,111,91,49,93,44,112,61,111,91,50,93,44,86,115,44,110,41,44,110,46,112,111,105,110,116,40,115,44,108,41,125,102,117,110,99,116,105,111,110,32,98,40,41,123,118,46,112,111,105,110,116,61,103,44,110,46,108,105,110,101,69,110,100,40,41,125,102,117,110,99,116,105,111,110,32,109,40,41,123,121,40,41,44,118,46,112,111,105,110,116,61,120,44,118,46,108,105,110,101,69,110,100,61,119,125,102,117,110,99,116,105,111,110,32,120,40,116,44,110,41,123,95,40,114,61,116,44,110,41,44,105,61,115,44,111,61,108,44,97,61,104,44,117,61,100,44,99,61,112,44,118,46,112,111,105,110,116,61,95,125,102,117,110,99,116,105,111,110,32,119,40,41,123,101,40,115,44,108,44,102,44,104,44,100,44,112,44,105,44,111,44,114,44,97,44,117,44,99,44,86,115,44,110,41,44,118,46,108,105,110,101,69,110,100,61,98,44,98,40,41,125,114,101,116,117,114,110,32,118,125,125,40,116,44,110,41,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,66,115,40,123,112,111,105,110,116,58,102,117,110,99,116,105,111,110,40,110,44,101,41,123,110,61,116,40,110,44,101,41,44,116,104,105,115,46,115,116,114,101,97,109,46,112,111,105,110,116,40,110,91,48,93,44,110,91,49,93,41,125,125,41,125,40,116,41,125,118,97,114,32,87,115,61,66,115,40,123,112,111,105,110,116,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,116,104,105,115,46,115,116,114,101,97,109,46,112,111,105,110,116,40,116,42,99,117,44,110,42,99,117,41,125,125,41,59,102,117,110,99,116,105,111,110,32,90,115,40,116,44,110,44,101,44,114,44,105,44,111,41,123,118,97,114,32,97,61,104,117,40,111,41,44,117,61,121,117,40,111,41,44,99,61,97,42,116,44,102,61,117,42,116,44,115,61,97,47,116,44,108,61,117,47,116,44,104,61,40,117,42,101,45,97,42,110,41,47,116,44,100,61,40,117,42,110,43,97,42,101,41,47,116,59,102,117,110,99,116,105,111,110,32,112,40,116,44,111,41,123,114,101,116,117,114,110,91,99,42,40,116,42,61,114,41,45,102,42,40,111,42,61,105,41,43,110,44,101,45,102,42,116,45,99,42,111,93,125,114,101,116,117,114,110,32,112,46,105,110,118,101,114,116,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,91,114,42,40,115,42,116,45,108,42,110,43,104,41,44,105,42,40,100,45,108,42,116,45,115,42,110,41,93,125,44,112,125,102,117,110,99,116,105,111,110,32,81,115,40,116,41,123,114,101,116,117,114,110,32,75,115,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,125,41,40,41,125,102,117,110,99,116,105,111,110,32,75,115,40,116,41,123,118,97,114,32,110,44,101,44,114,44,105,44,111,44,97,44,117,44,99,44,102,44,115,44,108,61,49,53,48,44,104,61,52,56,48,44,100,61,50,53,48,44,112,61,48,44,118,61,48,44,103,61,48,44,121,61,48,44,95,61,48,44,98,61,48,44,109,61,49,44,120,61,49,44,119,61,110,117,108,108,44,77,61,100,102,44,78,61,110,117,108,108,44,84,61,89,102,44,65,61,46,53,59,102,117,110,99,116,105,111,110,32,83,40,116,41,123,114,101,116,117,114,110,32,99,40,116,91,48,93,42,99,117,44,116,91,49,93,42,99,117,41,125,102,117,110,99,116,105,111,110,32,107,40,116,41,123,114,101,116,117,114,110,40,116,61,99,46,105,110,118,101,114,116,40,116,91,48,93,44,116,91,49,93,41,41,38,38,91,116,91,48,93,42,117,117,44,116,91,49,93,42,117,117,93,125,102,117,110,99,116,105,111,110,32,69,40,41,123,118,97,114,32,116,61,90,115,40,108,44,48,44,48,44,109,44,120,44,98,41,46,97,112,112,108,121,40,110,117,108,108,44,110,40,112,44,118,41,41,44,114,61,40,98,63,90,115,58,102,117,110,99,116,105,111,110,40,116,44,110,44,101,44,114,44,105,41,123,102,117,110,99,116,105,111,110,32,111,40,111,44,97,41,123,114,101,116,117,114,110,91,110,43,116,42,40,111,42,61,114,41,44,101,45,116,42,40,97,42,61,105,41,93,125,114,101,116,117,114,110,32,111,46,105,110,118,101,114,116,61,102,117,110,99,116,105,111,110,40,111,44,97,41,123,114,101,116,117,114,110,91,40,111,45,110,41,47,116,42,114,44,40,101,45,97,41,47,116,42,105,93,125,44,111,125,41,40,108,44,104,45,116,91,48,93,44,100,45,116,91,49,93,44,109,44,120,44,98,41,59,114,101,116,117,114,110,32,101,61,36,99,40,103,44,121,44,95,41,44,117,61,86,99,40,110,44,114,41,44,99,61,86,99,40,101,44,117,41,44,97,61,36,115,40,117,44,65,41,44,67,40,41,125,102,117,110,99,116,105,111,110,32,67,40,41,123,114,101,116,117,114,110,32,102,61,115,61,110,117,108,108,44,83,125,114,101,116,117,114,110,32,83,46,115,116,114,101,97,109,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,102,38,38,115,61,61,61,116,63,102,58,102,61,87,115,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,66,115,40,123,112,111,105,110,116,58,102,117,110,99,116,105,111,110,40,110,44,101,41,123,118,97,114,32,114,61,116,40,110,44,101,41,59,114,101,116,117,114,110,32,116,104,105,115,46,115,116,114,101,97,109,46,112,111,105,110,116,40,114,91,48,93,44,114,91,49,93,41,125,125,41,125,40,101,41,40,77,40,97,40,84,40,115,61,116,41,41,41,41,41,125,44,83,46,112,114,101,99,108,105,112,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,77,61,116,44,119,61,118,111,105,100,32,48,44,67,40,41,41,58,77,125,44,83,46,112,111,115,116,99,108,105,112,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,84,61,116,44,78,61,114,61,105,61,111,61,110,117,108,108,44,67,40,41,41,58,84,125,44,83,46,99,108,105,112,65,110,103,108,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,77,61,43,116,63,112,102,40,119,61,116,42,99,117,41,58,40,119,61,110,117,108,108,44,100,102,41,44,67,40,41,41,58,119,42,117,117,125,44,83,46,99,108,105,112,69,120,116,101,110,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,84,61,110,117,108,108,61,61,116,63,40,78,61,114,61,105,61,111,61,110,117,108,108,44,89,102,41,58,121,102,40,78,61,43,116,91,48,93,91,48,93,44,114,61,43,116,91,48,93,91,49,93,44,105,61,43,116,91,49,93,91,48,93,44,111,61,43,116,91,49,93,91,49,93,41,44,67,40,41,41,58,110,117,108,108,61,61,78,63,110,117,108,108,58,91,91,78,44,114,93,44,91,105,44,111,93,93,125,44,83,46,115,99,97,108,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,108,61,43,116,44,69,40,41,41,58,108,125,44,83,46,116,114,97,110,115,108,97,116,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,104,61,43,116,91,48,93,44,100,61,43,116,91,49,93,44,69,40,41,41,58,91,104,44,100,93,125,44,83,46,99,101,110,116,101,114,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,112,61,116,91,48,93,37,51,54,48,42,99,117,44,118,61,116,91,49,93,37,51,54,48,42,99,117,44,69,40,41,41,58,91,112,42,117,117,44,118,42,117,117,93,125,44,83,46,114,111,116,97,116,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,103,61,116,91,48,93,37,51,54,48,42,99,117,44,121,61,116,91,49,93,37,51,54,48,42,99,117,44,95,61,116,46,108,101,110,103,116,104,62,50,63,116,91,50,93,37,51,54,48,42,99,117,58,48,44,69,40,41,41,58,91,103,42,117,117,44,121,42,117,117,44,95,42,117,117,93,125,44,83,46,97,110,103,108,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,98,61,116,37,51,54,48,42,99,117,44,69,40,41,41,58,98,42,117,117,125,44,83,46,114,101,102,108,101,99,116,88,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,109,61,116,63,45,49,58,49,44,69,40,41,41,58,109,60,48,125,44,83,46,114,101,102,108,101,99,116,89,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,120,61,116,63,45,49,58,49,44,69,40,41,41,58,120,60,48,125,44,83,46,112,114,101,99,105,115,105,111,110,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,97,61,36,115,40,117,44,65,61,116,42,116,41,44,67,40,41,41,58,98,117,40,65,41,125,44,83,46,102,105,116,69,120,116,101,110,116,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,73,115,40,83,44,116,44,110,41,125,44,83,46,102,105,116,83,105,122,101,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,72,115,40,83,44,116,44,110,41,125,44,83,46,102,105,116,87,105,100,116,104,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,106,115,40,83,44,116,44,110,41,125,44,83,46,102,105,116,72,101,105,103,104,116,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,88,115,40,83,44,116,44,110,41,125,44,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,110,61,116,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,44,83,46,105,110,118,101,114,116,61,110,46,105,110,118,101,114,116,38,38,107,44,69,40,41,125,125,102,117,110,99,116,105,111,110,32,74,115,40,116,41,123,118,97,114,32,110,61,48,44,101,61,114,117,47,51,44,114,61,75,115,40,116,41,44,105,61,114,40,110,44,101,41,59,114,101,116,117,114,110,32,105,46,112,97,114,97,108,108,101,108,115,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,114,40,110,61,116,91,48,93,42,99,117,44,101,61,116,91,49,93,42,99,117,41,58,91,110,42,117,117,44,101,42,117,117,93,125,44,105,125,102,117,110,99,116,105,111,110,32,116,108,40,116,44,110,41,123,118,97,114,32,101,61,121,117,40,116,41,44,114,61,40,101,43,121,117,40,110,41,41,47,50,59,105,102,40,102,117,40,114,41,60,110,117,41,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,104,117,40,116,41,59,102,117,110,99,116,105,111,110,32,101,40,116,44,101,41,123,114,101,116,117,114,110,91,116,42,110,44,121,117,40,101,41,47,110,93,125,114,101,116,117,114,110,32,101,46,105,110,118,101,114,116,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,91,116,47,110,44,119,117,40,101,42,110,41,93,125,44,101,125,40,116,41,59,118,97,114,32,105,61,49,43,101,42,40,50,42,114,45,101,41,44,111,61,98,117,40,105,41,47,114,59,102,117,110,99,116,105,111,110,32,97,40,116,44,110,41,123,118,97,114,32,101,61,98,117,40,105,45,50,42,114,42,121,117,40,110,41,41,47,114,59,114,101,116,117,114,110,91,101,42,121,117,40,116,42,61,114,41,44,111,45,101,42,104,117,40,116,41,93,125,114,101,116,117,114,110,32,97,46,105,110,118,101,114,116,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,61,111,45,110,44,97,61,108,117,40,116,44,102,117,40,101,41,41,42,95,117,40,101,41,59,114,101,116,117,114,110,32,101,42,114,60,48,38,38,40,97,45,61,114,117,42,95,117,40,116,41,42,95,117,40,101,41,41,44,91,97,47,114,44,119,117,40,40,105,45,40,116,42,116,43,101,42,101,41,42,114,42,114,41,47,40,50,42,114,41,41,93,125,44,97,125,102,117,110,99,116,105,111,110,32,110,108,40,41,123,114,101,116,117,114,110,32,74,115,40,116,108,41,46,115,99,97,108,101,40,49,53,53,46,52,50,52,41,46,99,101,110,116,101,114,40,91,48,44,51,51,46,54,52,52,50,93,41,125,102,117,110,99,116,105,111,110,32,101,108,40,41,123,114,101,116,117,114,110,32,110,108,40,41,46,112,97,114,97,108,108,101,108,115,40,91,50,57,46,53,44,52,53,46,53,93,41,46,115,99,97,108,101,40,49,48,55,48,41,46,116,114,97,110,115,108,97,116,101,40,91,52,56,48,44,50,53,48,93,41,46,114,111,116,97,116,101,40,91,57,54,44,48,93,41,46,99,101,110,116,101,114,40,91,45,46,54,44,51,56,46,55,93,41,125,102,117,110,99,116,105,111,110,32,114,108,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,110,44,101,41,123,118,97,114,32,114,61,104,117,40,110,41,44,105,61,104,117,40,101,41,44,111,61,116,40,114,42,105,41,59,114,101,116,117,114,110,91,111,42,105,42,121,117,40,110,41,44,111,42,121,117,40,101,41,93,125,125,102,117,110,99,116,105,111,110,32,105,108,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,110,44,101,41,123,118,97,114,32,114,61,98,117,40,110,42,110,43,101,42,101,41,44,105,61,116,40,114,41,44,111,61,121,117,40,105,41,44,97,61,104,117,40,105,41,59,114,101,116,117,114,110,91,108,117,40,110,42,111,44,114,42,97,41,44,119,117,40,114,38,38,101,42,111,47,114,41,93,125,125,118,97,114,32,111,108,61,114,108,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,98,117,40,50,47,40,49,43,116,41,41,125,41,59,111,108,46,105,110,118,101,114,116,61,105,108,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,50,42,119,117,40,116,47,50,41,125,41,59,118,97,114,32,97,108,61,114,108,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,40,116,61,120,117,40,116,41,41,38,38,116,47,121,117,40,116,41,125,41,59,102,117,110,99,116,105,111,110,32,117,108,40,116,44,110,41,123,114,101,116,117,114,110,91,116,44,118,117,40,109,117,40,40,105,117,43,110,41,47,50,41,41,93,125,102,117,110,99,116,105,111,110,32,99,108,40,116,41,123,118,97,114,32,110,44,101,44,114,44,105,61,81,115,40,116,41,44,111,61,105,46,99,101,110,116,101,114,44,97,61,105,46,115,99,97,108,101,44,117,61,105,46,116,114,97,110,115,108,97,116,101,44,99,61,105,46,99,108,105,112,69,120,116,101,110,116,44,102,61,110,117,108,108,59,102,117,110,99,116,105,111,110,32,115,40,41,123,118,97,114,32,111,61,114,117,42,97,40,41,44,117,61,105,40,75,99,40,105,46,114,111,116,97,116,101,40,41,41,46,105,110,118,101,114,116,40,91,48,44,48,93,41,41,59,114,101,116,117,114,110,32,99,40,110,117,108,108,61,61,102,63,91,91,117,91,48,93,45,111,44,117,91,49,93,45,111,93,44,91,117,91,48,93,43,111,44,117,91,49,93,43,111,93,93,58,116,61,61,61,117,108,63,91,91,77,97,116,104,46,109,97,120,40,117,91,48,93,45,111,44,102,41,44,110,93,44,91,77,97,116,104,46,109,105,110,40,117,91,48,93,43,111,44,101,41,44,114,93,93,58,91,91,102,44,77,97,116,104,46,109,97,120,40,117,91,49,93,45,111,44,110,41,93,44,91,101,44,77,97,116,104,46,109,105,110,40,117,91,49,93,43,111,44,114,41,93,93,41,125,114,101,116,117,114,110,32,105,46,115,99,97,108,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,97,40,116,41,44,115,40,41,41,58,97,40,41,125,44,105,46,116,114,97,110,115,108,97,116,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,117,40,116,41,44,115,40,41,41,58,117,40,41,125,44,105,46,99,101,110,116,101,114,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,111,40,116,41,44,115,40,41,41,58,111,40,41,125,44,105,46,99,108,105,112,69,120,116,101,110,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,110,117,108,108,61,61,116,63,102,61,110,61,101,61,114,61,110,117,108,108,58,40,102,61,43,116,91,48,93,91,48,93,44,110,61,43,116,91,48,93,91,49,93,44,101,61,43,116,91,49,93,91,48,93,44,114,61,43,116,91,49,93,91,49,93,41,44,115,40,41,41,58,110,117,108,108,61,61,102,63,110,117,108,108,58,91,91,102,44,110,93,44,91,101,44,114,93,93,125,44,115,40,41,125,102,117,110,99,116,105,111,110,32,102,108,40,116,41,123,114,101,116,117,114,110,32,109,117,40,40,105,117,43,116,41,47,50,41,125,102,117,110,99,116,105,111,110,32,115,108,40,116,44,110,41,123,118,97,114,32,101,61,104,117,40,116,41,44,114,61,116,61,61,61,110,63,121,117,40,116,41,58,118,117,40,101,47,104,117,40,110,41,41,47,118,117,40,102,108,40,110,41,47,102,108,40,116,41,41,44,105,61,101,42,103,117,40,102,108,40,116,41,44,114,41,47,114,59,105,102,40,33,114,41,114,101,116,117,114,110,32,117,108,59,102,117,110,99,116,105,111,110,32,111,40,116,44,110,41,123,105,62,48,63,110,60,45,105,117,43,110,117,38,38,40,110,61,45,105,117,43,110,117,41,58,110,62,105,117,45,110,117,38,38,40,110,61,105,117,45,110,117,41,59,118,97,114,32,101,61,105,47,103,117,40,102,108,40,110,41,44,114,41,59,114,101,116,117,114,110,91,101,42,121,117,40,114,42,116,41,44,105,45,101,42,104,117,40,114,42,116,41,93,125,114,101,116,117,114,110,32,111,46,105,110,118,101,114,116,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,61,105,45,110,44,111,61,95,117,40,114,41,42,98,117,40,116,42,116,43,101,42,101,41,44,97,61,108,117,40,116,44,102,117,40,101,41,41,42,95,117,40,101,41,59,114,101,116,117,114,110,32,101,42,114,60,48,38,38,40,97,45,61,114,117,42,95,117,40,116,41,42,95,117,40,101,41,41,44,91,97,47,114,44,50,42,115,117,40,103,117,40,105,47,111,44,49,47,114,41,41,45,105,117,93,125,44,111,125,102,117,110,99,116,105,111,110,32,108,108,40,116,44,110,41,123,114,101,116,117,114,110,91,116,44,110,93,125,102,117,110,99,116,105,111,110,32,104,108,40,116,44,110,41,123,118,97,114,32,101,61,104,117,40,116,41,44,114,61,116,61,61,61,110,63,121,117,40,116,41,58,40,101,45,104,117,40,110,41,41,47,40,110,45,116,41,44,105,61,101,47,114,43,116,59,105,102,40,102,117,40,114,41,60,110,117,41,114,101,116,117,114,110,32,108,108,59,102,117,110,99,116,105,111,110,32,111,40,116,44,110,41,123,118,97,114,32,101,61,105,45,110,44,111,61,114,42,116,59,114,101,116,117,114,110,91,101,42,121,117,40,111,41,44,105,45,101,42,104,117,40,111,41,93,125,114,101,116,117,114,110,32,111,46,105,110,118,101,114,116,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,61,105,45,110,44,111,61,108,117,40,116,44,102,117,40,101,41,41,42,95,117,40,101,41,59,114,101,116,117,114,110,32,101,42,114,60,48,38,38,40,111,45,61,114,117,42,95,117,40,116,41,42,95,117,40,101,41,41,44,91,111,47,114,44,105,45,95,117,40,114,41,42,98,117,40,116,42,116,43,101,42,101,41,93,125,44,111,125,97,108,46,105,110,118,101,114,116,61,105,108,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,125,41,44,117,108,46,105,110,118,101,114,116,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,91,116,44,50,42,115,117,40,112,117,40,110,41,41,45,105,117,93,125,44,108,108,46,105,110,118,101,114,116,61,108,108,59,118,97,114,32,100,108,61,49,46,51,52,48,50,54,52,44,112,108,61,45,46,48,56,49,49,48,54,44,118,108,61,56,57,51,101,45,54,44,103,108,61,46,48,48,51,55,57,54,44,121,108,61,98,117,40,51,41,47,50,59,102,117,110,99,116,105,111,110,32,95,108,40,116,44,110,41,123,118,97,114,32,101,61,119,117,40,121,108,42,121,117,40,110,41,41,44,114,61,101,42,101,44,105,61,114,42,114,42,114,59,114,101,116,117,114,110,91,116,42,104,117,40,101,41,47,40,121,108,42,40,100,108,43,51,42,112,108,42,114,43,105,42,40,55,42,118,108,43,57,42,103,108,42,114,41,41,41,44,101,42,40,100,108,43,112,108,42,114,43,105,42,40,118,108,43,103,108,42,114,41,41,93,125,102,117,110,99,116,105,111,110,32,98,108,40,116,44,110,41,123,118,97,114,32,101,61,104,117,40,110,41,44,114,61,104,117,40,116,41,42,101,59,114,101,116,117,114,110,91,101,42,121,117,40,116,41,47,114,44,121,117,40,110,41,47,114,93,125,102,117,110,99,116,105,111,110,32,109,108,40,116,44,110,41,123,118,97,114,32,101,61,110,42,110,44,114,61,101,42,101,59,114,101,116,117,114,110,91,116,42,40,46,56,55,48,55,45,46,49,51,49,57,55,57,42,101,43,114,42,40,114,42,40,46,48,48,51,57,55,49,42,101,45,46,48,48,49,53,50,57,42,114,41,45,46,48,49,51,55,57,49,41,41,44,110,42,40,49,46,48,48,55,50,50,54,43,101,42,40,46,48,49,53,48,56,53,43,114,42,40,46,48,50,56,56,55,52,42,101,45,46,48,52,52,52,55,53,45,46,48,48,53,57,49,54,42,114,41,41,41,93,125,102,117,110,99,116,105,111,110,32,120,108,40,116,44,110,41,123,114,101,116,117,114,110,91,104,117,40,110,41,42,121,117,40,116,41,44,121,117,40,110,41,93,125,102,117,110,99,116,105,111,110,32,119,108,40,116,44,110,41,123,118,97,114,32,101,61,104,117,40,110,41,44,114,61,49,43,104,117,40,116,41,42,101,59,114,101,116,117,114,110,91,101,42,121,117,40,116,41,47,114,44,121,117,40,110,41,47,114,93,125,102,117,110,99,116,105,111,110,32,77,108,40,116,44,110,41,123,114,101,116,117,114,110,91,118,117,40,109,117,40,40,105,117,43,110,41,47,50,41,41,44,45,116,93,125,102,117,110,99,116,105,111,110,32,78,108,40,116,44,110,41,123,114,101,116,117,114,110,32,116,46,112,97,114,101,110,116,61,61,61,110,46,112,97,114,101,110,116,63,49,58,50,125,102,117,110,99,116,105,111,110,32,84,108,40,116,44,110,41,123,114,101,116,117,114,110,32,116,43,110,46,120,125,102,117,110,99,116,105,111,110,32,65,108,40,116,44,110,41,123,114,101,116,117,114,110,32,77,97,116,104,46,109,97,120,40,116,44,110,46,121,41,125,102,117,110,99,116,105,111,110,32,83,108,40,116,41,123,118,97,114,32,110,61,48,44,101,61,116,46,99,104,105,108,100,114,101,110,44,114,61,101,38,38,101,46,108,101,110,103,116,104,59,105,102,40,114,41,102,111,114,40,59,45,45,114,62,61,48,59,41,110,43,61,101,91,114,93,46,118,97,108,117,101,59,101,108,115,101,32,110,61,49,59,116,46,118,97,108,117,101,61,110,125,102,117,110,99,116,105,111,110,32,107,108,40,116,44,110,41,123,118,97,114,32,101,44,114,44,105,44,111,44,97,44,117,61,110,101,119,32,122,108,40,116,41,44,99,61,43,116,46,118,97,108,117,101,38,38,40,117,46,118,97,108,117,101,61,116,46,118,97,108,117,101,41,44,102,61,91,117,93,59,102,111,114,40,110,117,108,108,61,61,110,38,38,40,110,61,69,108,41,59,101,61,102,46,112,111,112,40,41,59,41,105,102,40,99,38,38,40,101,46,118,97,108,117,101,61,43,101,46,100,97,116,97,46,118,97,108,117,101,41,44,40,105,61,110,40,101,46,100,97,116,97,41,41,38,38,40,97,61,105,46,108,101,110,103,116,104,41,41,102,111,114,40,101,46,99,104,105,108,100,114,101,110,61,110,101,119,32,65,114,114,97,121,40,97,41,44,111,61,97,45,49,59,111,62,61,48,59,45,45,111,41,102,46,112,117,115,104,40,114,61,101,46,99,104,105,108,100,114,101,110,91,111,93,61,110,101,119,32,122,108,40,105,91,111,93,41,41,44,114,46,112,97,114,101,110,116,61,101,44,114,46,100,101,112,116,104,61,101,46,100,101,112,116,104,43,49,59,114,101,116,117,114,110,32,117,46,101,97,99,104,66,101,102,111,114,101,40,80,108,41,125,102,117,110,99,116,105,111,110,32,69,108,40,116,41,123,114,101,116,117,114,110,32,116,46,99,104,105,108,100,114,101,110,125,102,117,110,99,116,105,111,110,32,67,108,40,116,41,123,116,46,100,97,116,97,61,116,46,100,97,116,97,46,100,97,116,97,125,102,117,110,99,116,105,111,110,32,80,108,40,116,41,123,118,97,114,32,110,61,48,59,100,111,123,116,46,104,101,105,103,104,116,61,110,125,119,104,105,108,101,40,40,116,61,116,46,112,97,114,101,110,116,41,38,38,116,46,104,101,105,103,104,116,60,43,43,110,41,125,102,117,110,99,116,105,111,110,32,122,108,40,116,41,123,116,104,105,115,46,100,97,116,97,61,116,44,116,104,105,115,46,100,101,112,116,104,61,116,104,105,115,46,104,101,105,103,104,116,61,48,44,116,104,105,115,46,112,97,114,101,110,116,61,110,117,108,108,125,95,108,46,105,110,118,101,114,116,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,102,111,114,40,118,97,114,32,101,44,114,61,110,44,105,61,114,42,114,44,111,61,105,42,105,42,105,44,97,61,48,59,97,60,49,50,38,38,40,111,61,40,105,61,40,114,45,61,101,61,40,114,42,40,100,108,43,112,108,42,105,43,111,42,40,118,108,43,103,108,42,105,41,41,45,110,41,47,40,100,108,43,51,42,112,108,42,105,43,111,42,40,55,42,118,108,43,57,42,103,108,42,105,41,41,41,42,114,41,42,105,42,105,44,33,40,102,117,40,101,41,60,101,117,41,41,59,43,43,97,41,59,114,101,116,117,114,110,91,121,108,42,116,42,40,100,108,43,51,42,112,108,42,105,43,111,42,40,55,42,118,108,43,57,42,103,108,42,105,41,41,47,104,117,40,114,41,44,119,117,40,121,117,40,114,41,47,121,108,41,93,125,44,98,108,46,105,110,118,101,114,116,61,105,108,40,115,117,41,44,109,108,46,105,110,118,101,114,116,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,44,114,61,110,44,105,61,50,53,59,100,111,123,118,97,114,32,111,61,114,42,114,44,97,61,111,42,111,59,114,45,61,101,61,40,114,42,40,49,46,48,48,55,50,50,54,43,111,42,40,46,48,49,53,48,56,53,43,97,42,40,46,48,50,56,56,55,52,42,111,45,46,48,52,52,52,55,53,45,46,48,48,53,57,49,54,42,97,41,41,41,45,110,41,47,40,49,46,48,48,55,50,50,54,43,111,42,40,46,48,52,53,50,53,53,43,97,42,40,46,50,53,57,56,54,54,42,111,45,46,51,49,49,51,50,53,45,46,48,48,53,57,49,54,42,49,49,42,97,41,41,41,125,119,104,105,108,101,40,102,117,40,101,41,62,110,117,38,38,45,45,105,62,48,41,59,114,101,116,117,114,110,91,116,47,40,46,56,55,48,55,43,40,111,61,114,42,114,41,42,40,111,42,40,111,42,111,42,111,42,40,46,48,48,51,57,55,49,45,46,48,48,49,53,50,57,42,111,41,45,46,48,49,51,55,57,49,41,45,46,49,51,49,57,55,57,41,41,44,114,93,125,44,120,108,46,105,110,118,101,114,116,61,105,108,40,119,117,41,44,119,108,46,105,110,118,101,114,116,61,105,108,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,50,42,115,117,40,116,41,125,41,44,77,108,46,105,110,118,101,114,116,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,91,45,110,44,50,42,115,117,40,112,117,40,116,41,41,45,105,117,93,125,44,122,108,46,112,114,111,116,111,116,121,112,101,61,107,108,46,112,114,111,116,111,116,121,112,101,61,123,99,111,110,115,116,114,117,99,116,111,114,58,122,108,44,99,111,117,110,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,65,102,116,101,114,40,83,108,41,125,44,101,97,99,104,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,44,101,44,114,44,105,44,111,61,116,104,105,115,44,97,61,91,111,93,59,100,111,123,102,111,114,40,110,61,97,46,114,101,118,101,114,115,101,40,41,44,97,61,91,93,59,111,61,110,46,112,111,112,40,41,59,41,105,102,40,116,40,111,41,44,101,61,111,46,99,104,105,108,100,114,101,110,41,102,111,114,40,114,61,48,44,105,61,101,46,108,101,110,103,116,104,59,114,60,105,59,43,43,114,41,97,46,112,117,115,104,40,101,91,114,93,41,125,119,104,105,108,101,40,97,46,108,101,110,103,116,104,41,59,114,101,116,117,114,110,32,116,104,105,115,125,44,101,97,99,104,65,102,116,101,114,58,102,117,110,99,116,105,111,110,40,116,41,123,102,111,114,40,118,97,114,32,110,44,101,44,114,44,105,61,116,104,105,115,44,111,61,91,105,93,44,97,61,91,93,59,105,61,111,46,112,111,112,40,41,59,41,105,102,40,97,46,112,117,115,104,40,105,41,44,110,61,105,46,99,104,105,108,100,114,101,110,41,102,111,114,40,101,61,48,44,114,61,110,46,108,101,110,103,116,104,59,101,60,114,59,43,43,101,41,111,46,112,117,115,104,40,110,91,101,93,41,59,102,111,114,40,59,105,61,97,46,112,111,112,40,41,59,41,116,40,105,41,59,114,101,116,117,114,110,32,116,104,105,115,125,44,101,97,99,104,66,101,102,111,114,101,58,102,117,110,99,116,105,111,110,40,116,41,123,102,111,114,40,118,97,114,32,110,44,101,44,114,61,116,104,105,115,44,105,61,91,114,93,59,114,61,105,46,112,111,112,40,41,59,41,105,102,40,116,40,114,41,44,110,61,114,46,99,104,105,108,100,114,101,110,41,102,111,114,40,101,61,110,46,108,101,110,103,116,104,45,49,59,101,62,61,48,59,45,45,101,41,105,46,112,117,115,104,40,110,91,101,93,41,59,114,101,116,117,114,110,32,116,104,105,115,125,44,115,117,109,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,65,102,116,101,114,40,102,117,110,99,116,105,111,110,40,110,41,123,102,111,114,40,118,97,114,32,101,61,43,116,40,110,46,100,97,116,97,41,124,124,48,44,114,61,110,46,99,104,105,108,100,114,101,110,44,105,61,114,38,38,114,46,108,101,110,103,116,104,59,45,45,105,62,61,48,59,41,101,43,61,114,91,105,93,46,118,97,108,117,101,59,110,46,118,97,108,117,101,61,101,125,41,125,44,115,111,114,116,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,66,101,102,111,114,101,40,102,117,110,99,116,105,111,110,40,110,41,123,110,46,99,104,105,108,100,114,101,110,38,38,110,46,99,104,105,108,100,114,101,110,46,115,111,114,116,40,116,41,125,41,125,44,112,97,116,104,58,102,117,110,99,116,105,111,110,40,116,41,123,102,111,114,40,118,97,114,32,110,61,116,104,105,115,44,101,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,105,102,40,116,61,61,61,110,41,114,101,116,117,114,110,32,116,59,118,97,114,32,101,61,116,46,97,110,99,101,115,116,111,114,115,40,41,44,114,61,110,46,97,110,99,101,115,116,111,114,115,40,41,44,105,61,110,117,108,108,59,102,111,114,40,116,61,101,46,112,111,112,40,41,44,110,61,114,46,112,111,112,40,41,59,116,61,61,61,110,59,41,105,61,116,44,116,61,101,46,112,111,112,40,41,44,110,61,114,46,112,111,112,40,41,59,114,101,116,117,114,110,32,105,125,40,110,44,116,41,44,114,61,91,110,93,59,110,33,61,61,101,59,41,110,61,110,46,112,97,114,101,110,116,44,114,46,112,117,115,104,40,110,41,59,102,111,114,40,118,97,114,32,105,61,114,46,108,101,110,103,116,104,59,116,33,61,61,101,59,41,114,46,115,112,108,105,99,101,40,105,44,48,44,116,41,44,116,61,116,46,112,97,114,101,110,116,59,114,101,116,117,114,110,32,114,125,44,97,110,99,101,115,116,111,114,115,58,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,118,97,114,32,116,61,116,104,105,115,44,110,61,91,116,93,59,116,61,116,46,112,97,114,101,110,116,59,41,110,46,112,117,115,104,40,116,41,59,114,101,116,117,114,110,32,110,125,44,100,101,115,99,101,110,100,97,110,116,115,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,91,93,59,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,110,41,123,116,46,112,117,115,104,40,110,41,125,41,44,116,125,44,108,101,97,118,101,115,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,91,93,59,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,66,101,102,111,114,101,40,102,117,110,99,116,105,111,110,40,110,41,123,110,46,99,104,105,108,100,114,101,110,124,124,116,46,112,117,115,104,40,110,41,125,41,44,116,125,44,108,105,110,107,115,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,44,110,61,91,93,59,114,101,116,117,114,110,32,116,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,101,41,123,101,33,61,61,116,38,38,110,46,112,117,115,104,40,123,115,111,117,114,99,101,58,101,46,112,97,114,101,110,116,44,116,97,114,103,101,116,58,101,125,41,125,41,44,110,125,44,99,111,112,121,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,107,108,40,116,104,105,115,41,46,101,97,99,104,66,101,102,111,114,101,40,67,108,41,125,125,59,118,97,114,32,82,108,61,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,115,108,105,99,101,59,102,117,110,99,116,105,111,110,32,68,108,40,116,41,123,102,111,114,40,118,97,114,32,110,44,101,44,114,61,48,44,105,61,40,116,61,102,117,110,99,116,105,111,110,40,116,41,123,102,111,114,40,118,97,114,32,110,44,101,44,114,61,116,46,108,101,110,103,116,104,59,114,59,41,101,61,77,97,116,104,46,114,97,110,100,111,109,40,41,42,114,45,45,124,48,44,110,61,116,91,114,93,44,116,91,114,93,61,116,91,101,93,44,116,91,101,93,61,110,59,114,101,116,117,114,110,32,116,125,40,82,108,46,99,97,108,108,40,116,41,41,41,46,108,101,110,103,116,104,44,111,61,91,93,59,114,60,105,59,41,110,61,116,91,114,93,44,101,38,38,85,108,40,101,44,110,41,63,43,43,114,58,40,101,61,66,108,40,111,61,113,108,40,111,44,110,41,41,44,114,61,48,41,59,114,101,116,117,114,110,32,101,125,102,117,110,99,116,105,111,110,32,113,108,40,116,44,110,41,123,118,97,114,32,101,44,114,59,105,102,40,79,108,40,110,44,116,41,41,114,101,116,117,114,110,91,110,93,59,102,111,114,40,101,61,48,59,101,60,116,46,108,101,110,103,116,104,59,43,43,101,41,105,102,40,76,108,40,110,44,116,91,101,93,41,38,38,79,108,40,70,108,40,116,91,101,93,44,110,41,44,116,41,41,114,101,116,117,114,110,91,116,91,101,93,44,110,93,59,102,111,114,40,101,61,48,59,101,60,116,46,108,101,110,103,116,104,45,49,59,43,43,101,41,102,111,114,40,114,61,101,43,49,59,114,60,116,46,108,101,110,103,116,104,59,43,43,114,41,105,102,40,76,108,40,70,108,40,116,91,101,93,44,116,91,114,93,41,44,110,41,38,38,76,108,40,70,108,40,116,91,101,93,44,110,41,44,116,91,114,93,41,38,38,76,108,40,70,108,40,116,91,114,93,44,110,41,44,116,91,101,93,41,38,38,79,108,40,89,108,40,116,91,101,93,44,116,91,114,93,44,110,41,44,116,41,41,114,101,116,117,114,110,91,116,91,101,93,44,116,91,114,93,44,110,93,59,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,125,102,117,110,99,116,105,111,110,32,76,108,40,116,44,110,41,123,118,97,114,32,101,61,116,46,114,45,110,46,114,44,114,61,110,46,120,45,116,46,120,44,105,61,110,46,121,45,116,46,121,59,114,101,116,117,114,110,32,101,60,48,124,124,101,42,101,60,114,42,114,43,105,42,105,125,102,117,110,99,116,105,111,110,32,85,108,40,116,44,110,41,123,118,97,114,32,101,61,116,46,114,45,110,46,114,43,49,101,45,54,44,114,61,110,46,120,45,116,46,120,44,105,61,110,46,121,45,116,46,121,59,114,101,116,117,114,110,32,101,62,48,38,38,101,42,101,62,114,42,114,43,105,42,105,125,102,117,110,99,116,105,111,110,32,79,108,40,116,44,110,41,123,102,111,114,40,118,97,114,32,101,61,48,59,101,60,110,46,108,101,110,103,116,104,59,43,43,101,41,105,102,40,33,85,108,40,116,44,110,91,101,93,41,41,114,101,116,117,114,110,33,49,59,114,101,116,117,114,110,33,48,125,102,117,110,99,116,105,111,110,32,66,108,40,116,41,123,115,119,105,116,99,104,40,116,46,108,101,110,103,116,104,41,123,99,97,115,101,32,49,58,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,123,120,58,116,46,120,44,121,58,116,46,121,44,114,58,116,46,114,125,125,40,116,91,48,93,41,59,99,97,115,101,32,50,58,114,101,116,117,114,110,32,70,108,40,116,91,48,93,44,116,91,49,93,41,59,99,97,115,101,32,51,58,114,101,116,117,114,110,32,89,108,40,116,91,48,93,44,116,91,49,93,44,116,91,50,93,41,125,125,102,117,110,99,116,105,111,110,32,70,108,40,116,44,110,41,123,118,97,114,32,101,61,116,46,120,44,114,61,116,46,121,44,105,61,116,46,114,44,111,61,110,46,120,44,97,61,110,46,121,44,117,61,110,46,114,44,99,61,111,45,101,44,102,61,97,45,114,44,115,61,117,45,105,44,108,61,77,97,116,104,46,115,113,114,116,40,99,42,99,43,102,42,102,41,59,114,101,116,117,114,110,123,120,58,40,101,43,111,43,99,47,108,42,115,41,47,50,44,121,58,40,114,43,97,43,102,47,108,42,115,41,47,50,44,114,58,40,108,43,105,43,117,41,47,50,125,125,102,117,110,99,116,105,111,110,32,89,108,40,116,44,110,44,101,41,123,118,97,114,32,114,61,116,46,120,44,105,61,116,46,121,44,111,61,116,46,114,44,97,61,110,46,120,44,117,61,110,46,121,44,99,61,110,46,114,44,102,61,101,46,120,44,115,61,101,46,121,44,108,61,101,46,114,44,104,61,114,45,97,44,100,61,114,45,102,44,112,61,105,45,117,44,118,61,105,45,115,44,103,61,99,45,111,44,121,61,108,45,111,44,95,61,114,42,114,43,105,42,105,45,111,42,111,44,98,61,95,45,97,42,97,45,117,42,117,43,99,42,99,44,109,61,95,45,102,42,102,45,115,42,115,43,108,42,108,44,120,61,100,42,112,45,104,42,118,44,119,61,40,112,42,109,45,118,42,98,41,47,40,50,42,120,41,45,114,44,77,61,40,118,42,103,45,112,42,121,41,47,120,44,78,61,40,100,42,98,45,104,42,109,41,47,40,50,42,120,41,45,105,44,84,61,40,104,42,121,45,100,42,103,41,47,120,44,65,61,77,42,77,43,84,42,84,45,49,44,83,61,50,42,40,111,43,119,42,77,43,78,42,84,41,44,107,61,119,42,119,43,78,42,78,45,111,42,111,44,69,61,45,40,65,63,40,83,43,77,97,116,104,46,115,113,114,116,40,83,42,83,45,52,42,65,42,107,41,41,47,40,50,42,65,41,58,107,47,83,41,59,114,101,116,117,114,110,123,120,58,114,43,119,43,77,42,69,44,121,58,105,43,78,43,84,42,69,44,114,58,69,125,125,102,117,110,99,116,105,111,110,32,73,108,40,116,44,110,44,101,41,123,118,97,114,32,114,44,105,44,111,44,97,44,117,61,116,46,120,45,110,46,120,44,99,61,116,46,121,45,110,46,121,44,102,61,117,42,117,43,99,42,99,59,102,63,40,105,61,110,46,114,43,101,46,114,44,105,42,61,105,44,97,61,116,46,114,43,101,46,114,44,105,62,40,97,42,61,97,41,63,40,114,61,40,102,43,97,45,105,41,47,40,50,42,102,41,44,111,61,77,97,116,104,46,115,113,114,116,40,77,97,116,104,46,109,97,120,40,48,44,97,47,102,45,114,42,114,41,41,44,101,46,120,61,116,46,120,45,114,42,117,45,111,42,99,44,101,46,121,61,116,46,121,45,114,42,99,43,111,42,117,41,58,40,114,61,40,102,43,105,45,97,41,47,40,50,42,102,41,44,111,61,77,97,116,104,46,115,113,114,116,40,77,97,116,104,46,109,97,120,40,48,44,105,47,102,45,114,42,114,41,41,44,101,46,120,61,110,46,120,43,114,42,117,45,111,42,99,44,101,46,121,61,110,46,121,43,114,42,99,43,111,42,117,41,41,58,40,101,46,120,61,110,46,120,43,101,46,114,44,101,46,121,61,110,46,121,41,125,102,117,110,99,116,105,111,110,32,72,108,40,116,44,110,41,123,118,97,114,32,101,61,116,46,114,43,110,46,114,45,49,101,45,54,44,114,61,110,46,120,45,116,46,120,44,105,61,110,46,121,45,116,46,121,59,114,101,116,117,114,110,32,101,62,48,38,38,101,42,101,62,114,42,114,43,105,42,105,125,102,117,110,99,116,105,111,110,32,106,108,40,116,41,123,118,97,114,32,110,61,116,46,95,44,101,61,116,46,110,101,120,116,46,95,44,114,61,110,46,114,43,101,46,114,44,105,61,40,110,46,120,42,101,46,114,43,101,46,120,42,110,46,114,41,47,114,44,111,61,40,110,46,121,42,101,46,114,43,101,46,121,42,110,46,114,41,47,114,59,114,101,116,117,114,110,32,105,42,105,43,111,42,111,125,102,117,110,99,116,105,111,110,32,88,108,40,116,41,123,116,104,105,115,46,95,61,116,44,116,104,105,115,46,110,101,120,116,61,110,117,108,108,44,116,104,105,115,46,112,114,101,118,105,111,117,115,61,110,117,108,108,125,102,117,110,99,116,105,111,110,32,86,108,40,116,41,123,105,102,40,33,40,105,61,116,46,108,101,110,103,116,104,41,41,114,101,116,117,114,110,32,48,59,118,97,114,32,110,44,101,44,114,44,105,44,111,44,97,44,117,44,99,44,102,44,115,44,108,59,105,102,40,40,110,61,116,91,48,93,41,46,120,61,48,44,110,46,121,61,48,44,33,40,105,62,49,41,41,114,101,116,117,114,110,32,110,46,114,59,105,102,40,101,61,116,91,49,93,44,110,46,120,61,45,101,46,114,44,101,46,120,61,110,46,114,44,101,46,121,61,48,44,33,40,105,62,50,41,41,114,101,116,117,114,110,32,110,46,114,43,101,46,114,59,73,108,40,101,44,110,44,114,61,116,91,50,93,41,44,110,61,110,101,119,32,88,108,40,110,41,44,101,61,110,101,119,32,88,108,40,101,41,44,114,61,110,101,119,32,88,108,40,114,41,44,110,46,110,101,120,116,61,114,46,112,114,101,118,105,111,117,115,61,101,44,101,46,110,101,120,116,61,110,46,112,114,101,118,105,111,117,115,61,114,44,114,46,110,101,120,116,61,101,46,112,114,101,118,105,111,117,115,61,110,59,116,58,102,111,114,40,117,61,51,59,117,60,105,59,43,43,117,41,123,73,108,40,110,46,95,44,101,46,95,44,114,61,116,91,117,93,41,44,114,61,110,101,119,32,88,108,40,114,41,44,99,61,101,46,110,101,120,116,44,102,61,110,46,112,114,101,118,105,111,117,115,44,115,61,101,46,95,46,114,44,108,61,110,46,95,46,114,59,100,111,123,105,102,40,115,60,61,108,41,123,105,102,40,72,108,40,99,46,95,44,114,46,95,41,41,123,101,61,99,44,110,46,110,101,120,116,61,101,44,101,46,112,114,101,118,105,111,117,115,61,110,44,45,45,117,59,99,111,110,116,105,110,117,101,32,116,125,115,43,61,99,46,95,46,114,44,99,61,99,46,110,101,120,116,125,101,108,115,101,123,105,102,40,72,108,40,102,46,95,44,114,46,95,41,41,123,40,110,61,102,41,46,110,101,120,116,61,101,44,101,46,112,114,101,118,105,111,117,115,61,110,44,45,45,117,59,99,111,110,116,105,110,117,101,32,116,125,108,43,61,102,46,95,46,114,44,102,61,102,46,112,114,101,118,105,111,117,115,125,125,119,104,105,108,101,40,99,33,61,61,102,46,110,101,120,116,41,59,102,111,114,40,114,46,112,114,101,118,105,111,117,115,61,110,44,114,46,110,101,120,116,61,101,44,110,46,110,101,120,116,61,101,46,112,114,101,118,105,111,117,115,61,101,61,114,44,111,61,106,108,40,110,41,59,40,114,61,114,46,110,101,120,116,41,33,61,61,101,59,41,40,97,61,106,108,40,114,41,41,60,111,38,38,40,110,61,114,44,111,61,97,41,59,101,61,110,46,110,101,120,116,125,102,111,114,40,110,61,91,101,46,95,93,44,114,61,101,59,40,114,61,114,46,110,101,120,116,41,33,61,61,101,59,41,110,46,112,117,115,104,40,114,46,95,41,59,102,111,114,40,114,61,68,108,40,110,41,44,117,61,48,59,117,60,105,59,43,43,117,41,40,110,61,116,91,117,93,41,46,120,45,61,114,46,120,44,110,46,121,45,61,114,46,121,59,114,101,116,117,114,110,32,114,46,114,125,102,117,110,99,116,105,111,110,32,71,108,40,116,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,116,63,110,117,108,108,58,36,108,40,116,41,125,102,117,110,99,116,105,111,110,32,36,108,40,116,41,123,105,102,40,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,116,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,59,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,87,108,40,41,123,114,101,116,117,114,110,32,48,125,102,117,110,99,116,105,111,110,32,90,108,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,125,125,102,117,110,99,116,105,111,110,32,81,108,40,116,41,123,114,101,116,117,114,110,32,77,97,116,104,46,115,113,114,116,40,116,46,118,97,108,117,101,41,125,102,117,110,99,116,105,111,110,32,75,108,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,110,41,123,110,46,99,104,105,108,100,114,101,110,124,124,40,110,46,114,61,77,97,116,104,46,109,97,120,40,48,44,43,116,40,110,41,124,124,48,41,41,125,125,102,117,110,99,116,105,111,110,32,74,108,40,116,44,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,101,41,123,105,102,40,114,61,101,46,99,104,105,108,100,114,101,110,41,123,118,97,114,32,114,44,105,44,111,44,97,61,114,46,108,101,110,103,116,104,44,117,61,116,40,101,41,42,110,124,124,48,59,105,102,40,117,41,102,111,114,40,105,61,48,59,105,60,97,59,43,43,105,41,114,91,105,93,46,114,43,61,117,59,105,102,40,111,61,86,108,40,114,41,44,117,41,102,111,114,40,105,61,48,59,105,60,97,59,43,43,105,41,114,91,105,93,46,114,45,61,117,59,101,46,114,61,111,43,117,125,125,125,102,117,110,99,116,105,111,110,32,116,104,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,101,61,110,46,112,97,114,101,110,116,59,110,46,114,42,61,116,44,101,38,38,40,110,46,120,61,101,46,120,43,116,42,110,46,120,44,110,46,121,61,101,46,121,43,116,42,110,46,121,41,125,125,102,117,110,99,116,105,111,110,32,110,104,40,116,41,123,116,46,120,48,61,77,97,116,104,46,114,111,117,110,100,40,116,46,120,48,41,44,116,46,121,48,61,77,97,116,104,46,114,111,117,110,100,40,116,46,121,48,41,44,116,46,120,49,61,77,97,116,104,46,114,111,117,110,100,40,116,46,120,49,41,44,116,46,121,49,61,77,97,116,104,46,114,111,117,110,100,40,116,46,121,49,41,125,102,117,110,99,116,105,111,110,32,101,104,40,116,44,110,44,101,44,114,44,105,41,123,102,111,114,40,118,97,114,32,111,44,97,61,116,46,99,104,105,108,100,114,101,110,44,117,61,45,49,44,99,61,97,46,108,101,110,103,116,104,44,102,61,116,46,118,97,108,117,101,38,38,40,114,45,110,41,47,116,46,118,97,108,117,101,59,43,43,117,60,99,59,41,40,111,61,97,91,117,93,41,46,121,48,61,101,44,111,46,121,49,61,105,44,111,46,120,48,61,110,44,111,46,120,49,61,110,43,61,111,46,118,97,108,117,101,42,102,125,118,97,114,32,114,104,61,34,36,34,44,105,104,61,123,100,101,112,116,104,58,45,49,125,44,111,104,61,123,125,59,102,117,110,99,116,105,111,110,32,97,104,40,116,41,123,114,101,116,117,114,110,32,116,46,105,100,125,102,117,110,99,116,105,111,110,32,117,104,40,116,41,123,114,101,116,117,114,110,32,116,46,112,97,114,101,110,116,73,100,125,102,117,110,99,116,105,111,110,32,99,104,40,116,44,110,41,123,114,101,116,117,114,110,32,116,46,112,97,114,101,110,116,61,61,61,110,46,112,97,114,101,110,116,63,49,58,50,125,102,117,110,99,116,105,111,110,32,102,104,40,116,41,123,118,97,114,32,110,61,116,46,99,104,105,108,100,114,101,110,59,114,101,116,117,114,110,32,110,63,110,91,48,93,58,116,46,116,125,102,117,110,99,116,105,111,110,32,115,104,40,116,41,123,118,97,114,32,110,61,116,46,99,104,105,108,100,114,101,110,59,114,101,116,117,114,110,32,110,63,110,91,110,46,108,101,110,103,116,104,45,49,93,58,116,46,116,125,102,117,110,99,116,105,111,110,32,108,104,40,116,44,110,44,101,41,123,118,97,114,32,114,61,101,47,40,110,46,105,45,116,46,105,41,59,110,46,99,45,61,114,44,110,46,115,43,61,101,44,116,46,99,43,61,114,44,110,46,122,43,61,101,44,110,46,109,43,61,101,125,102,117,110,99,116,105,111,110,32,104,104,40,116,44,110,44,101,41,123,114,101,116,117,114,110,32,116,46,97,46,112,97,114,101,110,116,61,61,61,110,46,112,97,114,101,110,116,63,116,46,97,58,101,125,102,117,110,99,116,105,111,110,32,100,104,40,116,44,110,41,123,116,104,105,115,46,95,61,116,44,116,104,105,115,46,112,97,114,101,110,116,61,110,117,108,108,44,116,104,105,115,46,99,104,105,108,100,114,101,110,61,110,117,108,108,44,116,104,105,115,46,65,61,110,117,108,108,44,116,104,105,115,46,97,61,116,104,105,115,44,116,104,105,115,46,122,61,48,44,116,104,105,115,46,109,61,48,44,116,104,105,115,46,99,61,48,44,116,104,105,115,46,115,61,48,44,116,104,105,115,46,116,61,110,117,108,108,44,116,104,105,115,46,105,61,110,125,102,117,110,99,116,105,111,110,32,112,104,40,116,44,110,44,101,44,114,44,105,41,123,102,111,114,40,118,97,114,32,111,44,97,61,116,46,99,104,105,108,100,114,101,110,44,117,61,45,49,44,99,61,97,46,108,101,110,103,116,104,44,102,61,116,46,118,97,108,117,101,38,38,40,105,45,101,41,47,116,46,118,97,108,117,101,59,43,43,117,60,99,59,41,40,111,61,97,91,117,93,41,46,120,48,61,110,44,111,46,120,49,61,114,44,111,46,121,48,61,101,44,111,46,121,49,61,101,43,61,111,46,118,97,108,117,101,42,102,125,100,104,46,112,114,111,116,111,116,121,112,101,61,79,98,106,101,99,116,46,99,114,101,97,116,101,40,122,108,46,112,114,111,116,111,116,121,112,101,41,59,118,97,114,32,118,104,61,40,49,43,77,97,116,104,46,115,113,114,116,40,53,41,41,47,50,59,102,117,110,99,116,105,111,110,32,103,104,40,116,44,110,44,101,44,114,44,105,44,111,41,123,102,111,114,40,118,97,114,32,97,44,117,44,99,44,102,44,115,44,108,44,104,44,100,44,112,44,118,44,103,44,121,61,91,93,44,95,61,110,46,99,104,105,108,100,114,101,110,44,98,61,48,44,109,61,48,44,120,61,95,46,108,101,110,103,116,104,44,119,61,110,46,118,97,108,117,101,59,98,60,120,59,41,123,99,61,105,45,101,44,102,61,111,45,114,59,100,111,123,115,61,95,91,109,43,43,93,46,118,97,108,117,101,125,119,104,105,108,101,40,33,115,38,38,109,60,120,41,59,102,111,114,40,108,61,104,61,115,44,103,61,115,42,115,42,40,118,61,77,97,116,104,46,109,97,120,40,102,47,99,44,99,47,102,41,47,40,119,42,116,41,41,44,112,61,77,97,116,104,46,109,97,120,40,104,47,103,44,103,47,108,41,59,109,60,120,59,43,43,109,41,123,105,102,40,115,43,61,117,61,95,91,109,93,46,118,97,108,117,101,44,117,60,108,38,38,40,108,61,117,41,44,117,62,104,38,38,40,104,61,117,41,44,103,61,115,42,115,42,118,44,40,100,61,77,97,116,104,46,109,97,120,40,104,47,103,44,103,47,108,41,41,62,112,41,123,115,45,61,117,59,98,114,101,97,107,125,112,61,100,125,121,46,112,117,115,104,40,97,61,123,118,97,108,117,101,58,115,44,100,105,99,101,58,99,60,102,44,99,104,105,108,100,114,101,110,58,95,46,115,108,105,99,101,40,98,44,109,41,125,41,44,97,46,100,105,99,101,63,101,104,40,97,44,101,44,114,44,105,44,119,63,114,43,61,102,42,115,47,119,58,111,41,58,112,104,40,97,44,101,44,114,44,119,63,101,43,61,99,42,115,47,119,58,105,44,111,41,44,119,45,61,115,44,98,61,109,125,114,101,116,117,114,110,32,121,125,118,97,114,32,121,104,61,102,117,110,99,116,105,111,110,32,116,40,110,41,123,102,117,110,99,116,105,111,110,32,101,40,116,44,101,44,114,44,105,44,111,41,123,103,104,40,110,44,116,44,101,44,114,44,105,44,111,41,125,114,101,116,117,114,110,32,101,46,114,97,116,105,111,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,40,40,110,61,43,110,41,62,49,63,110,58,49,41,125,44,101,125,40,118,104,41,59,118,97,114,32,95,104,61,102,117,110,99,116,105,111,110,32,116,40,110,41,123,102,117,110,99,116,105,111,110,32,101,40,116,44,101,44,114,44,105,44,111,41,123,105,102,40,40,97,61,116,46,95,115,113,117,97,114,105,102,121,41,38,38,97,46,114,97,116,105,111,61,61,61,110,41,102,111,114,40,118,97,114,32,97,44,117,44,99,44,102,44,115,44,108,61,45,49,44,104,61,97,46,108,101,110,103,116,104,44,100,61,116,46,118,97,108,117,101,59,43,43,108,60,104,59,41,123,102,111,114,40,99,61,40,117,61,97,91,108,93,41,46,99,104,105,108,100,114,101,110,44,102,61,117,46,118,97,108,117,101,61,48,44,115,61,99,46,108,101,110,103,116,104,59,102,60,115,59,43,43,102,41,117,46,118,97,108,117,101,43,61,99,91,102,93,46,118,97,108,117,101,59,117,46,100,105,99,101,63,101,104,40,117,44,101,44,114,44,105,44,114,43,61,40,111,45,114,41,42,117,46,118,97,108,117,101,47,100,41,58,112,104,40,117,44,101,44,114,44,101,43,61,40,105,45,101,41,42,117,46,118,97,108,117,101,47,100,44,111,41,44,100,45,61,117,46,118,97,108,117,101,125,101,108,115,101,32,116,46,95,115,113,117,97,114,105,102,121,61,97,61,103,104,40,110,44,116,44,101,44,114,44,105,44,111,41,44,97,46,114,97,116,105,111,61,110,125,114,101,116,117,114,110,32,101,46,114,97,116,105,111,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,40,40,110,61,43,110,41,62,49,63,110,58,49,41,125,44,101,125,40,118,104,41,59,102,117,110,99,116,105,111,110,32,98,104,40,116,44,110,44,101,41,123,114,101,116,117,114,110,40,110,91,48,93,45,116,91,48,93,41,42,40,101,91,49,93,45,116,91,49,93,41,45,40,110,91,49,93,45,116,91,49,93,41,42,40,101,91,48,93,45,116,91,48,93,41,125,102,117,110,99,116,105,111,110,32,109,104,40,116,44,110,41,123,114,101,116,117,114,110,32,116,91,48,93,45,110,91,48,93,124,124,116,91,49,93,45,110,91,49,93,125,102,117,110,99,116,105,111,110,32,120,104,40,116,41,123,102,111,114,40,118,97,114,32,110,61,116,46,108,101,110,103,116,104,44,101,61,91,48,44,49,93,44,114,61,50,44,105,61,50,59,105,60,110,59,43,43,105,41,123,102,111,114,40,59,114,62,49,38,38,98,104,40,116,91,101,91,114,45,50,93,93,44,116,91,101,91,114,45,49,93,93,44,116,91,105,93,41,60,61,48,59,41,45,45,114,59,101,91,114,43,43,93,61,105,125,114,101,116,117,114,110,32,101,46,115,108,105,99,101,40,48,44,114,41,125,102,117,110,99,116,105,111,110,32,119,104,40,41,123,114,101,116,117,114,110,32,77,97,116,104,46,114,97,110,100,111,109,40,41,125,118,97,114,32,77,104,61,102,117,110,99,116,105,111,110,32,116,40,110,41,123,102,117,110,99,116,105,111,110,32,101,40,116,44,101,41,123,114,101,116,117,114,110,32,116,61,110,117,108,108,61,61,116,63,48,58,43,116,44,101,61,110,117,108,108,61,61,101,63,49,58,43,101,44,49,61,61,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,101,61,116,44,116,61,48,41,58,101,45,61,116,44,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,110,40,41,42,101,43,116,125,125,114,101,116,117,114,110,32,101,46,115,111,117,114,99,101,61,116,44,101,125,40,119,104,41,44,78,104,61,102,117,110,99,116,105,111,110,32,116,40,110,41,123,102,117,110,99,116,105,111,110,32,101,40,116,44,101,41,123,118,97,114,32,114,44,105,59,114,101,116,117,114,110,32,116,61,110,117,108,108,61,61,116,63,48,58,43,116,44,101,61,110,117,108,108,61,61,101,63,49,58,43,101,44,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,111,59,105,102,40,110,117,108,108,33,61,114,41,111,61,114,44,114,61,110,117,108,108,59,101,108,115,101,32,100,111,123,114,61,50,42,110,40,41,45,49,44,111,61,50,42,110,40,41,45,49,44,105,61,114,42,114,43,111,42,111,125,119,104,105,108,101,40,33,105,124,124,105,62,49,41,59,114,101,116,117,114,110,32,116,43,101,42,111,42,77,97,116,104,46,115,113,114,116,40,45,50,42,77,97,116,104,46,108,111,103,40,105,41,47,105,41,125,125,114,101,116,117,114,110,32,101,46,115,111,117,114,99,101,61,116,44,101,125,40,119,104,41,44,84,104,61,102,117,110,99,116,105,111,110,32,116,40,110,41,123,102,117,110,99,116,105,111,110,32,101,40,41,123,118,97,114,32,116,61,78,104,46,115,111,117,114,99,101,40,110,41,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,77,97,116,104,46,101,120,112,40,116,40,41,41,125,125,114,101,116,117,114,110,32,101,46,115,111,117,114,99,101,61,116,44,101,125,40,119,104,41,44,65,104,61,102,117,110,99,116,105,111,110,32,116,40,110,41,123,102,117,110,99,116,105,111,110,32,101,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,118,97,114,32,101,61,48,44,114,61,48,59,114,60,116,59,43,43,114,41,101,43,61,110,40,41,59,114,101,116,117,114,110,32,101,125,125,114,101,116,117,114,110,32,101,46,115,111,117,114,99,101,61,116,44,101,125,40,119,104,41,44,83,104,61,102,117,110,99,116,105,111,110,32,116,40,110,41,123,102,117,110,99,116,105,111,110,32,101,40,116,41,123,118,97,114,32,101,61,65,104,46,115,111,117,114,99,101,40,110,41,40,116,41,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,101,40,41,47,116,125,125,114,101,116,117,114,110,32,101,46,115,111,117,114,99,101,61,116,44,101,125,40,119,104,41,44,107,104,61,102,117,110,99,116,105,111,110,32,116,40,110,41,123,102,117,110,99,116,105,111,110,32,101,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,45,77,97,116,104,46,108,111,103,40,49,45,110,40,41,41,47,116,125,125,114,101,116,117,114,110,32,101,46,115,111,117,114,99,101,61,116,44,101,125,40,119,104,41,59,102,117,110,99,116,105,111,110,32,69,104,40,116,44,110,41,123,115,119,105,116,99,104,40,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,123,99,97,115,101,32,48,58,98,114,101,97,107,59,99,97,115,101,32,49,58,116,104,105,115,46,114,97,110,103,101,40,116,41,59,98,114,101,97,107,59,100,101,102,97,117,108,116,58,116,104,105,115,46,114,97,110,103,101,40,110,41,46,100,111,109,97,105,110,40,116,41,125,114,101,116,117,114,110,32,116,104,105,115,125,102,117,110,99,116,105,111,110,32,67,104,40,116,44,110,41,123,115,119,105,116,99,104,40,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,123,99,97,115,101,32,48,58,98,114,101,97,107,59,99,97,115,101,32,49,58,116,104,105,115,46,105,110,116,101,114,112,111,108,97,116,111,114,40,116,41,59,98,114,101,97,107,59,100,101,102,97,117,108,116,58,116,104,105,115,46,105,110,116,101,114,112,111,108,97,116,111,114,40,110,41,46,100,111,109,97,105,110,40,116,41,125,114,101,116,117,114,110,32,116,104,105,115,125,118,97,114,32,80,104,61,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,44,122,104,61,80,104,46,109,97,112,44,82,104,61,80,104,46,115,108,105,99,101,44,68,104,61,123,110,97,109,101,58,34,105,109,112,108,105,99,105,116,34,125,59,102,117,110,99,116,105,111,110,32,113,104,40,41,123,118,97,114,32,116,61,99,111,40,41,44,110,61,91,93,44,101,61,91,93,44,114,61,68,104,59,102,117,110,99,116,105,111,110,32,105,40,105,41,123,118,97,114,32,111,61,105,43,34,34,44,97,61,116,46,103,101,116,40,111,41,59,105,102,40,33,97,41,123,105,102,40,114,33,61,61,68,104,41,114,101,116,117,114,110,32,114,59,116,46,115,101,116,40,111,44,97,61,110,46,112,117,115,104,40,105,41,41,125,114,101,116,117,114,110,32,101,91,40,97,45,49,41,37,101,46,108,101,110,103,116,104,93,125,114,101,116,117,114,110,32,105,46,100,111,109,97,105,110,61,102,117,110,99,116,105,111,110,40,101,41,123,105,102,40,33,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,114,101,116,117,114,110,32,110,46,115,108,105,99,101,40,41,59,110,61,91,93,44,116,61,99,111,40,41,59,102,111,114,40,118,97,114,32,114,44,111,44,97,61,45,49,44,117,61,101,46,108,101,110,103,116,104,59,43,43,97,60,117,59,41,116,46,104,97,115,40,111,61,40,114,61,101,91,97,93,41,43,34,34,41,124,124,116,46,115,101,116,40,111,44,110,46,112,117,115,104,40,114,41,41,59,114,101,116,117,114,110,32,105,125,44,105,46,114,97,110,103,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,101,61,82,104,46,99,97,108,108,40,116,41,44,105,41,58,101,46,115,108,105,99,101,40,41,125,44,105,46,117,110,107,110,111,119,110,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,114,61,116,44,105,41,58,114,125,44,105,46,99,111,112,121,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,113,104,40,110,44,101,41,46,117,110,107,110,111,119,110,40,114,41,125,44,69,104,46,97,112,112,108,121,40,105,44,97,114,103,117,109,101,110,116,115,41,44,105,125,102,117,110,99,116,105,111,110,32,76,104,40,41,123,118,97,114,32,116,44,110,44,101,61,113,104,40,41,46,117,110,107,110,111,119,110,40,118,111,105,100,32,48,41,44,114,61,101,46,100,111,109,97,105,110,44,105,61,101,46,114,97,110,103,101,44,111,61,91,48,44,49,93,44,97,61,33,49,44,117,61,48,44,99,61,48,44,102,61,46,53,59,102,117,110,99,116,105,111,110,32,115,40,41,123,118,97,114,32,101,61,114,40,41,46,108,101,110,103,116,104,44,115,61,111,91,49,93,60,111,91,48,93,44,108,61,111,91,115,45,48,93,44,104,61,111,91,49,45,115,93,59,116,61,40,104,45,108,41,47,77,97,116,104,46,109,97,120,40,49,44,101,45,117,43,50,42,99,41,44,97,38,38,40,116,61,77,97,116,104,46,102,108,111,111,114,40,116,41,41,44,108,43,61,40,104,45,108,45,116,42,40,101,45,117,41,41,42,102,44,110,61,116,42,40,49,45,117,41,44,97,38,38,40,108,61,77,97,116,104,46,114,111,117,110,100,40,108,41,44,110,61,77,97,116,104,46,114,111,117,110,100,40,110,41,41,59,118,97,114,32,100,61,103,40,101,41,46,109,97,112,40,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,108,43,116,42,110,125,41,59,114,101,116,117,114,110,32,105,40,115,63,100,46,114,101,118,101,114,115,101,40,41,58,100,41,125,114,101,116,117,114,110,32,100,101,108,101,116,101,32,101,46,117,110,107,110,111,119,110,44,101,46,100,111,109,97,105,110,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,114,40,116,41,44,115,40,41,41,58,114,40,41,125,44,101,46,114,97,110,103,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,111,61,91,43,116,91,48,93,44,43,116,91,49,93,93,44,115,40,41,41,58,111,46,115,108,105,99,101,40,41,125,44,101,46,114,97,110,103,101,82,111,117,110,100,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,111,61,91,43,116,91,48,93,44,43,116,91,49,93,93,44,97,61,33,48,44,115,40,41,125,44,101,46,98,97,110,100,119,105,100,116,104,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,110,125,44,101,46,115,116,101,112,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,125,44,101,46,114,111,117,110,100,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,97,61,33,33,116,44,115,40,41,41,58,97,125,44,101,46,112,97,100,100,105,110,103,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,117,61,77,97,116,104,46,109,105,110,40,49,44,99,61,43,116,41,44,115,40,41,41,58,117,125,44,101,46,112,97,100,100,105,110,103,73,110,110,101,114,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,117,61,77,97,116,104,46,109,105,110,40,49,44,116,41,44,115,40,41,41,58,117,125,44,101,46,112,97,100,100,105,110,103,79,117,116,101,114,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,99,61,43,116,44,115,40,41,41,58,99,125,44,101,46,97,108,105,103,110,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,102,61,77,97,116,104,46,109,97,120,40,48,44,77,97,116,104,46,109,105,110,40,49,44,116,41,41,44,115,40,41,41,58,102,125,44,101,46,99,111,112,121,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,76,104,40,114,40,41,44,111,41,46,114,111,117,110,100,40,97,41,46,112,97,100,100,105,110,103,73,110,110,101,114,40,117,41,46,112,97,100,100,105,110,103,79,117,116,101,114,40,99,41,46,97,108,105,103,110,40,102,41,125,44,69,104,46,97,112,112,108,121,40,115,40,41,44,97,114,103,117,109,101,110,116,115,41,125,102,117,110,99,116,105,111,110,32,85,104,40,116,41,123,114,101,116,117,114,110,43,116,125,118,97,114,32,79,104,61,91,48,44,49,93,59,102,117,110,99,116,105,111,110,32,66,104,40,116,41,123,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,70,104,40,116,44,110,41,123,114,101,116,117,114,110,40,110,45,61,116,61,43,116,41,63,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,40,101,45,116,41,47,110,125,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,125,125,40,105,115,78,97,78,40,110,41,63,78,97,78,58,46,53,41,125,102,117,110,99,116,105,111,110,32,89,104,40,116,41,123,118,97,114,32,110,44,101,61,116,91,48,93,44,114,61,116,91,116,46,108,101,110,103,116,104,45,49,93,59,114,101,116,117,114,110,32,101,62,114,38,38,40,110,61,101,44,101,61,114,44,114,61,110,41,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,77,97,116,104,46,109,97,120,40,101,44,77,97,116,104,46,109,105,110,40,114,44,116,41,41,125,125,102,117,110,99,116,105,111,110,32,73,104,40,116,44,110,44,101,41,123,118,97,114,32,114,61,116,91,48,93,44,105,61,116,91,49,93,44,111,61,110,91,48,93,44,97,61,110,91,49,93,59,114,101,116,117,114,110,32,105,60,114,63,40,114,61,70,104,40,105,44,114,41,44,111,61,101,40,97,44,111,41,41,58,40,114,61,70,104,40,114,44,105,41,44,111,61,101,40,111,44,97,41,41,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,111,40,114,40,116,41,41,125,125,102,117,110,99,116,105,111,110,32,72,104,40,116,44,110,44,101,41,123,118,97,114,32,114,61,77,97,116,104,46,109,105,110,40,116,46,108,101,110,103,116,104,44,110,46,108,101,110,103,116,104,41,45,49,44,111,61,110,101,119,32,65,114,114,97,121,40,114,41,44,97,61,110,101,119,32,65,114,114,97,121,40,114,41,44,117,61,45,49,59,102,111,114,40,116,91,114,93,60,116,91,48,93,38,38,40,116,61,116,46,115,108,105,99,101,40,41,46,114,101,118,101,114,115,101,40,41,44,110,61,110,46,115,108,105,99,101,40,41,46,114,101,118,101,114,115,101,40,41,41,59,43,43,117,60,114,59,41,111,91,117,93,61,70,104,40,116,91,117,93,44,116,91,117,43,49,93,41,44,97,91,117,93,61,101,40,110,91,117,93,44,110,91,117,43,49,93,41,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,101,61,105,40,116,44,110,44,49,44,114,41,45,49,59,114,101,116,117,114,110,32,97,91,101,93,40,111,91,101,93,40,110,41,41,125,125,102,117,110,99,116,105,111,110,32,106,104,40,116,44,110,41,123,114,101,116,117,114,110,32,110,46,100,111,109,97,105,110,40,116,46,100,111,109,97,105,110,40,41,41,46,114,97,110,103,101,40,116,46,114,97,110,103,101,40,41,41,46,105,110,116,101,114,112,111,108,97,116,101,40,116,46,105,110,116,101,114,112,111,108,97,116,101,40,41,41,46,99,108,97,109,112,40,116,46,99,108,97,109,112,40,41,41,46,117,110,107,110,111,119,110,40,116,46,117,110,107,110,111,119,110,40,41,41,125,102,117,110,99,116,105,111,110,32,88,104,40,41,123,118,97,114,32,116,44,110,44,101,44,114,44,105,44,111,44,97,61,79,104,44,117,61,79,104,44,99,61,84,101,44,102,61,66,104,59,102,117,110,99,116,105,111,110,32,115,40,41,123,114,101,116,117,114,110,32,114,61,77,97,116,104,46,109,105,110,40,97,46,108,101,110,103,116,104,44,117,46,108,101,110,103,116,104,41,62,50,63,72,104,58,73,104,44,105,61,111,61,110,117,108,108,44,108,125,102,117,110,99,116,105,111,110,32,108,40,110,41,123,114,101,116,117,114,110,32,105,115,78,97,78,40,110,61,43,110,41,63,101,58,40,105,124,124,40,105,61,114,40,97,46,109,97,112,40,116,41,44,117,44,99,41,41,41,40,116,40,102,40,110,41,41,41,125,114,101,116,117,114,110,32,108,46,105,110,118,101,114,116,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,102,40,110,40,40,111,124,124,40,111,61,114,40,117,44,97,46,109,97,112,40,116,41,44,109,101,41,41,41,40,101,41,41,41,125,44,108,46,100,111,109,97,105,110,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,97,61,122,104,46,99,97,108,108,40,116,44,85,104,41,44,102,61,61,61,66,104,124,124,40,102,61,89,104,40,97,41,41,44,115,40,41,41,58,97,46,115,108,105,99,101,40,41,125,44,108,46,114,97,110,103,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,117,61,82,104,46,99,97,108,108,40,116,41,44,115,40,41,41,58,117,46,115,108,105,99,101,40,41,125,44,108,46,114,97,110,103,101,82,111,117,110,100,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,117,61,82,104,46,99,97,108,108,40,116,41,44,99,61,65,101,44,115,40,41,125,44,108,46,99,108,97,109,112,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,102,61,116,63,89,104,40,97,41,58,66,104,44,108,41,58,102,33,61,61,66,104,125,44,108,46,105,110,116,101,114,112,111,108,97,116,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,99,61,116,44,115,40,41,41,58,99,125,44,108,46,117,110,107,110,111,119,110,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,101,61,116,44,108,41,58,101,125,44,102,117,110,99,116,105,111,110,40,101,44,114,41,123,114,101,116,117,114,110,32,116,61,101,44,110,61,114,44,115,40,41,125,125,102,117,110,99,116,105,111,110,32,86,104,40,116,44,110,41,123,114,101,116,117,114,110,32,88,104,40,41,40,116,44,110,41,125,102,117,110,99,116,105,111,110,32,71,104,40,110,44,101,44,114,44,105,41,123,118,97,114,32,111,44,97,61,119,40,110,44,101,44,114,41,59,115,119,105,116,99,104,40,40,105,61,79,97,40,110,117,108,108,61,61,105,63,34,44,102,34,58,105,41,41,46,116,121,112,101,41,123,99,97,115,101,34,115,34,58,118,97,114,32,117,61,77,97,116,104,46,109,97,120,40,77,97,116,104,46,97,98,115,40,110,41,44,77,97,116,104,46,97,98,115,40,101,41,41,59,114,101,116,117,114,110,32,110,117,108,108,33,61,105,46,112,114,101,99,105,115,105,111,110,124,124,105,115,78,97,78,40,111,61,87,97,40,97,44,117,41,41,124,124,40,105,46,112,114,101,99,105,115,105,111,110,61,111,41,44,116,46,102,111,114,109,97,116,80,114,101,102,105,120,40,105,44,117,41,59,99,97,115,101,34,34,58,99,97,115,101,34,101,34,58,99,97,115,101,34,103,34,58,99,97,115,101,34,112,34,58,99,97,115,101,34,114,34,58,110,117,108,108,33,61,105,46,112,114,101,99,105,115,105,111,110,124,124,105,115,78,97,78,40,111,61,90,97,40,97,44,77,97,116,104,46,109,97,120,40,77,97,116,104,46,97,98,115,40,110,41,44,77,97,116,104,46,97,98,115,40,101,41,41,41,41,124,124,40,105,46,112,114,101,99,105,115,105,111,110,61,111,45,40,34,101,34,61,61,61,105,46,116,121,112,101,41,41,59,98,114,101,97,107,59,99,97,115,101,34,102,34,58,99,97,115,101,34,37,34,58,110,117,108,108,33,61,105,46,112,114,101,99,105,115,105,111,110,124,124,105,115,78,97,78,40,111,61,36,97,40,97,41,41,124,124,40,105,46,112,114,101,99,105,115,105,111,110,61,111,45,50,42,40,34,37,34,61,61,61,105,46,116,121,112,101,41,41,125,114,101,116,117,114,110,32,116,46,102,111,114,109,97,116,40,105,41,125,102,117,110,99,116,105,111,110,32,36,104,40,116,41,123,118,97,114,32,110,61,116,46,100,111,109,97,105,110,59,114,101,116,117,114,110,32,116,46,116,105,99,107,115,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,110,40,41,59,114,101,116,117,114,110,32,109,40,101,91,48,93,44,101,91,101,46,108,101,110,103,116,104,45,49,93,44,110,117,108,108,61,61,116,63,49,48,58,116,41,125,44,116,46,116,105,99,107,70,111,114,109,97,116,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,114,61,110,40,41,59,114,101,116,117,114,110,32,71,104,40,114,91,48,93,44,114,91,114,46,108,101,110,103,116,104,45,49,93,44,110,117,108,108,61,61,116,63,49,48,58,116,44,101,41,125,44,116,46,110,105,99,101,61,102,117,110,99,116,105,111,110,40,101,41,123,110,117,108,108,61,61,101,38,38,40,101,61,49,48,41,59,118,97,114,32,114,44,105,61,110,40,41,44,111,61,48,44,97,61,105,46,108,101,110,103,116,104,45,49,44,117,61,105,91,111,93,44,99,61,105,91,97,93,59,114,101,116,117,114,110,32,99,60,117,38,38,40,114,61,117,44,117,61,99,44,99,61,114,44,114,61,111,44,111,61,97,44,97,61,114,41,44,40,114,61,120,40,117,44,99,44,101,41,41,62,48,63,114,61,120,40,117,61,77,97,116,104,46,102,108,111,111,114,40,117,47,114,41,42,114,44,99,61,77,97,116,104,46,99,101,105,108,40,99,47,114,41,42,114,44,101,41,58,114,60,48,38,38,40,114,61,120,40,117,61,77,97,116,104,46,99,101,105,108,40,117,42,114,41,47,114,44,99,61,77,97,116,104,46,102,108,111,111,114,40,99,42,114,41,47,114,44,101,41,41,44,114,62,48,63,40,105,91,111,93,61,77,97,116,104,46,102,108,111,111,114,40,117,47,114,41,42,114,44,105,91,97,93,61,77,97,116,104,46,99,101,105,108,40,99,47,114,41,42,114,44,110,40,105,41,41,58,114,60,48,38,38,40,105,91,111,93,61,77,97,116,104,46,99,101,105,108,40,117,42,114,41,47,114,44,105,91,97,93,61,77,97,116,104,46,102,108,111,111,114,40,99,42,114,41,47,114,44,110,40,105,41,41,44,116,125,44,116,125,102,117,110,99,116,105,111,110,32,87,104,40,116,44,110,41,123,118,97,114,32,101,44,114,61,48,44,105,61,40,116,61,116,46,115,108,105,99,101,40,41,41,46,108,101,110,103,116,104,45,49,44,111,61,116,91,114,93,44,97,61,116,91,105,93,59,114,101,116,117,114,110,32,97,60,111,38,38,40,101,61,114,44,114,61,105,44,105,61,101,44,101,61,111,44,111,61,97,44,97,61,101,41,44,116,91,114,93,61,110,46,102,108,111,111,114,40,111,41,44,116,91,105,93,61,110,46,99,101,105,108,40,97,41,44,116,125,102,117,110,99,116,105,111,110,32,90,104,40,116,41,123,114,101,116,117,114,110,32,77,97,116,104,46,108,111,103,40,116,41,125,102,117,110,99,116,105,111,110,32,81,104,40,116,41,123,114,101,116,117,114,110,32,77,97,116,104,46,101,120,112,40,116,41,125,102,117,110,99,116,105,111,110,32,75,104,40,116,41,123,114,101,116,117,114,110,45,77,97,116,104,46,108,111,103,40,45,116,41,125,102,117,110,99,116,105,111,110,32,74,104,40,116,41,123,114,101,116,117,114,110,45,77,97,116,104,46,101,120,112,40,45,116,41,125,102,117,110,99,116,105,111,110,32,116,100,40,116,41,123,114,101,116,117,114,110,32,105,115,70,105,110,105,116,101,40,116,41,63,43,40,34,49,101,34,43,116,41,58,116,60,48,63,48,58,116,125,102,117,110,99,116,105,111,110,32,110,100,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,45,116,40,45,110,41,125,125,102,117,110,99,116,105,111,110,32,101,100,40,110,41,123,118,97,114,32,101,44,114,44,105,61,110,40,90,104,44,81,104,41,44,111,61,105,46,100,111,109,97,105,110,44,97,61,49,48,59,102,117,110,99,116,105,111,110,32,117,40,41,123,114,101,116,117,114,110,32,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,61,61,61,77,97,116,104,46,69,63,77,97,116,104,46,108,111,103,58,49,48,61,61,61,116,38,38,77,97,116,104,46,108,111,103,49,48,124,124,50,61,61,61,116,38,38,77,97,116,104,46,108,111,103,50,124,124,40,116,61,77,97,116,104,46,108,111,103,40,116,41,44,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,77,97,116,104,46,108,111,103,40,110,41,47,116,125,41,125,40,97,41,44,114,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,49,48,61,61,61,116,63,116,100,58,116,61,61,61,77,97,116,104,46,69,63,77,97,116,104,46,101,120,112,58,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,77,97,116,104,46,112,111,119,40,116,44,110,41,125,125,40,97,41,44,111,40,41,91,48,93,60,48,63,40,101,61,110,100,40,101,41,44,114,61,110,100,40,114,41,44,110,40,75,104,44,74,104,41,41,58,110,40,90,104,44,81,104,41,44,105,125,114,101,116,117,114,110,32,105,46,98,97,115,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,97,61,43,116,44,117,40,41,41,58,97,125,44,105,46,100,111,109,97,105,110,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,111,40,116,41,44,117,40,41,41,58,111,40,41,125,44,105,46,116,105,99,107,115,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,44,105,61,111,40,41,44,117,61,105,91,48,93,44,99,61,105,91,105,46,108,101,110,103,116,104,45,49,93,59,40,110,61,99,60,117,41,38,38,40,104,61,117,44,117,61,99,44,99,61,104,41,59,118,97,114,32,102,44,115,44,108,44,104,61,101,40,117,41,44,100,61,101,40,99,41,44,112,61,110,117,108,108,61,61,116,63,49,48,58,43,116,44,118,61,91,93,59,105,102,40,33,40,97,37,49,41,38,38,100,45,104,60,112,41,123,105,102,40,104,61,77,97,116,104,46,114,111,117,110,100,40,104,41,45,49,44,100,61,77,97,116,104,46,114,111,117,110,100,40,100,41,43,49,44,117,62,48,41,123,102,111,114,40,59,104,60,100,59,43,43,104,41,102,111,114,40,115,61,49,44,102,61,114,40,104,41,59,115,60,97,59,43,43,115,41,105,102,40,33,40,40,108,61,102,42,115,41,60,117,41,41,123,105,102,40,108,62,99,41,98,114,101,97,107,59,118,46,112,117,115,104,40,108,41,125,125,101,108,115,101,32,102,111,114,40,59,104,60,100,59,43,43,104,41,102,111,114,40,115,61,97,45,49,44,102,61,114,40,104,41,59,115,62,61,49,59,45,45,115,41,105,102,40,33,40,40,108,61,102,42,115,41,60,117,41,41,123,105,102,40,108,62,99,41,98,114,101,97,107,59,118,46,112,117,115,104,40,108,41,125,125,101,108,115,101,32,118,61,109,40,104,44,100,44,77,97,116,104,46,109,105,110,40,100,45,104,44,112,41,41,46,109,97,112,40,114,41,59,114,101,116,117,114,110,32,110,63,118,46,114,101,118,101,114,115,101,40,41,58,118,125,44,105,46,116,105,99,107,70,111,114,109,97,116,61,102,117,110,99,116,105,111,110,40,110,44,111,41,123,105,102,40,110,117,108,108,61,61,111,38,38,40,111,61,49,48,61,61,61,97,63,34,46,48,101,34,58,34,44,34,41,44,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,111,38,38,40,111,61,116,46,102,111,114,109,97,116,40,111,41,41,44,110,61,61,61,49,47,48,41,114,101,116,117,114,110,32,111,59,110,117,108,108,61,61,110,38,38,40,110,61,49,48,41,59,118,97,114,32,117,61,77,97,116,104,46,109,97,120,40,49,44,97,42,110,47,105,46,116,105,99,107,115,40,41,46,108,101,110,103,116,104,41,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,116,47,114,40,77,97,116,104,46,114,111,117,110,100,40,101,40,116,41,41,41,59,114,101,116,117,114,110,32,110,42,97,60,97,45,46,53,38,38,40,110,42,61,97,41,44,110,60,61,117,63,111,40,116,41,58,34,34,125,125,44,105,46,110,105,99,101,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,111,40,87,104,40,111,40,41,44,123,102,108,111,111,114,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,114,40,77,97,116,104,46,102,108,111,111,114,40,101,40,116,41,41,41,125,44,99,101,105,108,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,114,40,77,97,116,104,46,99,101,105,108,40,101,40,116,41,41,41,125,125,41,41,125,44,105,125,102,117,110,99,116,105,111,110,32,114,100,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,77,97,116,104,46,115,105,103,110,40,110,41,42,77,97,116,104,46,108,111,103,49,112,40,77,97,116,104,46,97,98,115,40,110,47,116,41,41,125,125,102,117,110,99,116,105,111,110,32,105,100,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,77,97,116,104,46,115,105,103,110,40,110,41,42,77,97,116,104,46,101,120,112,109,49,40,77,97,116,104,46,97,98,115,40,110,41,41,42,116,125,125,102,117,110,99,116,105,111,110,32,111,100,40,116,41,123,118,97,114,32,110,61,49,44,101,61,116,40,114,100,40,110,41,44,105,100,40,110,41,41,59,114,101,116,117,114,110,32,101,46,99,111,110,115,116,97,110,116,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,116,40,114,100,40,110,61,43,101,41,44,105,100,40,110,41,41,58,110,125,44,36,104,40,101,41,125,102,117,110,99,116,105,111,110,32,97,100,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,110,60,48,63,45,77,97,116,104,46,112,111,119,40,45,110,44,116,41,58,77,97,116,104,46,112,111,119,40,110,44,116,41,125,125,102,117,110,99,116,105,111,110,32,117,100,40,116,41,123,114,101,116,117,114,110,32,116,60,48,63,45,77,97,116,104,46,115,113,114,116,40,45,116,41,58,77,97,116,104,46,115,113,114,116,40,116,41,125,102,117,110,99,116,105,111,110,32,99,100,40,116,41,123,114,101,116,117,114,110,32,116,60,48,63,45,116,42,116,58,116,42,116,125,102,117,110,99,116,105,111,110,32,102,100,40,116,41,123,118,97,114,32,110,61,116,40,66,104,44,66,104,41,44,101,61,49,59,102,117,110,99,116,105,111,110,32,114,40,41,123,114,101,116,117,114,110,32,49,61,61,61,101,63,116,40,66,104,44,66,104,41,58,46,53,61,61,61,101,63,116,40,117,100,44,99,100,41,58,116,40,97,100,40,101,41,44,97,100,40,49,47,101,41,41,125,114,101,116,117,114,110,32,110,46,101,120,112,111,110,101,110,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,101,61,43,116,44,114,40,41,41,58,101,125,44,36,104,40,110,41,125,102,117,110,99,116,105,111,110,32,115,100,40,41,123,118,97,114,32,116,61,102,100,40,88,104,40,41,41,59,114,101,116,117,114,110,32,116,46,99,111,112,121,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,106,104,40,116,44,115,100,40,41,41,46,101,120,112,111,110,101,110,116,40,116,46,101,120,112,111,110,101,110,116,40,41,41,125,44,69,104,46,97,112,112,108,121,40,116,44,97,114,103,117,109,101,110,116,115,41,44,116,125,118,97,114,32,108,100,61,110,101,119,32,68,97,116,101,44,104,100,61,110,101,119,32,68,97,116,101,59,102,117,110,99,116,105,111,110,32,100,100,40,116,44,110,44,101,44,114,41,123,102,117,110,99,116,105,111,110,32,105,40,110,41,123,114,101,116,117,114,110,32,116,40,110,61,48,61,61,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,110,101,119,32,68,97,116,101,58,110,101,119,32,68,97,116,101,40,43,110,41,41,44,110,125,114,101,116,117,114,110,32,105,46,102,108,111,111,114,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,40,110,61,110,101,119,32,68,97,116,101,40,43,110,41,41,44,110,125,44,105,46,99,101,105,108,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,40,101,61,110,101,119,32,68,97,116,101,40,101,45,49,41,41,44,110,40,101,44,49,41,44,116,40,101,41,44,101,125,44,105,46,114,111,117,110,100,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,105,40,116,41,44,101,61,105,46,99,101,105,108,40,116,41,59,114,101,116,117,114,110,32,116,45,110,60,101,45,116,63,110,58,101,125,44,105,46,111,102,102,115,101,116,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,110,40,116,61,110,101,119,32,68,97,116,101,40,43,116,41,44,110,117,108,108,61,61,101,63,49,58,77,97,116,104,46,102,108,111,111,114,40,101,41,41,44,116,125,44,105,46,114,97,110,103,101,61,102,117,110,99,116,105,111,110,40,101,44,114,44,111,41,123,118,97,114,32,97,44,117,61,91,93,59,105,102,40,101,61,105,46,99,101,105,108,40,101,41,44,111,61,110,117,108,108,61,61,111,63,49,58,77,97,116,104,46,102,108,111,111,114,40,111,41,44,33,40,101,60,114,38,38,111,62,48,41,41,114,101,116,117,114,110,32,117,59,100,111,123,117,46,112,117,115,104,40,97,61,110,101,119,32,68,97,116,101,40,43,101,41,41,44,110,40,101,44,111,41,44,116,40,101,41,125,119,104,105,108,101,40,97,60,101,38,38,101,60,114,41,59,114,101,116,117,114,110,32,117,125,44,105,46,102,105,108,116,101,114,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,100,100,40,102,117,110,99,116,105,111,110,40,110,41,123,105,102,40,110,62,61,110,41,102,111,114,40,59,116,40,110,41,44,33,101,40,110,41,59,41,110,46,115,101,116,84,105,109,101,40,110,45,49,41,125,44,102,117,110,99,116,105,111,110,40,116,44,114,41,123,105,102,40,116,62,61,116,41,105,102,40,114,60,48,41,102,111,114,40,59,43,43,114,60,61,48,59,41,102,111,114,40,59,110,40,116,44,45,49,41,44,33,101,40,116,41,59,41,59,101,108,115,101,32,102,111,114,40,59,45,45,114,62,61,48,59,41,102,111,114,40,59,110,40,116,44,49,41,44,33,101,40,116,41,59,41,59,125,41,125,44,101,38,38,40,105,46,99,111,117,110,116,61,102,117,110,99,116,105,111,110,40,110,44,114,41,123,114,101,116,117,114,110,32,108,100,46,115,101,116,84,105,109,101,40,43,110,41,44,104,100,46,115,101,116,84,105,109,101,40,43,114,41,44,116,40,108,100,41,44,116,40,104,100,41,44,77,97,116,104,46,102,108,111,111,114,40,101,40,108,100,44,104,100,41,41,125,44,105,46,101,118,101,114,121,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,61,77,97,116,104,46,102,108,111,111,114,40,116,41,44,105,115,70,105,110,105,116,101,40,116,41,38,38,116,62,48,63,116,62,49,63,105,46,102,105,108,116,101,114,40,114,63,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,114,40,110,41,37,116,61,61,48,125,58,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,105,46,99,111,117,110,116,40,48,44,110,41,37,116,61,61,48,125,41,58,105,58,110,117,108,108,125,41,44,105,125,118,97,114,32,112,100,61,100,100,40,102,117,110,99,116,105,111,110,40,41,123,125,44,102,117,110,99,116,105,111,110,40,116,44,110,41,123,116,46,115,101,116,84,105,109,101,40,43,116,43,110,41,125,44,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,110,45,116,125,41,59,112,100,46,101,118,101,114,121,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,61,77,97,116,104,46,102,108,111,111,114,40,116,41,44,105,115,70,105,110,105,116,101,40,116,41,38,38,116,62,48,63,116,62,49,63,100,100,40,102,117,110,99,116,105,111,110,40,110,41,123,110,46,115,101,116,84,105,109,101,40,77,97,116,104,46,102,108,111,111,114,40,110,47,116,41,42,116,41,125,44,102,117,110,99,116,105,111,110,40,110,44,101,41,123,110,46,115,101,116,84,105,109,101,40,43,110,43,101,42,116,41,125,44,102,117,110,99,116,105,111,110,40,110,44,101,41,123,114,101,116,117,114,110,40,101,45,110,41,47,116,125,41,58,112,100,58,110,117,108,108,125,59,118,97,114,32,118,100,61,112,100,46,114,97,110,103,101,44,103,100,61,54,101,52,44,121,100,61,54,48,52,56,101,53,44,95,100,61,100,100,40,102,117,110,99,116,105,111,110,40,116,41,123,116,46,115,101,116,84,105,109,101,40,116,45,116,46,103,101,116,77,105,108,108,105,115,101,99,111,110,100,115,40,41,41,125,44,102,117,110,99,116,105,111,110,40,116,44,110,41,123,116,46,115,101,116,84,105,109,101,40,43,116,43,49,101,51,42,110,41,125,44,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,40,110,45,116,41,47,49,101,51,125,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,103,101,116,85,84,67,83,101,99,111,110,100,115,40,41,125,41,44,98,100,61,95,100,46,114,97,110,103,101,44,109,100,61,100,100,40,102,117,110,99,116,105,111,110,40,116,41,123,116,46,115,101,116,84,105,109,101,40,116,45,116,46,103,101,116,77,105,108,108,105,115,101,99,111,110,100,115,40,41,45,49,101,51,42,116,46,103,101,116,83,101,99,111,110,100,115,40,41,41,125,44,102,117,110,99,116,105,111,110,40,116,44,110,41,123,116,46,115,101,116,84,105,109,101,40,43,116,43,110,42,103,100,41,125,44,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,40,110,45,116,41,47,103,100,125,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,103,101,116,77,105,110,117,116,101,115,40,41,125,41,44,120,100,61,109,100,46,114,97,110,103,101,44,119,100,61,100,100,40,102,117,110,99,116,105,111,110,40,116,41,123,116,46,115,101,116,84,105,109,101,40,116,45,116,46,103,101,116,77,105,108,108,105,115,101,99,111,110,100,115,40,41,45,49,101,51,42,116,46,103,101,116,83,101,99,111,110,100,115,40,41,45,116,46,103,101,116,77,105,110,117,116,101,115,40,41,42,103,100,41,125,44,102,117,110,99,116,105,111,110,40,116,44,110,41,123,116,46,115,101,116,84,105,109,101,40,43,116,43,51,54,101,53,42,110,41,125,44,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,40,110,45,116,41,47,51,54,101,53,125,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,103,101,116,72,111,117,114,115,40,41,125,41,44,77,100,61,119,100,46,114,97,110,103,101,44,78,100,61,100,100,40,102,117,110,99,116,105,111,110,40,116,41,123,116,46,115,101,116,72,111,117,114,115,40,48,44,48,44,48,44,48,41,125,44,102,117,110,99,116,105,111,110,40,116,44,110,41,123,116,46,115,101,116,68,97,116,101,40,116,46,103,101,116,68,97,116,101,40,41,43,110,41,125,44,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,40,110,45,116,45,40,110,46,103,101,116,84,105,109,101,122,111,110,101,79,102,102,115,101,116,40,41,45,116,46,103,101,116,84,105,109,101,122,111,110,101,79,102,102,115,101,116,40,41,41,42,103,100,41,47,56,54,52,101,53,125,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,103,101,116,68,97,116,101,40,41,45,49,125,41,44,84,100,61,78,100,46,114,97,110,103,101,59,102,117,110,99,116,105,111,110,32,65,100,40,116,41,123,114,101,116,117,114,110,32,100,100,40,102,117,110,99,116,105,111,110,40,110,41,123,110,46,115,101,116,68,97,116,101,40,110,46,103,101,116,68,97,116,101,40,41,45,40,110,46,103,101,116,68,97,121,40,41,43,55,45,116,41,37,55,41,44,110,46,115,101,116,72,111,117,114,115,40,48,44,48,44,48,44,48,41,125,44,102,117,110,99,116,105,111,110,40,116,44,110,41,123,116,46,115,101,116,68,97,116,101,40,116,46,103,101,116,68,97,116,101,40,41,43,55,42,110,41,125,44,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,40,110,45,116,45,40,110,46,103,101,116,84,105,109,101,122,111,110,101,79,102,102,115,101,116,40,41,45,116,46,103,101,116,84,105,109,101,122,111,110,101,79,102,102,115,101,116,40,41,41,42,103,100,41,47,121,100,125,41,125,118,97,114,32,83,100,61,65,100,40,48,41,44,107,100,61,65,100,40,49,41,44,69,100,61,65,100,40,50,41,44,67,100,61,65,100,40,51,41,44,80,100,61,65,100,40,52,41,44,122,100,61,65,100,40,53,41,44,82,100,61,65,100,40,54,41,44,68,100,61,83,100,46,114,97,110,103,101,44,113,100,61,107,100,46,114,97,110,103,101,44,76,100,61,69,100,46,114,97,110,103,101,44,85,100,61,67,100,46,114,97,110,103,101,44,79,100,61,80,100,46,114,97,110,103,101,44,66,100,61,122,100,46,114,97,110,103,101,44,70,100,61,82,100,46,114,97,110,103,101,44,89,100,61,100,100,40,102,117,110,99,116,105,111,110,40,116,41,123,116,46,115,101,116,68,97,116,101,40,49,41,44,116,46,115,101,116,72,111,117,114,115,40,48,44,48,44,48,44,48,41,125,44,102,117,110,99,116,105,111,110,40,116,44,110,41,123,116,46,115,101,116,77,111,110,116,104,40,116,46,103,101,116,77,111,110,116,104,40,41,43,110,41,125,44,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,110,46,103,101,116,77,111,110,116,104,40,41,45,116,46,103,101,116,77,111,110,116,104,40,41,43,49,50,42,40,110,46,103,101,116,70,117,108,108,89,101,97,114,40,41,45,116,46,103,101,116,70,117,108,108,89,101,97,114,40,41,41,125,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,103,101,116,77,111,110,116,104,40,41,125,41,44,73,100,61,89,100,46,114,97,110,103,101,44,72,100,61,100,100,40,102,117,110,99,116,105,111,110,40,116,41,123,116,46,115,101,116,77,111,110,116,104,40,48,44,49,41,44,116,46,115,101,116,72,111,117,114,115,40,48,44,48,44,48,44,48,41,125,44,102,117,110,99,116,105,111,110,40,116,44,110,41,123,116,46,115,101,116,70,117,108,108,89,101,97,114,40,116,46,103,101,116,70,117,108,108,89,101,97,114,40,41,43,110,41,125,44,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,110,46,103,101,116,70,117,108,108,89,101,97,114,40,41,45,116,46,103,101,116,70,117,108,108,89,101,97,114,40,41,125,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,103,101,116,70,117,108,108,89,101,97,114,40,41,125,41,59,72,100,46,101,118,101,114,121,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,105,115,70,105,110,105,116,101,40,116,61,77,97,116,104,46,102,108,111,111,114,40,116,41,41,38,38,116,62,48,63,100,100,40,102,117,110,99,116,105,111,110,40,110,41,123,110,46,115,101,116,70,117,108,108,89,101,97,114,40,77,97,116,104,46,102,108,111,111,114,40,110,46,103,101,116,70,117,108,108,89,101,97,114,40,41,47,116,41,42,116,41,44,110,46,115,101,116,77,111,110,116,104,40,48,44,49,41,44,110,46,115,101,116,72,111,117,114,115,40,48,44,48,44,48,44,48,41,125,44,102,117,110,99,116,105,111,110,40,110,44,101,41,123,110,46,115,101,116,70,117,108,108,89,101,97,114,40,110,46,103,101,116,70,117,108,108,89,101,97,114,40,41,43,101,42,116,41,125,41,58,110,117,108,108,125,59,118,97,114,32,106,100,61,72,100,46,114,97,110,103,101,44,88,100,61,100,100,40,102,117,110,99,116,105,111,110,40,116,41,123,116,46,115,101,116,85,84,67,83,101,99,111,110,100,115,40,48,44,48,41,125,44,102,117,110,99,116,105,111,110,40,116,44,110,41,123,116,46,115,101,116,84,105,109,101,40,43,116,43,110,42,103,100,41,125,44,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,40,110,45,116,41,47,103,100,125,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,103,101,116,85,84,67,77,105,110,117,116,101,115,40,41,125,41,44,86,100,61,88,100,46,114,97,110,103,101,44,71,100,61,100,100,40,102,117,110,99,116,105,111,110,40,116,41,123,116,46,115,101,116,85,84,67,77,105,110,117,116,101,115,40,48,44,48,44,48,41,125,44,102,117,110,99,116,105,111,110,40,116,44,110,41,123,116,46,115,101,116,84,105,109,101,40,43,116,43,51,54,101,53,42,110,41,125,44,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,40,110,45,116,41,47,51,54,101,53,125,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,103,101,116,85,84,67,72,111,117,114,115,40,41,125,41,44,36,100,61,71,100,46,114,97,110,103,101,44,87,100,61,100,100,40,102,117,110,99,116,105,111,110,40,116,41,123,116,46,115,101,116,85,84,67,72,111,117,114,115,40,48,44,48,44,48,44,48,41,125,44,102,117,110,99,116,105,111,110,40,116,44,110,41,123,116,46,115,101,116,85,84,67,68,97,116,101,40,116,46,103,101,116,85,84,67,68,97,116,101,40,41,43,110,41,125,44,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,40,110,45,116,41,47,56,54,52,101,53,125,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,103,101,116,85,84,67,68,97,116,101,40,41,45,49,125,41,44,90,100,61,87,100,46,114,97,110,103,101,59,102,117,110,99,116,105,111,110,32,81,100,40,116,41,123,114,101,116,117,114,110,32,100,100,40,102,117,110,99,116,105,111,110,40,110,41,123,110,46,115,101,116,85,84,67,68,97,116,101,40,110,46,103,101,116,85,84,67,68,97,116,101,40,41,45,40,110,46,103,101,116,85,84,67,68,97,121,40,41,43,55,45,116,41,37,55,41,44,110,46,115,101,116,85,84,67,72,111,117,114,115,40,48,44,48,44,48,44,48,41,125,44,102,117,110,99,116,105,111,110,40,116,44,110,41,123,116,46,115,101,116,85,84,67,68,97,116,101,40,116,46,103,101,116,85,84,67,68,97,116,101,40,41,43,55,42,110,41,125,44,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,40,110,45,116,41,47,121,100,125,41,125,118,97,114,32,75,100,61,81,100,40,48,41,44,74,100,61,81,100,40,49,41,44,116,112,61,81,100,40,50,41,44,110,112,61,81,100,40,51,41,44,101,112,61,81,100,40,52,41,44,114,112,61,81,100,40,53,41,44,105,112,61,81,100,40,54,41,44,111,112,61,75,100,46,114,97,110,103,101,44,97,112,61,74,100,46,114,97,110,103,101,44,117,112,61,116,112,46,114,97,110,103,101,44,99,112,61,110,112,46,114,97,110,103,101,44,102,112,61,101,112,46,114,97,110,103,101,44,115,112,61,114,112,46,114,97,110,103,101,44,108,112,61,105,112,46,114,97,110,103,101,44,104,112,61,100,100,40,102,117,110,99,116,105,111,110,40,116,41,123,116,46,115,101,116,85,84,67,68,97,116,101,40,49,41,44,116,46,115,101,116,85,84,67,72,111,117,114,115,40,48,44,48,44,48,44,48,41,125,44,102,117,110,99,116,105,111,110,40,116,44,110,41,123,116,46,115,101,116,85,84,67,77,111,110,116,104,40,116,46,103,101,116,85,84,67,77,111,110,116,104,40,41,43,110,41,125,44,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,110,46,103,101,116,85,84,67,77,111,110,116,104,40,41,45,116,46,103,101,116,85,84,67,77,111,110,116,104,40,41,43,49,50,42,40,110,46,103,101,116,85,84,67,70,117,108,108,89,101,97,114,40,41,45,116,46,103,101,116,85,84,67,70,117,108,108,89,101,97,114,40,41,41,125,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,103,101,116,85,84,67,77,111,110,116,104,40,41,125,41,44,100,112,61,104,112,46,114,97,110,103,101,44,112,112,61,100,100,40,102,117,110,99,116,105,111,110,40,116,41,123,116,46,115,101,116,85,84,67,77,111,110,116,104,40,48,44,49,41,44,116,46,115,101,116,85,84,67,72,111,117,114,115,40,48,44,48,44,48,44,48,41,125,44,102,117,110,99,116,105,111,110,40,116,44,110,41,123,116,46,115,101,116,85,84,67,70,117,108,108,89,101,97,114,40,116,46,103,101,116,85,84,67,70,117,108,108,89,101,97,114,40,41,43,110,41,125,44,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,110,46,103,101,116,85,84,67,70,117,108,108,89,101,97,114,40,41,45,116,46,103,101,116,85,84,67,70,117,108,108,89,101,97,114,40,41,125,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,103,101,116,85,84,67,70,117,108,108,89,101,97,114,40,41,125,41,59,112,112,46,101,118,101,114,121,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,105,115,70,105,110,105,116,101,40,116,61,77,97,116,104,46,102,108,111,111,114,40,116,41,41,38,38,116,62,48,63,100,100,40,102,117,110,99,116,105,111,110,40,110,41,123,110,46,115,101,116,85,84,67,70,117,108,108,89,101,97,114,40,77,97,116,104,46,102,108,111,111,114,40,110,46,103,101,116,85,84,67,70,117,108,108,89,101,97,114,40,41,47,116,41,42,116,41,44,110,46,115,101,116,85,84,67,77,111,110,116,104,40,48,44,49,41,44,110,46,115,101,116,85,84,67,72,111,117,114,115,40,48,44,48,44,48,44,48,41,125,44,102,117,110,99,116,105,111,110,40,110,44,101,41,123,110,46,115,101,116,85,84,67,70,117,108,108,89,101,97,114,40,110,46,103,101,116,85,84,67,70,117,108,108,89,101,97,114,40,41,43,101,42,116,41,125,41,58,110,117,108,108,125,59,118,97,114,32,118,112,61,112,112,46,114,97,110,103,101,59,102,117,110,99,116,105,111,110,32,103,112,40,116,41,123,105,102,40,48,60,61,116,46,121,38,38,116,46,121,60,49,48,48,41,123,118,97,114,32,110,61,110,101,119,32,68,97,116,101,40,45,49,44,116,46,109,44,116,46,100,44,116,46,72,44,116,46,77,44,116,46,83,44,116,46,76,41,59,114,101,116,117,114,110,32,110,46,115,101,116,70,117,108,108,89,101,97,114,40,116,46,121,41,44,110,125,114,101,116,117,114,110,32,110,101,119,32,68,97,116,101,40,116,46,121,44,116,46,109,44,116,46,100,44,116,46,72,44,116,46,77,44,116,46,83,44,116,46,76,41,125,102,117,110,99,116,105,111,110,32,121,112,40,116,41,123,105,102,40,48,60,61,116,46,121,38,38,116,46,121,60,49,48,48,41,123,118,97,114,32,110,61,110,101,119,32,68,97,116,101,40,68,97,116,101,46,85,84,67,40,45,49,44,116,46,109,44,116,46,100,44,116,46,72,44,116,46,77,44,116,46,83,44,116,46,76,41,41,59,114,101,116,117,114,110,32,110,46,115,101,116,85,84,67,70,117,108,108,89,101,97,114,40,116,46,121,41,44,110,125,114,101,116,117,114,110,32,110,101,119,32,68,97,116,101,40,68,97,116,101,46,85,84,67,40,116,46,121,44,116,46,109,44,116,46,100,44,116,46,72,44,116,46,77,44,116,46,83,44,116,46,76,41,41,125,102,117,110,99,116,105,111,110,32,95,112,40,116,44,110,44,101,41,123,114,101,116,117,114,110,123,121,58,116,44,109,58,110,44,100,58,101,44,72,58,48,44,77,58,48,44,83,58,48,44,76,58,48,125,125,102,117,110,99,116,105,111,110,32,98,112,40,116,41,123,118,97,114,32,110,61,116,46,100,97,116,101,84,105,109,101,44,101,61,116,46,100,97,116,101,44,114,61,116,46,116,105,109,101,44,105,61,116,46,112,101,114,105,111,100,115,44,111,61,116,46,100,97,121,115,44,97,61,116,46,115,104,111,114,116,68,97,121,115,44,117,61,116,46,109,111,110,116,104,115,44,99,61,116,46,115,104,111,114,116,77,111,110,116,104,115,44,102,61,83,112,40,105,41,44,115,61,107,112,40,105,41,44,108,61,83,112,40,111,41,44,104,61,107,112,40,111,41,44,100,61,83,112,40,97,41,44,112,61,107,112,40,97,41,44,118,61,83,112,40,117,41,44,103,61,107,112,40,117,41,44,121,61,83,112,40,99,41,44,95,61,107,112,40,99,41,44,98,61,123,97,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,91,116,46,103,101,116,68,97,121,40,41,93,125,44,65,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,111,91,116,46,103,101,116,68,97,121,40,41,93,125,44,98,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,99,91,116,46,103,101,116,77,111,110,116,104,40,41,93,125,44,66,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,117,91,116,46,103,101,116,77,111,110,116,104,40,41,93,125,44,99,58,110,117,108,108,44,100,58,87,112,44,101,58,87,112,44,102,58,116,118,44,72,58,90,112,44,73,58,81,112,44,106,58,75,112,44,76,58,74,112,44,109,58,110,118,44,77,58,101,118,44,112,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,105,91,43,40,116,46,103,101,116,72,111,117,114,115,40,41,62,61,49,50,41,93,125,44,113,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,49,43,126,126,40,116,46,103,101,116,77,111,110,116,104,40,41,47,51,41,125,44,81,58,67,118,44,115,58,80,118,44,83,58,114,118,44,117,58,105,118,44,85,58,111,118,44,86,58,97,118,44,119,58,117,118,44,87,58,99,118,44,120,58,110,117,108,108,44,88,58,110,117,108,108,44,121,58,102,118,44,89,58,115,118,44,90,58,108,118,44,34,37,34,58,69,118,125,44,109,61,123,97,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,91,116,46,103,101,116,85,84,67,68,97,121,40,41,93,125,44,65,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,111,91,116,46,103,101,116,85,84,67,68,97,121,40,41,93,125,44,98,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,99,91,116,46,103,101,116,85,84,67,77,111,110,116,104,40,41,93,125,44,66,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,117,91,116,46,103,101,116,85,84,67,77,111,110,116,104,40,41,93,125,44,99,58,110,117,108,108,44,100,58,104,118,44,101,58,104,118,44,102,58,121,118,44,72,58,100,118,44,73,58,112,118,44,106,58,118,118,44,76,58,103,118,44,109,58,95,118,44,77,58,98,118,44,112,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,105,91,43,40,116,46,103,101,116,85,84,67,72,111,117,114,115,40,41,62,61,49,50,41,93,125,44,113,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,49,43,126,126,40,116,46,103,101,116,85,84,67,77,111,110,116,104,40,41,47,51,41,125,44,81,58,67,118,44,115,58,80,118,44,83,58,109,118,44,117,58,120,118,44,85,58,119,118,44,86,58,77,118,44,119,58,78,118,44,87,58,84,118,44,120,58,110,117,108,108,44,88,58,110,117,108,108,44,121,58,65,118,44,89,58,83,118,44,90,58,107,118,44,34,37,34,58,69,118,125,44,120,61,123,97,58,102,117,110,99,116,105,111,110,40,116,44,110,44,101,41,123,118,97,114,32,114,61,100,46,101,120,101,99,40,110,46,115,108,105,99,101,40,101,41,41,59,114,101,116,117,114,110,32,114,63,40,116,46,119,61,112,91,114,91,48,93,46,116,111,76,111,119,101,114,67,97,115,101,40,41,93,44,101,43,114,91,48,93,46,108,101,110,103,116,104,41,58,45,49,125,44,65,58,102,117,110,99,116,105,111,110,40,116,44,110,44,101,41,123,118,97,114,32,114,61,108,46,101,120,101,99,40,110,46,115,108,105,99,101,40,101,41,41,59,114,101,116,117,114,110,32,114,63,40,116,46,119,61,104,91,114,91,48,93,46,116,111,76,111,119,101,114,67,97,115,101,40,41,93,44,101,43,114,91,48,93,46,108,101,110,103,116,104,41,58,45,49,125,44,98,58,102,117,110,99,116,105,111,110,40,116,44,110,44,101,41,123,118,97,114,32,114,61,121,46,101,120,101,99,40,110,46,115,108,105,99,101,40,101,41,41,59,114,101,116,117,114,110,32,114,63,40,116,46,109,61,95,91,114,91,48,93,46,116,111,76,111,119,101,114,67,97,115,101,40,41,93,44,101,43,114,91,48,93,46,108,101,110,103,116,104,41,58,45,49,125,44,66,58,102,117,110,99,116,105,111,110,40,116,44,110,44,101,41,123,118,97,114,32,114,61,118,46,101,120,101,99,40,110,46,115,108,105,99,101,40,101,41,41,59,114,101,116,117,114,110,32,114,63,40,116,46,109,61,103,91,114,91,48,93,46,116,111,76,111,119,101,114,67,97,115,101,40,41,93,44,101,43,114,91,48,93,46,108,101,110,103,116,104,41,58,45,49,125,44,99,58,102,117,110,99,116,105,111,110,40,116,44,101,44,114,41,123,114,101,116,117,114,110,32,78,40,116,44,110,44,101,44,114,41,125,44,100,58,66,112,44,101,58,66,112,44,102,58,88,112,44,72,58,89,112,44,73,58,89,112,44,106,58,70,112,44,76,58,106,112,44,109,58,79,112,44,77,58,73,112,44,112,58,102,117,110,99,116,105,111,110,40,116,44,110,44,101,41,123,118,97,114,32,114,61,102,46,101,120,101,99,40,110,46,115,108,105,99,101,40,101,41,41,59,114,101,116,117,114,110,32,114,63,40,116,46,112,61,115,91,114,91,48,93,46,116,111,76,111,119,101,114,67,97,115,101,40,41,93,44,101,43,114,91,48,93,46,108,101,110,103,116,104,41,58,45,49,125,44,113,58,85,112,44,81,58,71,112,44,115,58,36,112,44,83,58,72,112,44,117,58,67,112,44,85,58,80,112,44,86,58,122,112,44,119,58,69,112,44,87,58,82,112,44,120,58,102,117,110,99,116,105,111,110,40,116,44,110,44,114,41,123,114,101,116,117,114,110,32,78,40,116,44,101,44,110,44,114,41,125,44,88,58,102,117,110,99,116,105,111,110,40,116,44,110,44,101,41,123,114,101,116,117,114,110,32,78,40,116,44,114,44,110,44,101,41,125,44,121,58,113,112,44,89,58,68,112,44,90,58,76,112,44,34,37,34,58,86,112,125,59,102,117,110,99,116,105,111,110,32,119,40,116,44,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,114,44,105,44,111,44,97,61,91,93,44,117,61,45,49,44,99,61,48,44,102,61,116,46,108,101,110,103,116,104,59,102,111,114,40,101,32,105,110,115,116,97,110,99,101,111,102,32,68,97,116,101,124,124,40,101,61,110,101,119,32,68,97,116,101,40,43,101,41,41,59,43,43,117,60,102,59,41,51,55,61,61,61,116,46,99,104,97,114,67,111,100,101,65,116,40,117,41,38,38,40,97,46,112,117,115,104,40,116,46,115,108,105,99,101,40,99,44,117,41,41,44,110,117,108,108,33,61,40,105,61,120,112,91,114,61,116,46,99,104,97,114,65,116,40,43,43,117,41,93,41,63,114,61,116,46,99,104,97,114,65,116,40,43,43,117,41,58,105,61,34,101,34,61,61,61,114,63,34,32,34,58,34,48,34,44,40,111,61,110,91,114,93,41,38,38,40,114,61,111,40,101,44,105,41,41,44,97,46,112,117,115,104,40,114,41,44,99,61,117,43,49,41,59,114,101,116,117,114,110,32,97,46,112,117,115,104,40,116,46,115,108,105,99,101,40,99,44,117,41,41,44,97,46,106,111,105,110,40,34,34,41,125,125,102,117,110,99,116,105,111,110,32,77,40,116,44,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,114,44,105,44,111,61,95,112,40,49,57,48,48,44,118,111,105,100,32,48,44,49,41,59,105,102,40,78,40,111,44,116,44,101,43,61,34,34,44,48,41,33,61,101,46,108,101,110,103,116,104,41,114,101,116,117,114,110,32,110,117,108,108,59,105,102,40,34,81,34,105,110,32,111,41,114,101,116,117,114,110,32,110,101,119,32,68,97,116,101,40,111,46,81,41,59,105,102,40,34,115,34,105,110,32,111,41,114,101,116,117,114,110,32,110,101,119,32,68,97,116,101,40,49,101,51,42,111,46,115,43,40,34,76,34,105,110,32,111,63,111,46,76,58,48,41,41,59,105,102,40,33,110,124,124,34,90,34,105,110,32,111,124,124,40,111,46,90,61,48,41,44,34,112,34,105,110,32,111,38,38,40,111,46,72,61,111,46,72,37,49,50,43,49,50,42,111,46,112,41,44,118,111,105,100,32,48,61,61,61,111,46,109,38,38,40,111,46,109,61,34,113,34,105,110,32,111,63,111,46,113,58,48,41,44,34,86,34,105,110,32,111,41,123,105,102,40,111,46,86,60,49,124,124,111,46,86,62,53,51,41,114,101,116,117,114,110,32,110,117,108,108,59,34,119,34,105,110,32,111,124,124,40,111,46,119,61,49,41,44,34,90,34,105,110,32,111,63,40,105,61,40,114,61,121,112,40,95,112,40,111,46,121,44,48,44,49,41,41,41,46,103,101,116,85,84,67,68,97,121,40,41,44,114,61,105,62,52,124,124,48,61,61,61,105,63,74,100,46,99,101,105,108,40,114,41,58,74,100,40,114,41,44,114,61,87,100,46,111,102,102,115,101,116,40,114,44,55,42,40,111,46,86,45,49,41,41,44,111,46,121,61,114,46,103,101,116,85,84,67,70,117,108,108,89,101,97,114,40,41,44,111,46,109,61,114,46,103,101,116,85,84,67,77,111,110,116,104,40,41,44,111,46,100,61,114,46,103,101,116,85,84,67,68,97,116,101,40,41,43,40,111,46,119,43,54,41,37,55,41,58,40,105,61,40,114,61,103,112,40,95,112,40,111,46,121,44,48,44,49,41,41,41,46,103,101,116,68,97,121,40,41,44,114,61,105,62,52,124,124,48,61,61,61,105,63,107,100,46,99,101,105,108,40,114,41,58,107,100,40,114,41,44,114,61,78,100,46,111,102,102,115,101,116,40,114,44,55,42,40,111,46,86,45,49,41,41,44,111,46,121,61,114,46,103,101,116,70,117,108,108,89,101,97,114,40,41,44,111,46,109,61,114,46,103,101,116,77,111,110,116,104,40,41,44,111,46,100,61,114,46,103,101,116,68,97,116,101,40,41,43,40,111,46,119,43,54,41,37,55,41,125,101,108,115,101,40,34,87,34,105,110,32,111,124,124,34,85,34,105,110,32,111,41,38,38,40,34,119,34,105,110,32,111,124,124,40,111,46,119,61,34,117,34,105,110,32,111,63,111,46,117,37,55,58,34,87,34,105,110,32,111,63,49,58,48,41,44,105,61,34,90,34,105,110,32,111,63,121,112,40,95,112,40,111,46,121,44,48,44,49,41,41,46,103,101,116,85,84,67,68,97,121,40,41,58,103,112,40,95,112,40,111,46,121,44,48,44,49,41,41,46,103,101,116,68,97,121,40,41,44,111,46,109,61,48,44,111,46,100,61,34,87,34,105,110,32,111,63,40,111,46,119,43,54,41,37,55,43,55,42,111,46,87,45,40,105,43,53,41,37,55,58,111,46,119,43,55,42,111,46,85,45,40,105,43,54,41,37,55,41,59,114,101,116,117,114,110,34,90,34,105,110,32,111,63,40,111,46,72,43,61,111,46,90,47,49,48,48,124,48,44,111,46,77,43,61,111,46,90,37,49,48,48,44,121,112,40,111,41,41,58,103,112,40,111,41,125,125,102,117,110,99,116,105,111,110,32,78,40,116,44,110,44,101,44,114,41,123,102,111,114,40,118,97,114,32,105,44,111,44,97,61,48,44,117,61,110,46,108,101,110,103,116,104,44,99,61,101,46,108,101,110,103,116,104,59,97,60,117,59,41,123,105,102,40,114,62,61,99,41,114,101,116,117,114,110,45,49,59,105,102,40,51,55,61,61,61,40,105,61,110,46,99,104,97,114,67,111,100,101,65,116,40,97,43,43,41,41,41,123,105,102,40,105,61,110,46,99,104,97,114,65,116,40,97,43,43,41,44,33,40,111,61,120,91,105,32,105,110,32,120,112,63,110,46,99,104,97,114,65,116,40,97,43,43,41,58,105,93,41,124,124,40,114,61,111,40,116,44,101,44,114,41,41,60,48,41,114,101,116,117,114,110,45,49,125,101,108,115,101,32,105,102,40,105,33,61,101,46,99,104,97,114,67,111,100,101,65,116,40,114,43,43,41,41,114,101,116,117,114,110,45,49,125,114,101,116,117,114,110,32,114,125,114,101,116,117,114,110,32,98,46,120,61,119,40,101,44,98,41,44,98,46,88,61,119,40,114,44,98,41,44,98,46,99,61,119,40,110,44,98,41,44,109,46,120,61,119,40,101,44,109,41,44,109,46,88,61,119,40,114,44,109,41,44,109,46,99,61,119,40,110,44,109,41,44,123,102,111,114,109,97,116,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,119,40,116,43,61,34,34,44,98,41,59,114,101,116,117,114,110,32,110,46,116,111,83,116,114,105,110,103,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,125,44,110,125,44,112,97,114,115,101,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,77,40,116,43,61,34,34,44,33,49,41,59,114,101,116,117,114,110,32,110,46,116,111,83,116,114,105,110,103,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,125,44,110,125,44,117,116,99,70,111,114,109,97,116,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,119,40,116,43,61,34,34,44,109,41,59,114,101,116,117,114,110,32,110,46,116,111,83,116,114,105,110,103,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,125,44,110,125,44,117,116,99,80,97,114,115,101,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,77,40,116,43,61,34,34,44,33,48,41,59,114,101,116,117,114,110,32,110,46,116,111,83,116,114,105,110,103,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,125,44,110,125,125,125,118,97,114,32,109,112,44,120,112,61,123,34,45,34,58,34,34,44,95,58,34,32,34,44,48,58,34,48,34,125,44,119,112,61,47,94,92,115,42,92,100,43,47,44,77,112,61,47,94,37,47,44,78,112,61,47,91,92,92,94,36,42,43,63,124,91,92,93,40,41,46,123,125,93,47,103,59,102,117,110,99,116,105,111,110,32,84,112,40,116,44,110,44,101,41,123,118,97,114,32,114,61,116,60,48,63,34,45,34,58,34,34,44,105,61,40,114,63,45,116,58,116,41,43,34,34,44,111,61,105,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,114,43,40,111,60,101,63,110,101,119,32,65,114,114,97,121,40,101,45,111,43,49,41,46,106,111,105,110,40,110,41,43,105,58,105,41,125,102,117,110,99,116,105,111,110,32,65,112,40,116,41,123,114,101,116,117,114,110,32,116,46,114,101,112,108,97,99,101,40,78,112,44,34,92,92,36,38,34,41,125,102,117,110,99,116,105,111,110,32,83,112,40,116,41,123,114,101,116,117,114,110,32,110,101,119,32,82,101,103,69,120,112,40,34,94,40,63,58,34,43,116,46,109,97,112,40,65,112,41,46,106,111,105,110,40,34,124,34,41,43,34,41,34,44,34,105,34,41,125,102,117,110,99,116,105,111,110,32,107,112,40,116,41,123,102,111,114,40,118,97,114,32,110,61,123,125,44,101,61,45,49,44,114,61,116,46,108,101,110,103,116,104,59,43,43,101,60,114,59,41,110,91,116,91,101,93,46,116,111,76,111,119,101,114,67,97,115,101,40,41,93,61,101,59,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,69,112,40,116,44,110,44,101,41,123,118,97,114,32,114,61,119,112,46,101,120,101,99,40,110,46,115,108,105,99,101,40,101,44,101,43,49,41,41,59,114,101,116,117,114,110,32,114,63,40,116,46,119,61,43,114,91,48,93,44,101,43,114,91,48,93,46,108,101,110,103,116,104,41,58,45,49,125,102,117,110,99,116,105,111,110,32,67,112,40,116,44,110,44,101,41,123,118,97,114,32,114,61,119,112,46,101,120,101,99,40,110,46,115,108,105,99,101,40,101,44,101,43,49,41,41,59,114,101,116,117,114,110,32,114,63,40,116,46,117,61,43,114,91,48,93,44,101,43,114,91,48,93,46,108,101,110,103,116,104,41,58,45,49,125,102,117,110,99,116,105,111,110,32,80,112,40,116,44,110,44,101,41,123,118,97,114,32,114,61,119,112,46,101,120,101,99,40,110,46,115,108,105,99,101,40,101,44,101,43,50,41,41,59,114,101,116,117,114,110,32,114,63,40,116,46,85,61,43,114,91,48,93,44,101,43,114,91,48,93,46,108,101,110,103,116,104,41,58,45,49,125,102,117,110,99,116,105,111,110,32,122,112,40,116,44,110,44,101,41,123,118,97,114,32,114,61,119,112,46,101,120,101,99,40,110,46,115,108,105,99,101,40,101,44,101,43,50,41,41,59,114,101,116,117,114,110,32,114,63,40,116,46,86,61,43,114,91,48,93,44,101,43,114,91,48,93,46,108,101,110,103,116,104,41,58,45,49,125,102,117,110,99,116,105,111,110,32,82,112,40,116,44,110,44,101,41,123,118,97,114,32,114,61,119,112,46,101,120,101,99,40,110,46,115,108,105,99,101,40,101,44,101,43,50,41,41,59,114,101,116,117,114,110,32,114,63,40,116,46,87,61,43,114,91,48,93,44,101,43,114,91,48,93,46,108,101,110,103,116,104,41,58,45,49,125,102,117,110,99,116,105,111,110,32,68,112,40,116,44,110,44,101,41,123,118,97,114,32,114,61,119,112,46,101,120,101,99,40,110,46,115,108,105,99,101,40,101,44,101,43,52,41,41,59,114,101,116,117,114,110,32,114,63,40,116,46,121,61,43,114,91,48,93,44,101,43,114,91,48,93,46,108,101,110,103,116,104,41,58,45,49,125,102,117,110,99,116,105,111,110,32,113,112,40,116,44,110,44,101,41,123,118,97,114,32,114,61,119,112,46,101,120,101,99,40,110,46,115,108,105,99,101,40,101,44,101,43,50,41,41,59,114,101,116,117,114,110,32,114,63,40,116,46,121,61,43,114,91,48,93,43,40,43,114,91,48,93,62,54,56,63,49,57,48,48,58,50,101,51,41,44,101,43,114,91,48,93,46,108,101,110,103,116,104,41,58,45,49,125,102,117,110,99,116,105,111,110,32,76,112,40,116,44,110,44,101,41,123,118,97,114,32,114,61,47,94,40,90,41,124,40,91,43,45,93,92,100,92,100,41,40,63,58,58,63,40,92,100,92,100,41,41,63,47,46,101,120,101,99,40,110,46,115,108,105,99,101,40,101,44,101,43,54,41,41,59,114,101,116,117,114,110,32,114,63,40,116,46,90,61,114,91,49,93,63,48,58,45,40,114,91,50,93,43,40,114,91,51,93,124,124,34,48,48,34,41,41,44,101,43,114,91,48,93,46,108,101,110,103,116,104,41,58,45,49,125,102,117,110,99,116,105,111,110,32,85,112,40,116,44,110,44,101,41,123,118,97,114,32,114,61,119,112,46,101,120,101,99,40,110,46,115,108,105,99,101,40,101,44,101,43,49,41,41,59,114,101,116,117,114,110,32,114,63,40,116,46,113,61,51,42,114,91,48,93,45,51,44,101,43,114,91,48,93,46,108,101,110,103,116,104,41,58,45,49,125,102,117,110,99,116,105,111,110,32,79,112,40,116,44,110,44,101,41,123,118,97,114,32,114,61,119,112,46,101,120,101,99,40,110,46,115,108,105,99,101,40,101,44,101,43,50,41,41,59,114,101,116,117,114,110,32,114,63,40,116,46,109,61,114,91,48,93,45,49,44,101,43,114,91,48,93,46,108,101,110,103,116,104,41,58,45,49,125,102,117,110,99,116,105,111,110,32,66,112,40,116,44,110,44,101,41,123,118,97,114,32,114,61,119,112,46,101,120,101,99,40,110,46,115,108,105,99,101,40,101,44,101,43,50,41,41,59,114,101,116,117,114,110,32,114,63,40,116,46,100,61,43,114,91,48,93,44,101,43,114,91,48,93,46,108,101,110,103,116,104,41,58,45,49,125,102,117,110,99,116,105,111,110,32,70,112,40,116,44,110,44,101,41,123,118,97,114,32,114,61,119,112,46,101,120,101,99,40,110,46,115,108,105,99,101,40,101,44,101,43,51,41,41,59,114,101,116,117,114,110,32,114,63,40,116,46,109,61,48,44,116,46,100,61,43,114,91,48,93,44,101,43,114,91,48,93,46,108,101,110,103,116,104,41,58,45,49,125,102,117,110,99,116,105,111,110,32,89,112,40,116,44,110,44,101,41,123,118,97,114,32,114,61,119,112,46,101,120,101,99,40,110,46,115,108,105,99,101,40,101,44,101,43,50,41,41,59,114,101,116,117,114,110,32,114,63,40,116,46,72,61,43,114,91,48,93,44,101,43,114,91,48,93,46,108,101,110,103,116,104,41,58,45,49,125,102,117,110,99,116,105,111,110,32,73,112,40,116,44,110,44,101,41,123,118,97,114,32,114,61,119,112,46,101,120,101,99,40,110,46,115,108,105,99,101,40,101,44,101,43,50,41,41,59,114,101,116,117,114,110,32,114,63,40,116,46,77,61,43,114,91,48,93,44,101,43,114,91,48,93,46,108,101,110,103,116,104,41,58,45,49,125,102,117,110,99,116,105,111,110,32,72,112,40,116,44,110,44,101,41,123,118,97,114,32,114,61,119,112,46,101,120,101,99,40,110,46,115,108,105,99,101,40,101,44,101,43,50,41,41,59,114,101,116,117,114,110,32,114,63,40,116,46,83,61,43,114,91,48,93,44,101,43,114,91,48,93,46,108,101,110,103,116,104,41,58,45,49,125,102,117,110,99,116,105,111,110,32,106,112,40,116,44,110,44,101,41,123,118,97,114,32,114,61,119,112,46,101,120,101,99,40,110,46,115,108,105,99,101,40,101,44,101,43,51,41,41,59,114,101,116,117,114,110,32,114,63,40,116,46,76,61,43,114,91,48,93,44,101,43,114,91,48,93,46,108,101,110,103,116,104,41,58,45,49,125,102,117,110,99,116,105,111,110,32,88,112,40,116,44,110,44,101,41,123,118,97,114,32,114,61,119,112,46,101,120,101,99,40,110,46,115,108,105,99,101,40,101,44,101,43,54,41,41,59,114,101,116,117,114,110,32,114,63,40,116,46,76,61,77,97,116,104,46,102,108,111,111,114,40,114,91,48,93,47,49,101,51,41,44,101,43,114,91,48,93,46,108,101,110,103,116,104,41,58,45,49,125,102,117,110,99,116,105,111,110,32,86,112,40,116,44,110,44,101,41,123,118,97,114,32,114,61,77,112,46,101,120,101,99,40,110,46,115,108,105,99,101,40,101,44,101,43,49,41,41,59,114,101,116,117,114,110,32,114,63,101,43,114,91,48,93,46,108,101,110,103,116,104,58,45,49,125,102,117,110,99,116,105,111,110,32,71,112,40,116,44,110,44,101,41,123,118,97,114,32,114,61,119,112,46,101,120,101,99,40,110,46,115,108,105,99,101,40,101,41,41,59,114,101,116,117,114,110,32,114,63,40,116,46,81,61,43,114,91,48,93,44,101,43,114,91,48,93,46,108,101,110,103,116,104,41,58,45,49,125,102,117,110,99,116,105,111,110,32,36,112,40,116,44,110,44,101,41,123,118,97,114,32,114,61,119,112,46,101,120,101,99,40,110,46,115,108,105,99,101,40,101,41,41,59,114,101,116,117,114,110,32,114,63,40,116,46,115,61,43,114,91,48,93,44,101,43,114,91,48,93,46,108,101,110,103,116,104,41,58,45,49,125,102,117,110,99,116,105,111,110,32,87,112,40,116,44,110,41,123,114,101,116,117,114,110,32,84,112,40,116,46,103,101,116,68,97,116,101,40,41,44,110,44,50,41,125,102,117,110,99,116,105,111,110,32,90,112,40,116,44,110,41,123,114,101,116,117,114,110,32,84,112,40,116,46,103,101,116,72,111,117,114,115,40,41,44,110,44,50,41,125,102,117,110,99,116,105,111,110,32,81,112,40,116,44,110,41,123,114,101,116,117,114,110,32,84,112,40,116,46,103,101,116,72,111,117,114,115,40,41,37,49,50,124,124,49,50,44,110,44,50,41,125,102,117,110,99,116,105,111,110,32,75,112,40,116,44,110,41,123,114,101,116,117,114,110,32,84,112,40,49,43,78,100,46,99,111,117,110,116,40,72,100,40,116,41,44,116,41,44,110,44,51,41,125,102,117,110,99,116,105,111,110,32,74,112,40,116,44,110,41,123,114,101,116,117,114,110,32,84,112,40,116,46,103,101,116,77,105,108,108,105,115,101,99,111,110,100,115,40,41,44,110,44,51,41,125,102,117,110,99,116,105,111,110,32,116,118,40,116,44,110,41,123,114,101,116,117,114,110,32,74,112,40,116,44,110,41,43,34,48,48,48,34,125,102,117,110,99,116,105,111,110,32,110,118,40,116,44,110,41,123,114,101,116,117,114,110,32,84,112,40,116,46,103,101,116,77,111,110,116,104,40,41,43,49,44,110,44,50,41,125,102,117,110,99,116,105,111,110,32,101,118,40,116,44,110,41,123,114,101,116,117,114,110,32,84,112,40,116,46,103,101,116,77,105,110,117,116,101,115,40,41,44,110,44,50,41,125,102,117,110,99,116,105,111,110,32,114,118,40,116,44,110,41,123,114,101,116,117,114,110,32,84,112,40,116,46,103,101,116,83,101,99,111,110,100,115,40,41,44,110,44,50,41,125,102,117,110,99,116,105,111,110,32,105,118,40,116,41,123,118,97,114,32,110,61,116,46,103,101,116,68,97,121,40,41,59,114,101,116,117,114,110,32,48,61,61,61,110,63,55,58,110,125,102,117,110,99,116,105,111,110,32,111,118,40,116,44,110,41,123,114,101,116,117,114,110,32,84,112,40,83,100,46,99,111,117,110,116,40,72,100,40,116,41,45,49,44,116,41,44,110,44,50,41,125,102,117,110,99,116,105,111,110,32,97,118,40,116,44,110,41,123,118,97,114,32,101,61,116,46,103,101,116,68,97,121,40,41,59,114,101,116,117,114,110,32,116,61,101,62,61,52,124,124,48,61,61,61,101,63,80,100,40,116,41,58,80,100,46,99,101,105,108,40,116,41,44,84,112,40,80,100,46,99,111,117,110,116,40,72,100,40,116,41,44,116,41,43,40,52,61,61,61,72,100,40,116,41,46,103,101,116,68,97,121,40,41,41,44,110,44,50,41,125,102,117,110,99,116,105,111,110,32,117,118,40,116,41,123,114,101,116,117,114,110,32,116,46,103,101,116,68,97,121,40,41,125,102,117,110,99,116,105,111,110,32,99,118,40,116,44,110,41,123,114,101,116,117,114,110,32,84,112,40,107,100,46,99,111,117,110,116,40,72,100,40,116,41,45,49,44,116,41,44,110,44,50,41,125,102,117,110,99,116,105,111,110,32,102,118,40,116,44,110,41,123,114,101,116,117,114,110,32,84,112,40,116,46,103,101,116,70,117,108,108,89,101,97,114,40,41,37,49,48,48,44,110,44,50,41,125,102,117,110,99,116,105,111,110,32,115,118,40,116,44,110,41,123,114,101,116,117,114,110,32,84,112,40,116,46,103,101,116,70,117,108,108,89,101,97,114,40,41,37,49,101,52,44,110,44,52,41,125,102,117,110,99,116,105,111,110,32,108,118,40,116,41,123,118,97,114,32,110,61,116,46,103,101,116,84,105,109,101,122,111,110,101,79,102,102,115,101,116,40,41,59,114,101,116,117,114,110,40,110,62,48,63,34,45,34,58,40,110,42,61,45,49,44,34,43,34,41,41,43,84,112,40,110,47,54,48,124,48,44,34,48,34,44,50,41,43,84,112,40,110,37,54,48,44,34,48,34,44,50,41,125,102,117,110,99,116,105,111,110,32,104,118,40,116,44,110,41,123,114,101,116,117,114,110,32,84,112,40,116,46,103,101,116,85,84,67,68,97,116,101,40,41,44,110,44,50,41,125,102,117,110,99,116,105,111,110,32,100,118,40,116,44,110,41,123,114,101,116,117,114,110,32,84,112,40,116,46,103,101,116,85,84,67,72,111,117,114,115,40,41,44,110,44,50,41,125,102,117,110,99,116,105,111,110,32,112,118,40,116,44,110,41,123,114,101,116,117,114,110,32,84,112,40,116,46,103,101,116,85,84,67,72,111,117,114,115,40,41,37,49,50,124,124,49,50,44,110,44,50,41,125,102,117,110,99,116,105,111,110,32,118,118,40,116,44,110,41,123,114,101,116,117,114,110,32,84,112,40,49,43,87,100,46,99,111,117,110,116,40,112,112,40,116,41,44,116,41,44,110,44,51,41,125,102,117,110,99,116,105,111,110,32,103,118,40,116,44,110,41,123,114,101,116,117,114,110,32,84,112,40,116,46,103,101,116,85,84,67,77,105,108,108,105,115,101,99,111,110,100,115,40,41,44,110,44,51,41,125,102,117,110,99,116,105,111,110,32,121,118,40,116,44,110,41,123,114,101,116,117,114,110,32,103,118,40,116,44,110,41,43,34,48,48,48,34,125,102,117,110,99,116,105,111,110,32,95,118,40,116,44,110,41,123,114,101,116,117,114,110,32,84,112,40,116,46,103,101,116,85,84,67,77,111,110,116,104,40,41,43,49,44,110,44,50,41,125,102,117,110,99,116,105,111,110,32,98,118,40,116,44,110,41,123,114,101,116,117,114,110,32,84,112,40,116,46,103,101,116,85,84,67,77,105,110,117,116,101,115,40,41,44,110,44,50,41,125,102,117,110,99,116,105,111,110,32,109,118,40,116,44,110,41,123,114,101,116,117,114,110,32,84,112,40,116,46,103,101,116,85,84,67,83,101,99,111,110,100,115,40,41,44,110,44,50,41,125,102,117,110,99,116,105,111,110,32,120,118,40,116,41,123,118,97,114,32,110,61,116,46,103,101,116,85,84,67,68,97,121,40,41,59,114,101,116,117,114,110,32,48,61,61,61,110,63,55,58,110,125,102,117,110,99,116,105,111,110,32,119,118,40,116,44,110,41,123,114,101,116,117,114,110,32,84,112,40,75,100,46,99,111,117,110,116,40,112,112,40,116,41,45,49,44,116,41,44,110,44,50,41,125,102,117,110,99,116,105,111,110,32,77,118,40,116,44,110,41,123,118,97,114,32,101,61,116,46,103,101,116,85,84,67,68,97,121,40,41,59,114,101,116,117,114,110,32,116,61,101,62,61,52,124,124,48,61,61,61,101,63,101,112,40,116,41,58,101,112,46,99,101,105,108,40,116,41,44,84,112,40,101,112,46,99,111,117,110,116,40,112,112,40,116,41,44,116,41,43,40,52,61,61,61,112,112,40,116,41,46,103,101,116,85,84,67,68,97,121,40,41,41,44,110,44,50,41,125,102,117,110,99,116,105,111,110,32,78,118,40,116,41,123,114,101,116,117,114,110,32,116,46,103,101,116,85,84,67,68,97,121,40,41,125,102,117,110,99,116,105,111,110,32,84,118,40,116,44,110,41,123,114,101,116,117,114,110,32,84,112,40,74,100,46,99,111,117,110,116,40,112,112,40,116,41,45,49,44,116,41,44,110,44,50,41,125,102,117,110,99,116,105,111,110,32,65,118,40,116,44,110,41,123,114,101,116,117,114,110,32,84,112,40,116,46,103,101,116,85,84,67,70,117,108,108,89,101,97,114,40,41,37,49,48,48,44,110,44,50,41,125,102,117,110,99,116,105,111,110,32,83,118,40,116,44,110,41,123,114,101,116,117,114,110,32,84,112,40,116,46,103,101,116,85,84,67,70,117,108,108,89,101,97,114,40,41,37,49,101,52,44,110,44,52,41,125,102,117,110,99,116,105,111,110,32,107,118,40,41,123,114,101,116,117,114,110,34,43,48,48,48,48,34,125,102,117,110,99,116,105,111,110,32,69,118,40,41,123,114,101,116,117,114,110,34,37,34,125,102,117,110,99,116,105,111,110,32,67,118,40,116,41,123,114,101,116,117,114,110,43,116,125,102,117,110,99,116,105,111,110,32,80,118,40,116,41,123,114,101,116,117,114,110,32,77,97,116,104,46,102,108,111,111,114,40,43,116,47,49,101,51,41,125,102,117,110,99,116,105,111,110,32,122,118,40,110,41,123,114,101,116,117,114,110,32,109,112,61,98,112,40,110,41,44,116,46,116,105,109,101,70,111,114,109,97,116,61,109,112,46,102,111,114,109,97,116,44,116,46,116,105,109,101,80,97,114,115,101,61,109,112,46,112,97,114,115,101,44,116,46,117,116,99,70,111,114,109,97,116,61,109,112,46,117,116,99,70,111,114,109,97,116,44,116,46,117,116,99,80,97,114,115,101,61,109,112,46,117,116,99,80,97,114,115,101,44,109,112,125,122,118,40,123,100,97,116,101,84,105,109,101,58,34,37,120,44,32,37,88,34,44,100,97,116,101,58,34,37,45,109,47,37,45,100,47,37,89,34,44,116,105,109,101,58,34,37,45,73,58,37,77,58,37,83,32,37,112,34,44,112,101,114,105,111,100,115,58,91,34,65,77,34,44,34,80,77,34,93,44,100,97,121,115,58,91,34,83,117,110,100,97,121,34,44,34,77,111,110,100,97,121,34,44,34,84,117,101,115,100,97,121,34,44,34,87,101,100,110,101,115,100,97,121,34,44,34,84,104,117,114,115,100,97,121,34,44,34,70,114,105,100,97,121,34,44,34,83,97,116,117,114,100,97,121,34,93,44,115,104,111,114,116,68,97,121,115,58,91,34,83,117,110,34,44,34,77,111,110,34,44,34,84,117,101,34,44,34,87,101,100,34,44,34,84,104,117,34,44,34,70,114,105,34,44,34,83,97,116,34,93,44,109,111,110,116,104,115,58,91,34,74,97,110,117,97,114,121,34,44,34,70,101,98,114,117,97,114,121,34,44,34,77,97,114,99,104,34,44,34,65,112,114,105,108,34,44,34,77,97,121,34,44,34,74,117,110,101,34,44,34,74,117,108,121,34,44,34,65,117,103,117,115,116,34,44,34,83,101,112,116,101,109,98,101,114,34,44,34,79,99,116,111,98,101,114,34,44,34,78,111,118,101,109,98,101,114,34,44,34,68,101,99,101,109,98,101,114,34,93,44,115,104,111,114,116,77,111,110,116,104,115,58,91,34,74,97,110,34,44,34,70,101,98,34,44,34,77,97,114,34,44,34,65,112,114,34,44,34,77,97,121,34,44,34,74,117,110,34,44,34,74,117,108,34,44,34,65,117,103,34,44,34,83,101,112,34,44,34,79,99,116,34,44,34,78,111,118,34,44,34,68,101,99,34,93,125,41,59,118,97,114,32,82,118,61,68,97,116,101,46,112,114,111,116,111,116,121,112,101,46,116,111,73,83,79,83,116,114,105,110,103,63,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,116,111,73,83,79,83,116,114,105,110,103,40,41,125,58,116,46,117,116,99,70,111,114,109,97,116,40,34,37,89,45,37,109,45,37,100,84,37,72,58,37,77,58,37,83,46,37,76,90,34,41,59,118,97,114,32,68,118,61,43,110,101,119,32,68,97,116,101,40,34,50,48,48,48,45,48,49,45,48,49,84,48,48,58,48,48,58,48,48,46,48,48,48,90,34,41,63,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,110,101,119,32,68,97,116,101,40,116,41,59,114,101,116,117,114,110,32,105,115,78,97,78,40,110,41,63,110,117,108,108,58,110,125,58,116,46,117,116,99,80,97,114,115,101,40,34,37,89,45,37,109,45,37,100,84,37,72,58,37,77,58,37,83,46,37,76,90,34,41,44,113,118,61,49,101,51,44,76,118,61,54,48,42,113,118,44,85,118,61,54,48,42,76,118,44,79,118,61,50,52,42,85,118,44,66,118,61,55,42,79,118,44,70,118,61,51,48,42,79,118,44,89,118,61,51,54,53,42,79,118,59,102,117,110,99,116,105,111,110,32,73,118,40,116,41,123,114,101,116,117,114,110,32,110,101,119,32,68,97,116,101,40,116,41,125,102,117,110,99,116,105,111,110,32,72,118,40,116,41,123,114,101,116,117,114,110,32,116,32,105,110,115,116,97,110,99,101,111,102,32,68,97,116,101,63,43,116,58,43,110,101,119,32,68,97,116,101,40,43,116,41,125,102,117,110,99,116,105,111,110,32,106,118,40,116,44,110,44,114,44,105,44,111,44,97,44,117,44,99,44,102,41,123,118,97,114,32,115,61,86,104,40,66,104,44,66,104,41,44,108,61,115,46,105,110,118,101,114,116,44,104,61,115,46,100,111,109,97,105,110,44,100,61,102,40,34,46,37,76,34,41,44,112,61,102,40,34,58,37,83,34,41,44,118,61,102,40,34,37,73,58,37,77,34,41,44,103,61,102,40,34,37,73,32,37,112,34,41,44,121,61,102,40,34,37,97,32,37,100,34,41,44,95,61,102,40,34,37,98,32,37,100,34,41,44,98,61,102,40,34,37,66,34,41,44,109,61,102,40,34,37,89,34,41,44,120,61,91,91,117,44,49,44,113,118,93,44,91,117,44,53,44,53,42,113,118,93,44,91,117,44,49,53,44,49,53,42,113,118,93,44,91,117,44,51,48,44,51,48,42,113,118,93,44,91,97,44,49,44,76,118,93,44,91,97,44,53,44,53,42,76,118,93,44,91,97,44,49,53,44,49,53,42,76,118,93,44,91,97,44,51,48,44,51,48,42,76,118,93,44,91,111,44,49,44,85,118,93,44,91,111,44,51,44,51,42,85,118,93,44,91,111,44,54,44,54,42,85,118,93,44,91,111,44,49,50,44,49,50,42,85,118,93,44,91,105,44,49,44,79,118,93,44,91,105,44,50,44,50,42,79,118,93,44,91,114,44,49,44,66,118,93,44,91,110,44,49,44,70,118,93,44,91,110,44,51,44,51,42,70,118,93,44,91,116,44,49,44,89,118,93,93,59,102,117,110,99,116,105,111,110,32,77,40,101,41,123,114,101,116,117,114,110,40,117,40,101,41,60,101,63,100,58,97,40,101,41,60,101,63,112,58,111,40,101,41,60,101,63,118,58,105,40,101,41,60,101,63,103,58,110,40,101,41,60,101,63,114,40,101,41,60,101,63,121,58,95,58,116,40,101,41,60,101,63,98,58,109,41,40,101,41,125,102,117,110,99,116,105,111,110,32,78,40,110,44,114,44,105,44,111,41,123,105,102,40,110,117,108,108,61,61,110,38,38,40,110,61,49,48,41,44,34,110,117,109,98,101,114,34,61,61,116,121,112,101,111,102,32,110,41,123,118,97,114,32,97,61,77,97,116,104,46,97,98,115,40,105,45,114,41,47,110,44,117,61,101,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,91,50,93,125,41,46,114,105,103,104,116,40,120,44,97,41,59,117,61,61,61,120,46,108,101,110,103,116,104,63,40,111,61,119,40,114,47,89,118,44,105,47,89,118,44,110,41,44,110,61,116,41,58,117,63,40,111,61,40,117,61,120,91,97,47,120,91,117,45,49,93,91,50,93,60,120,91,117,93,91,50,93,47,97,63,117,45,49,58,117,93,41,91,49,93,44,110,61,117,91,48,93,41,58,40,111,61,77,97,116,104,46,109,97,120,40,119,40,114,44,105,44,110,41,44,49,41,44,110,61,99,41,125,114,101,116,117,114,110,32,110,117,108,108,61,61,111,63,110,58,110,46,101,118,101,114,121,40,111,41,125,114,101,116,117,114,110,32,115,46,105,110,118,101,114,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,101,119,32,68,97,116,101,40,108,40,116,41,41,125,44,115,46,100,111,109,97,105,110,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,104,40,122,104,46,99,97,108,108,40,116,44,72,118,41,41,58,104,40,41,46,109,97,112,40,73,118,41,125,44,115,46,116,105,99,107,115,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,44,114,61,104,40,41,44,105,61,114,91,48,93,44,111,61,114,91,114,46,108,101,110,103,116,104,45,49,93,44,97,61,111,60,105,59,114,101,116,117,114,110,32,97,38,38,40,101,61,105,44,105,61,111,44,111,61,101,41,44,101,61,40,101,61,78,40,116,44,105,44,111,44,110,41,41,63,101,46,114,97,110,103,101,40,105,44,111,43,49,41,58,91,93,44,97,63,101,46,114,101,118,101,114,115,101,40,41,58,101,125,44,115,46,116,105,99,107,70,111,114,109,97,116,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,110,63,77,58,102,40,110,41,125,44,115,46,110,105,99,101,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,61,104,40,41,59,114,101,116,117,114,110,40,116,61,78,40,116,44,101,91,48,93,44,101,91,101,46,108,101,110,103,116,104,45,49,93,44,110,41,41,63,104,40,87,104,40,101,44,116,41,41,58,115,125,44,115,46,99,111,112,121,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,106,104,40,115,44,106,118,40,116,44,110,44,114,44,105,44,111,44,97,44,117,44,99,44,102,41,41,125,44,115,125,102,117,110,99,116,105,111,110,32,88,118,40,41,123,118,97,114,32,116,44,110,44,101,44,114,44,105,44,111,61,48,44,97,61,49,44,117,61,66,104,44,99,61,33,49,59,102,117,110,99,116,105,111,110,32,102,40,110,41,123,114,101,116,117,114,110,32,105,115,78,97,78,40,110,61,43,110,41,63,105,58,117,40,48,61,61,61,101,63,46,53,58,40,110,61,40,114,40,110,41,45,116,41,42,101,44,99,63,77,97,116,104,46,109,97,120,40,48,44,77,97,116,104,46,109,105,110,40,49,44,110,41,41,58,110,41,41,125,114,101,116,117,114,110,32,102,46,100,111,109,97,105,110,61,102,117,110,99,116,105,111,110,40,105,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,116,61,114,40,111,61,43,105,91,48,93,41,44,110,61,114,40,97,61,43,105,91,49,93,41,44,101,61,116,61,61,61,110,63,48,58,49,47,40,110,45,116,41,44,102,41,58,91,111,44,97,93,125,44,102,46,99,108,97,109,112,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,99,61,33,33,116,44,102,41,58,99,125,44,102,46,105,110,116,101,114,112,111,108,97,116,111,114,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,117,61,116,44,102,41,58,117,125,44,102,46,117,110,107,110,111,119,110,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,105,61,116,44,102,41,58,105,125,44,102,117,110,99,116,105,111,110,40,105,41,123,114,101,116,117,114,110,32,114,61,105,44,116,61,105,40,111,41,44,110,61,105,40,97,41,44,101,61,116,61,61,61,110,63,48,58,49,47,40,110,45,116,41,44,102,125,125,102,117,110,99,116,105,111,110,32,86,118,40,116,44,110,41,123,114,101,116,117,114,110,32,110,46,100,111,109,97,105,110,40,116,46,100,111,109,97,105,110,40,41,41,46,105,110,116,101,114,112,111,108,97,116,111,114,40,116,46,105,110,116,101,114,112,111,108,97,116,111,114,40,41,41,46,99,108,97,109,112,40,116,46,99,108,97,109,112,40,41,41,46,117,110,107,110,111,119,110,40,116,46,117,110,107,110,111,119,110,40,41,41,125,102,117,110,99,116,105,111,110,32,71,118,40,41,123,118,97,114,32,116,61,102,100,40,88,118,40,41,41,59,114,101,116,117,114,110,32,116,46,99,111,112,121,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,86,118,40,116,44,71,118,40,41,41,46,101,120,112,111,110,101,110,116,40,116,46,101,120,112,111,110,101,110,116,40,41,41,125,44,67,104,46,97,112,112,108,121,40,116,44,97,114,103,117,109,101,110,116,115,41,125,102,117,110,99,116,105,111,110,32,36,118,40,41,123,118,97,114,32,116,44,110,44,101,44,114,44,105,44,111,44,97,44,117,61,48,44,99,61,46,53,44,102,61,49,44,115,61,66,104,44,108,61,33,49,59,102,117,110,99,116,105,111,110,32,104,40,116,41,123,114,101,116,117,114,110,32,105,115,78,97,78,40,116,61,43,116,41,63,97,58,40,116,61,46,53,43,40,40,116,61,43,111,40,116,41,41,45,110,41,42,40,116,60,110,63,114,58,105,41,44,115,40,108,63,77,97,116,104,46,109,97,120,40,48,44,77,97,116,104,46,109,105,110,40,49,44,116,41,41,58,116,41,41,125,114,101,116,117,114,110,32,104,46,100,111,109,97,105,110,61,102,117,110,99,116,105,111,110,40,97,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,116,61,111,40,117,61,43,97,91,48,93,41,44,110,61,111,40,99,61,43,97,91,49,93,41,44,101,61,111,40,102,61,43,97,91,50,93,41,44,114,61,116,61,61,61,110,63,48,58,46,53,47,40,110,45,116,41,44,105,61,110,61,61,61,101,63,48,58,46,53,47,40,101,45,110,41,44,104,41,58,91,117,44,99,44,102,93,125,44,104,46,99,108,97,109,112,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,108,61,33,33,116,44,104,41,58,108,125,44,104,46,105,110,116,101,114,112,111,108,97,116,111,114,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,115,61,116,44,104,41,58,115,125,44,104,46,117,110,107,110,111,119,110,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,97,61,116,44,104,41,58,97,125,44,102,117,110,99,116,105,111,110,40,97,41,123,114,101,116,117,114,110,32,111,61,97,44,116,61,97,40,117,41,44,110,61,97,40,99,41,44,101,61,97,40,102,41,44,114,61,116,61,61,61,110,63,48,58,46,53,47,40,110,45,116,41,44,105,61,110,61,61,61,101,63,48,58,46,53,47,40,101,45,110,41,44,104,125,125,102,117,110,99,116,105,111,110,32,87,118,40,41,123,118,97,114,32,116,61,102,100,40,36,118,40,41,41,59,114,101,116,117,114,110,32,116,46,99,111,112,121,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,86,118,40,116,44,87,118,40,41,41,46,101,120,112,111,110,101,110,116,40,116,46,101,120,112,111,110,101,110,116,40,41,41,125,44,67,104,46,97,112,112,108,121,40,116,44,97,114,103,117,109,101,110,116,115,41,125,102,117,110,99,116,105,111,110,32,90,118,40,116,41,123,102,111,114,40,118,97,114,32,110,61,116,46,108,101,110,103,116,104,47,54,124,48,44,101,61,110,101,119,32,65,114,114,97,121,40,110,41,44,114,61,48,59,114,60,110,59,41,101,91,114,93,61,34,35,34,43,116,46,115,108,105,99,101,40,54,42,114,44,54,42,43,43,114,41,59,114,101,116,117,114,110,32,101,125,118,97,114,32,81,118,61,90,118,40,34,49,102,55,55,98,52,102,102,55,102,48,101,50,99,97,48,50,99,100,54,50,55,50,56,57,52,54,55,98,100,56,99,53,54,52,98,101,51,55,55,99,50,55,102,55,102,55,102,98,99,98,100,50,50,49,55,98,101,99,102,34,41,44,75,118,61,90,118,40,34,55,102,99,57,55,102,98,101,97,101,100,52,102,100,99,48,56,54,102,102,102,102,57,57,51,56,54,99,98,48,102,48,48,50,55,102,98,102,53,98,49,55,54,54,54,54,54,54,34,41,44,74,118,61,90,118,40,34,49,98,57,101,55,55,100,57,53,102,48,50,55,53,55,48,98,51,101,55,50,57,56,97,54,54,97,54,49,101,101,54,97,98,48,50,97,54,55,54,49,100,54,54,54,54,54,54,34,41,44,116,103,61,90,118,40,34,97,54,99,101,101,51,49,102,55,56,98,52,98,50,100,102,56,97,51,51,97,48,50,99,102,98,57,97,57,57,101,51,49,97,49,99,102,100,98,102,54,102,102,102,55,102,48,48,99,97,98,50,100,54,54,97,51,100,57,97,102,102,102,102,57,57,98,49,53,57,50,56,34,41,44,110,103,61,90,118,40,34,102,98,98,52,97,101,98,51,99,100,101,51,99,99,101,98,99,53,100,101,99,98,101,52,102,101,100,57,97,54,102,102,102,102,99,99,101,53,100,56,98,100,102,100,100,97,101,99,102,50,102,50,102,50,34,41,44,101,103,61,90,118,40,34,98,51,101,50,99,100,102,100,99,100,97,99,99,98,100,53,101,56,102,52,99,97,101,52,101,54,102,53,99,57,102,102,102,50,97,101,102,49,101,50,99,99,99,99,99,99,99,99,34,41,44,114,103,61,90,118,40,34,101,52,49,97,49,99,51,55,55,101,98,56,52,100,97,102,52,97,57,56,52,101,97,51,102,102,55,102,48,48,102,102,102,102,51,51,97,54,53,54,50,56,102,55,56,49,98,102,57,57,57,57,57,57,34,41,44,105,103,61,90,118,40,34,54,54,99,50,97,53,102,99,56,100,54,50,56,100,97,48,99,98,101,55,56,97,99,51,97,54,100,56,53,52,102,102,100,57,50,102,101,53,99,52,57,52,98,51,98,51,98,51,34,41,44,111,103,61,90,118,40,34,56,100,100,51,99,55,102,102,102,102,98,51,98,101,98,97,100,97,102,98,56,48,55,50,56,48,98,49,100,51,102,100,98,52,54,50,98,51,100,101,54,57,102,99,99,100,101,53,100,57,100,57,100,57,98,99,56,48,98,100,99,99,101,98,99,53,102,102,101,100,54,102,34,41,44,97,103,61,90,118,40,34,52,101,55,57,97,55,102,50,56,101,50,99,101,49,53,55,53,57,55,54,98,55,98,50,53,57,97,49,52,102,101,100,99,57,52,57,97,102,55,97,97,49,102,102,57,100,97,55,57,99,55,53,53,102,98,97,98,48,97,98,34,41,59,102,117,110,99,116,105,111,110,32,117,103,40,116,41,123,114,101,116,117,114,110,32,112,101,40,116,91,116,46,108,101,110,103,116,104,45,49,93,41,125,118,97,114,32,99,103,61,110,101,119,32,65,114,114,97,121,40,51,41,46,99,111,110,99,97,116,40,34,100,56,98,51,54,53,102,53,102,53,102,53,53,97,98,52,97,99,34,44,34,97,54,54,49,49,97,100,102,99,50,55,100,56,48,99,100,99,49,48,49,56,53,55,49,34,44,34,97,54,54,49,49,97,100,102,99,50,55,100,102,53,102,53,102,53,56,48,99,100,99,49,48,49,56,53,55,49,34,44,34,56,99,53,49,48,97,100,56,98,51,54,53,102,54,101,56,99,51,99,55,101,97,101,53,53,97,98,52,97,99,48,49,54,54,53,101,34,44,34,56,99,53,49,48,97,100,56,98,51,54,53,102,54,101,56,99,51,102,53,102,53,102,53,99,55,101,97,101,53,53,97,98,52,97,99,48,49,54,54,53,101,34,44,34,56,99,53,49,48,97,98,102,56,49,50,100,100,102,99,50,55,100,102,54,101,56,99,51,99,55,101,97,101,53,56,48,99,100,99,49,51,53,57,55,56,102,48,49,54,54,53,101,34,44,34,56,99,53,49,48,97,98,102,56,49,50,100,100,102,99,50,55,100,102,54,101,56,99,51,102,53,102,53,102,53,99,55,101,97,101,53,56,48,99,100,99,49,51,53,57,55,56,102,48,49,54,54,53,101,34,44,34,53,52,51,48,48,53,56,99,53,49,48,97,98,102,56,49,50,100,100,102,99,50,55,100,102,54,101,56,99,51,99,55,101,97,101,53,56,48,99,100,99,49,51,53,57,55,56,102,48,49,54,54,53,101,48,48,51,99,51,48,34,44,34,53,52,51,48,48,53,56,99,53,49,48,97,98,102,56,49,50,100,100,102,99,50,55,100,102,54,101,56,99,51,102,53,102,53,102,53,99,55,101,97,101,53,56,48,99,100,99,49,51,53,57,55,56,102,48,49,54,54,53,101,48,48,51,99,51,48,34,41,46,109,97,112,40,90,118,41,44,102,103,61,117,103,40,99,103,41,44,115,103,61,110,101,119,32,65,114,114,97,121,40,51,41,46,99,111,110,99,97,116,40,34,97,102,56,100,99,51,102,55,102,55,102,55,55,102,98,102,55,98,34,44,34,55,98,51,50,57,52,99,50,97,53,99,102,97,54,100,98,97,48,48,48,56,56,51,55,34,44,34,55,98,51,50,57,52,99,50,97,53,99,102,102,55,102,55,102,55,97,54,100,98,97,48,48,48,56,56,51,55,34,44,34,55,54,50,97,56,51,97,102,56,100,99,51,101,55,100,52,101,56,100,57,102,48,100,51,55,102,98,102,55,98,49,98,55,56,51,55,34,44,34,55,54,50,97,56,51,97,102,56,100,99,51,101,55,100,52,101,56,102,55,102,55,102,55,100,57,102,48,100,51,55,102,98,102,55,98,49,98,55,56,51,55,34,44,34,55,54,50,97,56,51,57,57,55,48,97,98,99,50,97,53,99,102,101,55,100,52,101,56,100,57,102,48,100,51,97,54,100,98,97,48,53,97,97,101,54,49,49,98,55,56,51,55,34,44,34,55,54,50,97,56,51,57,57,55,48,97,98,99,50,97,53,99,102,101,55,100,52,101,56,102,55,102,55,102,55,100,57,102,48,100,51,97,54,100,98,97,48,53,97,97,101,54,49,49,98,55,56,51,55,34,44,34,52,48,48,48,52,98,55,54,50,97,56,51,57,57,55,48,97,98,99,50,97,53,99,102,101,55,100,52,101,56,100,57,102,48,100,51,97,54,100,98,97,48,53,97,97,101,54,49,49,98,55,56,51,55,48,48,52,52,49,98,34,44,34,52,48,48,48,52,98,55,54,50,97,56,51,57,57,55,48,97,98,99,50,97,53,99,102,101,55,100,52,101,56,102,55,102,55,102,55,100,57,102,48,100,51,97,54,100,98,97,48,53,97,97,101,54,49,49,98,55,56,51,55,48,48,52,52,49,98,34,41,46,109,97,112,40,90,118,41,44,108,103,61,117,103,40,115,103,41,44,104,103,61,110,101,119,32,65,114,114,97,121,40,51,41,46,99,111,110,99,97,116,40,34,101,57,97,51,99,57,102,55,102,55,102,55,97,49,100,55,54,97,34,44,34,100,48,49,99,56,98,102,49,98,54,100,97,98,56,101,49,56,54,52,100,97,99,50,54,34,44,34,100,48,49,99,56,98,102,49,98,54,100,97,102,55,102,55,102,55,98,56,101,49,56,54,52,100,97,99,50,54,34,44,34,99,53,49,98,55,100,101,57,97,51,99,57,102,100,101,48,101,102,101,54,102,53,100,48,97,49,100,55,54,97,52,100,57,50,50,49,34,44,34,99,53,49,98,55,100,101,57,97,51,99,57,102,100,101,48,101,102,102,55,102,55,102,55,101,54,102,53,100,48,97,49,100,55,54,97,52,100,57,50,50,49,34,44,34,99,53,49,98,55,100,100,101,55,55,97,101,102,49,98,54,100,97,102,100,101,48,101,102,101,54,102,53,100,48,98,56,101,49,56,54,55,102,98,99,52,49,52,100,57,50,50,49,34,44,34,99,53,49,98,55,100,100,101,55,55,97,101,102,49,98,54,100,97,102,100,101,48,101,102,102,55,102,55,102,55,101,54,102,53,100,48,98,56,101,49,56,54,55,102,98,99,52,49,52,100,57,50,50,49,34,44,34,56,101,48,49,53,50,99,53,49,98,55,100,100,101,55,55,97,101,102,49,98,54,100,97,102,100,101,48,101,102,101,54,102,53,100,48,98,56,101,49,56,54,55,102,98,99,52,49,52,100,57,50,50,49,50,55,54,52,49,57,34,44,34,56,101,48,49,53,50,99,53,49,98,55,100,100,101,55,55,97,101,102,49,98,54,100,97,102,100,101,48,101,102,102,55,102,55,102,55,101,54,102,53,100,48,98,56,101,49,56,54,55,102,98,99,52,49,52,100,57,50,50,49,50,55,54,52,49,57,34,41,46,109,97,112,40,90,118,41,44,100,103,61,117,103,40,104,103,41,44,112,103,61,110,101,119,32,65,114,114,97,121,40,51,41,46,99,111,110,99,97,116,40,34,57,57,56,101,99,51,102,55,102,55,102,55,102,49,97,51,52,48,34,44,34,53,101,51,99,57,57,98,50,97,98,100,50,102,100,98,56,54,51,101,54,54,49,48,49,34,44,34,53,101,51,99,57,57,98,50,97,98,100,50,102,55,102,55,102,55,102,100,98,56,54,51,101,54,54,49,48,49,34,44,34,53,52,50,55,56,56,57,57,56,101,99,51,100,56,100,97,101,98,102,101,101,48,98,54,102,49,97,51,52,48,98,51,53,56,48,54,34,44,34,53,52,50,55,56,56,57,57,56,101,99,51,100,56,100,97,101,98,102,55,102,55,102,55,102,101,101,48,98,54,102,49,97,51,52,48,98,51,53,56,48,54,34,44,34,53,52,50,55,56,56,56,48,55,51,97,99,98,50,97,98,100,50,100,56,100,97,101,98,102,101,101,48,98,54,102,100,98,56,54,51,101,48,56,50,49,52,98,51,53,56,48,54,34,44,34,53,52,50,55,56,56,56,48,55,51,97,99,98,50,97,98,100,50,100,56,100,97,101,98,102,55,102,55,102,55,102,101,101,48,98,54,102,100,98,56,54,51,101,48,56,50,49,52,98,51,53,56,48,54,34,44,34,50,100,48,48,52,98,53,52,50,55,56,56,56,48,55,51,97,99,98,50,97,98,100,50,100,56,100,97,101,98,102,101,101,48,98,54,102,100,98,56,54,51,101,48,56,50,49,52,98,51,53,56,48,54,55,102,51,98,48,56,34,44,34,50,100,48,48,52,98,53,52,50,55,56,56,56,48,55,51,97,99,98,50,97,98,100,50,100,56,100,97,101,98,102,55,102,55,102,55,102,101,101,48,98,54,102,100,98,56,54,51,101,48,56,50,49,52,98,51,53,56,48,54,55,102,51,98,48,56,34,41,46,109,97,112,40,90,118,41,44,118,103,61,117,103,40,112,103,41,44,103,103,61,110,101,119,32,65,114,114,97,121,40,51,41,46,99,111,110,99,97,116,40,34,101,102,56,97,54,50,102,55,102,55,102,55,54,55,97,57,99,102,34,44,34,99,97,48,48,50,48,102,52,97,53,56,50,57,50,99,53,100,101,48,53,55,49,98,48,34,44,34,99,97,48,48,50,48,102,52,97,53,56,50,102,55,102,55,102,55,57,50,99,53,100,101,48,53,55,49,98,48,34,44,34,98,50,49,56,50,98,101,102,56,97,54,50,102,100,100,98,99,55,100,49,101,53,102,48,54,55,97,57,99,102,50,49,54,54,97,99,34,44,34,98,50,49,56,50,98,101,102,56,97,54,50,102,100,100,98,99,55,102,55,102,55,102,55,100,49,101,53,102,48,54,55,97,57,99,102,50,49,54,54,97,99,34,44,34,98,50,49,56,50,98,100,54,54,48,52,100,102,52,97,53,56,50,102,100,100,98,99,55,100,49,101,53,102,48,57,50,99,53,100,101,52,51,57,51,99,51,50,49,54,54,97,99,34,44,34,98,50,49,56,50,98,100,54,54,48,52,100,102,52,97,53,56,50,102,100,100,98,99,55,102,55,102,55,102,55,100,49,101,53,102,48,57,50,99,53,100,101,52,51,57,51,99,51,50,49,54,54,97,99,34,44,34,54,55,48,48,49,102,98,50,49,56,50,98,100,54,54,48,52,100,102,52,97,53,56,50,102,100,100,98,99,55,100,49,101,53,102,48,57,50,99,53,100,101,52,51,57,51,99,51,50,49,54,54,97,99,48,53,51,48,54,49,34,44,34,54,55,48,48,49,102,98,50,49,56,50,98,100,54,54,48,52,100,102,52,97,53,56,50,102,100,100,98,99,55,102,55,102,55,102,55,100,49,101,53,102,48,57,50,99,53,100,101,52,51,57,51,99,51,50,49,54,54,97,99,48,53,51,48,54,49,34,41,46,109,97,112,40,90,118,41,44,121,103,61,117,103,40,103,103,41,44,95,103,61,110,101,119,32,65,114,114,97,121,40,51,41,46,99,111,110,99,97,116,40,34,101,102,56,97,54,50,102,102,102,102,102,102,57,57,57,57,57,57,34,44,34,99,97,48,48,50,48,102,52,97,53,56,50,98,97,98,97,98,97,52,48,52,48,52,48,34,44,34,99,97,48,48,50,48,102,52,97,53,56,50,102,102,102,102,102,102,98,97,98,97,98,97,52,48,52,48,52,48,34,44,34,98,50,49,56,50,98,101,102,56,97,54,50,102,100,100,98,99,55,101,48,101,48,101,48,57,57,57,57,57,57,52,100,52,100,52,100,34,44,34,98,50,49,56,50,98,101,102,56,97,54,50,102,100,100,98,99,55,102,102,102,102,102,102,101,48,101,48,101,48,57,57,57,57,57,57,52,100,52,100,52,100,34,44,34,98,50,49,56,50,98,100,54,54,48,52,100,102,52,97,53,56,50,102,100,100,98,99,55,101,48,101,48,101,48,98,97,98,97,98,97,56,55,56,55,56,55,52,100,52,100,52,100,34,44,34,98,50,49,56,50,98,100,54,54,48,52,100,102,52,97,53,56,50,102,100,100,98,99,55,102,102,102,102,102,102,101,48,101,48,101,48,98,97,98,97,98,97,56,55,56,55,56,55,52,100,52,100,52,100,34,44,34,54,55,48,48,49,102,98,50,49,56,50,98,100,54,54,48,52,100,102,52,97,53,56,50,102,100,100,98,99,55,101,48,101,48,101,48,98,97,98,97,98,97,56,55,56,55,56,55,52,100,52,100,52,100,49,97,49,97,49,97,34,44,34,54,55,48,48,49,102,98,50,49,56,50,98,100,54,54,48,52,100,102,52,97,53,56,50,102,100,100,98,99,55,102,102,102,102,102,102,101,48,101,48,101,48,98,97,98,97,98,97,56,55,56,55,56,55,52,100,52,100,52,100,49,97,49,97,49,97,34,41,46,109,97,112,40,90,118,41,44,98,103,61,117,103,40,95,103,41,44,109,103,61,110,101,119,32,65,114,114,97,121,40,51,41,46,99,111,110,99,97,116,40,34,102,99,56,100,53,57,102,102,102,102,98,102,57,49,98,102,100,98,34,44,34,100,55,49,57,49,99,102,100,97,101,54,49,97,98,100,57,101,57,50,99,55,98,98,54,34,44,34,100,55,49,57,49,99,102,100,97,101,54,49,102,102,102,102,98,102,97,98,100,57,101,57,50,99,55,98,98,54,34,44,34,100,55,51,48,50,55,102,99,56,100,53,57,102,101,101,48,57,48,101,48,102,51,102,56,57,49,98,102,100,98,52,53,55,53,98,52,34,44,34,100,55,51,48,50,55,102,99,56,100,53,57,102,101,101,48,57,48,102,102,102,102,98,102,101,48,102,51,102,56,57,49,98,102,100,98,52,53,55,53,98,52,34,44,34,100,55,51,48,50,55,102,52,54,100,52,51,102,100,97,101,54,49,102,101,101,48,57,48,101,48,102,51,102,56,97,98,100,57,101,57,55,52,97,100,100,49,52,53,55,53,98,52,34,44,34,100,55,51,48,50,55,102,52,54,100,52,51,102,100,97,101,54,49,102,101,101,48,57,48,102,102,102,102,98,102,101,48,102,51,102,56,97,98,100,57,101,57,55,52,97,100,100,49,52,53,55,53,98,52,34,44,34,97,53,48,48,50,54,100,55,51,48,50,55,102,52,54,100,52,51,102,100,97,101,54,49,102,101,101,48,57,48,101,48,102,51,102,56,97,98,100,57,101,57,55,52,97,100,100,49,52,53,55,53,98,52,51,49,51,54,57,53,34,44,34,97,53,48,48,50,54,100,55,51,48,50,55,102,52,54,100,52,51,102,100,97,101,54,49,102,101,101,48,57,48,102,102,102,102,98,102,101,48,102,51,102,56,97,98,100,57,101,57,55,52,97,100,100,49,52,53,55,53,98,52,51,49,51,54,57,53,34,41,46,109,97,112,40,90,118,41,44,120,103,61,117,103,40,109,103,41,44,119,103,61,110,101,119,32,65,114,114,97,121,40,51,41,46,99,111,110,99,97,116,40,34,102,99,56,100,53,57,102,102,102,102,98,102,57,49,99,102,54,48,34,44,34,100,55,49,57,49,99,102,100,97,101,54,49,97,54,100,57,54,97,49,97,57,54,52,49,34,44,34,100,55,49,57,49,99,102,100,97,101,54,49,102,102,102,102,98,102,97,54,100,57,54,97,49,97,57,54,52,49,34,44,34,100,55,51,48,50,55,102,99,56,100,53,57,102,101,101,48,56,98,100,57,101,102,56,98,57,49,99,102,54,48,49,97,57,56,53,48,34,44,34,100,55,51,48,50,55,102,99,56,100,53,57,102,101,101,48,56,98,102,102,102,102,98,102,100,57,101,102,56,98,57,49,99,102,54,48,49,97,57,56,53,48,34,44,34,100,55,51,48,50,55,102,52,54,100,52,51,102,100,97,101,54,49,102,101,101,48,56,98,100,57,101,102,56,98,97,54,100,57,54,97,54,54,98,100,54,51,49,97,57,56,53,48,34,44,34,100,55,51,48,50,55,102,52,54,100,52,51,102,100,97,101,54,49,102,101,101,48,56,98,102,102,102,102,98,102,100,57,101,102,56,98,97,54,100,57,54,97,54,54,98,100,54,51,49,97,57,56,53,48,34,44,34,97,53,48,48,50,54,100,55,51,48,50,55,102,52,54,100,52,51,102,100,97,101,54,49,102,101,101,48,56,98,100,57,101,102,56,98,97,54,100,57,54,97,54,54,98,100,54,51,49,97,57,56,53,48,48,48,54,56,51,55,34,44,34,97,53,48,48,50,54,100,55,51,48,50,55,102,52,54,100,52,51,102,100,97,101,54,49,102,101,101,48,56,98,102,102,102,102,98,102,100,57,101,102,56,98,97,54,100,57,54,97,54,54,98,100,54,51,49,97,57,56,53,48,48,48,54,56,51,55,34,41,46,109,97,112,40,90,118,41,44,77,103,61,117,103,40,119,103,41,44,78,103,61,110,101,119,32,65,114,114,97,121,40,51,41,46,99,111,110,99,97,116,40,34,102,99,56,100,53,57,102,102,102,102,98,102,57,57,100,53,57,52,34,44,34,100,55,49,57,49,99,102,100,97,101,54,49,97,98,100,100,97,52,50,98,56,51,98,97,34,44,34,100,55,49,57,49,99,102,100,97,101,54,49,102,102,102,102,98,102,97,98,100,100,97,52,50,98,56,51,98,97,34,44,34,100,53,51,101,52,102,102,99,56,100,53,57,102,101,101,48,56,98,101,54,102,53,57,56,57,57,100,53,57,52,51,50,56,56,98,100,34,44,34,100,53,51,101,52,102,102,99,56,100,53,57,102,101,101,48,56,98,102,102,102,102,98,102,101,54,102,53,57,56,57,57,100,53,57,52,51,50,56,56,98,100,34,44,34,100,53,51,101,52,102,102,52,54,100,52,51,102,100,97,101,54,49,102,101,101,48,56,98,101,54,102,53,57,56,97,98,100,100,97,52,54,54,99,50,97,53,51,50,56,56,98,100,34,44,34,100,53,51,101,52,102,102,52,54,100,52,51,102,100,97,101,54,49,102,101,101,48,56,98,102,102,102,102,98,102,101,54,102,53,57,56,97,98,100,100,97,52,54,54,99,50,97,53,51,50,56,56,98,100,34,44,34,57,101,48,49,52,50,100,53,51,101,52,102,102,52,54,100,52,51,102,100,97,101,54,49,102,101,101,48,56,98,101,54,102,53,57,56,97,98,100,100,97,52,54,54,99,50,97,53,51,50,56,56,98,100,53,101,52,102,97,50,34,44,34,57,101,48,49,52,50,100,53,51,101,52,102,102,52,54,100,52,51,102,100,97,101,54,49,102,101,101,48,56,98,102,102,102,102,98,102,101,54,102,53,57,56,97,98,100,100,97,52,54,54,99,50,97,53,51,50,56,56,98,100,53,101,52,102,97,50,34,41,46,109,97,112,40,90,118,41,44,84,103,61,117,103,40,78,103,41,44,65,103,61,110,101,119,32,65,114,114,97,121,40,51,41,46,99,111,110,99,97,116,40,34,101,53,102,53,102,57,57,57,100,56,99,57,50,99,97,50,53,102,34,44,34,101,100,102,56,102,98,98,50,101,50,101,50,54,54,99,50,97,52,50,51,56,98,52,53,34,44,34,101,100,102,56,102,98,98,50,101,50,101,50,54,54,99,50,97,52,50,99,97,50,53,102,48,48,54,100,50,99,34,44,34,101,100,102,56,102,98,99,99,101,99,101,54,57,57,100,56,99,57,54,54,99,50,97,52,50,99,97,50,53,102,48,48,54,100,50,99,34,44,34,101,100,102,56,102,98,99,99,101,99,101,54,57,57,100,56,99,57,54,54,99,50,97,52,52,49,97,101,55,54,50,51,56,98,52,53,48,48,53,56,50,52,34,44,34,102,55,102,99,102,100,101,53,102,53,102,57,99,99,101,99,101,54,57,57,100,56,99,57,54,54,99,50,97,52,52,49,97,101,55,54,50,51,56,98,52,53,48,48,53,56,50,52,34,44,34,102,55,102,99,102,100,101,53,102,53,102,57,99,99,101,99,101,54,57,57,100,56,99,57,54,54,99,50,97,52,52,49,97,101,55,54,50,51,56,98,52,53,48,48,54,100,50,99,48,48,52,52,49,98,34,41,46,109,97,112,40,90,118,41,44,83,103,61,117,103,40,65,103,41,44,107,103,61,110,101,119,32,65,114,114,97,121,40,51,41,46,99,111,110,99,97,116,40,34,101,48,101,99,102,52,57,101,98,99,100,97,56,56,53,54,97,55,34,44,34,101,100,102,56,102,98,98,51,99,100,101,51,56,99,57,54,99,54,56,56,52,49,57,100,34,44,34,101,100,102,56,102,98,98,51,99,100,101,51,56,99,57,54,99,54,56,56,53,54,97,55,56,49,48,102,55,99,34,44,34,101,100,102,56,102,98,98,102,100,51,101,54,57,101,98,99,100,97,56,99,57,54,99,54,56,56,53,54,97,55,56,49,48,102,55,99,34,44,34,101,100,102,56,102,98,98,102,100,51,101,54,57,101,98,99,100,97,56,99,57,54,99,54,56,99,54,98,98,49,56,56,52,49,57,100,54,101,48,49,54,98,34,44,34,102,55,102,99,102,100,101,48,101,99,102,52,98,102,100,51,101,54,57,101,98,99,100,97,56,99,57,54,99,54,56,99,54,98,98,49,56,56,52,49,57,100,54,101,48,49,54,98,34,44,34,102,55,102,99,102,100,101,48,101,99,102,52,98,102,100,51,101,54,57,101,98,99,100,97,56,99,57,54,99,54,56,99,54,98,98,49,56,56,52,49,57,100,56,49,48,102,55,99,52,100,48,48,52,98,34,41,46,109,97,112,40,90,118,41,44,69,103,61,117,103,40,107,103,41,44,67,103,61,110,101,119,32,65,114,114,97,121,40,51,41,46,99,111,110,99,97,116,40,34,101,48,102,51,100,98,97,56,100,100,98,53,52,51,97,50,99,97,34,44,34,102,48,102,57,101,56,98,97,101,52,98,99,55,98,99,99,99,52,50,98,56,99,98,101,34,44,34,102,48,102,57,101,56,98,97,101,52,98,99,55,98,99,99,99,52,52,51,97,50,99,97,48,56,54,56,97,99,34,44,34,102,48,102,57,101,56,99,99,101,98,99,53,97,56,100,100,98,53,55,98,99,99,99,52,52,51,97,50,99,97,48,56,54,56,97,99,34,44,34,102,48,102,57,101,56,99,99,101,98,99,53,97,56,100,100,98,53,55,98,99,99,99,52,52,101,98,51,100,51,50,98,56,99,98,101,48,56,53,56,57,101,34,44,34,102,55,102,99,102,48,101,48,102,51,100,98,99,99,101,98,99,53,97,56,100,100,98,53,55,98,99,99,99,52,52,101,98,51,100,51,50,98,56,99,98,101,48,56,53,56,57,101,34,44,34,102,55,102,99,102,48,101,48,102,51,100,98,99,99,101,98,99,53,97,56,100,100,98,53,55,98,99,99,99,52,52,101,98,51,100,51,50,98,56,99,98,101,48,56,54,56,97,99,48,56,52,48,56,49,34,41,46,109,97,112,40,90,118,41,44,80,103,61,117,103,40,67,103,41,44,122,103,61,110,101,119,32,65,114,114,97,121,40,51,41,46,99,111,110,99,97,116,40,34,102,101,101,56,99,56,102,100,98,98,56,52,101,51,52,97,51,51,34,44,34,102,101,102,48,100,57,102,100,99,99,56,97,102,99,56,100,53,57,100,55,51,48,49,102,34,44,34,102,101,102,48,100,57,102,100,99,99,56,97,102,99,56,100,53,57,101,51,52,97,51,51,98,51,48,48,48,48,34,44,34,102,101,102,48,100,57,102,100,100,52,57,101,102,100,98,98,56,52,102,99,56,100,53,57,101,51,52,97,51,51,98,51,48,48,48,48,34,44,34,102,101,102,48,100,57,102,100,100,52,57,101,102,100,98,98,56,52,102,99,56,100,53,57,101,102,54,53,52,56,100,55,51,48,49,102,57,57,48,48,48,48,34,44,34,102,102,102,55,101,99,102,101,101,56,99,56,102,100,100,52,57,101,102,100,98,98,56,52,102,99,56,100,53,57,101,102,54,53,52,56,100,55,51,48,49,102,57,57,48,48,48,48,34,44,34,102,102,102,55,101,99,102,101,101,56,99,56,102,100,100,52,57,101,102,100,98,98,56,52,102,99,56,100,53,57,101,102,54,53,52,56,100,55,51,48,49,102,98,51,48,48,48,48,55,102,48,48,48,48,34,41,46,109,97,112,40,90,118,41,44,82,103,61,117,103,40,122,103,41,44,68,103,61,110,101,119,32,65,114,114,97,121,40,51,41,46,99,111,110,99,97,116,40,34,101,99,101,50,102,48,97,54,98,100,100,98,49,99,57,48,57,57,34,44,34,102,54,101,102,102,55,98,100,99,57,101,49,54,55,97,57,99,102,48,50,56,49,56,97,34,44,34,102,54,101,102,102,55,98,100,99,57,101,49,54,55,97,57,99,102,49,99,57,48,57,57,48,49,54,99,53,57,34,44,34,102,54,101,102,102,55,100,48,100,49,101,54,97,54,98,100,100,98,54,55,97,57,99,102,49,99,57,48,57,57,48,49,54,99,53,57,34,44,34,102,54,101,102,102,55,100,48,100,49,101,54,97,54,98,100,100,98,54,55,97,57,99,102,51,54,57,48,99,48,48,50,56,49,56,97,48,49,54,52,53,48,34,44,34,102,102,102,55,102,98,101,99,101,50,102,48,100,48,100,49,101,54,97,54,98,100,100,98,54,55,97,57,99,102,51,54,57,48,99,48,48,50,56,49,56,97,48,49,54,52,53,48,34,44,34,102,102,102,55,102,98,101,99,101,50,102,48,100,48,100,49,101,54,97,54,98,100,100,98,54,55,97,57,99,102,51,54,57,48,99,48,48,50,56,49,56,97,48,49,54,99,53,57,48,49,52,54,51,54,34,41,46,109,97,112,40,90,118,41,44,113,103,61,117,103,40,68,103,41,44,76,103,61,110,101,119,32,65,114,114,97,121,40,51,41,46,99,111,110,99,97,116,40,34,101,99,101,55,102,50,97,54,98,100,100,98,50,98,56,99,98,101,34,44,34,102,49,101,101,102,54,98,100,99,57,101,49,55,52,97,57,99,102,48,53,55,48,98,48,34,44,34,102,49,101,101,102,54,98,100,99,57,101,49,55,52,97,57,99,102,50,98,56,99,98,101,48,52,53,97,56,100,34,44,34,102,49,101,101,102,54,100,48,100,49,101,54,97,54,98,100,100,98,55,52,97,57,99,102,50,98,56,99,98,101,48,52,53,97,56,100,34,44,34,102,49,101,101,102,54,100,48,100,49,101,54,97,54,98,100,100,98,55,52,97,57,99,102,51,54,57,48,99,48,48,53,55,48,98,48,48,51,52,101,55,98,34,44,34,102,102,102,55,102,98,101,99,101,55,102,50,100,48,100,49,101,54,97,54,98,100,100,98,55,52,97,57,99,102,51,54,57,48,99,48,48,53,55,48,98,48,48,51,52,101,55,98,34,44,34,102,102,102,55,102,98,101,99,101,55,102,50,100,48,100,49,101,54,97,54,98,100,100,98,55,52,97,57,99,102,51,54,57,48,99,48,48,53,55,48,98,48,48,52,53,97,56,100,48,50,51,56,53,56,34,41,46,109,97,112,40,90,118,41,44,85,103,61,117,103,40,76,103,41,44,79,103,61,110,101,119,32,65,114,114,97,121,40,51,41,46,99,111,110,99,97,116,40,34,101,55,101,49,101,102,99,57,57,52,99,55,100,100,49,99,55,55,34,44,34,102,49,101,101,102,54,100,55,98,53,100,56,100,102,54,53,98,48,99,101,49,50,53,54,34,44,34,102,49,101,101,102,54,100,55,98,53,100,56,100,102,54,53,98,48,100,100,49,99,55,55,57,56,48,48,52,51,34,44,34,102,49,101,101,102,54,100,52,98,57,100,97,99,57,57,52,99,55,100,102,54,53,98,48,100,100,49,99,55,55,57,56,48,48,52,51,34,44,34,102,49,101,101,102,54,100,52,98,57,100,97,99,57,57,52,99,55,100,102,54,53,98,48,101,55,50,57,56,97,99,101,49,50,53,54,57,49,48,48,51,102,34,44,34,102,55,102,52,102,57,101,55,101,49,101,102,100,52,98,57,100,97,99,57,57,52,99,55,100,102,54,53,98,48,101,55,50,57,56,97,99,101,49,50,53,54,57,49,48,48,51,102,34,44,34,102,55,102,52,102,57,101,55,101,49,101,102,100,52,98,57,100,97,99,57,57,52,99,55,100,102,54,53,98,48,101,55,50,57,56,97,99,101,49,50,53,54,57,56,48,48,52,51,54,55,48,48,49,102,34,41,46,109,97,112,40,90,118,41,44,66,103,61,117,103,40,79,103,41,44,70,103,61,110,101,119,32,65,114,114,97,121,40,51,41,46,99,111,110,99,97,116,40,34,102,100,101,48,100,100,102,97,57,102,98,53,99,53,49,98,56,97,34,44,34,102,101,101,98,101,50,102,98,98,52,98,57,102,55,54,56,97,49,97,101,48,49,55,101,34,44,34,102,101,101,98,101,50,102,98,98,52,98,57,102,55,54,56,97,49,99,53,49,98,56,97,55,97,48,49,55,55,34,44,34,102,101,101,98,101,50,102,99,99,53,99,48,102,97,57,102,98,53,102,55,54,56,97,49,99,53,49,98,56,97,55,97,48,49,55,55,34,44,34,102,101,101,98,101,50,102,99,99,53,99,48,102,97,57,102,98,53,102,55,54,56,97,49,100,100,51,52,57,55,97,101,48,49,55,101,55,97,48,49,55,55,34,44,34,102,102,102,55,102,51,102,100,101,48,100,100,102,99,99,53,99,48,102,97,57,102,98,53,102,55,54,56,97,49,100,100,51,52,57,55,97,101,48,49,55,101,55,97,48,49,55,55,34,44,34,102,102,102,55,102,51,102,100,101,48,100,100,102,99,99,53,99,48,102,97,57,102,98,53,102,55,54,56,97,49,100,100,51,52,57,55,97,101,48,49,55,101,55,97,48,49,55,55,52,57,48,48,54,97,34,41,46,109,97,112,40,90,118,41,44,89,103,61,117,103,40,70,103,41,44,73,103,61,110,101,119,32,65,114,114,97,121,40,51,41,46,99,111,110,99,97,116,40,34,101,100,102,56,98,49,55,102,99,100,98,98,50,99,55,102,98,56,34,44,34,102,102,102,102,99,99,97,49,100,97,98,52,52,49,98,54,99,52,50,50,53,101,97,56,34,44,34,102,102,102,102,99,99,97,49,100,97,98,52,52,49,98,54,99,52,50,99,55,102,98,56,50,53,51,52,57,52,34,44,34,102,102,102,102,99,99,99,55,101,57,98,52,55,102,99,100,98,98,52,49,98,54,99,52,50,99,55,102,98,56,50,53,51,52,57,52,34,44,34,102,102,102,102,99,99,99,55,101,57,98,52,55,102,99,100,98,98,52,49,98,54,99,52,49,100,57,49,99,48,50,50,53,101,97,56,48,99,50,99,56,52,34,44,34,102,102,102,102,100,57,101,100,102,56,98,49,99,55,101,57,98,52,55,102,99,100,98,98,52,49,98,54,99,52,49,100,57,49,99,48,50,50,53,101,97,56,48,99,50,99,56,52,34,44,34,102,102,102,102,100,57,101,100,102,56,98,49,99,55,101,57,98,52,55,102,99,100,98,98,52,49,98,54,99,52,49,100,57,49,99,48,50,50,53,101,97,56,50,53,51,52,57,52,48,56,49,100,53,56,34,41,46,109,97,112,40,90,118,41,44,72,103,61,117,103,40,73,103,41,44,106,103,61,110,101,119,32,65,114,114,97,121,40,51,41,46,99,111,110,99,97,116,40,34,102,55,102,99,98,57,97,100,100,100,56,101,51,49,97,51,53,52,34,44,34,102,102,102,102,99,99,99,50,101,54,57,57,55,56,99,54,55,57,50,51,56,52,52,51,34,44,34,102,102,102,102,99,99,99,50,101,54,57,57,55,56,99,54,55,57,51,49,97,51,53,52,48,48,54,56,51,55,34,44,34,102,102,102,102,99,99,100,57,102,48,97,51,97,100,100,100,56,101,55,56,99,54,55,57,51,49,97,51,53,52,48,48,54,56,51,55,34,44,34,102,102,102,102,99,99,100,57,102,48,97,51,97,100,100,100,56,101,55,56,99,54,55,57,52,49,97,98,53,100,50,51,56,52,52,51,48,48,53,97,51,50,34,44,34,102,102,102,102,101,53,102,55,102,99,98,57,100,57,102,48,97,51,97,100,100,100,56,101,55,56,99,54,55,57,52,49,97,98,53,100,50,51,56,52,52,51,48,48,53,97,51,50,34,44,34,102,102,102,102,101,53,102,55,102,99,98,57,100,57,102,48,97,51,97,100,100,100,56,101,55,56,99,54,55,57,52,49,97,98,53,100,50,51,56,52,52,51,48,48,54,56,51,55,48,48,52,53,50,57,34,41,46,109,97,112,40,90,118,41,44,88,103,61,117,103,40,106,103,41,44,86,103,61,110,101,119,32,65,114,114,97,121,40,51,41,46,99,111,110,99,97,116,40,34,102,102,102,55,98,99,102,101,99,52,52,102,100,57,53,102,48,101,34,44,34,102,102,102,102,100,52,102,101,100,57,56,101,102,101,57,57,50,57,99,99,52,99,48,50,34,44,34,102,102,102,102,100,52,102,101,100,57,56,101,102,101,57,57,50,57,100,57,53,102,48,101,57,57,51,52,48,52,34,44,34,102,102,102,102,100,52,102,101,101,51,57,49,102,101,99,52,52,102,102,101,57,57,50,57,100,57,53,102,48,101,57,57,51,52,48,52,34,44,34,102,102,102,102,100,52,102,101,101,51,57,49,102,101,99,52,52,102,102,101,57,57,50,57,101,99,55,48,49,52,99,99,52,99,48,50,56,99,50,100,48,52,34,44,34,102,102,102,102,101,53,102,102,102,55,98,99,102,101,101,51,57,49,102,101,99,52,52,102,102,101,57,57,50,57,101,99,55,48,49,52,99,99,52,99,48,50,56,99,50,100,48,52,34,44,34,102,102,102,102,101,53,102,102,102,55,98,99,102,101,101,51,57,49,102,101,99,52,52,102,102,101,57,57,50,57,101,99,55,48,49,52,99,99,52,99,48,50,57,57,51,52,48,52,54,54,50,53,48,54,34,41,46,109,97,112,40,90,118,41,44,71,103,61,117,103,40,86,103,41,44,36,103,61,110,101,119,32,65,114,114,97,121,40,51,41,46,99,111,110,99,97,116,40,34,102,102,101,100,97,48,102,101,98,50,52,99,102,48,51,98,50,48,34,44,34,102,102,102,102,98,50,102,101,99,99,53,99,102,100,56,100,51,99,101,51,49,97,49,99,34,44,34,102,102,102,102,98,50,102,101,99,99,53,99,102,100,56,100,51,99,102,48,51,98,50,48,98,100,48,48,50,54,34,44,34,102,102,102,102,98,50,102,101,100,57,55,54,102,101,98,50,52,99,102,100,56,100,51,99,102,48,51,98,50,48,98,100,48,48,50,54,34,44,34,102,102,102,102,98,50,102,101,100,57,55,54,102,101,98,50,52,99,102,100,56,100,51,99,102,99,52,101,50,97,101,51,49,97,49,99,98,49,48,48,50,54,34,44,34,102,102,102,102,99,99,102,102,101,100,97,48,102,101,100,57,55,54,102,101,98,50,52,99,102,100,56,100,51,99,102,99,52,101,50,97,101,51,49,97,49,99,98,49,48,48,50,54,34,44,34,102,102,102,102,99,99,102,102,101,100,97,48,102,101,100,57,55,54,102,101,98,50,52,99,102,100,56,100,51,99,102,99,52,101,50,97,101,51,49,97,49,99,98,100,48,48,50,54,56,48,48,48,50,54,34,41,46,109,97,112,40,90,118,41,44,87,103,61,117,103,40,36,103,41,44,90,103,61,110,101,119,32,65,114,114,97,121,40,51,41,46,99,111,110,99,97,116,40,34,100,101,101,98,102,55,57,101,99,97,101,49,51,49,56,50,98,100,34,44,34,101,102,102,51,102,102,98,100,100,55,101,55,54,98,97,101,100,54,50,49,55,49,98,53,34,44,34,101,102,102,51,102,102,98,100,100,55,101,55,54,98,97,101,100,54,51,49,56,50,98,100,48,56,53,49,57,99,34,44,34,101,102,102,51,102,102,99,54,100,98,101,102,57,101,99,97,101,49,54,98,97,101,100,54,51,49,56,50,98,100,48,56,53,49,57,99,34,44,34,101,102,102,51,102,102,99,54,100,98,101,102,57,101,99,97,101,49,54,98,97,101,100,54,52,50,57,50,99,54,50,49,55,49,98,53,48,56,52,53,57,52,34,44,34,102,55,102,98,102,102,100,101,101,98,102,55,99,54,100,98,101,102,57,101,99,97,101,49,54,98,97,101,100,54,52,50,57,50,99,54,50,49,55,49,98,53,48,56,52,53,57,52,34,44,34,102,55,102,98,102,102,100,101,101,98,102,55,99,54,100,98,101,102,57,101,99,97,101,49,54,98,97,101,100,54,52,50,57,50,99,54,50,49,55,49,98,53,48,56,53,49,57,99,48,56,51,48,54,98,34,41,46,109,97,112,40,90,118,41,44,81,103,61,117,103,40,90,103,41,44,75,103,61,110,101,119,32,65,114,114,97,121,40,51,41,46,99,111,110,99,97,116,40,34,101,53,102,53,101,48,97,49,100,57,57,98,51,49,97,51,53,52,34,44,34,101,100,102,56,101,57,98,97,101,52,98,51,55,52,99,52,55,54,50,51,56,98,52,53,34,44,34,101,100,102,56,101,57,98,97,101,52,98,51,55,52,99,52,55,54,51,49,97,51,53,52,48,48,54,100,50,99,34,44,34,101,100,102,56,101,57,99,55,101,57,99,48,97,49,100,57,57,98,55,52,99,52,55,54,51,49,97,51,53,52,48,48,54,100,50,99,34,44,34,101,100,102,56,101,57,99,55,101,57,99,48,97,49,100,57,57,98,55,52,99,52,55,54,52,49,97,98,53,100,50,51,56,98,52,53,48,48,53,97,51,50,34,44,34,102,55,102,99,102,53,101,53,102,53,101,48,99,55,101,57,99,48,97,49,100,57,57,98,55,52,99,52,55,54,52,49,97,98,53,100,50,51,56,98,52,53,48,48,53,97,51,50,34,44,34,102,55,102,99,102,53,101,53,102,53,101,48,99,55,101,57,99,48,97,49,100,57,57,98,55,52,99,52,55,54,52,49,97,98,53,100,50,51,56,98,52,53,48,48,54,100,50,99,48,48,52,52,49,98,34,41,46,109,97,112,40,90,118,41,44,74,103,61,117,103,40,75,103,41,44,116,121,61,110,101,119,32,65,114,114,97,121,40,51,41,46,99,111,110,99,97,116,40,34,102,48,102,48,102,48,98,100,98,100,98,100,54,51,54,51,54,51,34,44,34,102,55,102,55,102,55,99,99,99,99,99,99,57,54,57,54,57,54,53,50,53,50,53,50,34,44,34,102,55,102,55,102,55,99,99,99,99,99,99,57,54,57,54,57,54,54,51,54,51,54,51,50,53,50,53,50,53,34,44,34,102,55,102,55,102,55,100,57,100,57,100,57,98,100,98,100,98,100,57,54,57,54,57,54,54,51,54,51,54,51,50,53,50,53,50,53,34,44,34,102,55,102,55,102,55,100,57,100,57,100,57,98,100,98,100,98,100,57,54,57,54,57,54,55,51,55,51,55,51,53,50,53,50,53,50,50,53,50,53,50,53,34,44,34,102,102,102,102,102,102,102,48,102,48,102,48,100,57,100,57,100,57,98,100,98,100,98,100,57,54,57,54,57,54,55,51,55,51,55,51,53,50,53,50,53,50,50,53,50,53,50,53,34,44,34,102,102,102,102,102,102,102,48,102,48,102,48,100,57,100,57,100,57,98,100,98,100,98,100,57,54,57,54,57,54,55,51,55,51,55,51,53,50,53,50,53,50,50,53,50,53,50,53,48,48,48,48,48,48,34,41,46,109,97,112,40,90,118,41,44,110,121,61,117,103,40,116,121,41,44,101,121,61,110,101,119,32,65,114,114,97,121,40,51,41,46,99,111,110,99,97,116,40,34,101,102,101,100,102,53,98,99,98,100,100,99,55,53,54,98,98,49,34,44,34,102,50,102,48,102,55,99,98,99,57,101,50,57,101,57,97,99,56,54,97,53,49,97,51,34,44,34,102,50,102,48,102,55,99,98,99,57,101,50,57,101,57,97,99,56,55,53,54,98,98,49,53,52,50,55,56,102,34,44,34,102,50,102,48,102,55,100,97,100,97,101,98,98,99,98,100,100,99,57,101,57,97,99,56,55,53,54,98,98,49,53,52,50,55,56,102,34,44,34,102,50,102,48,102,55,100,97,100,97,101,98,98,99,98,100,100,99,57,101,57,97,99,56,56,48,55,100,98,97,54,97,53,49,97,51,52,97,49,52,56,54,34,44,34,102,99,102,98,102,100,101,102,101,100,102,53,100,97,100,97,101,98,98,99,98,100,100,99,57,101,57,97,99,56,56,48,55,100,98,97,54,97,53,49,97,51,52,97,49,52,56,54,34,44,34,102,99,102,98,102,100,101,102,101,100,102,53,100,97,100,97,101,98,98,99,98,100,100,99,57,101,57,97,99,56,56,48,55,100,98,97,54,97,53,49,97,51,53,52,50,55,56,102,51,102,48,48,55,100,34,41,46,109,97,112,40,90,118,41,44,114,121,61,117,103,40,101,121,41,44,105,121,61,110,101,119,32,65,114,114,97,121,40,51,41,46,99,111,110,99,97,116,40,34,102,101,101,48,100,50,102,99,57,50,55,50,100,101,50,100,50,54,34,44,34,102,101,101,53,100,57,102,99,97,101,57,49,102,98,54,97,52,97,99,98,49,56,49,100,34,44,34,102,101,101,53,100,57,102,99,97,101,57,49,102,98,54,97,52,97,100,101,50,100,50,54,97,53,48,102,49,53,34,44,34,102,101,101,53,100,57,102,99,98,98,97,49,102,99,57,50,55,50,102,98,54,97,52,97,100,101,50,100,50,54,97,53,48,102,49,53,34,44,34,102,101,101,53,100,57,102,99,98,98,97,49,102,99,57,50,55,50,102,98,54,97,52,97,101,102,51,98,50,99,99,98,49,56,49,100,57,57,48,48,48,100,34,44,34,102,102,102,53,102,48,102,101,101,48,100,50,102,99,98,98,97,49,102,99,57,50,55,50,102,98,54,97,52,97,101,102,51,98,50,99,99,98,49,56,49,100,57,57,48,48,48,100,34,44,34,102,102,102,53,102,48,102,101,101,48,100,50,102,99,98,98,97,49,102,99,57,50,55,50,102,98,54,97,52,97,101,102,51,98,50,99,99,98,49,56,49,100,97,53,48,102,49,53,54,55,48,48,48,100,34,41,46,109,97,112,40,90,118,41,44,111,121,61,117,103,40,105,121,41,44,97,121,61,110,101,119,32,65,114,114,97,121,40,51,41,46,99,111,110,99,97,116,40,34,102,101,101,54,99,101,102,100,97,101,54,98,101,54,53,53,48,100,34,44,34,102,101,101,100,100,101,102,100,98,101,56,53,102,100,56,100,51,99,100,57,52,55,48,49,34,44,34,102,101,101,100,100,101,102,100,98,101,56,53,102,100,56,100,51,99,101,54,53,53,48,100,97,54,51,54,48,51,34,44,34,102,101,101,100,100,101,102,100,100,48,97,50,102,100,97,101,54,98,102,100,56,100,51,99,101,54,53,53,48,100,97,54,51,54,48,51,34,44,34,102,101,101,100,100,101,102,100,100,48,97,50,102,100,97,101,54,98,102,100,56,100,51,99,102,49,54,57,49,51,100,57,52,56,48,49,56,99,50,100,48,52,34,44,34,102,102,102,53,101,98,102,101,101,54,99,101,102,100,100,48,97,50,102,100,97,101,54,98,102,100,56,100,51,99,102,49,54,57,49,51,100,57,52,56,48,49,56,99,50,100,48,52,34,44,34,102,102,102,53,101,98,102,101,101,54,99,101,102,100,100,48,97,50,102,100,97,101,54,98,102,100,56,100,51,99,102,49,54,57,49,51,100,57,52,56,48,49,97,54,51,54,48,51,55,102,50,55,48,52,34,41,46,109,97,112,40,90,118,41,44,117,121,61,117,103,40,97,121,41,59,118,97,114,32,99,121,61,81,101,40,101,101,40,51,48,48,44,46,53,44,48,41,44,101,101,40,45,50,52,48,44,46,53,44,49,41,41,44,102,121,61,81,101,40,101,101,40,45,49,48,48,44,46,55,53,44,46,51,53,41,44,101,101,40,56,48,44,49,46,53,44,46,56,41,41,44,115,121,61,81,101,40,101,101,40,50,54,48,44,46,55,53,44,46,51,53,41,44,101,101,40,56,48,44,49,46,53,44,46,56,41,41,44,108,121,61,101,101,40,41,59,118,97,114,32,104,121,61,95,110,40,41,44,100,121,61,77,97,116,104,46,80,73,47,51,44,112,121,61,50,42,77,97,116,104,46,80,73,47,51,59,102,117,110,99,116,105,111,110,32,118,121,40,116,41,123,118,97,114,32,110,61,116,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,91,77,97,116,104,46,109,97,120,40,48,44,77,97,116,104,46,109,105,110,40,110,45,49,44,77,97,116,104,46,102,108,111,111,114,40,101,42,110,41,41,41,93,125,125,118,97,114,32,103,121,61,118,121,40,90,118,40,34,52,52,48,49,53,52,52,52,48,50,53,54,52,53,48,52,53,55,52,53,48,53,53,57,52,54,48,55,53,97,52,54,48,56,53,99,52,54,48,97,53,100,52,54,48,98,53,101,52,55,48,100,54,48,52,55,48,101,54,49,52,55,49,48,54,51,52,55,49,49,54,52,52,55,49,51,54,53,52,56,49,52,54,55,52,56,49,54,54,56,52,56,49,55,54,57,52,56,49,56,54,97,52,56,49,97,54,99,52,56,49,98,54,100,52,56,49,99,54,101,52,56,49,100,54,102,52,56,49,102,55,48,52,56,50,48,55,49,52,56,50,49,55,51,52,56,50,51,55,52,52,56,50,52,55,53,52,56,50,53,55,54,52,56,50,54,55,55,52,56,50,56,55,56,52,56,50,57,55,57,52,55,50,97,55,97,52,55,50,99,55,97,52,55,50,100,55,98,52,55,50,101,55,99,52,55,50,102,55,100,52,54,51,48,55,101,52,54,51,50,55,101,52,54,51,51,55,102,52,54,51,52,56,48,52,53,51,53,56,49,52,53,51,55,56,49,52,53,51,56,56,50,52,52,51,57,56,51,52,52,51,97,56,51,52,52,51,98,56,52,52,51,51,100,56,52,52,51,51,101,56,53,52,50,51,102,56,53,52,50,52,48,56,54,52,50,52,49,56,54,52,49,52,50,56,55,52,49,52,52,56,55,52,48,52,53,56,56,52,48,52,54,56,56,51,102,52,55,56,56,51,102,52,56,56,57,51,101,52,57,56,57,51,101,52,97,56,57,51,101,52,99,56,97,51,100,52,100,56,97,51,100,52,101,56,97,51,99,52,102,56,97,51,99,53,48,56,98,51,98,53,49,56,98,51,98,53,50,56,98,51,97,53,51,56,98,51,97,53,52,56,99,51,57,53,53,56,99,51,57,53,54,56,99,51,56,53,56,56,99,51,56,53,57,56,99,51,55,53,97,56,99,51,55,53,98,56,100,51,54,53,99,56,100,51,54,53,100,56,100,51,53,53,101,56,100,51,53,53,102,56,100,51,52,54,48,56,100,51,52,54,49,56,100,51,51,54,50,56,100,51,51,54,51,56,100,51,50,54,52,56,101,51,50,54,53,56,101,51,49,54,54,56,101,51,49,54,55,56,101,51,49,54,56,56,101,51,48,54,57,56,101,51,48,54,97,56,101,50,102,54,98,56,101,50,102,54,99,56,101,50,101,54,100,56,101,50,101,54,101,56,101,50,101,54,102,56,101,50,100,55,48,56,101,50,100,55,49,56,101,50,99,55,49,56,101,50,99,55,50,56,101,50,99,55,51,56,101,50,98,55,52,56,101,50,98,55,53,56,101,50,97,55,54,56,101,50,97,55,55,56,101,50,97,55,56,56,101,50,57,55,57,56,101,50,57,55,97,56,101,50,57,55,98,56,101,50,56,55,99,56,101,50,56,55,100,56,101,50,55,55,101,56,101,50,55,55,102,56,101,50,55,56,48,56,101,50,54,56,49,56,101,50,54,56,50,56,101,50,54,56,50,56,101,50,53,56,51,56,101,50,53,56,52,56,101,50,53,56,53,56,101,50,52,56,54,56,101,50,52,56,55,56,101,50,51,56,56,56,101,50,51,56,57,56,101,50,51,56,97,56,100,50,50,56,98,56,100,50,50,56,99,56,100,50,50,56,100,56,100,50,49,56,101,56,100,50,49,56,102,56,100,50,49,57,48,56,100,50,49,57,49,56,99,50,48,57,50,56,99,50,48,57,50,56,99,50,48,57,51,56,99,49,102,57,52,56,99,49,102,57,53,56,98,49,102,57,54,56,98,49,102,57,55,56,98,49,102,57,56,56,98,49,102,57,57,56,97,49,102,57,97,56,97,49,101,57,98,56,97,49,101,57,99,56,57,49,101,57,100,56,57,49,102,57,101,56,57,49,102,57,102,56,56,49,102,97,48,56,56,49,102,97,49,56,56,49,102,97,49,56,55,49,102,97,50,56,55,50,48,97,51,56,54,50,48,97,52,56,54,50,49,97,53,56,53,50,49,97,54,56,53,50,50,97,55,56,53,50,50,97,56,56,52,50,51,97,57,56,51,50,52,97,97,56,51,50,53,97,98,56,50,50,53,97,99,56,50,50,54,97,100,56,49,50,55,97,100,56,49,50,56,97,101,56,48,50,57,97,102,55,102,50,97,98,48,55,102,50,99,98,49,55,101,50,100,98,50,55,100,50,101,98,51,55,99,50,102,98,52,55,99,51,49,98,53,55,98,51,50,98,54,55,97,51,52,98,54,55,57,51,53,98,55,55,57,51,55,98,56,55,56,51,56,98,57,55,55,51,97,98,97,55,54,51,98,98,98,55,53,51,100,98,99,55,52,51,102,98,99,55,51,52,48,98,100,55,50,52,50,98,101,55,49,52,52,98,102,55,48,52,54,99,48,54,102,52,56,99,49,54,101,52,97,99,49,54,100,52,99,99,50,54,99,52,101,99,51,54,98,53,48,99,52,54,97,53,50,99,53,54,57,53,52,99,53,54,56,53,54,99,54,54,55,53,56,99,55,54,53,53,97,99,56,54,52,53,99,99,56,54,51,53,101,99,57,54,50,54,48,99,97,54,48,54,51,99,98,53,102,54,53,99,98,53,101,54,55,99,99,53,99,54,57,99,100,53,98,54,99,99,100,53,97,54,101,99,101,53,56,55,48,99,102,53,55,55,51,100,48,53,54,55,53,100,48,53,52,55,55,100,49,53,51,55,97,100,49,53,49,55,99,100,50,53,48,55,102,100,51,52,101,56,49,100,51,52,100,56,52,100,52,52,98,56,54,100,53,52,57,56,57,100,53,52,56,56,98,100,54,52,54,56,101,100,54,52,53,57,48,100,55,52,51,57,51,100,55,52,49,57,53,100,56,52,48,57,56,100,56,51,101,57,98,100,57,51,99,57,100,100,57,51,98,97,48,100,97,51,57,97,50,100,97,51,55,97,53,100,98,51,54,97,56,100,98,51,52,97,97,100,99,51,50,97,100,100,99,51,48,98,48,100,100,50,102,98,50,100,100,50,100,98,53,100,101,50,98,98,56,100,101,50,57,98,97,100,101,50,56,98,100,100,102,50,54,99,48,100,102,50,53,99,50,100,102,50,51,99,53,101,48,50,49,99,56,101,48,50,48,99,97,101,49,49,102,99,100,101,49,49,100,100,48,101,49,49,99,100,50,101,50,49,98,100,53,101,50,49,97,100,56,101,50,49,57,100,97,101,51,49,57,100,100,101,51,49,56,100,102,101,51,49,56,101,50,101,52,49,56,101,53,101,52,49,57,101,55,101,52,49,57,101,97,101,53,49,97,101,99,101,53,49,98,101,102,101,53,49,99,102,49,101,53,49,100,102,52,101,54,49,101,102,54,101,54,50,48,102,56,101,54,50,49,102,98,101,55,50,51,102,100,101,55,50,53,34,41,41,44,121,121,61,118,121,40,90,118,40,34,48,48,48,48,48,52,48,49,48,48,48,53,48,49,48,49,48,54,48,49,48,49,48,56,48,50,48,49,48,57,48,50,48,50,48,98,48,50,48,50,48,100,48,51,48,51,48,102,48,51,48,51,49,50,48,52,48,52,49,52,48,53,48,52,49,54,48,54,48,53,49,56,48,54,48,53,49,97,48,55,48,54,49,99,48,56,48,55,49,101,48,57,48,55,50,48,48,97,48,56,50,50,48,98,48,57,50,52,48,99,48,57,50,54,48,100,48,97,50,57,48,101,48,98,50,98,49,48,48,98,50,100,49,49,48,99,50,102,49,50,48,100,51,49,49,51,48,100,51,52,49,52,48,101,51,54,49,53,48,101,51,56,49,54,48,102,51,98,49,56,48,102,51,100,49,57,49,48,51,102,49,97,49,48,52,50,49,99,49,48,52,52,49,100,49,49,52,55,49,101,49,49,52,57,50,48,49,49,52,98,50,49,49,49,52,101,50,50,49,49,53,48,50,52,49,50,53,51,50,53,49,50,53,53,50,55,49,50,53,56,50,57,49,49,53,97,50,97,49,49,53,99,50,99,49,49,53,102,50,100,49,49,54,49,50,102,49,49,54,51,51,49,49,49,54,53,51,51,49,48,54,55,51,52,49,48,54,57,51,54,49,48,54,98,51,56,49,48,54,99,51,57,48,102,54,101,51,98,48,102,55,48,51,100,48,102,55,49,51,102,48,102,55,50,52,48,48,102,55,52,52,50,48,102,55,53,52,52,48,102,55,54,52,53,49,48,55,55,52,55,49,48,55,56,52,57,49,48,55,56,52,97,49,48,55,57,52,99,49,49,55,97,52,101,49,49,55,98,52,102,49,50,55,98,53,49,49,50,55,99,53,50,49,51,55,99,53,52,49,51,55,100,53,54,49,52,55,100,53,55,49,53,55,101,53,57,49,53,55,101,53,97,49,54,55,101,53,99,49,54,55,102,53,100,49,55,55,102,53,102,49,56,55,102,54,48,49,56,56,48,54,50,49,57,56,48,54,52,49,97,56,48,54,53,49,97,56,48,54,55,49,98,56,48,54,56,49,99,56,49,54,97,49,99,56,49,54,98,49,100,56,49,54,100,49,100,56,49,54,101,49,101,56,49,55,48,49,102,56,49,55,50,49,102,56,49,55,51,50,48,56,49,55,53,50,49,56,49,55,54,50,49,56,49,55,56,50,50,56,49,55,57,50,50,56,50,55,98,50,51,56,50,55,99,50,51,56,50,55,101,50,52,56,50,56,48,50,53,56,50,56,49,50,53,56,49,56,51,50,54,56,49,56,52,50,54,56,49,56,54,50,55,56,49,56,56,50,55,56,49,56,57,50,56,56,49,56,98,50,57,56,49,56,99,50,57,56,49,56,101,50,97,56,49,57,48,50,97,56,49,57,49,50,98,56,49,57,51,50,98,56,48,57,52,50,99,56,48,57,54,50,99,56,48,57,56,50,100,56,48,57,57,50,100,56,48,57,98,50,101,55,102,57,99,50,101,55,102,57,101,50,102,55,102,97,48,50,102,55,102,97,49,51,48,55,101,97,51,51,48,55,101,97,53,51,49,55,101,97,54,51,49,55,100,97,56,51,50,55,100,97,97,51,51,55,100,97,98,51,51,55,99,97,100,51,52,55,99,97,101,51,52,55,98,98,48,51,53,55,98,98,50,51,53,55,98,98,51,51,54,55,97,98,53,51,54,55,97,98,55,51,55,55,57,98,56,51,55,55,57,98,97,51,56,55,56,98,99,51,57,55,56,98,100,51,57,55,55,98,102,51,97,55,55,99,48,51,97,55,54,99,50,51,98,55,53,99,52,51,99,55,53,99,53,51,99,55,52,99,55,51,100,55,51,99,56,51,101,55,51,99,97,51,101,55,50,99,99,51,102,55,49,99,100,52,48,55,49,99,102,52,48,55,48,100,48,52,49,54,102,100,50,52,50,54,102,100,51,52,51,54,101,100,53,52,52,54,100,100,54,52,53,54,99,100,56,52,53,54,99,100,57,52,54,54,98,100,98,52,55,54,97,100,99,52,56,54,57,100,101,52,57,54,56,100,102,52,97,54,56,101,48,52,99,54,55,101,50,52,100,54,54,101,51,52,101,54,53,101,52,52,102,54,52,101,53,53,48,54,52,101,55,53,50,54,51,101,56,53,51,54,50,101,57,53,52,54,50,101,97,53,54,54,49,101,98,53,55,54,48,101,99,53,56,54,48,101,100,53,97,53,102,101,101,53,98,53,101,101,102,53,100,53,101,102,48,53,102,53,101,102,49,54,48,53,100,102,50,54,50,53,100,102,50,54,52,53,99,102,51,54,53,53,99,102,52,54,55,53,99,102,52,54,57,53,99,102,53,54,98,53,99,102,54,54,99,53,99,102,54,54,101,53,99,102,55,55,48,53,99,102,55,55,50,53,99,102,56,55,52,53,99,102,56,55,54,53,99,102,57,55,56,53,100,102,57,55,57,53,100,102,57,55,98,53,100,102,97,55,100,53,101,102,97,55,102,53,101,102,97,56,49,53,102,102,98,56,51,53,102,102,98,56,53,54,48,102,98,56,55,54,49,102,99,56,57,54,49,102,99,56,97,54,50,102,99,56,99,54,51,102,99,56,101,54,52,102,99,57,48,54,53,102,100,57,50,54,54,102,100,57,52,54,55,102,100,57,54,54,56,102,100,57,56,54,57,102,100,57,97,54,97,102,100,57,98,54,98,102,101,57,100,54,99,102,101,57,102,54,100,102,101,97,49,54,101,102,101,97,51,54,102,102,101,97,53,55,49,102,101,97,55,55,50,102,101,97,57,55,51,102,101,97,97,55,52,102,101,97,99,55,54,102,101,97,101,55,55,102,101,98,48,55,56,102,101,98,50,55,97,102,101,98,52,55,98,102,101,98,54,55,99,102,101,98,55,55,101,102,101,98,57,55,102,102,101,98,98,56,49,102,101,98,100,56,50,102,101,98,102,56,52,102,101,99,49,56,53,102,101,99,50,56,55,102,101,99,52,56,56,102,101,99,54,56,97,102,101,99,56,56,99,102,101,99,97,56,100,102,101,99,99,56,102,102,101,99,100,57,48,102,101,99,102,57,50,102,101,100,49,57,52,102,101,100,51,57,53,102,101,100,53,57,55,102,101,100,55,57,57,102,101,100,56,57,97,102,100,100,97,57,99,102,100,100,99,57,101,102,100,100,101,97,48,102,100,101,48,97,49,102,100,101,50,97,51,102,100,101,51,97,53,102,100,101,53,97,55,102,100,101,55,97,57,102,100,101,57,97,97,102,100,101,98,97,99,102,99,101,99,97,101,102,99,101,101,98,48,102,99,102,48,98,50,102,99,102,50,98,52,102,99,102,52,98,54,102,99,102,54,98,56,102,99,102,55,98,57,102,99,102,57,98,98,102,99,102,98,98,100,102,99,102,100,98,102,34,41,41,44,95,121,61,118,121,40,90,118,40,34,48,48,48,48,48,52,48,49,48,48,48,53,48,49,48,49,48,54,48,49,48,49,48,56,48,50,48,49,48,97,48,50,48,50,48,99,48,50,48,50,48,101,48,51,48,50,49,48,48,52,48,51,49,50,48,52,48,51,49,52,48,53,48,52,49,55,48,54,48,52,49,57,48,55,48,53,49,98,48,56,48,53,49,100,48,57,48,54,49,102,48,97,48,55,50,50,48,98,48,55,50,52,48,99,48,56,50,54,48,100,48,56,50,57,48,101,48,57,50,98,49,48,48,57,50,100,49,49,48,97,51,48,49,50,48,97,51,50,49,52,48,98,51,52,49,53,48,98,51,55,49,54,48,98,51,57,49,56,48,99,51,99,49,57,48,99,51,101,49,98,48,99,52,49,49,99,48,99,52,51,49,101,48,99,52,53,49,102,48,99,52,56,50,49,48,99,52,97,50,51,48,99,52,99,50,52,48,99,52,102,50,54,48,99,53,49,50,56,48,98,53,51,50,57,48,98,53,53,50,98,48,98,53,55,50,100,48,98,53,57,50,102,48,97,53,98,51,49,48,97,53,99,51,50,48,97,53,101,51,52,48,97,53,102,51,54,48,57,54,49,51,56,48,57,54,50,51,57,48,57,54,51,51,98,48,57,54,52,51,100,48,57,54,53,51,101,48,57,54,54,52,48,48,97,54,55,52,50,48,97,54,56,52,52,48,97,54,56,52,53,48,97,54,57,52,55,48,98,54,97,52,57,48,98,54,97,52,97,48,99,54,98,52,99,48,99,54,98,52,100,48,100,54,99,52,102,48,100,54,99,53,49,48,101,54,99,53,50,48,101,54,100,53,52,48,102,54,100,53,53,48,102,54,100,53,55,49,48,54,101,53,57,49,48,54,101,53,97,49,49,54,101,53,99,49,50,54,101,53,100,49,50,54,101,53,102,49,51,54,101,54,49,49,51,54,101,54,50,49,52,54,101,54,52,49,53,54,101,54,53,49,53,54,101,54,55,49,54,54,101,54,57,49,54,54,101,54,97,49,55,54,101,54,99,49,56,54,101,54,100,49,56,54,101,54,102,49,57,54,101,55,49,49,57,54,101,55,50,49,97,54,101,55,52,49,97,54,101,55,53,49,98,54,101,55,55,49,99,54,100,55,56,49,99,54,100,55,97,49,100,54,100,55,99,49,100,54,100,55,100,49,101,54,100,55,102,49,101,54,99,56,48,49,102,54,99,56,50,50,48,54,99,56,52,50,48,54,98,56,53,50,49,54,98,56,55,50,49,54,98,56,56,50,50,54,97,56,97,50,50,54,97,56,99,50,51,54,57,56,100,50,51,54,57,56,102,50,52,54,57,57,48,50,53,54,56,57,50,50,53,54,56,57,51,50,54,54,55,57,53,50,54,54,55,57,55,50,55,54,54,57,56,50,55,54,54,57,97,50,56,54,53,57,98,50,57,54,52,57,100,50,57,54,52,57,102,50,97,54,51,97,48,50,97,54,51,97,50,50,98,54,50,97,51,50,99,54,49,97,53,50,99,54,48,97,54,50,100,54,48,97,56,50,101,53,102,97,57,50,101,53,101,97,98,50,102,53,101,97,100,51,48,53,100,97,101,51,48,53,99,98,48,51,49,53,98,98,49,51,50,53,97,98,51,51,50,53,97,98,52,51,51,53,57,98,54,51,52,53,56,98,55,51,53,53,55,98,57,51,53,53,54,98,97,51,54,53,53,98,99,51,55,53,52,98,100,51,56,53,51,98,102,51,57,53,50,99,48,51,97,53,49,99,49,51,97,53,48,99,51,51,98,52,102,99,52,51,99,52,101,99,54,51,100,52,100,99,55,51,101,52,99,99,56,51,102,52,98,99,97,52,48,52,97,99,98,52,49,52,57,99,99,52,50,52,56,99,101,52,51,52,55,99,102,52,52,52,54,100,48,52,53,52,53,100,50,52,54,52,52,100,51,52,55,52,51,100,52,52,56,52,50,100,53,52,97,52,49,100,55,52,98,51,102,100,56,52,99,51,101,100,57,52,100,51,100,100,97,52,101,51,99,100,98,53,48,51,98,100,100,53,49,51,97,100,101,53,50,51,56,100,102,53,51,51,55,101,48,53,53,51,54,101,49,53,54,51,53,101,50,53,55,51,52,101,51,53,57,51,51,101,52,53,97,51,49,101,53,53,99,51,48,101,54,53,100,50,102,101,55,53,101,50,101,101,56,54,48,50,100,101,57,54,49,50,98,101,97,54,51,50,97,101,98,54,52,50,57,101,98,54,54,50,56,101,99,54,55,50,54,101,100,54,57,50,53,101,101,54,97,50,52,101,102,54,99,50,51,101,102,54,101,50,49,102,48,54,102,50,48,102,49,55,49,49,102,102,49,55,51,49,100,102,50,55,52,49,99,102,51,55,54,49,98,102,51,55,56,49,57,102,52,55,57,49,56,102,53,55,98,49,55,102,53,55,100,49,53,102,54,55,101,49,52,102,54,56,48,49,51,102,55,56,50,49,50,102,55,56,52,49,48,102,56,56,53,48,102,102,56,56,55,48,101,102,56,56,57,48,99,102,57,56,98,48,98,102,57,56,99,48,97,102,57,56,101,48,57,102,97,57,48,48,56,102,97,57,50,48,55,102,97,57,52,48,55,102,98,57,54,48,54,102,98,57,55,48,54,102,98,57,57,48,54,102,98,57,98,48,54,102,98,57,100,48,55,102,99,57,102,48,55,102,99,97,49,48,56,102,99,97,51,48,57,102,99,97,53,48,97,102,99,97,54,48,99,102,99,97,56,48,100,102,99,97,97,48,102,102,99,97,99,49,49,102,99,97,101,49,50,102,99,98,48,49,52,102,99,98,50,49,54,102,99,98,52,49,56,102,98,98,54,49,97,102,98,98,56,49,100,102,98,98,97,49,102,102,98,98,99,50,49,102,98,98,101,50,51,102,97,99,48,50,54,102,97,99,50,50,56,102,97,99,52,50,97,102,97,99,54,50,100,102,57,99,55,50,102,102,57,99,57,51,50,102,57,99,98,51,53,102,56,99,100,51,55,102,56,99,102,51,97,102,55,100,49,51,100,102,55,100,51,52,48,102,54,100,53,52,51,102,54,100,55,52,54,102,53,100,57,52,57,102,53,100,98,52,99,102,52,100,100,52,102,102,52,100,102,53,51,102,52,101,49,53,54,102,51,101,51,53,97,102,51,101,53,53,100,102,50,101,54,54,49,102,50,101,56,54,53,102,50,101,97,54,57,102,49,101,99,54,100,102,49,101,100,55,49,102,49,101,102,55,53,102,49,102,49,55,57,102,50,102,50,55,100,102,50,102,52,56,50,102,51,102,53,56,54,102,51,102,54,56,97,102,52,102,56,56,101,102,53,102,57,57,50,102,54,102,97,57,54,102,56,102,98,57,97,102,57,102,99,57,100,102,97,102,100,97,49,102,99,102,102,97,52,34,41,41,44,98,121,61,118,121,40,90,118,40,34,48,100,48,56,56,55,49,48,48,55,56,56,49,51,48,55,56,57,49,54,48,55,56,97,49,57,48,54,56,99,49,98,48,54,56,100,49,100,48,54,56,101,50,48,48,54,56,102,50,50,48,54,57,48,50,52,48,54,57,49,50,54,48,53,57,49,50,56,48,53,57,50,50,97,48,53,57,51,50,99,48,53,57,52,50,101,48,53,57,53,50,102,48,53,57,54,51,49,48,53,57,55,51,51,48,53,57,55,51,53,48,52,57,56,51,55,48,52,57,57,51,56,48,52,57,97,51,97,48,52,57,97,51,99,48,52,57,98,51,101,48,52,57,99,51,102,48,52,57,99,52,49,48,52,57,100,52,51,48,51,57,101,52,52,48,51,57,101,52,54,48,51,57,102,52,56,48,51,57,102,52,57,48,51,97,48,52,98,48,51,97,49,52,99,48,50,97,49,52,101,48,50,97,50,53,48,48,50,97,50,53,49,48,50,97,51,53,51,48,50,97,51,53,53,48,50,97,52,53,54,48,49,97,52,53,56,48,49,97,52,53,57,48,49,97,53,53,98,48,49,97,53,53,99,48,49,97,54,53,101,48,49,97,54,54,48,48,49,97,54,54,49,48,48,97,55,54,51,48,48,97,55,54,52,48,48,97,55,54,54,48,48,97,55,54,55,48,48,97,56,54,57,48,48,97,56,54,97,48,48,97,56,54,99,48,48,97,56,54,101,48,48,97,56,54,102,48,48,97,56,55,49,48,48,97,56,55,50,48,49,97,56,55,52,48,49,97,56,55,53,48,49,97,56,55,55,48,49,97,56,55,56,48,49,97,56,55,97,48,50,97,56,55,98,48,50,97,56,55,100,48,51,97,56,55,101,48,51,97,56,56,48,48,52,97,56,56,49,48,52,97,55,56,51,48,53,97,55,56,52,48,53,97,55,56,54,48,54,97,54,56,55,48,55,97,54,56,56,48,56,97,54,56,97,48,57,97,53,56,98,48,97,97,53,56,100,48,98,97,53,56,101,48,99,97,52,56,102,48,100,97,52,57,49,48,101,97,51,57,50,48,102,97,51,57,52,49,48,97,50,57,53,49,49,97,49,57,54,49,51,97,49,57,56,49,52,97,48,57,57,49,53,57,102,57,97,49,54,57,102,57,99,49,55,57,101,57,100,49,56,57,100,57,101,49,57,57,100,97,48,49,97,57,99,97,49,49,98,57,98,97,50,49,100,57,97,97,51,49,101,57,97,97,53,49,102,57,57,97,54,50,48,57,56,97,55,50,49,57,55,97,56,50,50,57,54,97,97,50,51,57,53,97,98,50,52,57,52,97,99,50,54,57,52,97,100,50,55,57,51,97,101,50,56,57,50,98,48,50,57,57,49,98,49,50,97,57,48,98,50,50,98,56,102,98,51,50,99,56,101,98,52,50,101,56,100,98,53,50,102,56,99,98,54,51,48,56,98,98,55,51,49,56,97,98,56,51,50,56,57,98,97,51,51,56,56,98,98,51,52,56,56,98,99,51,53,56,55,98,100,51,55,56,54,98,101,51,56,56,53,98,102,51,57,56,52,99,48,51,97,56,51,99,49,51,98,56,50,99,50,51,99,56,49,99,51,51,100,56,48,99,52,51,101,55,102,99,53,52,48,55,101,99,54,52,49,55,100,99,55,52,50,55,99,99,56,52,51,55,98,99,57,52,52,55,97,99,97,52,53,55,97,99,98,52,54,55,57,99,99,52,55,55,56,99,99,52,57,55,55,99,100,52,97,55,54,99,101,52,98,55,53,99,102,52,99,55,52,100,48,52,100,55,51,100,49,52,101,55,50,100,50,52,102,55,49,100,51,53,49,55,49,100,52,53,50,55,48,100,53,53,51,54,102,100,53,53,52,54,101,100,54,53,53,54,100,100,55,53,54,54,99,100,56,53,55,54,98,100,57,53,56,54,97,100,97,53,97,54,97,100,97,53,98,54,57,100,98,53,99,54,56,100,99,53,100,54,55,100,100,53,101,54,54,100,101,53,102,54,53,100,101,54,49,54,52,100,102,54,50,54,51,101,48,54,51,54,51,101,49,54,52,54,50,101,50,54,53,54,49,101,50,54,54,54,48,101,51,54,56,53,102,101,52,54,57,53,101,101,53,54,97,53,100,101,53,54,98,53,100,101,54,54,99,53,99,101,55,54,101,53,98,101,55,54,102,53,97,101,56,55,48,53,57,101,57,55,49,53,56,101,57,55,50,53,55,101,97,55,52,53,55,101,98,55,53,53,54,101,98,55,54,53,53,101,99,55,55,53,52,101,100,55,57,53,51,101,100,55,97,53,50,101,101,55,98,53,49,101,102,55,99,53,49,101,102,55,101,53,48,102,48,55,102,52,102,102,48,56,48,52,101,102,49,56,49,52,100,102,49,56,51,52,99,102,50,56,52,52,98,102,51,56,53,52,98,102,51,56,55,52,97,102,52,56,56,52,57,102,52,56,57,52,56,102,53,56,98,52,55,102,53,56,99,52,54,102,54,56,100,52,53,102,54,56,102,52,52,102,55,57,48,52,52,102,55,57,49,52,51,102,55,57,51,52,50,102,56,57,52,52,49,102,56,57,53,52,48,102,57,57,55,51,102,102,57,57,56,51,101,102,57,57,97,51,101,102,97,57,98,51,100,102,97,57,99,51,99,102,97,57,101,51,98,102,98,57,102,51,97,102,98,97,49,51,57,102,98,97,50,51,56,102,99,97,51,51,56,102,99,97,53,51,55,102,99,97,54,51,54,102,99,97,56,51,53,102,99,97,57,51,52,102,100,97,98,51,51,102,100,97,99,51,51,102,100,97,101,51,50,102,100,97,102,51,49,102,100,98,49,51,48,102,100,98,50,50,102,102,100,98,52,50,102,102,100,98,53,50,101,102,101,98,55,50,100,102,101,98,56,50,99,102,101,98,97,50,99,102,101,98,98,50,98,102,101,98,100,50,97,102,101,98,101,50,97,102,101,99,48,50,57,102,100,99,50,50,57,102,100,99,51,50,56,102,100,99,53,50,55,102,100,99,54,50,55,102,100,99,56,50,55,102,100,99,97,50,54,102,100,99,98,50,54,102,99,99,100,50,53,102,99,99,101,50,53,102,99,100,48,50,53,102,99,100,50,50,53,102,98,100,51,50,52,102,98,100,53,50,52,102,98,100,55,50,52,102,97,100,56,50,52,102,97,100,97,50,52,102,57,100,99,50,52,102,57,100,100,50,53,102,56,100,102,50,53,102,56,101,49,50,53,102,55,101,50,50,53,102,55,101,52,50,53,102,54,101,54,50,54,102,54,101,56,50,54,102,53,101,57,50,54,102,53,101,98,50,55,102,52,101,100,50,55,102,51,101,101,50,55,102,51,102,48,50,55,102,50,102,50,50,55,102,49,102,52,50,54,102,49,102,53,50,53,102,48,102,55,50,52,102,48,102,57,50,49,34,41,41,59,102,117,110,99,116,105,111,110,32,109,121,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,125,125,118,97,114,32,120,121,61,77,97,116,104,46,97,98,115,44,119,121,61,77,97,116,104,46,97,116,97,110,50,44,77,121,61,77,97,116,104,46,99,111,115,44,78,121,61,77,97,116,104,46,109,97,120,44,84,121,61,77,97,116,104,46,109,105,110,44,65,121,61,77,97,116,104,46,115,105,110,44,83,121,61,77,97,116,104,46,115,113,114,116,44,107,121,61,49,101,45,49,50,44,69,121,61,77,97,116,104,46,80,73,44,67,121,61,69,121,47,50,44,80,121,61,50,42,69,121,59,102,117,110,99,116,105,111,110,32,122,121,40,116,41,123,114,101,116,117,114,110,32,116,62,61,49,63,67,121,58,116,60,61,45,49,63,45,67,121,58,77,97,116,104,46,97,115,105,110,40,116,41,125,102,117,110,99,116,105,111,110,32,82,121,40,116,41,123,114,101,116,117,114,110,32,116,46,105,110,110,101,114,82,97,100,105,117,115,125,102,117,110,99,116,105,111,110,32,68,121,40,116,41,123,114,101,116,117,114,110,32,116,46,111,117,116,101,114,82,97,100,105,117,115,125,102,117,110,99,116,105,111,110,32,113,121,40,116,41,123,114,101,116,117,114,110,32,116,46,115,116,97,114,116,65,110,103,108,101,125,102,117,110,99,116,105,111,110,32,76,121,40,116,41,123,114,101,116,117,114,110,32,116,46,101,110,100,65,110,103,108,101,125,102,117,110,99,116,105,111,110,32,85,121,40,116,41,123,114,101,116,117,114,110,32,116,38,38,116,46,112,97,100,65,110,103,108,101,125,102,117,110,99,116,105,111,110,32,79,121,40,116,44,110,44,101,44,114,44,105,44,111,44,97,41,123,118,97,114,32,117,61,116,45,101,44,99,61,110,45,114,44,102,61,40,97,63,111,58,45,111,41,47,83,121,40,117,42,117,43,99,42,99,41,44,115,61,102,42,99,44,108,61,45,102,42,117,44,104,61,116,43,115,44,100,61,110,43,108,44,112,61,101,43,115,44,118,61,114,43,108,44,103,61,40,104,43,112,41,47,50,44,121,61,40,100,43,118,41,47,50,44,95,61,112,45,104,44,98,61,118,45,100,44,109,61,95,42,95,43,98,42,98,44,120,61,105,45,111,44,119,61,104,42,118,45,112,42,100,44,77,61,40,98,60,48,63,45,49,58,49,41,42,83,121,40,78,121,40,48,44,120,42,120,42,109,45,119,42,119,41,41,44,78,61,40,119,42,98,45,95,42,77,41,47,109,44,84,61,40,45,119,42,95,45,98,42,77,41,47,109,44,65,61,40,119,42,98,43,95,42,77,41,47,109,44,83,61,40,45,119,42,95,43,98,42,77,41,47,109,44,107,61,78,45,103,44,69,61,84,45,121,44,67,61,65,45,103,44,80,61,83,45,121,59,114,101,116,117,114,110,32,107,42,107,43,69,42,69,62,67,42,67,43,80,42,80,38,38,40,78,61,65,44,84,61,83,41,44,123,99,120,58,78,44,99,121,58,84,44,120,48,49,58,45,115,44,121,48,49,58,45,108,44,120,49,49,58,78,42,40,105,47,120,45,49,41,44,121,49,49,58,84,42,40,105,47,120,45,49,41,125,125,102,117,110,99,116,105,111,110,32,66,121,40,116,41,123,116,104,105,115,46,95,99,111,110,116,101,120,116,61,116,125,102,117,110,99,116,105,111,110,32,70,121,40,116,41,123,114,101,116,117,114,110,32,110,101,119,32,66,121,40,116,41,125,102,117,110,99,116,105,111,110,32,89,121,40,116,41,123,114,101,116,117,114,110,32,116,91,48,93,125,102,117,110,99,116,105,111,110,32,73,121,40,116,41,123,114,101,116,117,114,110,32,116,91,49,93,125,102,117,110,99,116,105,111,110,32,72,121,40,41,123,118,97,114,32,116,61,89,121,44,110,61,73,121,44,101,61,109,121,40,33,48,41,44,114,61,110,117,108,108,44,105,61,70,121,44,111,61,110,117,108,108,59,102,117,110,99,116,105,111,110,32,97,40,97,41,123,118,97,114,32,117,44,99,44,102,44,115,61,97,46,108,101,110,103,116,104,44,108,61,33,49,59,102,111,114,40,110,117,108,108,61,61,114,38,38,40,111,61,105,40,102,61,110,111,40,41,41,41,44,117,61,48,59,117,60,61,115,59,43,43,117,41,33,40,117,60,115,38,38,101,40,99,61,97,91,117,93,44,117,44,97,41,41,61,61,61,108,38,38,40,40,108,61,33,108,41,63,111,46,108,105,110,101,83,116,97,114,116,40,41,58,111,46,108,105,110,101,69,110,100,40,41,41,44,108,38,38,111,46,112,111,105,110,116,40,43,116,40,99,44,117,44,97,41,44,43,110,40,99,44,117,44,97,41,41,59,105,102,40,102,41,114,101,116,117,114,110,32,111,61,110,117,108,108,44,102,43,34,34,124,124,110,117,108,108,125,114,101,116,117,114,110,32,97,46,120,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,116,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,110,63,110,58,109,121,40,43,110,41,44,97,41,58,116,125,44,97,46,121,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,110,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,109,121,40,43,116,41,44,97,41,58,110,125,44,97,46,100,101,102,105,110,101,100,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,101,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,109,121,40,33,33,116,41,44,97,41,58,101,125,44,97,46,99,117,114,118,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,105,61,116,44,110,117,108,108,33,61,114,38,38,40,111,61,105,40,114,41,41,44,97,41,58,105,125,44,97,46,99,111,110,116,101,120,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,110,117,108,108,61,61,116,63,114,61,111,61,110,117,108,108,58,111,61,105,40,114,61,116,41,44,97,41,58,114,125,44,97,125,102,117,110,99,116,105,111,110,32,106,121,40,41,123,118,97,114,32,116,61,89,121,44,110,61,110,117,108,108,44,101,61,109,121,40,48,41,44,114,61,73,121,44,105,61,109,121,40,33,48,41,44,111,61,110,117,108,108,44,97,61,70,121,44,117,61,110,117,108,108,59,102,117,110,99,116,105,111,110,32,99,40,99,41,123,118,97,114,32,102,44,115,44,108,44,104,44,100,44,112,61,99,46,108,101,110,103,116,104,44,118,61,33,49,44,103,61,110,101,119,32,65,114,114,97,121,40,112,41,44,121,61,110,101,119,32,65,114,114,97,121,40,112,41,59,102,111,114,40,110,117,108,108,61,61,111,38,38,40,117,61,97,40,100,61,110,111,40,41,41,41,44,102,61,48,59,102,60,61,112,59,43,43,102,41,123,105,102,40,33,40,102,60,112,38,38,105,40,104,61,99,91,102,93,44,102,44,99,41,41,61,61,61,118,41,105,102,40,118,61,33,118,41,115,61,102,44,117,46,97,114,101,97,83,116,97,114,116,40,41,44,117,46,108,105,110,101,83,116,97,114,116,40,41,59,101,108,115,101,123,102,111,114,40,117,46,108,105,110,101,69,110,100,40,41,44,117,46,108,105,110,101,83,116,97,114,116,40,41,44,108,61,102,45,49,59,108,62,61,115,59,45,45,108,41,117,46,112,111,105,110,116,40,103,91,108,93,44,121,91,108,93,41,59,117,46,108,105,110,101,69,110,100,40,41,44,117,46,97,114,101,97,69,110,100,40,41,125,118,38,38,40,103,91,102,93,61,43,116,40,104,44,102,44,99,41,44,121,91,102,93,61,43,101,40,104,44,102,44,99,41,44,117,46,112,111,105,110,116,40,110,63,43,110,40,104,44,102,44,99,41,58,103,91,102,93,44,114,63,43,114,40,104,44,102,44,99,41,58,121,91,102,93,41,41,125,105,102,40,100,41,114,101,116,117,114,110,32,117,61,110,117,108,108,44,100,43,34,34,124,124,110,117,108,108,125,102,117,110,99,116,105,111,110,32,102,40,41,123,114,101,116,117,114,110,32,72,121,40,41,46,100,101,102,105,110,101,100,40,105,41,46,99,117,114,118,101,40,97,41,46,99,111,110,116,101,120,116,40,111,41,125,114,101,116,117,114,110,32,99,46,120,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,116,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,101,63,101,58,109,121,40,43,101,41,44,110,61,110,117,108,108,44,99,41,58,116,125,44,99,46,120,48,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,116,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,110,63,110,58,109,121,40,43,110,41,44,99,41,58,116,125,44,99,46,120,49,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,110,61,110,117,108,108,61,61,116,63,110,117,108,108,58,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,109,121,40,43,116,41,44,99,41,58,110,125,44,99,46,121,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,101,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,109,121,40,43,116,41,44,114,61,110,117,108,108,44,99,41,58,101,125,44,99,46,121,48,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,101,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,109,121,40,43,116,41,44,99,41,58,101,125,44,99,46,121,49,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,114,61,110,117,108,108,61,61,116,63,110,117,108,108,58,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,109,121,40,43,116,41,44,99,41,58,114,125,44,99,46,108,105,110,101,88,48,61,99,46,108,105,110,101,89,48,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,102,40,41,46,120,40,116,41,46,121,40,101,41,125,44,99,46,108,105,110,101,89,49,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,102,40,41,46,120,40,116,41,46,121,40,114,41,125,44,99,46,108,105,110,101,88,49,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,102,40,41,46,120,40,110,41,46,121,40,101,41,125,44,99,46,100,101,102,105,110,101,100,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,105,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,109,121,40,33,33,116,41,44,99,41,58,105,125,44,99,46,99,117,114,118,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,97,61,116,44,110,117,108,108,33,61,111,38,38,40,117,61,97,40,111,41,41,44,99,41,58,97,125,44,99,46,99,111,110,116,101,120,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,110,117,108,108,61,61,116,63,111,61,117,61,110,117,108,108,58,117,61,97,40,111,61,116,41,44,99,41,58,111,125,44,99,125,102,117,110,99,116,105,111,110,32,88,121,40,116,44,110,41,123,114,101,116,117,114,110,32,110,60,116,63,45,49,58,110,62,116,63,49,58,110,62,61,116,63,48,58,78,97,78,125,102,117,110,99,116,105,111,110,32,86,121,40,116,41,123,114,101,116,117,114,110,32,116,125,66,121,46,112,114,111,116,111,116,121,112,101,61,123,97,114,101,97,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,108,105,110,101,61,48,125,44,97,114,101,97,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,108,105,110,101,61,78,97,78,125,44,108,105,110,101,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,112,111,105,110,116,61,48,125,44,108,105,110,101,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,40,116,104,105,115,46,95,108,105,110,101,124,124,48,33,61,61,116,104,105,115,46,95,108,105,110,101,38,38,49,61,61,61,116,104,105,115,46,95,112,111,105,110,116,41,38,38,116,104,105,115,46,95,99,111,110,116,101,120,116,46,99,108,111,115,101,80,97,116,104,40,41,44,116,104,105,115,46,95,108,105,110,101,61,49,45,116,104,105,115,46,95,108,105,110,101,125,44,112,111,105,110,116,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,115,119,105,116,99,104,40,116,61,43,116,44,110,61,43,110,44,116,104,105,115,46,95,112,111,105,110,116,41,123,99,97,115,101,32,48,58,116,104,105,115,46,95,112,111,105,110,116,61,49,44,116,104,105,115,46,95,108,105,110,101,63,116,104,105,115,46,95,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,116,44,110,41,58,116,104,105,115,46,95,99,111,110,116,101,120,116,46,109,111,118,101,84,111,40,116,44,110,41,59,98,114,101,97,107,59,99,97,115,101,32,49,58,116,104,105,115,46,95,112,111,105,110,116,61,50,59,100,101,102,97,117,108,116,58,116,104,105,115,46,95,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,116,44,110,41,125,125,125,59,118,97,114,32,71,121,61,87,121,40,70,121,41,59,102,117,110,99,116,105,111,110,32,36,121,40,116,41,123,116,104,105,115,46,95,99,117,114,118,101,61,116,125,102,117,110,99,116,105,111,110,32,87,121,40,116,41,123,102,117,110,99,116,105,111,110,32,110,40,110,41,123,114,101,116,117,114,110,32,110,101,119,32,36,121,40,116,40,110,41,41,125,114,101,116,117,114,110,32,110,46,95,99,117,114,118,101,61,116,44,110,125,102,117,110,99,116,105,111,110,32,90,121,40,116,41,123,118,97,114,32,110,61,116,46,99,117,114,118,101,59,114,101,116,117,114,110,32,116,46,97,110,103,108,101,61,116,46,120,44,100,101,108,101,116,101,32,116,46,120,44,116,46,114,97,100,105,117,115,61,116,46,121,44,100,101,108,101,116,101,32,116,46,121,44,116,46,99,117,114,118,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,110,40,87,121,40,116,41,41,58,110,40,41,46,95,99,117,114,118,101,125,44,116,125,102,117,110,99,116,105,111,110,32,81,121,40,41,123,114,101,116,117,114,110,32,90,121,40,72,121,40,41,46,99,117,114,118,101,40,71,121,41,41,125,102,117,110,99,116,105,111,110,32,75,121,40,41,123,118,97,114,32,116,61,106,121,40,41,46,99,117,114,118,101,40,71,121,41,44,110,61,116,46,99,117,114,118,101,44,101,61,116,46,108,105,110,101,88,48,44,114,61,116,46,108,105,110,101,88,49,44,105,61,116,46,108,105,110,101,89,48,44,111,61,116,46,108,105,110,101,89,49,59,114,101,116,117,114,110,32,116,46,97,110,103,108,101,61,116,46,120,44,100,101,108,101,116,101,32,116,46,120,44,116,46,115,116,97,114,116,65,110,103,108,101,61,116,46,120,48,44,100,101,108,101,116,101,32,116,46,120,48,44,116,46,101,110,100,65,110,103,108,101,61,116,46,120,49,44,100,101,108,101,116,101,32,116,46,120,49,44,116,46,114,97,100,105,117,115,61,116,46,121,44,100,101,108,101,116,101,32,116,46,121,44,116,46,105,110,110,101,114,82,97,100,105,117,115,61,116,46,121,48,44,100,101,108,101,116,101,32,116,46,121,48,44,116,46,111,117,116,101,114,82,97,100,105,117,115,61,116,46,121,49,44,100,101,108,101,116,101,32,116,46,121,49,44,116,46,108,105,110,101,83,116,97,114,116,65,110,103,108,101,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,90,121,40,101,40,41,41,125,44,100,101,108,101,116,101,32,116,46,108,105,110,101,88,48,44,116,46,108,105,110,101,69,110,100,65,110,103,108,101,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,90,121,40,114,40,41,41,125,44,100,101,108,101,116,101,32,116,46,108,105,110,101,88,49,44,116,46,108,105,110,101,73,110,110,101,114,82,97,100,105,117,115,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,90,121,40,105,40,41,41,125,44,100,101,108,101,116,101,32,116,46,108,105,110,101,89,48,44,116,46,108,105,110,101,79,117,116,101,114,82,97,100,105,117,115,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,90,121,40,111,40,41,41,125,44,100,101,108,101,116,101,32,116,46,108,105,110,101,89,49,44,116,46,99,117,114,118,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,110,40,87,121,40,116,41,41,58,110,40,41,46,95,99,117,114,118,101,125,44,116,125,102,117,110,99,116,105,111,110,32,74,121,40,116,44,110,41,123,114,101,116,117,114,110,91,40,110,61,43,110,41,42,77,97,116,104,46,99,111,115,40,116,45,61,77,97,116,104,46,80,73,47,50,41,44,110,42,77,97,116,104,46,115,105,110,40,116,41,93,125,36,121,46,112,114,111,116,111,116,121,112,101,61,123,97,114,101,97,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,99,117,114,118,101,46,97,114,101,97,83,116,97,114,116,40,41,125,44,97,114,101,97,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,99,117,114,118,101,46,97,114,101,97,69,110,100,40,41,125,44,108,105,110,101,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,99,117,114,118,101,46,108,105,110,101,83,116,97,114,116,40,41,125,44,108,105,110,101,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,99,117,114,118,101,46,108,105,110,101,69,110,100,40,41,125,44,112,111,105,110,116,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,116,104,105,115,46,95,99,117,114,118,101,46,112,111,105,110,116,40,110,42,77,97,116,104,46,115,105,110,40,116,41,44,110,42,45,77,97,116,104,46,99,111,115,40,116,41,41,125,125,59,118,97,114,32,116,95,61,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,115,108,105,99,101,59,102,117,110,99,116,105,111,110,32,110,95,40,116,41,123,114,101,116,117,114,110,32,116,46,115,111,117,114,99,101,125,102,117,110,99,116,105,111,110,32,101,95,40,116,41,123,114,101,116,117,114,110,32,116,46,116,97,114,103,101,116,125,102,117,110,99,116,105,111,110,32,114,95,40,116,41,123,118,97,114,32,110,61,110,95,44,101,61,101,95,44,114,61,89,121,44,105,61,73,121,44,111,61,110,117,108,108,59,102,117,110,99,116,105,111,110,32,97,40,41,123,118,97,114,32,97,44,117,61,116,95,46,99,97,108,108,40,97,114,103,117,109,101,110,116,115,41,44,99,61,110,46,97,112,112,108,121,40,116,104,105,115,44,117,41,44,102,61,101,46,97,112,112,108,121,40,116,104,105,115,44,117,41,59,105,102,40,111,124,124,40,111,61,97,61,110,111,40,41,41,44,116,40,111,44,43,114,46,97,112,112,108,121,40,116,104,105,115,44,40,117,91,48,93,61,99,44,117,41,41,44,43,105,46,97,112,112,108,121,40,116,104,105,115,44,117,41,44,43,114,46,97,112,112,108,121,40,116,104,105,115,44,40,117,91,48,93,61,102,44,117,41,41,44,43,105,46,97,112,112,108,121,40,116,104,105,115,44,117,41,41,44,97,41,114,101,116,117,114,110,32,111,61,110,117,108,108,44,97,43,34,34,124,124,110,117,108,108,125,114,101,116,117,114,110,32,97,46,115,111,117,114,99,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,110,61,116,44,97,41,58,110,125,44,97,46,116,97,114,103,101,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,101,61,116,44,97,41,58,101,125,44,97,46,120,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,114,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,109,121,40,43,116,41,44,97,41,58,114,125,44,97,46,121,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,105,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,109,121,40,43,116,41,44,97,41,58,105,125,44,97,46,99,111,110,116,101,120,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,111,61,110,117,108,108,61,61,116,63,110,117,108,108,58,116,44,97,41,58,111,125,44,97,125,102,117,110,99,116,105,111,110,32,105,95,40,116,44,110,44,101,44,114,44,105,41,123,116,46,109,111,118,101,84,111,40,110,44,101,41,44,116,46,98,101,122,105,101,114,67,117,114,118,101,84,111,40,110,61,40,110,43,114,41,47,50,44,101,44,110,44,105,44,114,44,105,41,125,102,117,110,99,116,105,111,110,32,111,95,40,116,44,110,44,101,44,114,44,105,41,123,116,46,109,111,118,101,84,111,40,110,44,101,41,44,116,46,98,101,122,105,101,114,67,117,114,118,101,84,111,40,110,44,101,61,40,101,43,105,41,47,50,44,114,44,101,44,114,44,105,41,125,102,117,110,99,116,105,111,110,32,97,95,40,116,44,110,44,101,44,114,44,105,41,123,118,97,114,32,111,61,74,121,40,110,44,101,41,44,97,61,74,121,40,110,44,101,61,40,101,43,105,41,47,50,41,44,117,61,74,121,40,114,44,101,41,44,99,61,74,121,40,114,44,105,41,59,116,46,109,111,118,101,84,111,40,111,91,48,93,44,111,91,49,93,41,44,116,46,98,101,122,105,101,114,67,117,114,118,101,84,111,40,97,91,48,93,44,97,91,49,93,44,117,91,48,93,44,117,91,49,93,44,99,91,48,93,44,99,91,49,93,41,125,118,97,114,32,117,95,61,123,100,114,97,119,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,61,77,97,116,104,46,115,113,114,116,40,110,47,69,121,41,59,116,46,109,111,118,101,84,111,40,101,44,48,41,44,116,46,97,114,99,40,48,44,48,44,101,44,48,44,80,121,41,125,125,44,99,95,61,123,100,114,97,119,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,61,77,97,116,104,46,115,113,114,116,40,110,47,53,41,47,50,59,116,46,109,111,118,101,84,111,40,45,51,42,101,44,45,101,41,44,116,46,108,105,110,101,84,111,40,45,101,44,45,101,41,44,116,46,108,105,110,101,84,111,40,45,101,44,45,51,42,101,41,44,116,46,108,105,110,101,84,111,40,101,44,45,51,42,101,41,44,116,46,108,105,110,101,84,111,40,101,44,45,101,41,44,116,46,108,105,110,101,84,111,40,51,42,101,44,45,101,41,44,116,46,108,105,110,101,84,111,40,51,42,101,44,101,41,44,116,46,108,105,110,101,84,111,40,101,44,101,41,44,116,46,108,105,110,101,84,111,40,101,44,51,42,101,41,44,116,46,108,105,110,101,84,111,40,45,101,44,51,42,101,41,44,116,46,108,105,110,101,84,111,40,45,101,44,101,41,44,116,46,108,105,110,101,84,111,40,45,51,42,101,44,101,41,44,116,46,99,108,111,115,101,80,97,116,104,40,41,125,125,44,102,95,61,77,97,116,104,46,115,113,114,116,40,49,47,51,41,44,115,95,61,50,42,102,95,44,108,95,61,123,100,114,97,119,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,61,77,97,116,104,46,115,113,114,116,40,110,47,115,95,41,44,114,61,101,42,102,95,59,116,46,109,111,118,101,84,111,40,48,44,45,101,41,44,116,46,108,105,110,101,84,111,40,114,44,48,41,44,116,46,108,105,110,101,84,111,40,48,44,101,41,44,116,46,108,105,110,101,84,111,40,45,114,44,48,41,44,116,46,99,108,111,115,101,80,97,116,104,40,41,125,125,44,104,95,61,77,97,116,104,46,115,105,110,40,69,121,47,49,48,41,47,77,97,116,104,46,115,105,110,40,55,42,69,121,47,49,48,41,44,100,95,61,77,97,116,104,46,115,105,110,40,80,121,47,49,48,41,42,104,95,44,112,95,61,45,77,97,116,104,46,99,111,115,40,80,121,47,49,48,41,42,104,95,44,118,95,61,123,100,114,97,119,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,61,77,97,116,104,46,115,113,114,116,40,46,56,57,48,56,49,51,48,57,49,53,50,57,50,56,53,50,42,110,41,44,114,61,100,95,42,101,44,105,61,112,95,42,101,59,116,46,109,111,118,101,84,111,40,48,44,45,101,41,44,116,46,108,105,110,101,84,111,40,114,44,105,41,59,102,111,114,40,118,97,114,32,111,61,49,59,111,60,53,59,43,43,111,41,123,118,97,114,32,97,61,80,121,42,111,47,53,44,117,61,77,97,116,104,46,99,111,115,40,97,41,44,99,61,77,97,116,104,46,115,105,110,40,97,41,59,116,46,108,105,110,101,84,111,40,99,42,101,44,45,117,42,101,41,44,116,46,108,105,110,101,84,111,40,117,42,114,45,99,42,105,44,99,42,114,43,117,42,105,41,125,116,46,99,108,111,115,101,80,97,116,104,40,41,125,125,44,103,95,61,123,100,114,97,119,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,61,77,97,116,104,46,115,113,114,116,40,110,41,44,114,61,45,101,47,50,59,116,46,114,101,99,116,40,114,44,114,44,101,44,101,41,125,125,44,121,95,61,77,97,116,104,46,115,113,114,116,40,51,41,44,95,95,61,123,100,114,97,119,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,61,45,77,97,116,104,46,115,113,114,116,40,110,47,40,51,42,121,95,41,41,59,116,46,109,111,118,101,84,111,40,48,44,50,42,101,41,44,116,46,108,105,110,101,84,111,40,45,121,95,42,101,44,45,101,41,44,116,46,108,105,110,101,84,111,40,121,95,42,101,44,45,101,41,44,116,46,99,108,111,115,101,80,97,116,104,40,41,125,125,44,98,95,61,77,97,116,104,46,115,113,114,116,40,51,41,47,50,44,109,95,61,49,47,77,97,116,104,46,115,113,114,116,40,49,50,41,44,120,95,61,51,42,40,109,95,47,50,43,49,41,44,119,95,61,123,100,114,97,119,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,61,77,97,116,104,46,115,113,114,116,40,110,47,120,95,41,44,114,61,101,47,50,44,105,61,101,42,109,95,44,111,61,114,44,97,61,101,42,109,95,43,101,44,117,61,45,111,44,99,61,97,59,116,46,109,111,118,101,84,111,40,114,44,105,41,44,116,46,108,105,110,101,84,111,40,111,44,97,41,44,116,46,108,105,110,101,84,111,40,117,44,99,41,44,116,46,108,105,110,101,84,111,40,45,46,53,42,114,45,98,95,42,105,44,98,95,42,114,43,45,46,53,42,105,41,44,116,46,108,105,110,101,84,111,40,45,46,53,42,111,45,98,95,42,97,44,98,95,42,111,43,45,46,53,42,97,41,44,116,46,108,105,110,101,84,111,40,45,46,53,42,117,45,98,95,42,99,44,98,95,42,117,43,45,46,53,42,99,41,44,116,46,108,105,110,101,84,111,40,45,46,53,42,114,43,98,95,42,105,44,45,46,53,42,105,45,98,95,42,114,41,44,116,46,108,105,110,101,84,111,40,45,46,53,42,111,43,98,95,42,97,44,45,46,53,42,97,45,98,95,42,111,41,44,116,46,108,105,110,101,84,111,40,45,46,53,42,117,43,98,95,42,99,44,45,46,53,42,99,45,98,95,42,117,41,44,116,46,99,108,111,115,101,80,97,116,104,40,41,125,125,44,77,95,61,91,117,95,44,99,95,44,108,95,44,103,95,44,118,95,44,95,95,44,119,95,93,59,102,117,110,99,116,105,111,110,32,78,95,40,41,123,125,102,117,110,99,116,105,111,110,32,84,95,40,116,44,110,44,101,41,123,116,46,95,99,111,110,116,101,120,116,46,98,101,122,105,101,114,67,117,114,118,101,84,111,40,40,50,42,116,46,95,120,48,43,116,46,95,120,49,41,47,51,44,40,50,42,116,46,95,121,48,43,116,46,95,121,49,41,47,51,44,40,116,46,95,120,48,43,50,42,116,46,95,120,49,41,47,51,44,40,116,46,95,121,48,43,50,42,116,46,95,121,49,41,47,51,44,40,116,46,95,120,48,43,52,42,116,46,95,120,49,43,110,41,47,54,44,40,116,46,95,121,48,43,52,42,116,46,95,121,49,43,101,41,47,54,41,125,102,117,110,99,116,105,111,110,32,65,95,40,116,41,123,116,104,105,115,46,95,99,111,110,116,101,120,116,61,116,125,102,117,110,99,116,105,111,110,32,83,95,40,116,41,123,116,104,105,115,46,95,99,111,110,116,101,120,116,61,116,125,102,117,110,99,116,105,111,110,32,107,95,40,116,41,123,116,104,105,115,46,95,99,111,110,116,101,120,116,61,116,125,102,117,110,99,116,105,111,110,32,69,95,40,116,44,110,41,123,116,104,105,115,46,95,98,97,115,105,115,61,110,101,119,32,65,95,40,116,41,44,116,104,105,115,46,95,98,101,116,97,61,110,125,65,95,46,112,114,111,116,111,116,121,112,101,61,123,97,114,101,97,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,108,105,110,101,61,48,125,44,97,114,101,97,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,108,105,110,101,61,78,97,78,125,44,108,105,110,101,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,120,48,61,116,104,105,115,46,95,120,49,61,116,104,105,115,46,95,121,48,61,116,104,105,115,46,95,121,49,61,78,97,78,44,116,104,105,115,46,95,112,111,105,110,116,61,48,125,44,108,105,110,101,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,115,119,105,116,99,104,40,116,104,105,115,46,95,112,111,105,110,116,41,123,99,97,115,101,32,51,58,84,95,40,116,104,105,115,44,116,104,105,115,46,95,120,49,44,116,104,105,115,46,95,121,49,41,59,99,97,115,101,32,50,58,116,104,105,115,46,95,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,116,104,105,115,46,95,120,49,44,116,104,105,115,46,95,121,49,41,125,40,116,104,105,115,46,95,108,105,110,101,124,124,48,33,61,61,116,104,105,115,46,95,108,105,110,101,38,38,49,61,61,61,116,104,105,115,46,95,112,111,105,110,116,41,38,38,116,104,105,115,46,95,99,111,110,116,101,120,116,46,99,108,111,115,101,80,97,116,104,40,41,44,116,104,105,115,46,95,108,105,110,101,61,49,45,116,104,105,115,46,95,108,105,110,101,125,44,112,111,105,110,116,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,115,119,105,116,99,104,40,116,61,43,116,44,110,61,43,110,44,116,104,105,115,46,95,112,111,105,110,116,41,123,99,97,115,101,32,48,58,116,104,105,115,46,95,112,111,105,110,116,61,49,44,116,104,105,115,46,95,108,105,110,101,63,116,104,105,115,46,95,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,116,44,110,41,58,116,104,105,115,46,95,99,111,110,116,101,120,116,46,109,111,118,101,84,111,40,116,44,110,41,59,98,114,101,97,107,59,99,97,115,101,32,49,58,116,104,105,115,46,95,112,111,105,110,116,61,50,59,98,114,101,97,107,59,99,97,115,101,32,50,58,116,104,105,115,46,95,112,111,105,110,116,61,51,44,116,104,105,115,46,95,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,40,53,42,116,104,105,115,46,95,120,48,43,116,104,105,115,46,95,120,49,41,47,54,44,40,53,42,116,104,105,115,46,95,121,48,43,116,104,105,115,46,95,121,49,41,47,54,41,59,100,101,102,97,117,108,116,58,84,95,40,116,104,105,115,44,116,44,110,41,125,116,104,105,115,46,95,120,48,61,116,104,105,115,46,95,120,49,44,116,104,105,115,46,95,120,49,61,116,44,116,104,105,115,46,95,121,48,61,116,104,105,115,46,95,121,49,44,116,104,105,115,46,95,121,49,61,110,125,125,44,83,95,46,112,114,111,116,111,116,121,112,101,61,123,97,114,101,97,83,116,97,114,116,58,78,95,44,97,114,101,97,69,110,100,58,78,95,44,108,105,110,101,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,120,48,61,116,104,105,115,46,95,120,49,61,116,104,105,115,46,95,120,50,61,116,104,105,115,46,95,120,51,61,116,104,105,115,46,95,120,52,61,116,104,105,115,46,95,121,48,61,116,104,105,115,46,95,121,49,61,116,104,105,115,46,95,121,50,61,116,104,105,115,46,95,121,51,61,116,104,105,115,46,95,121,52,61,78,97,78,44,116,104,105,115,46,95,112,111,105,110,116,61,48,125,44,108,105,110,101,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,115,119,105,116,99,104,40,116,104,105,115,46,95,112,111,105,110,116,41,123,99,97,115,101,32,49,58,116,104,105,115,46,95,99,111,110,116,101,120,116,46,109,111,118,101,84,111,40,116,104,105,115,46,95,120,50,44,116,104,105,115,46,95,121,50,41,44,116,104,105,115,46,95,99,111,110,116,101,120,116,46,99,108,111,115,101,80,97,116,104,40,41,59,98,114,101,97,107,59,99,97,115,101,32,50,58,116,104,105,115,46,95,99,111,110,116,101,120,116,46,109,111,118,101,84,111,40,40,116,104,105,115,46,95,120,50,43,50,42,116,104,105,115,46,95,120,51,41,47,51,44,40,116,104,105,115,46,95,121,50,43,50,42,116,104,105,115,46,95,121,51,41,47,51,41,44,116,104,105,115,46,95,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,40,116,104,105,115,46,95,120,51,43,50,42,116,104,105,115,46,95,120,50,41,47,51,44,40,116,104,105,115,46,95,121,51,43,50,42,116,104,105,115,46,95,121,50,41,47,51,41,44,116,104,105,115,46,95,99,111,110,116,101,120,116,46,99,108,111,115,101,80,97,116,104,40,41,59,98,114,101,97,107,59,99,97,115,101,32,51,58,116,104,105,115,46,112,111,105,110,116,40,116,104,105,115,46,95,120,50,44,116,104,105,115,46,95,121,50,41,44,116,104,105,115,46,112,111,105,110,116,40,116,104,105,115,46,95,120,51,44,116,104,105,115,46,95,121,51,41,44,116,104,105,115,46,112,111,105,110,116,40,116,104,105,115,46,95,120,52,44,116,104,105,115,46,95,121,52,41,125,125,44,112,111,105,110,116,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,115,119,105,116,99,104,40,116,61,43,116,44,110,61,43,110,44,116,104,105,115,46,95,112,111,105,110,116,41,123,99,97,115,101,32,48,58,116,104,105,115,46,95,112,111,105,110,116,61,49,44,116,104,105,115,46,95,120,50,61,116,44,116,104,105,115,46,95,121,50,61,110,59,98,114,101,97,107,59,99,97,115,101,32,49,58,116,104,105,115,46,95,112,111,105,110,116,61,50,44,116,104,105,115,46,95,120,51,61,116,44,116,104,105,115,46,95,121,51,61,110,59,98,114,101,97,107,59,99,97,115,101,32,50,58,116,104,105,115,46,95,112,111,105,110,116,61,51,44,116,104,105,115,46,95,120,52,61,116,44,116,104,105,115,46,95,121,52,61,110,44,116,104,105,115,46,95,99,111,110,116,101,120,116,46,109,111,118,101,84,111,40,40,116,104,105,115,46,95,120,48,43,52,42,116,104,105,115,46,95,120,49,43,116,41,47,54,44,40,116,104,105,115,46,95,121,48,43,52,42,116,104,105,115,46,95,121,49,43,110,41,47,54,41,59,98,114,101,97,107,59,100,101,102,97,117,108,116,58,84,95,40,116,104,105,115,44,116,44,110,41,125,116,104,105,115,46,95,120,48,61,116,104,105,115,46,95,120,49,44,116,104,105,115,46,95,120,49,61,116,44,116,104,105,115,46,95,121,48,61,116,104,105,115,46,95,121,49,44,116,104,105,115,46,95,121,49,61,110,125,125,44,107,95,46,112,114,111,116,111,116,121,112,101,61,123,97,114,101,97,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,108,105,110,101,61,48,125,44,97,114,101,97,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,108,105,110,101,61,78,97,78,125,44,108,105,110,101,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,120,48,61,116,104,105,115,46,95,120,49,61,116,104,105,115,46,95,121,48,61,116,104,105,115,46,95,121,49,61,78,97,78,44,116,104,105,115,46,95,112,111,105,110,116,61,48,125,44,108,105,110,101,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,40,116,104,105,115,46,95,108,105,110,101,124,124,48,33,61,61,116,104,105,115,46,95,108,105,110,101,38,38,51,61,61,61,116,104,105,115,46,95,112,111,105,110,116,41,38,38,116,104,105,115,46,95,99,111,110,116,101,120,116,46,99,108,111,115,101,80,97,116,104,40,41,44,116,104,105,115,46,95,108,105,110,101,61,49,45,116,104,105,115,46,95,108,105,110,101,125,44,112,111,105,110,116,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,115,119,105,116,99,104,40,116,61,43,116,44,110,61,43,110,44,116,104,105,115,46,95,112,111,105,110,116,41,123,99,97,115,101,32,48,58,116,104,105,115,46,95,112,111,105,110,116,61,49,59,98,114,101,97,107,59,99,97,115,101,32,49,58,116,104,105,115,46,95,112,111,105,110,116,61,50,59,98,114,101,97,107,59,99,97,115,101,32,50,58,116,104,105,115,46,95,112,111,105,110,116,61,51,59,118,97,114,32,101,61,40,116,104,105,115,46,95,120,48,43,52,42,116,104,105,115,46,95,120,49,43,116,41,47,54,44,114,61,40,116,104,105,115,46,95,121,48,43,52,42,116,104,105,115,46,95,121,49,43,110,41,47,54,59,116,104,105,115,46,95,108,105,110,101,63,116,104,105,115,46,95,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,101,44,114,41,58,116,104,105,115,46,95,99,111,110,116,101,120,116,46,109,111,118,101,84,111,40,101,44,114,41,59,98,114,101,97,107,59,99,97,115,101,32,51,58,116,104,105,115,46,95,112,111,105,110,116,61,52,59,100,101,102,97,117,108,116,58,84,95,40,116,104,105,115,44,116,44,110,41,125,116,104,105,115,46,95,120,48,61,116,104,105,115,46,95,120,49,44,116,104,105,115,46,95,120,49,61,116,44,116,104,105,115,46,95,121,48,61,116,104,105,115,46,95,121,49,44,116,104,105,115,46,95,121,49,61,110,125,125,44,69,95,46,112,114,111,116,111,116,121,112,101,61,123,108,105,110,101,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,120,61,91,93,44,116,104,105,115,46,95,121,61,91,93,44,116,104,105,115,46,95,98,97,115,105,115,46,108,105,110,101,83,116,97,114,116,40,41,125,44,108,105,110,101,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,95,120,44,110,61,116,104,105,115,46,95,121,44,101,61,116,46,108,101,110,103,116,104,45,49,59,105,102,40,101,62,48,41,102,111,114,40,118,97,114,32,114,44,105,61,116,91,48,93,44,111,61,110,91,48,93,44,97,61,116,91,101,93,45,105,44,117,61,110,91,101,93,45,111,44,99,61,45,49,59,43,43,99,60,61,101,59,41,114,61,99,47,101,44,116,104,105,115,46,95,98,97,115,105,115,46,112,111,105,110,116,40,116,104,105,115,46,95,98,101,116,97,42,116,91,99,93,43,40,49,45,116,104,105,115,46,95,98,101,116,97,41,42,40,105,43,114,42,97,41,44,116,104,105,115,46,95,98,101,116,97,42,110,91,99,93,43,40,49,45,116,104,105,115,46,95,98,101,116,97,41,42,40,111,43,114,42,117,41,41,59,116,104,105,115,46,95,120,61,116,104,105,115,46,95,121,61,110,117,108,108,44,116,104,105,115,46,95,98,97,115,105,115,46,108,105,110,101,69,110,100,40,41,125,44,112,111,105,110,116,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,116,104,105,115,46,95,120,46,112,117,115,104,40,43,116,41,44,116,104,105,115,46,95,121,46,112,117,115,104,40,43,110,41,125,125,59,118,97,114,32,67,95,61,102,117,110,99,116,105,111,110,32,116,40,110,41,123,102,117,110,99,116,105,111,110,32,101,40,116,41,123,114,101,116,117,114,110,32,49,61,61,61,110,63,110,101,119,32,65,95,40,116,41,58,110,101,119,32,69,95,40,116,44,110,41,125,114,101,116,117,114,110,32,101,46,98,101,116,97,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,40,43,110,41,125,44,101,125,40,46,56,53,41,59,102,117,110,99,116,105,111,110,32,80,95,40,116,44,110,44,101,41,123,116,46,95,99,111,110,116,101,120,116,46,98,101,122,105,101,114,67,117,114,118,101,84,111,40,116,46,95,120,49,43,116,46,95,107,42,40,116,46,95,120,50,45,116,46,95,120,48,41,44,116,46,95,121,49,43,116,46,95,107,42,40,116,46,95,121,50,45,116,46,95,121,48,41,44,116,46,95,120,50,43,116,46,95,107,42,40,116,46,95,120,49,45,110,41,44,116,46,95,121,50,43,116,46,95,107,42,40,116,46,95,121,49,45,101,41,44,116,46,95,120,50,44,116,46,95,121,50,41,125,102,117,110,99,116,105,111,110,32,122,95,40,116,44,110,41,123,116,104,105,115,46,95,99,111,110,116,101,120,116,61,116,44,116,104,105,115,46,95,107,61,40,49,45,110,41,47,54,125,122,95,46,112,114,111,116,111,116,121,112,101,61,123,97,114,101,97,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,108,105,110,101,61,48,125,44,97,114,101,97,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,108,105,110,101,61,78,97,78,125,44,108,105,110,101,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,120,48,61,116,104,105,115,46,95,120,49,61,116,104,105,115,46,95,120,50,61,116,104,105,115,46,95,121,48,61,116,104,105,115,46,95,121,49,61,116,104,105,115,46,95,121,50,61,78,97,78,44,116,104,105,115,46,95,112,111,105,110,116,61,48,125,44,108,105,110,101,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,115,119,105,116,99,104,40,116,104,105,115,46,95,112,111,105,110,116,41,123,99,97,115,101,32,50,58,116,104,105,115,46,95,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,116,104,105,115,46,95,120,50,44,116,104,105,115,46,95,121,50,41,59,98,114,101,97,107,59,99,97,115,101,32,51,58,80,95,40,116,104,105,115,44,116,104,105,115,46,95,120,49,44,116,104,105,115,46,95,121,49,41,125,40,116,104,105,115,46,95,108,105,110,101,124,124,48,33,61,61,116,104,105,115,46,95,108,105,110,101,38,38,49,61,61,61,116,104,105,115,46,95,112,111,105,110,116,41,38,38,116,104,105,115,46,95,99,111,110,116,101,120,116,46,99,108,111,115,101,80,97,116,104,40,41,44,116,104,105,115,46,95,108,105,110,101,61,49,45,116,104,105,115,46,95,108,105,110,101,125,44,112,111,105,110,116,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,115,119,105,116,99,104,40,116,61,43,116,44,110,61,43,110,44,116,104,105,115,46,95,112,111,105,110,116,41,123,99,97,115,101,32,48,58,116,104,105,115,46,95,112,111,105,110,116,61,49,44,116,104,105,115,46,95,108,105,110,101,63,116,104,105,115,46,95,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,116,44,110,41,58,116,104,105,115,46,95,99,111,110,116,101,120,116,46,109,111,118,101,84,111,40,116,44,110,41,59,98,114,101,97,107,59,99,97,115,101,32,49,58,116,104,105,115,46,95,112,111,105,110,116,61,50,44,116,104,105,115,46,95,120,49,61,116,44,116,104,105,115,46,95,121,49,61,110,59,98,114,101,97,107,59,99,97,115,101,32,50,58,116,104,105,115,46,95,112,111,105,110,116,61,51,59,100,101,102,97,117,108,116,58,80,95,40,116,104,105,115,44,116,44,110,41,125,116,104,105,115,46,95,120,48,61,116,104,105,115,46,95,120,49,44,116,104,105,115,46,95,120,49,61,116,104,105,115,46,95,120,50,44,116,104,105,115,46,95,120,50,61,116,44,116,104,105,115,46,95,121,48,61,116,104,105,115,46,95,121,49,44,116,104,105,115,46,95,121,49,61,116,104,105,115,46,95,121,50,44,116,104,105,115,46,95,121,50,61,110,125,125,59,118,97,114,32,82,95,61,102,117,110,99,116,105,111,110,32,116,40,110,41,123,102,117,110,99,116,105,111,110,32,101,40,116,41,123,114,101,116,117,114,110,32,110,101,119,32,122,95,40,116,44,110,41,125,114,101,116,117,114,110,32,101,46,116,101,110,115,105,111,110,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,40,43,110,41,125,44,101,125,40,48,41,59,102,117,110,99,116,105,111,110,32,68,95,40,116,44,110,41,123,116,104,105,115,46,95,99,111,110,116,101,120,116,61,116,44,116,104,105,115,46,95,107,61,40,49,45,110,41,47,54,125,68,95,46,112,114,111,116,111,116,121,112,101,61,123,97,114,101,97,83,116,97,114,116,58,78,95,44,97,114,101,97,69,110,100,58,78,95,44,108,105,110,101,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,120,48,61,116,104,105,115,46,95,120,49,61,116,104,105,115,46,95,120,50,61,116,104,105,115,46,95,120,51,61,116,104,105,115,46,95,120,52,61,116,104,105,115,46,95,120,53,61,116,104,105,115,46,95,121,48,61,116,104,105,115,46,95,121,49,61,116,104,105,115,46,95,121,50,61,116,104,105,115,46,95,121,51,61,116,104,105,115,46,95,121,52,61,116,104,105,115,46,95,121,53,61,78,97,78,44,116,104,105,115,46,95,112,111,105,110,116,61,48,125,44,108,105,110,101,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,115,119,105,116,99,104,40,116,104,105,115,46,95,112,111,105,110,116,41,123,99,97,115,101,32,49,58,116,104,105,115,46,95,99,111,110,116,101,120,116,46,109,111,118,101,84,111,40,116,104,105,115,46,95,120,51,44,116,104,105,115,46,95,121,51,41,44,116,104,105,115,46,95,99,111,110,116,101,120,116,46,99,108,111,115,101,80,97,116,104,40,41,59,98,114,101,97,107,59,99,97,115,101,32,50,58,116,104,105,115,46,95,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,116,104,105,115,46,95,120,51,44,116,104,105,115,46,95,121,51,41,44,116,104,105,115,46,95,99,111,110,116,101,120,116,46,99,108,111,115,101,80,97,116,104,40,41,59,98,114,101,97,107,59,99,97,115,101,32,51,58,116,104,105,115,46,112,111,105,110,116,40,116,104,105,115,46,95,120,51,44,116,104,105,115,46,95,121,51,41,44,116,104,105,115,46,112,111,105,110,116,40,116,104,105,115,46,95,120,52,44,116,104,105,115,46,95,121,52,41,44,116,104,105,115,46,112,111,105,110,116,40,116,104,105,115,46,95,120,53,44,116,104,105,115,46,95,121,53,41,125,125,44,112,111,105,110,116,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,115,119,105,116,99,104,40,116,61,43,116,44,110,61,43,110,44,116,104,105,115,46,95,112,111,105,110,116,41,123,99,97,115,101,32,48,58,116,104,105,115,46,95,112,111,105,110,116,61,49,44,116,104,105,115,46,95,120,51,61,116,44,116,104,105,115,46,95,121,51,61,110,59,98,114,101,97,107,59,99,97,115,101,32,49,58,116,104,105,115,46,95,112,111,105,110,116,61,50,44,116,104,105,115,46,95,99,111,110,116,101,120,116,46,109,111,118,101,84,111,40,116,104,105,115,46,95,120,52,61,116,44,116,104,105,115,46,95,121,52,61,110,41,59,98,114,101,97,107,59,99,97,115,101,32,50,58,116,104,105,115,46,95,112,111,105,110,116,61,51,44,116,104,105,115,46,95,120,53,61,116,44,116,104,105,115,46,95,121,53,61,110,59,98,114,101,97,107,59,100,101,102,97,117,108,116,58,80,95,40,116,104,105,115,44,116,44,110,41,125,116,104,105,115,46,95,120,48,61,116,104,105,115,46,95,120,49,44,116,104,105,115,46,95,120,49,61,116,104,105,115,46,95,120,50,44,116,104,105,115,46,95,120,50,61,116,44,116,104,105,115,46,95,121,48,61,116,104,105,115,46,95,121,49,44,116,104,105,115,46,95,121,49,61,116,104,105,115,46,95,121,50,44,116,104,105,115,46,95,121,50,61,110,125,125,59,118,97,114,32,113,95,61,102,117,110,99,116,105,111,110,32,116,40,110,41,123,102,117,110,99,116,105,111,110,32,101,40,116,41,123,114,101,116,117,114,110,32,110,101,119,32,68,95,40,116,44,110,41,125,114,101,116,117,114,110,32,101,46,116,101,110,115,105,111,110,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,40,43,110,41,125,44,101,125,40,48,41,59,102,117,110,99,116,105,111,110,32,76,95,40,116,44,110,41,123,116,104,105,115,46,95,99,111,110,116,101,120,116,61,116,44,116,104,105,115,46,95,107,61,40,49,45,110,41,47,54,125,76,95,46,112,114,111,116,111,116,121,112,101,61,123,97,114,101,97,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,108,105,110,101,61,48,125,44,97,114,101,97,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,108,105,110,101,61,78,97,78,125,44,108,105,110,101,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,120,48,61,116,104,105,115,46,95,120,49,61,116,104,105,115,46,95,120,50,61,116,104,105,115,46,95,121,48,61,116,104,105,115,46,95,121,49,61,116,104,105,115,46,95,121,50,61,78,97,78,44,116,104,105,115,46,95,112,111,105,110,116,61,48,125,44,108,105,110,101,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,40,116,104,105,115,46,95,108,105,110,101,124,124,48,33,61,61,116,104,105,115,46,95,108,105,110,101,38,38,51,61,61,61,116,104,105,115,46,95,112,111,105,110,116,41,38,38,116,104,105,115,46,95,99,111,110,116,101,120,116,46,99,108,111,115,101,80,97,116,104,40,41,44,116,104,105,115,46,95,108,105,110,101,61,49,45,116,104,105,115,46,95,108,105,110,101,125,44,112,111,105,110,116,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,115,119,105,116,99,104,40,116,61,43,116,44,110,61,43,110,44,116,104,105,115,46,95,112,111,105,110,116,41,123,99,97,115,101,32,48,58,116,104,105,115,46,95,112,111,105,110,116,61,49,59,98,114,101,97,107,59,99,97,115,101,32,49,58,116,104,105,115,46,95,112,111,105,110,116,61,50,59,98,114,101,97,107,59,99,97,115,101,32,50,58,116,104,105,115,46,95,112,111,105,110,116,61,51,44,116,104,105,115,46,95,108,105,110,101,63,116,104,105,115,46,95,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,116,104,105,115,46,95,120,50,44,116,104,105,115,46,95,121,50,41,58,116,104,105,115,46,95,99,111,110,116,101,120,116,46,109,111,118,101,84,111,40,116,104,105,115,46,95,120,50,44,116,104,105,115,46,95,121,50,41,59,98,114,101,97,107,59,99,97,115,101,32,51,58,116,104,105,115,46,95,112,111,105,110,116,61,52,59,100,101,102,97,117,108,116,58,80,95,40,116,104,105,115,44,116,44,110,41,125,116,104,105,115,46,95,120,48,61,116,104,105,115,46,95,120,49,44,116,104,105,115,46,95,120,49,61,116,104,105,115,46,95,120,50,44,116,104,105,115,46,95,120,50,61,116,44,116,104,105,115,46,95,121,48,61,116,104,105,115,46,95,121,49,44,116,104,105,115,46,95,121,49,61,116,104,105,115,46,95,121,50,44,116,104,105,115,46,95,121,50,61,110,125,125,59,118,97,114,32,85,95,61,102,117,110,99,116,105,111,110,32,116,40,110,41,123,102,117,110,99,116,105,111,110,32,101,40,116,41,123,114,101,116,117,114,110,32,110,101,119,32,76,95,40,116,44,110,41,125,114,101,116,117,114,110,32,101,46,116,101,110,115,105,111,110,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,40,43,110,41,125,44,101,125,40,48,41,59,102,117,110,99,116,105,111,110,32,79,95,40,116,44,110,44,101,41,123,118,97,114,32,114,61,116,46,95,120,49,44,105,61,116,46,95,121,49,44,111,61,116,46,95,120,50,44,97,61,116,46,95,121,50,59,105,102,40,116,46,95,108,48,49,95,97,62,107,121,41,123,118,97,114,32,117,61,50,42,116,46,95,108,48,49,95,50,97,43,51,42,116,46,95,108,48,49,95,97,42,116,46,95,108,49,50,95,97,43,116,46,95,108,49,50,95,50,97,44,99,61,51,42,116,46,95,108,48,49,95,97,42,40,116,46,95,108,48,49,95,97,43,116,46,95,108,49,50,95,97,41,59,114,61,40,114,42,117,45,116,46,95,120,48,42,116,46,95,108,49,50,95,50,97,43,116,46,95,120,50,42,116,46,95,108,48,49,95,50,97,41,47,99,44,105,61,40,105,42,117,45,116,46,95,121,48,42,116,46,95,108,49,50,95,50,97,43,116,46,95,121,50,42,116,46,95,108,48,49,95,50,97,41,47,99,125,105,102,40,116,46,95,108,50,51,95,97,62,107,121,41,123,118,97,114,32,102,61,50,42,116,46,95,108,50,51,95,50,97,43,51,42,116,46,95,108,50,51,95,97,42,116,46,95,108,49,50,95,97,43,116,46,95,108,49,50,95,50,97,44,115,61,51,42,116,46,95,108,50,51,95,97,42,40,116,46,95,108,50,51,95,97,43,116,46,95,108,49,50,95,97,41,59,111,61,40,111,42,102,43,116,46,95,120,49,42,116,46,95,108,50,51,95,50,97,45,110,42,116,46,95,108,49,50,95,50,97,41,47,115,44,97,61,40,97,42,102,43,116,46,95,121,49,42,116,46,95,108,50,51,95,50,97,45,101,42,116,46,95,108,49,50,95,50,97,41,47,115,125,116,46,95,99,111,110,116,101,120,116,46,98,101,122,105,101,114,67,117,114,118,101,84,111,40,114,44,105,44,111,44,97,44,116,46,95,120,50,44,116,46,95,121,50,41,125,102,117,110,99,116,105,111,110,32,66,95,40,116,44,110,41,123,116,104,105,115,46,95,99,111,110,116,101,120,116,61,116,44,116,104,105,115,46,95,97,108,112,104,97,61,110,125,66,95,46,112,114,111,116,111,116,121,112,101,61,123,97,114,101,97,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,108,105,110,101,61,48,125,44,97,114,101,97,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,108,105,110,101,61,78,97,78,125,44,108,105,110,101,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,120,48,61,116,104,105,115,46,95,120,49,61,116,104,105,115,46,95,120,50,61,116,104,105,115,46,95,121,48,61,116,104,105,115,46,95,121,49,61,116,104,105,115,46,95,121,50,61,78,97,78,44,116,104,105,115,46,95,108,48,49,95,97,61,116,104,105,115,46,95,108,49,50,95,97,61,116,104,105,115,46,95,108,50,51,95,97,61,116,104,105,115,46,95,108,48,49,95,50,97,61,116,104,105,115,46,95,108,49,50,95,50,97,61,116,104,105,115,46,95,108,50,51,95,50,97,61,116,104,105,115,46,95,112,111,105,110,116,61,48,125,44,108,105,110,101,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,115,119,105,116,99,104,40,116,104,105,115,46,95,112,111,105,110,116,41,123,99,97,115,101,32,50,58,116,104,105,115,46,95,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,116,104,105,115,46,95,120,50,44,116,104,105,115,46,95,121,50,41,59,98,114,101,97,107,59,99,97,115,101,32,51,58,116,104,105,115,46,112,111,105,110,116,40,116,104,105,115,46,95,120,50,44,116,104,105,115,46,95,121,50,41,125,40,116,104,105,115,46,95,108,105,110,101,124,124,48,33,61,61,116,104,105,115,46,95,108,105,110,101,38,38,49,61,61,61,116,104,105,115,46,95,112,111,105,110,116,41,38,38,116,104,105,115,46,95,99,111,110,116,101,120,116,46,99,108,111,115,101,80,97,116,104,40,41,44,116,104,105,115,46,95,108,105,110,101,61,49,45,116,104,105,115,46,95,108,105,110,101,125,44,112,111,105,110,116,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,105,102,40,116,61,43,116,44,110,61,43,110,44,116,104,105,115,46,95,112,111,105,110,116,41,123,118,97,114,32,101,61,116,104,105,115,46,95,120,50,45,116,44,114,61,116,104,105,115,46,95,121,50,45,110,59,116,104,105,115,46,95,108,50,51,95,97,61,77,97,116,104,46,115,113,114,116,40,116,104,105,115,46,95,108,50,51,95,50,97,61,77,97,116,104,46,112,111,119,40,101,42,101,43,114,42,114,44,116,104,105,115,46,95,97,108,112,104,97,41,41,125,115,119,105,116,99,104,40,116,104,105,115,46,95,112,111,105,110,116,41,123,99,97,115,101,32,48,58,116,104,105,115,46,95,112,111,105,110,116,61,49,44,116,104,105,115,46,95,108,105,110,101,63,116,104,105,115,46,95,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,116,44,110,41,58,116,104,105,115,46,95,99,111,110,116,101,120,116,46,109,111,118,101,84,111,40,116,44,110,41,59,98,114,101,97,107,59,99,97,115,101,32,49,58,116,104,105,115,46,95,112,111,105,110,116,61,50,59,98,114,101,97,107,59,99,97,115,101,32,50,58,116,104,105,115,46,95,112,111,105,110,116,61,51,59,100,101,102,97,117,108,116,58,79,95,40,116,104,105,115,44,116,44,110,41,125,116,104,105,115,46,95,108,48,49,95,97,61,116,104,105,115,46,95,108,49,50,95,97,44,116,104,105,115,46,95,108,49,50,95,97,61,116,104,105,115,46,95,108,50,51,95,97,44,116,104,105,115,46,95,108,48,49,95,50,97,61,116,104,105,115,46,95,108,49,50,95,50,97,44,116,104,105,115,46,95,108,49,50,95,50,97,61,116,104,105,115,46,95,108,50,51,95,50,97,44,116,104,105,115,46,95,120,48,61,116,104,105,115,46,95,120,49,44,116,104,105,115,46,95,120,49,61,116,104,105,115,46,95,120,50,44,116,104,105,115,46,95,120,50,61,116,44,116,104,105,115,46,95,121,48,61,116,104,105,115,46,95,121,49,44,116,104,105,115,46,95,121,49,61,116,104,105,115,46,95,121,50,44,116,104,105,115,46,95,121,50,61,110,125,125,59,118,97,114,32,70,95,61,102,117,110,99,116,105,111,110,32,116,40,110,41,123,102,117,110,99,116,105,111,110,32,101,40,116,41,123,114,101,116,117,114,110,32,110,63,110,101,119,32,66,95,40,116,44,110,41,58,110,101,119,32,122,95,40,116,44,48,41,125,114,101,116,117,114,110,32,101,46,97,108,112,104,97,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,40,43,110,41,125,44,101,125,40,46,53,41,59,102,117,110,99,116,105,111,110,32,89,95,40,116,44,110,41,123,116,104,105,115,46,95,99,111,110,116,101,120,116,61,116,44,116,104,105,115,46,95,97,108,112,104,97,61,110,125,89,95,46,112,114,111,116,111,116,121,112,101,61,123,97,114,101,97,83,116,97,114,116,58,78,95,44,97,114,101,97,69,110,100,58,78,95,44,108,105,110,101,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,120,48,61,116,104,105,115,46,95,120,49,61,116,104,105,115,46,95,120,50,61,116,104,105,115,46,95,120,51,61,116,104,105,115,46,95,120,52,61,116,104,105,115,46,95,120,53,61,116,104,105,115,46,95,121,48,61,116,104,105,115,46,95,121,49,61,116,104,105,115,46,95,121,50,61,116,104,105,115,46,95,121,51,61,116,104,105,115,46,95,121,52,61,116,104,105,115,46,95,121,53,61,78,97,78,44,116,104,105,115,46,95,108,48,49,95,97,61,116,104,105,115,46,95,108,49,50,95,97,61,116,104,105,115,46,95,108,50,51,95,97,61,116,104,105,115,46,95,108,48,49,95,50,97,61,116,104,105,115,46,95,108,49,50,95,50,97,61,116,104,105,115,46,95,108,50,51,95,50,97,61,116,104,105,115,46,95,112,111,105,110,116,61,48,125,44,108,105,110,101,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,115,119,105,116,99,104,40,116,104,105,115,46,95,112,111,105,110,116,41,123,99,97,115,101,32,49,58,116,104,105,115,46,95,99,111,110,116,101,120,116,46,109,111,118,101,84,111,40,116,104,105,115,46,95,120,51,44,116,104,105,115,46,95,121,51,41,44,116,104,105,115,46,95,99,111,110,116,101,120,116,46,99,108,111,115,101,80,97,116,104,40,41,59,98,114,101,97,107,59,99,97,115,101,32,50,58,116,104,105,115,46,95,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,116,104,105,115,46,95,120,51,44,116,104,105,115,46,95,121,51,41,44,116,104,105,115,46,95,99,111,110,116,101,120,116,46,99,108,111,115,101,80,97,116,104,40,41,59,98,114,101,97,107,59,99,97,115,101,32,51,58,116,104,105,115,46,112,111,105,110,116,40,116,104,105,115,46,95,120,51,44,116,104,105,115,46,95,121,51,41,44,116,104,105,115,46,112,111,105,110,116,40,116,104,105,115,46,95,120,52,44,116,104,105,115,46,95,121,52,41,44,116,104,105,115,46,112,111,105,110,116,40,116,104,105,115,46,95,120,53,44,116,104,105,115,46,95,121,53,41,125,125,44,112,111,105,110,116,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,105,102,40,116,61,43,116,44,110,61,43,110,44,116,104,105,115,46,95,112,111,105,110,116,41,123,118,97,114,32,101,61,116,104,105,115,46,95,120,50,45,116,44,114,61,116,104,105,115,46,95,121,50,45,110,59,116,104,105,115,46,95,108,50,51,95,97,61,77,97,116,104,46,115,113,114,116,40,116,104,105,115,46,95,108,50,51,95,50,97,61,77,97,116,104,46,112,111,119,40,101,42,101,43,114,42,114,44,116,104,105,115,46,95,97,108,112,104,97,41,41,125,115,119,105,116,99,104,40,116,104,105,115,46,95,112,111,105,110,116,41,123,99,97,115,101,32,48,58,116,104,105,115,46,95,112,111,105,110,116,61,49,44,116,104,105,115,46,95,120,51,61,116,44,116,104,105,115,46,95,121,51,61,110,59,98,114,101,97,107,59,99,97,115,101,32,49,58,116,104,105,115,46,95,112,111,105,110,116,61,50,44,116,104,105,115,46,95,99,111,110,116,101,120,116,46,109,111,118,101,84,111,40,116,104,105,115,46,95,120,52,61,116,44,116,104,105,115,46,95,121,52,61,110,41,59,98,114,101,97,107,59,99,97,115,101,32,50,58,116,104,105,115,46,95,112,111,105,110,116,61,51,44,116,104,105,115,46,95,120,53,61,116,44,116,104,105,115,46,95,121,53,61,110,59,98,114,101,97,107,59,100,101,102,97,117,108,116,58,79,95,40,116,104,105,115,44,116,44,110,41,125,116,104,105,115,46,95,108,48,49,95,97,61,116,104,105,115,46,95,108,49,50,95,97,44,116,104,105,115,46,95,108,49,50,95,97,61,116,104,105,115,46,95,108,50,51,95,97,44,116,104,105,115,46,95,108,48,49,95,50,97,61,116,104,105,115,46,95,108,49,50,95,50,97,44,116,104,105,115,46,95,108,49,50,95,50,97,61,116,104,105,115,46,95,108,50,51,95,50,97,44,116,104,105,115,46,95,120,48,61,116,104,105,115,46,95,120,49,44,116,104,105,115,46,95,120,49,61,116,104,105,115,46,95,120,50,44,116,104,105,115,46,95,120,50,61,116,44,116,104,105,115,46,95,121,48,61,116,104,105,115,46,95,121,49,44,116,104,105,115,46,95,121,49,61,116,104,105,115,46,95,121,50,44,116,104,105,115,46,95,121,50,61,110,125,125,59,118,97,114,32,73,95,61,102,117,110,99,116,105,111,110,32,116,40,110,41,123,102,117,110,99,116,105,111,110,32,101,40,116,41,123,114,101,116,117,114,110,32,110,63,110,101,119,32,89,95,40,116,44,110,41,58,110,101,119,32,68,95,40,116,44,48,41,125,114,101,116,117,114,110,32,101,46,97,108,112,104,97,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,40,43,110,41,125,44,101,125,40,46,53,41,59,102,117,110,99,116,105,111,110,32,72,95,40,116,44,110,41,123,116,104,105,115,46,95,99,111,110,116,101,120,116,61,116,44,116,104,105,115,46,95,97,108,112,104,97,61,110,125,72,95,46,112,114,111,116,111,116,121,112,101,61,123,97,114,101,97,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,108,105,110,101,61,48,125,44,97,114,101,97,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,108,105,110,101,61,78,97,78,125,44,108,105,110,101,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,120,48,61,116,104,105,115,46,95,120,49,61,116,104,105,115,46,95,120,50,61,116,104,105,115,46,95,121,48,61,116,104,105,115,46,95,121,49,61,116,104,105,115,46,95,121,50,61,78,97,78,44,116,104,105,115,46,95,108,48,49,95,97,61,116,104,105,115,46,95,108,49,50,95,97,61,116,104,105,115,46,95,108,50,51,95,97,61,116,104,105,115,46,95,108,48,49,95,50,97,61,116,104,105,115,46,95,108,49,50,95,50,97,61,116,104,105,115,46,95,108,50,51,95,50,97,61,116,104,105,115,46,95,112,111,105,110,116,61,48,125,44,108,105,110,101,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,40,116,104,105,115,46,95,108,105,110,101,124,124,48,33,61,61,116,104,105,115,46,95,108,105,110,101,38,38,51,61,61,61,116,104,105,115,46,95,112,111,105,110,116,41,38,38,116,104,105,115,46,95,99,111,110,116,101,120,116,46,99,108,111,115,101,80,97,116,104,40,41,44,116,104,105,115,46,95,108,105,110,101,61,49,45,116,104,105,115,46,95,108,105,110,101,125,44,112,111,105,110,116,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,105,102,40,116,61,43,116,44,110,61,43,110,44,116,104,105,115,46,95,112,111,105,110,116,41,123,118,97,114,32,101,61,116,104,105,115,46,95,120,50,45,116,44,114,61,116,104,105,115,46,95,121,50,45,110,59,116,104,105,115,46,95,108,50,51,95,97,61,77,97,116,104,46,115,113,114,116,40,116,104,105,115,46,95,108,50,51,95,50,97,61,77,97,116,104,46,112,111,119,40,101,42,101,43,114,42,114,44,116,104,105,115,46,95,97,108,112,104,97,41,41,125,115,119,105,116,99,104,40,116,104,105,115,46,95,112,111,105,110,116,41,123,99,97,115,101,32,48,58,116,104,105,115,46,95,112,111,105,110,116,61,49,59,98,114,101,97,107,59,99,97,115,101,32,49,58,116,104,105,115,46,95,112,111,105,110,116,61,50,59,98,114,101,97,107,59,99,97,115,101,32,50,58,116,104,105,115,46,95,112,111,105,110,116,61,51,44,116,104,105,115,46,95,108,105,110,101,63,116,104,105,115,46,95,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,116,104,105,115,46,95,120,50,44,116,104,105,115,46,95,121,50,41,58,116,104,105,115,46,95,99,111,110,116,101,120,116,46,109,111,118,101,84,111,40,116,104,105,115,46,95,120,50,44,116,104,105,115,46,95,121,50,41,59,98,114,101,97,107,59,99,97,115,101,32,51,58,116,104,105,115,46,95,112,111,105,110,116,61,52,59,100,101,102,97,117,108,116,58,79,95,40,116,104,105,115,44,116,44,110,41,125,116,104,105,115,46,95,108,48,49,95,97,61,116,104,105,115,46,95,108,49,50,95,97,44,116,104,105,115,46,95,108,49,50,95,97,61,116,104,105,115,46,95,108,50,51,95,97,44,116,104,105,115,46,95,108,48,49,95,50,97,61,116,104,105,115,46,95,108,49,50,95,50,97,44,116,104,105,115,46,95,108,49,50,95,50,97,61,116,104,105,115,46,95,108,50,51,95,50,97,44,116,104,105,115,46,95,120,48,61,116,104,105,115,46,95,120,49,44,116,104,105,115,46,95,120,49,61,116,104,105,115,46,95,120,50,44,116,104,105,115,46,95,120,50,61,116,44,116,104,105,115,46,95,121,48,61,116,104,105,115,46,95,121,49,44,116,104,105,115,46,95,121,49,61,116,104,105,115,46,95,121,50,44,116,104,105,115,46,95,121,50,61,110,125,125,59,118,97,114,32,106,95,61,102,117,110,99,116,105,111,110,32,116,40,110,41,123,102,117,110,99,116,105,111,110,32,101,40,116,41,123,114,101,116,117,114,110,32,110,63,110,101,119,32,72,95,40,116,44,110,41,58,110,101,119,32,76,95,40,116,44,48,41,125,114,101,116,117,114,110,32,101,46,97,108,112,104,97,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,40,43,110,41,125,44,101,125,40,46,53,41,59,102,117,110,99,116,105,111,110,32,88,95,40,116,41,123,116,104,105,115,46,95,99,111,110,116,101,120,116,61,116,125,102,117,110,99,116,105,111,110,32,86,95,40,116,41,123,114,101,116,117,114,110,32,116,60,48,63,45,49,58,49,125,102,117,110,99,116,105,111,110,32,71,95,40,116,44,110,44,101,41,123,118,97,114,32,114,61,116,46,95,120,49,45,116,46,95,120,48,44,105,61,110,45,116,46,95,120,49,44,111,61,40,116,46,95,121,49,45,116,46,95,121,48,41,47,40,114,124,124,105,60,48,38,38,45,48,41,44,97,61,40,101,45,116,46,95,121,49,41,47,40,105,124,124,114,60,48,38,38,45,48,41,44,117,61,40,111,42,105,43,97,42,114,41,47,40,114,43,105,41,59,114,101,116,117,114,110,40,86,95,40,111,41,43,86,95,40,97,41,41,42,77,97,116,104,46,109,105,110,40,77,97,116,104,46,97,98,115,40,111,41,44,77,97,116,104,46,97,98,115,40,97,41,44,46,53,42,77,97,116,104,46,97,98,115,40,117,41,41,124,124,48,125,102,117,110,99,116,105,111,110,32,36,95,40,116,44,110,41,123,118,97,114,32,101,61,116,46,95,120,49,45,116,46,95,120,48,59,114,101,116,117,114,110,32,101,63,40,51,42,40,116,46,95,121,49,45,116,46,95,121,48,41,47,101,45,110,41,47,50,58,110,125,102,117,110,99,116,105,111,110,32,87,95,40,116,44,110,44,101,41,123,118,97,114,32,114,61,116,46,95,120,48,44,105,61,116,46,95,121,48,44,111,61,116,46,95,120,49,44,97,61,116,46,95,121,49,44,117,61,40,111,45,114,41,47,51,59,116,46,95,99,111,110,116,101,120,116,46,98,101,122,105,101,114,67,117,114,118,101,84,111,40,114,43,117,44,105,43,117,42,110,44,111,45,117,44,97,45,117,42,101,44,111,44,97,41,125,102,117,110,99,116,105,111,110,32,90,95,40,116,41,123,116,104,105,115,46,95,99,111,110,116,101,120,116,61,116,125,102,117,110,99,116,105,111,110,32,81,95,40,116,41,123,116,104,105,115,46,95,99,111,110,116,101,120,116,61,110,101,119,32,75,95,40,116,41,125,102,117,110,99,116,105,111,110,32,75,95,40,116,41,123,116,104,105,115,46,95,99,111,110,116,101,120,116,61,116,125,102,117,110,99,116,105,111,110,32,74,95,40,116,41,123,116,104,105,115,46,95,99,111,110,116,101,120,116,61,116,125,102,117,110,99,116,105,111,110,32,116,98,40,116,41,123,118,97,114,32,110,44,101,44,114,61,116,46,108,101,110,103,116,104,45,49,44,105,61,110,101,119,32,65,114,114,97,121,40,114,41,44,111,61,110,101,119,32,65,114,114,97,121,40,114,41,44,97,61,110,101,119,32,65,114,114,97,121,40,114,41,59,102,111,114,40,105,91,48,93,61,48,44,111,91,48,93,61,50,44,97,91,48,93,61,116,91,48,93,43,50,42,116,91,49,93,44,110,61,49,59,110,60,114,45,49,59,43,43,110,41,105,91,110,93,61,49,44,111,91,110,93,61,52,44,97,91,110,93,61,52,42,116,91,110,93,43,50,42,116,91,110,43,49,93,59,102,111,114,40,105,91,114,45,49,93,61,50,44,111,91,114,45,49,93,61,55,44,97,91,114,45,49,93,61,56,42,116,91,114,45,49,93,43,116,91,114,93,44,110,61,49,59,110,60,114,59,43,43,110,41,101,61,105,91,110,93,47,111,91,110,45,49,93,44,111,91,110,93,45,61,101,44,97,91,110,93,45,61,101,42,97,91,110,45,49,93,59,102,111,114,40,105,91,114,45,49,93,61,97,91,114,45,49,93,47,111,91,114,45,49,93,44,110,61,114,45,50,59,110,62,61,48,59,45,45,110,41,105,91,110,93,61,40,97,91,110,93,45,105,91,110,43,49,93,41,47,111,91,110,93,59,102,111,114,40,111,91,114,45,49,93,61,40,116,91,114,93,43,105,91,114,45,49,93,41,47,50,44,110,61,48,59,110,60,114,45,49,59,43,43,110,41,111,91,110,93,61,50,42,116,91,110,43,49,93,45,105,91,110,43,49,93,59,114,101,116,117,114,110,91,105,44,111,93,125,102,117,110,99,116,105,111,110,32,110,98,40,116,44,110,41,123,116,104,105,115,46,95,99,111,110,116,101,120,116,61,116,44,116,104,105,115,46,95,116,61,110,125,102,117,110,99,116,105,111,110,32,101,98,40,116,44,110,41,123,105,102,40,40,105,61,116,46,108,101,110,103,116,104,41,62,49,41,102,111,114,40,118,97,114,32,101,44,114,44,105,44,111,61,49,44,97,61,116,91,110,91,48,93,93,44,117,61,97,46,108,101,110,103,116,104,59,111,60,105,59,43,43,111,41,102,111,114,40,114,61,97,44,97,61,116,91,110,91,111,93,93,44,101,61,48,59,101,60,117,59,43,43,101,41,97,91,101,93,91,49,93,43,61,97,91,101,93,91,48,93,61,105,115,78,97,78,40,114,91,101,93,91,49,93,41,63,114,91,101,93,91,48,93,58,114,91,101,93,91,49,93,125,102,117,110,99,116,105,111,110,32,114,98,40,116,41,123,102,111,114,40,118,97,114,32,110,61,116,46,108,101,110,103,116,104,44,101,61,110,101,119,32,65,114,114,97,121,40,110,41,59,45,45,110,62,61,48,59,41,101,91,110,93,61,110,59,114,101,116,117,114,110,32,101,125,102,117,110,99,116,105,111,110,32,105,98,40,116,44,110,41,123,114,101,116,117,114,110,32,116,91,110,93,125,102,117,110,99,116,105,111,110,32,111,98,40,116,41,123,118,97,114,32,110,61,116,46,109,97,112,40,97,98,41,59,114,101,116,117,114,110,32,114,98,40,116,41,46,115,111,114,116,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,110,91,116,93,45,110,91,101,93,125,41,125,102,117,110,99,116,105,111,110,32,97,98,40,116,41,123,102,111,114,40,118,97,114,32,110,44,101,61,45,49,44,114,61,48,44,105,61,116,46,108,101,110,103,116,104,44,111,61,45,49,47,48,59,43,43,101,60,105,59,41,40,110,61,43,116,91,101,93,91,49,93,41,62,111,38,38,40,111,61,110,44,114,61,101,41,59,114,101,116,117,114,110,32,114,125,102,117,110,99,116,105,111,110,32,117,98,40,116,41,123,118,97,114,32,110,61,116,46,109,97,112,40,99,98,41,59,114,101,116,117,114,110,32,114,98,40,116,41,46,115,111,114,116,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,110,91,116,93,45,110,91,101,93,125,41,125,102,117,110,99,116,105,111,110,32,99,98,40,116,41,123,102,111,114,40,118,97,114,32,110,44,101,61,48,44,114,61,45,49,44,105,61,116,46,108,101,110,103,116,104,59,43,43,114,60,105,59,41,40,110,61,43,116,91,114,93,91,49,93,41,38,38,40,101,43,61,110,41,59,114,101,116,117,114,110,32,101,125,102,117,110,99,116,105,111,110,32,102,98,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,125,125,102,117,110,99,116,105,111,110,32,115,98,40,116,41,123,114,101,116,117,114,110,32,116,91,48,93,125,102,117,110,99,116,105,111,110,32,108,98,40,116,41,123,114,101,116,117,114,110,32,116,91,49,93,125,102,117,110,99,116,105,111,110,32,104,98,40,41,123,116,104,105,115,46,95,61,110,117,108,108,125,102,117,110,99,116,105,111,110,32,100,98,40,116,41,123,116,46,85,61,116,46,67,61,116,46,76,61,116,46,82,61,116,46,80,61,116,46,78,61,110,117,108,108,125,102,117,110,99,116,105,111,110,32,112,98,40,116,44,110,41,123,118,97,114,32,101,61,110,44,114,61,110,46,82,44,105,61,101,46,85,59,105,63,105,46,76,61,61,61,101,63,105,46,76,61,114,58,105,46,82,61,114,58,116,46,95,61,114,44,114,46,85,61,105,44,101,46,85,61,114,44,101,46,82,61,114,46,76,44,101,46,82,38,38,40,101,46,82,46,85,61,101,41,44,114,46,76,61,101,125,102,117,110,99,116,105,111,110,32,118,98,40,116,44,110,41,123,118,97,114,32,101,61,110,44,114,61,110,46,76,44,105,61,101,46,85,59,105,63,105,46,76,61,61,61,101,63,105,46,76,61,114,58,105,46,82,61,114,58,116,46,95,61,114,44,114,46,85,61,105,44,101,46,85,61,114,44,101,46,76,61,114,46,82,44,101,46,76,38,38,40,101,46,76,46,85,61,101,41,44,114,46,82,61,101,125,102,117,110,99,116,105,111,110,32,103,98,40,116,41,123,102,111,114,40,59,116,46,76,59,41,116,61,116,46,76,59,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,121,98,40,116,44,110,44,101,44,114,41,123,118,97,114,32,105,61,91,110,117,108,108,44,110,117,108,108,93,44,111,61,89,98,46,112,117,115,104,40,105,41,45,49,59,114,101,116,117,114,110,32,105,46,108,101,102,116,61,116,44,105,46,114,105,103,104,116,61,110,44,101,38,38,98,98,40,105,44,116,44,110,44,101,41,44,114,38,38,98,98,40,105,44,110,44,116,44,114,41,44,66,98,91,116,46,105,110,100,101,120,93,46,104,97,108,102,101,100,103,101,115,46,112,117,115,104,40,111,41,44,66,98,91,110,46,105,110,100,101,120,93,46,104,97,108,102,101,100,103,101,115,46,112,117,115,104,40,111,41,44,105,125,102,117,110,99,116,105,111,110,32,95,98,40,116,44,110,44,101,41,123,118,97,114,32,114,61,91,110,44,101,93,59,114,101,116,117,114,110,32,114,46,108,101,102,116,61,116,44,114,125,102,117,110,99,116,105,111,110,32,98,98,40,116,44,110,44,101,44,114,41,123,116,91,48,93,124,124,116,91,49,93,63,116,46,108,101,102,116,61,61,61,101,63,116,91,49,93,61,114,58,116,91,48,93,61,114,58,40,116,91,48,93,61,114,44,116,46,108,101,102,116,61,110,44,116,46,114,105,103,104,116,61,101,41,125,102,117,110,99,116,105,111,110,32,109,98,40,116,44,110,44,101,44,114,44,105,41,123,118,97,114,32,111,44,97,61,116,91,48,93,44,117,61,116,91,49,93,44,99,61,97,91,48,93,44,102,61,97,91,49,93,44,115,61,48,44,108,61,49,44,104,61,117,91,48,93,45,99,44,100,61,117,91,49,93,45,102,59,105,102,40,111,61,110,45,99,44,104,124,124,33,40,111,62,48,41,41,123,105,102,40,111,47,61,104,44,104,60,48,41,123,105,102,40,111,60,115,41,114,101,116,117,114,110,59,111,60,108,38,38,40,108,61,111,41,125,101,108,115,101,32,105,102,40,104,62,48,41,123,105,102,40,111,62,108,41,114,101,116,117,114,110,59,111,62,115,38,38,40,115,61,111,41,125,105,102,40,111,61,114,45,99,44,104,124,124,33,40,111,60,48,41,41,123,105,102,40,111,47,61,104,44,104,60,48,41,123,105,102,40,111,62,108,41,114,101,116,117,114,110,59,111,62,115,38,38,40,115,61,111,41,125,101,108,115,101,32,105,102,40,104,62,48,41,123,105,102,40,111,60,115,41,114,101,116,117,114,110,59,111,60,108,38,38,40,108,61,111,41,125,105,102,40,111,61,101,45,102,44,100,124,124,33,40,111,62,48,41,41,123,105,102,40,111,47,61,100,44,100,60,48,41,123,105,102,40,111,60,115,41,114,101,116,117,114,110,59,111,60,108,38,38,40,108,61,111,41,125,101,108,115,101,32,105,102,40,100,62,48,41,123,105,102,40,111,62,108,41,114,101,116,117,114,110,59,111,62,115,38,38,40,115,61,111,41,125,105,102,40,111,61,105,45,102,44,100,124,124,33,40,111,60,48,41,41,123,105,102,40,111,47,61,100,44,100,60,48,41,123,105,102,40,111,62,108,41,114,101,116,117,114,110,59,111,62,115,38,38,40,115,61,111,41,125,101,108,115,101,32,105,102,40,100,62,48,41,123,105,102,40,111,60,115,41,114,101,116,117,114,110,59,111,60,108,38,38,40,108,61,111,41,125,114,101,116,117,114,110,33,40,115,62,48,124,124,108,60,49,41,124,124,40,115,62,48,38,38,40,116,91,48,93,61,91,99,43,115,42,104,44,102,43,115,42,100,93,41,44,108,60,49,38,38,40,116,91,49,93,61,91,99,43,108,42,104,44,102,43,108,42,100,93,41,44,33,48,41,125,125,125,125,125,102,117,110,99,116,105,111,110,32,120,98,40,116,44,110,44,101,44,114,44,105,41,123,118,97,114,32,111,61,116,91,49,93,59,105,102,40,111,41,114,101,116,117,114,110,33,48,59,118,97,114,32,97,44,117,44,99,61,116,91,48,93,44,102,61,116,46,108,101,102,116,44,115,61,116,46,114,105,103,104,116,44,108,61,102,91,48,93,44,104,61,102,91,49,93,44,100,61,115,91,48,93,44,112,61,115,91,49,93,44,118,61,40,108,43,100,41,47,50,44,103,61,40,104,43,112,41,47,50,59,105,102,40,112,61,61,61,104,41,123,105,102,40,118,60,110,124,124,118,62,61,114,41,114,101,116,117,114,110,59,105,102,40,108,62,100,41,123,105,102,40,99,41,123,105,102,40,99,91,49,93,62,61,105,41,114,101,116,117,114,110,125,101,108,115,101,32,99,61,91,118,44,101,93,59,111,61,91,118,44,105,93,125,101,108,115,101,123,105,102,40,99,41,123,105,102,40,99,91,49,93,60,101,41,114,101,116,117,114,110,125,101,108,115,101,32,99,61,91,118,44,105,93,59,111,61,91,118,44,101,93,125,125,101,108,115,101,32,105,102,40,117,61,103,45,40,97,61,40,108,45,100,41,47,40,112,45,104,41,41,42,118,44,97,60,45,49,124,124,97,62,49,41,105,102,40,108,62,100,41,123,105,102,40,99,41,123,105,102,40,99,91,49,93,62,61,105,41,114,101,116,117,114,110,125,101,108,115,101,32,99,61,91,40,101,45,117,41,47,97,44,101,93,59,111,61,91,40,105,45,117,41,47,97,44,105,93,125,101,108,115,101,123,105,102,40,99,41,123,105,102,40,99,91,49,93,60,101,41,114,101,116,117,114,110,125,101,108,115,101,32,99,61,91,40,105,45,117,41,47,97,44,105,93,59,111,61,91,40,101,45,117,41,47,97,44,101,93,125,101,108,115,101,32,105,102,40,104,60,112,41,123,105,102,40,99,41,123,105,102,40,99,91,48,93,62,61,114,41,114,101,116,117,114,110,125,101,108,115,101,32,99,61,91,110,44,97,42,110,43,117,93,59,111,61,91,114,44,97,42,114,43,117,93,125,101,108,115,101,123,105,102,40,99,41,123,105,102,40,99,91,48,93,60,110,41,114,101,116,117,114,110,125,101,108,115,101,32,99,61,91,114,44,97,42,114,43,117,93,59,111,61,91,110,44,97,42,110,43,117,93,125,114,101,116,117,114,110,32,116,91,48,93,61,99,44,116,91,49,93,61,111,44,33,48,125,102,117,110,99,116,105,111,110,32,119,98,40,116,44,110,41,123,118,97,114,32,101,61,116,46,115,105,116,101,44,114,61,110,46,108,101,102,116,44,105,61,110,46,114,105,103,104,116,59,114,101,116,117,114,110,32,101,61,61,61,105,38,38,40,105,61,114,44,114,61,101,41,44,105,63,77,97,116,104,46,97,116,97,110,50,40,105,91,49,93,45,114,91,49,93,44,105,91,48,93,45,114,91,48,93,41,58,40,101,61,61,61,114,63,40,114,61,110,91,49,93,44,105,61,110,91,48,93,41,58,40,114,61,110,91,48,93,44,105,61,110,91,49,93,41,44,77,97,116,104,46,97,116,97,110,50,40,114,91,48,93,45,105,91,48,93,44,105,91,49,93,45,114,91,49,93,41,41,125,102,117,110,99,116,105,111,110,32,77,98,40,116,44,110,41,123,114,101,116,117,114,110,32,110,91,43,40,110,46,108,101,102,116,33,61,61,116,46,115,105,116,101,41,93,125,102,117,110,99,116,105,111,110,32,78,98,40,116,44,110,41,123,114,101,116,117,114,110,32,110,91,43,40,110,46,108,101,102,116,61,61,61,116,46,115,105,116,101,41,93,125,88,95,46,112,114,111,116,111,116,121,112,101,61,123,97,114,101,97,83,116,97,114,116,58,78,95,44,97,114,101,97,69,110,100,58,78,95,44,108,105,110,101,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,112,111,105,110,116,61,48,125,44,108,105,110,101,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,112,111,105,110,116,38,38,116,104,105,115,46,95,99,111,110,116,101,120,116,46,99,108,111,115,101,80,97,116,104,40,41,125,44,112,111,105,110,116,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,116,61,43,116,44,110,61,43,110,44,116,104,105,115,46,95,112,111,105,110,116,63,116,104,105,115,46,95,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,116,44,110,41,58,40,116,104,105,115,46,95,112,111,105,110,116,61,49,44,116,104,105,115,46,95,99,111,110,116,101,120,116,46,109,111,118,101,84,111,40,116,44,110,41,41,125,125,44,90,95,46,112,114,111,116,111,116,121,112,101,61,123,97,114,101,97,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,108,105,110,101,61,48,125,44,97,114,101,97,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,108,105,110,101,61,78,97,78,125,44,108,105,110,101,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,120,48,61,116,104,105,115,46,95,120,49,61,116,104,105,115,46,95,121,48,61,116,104,105,115,46,95,121,49,61,116,104,105,115,46,95,116,48,61,78,97,78,44,116,104,105,115,46,95,112,111,105,110,116,61,48,125,44,108,105,110,101,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,115,119,105,116,99,104,40,116,104,105,115,46,95,112,111,105,110,116,41,123,99,97,115,101,32,50,58,116,104,105,115,46,95,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,116,104,105,115,46,95,120,49,44,116,104,105,115,46,95,121,49,41,59,98,114,101,97,107,59,99,97,115,101,32,51,58,87,95,40,116,104,105,115,44,116,104,105,115,46,95,116,48,44,36,95,40,116,104,105,115,44,116,104,105,115,46,95,116,48,41,41,125,40,116,104,105,115,46,95,108,105,110,101,124,124,48,33,61,61,116,104,105,115,46,95,108,105,110,101,38,38,49,61,61,61,116,104,105,115,46,95,112,111,105,110,116,41,38,38,116,104,105,115,46,95,99,111,110,116,101,120,116,46,99,108,111,115,101,80,97,116,104,40,41,44,116,104,105,115,46,95,108,105,110,101,61,49,45,116,104,105,115,46,95,108,105,110,101,125,44,112,111,105,110,116,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,61,78,97,78,59,105,102,40,110,61,43,110,44,40,116,61,43,116,41,33,61,61,116,104,105,115,46,95,120,49,124,124,110,33,61,61,116,104,105,115,46,95,121,49,41,123,115,119,105,116,99,104,40,116,104,105,115,46,95,112,111,105,110,116,41,123,99,97,115,101,32,48,58,116,104,105,115,46,95,112,111,105,110,116,61,49,44,116,104,105,115,46,95,108,105,110,101,63,116,104,105,115,46,95,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,116,44,110,41,58,116,104,105,115,46,95,99,111,110,116,101,120,116,46,109,111,118,101,84,111,40,116,44,110,41,59,98,114,101,97,107,59,99,97,115,101,32,49,58,116,104,105,115,46,95,112,111,105,110,116,61,50,59,98,114,101,97,107,59,99,97,115,101,32,50,58,116,104,105,115,46,95,112,111,105,110,116,61,51,44,87,95,40,116,104,105,115,44,36,95,40,116,104,105,115,44,101,61,71,95,40,116,104,105,115,44,116,44,110,41,41,44,101,41,59,98,114,101,97,107,59,100,101,102,97,117,108,116,58,87,95,40,116,104,105,115,44,116,104,105,115,46,95,116,48,44,101,61,71,95,40,116,104,105,115,44,116,44,110,41,41,125,116,104,105,115,46,95,120,48,61,116,104,105,115,46,95,120,49,44,116,104,105,115,46,95,120,49,61,116,44,116,104,105,115,46,95,121,48,61,116,104,105,115,46,95,121,49,44,116,104,105,115,46,95,121,49,61,110,44,116,104,105,115,46,95,116,48,61,101,125,125,125,44,40,81,95,46,112,114,111,116,111,116,121,112,101,61,79,98,106,101,99,116,46,99,114,101,97,116,101,40,90,95,46,112,114,111,116,111,116,121,112,101,41,41,46,112,111,105,110,116,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,90,95,46,112,114,111,116,111,116,121,112,101,46,112,111,105,110,116,46,99,97,108,108,40,116,104,105,115,44,110,44,116,41,125,44,75,95,46,112,114,111,116,111,116,121,112,101,61,123,109,111,118,101,84,111,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,116,104,105,115,46,95,99,111,110,116,101,120,116,46,109,111,118,101,84,111,40,110,44,116,41,125,44,99,108,111,115,101,80,97,116,104,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,99,111,110,116,101,120,116,46,99,108,111,115,101,80,97,116,104,40,41,125,44,108,105,110,101,84,111,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,116,104,105,115,46,95,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,110,44,116,41,125,44,98,101,122,105,101,114,67,117,114,118,101,84,111,58,102,117,110,99,116,105,111,110,40,116,44,110,44,101,44,114,44,105,44,111,41,123,116,104,105,115,46,95,99,111,110,116,101,120,116,46,98,101,122,105,101,114,67,117,114,118,101,84,111,40,110,44,116,44,114,44,101,44,111,44,105,41,125,125,44,74,95,46,112,114,111,116,111,116,121,112,101,61,123,97,114,101,97,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,108,105,110,101,61,48,125,44,97,114,101,97,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,108,105,110,101,61,78,97,78,125,44,108,105,110,101,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,120,61,91,93,44,116,104,105,115,46,95,121,61,91,93,125,44,108,105,110,101,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,95,120,44,110,61,116,104,105,115,46,95,121,44,101,61,116,46,108,101,110,103,116,104,59,105,102,40,101,41,105,102,40,116,104,105,115,46,95,108,105,110,101,63,116,104,105,115,46,95,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,116,91,48,93,44,110,91,48,93,41,58,116,104,105,115,46,95,99,111,110,116,101,120,116,46,109,111,118,101,84,111,40,116,91,48,93,44,110,91,48,93,41,44,50,61,61,61,101,41,116,104,105,115,46,95,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,116,91,49,93,44,110,91,49,93,41,59,101,108,115,101,32,102,111,114,40,118,97,114,32,114,61,116,98,40,116,41,44,105,61,116,98,40,110,41,44,111,61,48,44,97,61,49,59,97,60,101,59,43,43,111,44,43,43,97,41,116,104,105,115,46,95,99,111,110,116,101,120,116,46,98,101,122,105,101,114,67,117,114,118,101,84,111,40,114,91,48,93,91,111,93,44,105,91,48,93,91,111,93,44,114,91,49,93,91,111,93,44,105,91,49,93,91,111,93,44,116,91,97,93,44,110,91,97,93,41,59,40,116,104,105,115,46,95,108,105,110,101,124,124,48,33,61,61,116,104,105,115,46,95,108,105,110,101,38,38,49,61,61,61,101,41,38,38,116,104,105,115,46,95,99,111,110,116,101,120,116,46,99,108,111,115,101,80,97,116,104,40,41,44,116,104,105,115,46,95,108,105,110,101,61,49,45,116,104,105,115,46,95,108,105,110,101,44,116,104,105,115,46,95,120,61,116,104,105,115,46,95,121,61,110,117,108,108,125,44,112,111,105,110,116,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,116,104,105,115,46,95,120,46,112,117,115,104,40,43,116,41,44,116,104,105,115,46,95,121,46,112,117,115,104,40,43,110,41,125,125,44,110,98,46,112,114,111,116,111,116,121,112,101,61,123,97,114,101,97,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,108,105,110,101,61,48,125,44,97,114,101,97,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,108,105,110,101,61,78,97,78,125,44,108,105,110,101,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,120,61,116,104,105,115,46,95,121,61,78,97,78,44,116,104,105,115,46,95,112,111,105,110,116,61,48,125,44,108,105,110,101,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,48,60,116,104,105,115,46,95,116,38,38,116,104,105,115,46,95,116,60,49,38,38,50,61,61,61,116,104,105,115,46,95,112,111,105,110,116,38,38,116,104,105,115,46,95,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,116,104,105,115,46,95,120,44,116,104,105,115,46,95,121,41,44,40,116,104,105,115,46,95,108,105,110,101,124,124,48,33,61,61,116,104,105,115,46,95,108,105,110,101,38,38,49,61,61,61,116,104,105,115,46,95,112,111,105,110,116,41,38,38,116,104,105,115,46,95,99,111,110,116,101,120,116,46,99,108,111,115,101,80,97,116,104,40,41,44,116,104,105,115,46,95,108,105,110,101,62,61,48,38,38,40,116,104,105,115,46,95,116,61,49,45,116,104,105,115,46,95,116,44,116,104,105,115,46,95,108,105,110,101,61,49,45,116,104,105,115,46,95,108,105,110,101,41,125,44,112,111,105,110,116,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,115,119,105,116,99,104,40,116,61,43,116,44,110,61,43,110,44,116,104,105,115,46,95,112,111,105,110,116,41,123,99,97,115,101,32,48,58,116,104,105,115,46,95,112,111,105,110,116,61,49,44,116,104,105,115,46,95,108,105,110,101,63,116,104,105,115,46,95,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,116,44,110,41,58,116,104,105,115,46,95,99,111,110,116,101,120,116,46,109,111,118,101,84,111,40,116,44,110,41,59,98,114,101,97,107,59,99,97,115,101,32,49,58,116,104,105,115,46,95,112,111,105,110,116,61,50,59,100,101,102,97,117,108,116,58,105,102,40,116,104,105,115,46,95,116,60,61,48,41,116,104,105,115,46,95,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,116,104,105,115,46,95,120,44,110,41,44,116,104,105,115,46,95,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,116,44,110,41,59,101,108,115,101,123,118,97,114,32,101,61,116,104,105,115,46,95,120,42,40,49,45,116,104,105,115,46,95,116,41,43,116,42,116,104,105,115,46,95,116,59,116,104,105,115,46,95,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,101,44,116,104,105,115,46,95,121,41,44,116,104,105,115,46,95,99,111,110,116,101,120,116,46,108,105,110,101,84,111,40,101,44,110,41,125,125,116,104,105,115,46,95,120,61,116,44,116,104,105,115,46,95,121,61,110,125,125,44,104,98,46,112,114,111,116,111,116,121,112,101,61,123,99,111,110,115,116,114,117,99,116,111,114,58,104,98,44,105,110,115,101,114,116,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,44,114,44,105,59,105,102,40,116,41,123,105,102,40,110,46,80,61,116,44,110,46,78,61,116,46,78,44,116,46,78,38,38,40,116,46,78,46,80,61,110,41,44,116,46,78,61,110,44,116,46,82,41,123,102,111,114,40,116,61,116,46,82,59,116,46,76,59,41,116,61,116,46,76,59,116,46,76,61,110,125,101,108,115,101,32,116,46,82,61,110,59,101,61,116,125,101,108,115,101,32,116,104,105,115,46,95,63,40,116,61,103,98,40,116,104,105,115,46,95,41,44,110,46,80,61,110,117,108,108,44,110,46,78,61,116,44,116,46,80,61,116,46,76,61,110,44,101,61,116,41,58,40,110,46,80,61,110,46,78,61,110,117,108,108,44,116,104,105,115,46,95,61,110,44,101,61,110,117,108,108,41,59,102,111,114,40,110,46,76,61,110,46,82,61,110,117,108,108,44,110,46,85,61,101,44,110,46,67,61,33,48,44,116,61,110,59,101,38,38,101,46,67,59,41,101,61,61,61,40,114,61,101,46,85,41,46,76,63,40,105,61,114,46,82,41,38,38,105,46,67,63,40,101,46,67,61,105,46,67,61,33,49,44,114,46,67,61,33,48,44,116,61,114,41,58,40,116,61,61,61,101,46,82,38,38,40,112,98,40,116,104,105,115,44,101,41,44,101,61,40,116,61,101,41,46,85,41,44,101,46,67,61,33,49,44,114,46,67,61,33,48,44,118,98,40,116,104,105,115,44,114,41,41,58,40,105,61,114,46,76,41,38,38,105,46,67,63,40,101,46,67,61,105,46,67,61,33,49,44,114,46,67,61,33,48,44,116,61,114,41,58,40,116,61,61,61,101,46,76,38,38,40,118,98,40,116,104,105,115,44,101,41,44,101,61,40,116,61,101,41,46,85,41,44,101,46,67,61,33,49,44,114,46,67,61,33,48,44,112,98,40,116,104,105,115,44,114,41,41,44,101,61,116,46,85,59,116,104,105,115,46,95,46,67,61,33,49,125,44,114,101,109,111,118,101,58,102,117,110,99,116,105,111,110,40,116,41,123,116,46,78,38,38,40,116,46,78,46,80,61,116,46,80,41,44,116,46,80,38,38,40,116,46,80,46,78,61,116,46,78,41,44,116,46,78,61,116,46,80,61,110,117,108,108,59,118,97,114,32,110,44,101,44,114,44,105,61,116,46,85,44,111,61,116,46,76,44,97,61,116,46,82,59,105,102,40,101,61,111,63,97,63,103,98,40,97,41,58,111,58,97,44,105,63,105,46,76,61,61,61,116,63,105,46,76,61,101,58,105,46,82,61,101,58,116,104,105,115,46,95,61,101,44,111,38,38,97,63,40,114,61,101,46,67,44,101,46,67,61,116,46,67,44,101,46,76,61,111,44,111,46,85,61,101,44,101,33,61,61,97,63,40,105,61,101,46,85,44,101,46,85,61,116,46,85,44,116,61,101,46,82,44,105,46,76,61,116,44,101,46,82,61,97,44,97,46,85,61,101,41,58,40,101,46,85,61,105,44,105,61,101,44,116,61,101,46,82,41,41,58,40,114,61,116,46,67,44,116,61,101,41,44,116,38,38,40,116,46,85,61,105,41,44,33,114,41,105,102,40,116,38,38,116,46,67,41,116,46,67,61,33,49,59,101,108,115,101,123,100,111,123,105,102,40,116,61,61,61,116,104,105,115,46,95,41,98,114,101,97,107,59,105,102,40,116,61,61,61,105,46,76,41,123,105,102,40,40,110,61,105,46,82,41,46,67,38,38,40,110,46,67,61,33,49,44,105,46,67,61,33,48,44,112,98,40,116,104,105,115,44,105,41,44,110,61,105,46,82,41,44,110,46,76,38,38,110,46,76,46,67,124,124,110,46,82,38,38,110,46,82,46,67,41,123,110,46,82,38,38,110,46,82,46,67,124,124,40,110,46,76,46,67,61,33,49,44,110,46,67,61,33,48,44,118,98,40,116,104,105,115,44,110,41,44,110,61,105,46,82,41,44,110,46,67,61,105,46,67,44,105,46,67,61,110,46,82,46,67,61,33,49,44,112,98,40,116,104,105,115,44,105,41,44,116,61,116,104,105,115,46,95,59,98,114,101,97,107,125,125,101,108,115,101,32,105,102,40,40,110,61,105,46,76,41,46,67,38,38,40,110,46,67,61,33,49,44,105,46,67,61,33,48,44,118,98,40,116,104,105,115,44,105,41,44,110,61,105,46,76,41,44,110,46,76,38,38,110,46,76,46,67,124,124,110,46,82,38,38,110,46,82,46,67,41,123,110,46,76,38,38,110,46,76,46,67,124,124,40,110,46,82,46,67,61,33,49,44,110,46,67,61,33,48,44,112,98,40,116,104,105,115,44,110,41,44,110,61,105,46,76,41,44,110,46,67,61,105,46,67,44,105,46,67,61,110,46,76,46,67,61,33,49,44,118,98,40,116,104,105,115,44,105,41,44,116,61,116,104,105,115,46,95,59,98,114,101,97,107,125,110,46,67,61,33,48,44,116,61,105,44,105,61,105,46,85,125,119,104,105,108,101,40,33,116,46,67,41,59,116,38,38,40,116,46,67,61,33,49,41,125,125,125,59,118,97,114,32,84,98,44,65,98,61,91,93,59,102,117,110,99,116,105,111,110,32,83,98,40,41,123,100,98,40,116,104,105,115,41,44,116,104,105,115,46,120,61,116,104,105,115,46,121,61,116,104,105,115,46,97,114,99,61,116,104,105,115,46,115,105,116,101,61,116,104,105,115,46,99,121,61,110,117,108,108,125,102,117,110,99,116,105,111,110,32,107,98,40,116,41,123,118,97,114,32,110,61,116,46,80,44,101,61,116,46,78,59,105,102,40,110,38,38,101,41,123,118,97,114,32,114,61,110,46,115,105,116,101,44,105,61,116,46,115,105,116,101,44,111,61,101,46,115,105,116,101,59,105,102,40,114,33,61,61,111,41,123,118,97,114,32,97,61,105,91,48,93,44,117,61,105,91,49,93,44,99,61,114,91,48,93,45,97,44,102,61,114,91,49,93,45,117,44,115,61,111,91,48,93,45,97,44,108,61,111,91,49,93,45,117,44,104,61,50,42,40,99,42,108,45,102,42,115,41,59,105,102,40,33,40,104,62,61,45,72,98,41,41,123,118,97,114,32,100,61,99,42,99,43,102,42,102,44,112,61,115,42,115,43,108,42,108,44,118,61,40,108,42,100,45,102,42,112,41,47,104,44,103,61,40,99,42,112,45,115,42,100,41,47,104,44,121,61,65,98,46,112,111,112,40,41,124,124,110,101,119,32,83,98,59,121,46,97,114,99,61,116,44,121,46,115,105,116,101,61,105,44,121,46,120,61,118,43,97,44,121,46,121,61,40,121,46,99,121,61,103,43,117,41,43,77,97,116,104,46,115,113,114,116,40,118,42,118,43,103,42,103,41,44,116,46,99,105,114,99,108,101,61,121,59,102,111,114,40,118,97,114,32,95,61,110,117,108,108,44,98,61,70,98,46,95,59,98,59,41,105,102,40,121,46,121,60,98,46,121,124,124,121,46,121,61,61,61,98,46,121,38,38,121,46,120,60,61,98,46,120,41,123,105,102,40,33,98,46,76,41,123,95,61,98,46,80,59,98,114,101,97,107,125,98,61,98,46,76,125,101,108,115,101,123,105,102,40,33,98,46,82,41,123,95,61,98,59,98,114,101,97,107,125,98,61,98,46,82,125,70,98,46,105,110,115,101,114,116,40,95,44,121,41,44,95,124,124,40,84,98,61,121,41,125,125,125,125,102,117,110,99,116,105,111,110,32,69,98,40,116,41,123,118,97,114,32,110,61,116,46,99,105,114,99,108,101,59,110,38,38,40,110,46,80,124,124,40,84,98,61,110,46,78,41,44,70,98,46,114,101,109,111,118,101,40,110,41,44,65,98,46,112,117,115,104,40,110,41,44,100,98,40,110,41,44,116,46,99,105,114,99,108,101,61,110,117,108,108,41,125,118,97,114,32,67,98,61,91,93,59,102,117,110,99,116,105,111,110,32,80,98,40,41,123,100,98,40,116,104,105,115,41,44,116,104,105,115,46,101,100,103,101,61,116,104,105,115,46,115,105,116,101,61,116,104,105,115,46,99,105,114,99,108,101,61,110,117,108,108,125,102,117,110,99,116,105,111,110,32,122,98,40,116,41,123,118,97,114,32,110,61,67,98,46,112,111,112,40,41,124,124,110,101,119,32,80,98,59,114,101,116,117,114,110,32,110,46,115,105,116,101,61,116,44,110,125,102,117,110,99,116,105,111,110,32,82,98,40,116,41,123,69,98,40,116,41,44,79,98,46,114,101,109,111,118,101,40,116,41,44,67,98,46,112,117,115,104,40,116,41,44,100,98,40,116,41,125,102,117,110,99,116,105,111,110,32,68,98,40,116,41,123,118,97,114,32,110,61,116,46,99,105,114,99,108,101,44,101,61,110,46,120,44,114,61,110,46,99,121,44,105,61,91,101,44,114,93,44,111,61,116,46,80,44,97,61,116,46,78,44,117,61,91,116,93,59,82,98,40,116,41,59,102,111,114,40,118,97,114,32,99,61,111,59,99,46,99,105,114,99,108,101,38,38,77,97,116,104,46,97,98,115,40,101,45,99,46,99,105,114,99,108,101,46,120,41,60,73,98,38,38,77,97,116,104,46,97,98,115,40,114,45,99,46,99,105,114,99,108,101,46,99,121,41,60,73,98,59,41,111,61,99,46,80,44,117,46,117,110,115,104,105,102,116,40,99,41,44,82,98,40,99,41,44,99,61,111,59,117,46,117,110,115,104,105,102,116,40,99,41,44,69,98,40,99,41,59,102,111,114,40,118,97,114,32,102,61,97,59,102,46,99,105,114,99,108,101,38,38,77,97,116,104,46,97,98,115,40,101,45,102,46,99,105,114,99,108,101,46,120,41,60,73,98,38,38,77,97,116,104,46,97,98,115,40,114,45,102,46,99,105,114,99,108,101,46,99,121,41,60,73,98,59,41,97,61,102,46,78,44,117,46,112,117,115,104,40,102,41,44,82,98,40,102,41,44,102,61,97,59,117,46,112,117,115,104,40,102,41,44,69,98,40,102,41,59,118,97,114,32,115,44,108,61,117,46,108,101,110,103,116,104,59,102,111,114,40,115,61,49,59,115,60,108,59,43,43,115,41,102,61,117,91,115,93,44,99,61,117,91,115,45,49,93,44,98,98,40,102,46,101,100,103,101,44,99,46,115,105,116,101,44,102,46,115,105,116,101,44,105,41,59,99,61,117,91,48,93,44,40,102,61,117,91,108,45,49,93,41,46,101,100,103,101,61,121,98,40,99,46,115,105,116,101,44,102,46,115,105,116,101,44,110,117,108,108,44,105,41,44,107,98,40,99,41,44,107,98,40,102,41,125,102,117,110,99,116,105,111,110,32,113,98,40,116,41,123,102,111,114,40,118,97,114,32,110,44,101,44,114,44,105,44,111,61,116,91,48,93,44,97,61,116,91,49,93,44,117,61,79,98,46,95,59,117,59,41,105,102,40,40,114,61,76,98,40,117,44,97,41,45,111,41,62,73,98,41,117,61,117,46,76,59,101,108,115,101,123,105,102,40,33,40,40,105,61,111,45,85,98,40,117,44,97,41,41,62,73,98,41,41,123,114,62,45,73,98,63,40,110,61,117,46,80,44,101,61,117,41,58,105,62,45,73,98,63,40,110,61,117,44,101,61,117,46,78,41,58,110,61,101,61,117,59,98,114,101,97,107,125,105,102,40,33,117,46,82,41,123,110,61,117,59,98,114,101,97,107,125,117,61,117,46,82,125,33,102,117,110,99,116,105,111,110,40,116,41,123,66,98,91,116,46,105,110,100,101,120,93,61,123,115,105,116,101,58,116,44,104,97,108,102,101,100,103,101,115,58,91,93,125,125,40,116,41,59,118,97,114,32,99,61,122,98,40,116,41,59,105,102,40,79,98,46,105,110,115,101,114,116,40,110,44,99,41,44,110,124,124,101,41,123,105,102,40,110,61,61,61,101,41,114,101,116,117,114,110,32,69,98,40,110,41,44,101,61,122,98,40,110,46,115,105,116,101,41,44,79,98,46,105,110,115,101,114,116,40,99,44,101,41,44,99,46,101,100,103,101,61,101,46,101,100,103,101,61,121,98,40,110,46,115,105,116,101,44,99,46,115,105,116,101,41,44,107,98,40,110,41,44,118,111,105,100,32,107,98,40,101,41,59,105,102,40,101,41,123,69,98,40,110,41,44,69,98,40,101,41,59,118,97,114,32,102,61,110,46,115,105,116,101,44,115,61,102,91,48,93,44,108,61,102,91,49,93,44,104,61,116,91,48,93,45,115,44,100,61,116,91,49,93,45,108,44,112,61,101,46,115,105,116,101,44,118,61,112,91,48,93,45,115,44,103,61,112,91,49,93,45,108,44,121,61,50,42,40,104,42,103,45,100,42,118,41,44,95,61,104,42,104,43,100,42,100,44,98,61,118,42,118,43,103,42,103,44,109,61,91,40,103,42,95,45,100,42,98,41,47,121,43,115,44,40,104,42,98,45,118,42,95,41,47,121,43,108,93,59,98,98,40,101,46,101,100,103,101,44,102,44,112,44,109,41,44,99,46,101,100,103,101,61,121,98,40,102,44,116,44,110,117,108,108,44,109,41,44,101,46,101,100,103,101,61,121,98,40,116,44,112,44,110,117,108,108,44,109,41,44,107,98,40,110,41,44,107,98,40,101,41,125,101,108,115,101,32,99,46,101,100,103,101,61,121,98,40,110,46,115,105,116,101,44,99,46,115,105,116,101,41,125,125,102,117,110,99,116,105,111,110,32,76,98,40,116,44,110,41,123,118,97,114,32,101,61,116,46,115,105,116,101,44,114,61,101,91,48,93,44,105,61,101,91,49,93,44,111,61,105,45,110,59,105,102,40,33,111,41,114,101,116,117,114,110,32,114,59,118,97,114,32,97,61,116,46,80,59,105,102,40,33,97,41,114,101,116,117,114,110,45,49,47,48,59,118,97,114,32,117,61,40,101,61,97,46,115,105,116,101,41,91,48,93,44,99,61,101,91,49,93,44,102,61,99,45,110,59,105,102,40,33,102,41,114,101,116,117,114,110,32,117,59,118,97,114,32,115,61,117,45,114,44,108,61,49,47,111,45,49,47,102,44,104,61,115,47,102,59,114,101,116,117,114,110,32,108,63,40,45,104,43,77,97,116,104,46,115,113,114,116,40,104,42,104,45,50,42,108,42,40,115,42,115,47,40,45,50,42,102,41,45,99,43,102,47,50,43,105,45,111,47,50,41,41,41,47,108,43,114,58,40,114,43,117,41,47,50,125,102,117,110,99,116,105,111,110,32,85,98,40,116,44,110,41,123,118,97,114,32,101,61,116,46,78,59,105,102,40,101,41,114,101,116,117,114,110,32,76,98,40,101,44,110,41,59,118,97,114,32,114,61,116,46,115,105,116,101,59,114,101,116,117,114,110,32,114,91,49,93,61,61,61,110,63,114,91,48,93,58,49,47,48,125,118,97,114,32,79,98,44,66,98,44,70,98,44,89,98,44,73,98,61,49,101,45,54,44,72,98,61,49,101,45,49,50,59,102,117,110,99,116,105,111,110,32,106,98,40,116,44,110,44,101,41,123,114,101,116,117,114,110,40,116,91,48,93,45,101,91,48,93,41,42,40,110,91,49,93,45,116,91,49,93,41,45,40,116,91,48,93,45,110,91,48,93,41,42,40,101,91,49,93,45,116,91,49,93,41,125,102,117,110,99,116,105,111,110,32,88,98,40,116,44,110,41,123,114,101,116,117,114,110,32,110,91,49,93,45,116,91,49,93,124,124,110,91,48,93,45,116,91,48,93,125,102,117,110,99,116,105,111,110,32,86,98,40,116,44,110,41,123,118,97,114,32,101,44,114,44,105,44,111,61,116,46,115,111,114,116,40,88,98,41,46,112,111,112,40,41,59,102,111,114,40,89,98,61,91,93,44,66,98,61,110,101,119,32,65,114,114,97,121,40,116,46,108,101,110,103,116,104,41,44,79,98,61,110,101,119,32,104,98,44,70,98,61,110,101,119,32,104,98,59,59,41,105,102,40,105,61,84,98,44,111,38,38,40,33,105,124,124,111,91,49,93,60,105,46,121,124,124,111,91,49,93,61,61,61,105,46,121,38,38,111,91,48,93,60,105,46,120,41,41,111,91,48,93,61,61,61,101,38,38,111,91,49,93,61,61,61,114,124,124,40,113,98,40,111,41,44,101,61,111,91,48,93,44,114,61,111,91,49,93,41,44,111,61,116,46,112,111,112,40,41,59,101,108,115,101,123,105,102,40,33,105,41,98,114,101,97,107,59,68,98,40,105,46,97,114,99,41,125,105,102,40,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,118,97,114,32,116,44,110,44,101,44,114,44,105,61,48,44,111,61,66,98,46,108,101,110,103,116,104,59,105,60,111,59,43,43,105,41,105,102,40,40,116,61,66,98,91,105,93,41,38,38,40,114,61,40,110,61,116,46,104,97,108,102,101,100,103,101,115,41,46,108,101,110,103,116,104,41,41,123,118,97,114,32,97,61,110,101,119,32,65,114,114,97,121,40,114,41,44,117,61,110,101,119,32,65,114,114,97,121,40,114,41,59,102,111,114,40,101,61,48,59,101,60,114,59,43,43,101,41,97,91,101,93,61,101,44,117,91,101,93,61,119,98,40,116,44,89,98,91,110,91,101,93,93,41,59,102,111,114,40,97,46,115,111,114,116,40,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,117,91,110,93,45,117,91,116,93,125,41,44,101,61,48,59,101,60,114,59,43,43,101,41,117,91,101,93,61,110,91,97,91,101,93,93,59,102,111,114,40,101,61,48,59,101,60,114,59,43,43,101,41,110,91,101,93,61,117,91,101,93,125,125,40,41,44,110,41,123,118,97,114,32,97,61,43,110,91,48,93,91,48,93,44,117,61,43,110,91,48,93,91,49,93,44,99,61,43,110,91,49,93,91,48,93,44,102,61,43,110,91,49,93,91,49,93,59,33,102,117,110,99,116,105,111,110,40,116,44,110,44,101,44,114,41,123,102,111,114,40,118,97,114,32,105,44,111,61,89,98,46,108,101,110,103,116,104,59,111,45,45,59,41,120,98,40,105,61,89,98,91,111,93,44,116,44,110,44,101,44,114,41,38,38,109,98,40,105,44,116,44,110,44,101,44,114,41,38,38,40,77,97,116,104,46,97,98,115,40,105,91,48,93,91,48,93,45,105,91,49,93,91,48,93,41,62,73,98,124,124,77,97,116,104,46,97,98,115,40,105,91,48,93,91,49,93,45,105,91,49,93,91,49,93,41,62,73,98,41,124,124,100,101,108,101,116,101,32,89,98,91,111,93,125,40,97,44,117,44,99,44,102,41,44,102,117,110,99,116,105,111,110,40,116,44,110,44,101,44,114,41,123,118,97,114,32,105,44,111,44,97,44,117,44,99,44,102,44,115,44,108,44,104,44,100,44,112,44,118,44,103,61,66,98,46,108,101,110,103,116,104,44,121,61,33,48,59,102,111,114,40,105,61,48,59,105,60,103,59,43,43,105,41,105,102,40,111,61,66,98,91,105,93,41,123,102,111,114,40,97,61,111,46,115,105,116,101,44,117,61,40,99,61,111,46,104,97,108,102,101,100,103,101,115,41,46,108,101,110,103,116,104,59,117,45,45,59,41,89,98,91,99,91,117,93,93,124,124,99,46,115,112,108,105,99,101,40,117,44,49,41,59,102,111,114,40,117,61,48,44,102,61,99,46,108,101,110,103,116,104,59,117,60,102,59,41,112,61,40,100,61,78,98,40,111,44,89,98,91,99,91,117,93,93,41,41,91,48,93,44,118,61,100,91,49,93,44,108,61,40,115,61,77,98,40,111,44,89,98,91,99,91,43,43,117,37,102,93,93,41,41,91,48,93,44,104,61,115,91,49,93,44,40,77,97,116,104,46,97,98,115,40,112,45,108,41,62,73,98,124,124,77,97,116,104,46,97,98,115,40,118,45,104,41,62,73,98,41,38,38,40,99,46,115,112,108,105,99,101,40,117,44,48,44,89,98,46,112,117,115,104,40,95,98,40,97,44,100,44,77,97,116,104,46,97,98,115,40,112,45,116,41,60,73,98,38,38,114,45,118,62,73,98,63,91,116,44,77,97,116,104,46,97,98,115,40,108,45,116,41,60,73,98,63,104,58,114,93,58,77,97,116,104,46,97,98,115,40,118,45,114,41,60,73,98,38,38,101,45,112,62,73,98,63,91,77,97,116,104,46,97,98,115,40,104,45,114,41,60,73,98,63,108,58,101,44,114,93,58,77,97,116,104,46,97,98,115,40,112,45,101,41,60,73,98,38,38,118,45,110,62,73,98,63,91,101,44,77,97,116,104,46,97,98,115,40,108,45,101,41,60,73,98,63,104,58,110,93,58,77,97,116,104,46,97,98,115,40,118,45,110,41,60,73,98,38,38,112,45,116,62,73,98,63,91,77,97,116,104,46,97,98,115,40,104,45,110,41,60,73,98,63,108,58,116,44,110,93,58,110,117,108,108,41,41,45,49,41,44,43,43,102,41,59,102,38,38,40,121,61,33,49,41,125,105,102,40,121,41,123,118,97,114,32,95,44,98,44,109,44,120,61,49,47,48,59,102,111,114,40,105,61,48,44,121,61,110,117,108,108,59,105,60,103,59,43,43,105,41,40,111,61,66,98,91,105,93,41,38,38,40,109,61,40,95,61,40,97,61,111,46,115,105,116,101,41,91,48,93,45,116,41,42,95,43,40,98,61,97,91,49,93,45,110,41,42,98,41,60,120,38,38,40,120,61,109,44,121,61,111,41,59,105,102,40,121,41,123,118,97,114,32,119,61,91,116,44,110,93,44,77,61,91,116,44,114,93,44,78,61,91,101,44,114,93,44,84,61,91,101,44,110,93,59,121,46,104,97,108,102,101,100,103,101,115,46,112,117,115,104,40,89,98,46,112,117,115,104,40,95,98,40,97,61,121,46,115,105,116,101,44,119,44,77,41,41,45,49,44,89,98,46,112,117,115,104,40,95,98,40,97,44,77,44,78,41,41,45,49,44,89,98,46,112,117,115,104,40,95,98,40,97,44,78,44,84,41,41,45,49,44,89,98,46,112,117,115,104,40,95,98,40,97,44,84,44,119,41,41,45,49,41,125,125,102,111,114,40,105,61,48,59,105,60,103,59,43,43,105,41,40,111,61,66,98,91,105,93,41,38,38,40,111,46,104,97,108,102,101,100,103,101,115,46,108,101,110,103,116,104,124,124,100,101,108,101,116,101,32,66,98,91,105,93,41,125,40,97,44,117,44,99,44,102,41,125,116,104,105,115,46,101,100,103,101,115,61,89,98,44,116,104,105,115,46,99,101,108,108,115,61,66,98,44,79,98,61,70,98,61,89,98,61,66,98,61,110,117,108,108,125,102,117,110,99,116,105,111,110,32,71,98,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,125,125,102,117,110,99,116,105,111,110,32,36,98,40,116,44,110,44,101,41,123,116,104,105,115,46,116,97,114,103,101,116,61,116,44,116,104,105,115,46,116,121,112,101,61,110,44,116,104,105,115,46,116,114,97,110,115,102,111,114,109,61,101,125,102,117,110,99,116,105,111,110,32,87,98,40,116,44,110,44,101,41,123,116,104,105,115,46,107,61,116,44,116,104,105,115,46,120,61,110,44,116,104,105,115,46,121,61,101,125,86,98,46,112,114,111,116,111,116,121,112,101,61,123,99,111,110,115,116,114,117,99,116,111,114,58,86,98,44,112,111,108,121,103,111,110,115,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,101,100,103,101,115,59,114,101,116,117,114,110,32,116,104,105,115,46,99,101,108,108,115,46,109,97,112,40,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,101,61,110,46,104,97,108,102,101,100,103,101,115,46,109,97,112,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,77,98,40,110,44,116,91,101,93,41,125,41,59,114,101,116,117,114,110,32,101,46,100,97,116,97,61,110,46,115,105,116,101,46,100,97,116,97,44,101,125,41,125,44,116,114,105,97,110,103,108,101,115,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,91,93,44,110,61,116,104,105,115,46,101,100,103,101,115,59,114,101,116,117,114,110,32,116,104,105,115,46,99,101,108,108,115,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,101,44,114,41,123,105,102,40,111,61,40,105,61,101,46,104,97,108,102,101,100,103,101,115,41,46,108,101,110,103,116,104,41,102,111,114,40,118,97,114,32,105,44,111,44,97,44,117,61,101,46,115,105,116,101,44,99,61,45,49,44,102,61,110,91,105,91,111,45,49,93,93,44,115,61,102,46,108,101,102,116,61,61,61,117,63,102,46,114,105,103,104,116,58,102,46,108,101,102,116,59,43,43,99,60,111,59,41,97,61,115,44,115,61,40,102,61,110,91,105,91,99,93,93,41,46,108,101,102,116,61,61,61,117,63,102,46,114,105,103,104,116,58,102,46,108,101,102,116,44,97,38,38,115,38,38,114,60,97,46,105,110,100,101,120,38,38,114,60,115,46,105,110,100,101,120,38,38,106,98,40,117,44,97,44,115,41,60,48,38,38,116,46,112,117,115,104,40,91,117,46,100,97,116,97,44,97,46,100,97,116,97,44,115,46,100,97,116,97,93,41,125,41,44,116,125,44,108,105,110,107,115,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,100,103,101,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,114,105,103,104,116,125,41,46,109,97,112,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,123,115,111,117,114,99,101,58,116,46,108,101,102,116,46,100,97,116,97,44,116,97,114,103,101,116,58,116,46,114,105,103,104,116,46,100,97,116,97,125,125,41,125,44,102,105,110,100,58,102,117,110,99,116,105,111,110,40,116,44,110,44,101,41,123,102,111,114,40,118,97,114,32,114,44,105,44,111,61,116,104,105,115,44,97,61,111,46,95,102,111,117,110,100,124,124,48,44,117,61,111,46,99,101,108,108,115,46,108,101,110,103,116,104,59,33,40,105,61,111,46,99,101,108,108,115,91,97,93,41,59,41,105,102,40,43,43,97,62,61,117,41,114,101,116,117,114,110,32,110,117,108,108,59,118,97,114,32,99,61,116,45,105,46,115,105,116,101,91,48,93,44,102,61,110,45,105,46,115,105,116,101,91,49,93,44,115,61,99,42,99,43,102,42,102,59,100,111,123,105,61,111,46,99,101,108,108,115,91,114,61,97,93,44,97,61,110,117,108,108,44,105,46,104,97,108,102,101,100,103,101,115,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,114,61,111,46,101,100,103,101,115,91,101,93,44,117,61,114,46,108,101,102,116,59,105,102,40,117,33,61,61,105,46,115,105,116,101,38,38,117,124,124,40,117,61,114,46,114,105,103,104,116,41,41,123,118,97,114,32,99,61,116,45,117,91,48,93,44,102,61,110,45,117,91,49,93,44,108,61,99,42,99,43,102,42,102,59,108,60,115,38,38,40,115,61,108,44,97,61,117,46,105,110,100,101,120,41,125,125,41,125,119,104,105,108,101,40,110,117,108,108,33,61,61,97,41,59,114,101,116,117,114,110,32,111,46,95,102,111,117,110,100,61,114,44,110,117,108,108,61,61,101,124,124,115,60,61,101,42,101,63,105,46,115,105,116,101,58,110,117,108,108,125,125,44,87,98,46,112,114,111,116,111,116,121,112,101,61,123,99,111,110,115,116,114,117,99,116,111,114,58,87,98,44,115,99,97,108,101,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,49,61,61,61,116,63,116,104,105,115,58,110,101,119,32,87,98,40,116,104,105,115,46,107,42,116,44,116,104,105,115,46,120,44,116,104,105,115,46,121,41,125,44,116,114,97,110,115,108,97,116,101,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,48,61,61,61,116,38,48,61,61,61,110,63,116,104,105,115,58,110,101,119,32,87,98,40,116,104,105,115,46,107,44,116,104,105,115,46,120,43,116,104,105,115,46,107,42,116,44,116,104,105,115,46,121,43,116,104,105,115,46,107,42,110,41,125,44,97,112,112,108,121,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,91,116,91,48,93,42,116,104,105,115,46,107,43,116,104,105,115,46,120,44,116,91,49,93,42,116,104,105,115,46,107,43,116,104,105,115,46,121,93,125,44,97,112,112,108,121,88,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,42,116,104,105,115,46,107,43,116,104,105,115,46,120,125,44,97,112,112,108,121,89,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,42,116,104,105,115,46,107,43,116,104,105,115,46,121,125,44,105,110,118,101,114,116,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,91,40,116,91,48,93,45,116,104,105,115,46,120,41,47,116,104,105,115,46,107,44,40,116,91,49,93,45,116,104,105,115,46,121,41,47,116,104,105,115,46,107,93,125,44,105,110,118,101,114,116,88,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,40,116,45,116,104,105,115,46,120,41,47,116,104,105,115,46,107,125,44,105,110,118,101,114,116,89,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,40,116,45,116,104,105,115,46,121,41,47,116,104,105,115,46,107,125,44,114,101,115,99,97,108,101,88,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,99,111,112,121,40,41,46,100,111,109,97,105,110,40,116,46,114,97,110,103,101,40,41,46,109,97,112,40,116,104,105,115,46,105,110,118,101,114,116,88,44,116,104,105,115,41,46,109,97,112,40,116,46,105,110,118,101,114,116,44,116,41,41,125,44,114,101,115,99,97,108,101,89,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,99,111,112,121,40,41,46,100,111,109,97,105,110,40,116,46,114,97,110,103,101,40,41,46,109,97,112,40,116,104,105,115,46,105,110,118,101,114,116,89,44,116,104,105,115,41,46,109,97,112,40,116,46,105,110,118,101,114,116,44,116,41,41,125,44,116,111,83,116,114,105,110,103,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,34,116,114,97,110,115,108,97,116,101,40,34,43,116,104,105,115,46,120,43,34,44,34,43,116,104,105,115,46,121,43,34,41,32,115,99,97,108,101,40,34,43,116,104,105,115,46,107,43,34,41,34,125,125,59,118,97,114,32,90,98,61,110,101,119,32,87,98,40,49,44,48,44,48,41,59,102,117,110,99,116,105,111,110,32,81,98,40,116,41,123,102,111,114,40,59,33,116,46,95,95,122,111,111,109,59,41,105,102,40,33,40,116,61,116,46,112,97,114,101,110,116,78,111,100,101,41,41,114,101,116,117,114,110,32,90,98,59,114,101,116,117,114,110,32,116,46,95,95,122,111,111,109,125,102,117,110,99,116,105,111,110,32,75,98,40,41,123,116,46,101,118,101,110,116,46,115,116,111,112,73,109,109,101,100,105,97,116,101,80,114,111,112,97,103,97,116,105,111,110,40,41,125,102,117,110,99,116,105,111,110,32,74,98,40,41,123,116,46,101,118,101,110,116,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,116,46,101,118,101,110,116,46,115,116,111,112,73,109,109,101,100,105,97,116,101,80,114,111,112,97,103,97,116,105,111,110,40,41,125,102,117,110,99,116,105,111,110,32,116,109,40,41,123,114,101,116,117,114,110,33,116,46,101,118,101,110,116,46,99,116,114,108,75,101,121,38,38,33,116,46,101,118,101,110,116,46,98,117,116,116,111,110,125,102,117,110,99,116,105,111,110,32,110,109,40,41,123,118,97,114,32,116,61,116,104,105,115,59,114,101,116,117,114,110,32,116,32,105,110,115,116,97,110,99,101,111,102,32,83,86,71,69,108,101,109,101,110,116,63,40,116,61,116,46,111,119,110,101,114,83,86,71,69,108,101,109,101,110,116,124,124,116,41,46,104,97,115,65,116,116,114,105,98,117,116,101,40,34,118,105,101,119,66,111,120,34,41,63,91,91,40,116,61,116,46,118,105,101,119,66,111,120,46,98,97,115,101,86,97,108,41,46,120,44,116,46,121,93,44,91,116,46,120,43,116,46,119,105,100,116,104,44,116,46,121,43,116,46,104,101,105,103,104,116,93,93,58,91,91,48,44,48,93,44,91,116,46,119,105,100,116,104,46,98,97,115,101,86,97,108,46,118,97,108,117,101,44,116,46,104,101,105,103,104,116,46,98,97,115,101,86,97,108,46,118,97,108,117,101,93,93,58,91,91,48,44,48,93,44,91,116,46,99,108,105,101,110,116,87,105,100,116,104,44,116,46,99,108,105,101,110,116,72,101,105,103,104,116,93,93,125,102,117,110,99,116,105,111,110,32,101,109,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,95,122,111,111,109,124,124,90,98,125,102,117,110,99,116,105,111,110,32,114,109,40,41,123,114,101,116,117,114,110,45,116,46,101,118,101,110,116,46,100,101,108,116,97,89,42,40,49,61,61,61,116,46,101,118,101,110,116,46,100,101,108,116,97,77,111,100,101,63,46,48,53,58,116,46,101,118,101,110,116,46,100,101,108,116,97,77,111,100,101,63,49,58,46,48,48,50,41,125,102,117,110,99,116,105,111,110,32,105,109,40,41,123,114,101,116,117,114,110,32,110,97,118,105,103,97,116,111,114,46,109,97,120,84,111,117,99,104,80,111,105,110,116,115,124,124,34,111,110,116,111,117,99,104,115,116,97,114,116,34,105,110,32,116,104,105,115,125,102,117,110,99,116,105,111,110,32,111,109,40,116,44,110,44,101,41,123,118,97,114,32,114,61,116,46,105,110,118,101,114,116,88,40,110,91,48,93,91,48,93,41,45,101,91,48,93,91,48,93,44,105,61,116,46,105,110,118,101,114,116,88,40,110,91,49,93,91,48,93,41,45,101,91,49,93,91,48,93,44,111,61,116,46,105,110,118,101,114,116,89,40,110,91,48,93,91,49,93,41,45,101,91,48,93,91,49,93,44,97,61,116,46,105,110,118,101,114,116,89,40,110,91,49,93,91,49,93,41,45,101,91,49,93,91,49,93,59,114,101,116,117,114,110,32,116,46,116,114,97,110,115,108,97,116,101,40,105,62,114,63,40,114,43,105,41,47,50,58,77,97,116,104,46,109,105,110,40,48,44,114,41,124,124,77,97,116,104,46,109,97,120,40,48,44,105,41,44,97,62,111,63,40,111,43,97,41,47,50,58,77,97,116,104,46,109,105,110,40,48,44,111,41,124,124,77,97,116,104,46,109,97,120,40,48,44,97,41,41,125,81,98,46,112,114,111,116,111,116,121,112,101,61,87,98,46,112,114,111,116,111,116,121,112,101,44,116,46,70,111,114,109,97,116,83,112,101,99,105,102,105,101,114,61,66,97,44,116,46,97,99,116,105,118,101,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,44,114,44,105,61,116,46,95,95,116,114,97,110,115,105,116,105,111,110,59,105,102,40,105,41,102,111,114,40,114,32,105,110,32,110,61,110,117,108,108,61,61,110,63,110,117,108,108,58,110,43,34,34,44,105,41,105,102,40,40,101,61,105,91,114,93,41,46,115,116,97,116,101,62,120,114,38,38,101,46,110,97,109,101,61,61,61,110,41,114,101,116,117,114,110,32,110,101,119,32,85,114,40,91,91,116,93,93,44,121,105,44,110,44,43,114,41,59,114,101,116,117,114,110,32,110,117,108,108,125,44,116,46,97,114,99,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,82,121,44,110,61,68,121,44,101,61,109,121,40,48,41,44,114,61,110,117,108,108,44,105,61,113,121,44,111,61,76,121,44,97,61,85,121,44,117,61,110,117,108,108,59,102,117,110,99,116,105,111,110,32,99,40,41,123,118,97,114,32,99,44,102,44,115,61,43,116,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,44,108,61,43,110,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,44,104,61,105,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,45,67,121,44,100,61,111,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,45,67,121,44,112,61,120,121,40,100,45,104,41,44,118,61,100,62,104,59,105,102,40,117,124,124,40,117,61,99,61,110,111,40,41,41,44,108,60,115,38,38,40,102,61,108,44,108,61,115,44,115,61,102,41,44,108,62,107,121,41,105,102,40,112,62,80,121,45,107,121,41,117,46,109,111,118,101,84,111,40,108,42,77,121,40,104,41,44,108,42,65,121,40,104,41,41,44,117,46,97,114,99,40,48,44,48,44,108,44,104,44,100,44,33,118,41,44,115,62,107,121,38,38,40,117,46,109,111,118,101,84,111,40,115,42,77,121,40,100,41,44,115,42,65,121,40,100,41,41,44,117,46,97,114,99,40,48,44,48,44,115,44,100,44,104,44,118,41,41,59,101,108,115,101,123,118,97,114,32,103,44,121,44,95,61,104,44,98,61,100,44,109,61,104,44,120,61,100,44,119,61,112,44,77,61,112,44,78,61,97,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,47,50,44,84,61,78,62,107,121,38,38,40,114,63,43,114,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,58,83,121,40,115,42,115,43,108,42,108,41,41,44,65,61,84,121,40,120,121,40,108,45,115,41,47,50,44,43,101,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,41,44,83,61,65,44,107,61,65,59,105,102,40,84,62,107,121,41,123,118,97,114,32,69,61,122,121,40,84,47,115,42,65,121,40,78,41,41,44,67,61,122,121,40,84,47,108,42,65,121,40,78,41,41,59,40,119,45,61,50,42,69,41,62,107,121,63,40,109,43,61,69,42,61,118,63,49,58,45,49,44,120,45,61,69,41,58,40,119,61,48,44,109,61,120,61,40,104,43,100,41,47,50,41,44,40,77,45,61,50,42,67,41,62,107,121,63,40,95,43,61,67,42,61,118,63,49,58,45,49,44,98,45,61,67,41,58,40,77,61,48,44,95,61,98,61,40,104,43,100,41,47,50,41,125,118,97,114,32,80,61,108,42,77,121,40,95,41,44,122,61,108,42,65,121,40,95,41,44,82,61,115,42,77,121,40,120,41,44,68,61,115,42,65,121,40,120,41,59,105,102,40,65,62,107,121,41,123,118,97,114,32,113,44,76,61,108,42,77,121,40,98,41,44,85,61,108,42,65,121,40,98,41,44,79,61,115,42,77,121,40,109,41,44,66,61,115,42,65,121,40,109,41,59,105,102,40,112,60,69,121,38,38,40,113,61,102,117,110,99,116,105,111,110,40,116,44,110,44,101,44,114,44,105,44,111,44,97,44,117,41,123,118,97,114,32,99,61,101,45,116,44,102,61,114,45,110,44,115,61,97,45,105,44,108,61,117,45,111,44,104,61,108,42,99,45,115,42,102,59,105,102,40,33,40,104,42,104,60,107,121,41,41,114,101,116,117,114,110,91,116,43,40,104,61,40,115,42,40,110,45,111,41,45,108,42,40,116,45,105,41,41,47,104,41,42,99,44,110,43,104,42,102,93,125,40,80,44,122,44,79,44,66,44,76,44,85,44,82,44,68,41,41,41,123,118,97,114,32,70,61,80,45,113,91,48,93,44,89,61,122,45,113,91,49,93,44,73,61,76,45,113,91,48,93,44,72,61,85,45,113,91,49,93,44,106,61,49,47,65,121,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,62,49,63,48,58,116,60,45,49,63,69,121,58,77,97,116,104,46,97,99,111,115,40,116,41,125,40,40,70,42,73,43,89,42,72,41,47,40,83,121,40,70,42,70,43,89,42,89,41,42,83,121,40,73,42,73,43,72,42,72,41,41,41,47,50,41,44,88,61,83,121,40,113,91,48,93,42,113,91,48,93,43,113,91,49,93,42,113,91,49,93,41,59,83,61,84,121,40,65,44,40,115,45,88,41,47,40,106,45,49,41,41,44,107,61,84,121,40,65,44,40,108,45,88,41,47,40,106,43,49,41,41,125,125,77,62,107,121,63,107,62,107,121,63,40,103,61,79,121,40,79,44,66,44,80,44,122,44,108,44,107,44,118,41,44,121,61,79,121,40,76,44,85,44,82,44,68,44,108,44,107,44,118,41,44,117,46,109,111,118,101,84,111,40,103,46,99,120,43,103,46,120,48,49,44,103,46,99,121,43,103,46,121,48,49,41,44,107,60,65,63,117,46,97,114,99,40,103,46,99,120,44,103,46,99,121,44,107,44,119,121,40,103,46,121,48,49,44,103,46,120,48,49,41,44,119,121,40,121,46,121,48,49,44,121,46,120,48,49,41,44,33,118,41,58,40,117,46,97,114,99,40,103,46,99,120,44,103,46,99,121,44,107,44,119,121,40,103,46,121,48,49,44,103,46,120,48,49,41,44,119,121,40,103,46,121,49,49,44,103,46,120,49,49,41,44,33,118,41,44,117,46,97,114,99,40,48,44,48,44,108,44,119,121,40,103,46,99,121,43,103,46,121,49,49,44,103,46,99,120,43,103,46,120,49,49,41,44,119,121,40,121,46,99,121,43,121,46,121,49,49,44,121,46,99,120,43,121,46,120,49,49,41,44,33,118,41,44,117,46,97,114,99,40,121,46,99,120,44,121,46,99,121,44,107,44,119,121,40,121,46,121,49,49,44,121,46,120,49,49,41,44,119,121,40,121,46,121,48,49,44,121,46,120,48,49,41,44,33,118,41,41,41,58,40,117,46,109,111,118,101,84,111,40,80,44,122,41,44,117,46,97,114,99,40,48,44,48,44,108,44,95,44,98,44,33,118,41,41,58,117,46,109,111,118,101,84,111,40,80,44,122,41,44,115,62,107,121,38,38,119,62,107,121,63,83,62,107,121,63,40,103,61,79,121,40,82,44,68,44,76,44,85,44,115,44,45,83,44,118,41,44,121,61,79,121,40,80,44,122,44,79,44,66,44,115,44,45,83,44,118,41,44,117,46,108,105,110,101,84,111,40,103,46,99,120,43,103,46,120,48,49,44,103,46,99,121,43,103,46,121,48,49,41,44,83,60,65,63,117,46,97,114,99,40,103,46,99,120,44,103,46,99,121,44,83,44,119,121,40,103,46,121,48,49,44,103,46,120,48,49,41,44,119,121,40,121,46,121,48,49,44,121,46,120,48,49,41,44,33,118,41,58,40,117,46,97,114,99,40,103,46,99,120,44,103,46,99,121,44,83,44,119,121,40,103,46,121,48,49,44,103,46,120,48,49,41,44,119,121,40,103,46,121,49,49,44,103,46,120,49,49,41,44,33,118,41,44,117,46,97,114,99,40,48,44,48,44,115,44,119,121,40,103,46,99,121,43,103,46,121,49,49,44,103,46,99,120,43,103,46,120,49,49,41,44,119,121,40,121,46,99,121,43,121,46,121,49,49,44,121,46,99,120,43,121,46,120,49,49,41,44,118,41,44,117,46,97,114,99,40,121,46,99,120,44,121,46,99,121,44,83,44,119,121,40,121,46,121,49,49,44,121,46,120,49,49,41,44,119,121,40,121,46,121,48,49,44,121,46,120,48,49,41,44,33,118,41,41,41,58,117,46,97,114,99,40,48,44,48,44,115,44,120,44,109,44,118,41,58,117,46,108,105,110,101,84,111,40,82,44,68,41,125,101,108,115,101,32,117,46,109,111,118,101,84,111,40,48,44,48,41,59,105,102,40,117,46,99,108,111,115,101,80,97,116,104,40,41,44,99,41,114,101,116,117,114,110,32,117,61,110,117,108,108,44,99,43,34,34,124,124,110,117,108,108,125,114,101,116,117,114,110,32,99,46,99,101,110,116,114,111,105,100,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,40,43,116,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,43,32,43,110,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,41,47,50,44,114,61,40,43,105,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,43,32,43,111,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,41,47,50,45,69,121,47,50,59,114,101,116,117,114,110,91,77,121,40,114,41,42,101,44,65,121,40,114,41,42,101,93,125,44,99,46,105,110,110,101,114,82,97,100,105,117,115,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,116,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,110,63,110,58,109,121,40,43,110,41,44,99,41,58,116,125,44,99,46,111,117,116,101,114,82,97,100,105,117,115,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,110,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,109,121,40,43,116,41,44,99,41,58,110,125,44,99,46,99,111,114,110,101,114,82,97,100,105,117,115,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,101,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,109,121,40,43,116,41,44,99,41,58,101,125,44,99,46,112,97,100,82,97,100,105,117,115,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,114,61,110,117,108,108,61,61,116,63,110,117,108,108,58,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,109,121,40,43,116,41,44,99,41,58,114,125,44,99,46,115,116,97,114,116,65,110,103,108,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,105,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,109,121,40,43,116,41,44,99,41,58,105,125,44,99,46,101,110,100,65,110,103,108,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,111,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,109,121,40,43,116,41,44,99,41,58,111,125,44,99,46,112,97,100,65,110,103,108,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,97,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,109,121,40,43,116,41,44,99,41,58,97,125,44,99,46,99,111,110,116,101,120,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,117,61,110,117,108,108,61,61,116,63,110,117,108,108,58,116,44,99,41,58,117,125,44,99,125,44,116,46,97,114,101,97,61,106,121,44,116,46,97,114,101,97,82,97,100,105,97,108,61,75,121,44,116,46,97,115,99,101,110,100,105,110,103,61,110,44,116,46,97,117,116,111,84,121,112,101,61,102,117,110,99,116,105,111,110,40,116,41,123,102,111,114,40,118,97,114,32,110,32,105,110,32,116,41,123,118,97,114,32,101,44,114,44,105,61,116,91,110,93,46,116,114,105,109,40,41,59,105,102,40,105,41,105,102,40,34,116,114,117,101,34,61,61,61,105,41,105,61,33,48,59,101,108,115,101,32,105,102,40,34,102,97,108,115,101,34,61,61,61,105,41,105,61,33,49,59,101,108,115,101,32,105,102,40,34,78,97,78,34,61,61,61,105,41,105,61,78,97,78,59,101,108,115,101,32,105,102,40,105,115,78,97,78,40,101,61,43,105,41,41,123,105,102,40,33,40,114,61,105,46,109,97,116,99,104,40,47,94,40,91,45,43,93,92,100,123,50,125,41,63,92,100,123,52,125,40,45,92,100,123,50,125,40,45,92,100,123,50,125,41,63,41,63,40,84,92,100,123,50,125,58,92,100,123,50,125,40,58,92,100,123,50,125,40,92,46,92,100,123,51,125,41,63,41,63,40,90,124,91,45,43,93,92,100,123,50,125,58,92,100,123,50,125,41,63,41,63,36,47,41,41,41,99,111,110,116,105,110,117,101,59,114,97,38,38,114,91,52,93,38,38,33,114,91,55,93,38,38,40,105,61,105,46,114,101,112,108,97,99,101,40,47,45,47,103,44,34,47,34,41,46,114,101,112,108,97,99,101,40,47,84,47,44,34,32,34,41,41,44,105,61,110,101,119,32,68,97,116,101,40,105,41,125,101,108,115,101,32,105,61,101,59,101,108,115,101,32,105,61,110,117,108,108,59,116,91,110,93,61,105,125,114,101,116,117,114,110,32,116,125,44,116,46,97,120,105,115,66,111,116,116,111,109,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,70,40,68,44,116,41,125,44,116,46,97,120,105,115,76,101,102,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,70,40,113,44,116,41,125,44,116,46,97,120,105,115,82,105,103,104,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,70,40,82,44,116,41,125,44,116,46,97,120,105,115,84,111,112,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,70,40,122,44,116,41,125,44,116,46,98,105,115,101,99,116,61,105,44,116,46,98,105,115,101,99,116,76,101,102,116,61,111,44,116,46,98,105,115,101,99,116,82,105,103,104,116,61,105,44,116,46,98,105,115,101,99,116,111,114,61,101,44,116,46,98,108,111,98,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,102,101,116,99,104,40,116,44,110,41,46,116,104,101,110,40,105,97,41,125,44,116,46,98,114,117,115,104,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,89,105,40,67,105,41,125,44,116,46,98,114,117,115,104,83,101,108,101,99,116,105,111,110,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,116,46,95,95,98,114,117,115,104,59,114,101,116,117,114,110,32,110,63,110,46,100,105,109,46,111,117,116,112,117,116,40,110,46,115,101,108,101,99,116,105,111,110,41,58,110,117,108,108,125,44,116,46,98,114,117,115,104,88,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,89,105,40,107,105,41,125,44,116,46,98,114,117,115,104,89,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,89,105,40,69,105,41,125,44,116,46,98,117,102,102,101,114,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,102,101,116,99,104,40,116,44,110,41,46,116,104,101,110,40,111,97,41,125,44,116,46,99,104,111,114,100,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,48,44,110,61,110,117,108,108,44,101,61,110,117,108,108,44,114,61,110,117,108,108,59,102,117,110,99,116,105,111,110,32,105,40,105,41,123,118,97,114,32,111,44,97,44,117,44,99,44,102,44,115,44,108,61,105,46,108,101,110,103,116,104,44,104,61,91,93,44,100,61,103,40,108,41,44,112,61,91,93,44,118,61,91,93,44,121,61,118,46,103,114,111,117,112,115,61,110,101,119,32,65,114,114,97,121,40,108,41,44,95,61,110,101,119,32,65,114,114,97,121,40,108,42,108,41,59,102,111,114,40,111,61,48,44,102,61,45,49,59,43,43,102,60,108,59,41,123,102,111,114,40,97,61,48,44,115,61,45,49,59,43,43,115,60,108,59,41,97,43,61,105,91,102,93,91,115,93,59,104,46,112,117,115,104,40,97,41,44,112,46,112,117,115,104,40,103,40,108,41,41,44,111,43,61,97,125,102,111,114,40,110,38,38,100,46,115,111,114,116,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,110,40,104,91,116,93,44,104,91,101,93,41,125,41,44,101,38,38,112,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,116,44,110,41,123,116,46,115,111,114,116,40,102,117,110,99,116,105,111,110,40,116,44,114,41,123,114,101,116,117,114,110,32,101,40,105,91,110,93,91,116,93,44,105,91,110,93,91,114,93,41,125,41,125,41,44,99,61,40,111,61,71,105,40,48,44,86,105,45,116,42,108,41,47,111,41,63,116,58,86,105,47,108,44,97,61,48,44,102,61,45,49,59,43,43,102,60,108,59,41,123,102,111,114,40,117,61,97,44,115,61,45,49,59,43,43,115,60,108,59,41,123,118,97,114,32,98,61,100,91,102,93,44,109,61,112,91,98,93,91,115,93,44,120,61,105,91,98,93,91,109,93,44,119,61,97,44,77,61,97,43,61,120,42,111,59,95,91,109,42,108,43,98,93,61,123,105,110,100,101,120,58,98,44,115,117,98,105,110,100,101,120,58,109,44,115,116,97,114,116,65,110,103,108,101,58,119,44,101,110,100,65,110,103,108,101,58,77,44,118,97,108,117,101,58,120,125,125,121,91,98,93,61,123,105,110,100,101,120,58,98,44,115,116,97,114,116,65,110,103,108,101,58,117,44,101,110,100,65,110,103,108,101,58,97,44,118,97,108,117,101,58,104,91,98,93,125,44,97,43,61,99,125,102,111,114,40,102,61,45,49,59,43,43,102,60,108,59,41,102,111,114,40,115,61,102,45,49,59,43,43,115,60,108,59,41,123,118,97,114,32,78,61,95,91,115,42,108,43,102,93,44,84,61,95,91,102,42,108,43,115,93,59,40,78,46,118,97,108,117,101,124,124,84,46,118,97,108,117,101,41,38,38,118,46,112,117,115,104,40,78,46,118,97,108,117,101,60,84,46,118,97,108,117,101,63,123,115,111,117,114,99,101,58,84,44,116,97,114,103,101,116,58,78,125,58,123,115,111,117,114,99,101,58,78,44,116,97,114,103,101,116,58,84,125,41,125,114,101,116,117,114,110,32,114,63,118,46,115,111,114,116,40,114,41,58,118,125,114,101,116,117,114,110,32,105,46,112,97,100,65,110,103,108,101,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,116,61,71,105,40,48,44,110,41,44,105,41,58,116,125,44,105,46,115,111,114,116,71,114,111,117,112,115,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,110,61,116,44,105,41,58,110,125,44,105,46,115,111,114,116,83,117,98,103,114,111,117,112,115,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,101,61,116,44,105,41,58,101,125,44,105,46,115,111,114,116,67,104,111,114,100,115,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,110,117,108,108,61,61,116,63,114,61,110,117,108,108,58,40,114,61,36,105,40,116,41,41,46,95,61,116,44,105,41,58,114,38,38,114,46,95,125,44,105,125,44,116,46,99,108,105,101,110,116,80,111,105,110,116,61,79,116,44,116,46,99,108,117,115,116,101,114,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,78,108,44,110,61,49,44,101,61,49,44,114,61,33,49,59,102,117,110,99,116,105,111,110,32,105,40,105,41,123,118,97,114,32,111,44,97,61,48,59,105,46,101,97,99,104,65,102,116,101,114,40,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,101,61,110,46,99,104,105,108,100,114,101,110,59,101,63,40,110,46,120,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,114,101,100,117,99,101,40,84,108,44,48,41,47,116,46,108,101,110,103,116,104,125,40,101,41,44,110,46,121,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,49,43,116,46,114,101,100,117,99,101,40,65,108,44,48,41,125,40,101,41,41,58,40,110,46,120,61,111,63,97,43,61,116,40,110,44,111,41,58,48,44,110,46,121,61,48,44,111,61,110,41,125,41,59,118,97,114,32,117,61,102,117,110,99,116,105,111,110,40,116,41,123,102,111,114,40,118,97,114,32,110,59,110,61,116,46,99,104,105,108,100,114,101,110,59,41,116,61,110,91,48,93,59,114,101,116,117,114,110,32,116,125,40,105,41,44,99,61,102,117,110,99,116,105,111,110,40,116,41,123,102,111,114,40,118,97,114,32,110,59,110,61,116,46,99,104,105,108,100,114,101,110,59,41,116,61,110,91,110,46,108,101,110,103,116,104,45,49,93,59,114,101,116,117,114,110,32,116,125,40,105,41,44,102,61,117,46,120,45,116,40,117,44,99,41,47,50,44,115,61,99,46,120,43,116,40,99,44,117,41,47,50,59,114,101,116,117,114,110,32,105,46,101,97,99,104,65,102,116,101,114,40,114,63,102,117,110,99,116,105,111,110,40,116,41,123,116,46,120,61,40,116,46,120,45,105,46,120,41,42,110,44,116,46,121,61,40,105,46,121,45,116,46,121,41,42,101,125,58,102,117,110,99,116,105,111,110,40,116,41,123,116,46,120,61,40,116,46,120,45,102,41,47,40,115,45,102,41,42,110,44,116,46,121,61,40,49,45,40,105,46,121,63,116,46,121,47,105,46,121,58,49,41,41,42,101,125,41,125,114,101,116,117,114,110,32,105,46,115,101,112,97,114,97,116,105,111,110,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,116,61,110,44,105,41,58,116,125,44,105,46,115,105,122,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,114,61,33,49,44,110,61,43,116,91,48,93,44,101,61,43,116,91,49,93,44,105,41,58,114,63,110,117,108,108,58,91,110,44,101,93,125,44,105,46,110,111,100,101,83,105,122,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,114,61,33,48,44,110,61,43,116,91,48,93,44,101,61,43,116,91,49,93,44,105,41,58,114,63,91,110,44,101,93,58,110,117,108,108,125,44,105,125,44,116,46,99,111,108,111,114,61,112,110,44,116,46,99,111,110,116,111,117,114,68,101,110,115,105,116,121,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,107,111,44,110,61,69,111,44,101,61,67,111,44,114,61,57,54,48,44,105,61,53,48,48,44,111,61,50,48,44,97,61,50,44,117,61,51,42,111,44,99,61,114,43,50,42,117,62,62,97,44,102,61,105,43,50,42,117,62,62,97,44,115,61,98,111,40,50,48,41,59,102,117,110,99,116,105,111,110,32,108,40,114,41,123,118,97,114,32,105,61,110,101,119,32,70,108,111,97,116,51,50,65,114,114,97,121,40,99,42,102,41,44,108,61,110,101,119,32,70,108,111,97,116,51,50,65,114,114,97,121,40,99,42,102,41,59,114,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,114,44,111,44,115,41,123,118,97,114,32,108,61,43,116,40,114,44,111,44,115,41,43,117,62,62,97,44,104,61,43,110,40,114,44,111,44,115,41,43,117,62,62,97,44,100,61,43,101,40,114,44,111,44,115,41,59,108,62,61,48,38,38,108,60,99,38,38,104,62,61,48,38,38,104,60,102,38,38,40,105,91,108,43,104,42,99,93,43,61,100,41,125,41,44,65,111,40,123,119,105,100,116,104,58,99,44,104,101,105,103,104,116,58,102,44,100,97,116,97,58,105,125,44,123,119,105,100,116,104,58,99,44,104,101,105,103,104,116,58,102,44,100,97,116,97,58,108,125,44,111,62,62,97,41,44,83,111,40,123,119,105,100,116,104,58,99,44,104,101,105,103,104,116,58,102,44,100,97,116,97,58,108,125,44,123,119,105,100,116,104,58,99,44,104,101,105,103,104,116,58,102,44,100,97,116,97,58,105,125,44,111,62,62,97,41,44,65,111,40,123,119,105,100,116,104,58,99,44,104,101,105,103,104,116,58,102,44,100,97,116,97,58,105,125,44,123,119,105,100,116,104,58,99,44,104,101,105,103,104,116,58,102,44,100,97,116,97,58,108,125,44,111,62,62,97,41,44,83,111,40,123,119,105,100,116,104,58,99,44,104,101,105,103,104,116,58,102,44,100,97,116,97,58,108,125,44,123,119,105,100,116,104,58,99,44,104,101,105,103,104,116,58,102,44,100,97,116,97,58,105,125,44,111,62,62,97,41,44,65,111,40,123,119,105,100,116,104,58,99,44,104,101,105,103,104,116,58,102,44,100,97,116,97,58,105,125,44,123,119,105,100,116,104,58,99,44,104,101,105,103,104,116,58,102,44,100,97,116,97,58,108,125,44,111,62,62,97,41,44,83,111,40,123,119,105,100,116,104,58,99,44,104,101,105,103,104,116,58,102,44,100,97,116,97,58,108,125,44,123,119,105,100,116,104,58,99,44,104,101,105,103,104,116,58,102,44,100,97,116,97,58,105,125,44,111,62,62,97,41,59,118,97,114,32,100,61,115,40,105,41,59,105,102,40,33,65,114,114,97,121,46,105,115,65,114,114,97,121,40,100,41,41,123,118,97,114,32,112,61,84,40,105,41,59,100,61,119,40,48,44,112,44,100,41,44,40,100,61,103,40,48,44,77,97,116,104,46,102,108,111,111,114,40,112,47,100,41,42,100,44,100,41,41,46,115,104,105,102,116,40,41,125,114,101,116,117,114,110,32,84,111,40,41,46,116,104,114,101,115,104,111,108,100,115,40,100,41,46,115,105,122,101,40,91,99,44,102,93,41,40,105,41,46,109,97,112,40,104,41,125,102,117,110,99,116,105,111,110,32,104,40,116,41,123,114,101,116,117,114,110,32,116,46,118,97,108,117,101,42,61,77,97,116,104,46,112,111,119,40,50,44,45,50,42,97,41,44,116,46,99,111,111,114,100,105,110,97,116,101,115,46,102,111,114,69,97,99,104,40,100,41,44,116,125,102,117,110,99,116,105,111,110,32,100,40,116,41,123,116,46,102,111,114,69,97,99,104,40,112,41,125,102,117,110,99,116,105,111,110,32,112,40,116,41,123,116,46,102,111,114,69,97,99,104,40,118,41,125,102,117,110,99,116,105,111,110,32,118,40,116,41,123,116,91,48,93,61,116,91,48,93,42,77,97,116,104,46,112,111,119,40,50,44,97,41,45,117,44,116,91,49,93,61,116,91,49,93,42,77,97,116,104,46,112,111,119,40,50,44,97,41,45,117,125,102,117,110,99,116,105,111,110,32,121,40,41,123,114,101,116,117,114,110,32,99,61,114,43,50,42,40,117,61,51,42,111,41,62,62,97,44,102,61,105,43,50,42,117,62,62,97,44,108,125,114,101,116,117,114,110,32,108,46,120,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,116,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,110,63,110,58,98,111,40,43,110,41,44,108,41,58,116,125,44,108,46,121,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,110,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,98,111,40,43,116,41,44,108,41,58,110,125,44,108,46,119,101,105,103,104,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,101,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,98,111,40,43,116,41,44,108,41,58,101,125,44,108,46,115,105,122,101,61,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,33,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,114,101,116,117,114,110,91,114,44,105,93,59,118,97,114,32,110,61,77,97,116,104,46,99,101,105,108,40,116,91,48,93,41,44,101,61,77,97,116,104,46,99,101,105,108,40,116,91,49,93,41,59,105,102,40,33,40,110,62,61,48,124,124,110,62,61,48,41,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,105,110,118,97,108,105,100,32,115,105,122,101,34,41,59,114,101,116,117,114,110,32,114,61,110,44,105,61,101,44,121,40,41,125,44,108,46,99,101,108,108,83,105,122,101,61,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,33,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,114,101,116,117,114,110,32,49,60,60,97,59,105,102,40,33,40,40,116,61,43,116,41,62,61,49,41,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,105,110,118,97,108,105,100,32,99,101,108,108,32,115,105,122,101,34,41,59,114,101,116,117,114,110,32,97,61,77,97,116,104,46,102,108,111,111,114,40,77,97,116,104,46,108,111,103,40,116,41,47,77,97,116,104,46,76,78,50,41,44,121,40,41,125,44,108,46,116,104,114,101,115,104,111,108,100,115,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,115,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,65,114,114,97,121,46,105,115,65,114,114,97,121,40,116,41,63,98,111,40,121,111,46,99,97,108,108,40,116,41,41,58,98,111,40,116,41,44,108,41,58,115,125,44,108,46,98,97,110,100,119,105,100,116,104,61,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,33,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,114,101,116,117,114,110,32,77,97,116,104,46,115,113,114,116,40,111,42,40,111,43,49,41,41,59,105,102,40,33,40,40,116,61,43,116,41,62,61,48,41,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,105,110,118,97,108,105,100,32,98,97,110,100,119,105,100,116,104,34,41,59,114,101,116,117,114,110,32,111,61,77,97,116,104,46,114,111,117,110,100,40,40,77,97,116,104,46,115,113,114,116,40,52,42,116,42,116,43,49,41,45,49,41,47,50,41,44,121,40,41,125,44,108,125,44,116,46,99,111,110,116,111,117,114,115,61,84,111,44,116,46,99,114,101,97,116,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,82,116,40,90,40,116,41,46,99,97,108,108,40,100,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,41,41,125,44,116,46,99,114,101,97,116,111,114,61,90,44,116,46,99,114,111,115,115,61,102,117,110,99,116,105,111,110,40,116,44,110,44,101,41,123,118,97,114,32,114,44,105,44,111,44,117,44,99,61,116,46,108,101,110,103,116,104,44,102,61,110,46,108,101,110,103,116,104,44,115,61,110,101,119,32,65,114,114,97,121,40,99,42,102,41,59,102,111,114,40,110,117,108,108,61,61,101,38,38,40,101,61,97,41,44,114,61,111,61,48,59,114,60,99,59,43,43,114,41,102,111,114,40,117,61,116,91,114,93,44,105,61,48,59,105,60,102,59,43,43,105,44,43,43,111,41,115,91,111,93,61,101,40,117,44,110,91,105,93,41,59,114,101,116,117,114,110,32,115,125,44,116,46,99,115,118,61,102,97,44,116,46,99,115,118,70,111,114,109,97,116,61,106,111,44,116,46,99,115,118,70,111,114,109,97,116,66,111,100,121,61,88,111,44,116,46,99,115,118,70,111,114,109,97,116,82,111,119,61,71,111,44,116,46,99,115,118,70,111,114,109,97,116,82,111,119,115,61,86,111,44,116,46,99,115,118,70,111,114,109,97,116,86,97,108,117,101,61,36,111,44,116,46,99,115,118,80,97,114,115,101,61,73,111,44,116,46,99,115,118,80,97,114,115,101,82,111,119,115,61,72,111,44,116,46,99,117,98,101,104,101,108,105,120,61,101,101,44,116,46,99,117,114,118,101,66,97,115,105,115,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,101,119,32,65,95,40,116,41,125,44,116,46,99,117,114,118,101,66,97,115,105,115,67,108,111,115,101,100,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,101,119,32,83,95,40,116,41,125,44,116,46,99,117,114,118,101,66,97,115,105,115,79,112,101,110,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,101,119,32,107,95,40,116,41,125,44,116,46,99,117,114,118,101,66,117,110,100,108,101,61,67,95,44,116,46,99,117,114,118,101,67,97,114,100,105,110,97,108,61,82,95,44,116,46,99,117,114,118,101,67,97,114,100,105,110,97,108,67,108,111,115,101,100,61,113,95,44,116,46,99,117,114,118,101,67,97,114,100,105,110,97,108,79,112,101,110,61,85,95,44,116,46,99,117,114,118,101,67,97,116,109,117,108,108,82,111,109,61,70,95,44,116,46,99,117,114,118,101,67,97,116,109,117,108,108,82,111,109,67,108,111,115,101,100,61,73,95,44,116,46,99,117,114,118,101,67,97,116,109,117,108,108,82,111,109,79,112,101,110,61,106,95,44,116,46,99,117,114,118,101,76,105,110,101,97,114,61,70,121,44,116,46,99,117,114,118,101,76,105,110,101,97,114,67,108,111,115,101,100,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,101,119,32,88,95,40,116,41,125,44,116,46,99,117,114,118,101,77,111,110,111,116,111,110,101,88,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,101,119,32,90,95,40,116,41,125,44,116,46,99,117,114,118,101,77,111,110,111,116,111,110,101,89,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,101,119,32,81,95,40,116,41,125,44,116,46,99,117,114,118,101,78,97,116,117,114,97,108,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,101,119,32,74,95,40,116,41,125,44,116,46,99,117,114,118,101,83,116,101,112,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,101,119,32,110,98,40,116,44,46,53,41,125,44,116,46,99,117,114,118,101,83,116,101,112,65,102,116,101,114,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,101,119,32,110,98,40,116,44,49,41,125,44,116,46,99,117,114,118,101,83,116,101,112,66,101,102,111,114,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,101,119,32,110,98,40,116,44,48,41,125,44,116,46,99,117,115,116,111,109,69,118,101,110,116,61,107,116,44,116,46,100,101,115,99,101,110,100,105,110,103,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,110,60,116,63,45,49,58,110,62,116,63,49,58,110,62,61,116,63,48,58,78,97,78,125,44,116,46,100,101,118,105,97,116,105,111,110,61,102,44,116,46,100,105,115,112,97,116,99,104,61,73,44,116,46,100,114,97,103,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,110,44,101,44,114,44,105,44,111,61,71,116,44,97,61,36,116,44,117,61,87,116,44,99,61,90,116,44,102,61,123,125,44,115,61,73,40,34,115,116,97,114,116,34,44,34,100,114,97,103,34,44,34,101,110,100,34,41,44,108,61,48,44,104,61,48,59,102,117,110,99,116,105,111,110,32,100,40,116,41,123,116,46,111,110,40,34,109,111,117,115,101,100,111,119,110,46,100,114,97,103,34,44,112,41,46,102,105,108,116,101,114,40,99,41,46,111,110,40,34,116,111,117,99,104,115,116,97,114,116,46,100,114,97,103,34,44,121,41,46,111,110,40,34,116,111,117,99,104,109,111,118,101,46,100,114,97,103,34,44,95,41,46,111,110,40,34,116,111,117,99,104,101,110,100,46,100,114,97,103,32,116,111,117,99,104,99,97,110,99,101,108,46,100,114,97,103,34,44,98,41,46,115,116,121,108,101,40,34,116,111,117,99,104,45,97,99,116,105,111,110,34,44,34,110,111,110,101,34,41,46,115,116,121,108,101,40,34,45,119,101,98,107,105,116,45,116,97,112,45,104,105,103,104,108,105,103,104,116,45,99,111,108,111,114,34,44,34,114,103,98,97,40,48,44,48,44,48,44,48,41,34,41,125,102,117,110,99,116,105,111,110,32,112,40,41,123,105,102,40,33,105,38,38,111,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,41,123,118,97,114,32,117,61,109,40,34,109,111,117,115,101,34,44,97,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,44,66,116,44,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,59,117,38,38,40,82,116,40,116,46,101,118,101,110,116,46,118,105,101,119,41,46,111,110,40,34,109,111,117,115,101,109,111,118,101,46,100,114,97,103,34,44,118,44,33,48,41,46,111,110,40,34,109,111,117,115,101,117,112,46,100,114,97,103,34,44,103,44,33,48,41,44,72,116,40,116,46,101,118,101,110,116,46,118,105,101,119,41,44,89,116,40,41,44,114,61,33,49,44,110,61,116,46,101,118,101,110,116,46,99,108,105,101,110,116,88,44,101,61,116,46,101,118,101,110,116,46,99,108,105,101,110,116,89,44,117,40,34,115,116,97,114,116,34,41,41,125,125,102,117,110,99,116,105,111,110,32,118,40,41,123,105,102,40,73,116,40,41,44,33,114,41,123,118,97,114,32,105,61,116,46,101,118,101,110,116,46,99,108,105,101,110,116,88,45,110,44,111,61,116,46,101,118,101,110,116,46,99,108,105,101,110,116,89,45,101,59,114,61,105,42,105,43,111,42,111,62,104,125,102,46,109,111,117,115,101,40,34,100,114,97,103,34,41,125,102,117,110,99,116,105,111,110,32,103,40,41,123,82,116,40,116,46,101,118,101,110,116,46,118,105,101,119,41,46,111,110,40,34,109,111,117,115,101,109,111,118,101,46,100,114,97,103,32,109,111,117,115,101,117,112,46,100,114,97,103,34,44,110,117,108,108,41,44,106,116,40,116,46,101,118,101,110,116,46,118,105,101,119,44,114,41,44,73,116,40,41,44,102,46,109,111,117,115,101,40,34,101,110,100,34,41,125,102,117,110,99,116,105,111,110,32,121,40,41,123,105,102,40,111,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,41,123,118,97,114,32,110,44,101,44,114,61,116,46,101,118,101,110,116,46,99,104,97,110,103,101,100,84,111,117,99,104,101,115,44,105,61,97,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,44,117,61,114,46,108,101,110,103,116,104,59,102,111,114,40,110,61,48,59,110,60,117,59,43,43,110,41,40,101,61,109,40,114,91,110,93,46,105,100,101,110,116,105,102,105,101,114,44,105,44,70,116,44,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,41,38,38,40,89,116,40,41,44,101,40,34,115,116,97,114,116,34,41,41,125,125,102,117,110,99,116,105,111,110,32,95,40,41,123,118,97,114,32,110,44,101,44,114,61,116,46,101,118,101,110,116,46,99,104,97,110,103,101,100,84,111,117,99,104,101,115,44,105,61,114,46,108,101,110,103,116,104,59,102,111,114,40,110,61,48,59,110,60,105,59,43,43,110,41,40,101,61,102,91,114,91,110,93,46,105,100,101,110,116,105,102,105,101,114,93,41,38,38,40,73,116,40,41,44,101,40,34,100,114,97,103,34,41,41,125,102,117,110,99,116,105,111,110,32,98,40,41,123,118,97,114,32,110,44,101,44,114,61,116,46,101,118,101,110,116,46,99,104,97,110,103,101,100,84,111,117,99,104,101,115,44,111,61,114,46,108,101,110,103,116,104,59,102,111,114,40,105,38,38,99,108,101,97,114,84,105,109,101,111,117,116,40,105,41,44,105,61,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,40,41,123,105,61,110,117,108,108,125,44,53,48,48,41,44,110,61,48,59,110,60,111,59,43,43,110,41,40,101,61,102,91,114,91,110,93,46,105,100,101,110,116,105,102,105,101,114,93,41,38,38,40,89,116,40,41,44,101,40,34,101,110,100,34,41,41,125,102,117,110,99,116,105,111,110,32,109,40,110,44,101,44,114,44,105,44,111,41,123,118,97,114,32,97,44,99,44,104,44,112,61,114,40,101,44,110,41,44,118,61,115,46,99,111,112,121,40,41,59,105,102,40,107,116,40,110,101,119,32,86,116,40,100,44,34,98,101,102,111,114,101,115,116,97,114,116,34,44,97,44,110,44,108,44,112,91,48,93,44,112,91,49,93,44,48,44,48,44,118,41,44,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,110,117,108,108,33,61,40,116,46,101,118,101,110,116,46,115,117,98,106,101,99,116,61,97,61,117,46,97,112,112,108,121,40,105,44,111,41,41,38,38,40,99,61,97,46,120,45,112,91,48,93,124,124,48,44,104,61,97,46,121,45,112,91,49,93,124,124,48,44,33,48,41,125,41,41,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,116,40,117,41,123,118,97,114,32,115,44,103,61,112,59,115,119,105,116,99,104,40,117,41,123,99,97,115,101,34,115,116,97,114,116,34,58,102,91,110,93,61,116,44,115,61,108,43,43,59,98,114,101,97,107,59,99,97,115,101,34,101,110,100,34,58,100,101,108,101,116,101,32,102,91,110,93,44,45,45,108,59,99,97,115,101,34,100,114,97,103,34,58,112,61,114,40,101,44,110,41,44,115,61,108,125,107,116,40,110,101,119,32,86,116,40,100,44,117,44,97,44,110,44,115,44,112,91,48,93,43,99,44,112,91,49,93,43,104,44,112,91,48,93,45,103,91,48,93,44,112,91,49,93,45,103,91,49,93,44,118,41,44,118,46,97,112,112,108,121,44,118,44,91,117,44,105,44,111,93,41,125,125,114,101,116,117,114,110,32,100,46,102,105,108,116,101,114,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,111,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,88,116,40,33,33,116,41,44,100,41,58,111,125,44,100,46,99,111,110,116,97,105,110,101,114,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,97,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,88,116,40,116,41,44,100,41,58,97,125,44,100,46,115,117,98,106,101,99,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,117,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,88,116,40,116,41,44,100,41,58,117,125,44,100,46,116,111,117,99,104,97,98,108,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,99,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,88,116,40,33,33,116,41,44,100,41,58,99,125,44,100,46,111,110,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,115,46,111,110,46,97,112,112,108,121,40,115,44,97,114,103,117,109,101,110,116,115,41,59,114,101,116,117,114,110,32,116,61,61,61,115,63,100,58,116,125,44,100,46,99,108,105,99,107,68,105,115,116,97,110,99,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,104,61,40,116,61,43,116,41,42,116,44,100,41,58,77,97,116,104,46,115,113,114,116,40,104,41,125,44,100,125,44,116,46,100,114,97,103,68,105,115,97,98,108,101,61,72,116,44,116,46,100,114,97,103,69,110,97,98,108,101,61,106,116,44,116,46,100,115,118,61,102,117,110,99,116,105,111,110,40,116,44,110,44,101,44,114,41,123,51,61,61,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,38,38,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,101,38,38,40,114,61,101,44,101,61,118,111,105,100,32,48,41,59,118,97,114,32,105,61,70,111,40,116,41,59,114,101,116,117,114,110,32,117,97,40,110,44,101,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,105,46,112,97,114,115,101,40,116,44,114,41,125,41,125,44,116,46,100,115,118,70,111,114,109,97,116,61,70,111,44,116,46,101,97,115,101,66,97,99,107,61,115,105,44,116,46,101,97,115,101,66,97,99,107,73,110,61,99,105,44,116,46,101,97,115,101,66,97,99,107,73,110,79,117,116,61,115,105,44,116,46,101,97,115,101,66,97,99,107,79,117,116,61,102,105,44,116,46,101,97,115,101,66,111,117,110,99,101,61,117,105,44,116,46,101,97,115,101,66,111,117,110,99,101,73,110,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,49,45,117,105,40,49,45,116,41,125,44,116,46,101,97,115,101,66,111,117,110,99,101,73,110,79,117,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,40,40,116,42,61,50,41,60,61,49,63,49,45,117,105,40,49,45,116,41,58,117,105,40,116,45,49,41,43,49,41,47,50,125,44,116,46,101,97,115,101,66,111,117,110,99,101,79,117,116,61,117,105,44,116,46,101,97,115,101,67,105,114,99,108,101,61,90,114,44,116,46,101,97,115,101,67,105,114,99,108,101,73,110,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,49,45,77,97,116,104,46,115,113,114,116,40,49,45,116,42,116,41,125,44,116,46,101,97,115,101,67,105,114,99,108,101,73,110,79,117,116,61,90,114,44,116,46,101,97,115,101,67,105,114,99,108,101,79,117,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,77,97,116,104,46,115,113,114,116,40,49,45,32,45,45,116,42,116,41,125,44,116,46,101,97,115,101,67,117,98,105,99,61,73,114,44,116,46,101,97,115,101,67,117,98,105,99,73,110,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,42,116,42,116,125,44,116,46,101,97,115,101,67,117,98,105,99,73,110,79,117,116,61,73,114,44,116,46,101,97,115,101,67,117,98,105,99,79,117,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,45,45,116,42,116,42,116,43,49,125,44,116,46,101,97,115,101,69,108,97,115,116,105,99,61,100,105,44,116,46,101,97,115,101,69,108,97,115,116,105,99,73,110,61,104,105,44,116,46,101,97,115,101,69,108,97,115,116,105,99,73,110,79,117,116,61,112,105,44,116,46,101,97,115,101,69,108,97,115,116,105,99,79,117,116,61,100,105,44,116,46,101,97,115,101,69,120,112,61,87,114,44,116,46,101,97,115,101,69,120,112,73,110,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,77,97,116,104,46,112,111,119,40,50,44,49,48,42,116,45,49,48,41,125,44,116,46,101,97,115,101,69,120,112,73,110,79,117,116,61,87,114,44,116,46,101,97,115,101,69,120,112,79,117,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,49,45,77,97,116,104,46,112,111,119,40,50,44,45,49,48,42,116,41,125,44,116,46,101,97,115,101,76,105,110,101,97,114,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,43,116,125,44,116,46,101,97,115,101,80,111,108,121,61,88,114,44,116,46,101,97,115,101,80,111,108,121,73,110,61,72,114,44,116,46,101,97,115,101,80,111,108,121,73,110,79,117,116,61,88,114,44,116,46,101,97,115,101,80,111,108,121,79,117,116,61,106,114,44,116,46,101,97,115,101,81,117,97,100,61,89,114,44,116,46,101,97,115,101,81,117,97,100,73,110,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,42,116,125,44,116,46,101,97,115,101,81,117,97,100,73,110,79,117,116,61,89,114,44,116,46,101,97,115,101,81,117,97,100,79,117,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,42,40,50,45,116,41,125,44,116,46,101,97,115,101,83,105,110,61,36,114,44,116,46,101,97,115,101,83,105,110,73,110,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,49,45,77,97,116,104,46,99,111,115,40,116,42,71,114,41,125,44,116,46,101,97,115,101,83,105,110,73,110,79,117,116,61,36,114,44,116,46,101,97,115,101,83,105,110,79,117,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,77,97,116,104,46,115,105,110,40,116,42,71,114,41,125,44,116,46,101,110,116,114,105,101,115,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,91,93,59,102,111,114,40,118,97,114,32,101,32,105,110,32,116,41,110,46,112,117,115,104,40,123,107,101,121,58,101,44,118,97,108,117,101,58,116,91,101,93,125,41,59,114,101,116,117,114,110,32,110,125,44,116,46,101,120,116,101,110,116,61,115,44,116,46,102,111,114,99,101,67,101,110,116,101,114,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,59,102,117,110,99,116,105,111,110,32,114,40,41,123,118,97,114,32,114,44,105,44,111,61,101,46,108,101,110,103,116,104,44,97,61,48,44,117,61,48,59,102,111,114,40,114,61,48,59,114,60,111,59,43,43,114,41,97,43,61,40,105,61,101,91,114,93,41,46,120,44,117,43,61,105,46,121,59,102,111,114,40,97,61,97,47,111,45,116,44,117,61,117,47,111,45,110,44,114,61,48,59,114,60,111,59,43,43,114,41,40,105,61,101,91,114,93,41,46,120,45,61,97,44,105,46,121,45,61,117,125,114,101,116,117,114,110,32,110,117,108,108,61,61,116,38,38,40,116,61,48,41,44,110,117,108,108,61,61,110,38,38,40,110,61,48,41,44,114,46,105,110,105,116,105,97,108,105,122,101,61,102,117,110,99,116,105,111,110,40,116,41,123,101,61,116,125,44,114,46,120,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,116,61,43,110,44,114,41,58,116,125,44,114,46,121,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,110,61,43,116,44,114,41,58,110,125,44,114,125,44,116,46,102,111,114,99,101,67,111,108,108,105,100,101,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,44,101,44,114,61,49,44,105,61,49,59,102,117,110,99,116,105,111,110,32,111,40,41,123,102,111,114,40,118,97,114,32,116,44,111,44,117,44,99,44,102,44,115,44,108,44,104,61,110,46,108,101,110,103,116,104,44,100,61,48,59,100,60,105,59,43,43,100,41,102,111,114,40,111,61,119,97,40,110,44,65,97,44,83,97,41,46,118,105,115,105,116,65,102,116,101,114,40,97,41,44,116,61,48,59,116,60,104,59,43,43,116,41,117,61,110,91,116,93,44,115,61,101,91,117,46,105,110,100,101,120,93,44,108,61,115,42,115,44,99,61,117,46,120,43,117,46,118,120,44,102,61,117,46,121,43,117,46,118,121,44,111,46,118,105,115,105,116,40,112,41,59,102,117,110,99,116,105,111,110,32,112,40,116,44,110,44,101,44,105,44,111,41,123,118,97,114,32,97,61,116,46,100,97,116,97,44,104,61,116,46,114,44,100,61,115,43,104,59,105,102,40,33,97,41,114,101,116,117,114,110,32,110,62,99,43,100,124,124,105,60,99,45,100,124,124,101,62,102,43,100,124,124,111,60,102,45,100,59,105,102,40,97,46,105,110,100,101,120,62,117,46,105,110,100,101,120,41,123,118,97,114,32,112,61,99,45,97,46,120,45,97,46,118,120,44,118,61,102,45,97,46,121,45,97,46,118,121,44,103,61,112,42,112,43,118,42,118,59,103,60,100,42,100,38,38,40,48,61,61,61,112,38,38,40,103,43,61,40,112,61,121,97,40,41,41,42,112,41,44,48,61,61,61,118,38,38,40,103,43,61,40,118,61,121,97,40,41,41,42,118,41,44,103,61,40,100,45,40,103,61,77,97,116,104,46,115,113,114,116,40,103,41,41,41,47,103,42,114,44,117,46,118,120,43,61,40,112,42,61,103,41,42,40,100,61,40,104,42,61,104,41,47,40,108,43,104,41,41,44,117,46,118,121,43,61,40,118,42,61,103,41,42,100,44,97,46,118,120,45,61,112,42,40,100,61,49,45,100,41,44,97,46,118,121,45,61,118,42,100,41,125,125,125,102,117,110,99,116,105,111,110,32,97,40,116,41,123,105,102,40,116,46,100,97,116,97,41,114,101,116,117,114,110,32,116,46,114,61,101,91,116,46,100,97,116,97,46,105,110,100,101,120,93,59,102,111,114,40,118,97,114,32,110,61,116,46,114,61,48,59,110,60,52,59,43,43,110,41,116,91,110,93,38,38,116,91,110,93,46,114,62,116,46,114,38,38,40,116,46,114,61,116,91,110,93,46,114,41,125,102,117,110,99,116,105,111,110,32,117,40,41,123,105,102,40,110,41,123,118,97,114,32,114,44,105,44,111,61,110,46,108,101,110,103,116,104,59,102,111,114,40,101,61,110,101,119,32,65,114,114,97,121,40,111,41,44,114,61,48,59,114,60,111,59,43,43,114,41,105,61,110,91,114,93,44,101,91,105,46,105,110,100,101,120,93,61,43,116,40,105,44,114,44,110,41,125,125,114,101,116,117,114,110,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,116,38,38,40,116,61,103,97,40,110,117,108,108,61,61,116,63,49,58,43,116,41,41,44,111,46,105,110,105,116,105,97,108,105,122,101,61,102,117,110,99,116,105,111,110,40,116,41,123,110,61,116,44,117,40,41,125,44,111,46,105,116,101,114,97,116,105,111,110,115,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,105,61,43,116,44,111,41,58,105,125,44,111,46,115,116,114,101,110,103,116,104,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,114,61,43,116,44,111,41,58,114,125,44,111,46,114,97,100,105,117,115,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,116,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,110,63,110,58,103,97,40,43,110,41,44,117,40,41,44,111,41,58,116,125,44,111,125,44,116,46,102,111,114,99,101,76,105,110,107,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,44,101,44,114,44,105,44,111,44,97,61,107,97,44,117,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,49,47,77,97,116,104,46,109,105,110,40,105,91,116,46,115,111,117,114,99,101,46,105,110,100,101,120,93,44,105,91,116,46,116,97,114,103,101,116,46,105,110,100,101,120,93,41,125,44,99,61,103,97,40,51,48,41,44,102,61,49,59,102,117,110,99,116,105,111,110,32,115,40,114,41,123,102,111,114,40,118,97,114,32,105,61,48,44,97,61,116,46,108,101,110,103,116,104,59,105,60,102,59,43,43,105,41,102,111,114,40,118,97,114,32,117,44,99,44,115,44,108,44,104,44,100,44,112,44,118,61,48,59,118,60,97,59,43,43,118,41,99,61,40,117,61,116,91,118,93,41,46,115,111,117,114,99,101,44,108,61,40,115,61,117,46,116,97,114,103,101,116,41,46,120,43,115,46,118,120,45,99,46,120,45,99,46,118,120,124,124,121,97,40,41,44,104,61,115,46,121,43,115,46,118,121,45,99,46,121,45,99,46,118,121,124,124,121,97,40,41,44,108,42,61,100,61,40,40,100,61,77,97,116,104,46,115,113,114,116,40,108,42,108,43,104,42,104,41,41,45,101,91,118,93,41,47,100,42,114,42,110,91,118,93,44,104,42,61,100,44,115,46,118,120,45,61,108,42,40,112,61,111,91,118,93,41,44,115,46,118,121,45,61,104,42,112,44,99,46,118,120,43,61,108,42,40,112,61,49,45,112,41,44,99,46,118,121,43,61,104,42,112,125,102,117,110,99,116,105,111,110,32,108,40,41,123,105,102,40,114,41,123,118,97,114,32,117,44,99,44,102,61,114,46,108,101,110,103,116,104,44,115,61,116,46,108,101,110,103,116,104,44,108,61,99,111,40,114,44,97,41,59,102,111,114,40,117,61,48,44,105,61,110,101,119,32,65,114,114,97,121,40,102,41,59,117,60,115,59,43,43,117,41,40,99,61,116,91,117,93,41,46,105,110,100,101,120,61,117,44,34,111,98,106,101,99,116,34,33,61,116,121,112,101,111,102,32,99,46,115,111,117,114,99,101,38,38,40,99,46,115,111,117,114,99,101,61,69,97,40,108,44,99,46,115,111,117,114,99,101,41,41,44,34,111,98,106,101,99,116,34,33,61,116,121,112,101,111,102,32,99,46,116,97,114,103,101,116,38,38,40,99,46,116,97,114,103,101,116,61,69,97,40,108,44,99,46,116,97,114,103,101,116,41,41,44,105,91,99,46,115,111,117,114,99,101,46,105,110,100,101,120,93,61,40,105,91,99,46,115,111,117,114,99,101,46,105,110,100,101,120,93,124,124,48,41,43,49,44,105,91,99,46,116,97,114,103,101,116,46,105,110,100,101,120,93,61,40,105,91,99,46,116,97,114,103,101,116,46,105,110,100,101,120,93,124,124,48,41,43,49,59,102,111,114,40,117,61,48,44,111,61,110,101,119,32,65,114,114,97,121,40,115,41,59,117,60,115,59,43,43,117,41,99,61,116,91,117,93,44,111,91,117,93,61,105,91,99,46,115,111,117,114,99,101,46,105,110,100,101,120,93,47,40,105,91,99,46,115,111,117,114,99,101,46,105,110,100,101,120,93,43,105,91,99,46,116,97,114,103,101,116,46,105,110,100,101,120,93,41,59,110,61,110,101,119,32,65,114,114,97,121,40,115,41,44,104,40,41,44,101,61,110,101,119,32,65,114,114,97,121,40,115,41,44,100,40,41,125,125,102,117,110,99,116,105,111,110,32,104,40,41,123,105,102,40,114,41,102,111,114,40,118,97,114,32,101,61,48,44,105,61,116,46,108,101,110,103,116,104,59,101,60,105,59,43,43,101,41,110,91,101,93,61,43,117,40,116,91,101,93,44,101,44,116,41,125,102,117,110,99,116,105,111,110,32,100,40,41,123,105,102,40,114,41,102,111,114,40,118,97,114,32,110,61,48,44,105,61,116,46,108,101,110,103,116,104,59,110,60,105,59,43,43,110,41,101,91,110,93,61,43,99,40,116,91,110,93,44,110,44,116,41,125,114,101,116,117,114,110,32,110,117,108,108,61,61,116,38,38,40,116,61,91,93,41,44,115,46,105,110,105,116,105,97,108,105,122,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,61,116,44,108,40,41,125,44,115,46,108,105,110,107,115,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,116,61,110,44,108,40,41,44,115,41,58,116,125,44,115,46,105,100,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,97,61,116,44,115,41,58,97,125,44,115,46,105,116,101,114,97,116,105,111,110,115,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,102,61,43,116,44,115,41,58,102,125,44,115,46,115,116,114,101,110,103,116,104,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,117,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,103,97,40,43,116,41,44,104,40,41,44,115,41,58,117,125,44,115,46,100,105,115,116,97,110,99,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,99,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,103,97,40,43,116,41,44,100,40,41,44,115,41,58,99,125,44,115,125,44,116,46,102,111,114,99,101,77,97,110,121,66,111,100,121,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,44,110,44,101,44,114,44,105,61,103,97,40,45,51,48,41,44,111,61,49,44,97,61,49,47,48,44,117,61,46,56,49,59,102,117,110,99,116,105,111,110,32,99,40,114,41,123,118,97,114,32,105,44,111,61,116,46,108,101,110,103,116,104,44,97,61,119,97,40,116,44,67,97,44,80,97,41,46,118,105,115,105,116,65,102,116,101,114,40,115,41,59,102,111,114,40,101,61,114,44,105,61,48,59,105,60,111,59,43,43,105,41,110,61,116,91,105,93,44,97,46,118,105,115,105,116,40,108,41,125,102,117,110,99,116,105,111,110,32,102,40,41,123,105,102,40,116,41,123,118,97,114,32,110,44,101,44,111,61,116,46,108,101,110,103,116,104,59,102,111,114,40,114,61,110,101,119,32,65,114,114,97,121,40,111,41,44,110,61,48,59,110,60,111,59,43,43,110,41,101,61,116,91,110,93,44,114,91,101,46,105,110,100,101,120,93,61,43,105,40,101,44,110,44,116,41,125,125,102,117,110,99,116,105,111,110,32,115,40,116,41,123,118,97,114,32,110,44,101,44,105,44,111,44,97,44,117,61,48,44,99,61,48,59,105,102,40,116,46,108,101,110,103,116,104,41,123,102,111,114,40,105,61,111,61,97,61,48,59,97,60,52,59,43,43,97,41,40,110,61,116,91,97,93,41,38,38,40,101,61,77,97,116,104,46,97,98,115,40,110,46,118,97,108,117,101,41,41,38,38,40,117,43,61,110,46,118,97,108,117,101,44,99,43,61,101,44,105,43,61,101,42,110,46,120,44,111,43,61,101,42,110,46,121,41,59,116,46,120,61,105,47,99,44,116,46,121,61,111,47,99,125,101,108,115,101,123,40,110,61,116,41,46,120,61,110,46,100,97,116,97,46,120,44,110,46,121,61,110,46,100,97,116,97,46,121,59,100,111,123,117,43,61,114,91,110,46,100,97,116,97,46,105,110,100,101,120,93,125,119,104,105,108,101,40,110,61,110,46,110,101,120,116,41,125,116,46,118,97,108,117,101,61,117,125,102,117,110,99,116,105,111,110,32,108,40,116,44,105,44,99,44,102,41,123,105,102,40,33,116,46,118,97,108,117,101,41,114,101,116,117,114,110,33,48,59,118,97,114,32,115,61,116,46,120,45,110,46,120,44,108,61,116,46,121,45,110,46,121,44,104,61,102,45,105,44,100,61,115,42,115,43,108,42,108,59,105,102,40,104,42,104,47,117,60,100,41,114,101,116,117,114,110,32,100,60,97,38,38,40,48,61,61,61,115,38,38,40,100,43,61,40,115,61,121,97,40,41,41,42,115,41,44,48,61,61,61,108,38,38,40,100,43,61,40,108,61,121,97,40,41,41,42,108,41,44,100,60,111,38,38,40,100,61,77,97,116,104,46,115,113,114,116,40,111,42,100,41,41,44,110,46,118,120,43,61,115,42,116,46,118,97,108,117,101,42,101,47,100,44,110,46,118,121,43,61,108,42,116,46,118,97,108,117,101,42,101,47,100,41,44,33,48,59,105,102,40,33,40,116,46,108,101,110,103,116,104,124,124,100,62,61,97,41,41,123,40,116,46,100,97,116,97,33,61,61,110,124,124,116,46,110,101,120,116,41,38,38,40,48,61,61,61,115,38,38,40,100,43,61,40,115,61,121,97,40,41,41,42,115,41,44,48,61,61,61,108,38,38,40,100,43,61,40,108,61,121,97,40,41,41,42,108,41,44,100,60,111,38,38,40,100,61,77,97,116,104,46,115,113,114,116,40,111,42,100,41,41,41,59,100,111,123,116,46,100,97,116,97,33,61,61,110,38,38,40,104,61,114,91,116,46,100,97,116,97,46,105,110,100,101,120,93,42,101,47,100,44,110,46,118,120,43,61,115,42,104,44,110,46,118,121,43,61,108,42,104,41,125,119,104,105,108,101,40,116,61,116,46,110,101,120,116,41,125,125,114,101,116,117,114,110,32,99,46,105,110,105,116,105,97,108,105,122,101,61,102,117,110,99,116,105,111,110,40,110,41,123,116,61,110,44,102,40,41,125,44,99,46,115,116,114,101,110,103,116,104,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,105,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,103,97,40,43,116,41,44,102,40,41,44,99,41,58,105,125,44,99,46,100,105,115,116,97,110,99,101,77,105,110,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,111,61,116,42,116,44,99,41,58,77,97,116,104,46,115,113,114,116,40,111,41,125,44,99,46,100,105,115,116,97,110,99,101,77,97,120,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,97,61,116,42,116,44,99,41,58,77,97,116,104,46,115,113,114,116,40,97,41,125,44,99,46,116,104,101,116,97,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,117,61,116,42,116,44,99,41,58,77,97,116,104,46,115,113,114,116,40,117,41,125,44,99,125,44,116,46,102,111,114,99,101,82,97,100,105,97,108,61,102,117,110,99,116,105,111,110,40,116,44,110,44,101,41,123,118,97,114,32,114,44,105,44,111,44,97,61,103,97,40,46,49,41,59,102,117,110,99,116,105,111,110,32,117,40,116,41,123,102,111,114,40,118,97,114,32,97,61,48,44,117,61,114,46,108,101,110,103,116,104,59,97,60,117,59,43,43,97,41,123,118,97,114,32,99,61,114,91,97,93,44,102,61,99,46,120,45,110,124,124,49,101,45,54,44,115,61,99,46,121,45,101,124,124,49,101,45,54,44,108,61,77,97,116,104,46,115,113,114,116,40,102,42,102,43,115,42,115,41,44,104,61,40,111,91,97,93,45,108,41,42,105,91,97,93,42,116,47,108,59,99,46,118,120,43,61,102,42,104,44,99,46,118,121,43,61,115,42,104,125,125,102,117,110,99,116,105,111,110,32,99,40,41,123,105,102,40,114,41,123,118,97,114,32,110,44,101,61,114,46,108,101,110,103,116,104,59,102,111,114,40,105,61,110,101,119,32,65,114,114,97,121,40,101,41,44,111,61,110,101,119,32,65,114,114,97,121,40,101,41,44,110,61,48,59,110,60,101,59,43,43,110,41,111,91,110,93,61,43,116,40,114,91,110,93,44,110,44,114,41,44,105,91,110,93,61,105,115,78,97,78,40,111,91,110,93,41,63,48,58,43,97,40,114,91,110,93,44,110,44,114,41,125,125,114,101,116,117,114,110,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,116,38,38,40,116,61,103,97,40,43,116,41,41,44,110,117,108,108,61,61,110,38,38,40,110,61,48,41,44,110,117,108,108,61,61,101,38,38,40,101,61,48,41,44,117,46,105,110,105,116,105,97,108,105,122,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,61,116,44,99,40,41,125,44,117,46,115,116,114,101,110,103,116,104,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,97,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,103,97,40,43,116,41,44,99,40,41,44,117,41,58,97,125,44,117,46,114,97,100,105,117,115,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,116,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,110,63,110,58,103,97,40,43,110,41,44,99,40,41,44,117,41,58,116,125,44,117,46,120,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,110,61,43,116,44,117,41,58,110,125,44,117,46,121,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,101,61,43,116,44,117,41,58,101,125,44,117,125,44,116,46,102,111,114,99,101,83,105,109,117,108,97,116,105,111,110,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,44,101,61,49,44,114,61,46,48,48,49,44,105,61,49,45,77,97,116,104,46,112,111,119,40,114,44,49,47,51,48,48,41,44,111,61,48,44,97,61,46,54,44,117,61,99,111,40,41,44,99,61,104,114,40,115,41,44,102,61,73,40,34,116,105,99,107,34,44,34,101,110,100,34,41,59,102,117,110,99,116,105,111,110,32,115,40,41,123,108,40,41,44,102,46,99,97,108,108,40,34,116,105,99,107,34,44,110,41,44,101,60,114,38,38,40,99,46,115,116,111,112,40,41,44,102,46,99,97,108,108,40,34,101,110,100,34,44,110,41,41,125,102,117,110,99,116,105,111,110,32,108,40,114,41,123,118,97,114,32,99,44,102,44,115,61,116,46,108,101,110,103,116,104,59,118,111,105,100,32,48,61,61,61,114,38,38,40,114,61,49,41,59,102,111,114,40,118,97,114,32,108,61,48,59,108,60,114,59,43,43,108,41,102,111,114,40,101,43,61,40,111,45,101,41,42,105,44,117,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,116,41,123,116,40,101,41,125,41,44,99,61,48,59,99,60,115,59,43,43,99,41,110,117,108,108,61,61,40,102,61,116,91,99,93,41,46,102,120,63,102,46,120,43,61,102,46,118,120,42,61,97,58,40,102,46,120,61,102,46,102,120,44,102,46,118,120,61,48,41,44,110,117,108,108,61,61,102,46,102,121,63,102,46,121,43,61,102,46,118,121,42,61,97,58,40,102,46,121,61,102,46,102,121,44,102,46,118,121,61,48,41,59,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,104,40,41,123,102,111,114,40,118,97,114,32,110,44,101,61,48,44,114,61,116,46,108,101,110,103,116,104,59,101,60,114,59,43,43,101,41,123,105,102,40,40,110,61,116,91,101,93,41,46,105,110,100,101,120,61,101,44,110,117,108,108,33,61,110,46,102,120,38,38,40,110,46,120,61,110,46,102,120,41,44,110,117,108,108,33,61,110,46,102,121,38,38,40,110,46,121,61,110,46,102,121,41,44,105,115,78,97,78,40,110,46,120,41,124,124,105,115,78,97,78,40,110,46,121,41,41,123,118,97,114,32,105,61,122,97,42,77,97,116,104,46,115,113,114,116,40,101,41,44,111,61,101,42,82,97,59,110,46,120,61,105,42,77,97,116,104,46,99,111,115,40,111,41,44,110,46,121,61,105,42,77,97,116,104,46,115,105,110,40,111,41,125,40,105,115,78,97,78,40,110,46,118,120,41,124,124,105,115,78,97,78,40,110,46,118,121,41,41,38,38,40,110,46,118,120,61,110,46,118,121,61,48,41,125,125,102,117,110,99,116,105,111,110,32,100,40,110,41,123,114,101,116,117,114,110,32,110,46,105,110,105,116,105,97,108,105,122,101,38,38,110,46,105,110,105,116,105,97,108,105,122,101,40,116,41,44,110,125,114,101,116,117,114,110,32,110,117,108,108,61,61,116,38,38,40,116,61,91,93,41,44,104,40,41,44,110,61,123,116,105,99,107,58,108,44,114,101,115,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,99,46,114,101,115,116,97,114,116,40,115,41,44,110,125,44,115,116,111,112,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,99,46,115,116,111,112,40,41,44,110,125,44,110,111,100,101,115,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,116,61,101,44,104,40,41,44,117,46,101,97,99,104,40,100,41,44,110,41,58,116,125,44,97,108,112,104,97,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,101,61,43,116,44,110,41,58,101,125,44,97,108,112,104,97,77,105,110,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,114,61,43,116,44,110,41,58,114,125,44,97,108,112,104,97,68,101,99,97,121,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,105,61,43,116,44,110,41,58,43,105,125,44,97,108,112,104,97,84,97,114,103,101,116,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,111,61,43,116,44,110,41,58,111,125,44,118,101,108,111,99,105,116,121,68,101,99,97,121,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,97,61,49,45,116,44,110,41,58,49,45,97,125,44,102,111,114,99,101,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,62,49,63,40,110,117,108,108,61,61,101,63,117,46,114,101,109,111,118,101,40,116,41,58,117,46,115,101,116,40,116,44,100,40,101,41,41,44,110,41,58,117,46,103,101,116,40,116,41,125,44,102,105,110,100,58,102,117,110,99,116,105,111,110,40,110,44,101,44,114,41,123,118,97,114,32,105,44,111,44,97,44,117,44,99,44,102,61,48,44,115,61,116,46,108,101,110,103,116,104,59,102,111,114,40,110,117,108,108,61,61,114,63,114,61,49,47,48,58,114,42,61,114,44,102,61,48,59,102,60,115,59,43,43,102,41,40,97,61,40,105,61,110,45,40,117,61,116,91,102,93,41,46,120,41,42,105,43,40,111,61,101,45,117,46,121,41,42,111,41,60,114,38,38,40,99,61,117,44,114,61,97,41,59,114,101,116,117,114,110,32,99,125,44,111,110,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,62,49,63,40,102,46,111,110,40,116,44,101,41,44,110,41,58,102,46,111,110,40,116,41,125,125,125,44,116,46,102,111,114,99,101,88,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,44,101,44,114,44,105,61,103,97,40,46,49,41,59,102,117,110,99,116,105,111,110,32,111,40,116,41,123,102,111,114,40,118,97,114,32,105,44,111,61,48,44,97,61,110,46,108,101,110,103,116,104,59,111,60,97,59,43,43,111,41,40,105,61,110,91,111,93,41,46,118,120,43,61,40,114,91,111,93,45,105,46,120,41,42,101,91,111,93,42,116,125,102,117,110,99,116,105,111,110,32,97,40,41,123,105,102,40,110,41,123,118,97,114,32,111,44,97,61,110,46,108,101,110,103,116,104,59,102,111,114,40,101,61,110,101,119,32,65,114,114,97,121,40,97,41,44,114,61,110,101,119,32,65,114,114,97,121,40,97,41,44,111,61,48,59,111,60,97,59,43,43,111,41,101,91,111,93,61,105,115,78,97,78,40,114,91,111,93,61,43,116,40,110,91,111,93,44,111,44,110,41,41,63,48,58,43,105,40,110,91,111,93,44,111,44,110,41,125,125,114,101,116,117,114,110,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,116,38,38,40,116,61,103,97,40,110,117,108,108,61,61,116,63,48,58,43,116,41,41,44,111,46,105,110,105,116,105,97,108,105,122,101,61,102,117,110,99,116,105,111,110,40,116,41,123,110,61,116,44,97,40,41,125,44,111,46,115,116,114,101,110,103,116,104,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,105,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,103,97,40,43,116,41,44,97,40,41,44,111,41,58,105,125,44,111,46,120,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,116,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,110,63,110,58,103,97,40,43,110,41,44,97,40,41,44,111,41,58,116,125,44,111,125,44,116,46,102,111,114,99,101,89,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,44,101,44,114,44,105,61,103,97,40,46,49,41,59,102,117,110,99,116,105,111,110,32,111,40,116,41,123,102,111,114,40,118,97,114,32,105,44,111,61,48,44,97,61,110,46,108,101,110,103,116,104,59,111,60,97,59,43,43,111,41,40,105,61,110,91,111,93,41,46,118,121,43,61,40,114,91,111,93,45,105,46,121,41,42,101,91,111,93,42,116,125,102,117,110,99,116,105,111,110,32,97,40,41,123,105,102,40,110,41,123,118,97,114,32,111,44,97,61,110,46,108,101,110,103,116,104,59,102,111,114,40,101,61,110,101,119,32,65,114,114,97,121,40,97,41,44,114,61,110,101,119,32,65,114,114,97,121,40,97,41,44,111,61,48,59,111,60,97,59,43,43,111,41,101,91,111,93,61,105,115,78,97,78,40,114,91,111,93,61,43,116,40,110,91,111,93,44,111,44,110,41,41,63,48,58,43,105,40,110,91,111,93,44,111,44,110,41,125,125,114,101,116,117,114,110,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,116,38,38,40,116,61,103,97,40,110,117,108,108,61,61,116,63,48,58,43,116,41,41,44,111,46,105,110,105,116,105,97,108,105,122,101,61,102,117,110,99,116,105,111,110,40,116,41,123,110,61,116,44,97,40,41,125,44,111,46,115,116,114,101,110,103,116,104,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,105,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,103,97,40,43,116,41,44,97,40,41,44,111,41,58,105,125,44,111,46,121,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,116,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,110,63,110,58,103,97,40,43,110,41,44,97,40,41,44,111,41,58,116,125,44,111,125,44,116,46,102,111,114,109,97,116,68,101,102,97,117,108,116,76,111,99,97,108,101,61,71,97,44,116,46,102,111,114,109,97,116,76,111,99,97,108,101,61,86,97,44,116,46,102,111,114,109,97,116,83,112,101,99,105,102,105,101,114,61,79,97,44,116,46,103,101,111,65,108,98,101,114,115,61,101,108,44,116,46,103,101,111,65,108,98,101,114,115,85,115,97,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,44,110,44,101,44,114,44,105,44,111,44,97,61,101,108,40,41,44,117,61,110,108,40,41,46,114,111,116,97,116,101,40,91,49,53,52,44,48,93,41,46,99,101,110,116,101,114,40,91,45,50,44,53,56,46,53,93,41,46,112,97,114,97,108,108,101,108,115,40,91,53,53,44,54,53,93,41,44,99,61,110,108,40,41,46,114,111,116,97,116,101,40,91,49,53,55,44,48,93,41,46,99,101,110,116,101,114,40,91,45,51,44,49,57,46,57,93,41,46,112,97,114,97,108,108,101,108,115,40,91,56,44,49,56,93,41,44,102,61,123,112,111,105,110,116,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,111,61,91,116,44,110,93,125,125,59,102,117,110,99,116,105,111,110,32,115,40,116,41,123,118,97,114,32,110,61,116,91,48,93,44,97,61,116,91,49,93,59,114,101,116,117,114,110,32,111,61,110,117,108,108,44,101,46,112,111,105,110,116,40,110,44,97,41,44,111,124,124,40,114,46,112,111,105,110,116,40,110,44,97,41,44,111,41,124,124,40,105,46,112,111,105,110,116,40,110,44,97,41,44,111,41,125,102,117,110,99,116,105,111,110,32,108,40,41,123,114,101,116,117,114,110,32,116,61,110,61,110,117,108,108,44,115,125,114,101,116,117,114,110,32,115,46,105,110,118,101,114,116,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,97,46,115,99,97,108,101,40,41,44,101,61,97,46,116,114,97,110,115,108,97,116,101,40,41,44,114,61,40,116,91,48,93,45,101,91,48,93,41,47,110,44,105,61,40,116,91,49,93,45,101,91,49,93,41,47,110,59,114,101,116,117,114,110,40,105,62,61,46,49,50,38,38,105,60,46,50,51,52,38,38,114,62,61,45,46,52,50,53,38,38,114,60,45,46,50,49,52,63,117,58,105,62,61,46,49,54,54,38,38,105,60,46,50,51,52,38,38,114,62,61,45,46,50,49,52,38,38,114,60,45,46,49,49,53,63,99,58,97,41,46,105,110,118,101,114,116,40,116,41,125,44,115,46,115,116,114,101,97,109,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,38,38,110,61,61,61,101,63,116,58,40,114,61,91,97,46,115,116,114,101,97,109,40,110,61,101,41,44,117,46,115,116,114,101,97,109,40,101,41,44,99,46,115,116,114,101,97,109,40,101,41,93,44,105,61,114,46,108,101,110,103,116,104,44,116,61,123,112,111,105,110,116,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,102,111,114,40,118,97,114,32,101,61,45,49,59,43,43,101,60,105,59,41,114,91,101,93,46,112,111,105,110,116,40,116,44,110,41,125,44,115,112,104,101,114,101,58,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,118,97,114,32,116,61,45,49,59,43,43,116,60,105,59,41,114,91,116,93,46,115,112,104,101,114,101,40,41,125,44,108,105,110,101,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,118,97,114,32,116,61,45,49,59,43,43,116,60,105,59,41,114,91,116,93,46,108,105,110,101,83,116,97,114,116,40,41,125,44,108,105,110,101,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,118,97,114,32,116,61,45,49,59,43,43,116,60,105,59,41,114,91,116,93,46,108,105,110,101,69,110,100,40,41,125,44,112,111,108,121,103,111,110,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,118,97,114,32,116,61,45,49,59,43,43,116,60,105,59,41,114,91,116,93,46,112,111,108,121,103,111,110,83,116,97,114,116,40,41,125,44,112,111,108,121,103,111,110,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,118,97,114,32,116,61,45,49,59,43,43,116,60,105,59,41,114,91,116,93,46,112,111,108,121,103,111,110,69,110,100,40,41,125,125,41,59,118,97,114,32,114,44,105,125,44,115,46,112,114,101,99,105,115,105,111,110,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,97,46,112,114,101,99,105,115,105,111,110,40,116,41,44,117,46,112,114,101,99,105,115,105,111,110,40,116,41,44,99,46,112,114,101,99,105,115,105,111,110,40,116,41,44,108,40,41,41,58,97,46,112,114,101,99,105,115,105,111,110,40,41,125,44,115,46,115,99,97,108,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,97,46,115,99,97,108,101,40,116,41,44,117,46,115,99,97,108,101,40,46,51,53,42,116,41,44,99,46,115,99,97,108,101,40,116,41,44,115,46,116,114,97,110,115,108,97,116,101,40,97,46,116,114,97,110,115,108,97,116,101,40,41,41,41,58,97,46,115,99,97,108,101,40,41,125,44,115,46,116,114,97,110,115,108,97,116,101,61,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,33,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,114,101,116,117,114,110,32,97,46,116,114,97,110,115,108,97,116,101,40,41,59,118,97,114,32,110,61,97,46,115,99,97,108,101,40,41,44,111,61,43,116,91,48,93,44,115,61,43,116,91,49,93,59,114,101,116,117,114,110,32,101,61,97,46,116,114,97,110,115,108,97,116,101,40,116,41,46,99,108,105,112,69,120,116,101,110,116,40,91,91,111,45,46,52,53,53,42,110,44,115,45,46,50,51,56,42,110,93,44,91,111,43,46,52,53,53,42,110,44,115,43,46,50,51,56,42,110,93,93,41,46,115,116,114,101,97,109,40,102,41,44,114,61,117,46,116,114,97,110,115,108,97,116,101,40,91,111,45,46,51,48,55,42,110,44,115,43,46,50,48,49,42,110,93,41,46,99,108,105,112,69,120,116,101,110,116,40,91,91,111,45,46,52,50,53,42,110,43,110,117,44,115,43,46,49,50,42,110,43,110,117,93,44,91,111,45,46,50,49,52,42,110,45,110,117,44,115,43,46,50,51,52,42,110,45,110,117,93,93,41,46,115,116,114,101,97,109,40,102,41,44,105,61,99,46,116,114,97,110,115,108,97,116,101,40,91,111,45,46,50,48,53,42,110,44,115,43,46,50,49,50,42,110,93,41,46,99,108,105,112,69,120,116,101,110,116,40,91,91,111,45,46,50,49,52,42,110,43,110,117,44,115,43,46,49,54,54,42,110,43,110,117,93,44,91,111,45,46,49,49,53,42,110,45,110,117,44,115,43,46,50,51,52,42,110,45,110,117,93,93,41,46,115,116,114,101,97,109,40,102,41,44,108,40,41,125,44,115,46,102,105,116,69,120,116,101,110,116,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,73,115,40,115,44,116,44,110,41,125,44,115,46,102,105,116,83,105,122,101,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,72,115,40,115,44,116,44,110,41,125,44,115,46,102,105,116,87,105,100,116,104,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,106,115,40,115,44,116,44,110,41,125,44,115,46,102,105,116,72,101,105,103,104,116,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,88,115,40,115,44,116,44,110,41,125,44,115,46,115,99,97,108,101,40,49,48,55,48,41,125,44,116,46,103,101,111,65,114,101,97,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,85,117,46,114,101,115,101,116,40,41,44,67,117,40,116,44,79,117,41,44,50,42,85,117,125,44,116,46,103,101,111,65,122,105,109,117,116,104,97,108,69,113,117,97,108,65,114,101,97,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,81,115,40,111,108,41,46,115,99,97,108,101,40,49,50,52,46,55,53,41,46,99,108,105,112,65,110,103,108,101,40,49,55,57,46,57,57,57,41,125,44,116,46,103,101,111,65,122,105,109,117,116,104,97,108,69,113,117,97,108,65,114,101,97,82,97,119,61,111,108,44,116,46,103,101,111,65,122,105,109,117,116,104,97,108,69,113,117,105,100,105,115,116,97,110,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,81,115,40,97,108,41,46,115,99,97,108,101,40,55,57,46,52,49,56,56,41,46,99,108,105,112,65,110,103,108,101,40,49,55,57,46,57,57,57,41,125,44,116,46,103,101,111,65,122,105,109,117,116,104,97,108,69,113,117,105,100,105,115,116,97,110,116,82,97,119,61,97,108,44,116,46,103,101,111,66,111,117,110,100,115,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,44,101,44,114,44,105,44,111,44,97,44,117,59,105,102,40,74,117,61,75,117,61,45,40,90,117,61,81,117,61,49,47,48,41,44,105,99,61,91,93,44,67,117,40,116,44,77,99,41,44,101,61,105,99,46,108,101,110,103,116,104,41,123,102,111,114,40,105,99,46,115,111,114,116,40,122,99,41,44,110,61,49,44,111,61,91,114,61,105,99,91,48,93,93,59,110,60,101,59,43,43,110,41,82,99,40,114,44,40,105,61,105,99,91,110,93,41,91,48,93,41,124,124,82,99,40,114,44,105,91,49,93,41,63,40,80,99,40,114,91,48,93,44,105,91,49,93,41,62,80,99,40,114,91,48,93,44,114,91,49,93,41,38,38,40,114,91,49,93,61,105,91,49,93,41,44,80,99,40,105,91,48,93,44,114,91,49,93,41,62,80,99,40,114,91,48,93,44,114,91,49,93,41,38,38,40,114,91,48,93,61,105,91,48,93,41,41,58,111,46,112,117,115,104,40,114,61,105,41,59,102,111,114,40,97,61,45,49,47,48,44,110,61,48,44,114,61,111,91,101,61,111,46,108,101,110,103,116,104,45,49,93,59,110,60,61,101,59,114,61,105,44,43,43,110,41,105,61,111,91,110,93,44,40,117,61,80,99,40,114,91,49,93,44,105,91,48,93,41,41,62,97,38,38,40,97,61,117,44,90,117,61,105,91,48,93,44,75,117,61,114,91,49,93,41,125,114,101,116,117,114,110,32,105,99,61,111,99,61,110,117,108,108,44,90,117,61,61,61,49,47,48,124,124,81,117,61,61,61,49,47,48,63,91,91,78,97,78,44,78,97,78,93,44,91,78,97,78,44,78,97,78,93,93,58,91,91,90,117,44,81,117,93,44,91,75,117,44,74,117,93,93,125,44,116,46,103,101,111,67,101,110,116,114,111,105,100,61,102,117,110,99,116,105,111,110,40,116,41,123,97,99,61,117,99,61,99,99,61,102,99,61,115,99,61,108,99,61,104,99,61,100,99,61,112,99,61,118,99,61,103,99,61,48,44,67,117,40,116,44,68,99,41,59,118,97,114,32,110,61,112,99,44,101,61,118,99,44,114,61,103,99,44,105,61,110,42,110,43,101,42,101,43,114,42,114,59,114,101,116,117,114,110,32,105,60,101,117,38,38,40,110,61,108,99,44,101,61,104,99,44,114,61,100,99,44,117,99,60,110,117,38,38,40,110,61,99,99,44,101,61,102,99,44,114,61,115,99,41,44,40,105,61,110,42,110,43,101,42,101,43,114,42,114,41,60,101,117,41,63,91,78,97,78,44,78,97,78,93,58,91,108,117,40,101,44,110,41,42,117,117,44,119,117,40,114,47,98,117,40,105,41,41,42,117,117,93,125,44,116,46,103,101,111,67,105,114,99,108,101,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,44,110,44,101,61,88,99,40,91,48,44,48,93,41,44,114,61,88,99,40,57,48,41,44,105,61,88,99,40,54,41,44,111,61,123,112,111,105,110,116,58,102,117,110,99,116,105,111,110,40,101,44,114,41,123,116,46,112,117,115,104,40,101,61,110,40,101,44,114,41,41,44,101,91,48,93,42,61,117,117,44,101,91,49,93,42,61,117,117,125,125,59,102,117,110,99,116,105,111,110,32,97,40,41,123,118,97,114,32,97,61,101,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,44,117,61,114,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,42,99,117,44,99,61,105,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,42,99,117,59,114,101,116,117,114,110,32,116,61,91,93,44,110,61,36,99,40,45,97,91,48,93,42,99,117,44,45,97,91,49,93,42,99,117,44,48,41,46,105,110,118,101,114,116,44,74,99,40,111,44,117,44,99,44,49,41,44,97,61,123,116,121,112,101,58,34,80,111,108,121,103,111,110,34,44,99,111,111,114,100,105,110,97,116,101,115,58,91,116,93,125,44,116,61,110,61,110,117,108,108,44,97,125,114,101,116,117,114,110,32,97,46,99,101,110,116,101,114,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,101,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,88,99,40,91,43,116,91,48,93,44,43,116,91,49,93,93,41,44,97,41,58,101,125,44,97,46,114,97,100,105,117,115,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,114,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,88,99,40,43,116,41,44,97,41,58,114,125,44,97,46,112,114,101,99,105,115,105,111,110,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,105,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,88,99,40,43,116,41,44,97,41,58,105,125,44,97,125,44,116,46,103,101,111,67,108,105,112,65,110,116,105,109,101,114,105,100,105,97,110,61,100,102,44,116,46,103,101,111,67,108,105,112,67,105,114,99,108,101,61,112,102,44,116,46,103,101,111,67,108,105,112,69,120,116,101,110,116,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,44,110,44,101,44,114,61,48,44,105,61,48,44,111,61,57,54,48,44,97,61,53,48,48,59,114,101,116,117,114,110,32,101,61,123,115,116,114,101,97,109,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,38,38,110,61,61,61,101,63,116,58,116,61,121,102,40,114,44,105,44,111,44,97,41,40,110,61,101,41,125,44,101,120,116,101,110,116,58,102,117,110,99,116,105,111,110,40,117,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,114,61,43,117,91,48,93,91,48,93,44,105,61,43,117,91,48,93,91,49,93,44,111,61,43,117,91,49,93,91,48,93,44,97,61,43,117,91,49,93,91,49,93,44,116,61,110,61,110,117,108,108,44,101,41,58,91,91,114,44,105,93,44,91,111,44,97,93,93,125,125,125,44,116,46,103,101,111,67,108,105,112,82,101,99,116,97,110,103,108,101,61,121,102,44,116,46,103,101,111,67,111,110,105,99,67,111,110,102,111,114,109,97,108,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,74,115,40,115,108,41,46,115,99,97,108,101,40,49,48,57,46,53,41,46,112,97,114,97,108,108,101,108,115,40,91,51,48,44,51,48,93,41,125,44,116,46,103,101,111,67,111,110,105,99,67,111,110,102,111,114,109,97,108,82,97,119,61,115,108,44,116,46,103,101,111,67,111,110,105,99,69,113,117,97,108,65,114,101,97,61,110,108,44,116,46,103,101,111,67,111,110,105,99,69,113,117,97,108,65,114,101,97,82,97,119,61,116,108,44,116,46,103,101,111,67,111,110,105,99,69,113,117,105,100,105,115,116,97,110,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,74,115,40,104,108,41,46,115,99,97,108,101,40,49,51,49,46,49,53,52,41,46,99,101,110,116,101,114,40,91,48,44,49,51,46,57,51,56,57,93,41,125,44,116,46,103,101,111,67,111,110,105,99,69,113,117,105,100,105,115,116,97,110,116,82,97,119,61,104,108,44,116,46,103,101,111,67,111,110,116,97,105,110,115,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,40,116,38,38,67,102,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,116,46,116,121,112,101,41,63,67,102,91,116,46,116,121,112,101,93,58,122,102,41,40,116,44,110,41,125,44,116,46,103,101,111,68,105,115,116,97,110,99,101,61,69,102,44,116,46,103,101,111,69,113,117,97,108,69,97,114,116,104,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,81,115,40,95,108,41,46,115,99,97,108,101,40,49,55,55,46,49,53,56,41,125,44,116,46,103,101,111,69,113,117,97,108,69,97,114,116,104,82,97,119,61,95,108,44,116,46,103,101,111,69,113,117,105,114,101,99,116,97,110,103,117,108,97,114,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,81,115,40,108,108,41,46,115,99,97,108,101,40,49,53,50,46,54,51,41,125,44,116,46,103,101,111,69,113,117,105,114,101,99,116,97,110,103,117,108,97,114,82,97,119,61,108,108,44,116,46,103,101,111,71,110,111,109,111,110,105,99,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,81,115,40,98,108,41,46,115,99,97,108,101,40,49,52,52,46,48,52,57,41,46,99,108,105,112,65,110,103,108,101,40,54,48,41,125,44,116,46,103,101,111,71,110,111,109,111,110,105,99,82,97,119,61,98,108,44,116,46,103,101,111,71,114,97,116,105,99,117,108,101,61,70,102,44,116,46,103,101,111,71,114,97,116,105,99,117,108,101,49,48,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,70,102,40,41,40,41,125,44,116,46,103,101,111,73,100,101,110,116,105,116,121,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,44,110,44,101,44,114,44,105,44,111,44,97,44,117,61,49,44,99,61,48,44,102,61,48,44,115,61,49,44,108,61,49,44,104,61,48,44,100,61,110,117,108,108,44,112,61,49,44,118,61,49,44,103,61,66,115,40,123,112,111,105,110,116,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,61,98,40,91,116,44,110,93,41,59,116,104,105,115,46,115,116,114,101,97,109,46,112,111,105,110,116,40,101,91,48,93,44,101,91,49,93,41,125,125,41,44,121,61,89,102,59,102,117,110,99,116,105,111,110,32,95,40,41,123,114,101,116,117,114,110,32,112,61,117,42,115,44,118,61,117,42,108,44,111,61,97,61,110,117,108,108,44,98,125,102,117,110,99,116,105,111,110,32,98,40,101,41,123,118,97,114,32,114,61,101,91,48,93,42,112,44,105,61,101,91,49,93,42,118,59,105,102,40,104,41,123,118,97,114,32,111,61,105,42,116,45,114,42,110,59,114,61,114,42,116,43,105,42,110,44,105,61,111,125,114,101,116,117,114,110,91,114,43,99,44,105,43,102,93,125,114,101,116,117,114,110,32,98,46,105,110,118,101,114,116,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,114,61,101,91,48,93,45,99,44,105,61,101,91,49,93,45,102,59,105,102,40,104,41,123,118,97,114,32,111,61,105,42,116,43,114,42,110,59,114,61,114,42,116,45,105,42,110,44,105,61,111,125,114,101,116,117,114,110,91,114,47,112,44,105,47,118,93,125,44,98,46,115,116,114,101,97,109,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,111,38,38,97,61,61,61,116,63,111,58,111,61,103,40,121,40,97,61,116,41,41,125,44,98,46,112,111,115,116,99,108,105,112,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,121,61,116,44,100,61,101,61,114,61,105,61,110,117,108,108,44,95,40,41,41,58,121,125,44,98,46,99,108,105,112,69,120,116,101,110,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,121,61,110,117,108,108,61,61,116,63,40,100,61,101,61,114,61,105,61,110,117,108,108,44,89,102,41,58,121,102,40,100,61,43,116,91,48,93,91,48,93,44,101,61,43,116,91,48,93,91,49,93,44,114,61,43,116,91,49,93,91,48,93,44,105,61,43,116,91,49,93,91,49,93,41,44,95,40,41,41,58,110,117,108,108,61,61,100,63,110,117,108,108,58,91,91,100,44,101,93,44,91,114,44,105,93,93,125,44,98,46,115,99,97,108,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,117,61,43,116,44,95,40,41,41,58,117,125,44,98,46,116,114,97,110,115,108,97,116,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,99,61,43,116,91,48,93,44,102,61,43,116,91,49,93,44,95,40,41,41,58,91,99,44,102,93,125,44,98,46,97,110,103,108,101,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,110,61,121,117,40,104,61,101,37,51,54,48,42,99,117,41,44,116,61,104,117,40,104,41,44,95,40,41,41,58,104,42,117,117,125,44,98,46,114,101,102,108,101,99,116,88,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,115,61,116,63,45,49,58,49,44,95,40,41,41,58,115,60,48,125,44,98,46,114,101,102,108,101,99,116,89,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,108,61,116,63,45,49,58,49,44,95,40,41,41,58,108,60,48,125,44,98,46,102,105,116,69,120,116,101,110,116,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,73,115,40,98,44,116,44,110,41,125,44,98,46,102,105,116,83,105,122,101,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,72,115,40,98,44,116,44,110,41,125,44,98,46,102,105,116,87,105,100,116,104,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,106,115,40,98,44,116,44,110,41,125,44,98,46,102,105,116,72,101,105,103,104,116,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,88,115,40,98,44,116,44,110,41,125,44,98,125,44,116,46,103,101,111,73,110,116,101,114,112,111,108,97,116,101,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,61,116,91,48,93,42,99,117,44,114,61,116,91,49,93,42,99,117,44,105,61,110,91,48,93,42,99,117,44,111,61,110,91,49,93,42,99,117,44,97,61,104,117,40,114,41,44,117,61,121,117,40,114,41,44,99,61,104,117,40,111,41,44,102,61,121,117,40,111,41,44,115,61,97,42,104,117,40,101,41,44,108,61,97,42,121,117,40,101,41,44,104,61,99,42,104,117,40,105,41,44,100,61,99,42,121,117,40,105,41,44,112,61,50,42,119,117,40,98,117,40,77,117,40,111,45,114,41,43,97,42,99,42,77,117,40,105,45,101,41,41,41,44,118,61,121,117,40,112,41,44,103,61,112,63,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,121,117,40,116,42,61,112,41,47,118,44,101,61,121,117,40,112,45,116,41,47,118,44,114,61,101,42,115,43,110,42,104,44,105,61,101,42,108,43,110,42,100,44,111,61,101,42,117,43,110,42,102,59,114,101,116,117,114,110,91,108,117,40,105,44,114,41,42,117,117,44,108,117,40,111,44,98,117,40,114,42,114,43,105,42,105,41,41,42,117,117,93,125,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,91,101,42,117,117,44,114,42,117,117,93,125,59,114,101,116,117,114,110,32,103,46,100,105,115,116,97,110,99,101,61,112,44,103,125,44,116,46,103,101,111,76,101,110,103,116,104,61,65,102,44,116,46,103,101,111,77,101,114,99,97,116,111,114,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,99,108,40,117,108,41,46,115,99,97,108,101,40,57,54,49,47,97,117,41,125,44,116,46,103,101,111,77,101,114,99,97,116,111,114,82,97,119,61,117,108,44,116,46,103,101,111,78,97,116,117,114,97,108,69,97,114,116,104,49,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,81,115,40,109,108,41,46,115,99,97,108,101,40,49,55,53,46,50,57,53,41,125,44,116,46,103,101,111,78,97,116,117,114,97,108,69,97,114,116,104,49,82,97,119,61,109,108,44,116,46,103,101,111,79,114,116,104,111,103,114,97,112,104,105,99,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,81,115,40,120,108,41,46,115,99,97,108,101,40,50,52,57,46,53,41,46,99,108,105,112,65,110,103,108,101,40,57,48,43,110,117,41,125,44,116,46,103,101,111,79,114,116,104,111,103,114,97,112,104,105,99,82,97,119,61,120,108,44,116,46,103,101,111,80,97,116,104,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,44,114,44,105,61,52,46,53,59,102,117,110,99,116,105,111,110,32,111,40,116,41,123,114,101,116,117,114,110,32,116,38,38,40,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,105,38,38,114,46,112,111,105,110,116,82,97,100,105,117,115,40,43,105,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,41,44,67,117,40,116,44,101,40,114,41,41,41,44,114,46,114,101,115,117,108,116,40,41,125,114,101,116,117,114,110,32,111,46,97,114,101,97,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,67,117,40,116,44,101,40,36,102,41,41,44,36,102,46,114,101,115,117,108,116,40,41,125,44,111,46,109,101,97,115,117,114,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,67,117,40,116,44,101,40,68,115,41,41,44,68,115,46,114,101,115,117,108,116,40,41,125,44,111,46,98,111,117,110,100,115,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,67,117,40,116,44,101,40,114,115,41,41,44,114,115,46,114,101,115,117,108,116,40,41,125,44,111,46,99,101,110,116,114,111,105,100,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,67,117,40,116,44,101,40,121,115,41,41,44,121,115,46,114,101,115,117,108,116,40,41,125,44,111,46,112,114,111,106,101,99,116,105,111,110,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,101,61,110,117,108,108,61,61,110,63,40,116,61,110,117,108,108,44,89,102,41,58,40,116,61,110,41,46,115,116,114,101,97,109,44,111,41,58,116,125,44,111,46,99,111,110,116,101,120,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,114,61,110,117,108,108,61,61,116,63,40,110,61,110,117,108,108,44,110,101,119,32,85,115,41,58,110,101,119,32,83,115,40,110,61,116,41,44,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,105,38,38,114,46,112,111,105,110,116,82,97,100,105,117,115,40,105,41,44,111,41,58,110,125,44,111,46,112,111,105,110,116,82,97,100,105,117,115,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,105,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,40,114,46,112,111,105,110,116,82,97,100,105,117,115,40,43,116,41,44,43,116,41,44,111,41,58,105,125,44,111,46,112,114,111,106,101,99,116,105,111,110,40,116,41,46,99,111,110,116,101,120,116,40,110,41,125,44,116,46,103,101,111,80,114,111,106,101,99,116,105,111,110,61,81,115,44,116,46,103,101,111,80,114,111,106,101,99,116,105,111,110,77,117,116,97,116,111,114,61,75,115,44,116,46,103,101,111,82,111,116,97,116,105,111,110,61,75,99,44,116,46,103,101,111,83,116,101,114,101,111,103,114,97,112,104,105,99,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,81,115,40,119,108,41,46,115,99,97,108,101,40,50,53,48,41,46,99,108,105,112,65,110,103,108,101,40,49,52,50,41,125,44,116,46,103,101,111,83,116,101,114,101,111,103,114,97,112,104,105,99,82,97,119,61,119,108,44,116,46,103,101,111,83,116,114,101,97,109,61,67,117,44,116,46,103,101,111,84,114,97,110,115,102,111,114,109,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,123,115,116,114,101,97,109,58,66,115,40,116,41,125,125,44,116,46,103,101,111,84,114,97,110,115,118,101,114,115,101,77,101,114,99,97,116,111,114,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,99,108,40,77,108,41,44,110,61,116,46,99,101,110,116,101,114,44,101,61,116,46,114,111,116,97,116,101,59,114,101,116,117,114,110,32,116,46,99,101,110,116,101,114,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,110,40,91,45,116,91,49,93,44,116,91,48,93,93,41,58,91,40,116,61,110,40,41,41,91,49,93,44,45,116,91,48,93,93,125,44,116,46,114,111,116,97,116,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,101,40,91,116,91,48,93,44,116,91,49,93,44,116,46,108,101,110,103,116,104,62,50,63,116,91,50,93,43,57,48,58,57,48,93,41,58,91,40,116,61,101,40,41,41,91,48,93,44,116,91,49,93,44,116,91,50,93,45,57,48,93,125,44,101,40,91,48,44,48,44,57,48,93,41,46,115,99,97,108,101,40,49,53,57,46,49,53,53,41,125,44,116,46,103,101,111,84,114,97,110,115,118,101,114,115,101,77,101,114,99,97,116,111,114,82,97,119,61,77,108,44,116,46,103,114,97,121,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,110,101,119,32,66,110,40,116,44,48,44,48,44,110,117,108,108,61,61,110,63,49,58,110,41,125,44,116,46,104,99,108,61,88,110,44,116,46,104,105,101,114,97,114,99,104,121,61,107,108,44,116,46,104,105,115,116,111,103,114,97,109,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,118,44,110,61,115,44,101,61,77,59,102,117,110,99,116,105,111,110,32,114,40,114,41,123,118,97,114,32,111,44,97,44,117,61,114,46,108,101,110,103,116,104,44,99,61,110,101,119,32,65,114,114,97,121,40,117,41,59,102,111,114,40,111,61,48,59,111,60,117,59,43,43,111,41,99,91,111,93,61,116,40,114,91,111,93,44,111,44,114,41,59,118,97,114,32,102,61,110,40,99,41,44,115,61,102,91,48,93,44,108,61,102,91,49,93,44,104,61,101,40,99,44,115,44,108,41,59,65,114,114,97,121,46,105,115,65,114,114,97,121,40,104,41,124,124,40,104,61,119,40,115,44,108,44,104,41,44,104,61,103,40,77,97,116,104,46,99,101,105,108,40,115,47,104,41,42,104,44,108,44,104,41,41,59,102,111,114,40,118,97,114,32,100,61,104,46,108,101,110,103,116,104,59,104,91,48,93,60,61,115,59,41,104,46,115,104,105,102,116,40,41,44,45,45,100,59,102,111,114,40,59,104,91,100,45,49,93,62,108,59,41,104,46,112,111,112,40,41,44,45,45,100,59,118,97,114,32,112,44,118,61,110,101,119,32,65,114,114,97,121,40,100,43,49,41,59,102,111,114,40,111,61,48,59,111,60,61,100,59,43,43,111,41,40,112,61,118,91,111,93,61,91,93,41,46,120,48,61,111,62,48,63,104,91,111,45,49,93,58,115,44,112,46,120,49,61,111,60,100,63,104,91,111,93,58,108,59,102,111,114,40,111,61,48,59,111,60,117,59,43,43,111,41,115,60,61,40,97,61,99,91,111,93,41,38,38,97,60,61,108,38,38,118,91,105,40,104,44,97,44,48,44,100,41,93,46,112,117,115,104,40,114,91,111,93,41,59,114,101,116,117,114,110,32,118,125,114,101,116,117,114,110,32,114,46,118,97,108,117,101,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,116,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,110,63,110,58,112,40,110,41,44,114,41,58,116,125,44,114,46,100,111,109,97,105,110,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,110,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,112,40,91,116,91,48,93,44,116,91,49,93,93,41,44,114,41,58,110,125,44,114,46,116,104,114,101,115,104,111,108,100,115,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,101,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,65,114,114,97,121,46,105,115,65,114,114,97,121,40,116,41,63,112,40,104,46,99,97,108,108,40,116,41,41,58,112,40,116,41,44,114,41,58,101,125,44,114,125,44,116,46,104,115,108,61,84,110,44,116,46,104,116,109,108,61,112,97,44,116,46,105,109,97,103,101,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,110,101,119,32,80,114,111,109,105,115,101,40,102,117,110,99,116,105,111,110,40,101,44,114,41,123,118,97,114,32,105,61,110,101,119,32,73,109,97,103,101,59,102,111,114,40,118,97,114,32,111,32,105,110,32,110,41,105,91,111,93,61,110,91,111,93,59,105,46,111,110,101,114,114,111,114,61,114,44,105,46,111,110,108,111,97,100,61,102,117,110,99,116,105,111,110,40,41,123,101,40,105,41,125,44,105,46,115,114,99,61,116,125,41,125,44,116,46,105,110,116,101,114,112,111,108,97,116,101,61,84,101,44,116,46,105,110,116,101,114,112,111,108,97,116,101,65,114,114,97,121,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,40,121,101,40,110,41,63,103,101,58,95,101,41,40,116,44,110,41,125,44,116,46,105,110,116,101,114,112,111,108,97,116,101,66,97,115,105,115,61,111,101,44,116,46,105,110,116,101,114,112,111,108,97,116,101,66,97,115,105,115,67,108,111,115,101,100,61,97,101,44,116,46,105,110,116,101,114,112,111,108,97,116,101,66,108,117,101,115,61,81,103,44,116,46,105,110,116,101,114,112,111,108,97,116,101,66,114,66,71,61,102,103,44,116,46,105,110,116,101,114,112,111,108,97,116,101,66,117,71,110,61,83,103,44,116,46,105,110,116,101,114,112,111,108,97,116,101,66,117,80,117,61,69,103,44,116,46,105,110,116,101,114,112,111,108,97,116,101,67,105,118,105,100,105,115,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,61,77,97,116,104,46,109,97,120,40,48,44,77,97,116,104,46,109,105,110,40,49,44,116,41,41,44,34,114,103,98,40,34,43,77,97,116,104,46,109,97,120,40,48,44,77,97,116,104,46,109,105,110,40,50,53,53,44,77,97,116,104,46,114,111,117,110,100,40,45,52,46,53,52,45,116,42,40,51,53,46,51,52,45,116,42,40,50,51,56,49,46,55,51,45,116,42,40,54,52,48,50,46,55,45,116,42,40,55,48,50,52,46,55,50,45,50,55,49,48,46,53,55,42,116,41,41,41,41,41,41,41,43,34,44,32,34,43,77,97,116,104,46,109,97,120,40,48,44,77,97,116,104,46,109,105,110,40,50,53,53,44,77,97,116,104,46,114,111,117,110,100,40,51,50,46,52,57,43,116,42,40,49,55,48,46,55,51,43,116,42,40,53,50,46,56,50,45,116,42,40,49,51,49,46,52,54,45,116,42,40,49,55,54,46,53,56,45,54,55,46,51,55,42,116,41,41,41,41,41,41,41,43,34,44,32,34,43,77,97,116,104,46,109,97,120,40,48,44,77,97,116,104,46,109,105,110,40,50,53,53,44,77,97,116,104,46,114,111,117,110,100,40,56,49,46,50,52,43,116,42,40,52,52,50,46,51,54,45,116,42,40,50,52,56,50,46,52,51,45,116,42,40,54,49,54,55,46,50,52,45,116,42,40,54,54,49,52,46,57,52,45,50,52,55,53,46,54,55,42,116,41,41,41,41,41,41,41,43,34,41,34,125,44,116,46,105,110,116,101,114,112,111,108,97,116,101,67,111,111,108,61,115,121,44,116,46,105,110,116,101,114,112,111,108,97,116,101,67,117,98,101,104,101,108,105,120,61,90,101,44,116,46,105,110,116,101,114,112,111,108,97,116,101,67,117,98,101,104,101,108,105,120,68,101,102,97,117,108,116,61,99,121,44,116,46,105,110,116,101,114,112,111,108,97,116,101,67,117,98,101,104,101,108,105,120,76,111,110,103,61,81,101,44,116,46,105,110,116,101,114,112,111,108,97,116,101,68,97,116,101,61,98,101,44,116,46,105,110,116,101,114,112,111,108,97,116,101,68,105,115,99,114,101,116,101,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,116,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,91,77,97,116,104,46,109,97,120,40,48,44,77,97,116,104,46,109,105,110,40,110,45,49,44,77,97,116,104,46,102,108,111,111,114,40,101,42,110,41,41,41,93,125,125,44,116,46,105,110,116,101,114,112,111,108,97,116,101,71,110,66,117,61,80,103,44,116,46,105,110,116,101,114,112,111,108,97,116,101,71,114,101,101,110,115,61,74,103,44,116,46,105,110,116,101,114,112,111,108,97,116,101,71,114,101,121,115,61,110,121,44,116,46,105,110,116,101,114,112,111,108,97,116,101,72,99,108,61,71,101,44,116,46,105,110,116,101,114,112,111,108,97,116,101,72,99,108,76,111,110,103,61,36,101,44,116,46,105,110,116,101,114,112,111,108,97,116,101,72,115,108,61,106,101,44,116,46,105,110,116,101,114,112,111,108,97,116,101,72,115,108,76,111,110,103,61,88,101,44,116,46,105,110,116,101,114,112,111,108,97,116,101,72,117,101,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,61,102,101,40,43,116,44,43,110,41,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,101,40,116,41,59,114,101,116,117,114,110,32,110,45,51,54,48,42,77,97,116,104,46,102,108,111,111,114,40,110,47,51,54,48,41,125,125,44,116,46,105,110,116,101,114,112,111,108,97,116,101,73,110,102,101,114,110,111,61,95,121,44,116,46,105,110,116,101,114,112,111,108,97,116,101,76,97,98,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,61,108,101,40,40,116,61,79,110,40,116,41,41,46,108,44,40,110,61,79,110,40,110,41,41,46,108,41,44,114,61,108,101,40,116,46,97,44,110,46,97,41,44,105,61,108,101,40,116,46,98,44,110,46,98,41,44,111,61,108,101,40,116,46,111,112,97,99,105,116,121,44,110,46,111,112,97,99,105,116,121,41,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,46,108,61,101,40,110,41,44,116,46,97,61,114,40,110,41,44,116,46,98,61,105,40,110,41,44,116,46,111,112,97,99,105,116,121,61,111,40,110,41,44,116,43,34,34,125,125,44,116,46,105,110,116,101,114,112,111,108,97,116,101,77,97,103,109,97,61,121,121,44,116,46,105,110,116,101,114,112,111,108,97,116,101,78,117,109,98,101,114,61,109,101,44,116,46,105,110,116,101,114,112,111,108,97,116,101,78,117,109,98,101,114,65,114,114,97,121,61,103,101,44,116,46,105,110,116,101,114,112,111,108,97,116,101,79,98,106,101,99,116,61,120,101,44,116,46,105,110,116,101,114,112,111,108,97,116,101,79,114,82,100,61,82,103,44,116,46,105,110,116,101,114,112,111,108,97,116,101,79,114,97,110,103,101,115,61,117,121,44,116,46,105,110,116,101,114,112,111,108,97,116,101,80,82,71,110,61,108,103,44,116,46,105,110,116,101,114,112,111,108,97,116,101,80,105,89,71,61,100,103,44,116,46,105,110,116,101,114,112,111,108,97,116,101,80,108,97,115,109,97,61,98,121,44,116,46,105,110,116,101,114,112,111,108,97,116,101,80,117,66,117,61,85,103,44,116,46,105,110,116,101,114,112,111,108,97,116,101,80,117,66,117,71,110,61,113,103,44,116,46,105,110,116,101,114,112,111,108,97,116,101,80,117,79,114,61,118,103,44,116,46,105,110,116,101,114,112,111,108,97,116,101,80,117,82,100,61,66,103,44,116,46,105,110,116,101,114,112,111,108,97,116,101,80,117,114,112,108,101,115,61,114,121,44,116,46,105,110,116,101,114,112,111,108,97,116,101,82,97,105,110,98,111,119,61,102,117,110,99,116,105,111,110,40,116,41,123,40,116,60,48,124,124,116,62,49,41,38,38,40,116,45,61,77,97,116,104,46,102,108,111,111,114,40,116,41,41,59,118,97,114,32,110,61,77,97,116,104,46,97,98,115,40,116,45,46,53,41,59,114,101,116,117,114,110,32,108,121,46,104,61,51,54,48,42,116,45,49,48,48,44,108,121,46,115,61,49,46,53,45,49,46,53,42,110,44,108,121,46,108,61,46,56,45,46,57,42,110,44,108,121,43,34,34,125,44,116,46,105,110,116,101,114,112,111,108,97,116,101,82,100,66,117,61,121,103,44,116,46,105,110,116,101,114,112,111,108,97,116,101,82,100,71,121,61,98,103,44,116,46,105,110,116,101,114,112,111,108,97,116,101,82,100,80,117,61,89,103,44,116,46,105,110,116,101,114,112,111,108,97,116,101,82,100,89,108,66,117,61,120,103,44,116,46,105,110,116,101,114,112,111,108,97,116,101,82,100,89,108,71,110,61,77,103,44,116,46,105,110,116,101,114,112,111,108,97,116,101,82,101,100,115,61,111,121,44,116,46,105,110,116,101,114,112,111,108,97,116,101,82,103,98,61,104,101,44,116,46,105,110,116,101,114,112,111,108,97,116,101,82,103,98,66,97,115,105,115,61,112,101,44,116,46,105,110,116,101,114,112,111,108,97,116,101,82,103,98,66,97,115,105,115,67,108,111,115,101,100,61,118,101,44,116,46,105,110,116,101,114,112,111,108,97,116,101,82,111,117,110,100,61,65,101,44,116,46,105,110,116,101,114,112,111,108,97,116,101,83,105,110,101,98,111,119,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,59,114,101,116,117,114,110,32,116,61,40,46,53,45,116,41,42,77,97,116,104,46,80,73,44,104,121,46,114,61,50,53,53,42,40,110,61,77,97,116,104,46,115,105,110,40,116,41,41,42,110,44,104,121,46,103,61,50,53,53,42,40,110,61,77,97,116,104,46,115,105,110,40,116,43,100,121,41,41,42,110,44,104,121,46,98,61,50,53,53,42,40,110,61,77,97,116,104,46,115,105,110,40,116,43,112,121,41,41,42,110,44,104,121,43,34,34,125,44,116,46,105,110,116,101,114,112,111,108,97,116,101,83,112,101,99,116,114,97,108,61,84,103,44,116,46,105,110,116,101,114,112,111,108,97,116,101,83,116,114,105,110,103,61,78,101,44,116,46,105,110,116,101,114,112,111,108,97,116,101,84,114,97,110,115,102,111,114,109,67,115,115,61,113,101,44,116,46,105,110,116,101,114,112,111,108,97,116,101,84,114,97,110,115,102,111,114,109,83,118,103,61,76,101,44,116,46,105,110,116,101,114,112,111,108,97,116,101,84,117,114,98,111,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,61,77,97,116,104,46,109,97,120,40,48,44,77,97,116,104,46,109,105,110,40,49,44,116,41,41,44,34,114,103,98,40,34,43,77,97,116,104,46,109,97,120,40,48,44,77,97,116,104,46,109,105,110,40,50,53,53,44,77,97,116,104,46,114,111,117,110,100,40,51,52,46,54,49,43,116,42,40,49,49,55,50,46,51,51,45,116,42,40,49,48,55,57,51,46,53,54,45,116,42,40,51,51,51,48,48,46,49,50,45,116,42,40,51,56,51,57,52,46,52,57,45,49,52,56,50,53,46,48,53,42,116,41,41,41,41,41,41,41,43,34,44,32,34,43,77,97,116,104,46,109,97,120,40,48,44,77,97,116,104,46,109,105,110,40,50,53,53,44,77,97,116,104,46,114,111,117,110,100,40,50,51,46,51,49,43,116,42,40,53,53,55,46,51,51,43,116,42,40,49,50,50,53,46,51,51,45,116,42,40,51,53,55,52,46,57,54,45,116,42,40,49,48,55,51,46,55,55,43,55,48,55,46,53,54,42,116,41,41,41,41,41,41,41,43,34,44,32,34,43,77,97,116,104,46,109,97,120,40,48,44,77,97,116,104,46,109,105,110,40,50,53,53,44,77,97,116,104,46,114,111,117,110,100,40,50,55,46,50,43,116,42,40,51,50,49,49,46,49,45,116,42,40,49,53,51,50,55,46,57,55,45,116,42,40,50,55,56,49,52,45,116,42,40,50,50,53,54,57,46,49,56,45,54,56,51,56,46,54,54,42,116,41,41,41,41,41,41,41,43,34,41,34,125,44,116,46,105,110,116,101,114,112,111,108,97,116,101,86,105,114,105,100,105,115,61,103,121,44,116,46,105,110,116,101,114,112,111,108,97,116,101,87,97,114,109,61,102,121,44,116,46,105,110,116,101,114,112,111,108,97,116,101,89,108,71,110,61,88,103,44,116,46,105,110,116,101,114,112,111,108,97,116,101,89,108,71,110,66,117,61,72,103,44,116,46,105,110,116,101,114,112,111,108,97,116,101,89,108,79,114,66,114,61,71,103,44,116,46,105,110,116,101,114,112,111,108,97,116,101,89,108,79,114,82,100,61,87,103,44,116,46,105,110,116,101,114,112,111,108,97,116,101,90,111,111,109,61,73,101,44,116,46,105,110,116,101,114,114,117,112,116,61,80,114,44,116,46,105,110,116,101,114,118,97,108,61,102,117,110,99,116,105,111,110,40,116,44,110,44,101,41,123,118,97,114,32,114,61,110,101,119,32,108,114,44,105,61,110,59,114,101,116,117,114,110,32,110,117,108,108,61,61,110,63,40,114,46,114,101,115,116,97,114,116,40,116,44,110,44,101,41,44,114,41,58,40,110,61,43,110,44,101,61,110,117,108,108,61,61,101,63,102,114,40,41,58,43,101,44,114,46,114,101,115,116,97,114,116,40,102,117,110,99,116,105,111,110,32,111,40,97,41,123,97,43,61,105,44,114,46,114,101,115,116,97,114,116,40,111,44,105,43,61,110,44,101,41,44,116,40,97,41,125,44,110,44,101,41,44,114,41,125,44,116,46,105,115,111,70,111,114,109,97,116,61,82,118,44,116,46,105,115,111,80,97,114,115,101,61,68,118,44,116,46,106,115,111,110,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,102,101,116,99,104,40,116,44,110,41,46,116,104,101,110,40,108,97,41,125,44,116,46,107,101,121,115,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,91,93,59,102,111,114,40,118,97,114,32,101,32,105,110,32,116,41,110,46,112,117,115,104,40,101,41,59,114,101,116,117,114,110,32,110,125,44,116,46,108,97,98,61,79,110,44,116,46,108,99,104,61,102,117,110,99,116,105,111,110,40,116,44,110,44,101,44,114,41,123,114,101,116,117,114,110,32,49,61,61,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,106,110,40,116,41,58,110,101,119,32,86,110,40,101,44,110,44,116,44,110,117,108,108,61,61,114,63,49,58,114,41,125,44,116,46,108,105,110,101,61,72,121,44,116,46,108,105,110,101,82,97,100,105,97,108,61,81,121,44,116,46,108,105,110,107,72,111,114,105,122,111,110,116,97,108,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,114,95,40,105,95,41,125,44,116,46,108,105,110,107,82,97,100,105,97,108,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,114,95,40,97,95,41,59,114,101,116,117,114,110,32,116,46,97,110,103,108,101,61,116,46,120,44,100,101,108,101,116,101,32,116,46,120,44,116,46,114,97,100,105,117,115,61,116,46,121,44,100,101,108,101,116,101,32,116,46,121,44,116,125,44,116,46,108,105,110,107,86,101,114,116,105,99,97,108,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,114,95,40,111,95,41,125,44,116,46,108,111,99,97,108,61,113,116,44,116,46,109,97,112,61,99,111,44,116,46,109,97,116,99,104,101,114,61,110,116,44,116,46,109,97,120,61,84,44,116,46,109,101,97,110,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,44,114,61,116,46,108,101,110,103,116,104,44,105,61,114,44,111,61,45,49,44,97,61,48,59,105,102,40,110,117,108,108,61,61,110,41,102,111,114,40,59,43,43,111,60,114,59,41,105,115,78,97,78,40,101,61,117,40,116,91,111,93,41,41,63,45,45,105,58,97,43,61,101,59,101,108,115,101,32,102,111,114,40,59,43,43,111,60,114,59,41,105,115,78,97,78,40,101,61,117,40,110,40,116,91,111,93,44,111,44,116,41,41,41,63,45,45,105,58,97,43,61,101,59,105,102,40,105,41,114,101,116,117,114,110,32,97,47,105,125,44,116,46,109,101,100,105,97,110,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,114,44,105,61,116,46,108,101,110,103,116,104,44,111,61,45,49,44,97,61,91,93,59,105,102,40,110,117,108,108,61,61,101,41,102,111,114,40,59,43,43,111,60,105,59,41,105,115,78,97,78,40,114,61,117,40,116,91,111,93,41,41,124,124,97,46,112,117,115,104,40,114,41,59,101,108,115,101,32,102,111,114,40,59,43,43,111,60,105,59,41,105,115,78,97,78,40,114,61,117,40,101,40,116,91,111,93,44,111,44,116,41,41,41,124,124,97,46,112,117,115,104,40,114,41,59,114,101,116,117,114,110,32,78,40,97,46,115,111,114,116,40,110,41,44,46,53,41,125,44,116,46,109,101,114,103,101,61,65,44,116,46,109,105,110,61,83,44,116,46,109,111,117,115,101,61,66,116,44,116,46,110,97,109,101,115,112,97,99,101,61,87,44,116,46,110,97,109,101,115,112,97,99,101,115,61,36,44,116,46,110,101,115,116,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,44,110,44,101,44,114,61,91,93,44,105,61,91,93,59,102,117,110,99,116,105,111,110,32,111,40,101,44,105,44,97,44,117,41,123,105,102,40,105,62,61,114,46,108,101,110,103,116,104,41,114,101,116,117,114,110,32,110,117,108,108,33,61,116,38,38,101,46,115,111,114,116,40,116,41,44,110,117,108,108,33,61,110,63,110,40,101,41,58,101,59,102,111,114,40,118,97,114,32,99,44,102,44,115,44,108,61,45,49,44,104,61,101,46,108,101,110,103,116,104,44,100,61,114,91,105,43,43,93,44,112,61,99,111,40,41,44,118,61,97,40,41,59,43,43,108,60,104,59,41,40,115,61,112,46,103,101,116,40,99,61,100,40,102,61,101,91,108,93,41,43,34,34,41,41,63,115,46,112,117,115,104,40,102,41,58,112,46,115,101,116,40,99,44,91,102,93,41,59,114,101,116,117,114,110,32,112,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,116,44,110,41,123,117,40,118,44,110,44,111,40,116,44,105,44,97,44,117,41,41,125,41,44,118,125,114,101,116,117,114,110,32,101,61,123,111,98,106,101,99,116,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,111,40,116,44,48,44,102,111,44,115,111,41,125,44,109,97,112,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,111,40,116,44,48,44,108,111,44,104,111,41,125,44,101,110,116,114,105,101,115,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,116,40,101,44,111,41,123,105,102,40,43,43,111,62,114,46,108,101,110,103,116,104,41,114,101,116,117,114,110,32,101,59,118,97,114,32,97,44,117,61,105,91,111,45,49,93,59,114,101,116,117,114,110,32,110,117,108,108,33,61,110,38,38,111,62,61,114,46,108,101,110,103,116,104,63,97,61,101,46,101,110,116,114,105,101,115,40,41,58,40,97,61,91,93,44,101,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,110,44,101,41,123,97,46,112,117,115,104,40,123,107,101,121,58,101,44,118,97,108,117,101,115,58,116,40,110,44,111,41,125,41,125,41,41,44,110,117,108,108,33,61,117,63,97,46,115,111,114,116,40,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,117,40,116,46,107,101,121,44,110,46,107,101,121,41,125,41,58,97,125,40,111,40,116,44,48,44,108,111,44,104,111,41,44,48,41,125,44,107,101,121,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,114,46,112,117,115,104,40,116,41,44,101,125,44,115,111,114,116,75,101,121,115,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,105,91,114,46,108,101,110,103,116,104,45,49,93,61,116,44,101,125,44,115,111,114,116,86,97,108,117,101,115,58,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,61,110,44,101,125,44,114,111,108,108,117,112,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,61,116,44,101,125,125,125,44,116,46,110,111,119,61,102,114,44,116,46,112,97,99,107,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,110,117,108,108,44,110,61,49,44,101,61,49,44,114,61,87,108,59,102,117,110,99,116,105,111,110,32,105,40,105,41,123,114,101,116,117,114,110,32,105,46,120,61,110,47,50,44,105,46,121,61,101,47,50,44,116,63,105,46,101,97,99,104,66,101,102,111,114,101,40,75,108,40,116,41,41,46,101,97,99,104,65,102,116,101,114,40,74,108,40,114,44,46,53,41,41,46,101,97,99,104,66,101,102,111,114,101,40,116,104,40,49,41,41,58,105,46,101,97,99,104,66,101,102,111,114,101,40,75,108,40,81,108,41,41,46,101,97,99,104,65,102,116,101,114,40,74,108,40,87,108,44,49,41,41,46,101,97,99,104,65,102,116,101,114,40,74,108,40,114,44,105,46,114,47,77,97,116,104,46,109,105,110,40,110,44,101,41,41,41,46,101,97,99,104,66,101,102,111,114,101,40,116,104,40,77,97,116,104,46,109,105,110,40,110,44,101,41,47,40,50,42,105,46,114,41,41,41,44,105,125,114,101,116,117,114,110,32,105,46,114,97,100,105,117,115,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,116,61,71,108,40,110,41,44,105,41,58,116,125,44,105,46,115,105,122,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,110,61,43,116,91,48,93,44,101,61,43,116,91,49,93,44,105,41,58,91,110,44,101,93,125,44,105,46,112,97,100,100,105,110,103,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,114,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,90,108,40,43,116,41,44,105,41,58,114,125,44,105,125,44,116,46,112,97,99,107,69,110,99,108,111,115,101,61,68,108,44,116,46,112,97,99,107,83,105,98,108,105,110,103,115,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,86,108,40,116,41,44,116,125,44,116,46,112,97,105,114,115,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,110,117,108,108,61,61,110,38,38,40,110,61,97,41,59,102,111,114,40,118,97,114,32,101,61,48,44,114,61,116,46,108,101,110,103,116,104,45,49,44,105,61,116,91,48,93,44,111,61,110,101,119,32,65,114,114,97,121,40,114,60,48,63,48,58,114,41,59,101,60,114,59,41,111,91,101,93,61,110,40,105,44,105,61,116,91,43,43,101,93,41,59,114,101,116,117,114,110,32,111,125,44,116,46,112,97,114,116,105,116,105,111,110,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,49,44,110,61,49,44,101,61,48,44,114,61,33,49,59,102,117,110,99,116,105,111,110,32,105,40,105,41,123,118,97,114,32,111,61,105,46,104,101,105,103,104,116,43,49,59,114,101,116,117,114,110,32,105,46,120,48,61,105,46,121,48,61,101,44,105,46,120,49,61,116,44,105,46,121,49,61,110,47,111,44,105,46,101,97,99,104,66,101,102,111,114,101,40,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,114,41,123,114,46,99,104,105,108,100,114,101,110,38,38,101,104,40,114,44,114,46,120,48,44,116,42,40,114,46,100,101,112,116,104,43,49,41,47,110,44,114,46,120,49,44,116,42,40,114,46,100,101,112,116,104,43,50,41,47,110,41,59,118,97,114,32,105,61,114,46,120,48,44,111,61,114,46,121,48,44,97,61,114,46,120,49,45,101,44,117,61,114,46,121,49,45,101,59,97,60,105,38,38,40,105,61,97,61,40,105,43,97,41,47,50,41,44,117,60,111,38,38,40,111,61,117,61,40,111,43,117,41,47,50,41,44,114,46,120,48,61,105,44,114,46,121,48,61,111,44,114,46,120,49,61,97,44,114,46,121,49,61,117,125,125,40,110,44,111,41,41,44,114,38,38,105,46,101,97,99,104,66,101,102,111,114,101,40,110,104,41,44,105,125,114,101,116,117,114,110,32,105,46,114,111,117,110,100,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,114,61,33,33,116,44,105,41,58,114,125,44,105,46,115,105,122,101,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,116,61,43,101,91,48,93,44,110,61,43,101,91,49,93,44,105,41,58,91,116,44,110,93,125,44,105,46,112,97,100,100,105,110,103,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,101,61,43,116,44,105,41,58,101,125,44,105,125,44,116,46,112,97,116,104,61,110,111,44,116,46,112,101,114,109,117,116,101,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,102,111,114,40,118,97,114,32,101,61,110,46,108,101,110,103,116,104,44,114,61,110,101,119,32,65,114,114,97,121,40,101,41,59,101,45,45,59,41,114,91,101,93,61,116,91,110,91,101,93,93,59,114,101,116,117,114,110,32,114,125,44,116,46,112,105,101,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,86,121,44,110,61,88,121,44,101,61,110,117,108,108,44,114,61,109,121,40,48,41,44,105,61,109,121,40,80,121,41,44,111,61,109,121,40,48,41,59,102,117,110,99,116,105,111,110,32,97,40,97,41,123,118,97,114,32,117,44,99,44,102,44,115,44,108,44,104,61,97,46,108,101,110,103,116,104,44,100,61,48,44,112,61,110,101,119,32,65,114,114,97,121,40,104,41,44,118,61,110,101,119,32,65,114,114,97,121,40,104,41,44,103,61,43,114,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,44,121,61,77,97,116,104,46,109,105,110,40,80,121,44,77,97,116,104,46,109,97,120,40,45,80,121,44,105,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,45,103,41,41,44,95,61,77,97,116,104,46,109,105,110,40,77,97,116,104,46,97,98,115,40,121,41,47,104,44,111,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,41,44,98,61,95,42,40,121,60,48,63,45,49,58,49,41,59,102,111,114,40,117,61,48,59,117,60,104,59,43,43,117,41,40,108,61,118,91,112,91,117,93,61,117,93,61,43,116,40,97,91,117,93,44,117,44,97,41,41,62,48,38,38,40,100,43,61,108,41,59,102,111,114,40,110,117,108,108,33,61,110,63,112,46,115,111,114,116,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,110,40,118,91,116,93,44,118,91,101,93,41,125,41,58,110,117,108,108,33,61,101,38,38,112,46,115,111,114,116,40,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,101,40,97,91,116,93,44,97,91,110,93,41,125,41,44,117,61,48,44,102,61,100,63,40,121,45,104,42,98,41,47,100,58,48,59,117,60,104,59,43,43,117,44,103,61,115,41,99,61,112,91,117,93,44,115,61,103,43,40,40,108,61,118,91,99,93,41,62,48,63,108,42,102,58,48,41,43,98,44,118,91,99,93,61,123,100,97,116,97,58,97,91,99,93,44,105,110,100,101,120,58,117,44,118,97,108,117,101,58,108,44,115,116,97,114,116,65,110,103,108,101,58,103,44,101,110,100,65,110,103,108,101,58,115,44,112,97,100,65,110,103,108,101,58,95,125,59,114,101,116,117,114,110,32,118,125,114,101,116,117,114,110,32,97,46,118,97,108,117,101,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,116,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,110,63,110,58,109,121,40,43,110,41,44,97,41,58,116,125,44,97,46,115,111,114,116,86,97,108,117,101,115,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,110,61,116,44,101,61,110,117,108,108,44,97,41,58,110,125,44,97,46,115,111,114,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,101,61,116,44,110,61,110,117,108,108,44,97,41,58,101,125,44,97,46,115,116,97,114,116,65,110,103,108,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,114,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,109,121,40,43,116,41,44,97,41,58,114,125,44,97,46,101,110,100,65,110,103,108,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,105,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,109,121,40,43,116,41,44,97,41,58,105,125,44,97,46,112,97,100,65,110,103,108,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,111,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,109,121,40,43,116,41,44,97,41,58,111,125,44,97,125,44,116,46,112,105,101,99,101,119,105,115,101,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,102,111,114,40,118,97,114,32,101,61,48,44,114,61,110,46,108,101,110,103,116,104,45,49,44,105,61,110,91,48,93,44,111,61,110,101,119,32,65,114,114,97,121,40,114,60,48,63,48,58,114,41,59,101,60,114,59,41,111,91,101,93,61,116,40,105,44,105,61,110,91,43,43,101,93,41,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,77,97,116,104,46,109,97,120,40,48,44,77,97,116,104,46,109,105,110,40,114,45,49,44,77,97,116,104,46,102,108,111,111,114,40,116,42,61,114,41,41,41,59,114,101,116,117,114,110,32,111,91,110,93,40,116,45,110,41,125,125,44,116,46,112,111,105,110,116,82,97,100,105,97,108,61,74,121,44,116,46,112,111,108,121,103,111,110,65,114,101,97,61,102,117,110,99,116,105,111,110,40,116,41,123,102,111,114,40,118,97,114,32,110,44,101,61,45,49,44,114,61,116,46,108,101,110,103,116,104,44,105,61,116,91,114,45,49,93,44,111,61,48,59,43,43,101,60,114,59,41,110,61,105,44,105,61,116,91,101,93,44,111,43,61,110,91,49,93,42,105,91,48,93,45,110,91,48,93,42,105,91,49,93,59,114,101,116,117,114,110,32,111,47,50,125,44,116,46,112,111,108,121,103,111,110,67,101,110,116,114,111,105,100,61,102,117,110,99,116,105,111,110,40,116,41,123,102,111,114,40,118,97,114,32,110,44,101,44,114,61,45,49,44,105,61,116,46,108,101,110,103,116,104,44,111,61,48,44,97,61,48,44,117,61,116,91,105,45,49,93,44,99,61,48,59,43,43,114,60,105,59,41,110,61,117,44,117,61,116,91,114,93,44,99,43,61,101,61,110,91,48,93,42,117,91,49,93,45,117,91,48,93,42,110,91,49,93,44,111,43,61,40,110,91,48,93,43,117,91,48,93,41,42,101,44,97,43,61,40,110,91,49,93,43,117,91,49,93,41,42,101,59,114,101,116,117,114,110,91,111,47,40,99,42,61,51,41,44,97,47,99,93,125,44,116,46,112,111,108,121,103,111,110,67,111,110,116,97,105,110,115,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,102,111,114,40,118,97,114,32,101,44,114,44,105,61,116,46,108,101,110,103,116,104,44,111,61,116,91,105,45,49,93,44,97,61,110,91,48,93,44,117,61,110,91,49,93,44,99,61,111,91,48,93,44,102,61,111,91,49,93,44,115,61,33,49,44,108,61,48,59,108,60,105,59,43,43,108,41,101,61,40,111,61,116,91,108,93,41,91,48,93,44,40,114,61,111,91,49,93,41,62,117,33,61,102,62,117,38,38,97,60,40,99,45,101,41,42,40,117,45,114,41,47,40,102,45,114,41,43,101,38,38,40,115,61,33,115,41,44,99,61,101,44,102,61,114,59,114,101,116,117,114,110,32,115,125,44,116,46,112,111,108,121,103,111,110,72,117,108,108,61,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,40,101,61,116,46,108,101,110,103,116,104,41,60,51,41,114,101,116,117,114,110,32,110,117,108,108,59,118,97,114,32,110,44,101,44,114,61,110,101,119,32,65,114,114,97,121,40,101,41,44,105,61,110,101,119,32,65,114,114,97,121,40,101,41,59,102,111,114,40,110,61,48,59,110,60,101,59,43,43,110,41,114,91,110,93,61,91,43,116,91,110,93,91,48,93,44,43,116,91,110,93,91,49,93,44,110,93,59,102,111,114,40,114,46,115,111,114,116,40,109,104,41,44,110,61,48,59,110,60,101,59,43,43,110,41,105,91,110,93,61,91,114,91,110,93,91,48,93,44,45,114,91,110,93,91,49,93,93,59,118,97,114,32,111,61,120,104,40,114,41,44,97,61,120,104,40,105,41,44,117,61,97,91,48,93,61,61,61,111,91,48,93,44,99,61,97,91,97,46,108,101,110,103,116,104,45,49,93,61,61,61,111,91,111,46,108,101,110,103,116,104,45,49,93,44,102,61,91,93,59,102,111,114,40,110,61,111,46,108,101,110,103,116,104,45,49,59,110,62,61,48,59,45,45,110,41,102,46,112,117,115,104,40,116,91,114,91,111,91,110,93,93,91,50,93,93,41,59,102,111,114,40,110,61,43,117,59,110,60,97,46,108,101,110,103,116,104,45,99,59,43,43,110,41,102,46,112,117,115,104,40,116,91,114,91,97,91,110,93,93,91,50,93,93,41,59,114,101,116,117,114,110,32,102,125,44,116,46,112,111,108,121,103,111,110,76,101,110,103,116,104,61,102,117,110,99,116,105,111,110,40,116,41,123,102,111,114,40,118,97,114,32,110,44,101,44,114,61,45,49,44,105,61,116,46,108,101,110,103,116,104,44,111,61,116,91,105,45,49,93,44,97,61,111,91,48,93,44,117,61,111,91,49,93,44,99,61,48,59,43,43,114,60,105,59,41,110,61,97,44,101,61,117,44,110,45,61,97,61,40,111,61,116,91,114,93,41,91,48,93,44,101,45,61,117,61,111,91,49,93,44,99,43,61,77,97,116,104,46,115,113,114,116,40,110,42,110,43,101,42,101,41,59,114,101,116,117,114,110,32,99,125,44,116,46,112,114,101,99,105,115,105,111,110,70,105,120,101,100,61,36,97,44,116,46,112,114,101,99,105,115,105,111,110,80,114,101,102,105,120,61,87,97,44,116,46,112,114,101,99,105,115,105,111,110,82,111,117,110,100,61,90,97,44,116,46,113,117,97,100,116,114,101,101,61,119,97,44,116,46,113,117,97,110,116,105,108,101,61,78,44,116,46,113,117,97,110,116,105,122,101,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,102,111,114,40,118,97,114,32,101,61,110,101,119,32,65,114,114,97,121,40,110,41,44,114,61,48,59,114,60,110,59,43,43,114,41,101,91,114,93,61,116,40,114,47,40,110,45,49,41,41,59,114,101,116,117,114,110,32,101,125,44,116,46,114,97,100,105,97,108,65,114,101,97,61,75,121,44,116,46,114,97,100,105,97,108,76,105,110,101,61,81,121,44,116,46,114,97,110,100,111,109,66,97,116,101,115,61,83,104,44,116,46,114,97,110,100,111,109,69,120,112,111,110,101,110,116,105,97,108,61,107,104,44,116,46,114,97,110,100,111,109,73,114,119,105,110,72,97,108,108,61,65,104,44,116,46,114,97,110,100,111,109,76,111,103,78,111,114,109,97,108,61,84,104,44,116,46,114,97,110,100,111,109,78,111,114,109,97,108,61,78,104,44,116,46,114,97,110,100,111,109,85,110,105,102,111,114,109,61,77,104,44,116,46,114,97,110,103,101,61,103,44,116,46,114,103,98,61,95,110,44,116,46,114,105,98,98,111,110,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,101,111,44,110,61,114,111,44,101,61,105,111,44,114,61,111,111,44,105,61,97,111,44,111,61,110,117,108,108,59,102,117,110,99,116,105,111,110,32,97,40,41,123,118,97,114,32,97,44,117,61,87,105,46,99,97,108,108,40,97,114,103,117,109,101,110,116,115,41,44,99,61,116,46,97,112,112,108,121,40,116,104,105,115,44,117,41,44,102,61,110,46,97,112,112,108,121,40,116,104,105,115,44,117,41,44,115,61,43,101,46,97,112,112,108,121,40,116,104,105,115,44,40,117,91,48,93,61,99,44,117,41,41,44,108,61,114,46,97,112,112,108,121,40,116,104,105,115,44,117,41,45,88,105,44,104,61,105,46,97,112,112,108,121,40,116,104,105,115,44,117,41,45,88,105,44,100,61,115,42,73,105,40,108,41,44,112,61,115,42,72,105,40,108,41,44,118,61,43,101,46,97,112,112,108,121,40,116,104,105,115,44,40,117,91,48,93,61,102,44,117,41,41,44,103,61,114,46,97,112,112,108,121,40,116,104,105,115,44,117,41,45,88,105,44,121,61,105,46,97,112,112,108,121,40,116,104,105,115,44,117,41,45,88,105,59,105,102,40,111,124,124,40,111,61,97,61,110,111,40,41,41,44,111,46,109,111,118,101,84,111,40,100,44,112,41,44,111,46,97,114,99,40,48,44,48,44,115,44,108,44,104,41,44,108,61,61,61,103,38,38,104,61,61,61,121,124,124,40,111,46,113,117,97,100,114,97,116,105,99,67,117,114,118,101,84,111,40,48,44,48,44,118,42,73,105,40,103,41,44,118,42,72,105,40,103,41,41,44,111,46,97,114,99,40,48,44,48,44,118,44,103,44,121,41,41,44,111,46,113,117,97,100,114,97,116,105,99,67,117,114,118,101,84,111,40,48,44,48,44,100,44,112,41,44,111,46,99,108,111,115,101,80,97,116,104,40,41,44,97,41,114,101,116,117,114,110,32,111,61,110,117,108,108,44,97,43,34,34,124,124,110,117,108,108,125,114,101,116,117,114,110,32,97,46,114,97,100,105,117,115,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,101,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,90,105,40,43,116,41,44,97,41,58,101,125,44,97,46,115,116,97,114,116,65,110,103,108,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,114,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,90,105,40,43,116,41,44,97,41,58,114,125,44,97,46,101,110,100,65,110,103,108,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,105,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,90,105,40,43,116,41,44,97,41,58,105,125,44,97,46,115,111,117,114,99,101,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,116,61,110,44,97,41,58,116,125,44,97,46,116,97,114,103,101,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,110,61,116,44,97,41,58,110,125,44,97,46,99,111,110,116,101,120,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,111,61,110,117,108,108,61,61,116,63,110,117,108,108,58,116,44,97,41,58,111,125,44,97,125,44,116,46,115,99,97,108,101,66,97,110,100,61,76,104,44,116,46,115,99,97,108,101,68,105,118,101,114,103,105,110,103,61,102,117,110,99,116,105,111,110,32,116,40,41,123,118,97,114,32,110,61,36,104,40,36,118,40,41,40,66,104,41,41,59,114,101,116,117,114,110,32,110,46,99,111,112,121,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,86,118,40,110,44,116,40,41,41,125,44,67,104,46,97,112,112,108,121,40,110,44,97,114,103,117,109,101,110,116,115,41,125,44,116,46,115,99,97,108,101,68,105,118,101,114,103,105,110,103,76,111,103,61,102,117,110,99,116,105,111,110,32,116,40,41,123,118,97,114,32,110,61,101,100,40,36,118,40,41,41,46,100,111,109,97,105,110,40,91,46,49,44,49,44,49,48,93,41,59,114,101,116,117,114,110,32,110,46,99,111,112,121,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,86,118,40,110,44,116,40,41,41,46,98,97,115,101,40,110,46,98,97,115,101,40,41,41,125,44,67,104,46,97,112,112,108,121,40,110,44,97,114,103,117,109,101,110,116,115,41,125,44,116,46,115,99,97,108,101,68,105,118,101,114,103,105,110,103,80,111,119,61,87,118,44,116,46,115,99,97,108,101,68,105,118,101,114,103,105,110,103,83,113,114,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,87,118,46,97,112,112,108,121,40,110,117,108,108,44,97,114,103,117,109,101,110,116,115,41,46,101,120,112,111,110,101,110,116,40,46,53,41,125,44,116,46,115,99,97,108,101,68,105,118,101,114,103,105,110,103,83,121,109,108,111,103,61,102,117,110,99,116,105,111,110,32,116,40,41,123,118,97,114,32,110,61,111,100,40,36,118,40,41,41,59,114,101,116,117,114,110,32,110,46,99,111,112,121,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,86,118,40,110,44,116,40,41,41,46,99,111,110,115,116,97,110,116,40,110,46,99,111,110,115,116,97,110,116,40,41,41,125,44,67,104,46,97,112,112,108,121,40,110,44,97,114,103,117,109,101,110,116,115,41,125,44,116,46,115,99,97,108,101,73,100,101,110,116,105,116,121,61,102,117,110,99,116,105,111,110,32,116,40,110,41,123,118,97,114,32,101,59,102,117,110,99,116,105,111,110,32,114,40,116,41,123,114,101,116,117,114,110,32,105,115,78,97,78,40,116,61,43,116,41,63,101,58,116,125,114,101,116,117,114,110,32,114,46,105,110,118,101,114,116,61,114,44,114,46,100,111,109,97,105,110,61,114,46,114,97,110,103,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,110,61,122,104,46,99,97,108,108,40,116,44,85,104,41,44,114,41,58,110,46,115,108,105,99,101,40,41,125,44,114,46,117,110,107,110,111,119,110,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,101,61,116,44,114,41,58,101,125,44,114,46,99,111,112,121,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,40,110,41,46,117,110,107,110,111,119,110,40,101,41,125,44,110,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,122,104,46,99,97,108,108,40,110,44,85,104,41,58,91,48,44,49,93,44,36,104,40,114,41,125,44,116,46,115,99,97,108,101,73,109,112,108,105,99,105,116,61,68,104,44,116,46,115,99,97,108,101,76,105,110,101,97,114,61,102,117,110,99,116,105,111,110,32,116,40,41,123,118,97,114,32,110,61,86,104,40,66,104,44,66,104,41,59,114,101,116,117,114,110,32,110,46,99,111,112,121,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,106,104,40,110,44,116,40,41,41,125,44,69,104,46,97,112,112,108,121,40,110,44,97,114,103,117,109,101,110,116,115,41,44,36,104,40,110,41,125,44,116,46,115,99,97,108,101,76,111,103,61,102,117,110,99,116,105,111,110,32,116,40,41,123,118,97,114,32,110,61,101,100,40,88,104,40,41,41,46,100,111,109,97,105,110,40,91,49,44,49,48,93,41,59,114,101,116,117,114,110,32,110,46,99,111,112,121,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,106,104,40,110,44,116,40,41,41,46,98,97,115,101,40,110,46,98,97,115,101,40,41,41,125,44,69,104,46,97,112,112,108,121,40,110,44,97,114,103,117,109,101,110,116,115,41,44,110,125,44,116,46,115,99,97,108,101,79,114,100,105,110,97,108,61,113,104,44,116,46,115,99,97,108,101,80,111,105,110,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,116,40,110,41,123,118,97,114,32,101,61,110,46,99,111,112,121,59,114,101,116,117,114,110,32,110,46,112,97,100,100,105,110,103,61,110,46,112,97,100,100,105,110,103,79,117,116,101,114,44,100,101,108,101,116,101,32,110,46,112,97,100,100,105,110,103,73,110,110,101,114,44,100,101,108,101,116,101,32,110,46,112,97,100,100,105,110,103,79,117,116,101,114,44,110,46,99,111,112,121,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,40,101,40,41,41,125,44,110,125,40,76,104,46,97,112,112,108,121,40,110,117,108,108,44,97,114,103,117,109,101,110,116,115,41,46,112,97,100,100,105,110,103,73,110,110,101,114,40,49,41,41,125,44,116,46,115,99,97,108,101,80,111,119,61,115,100,44,116,46,115,99,97,108,101,81,117,97,110,116,105,108,101,61,102,117,110,99,116,105,111,110,32,116,40,41,123,118,97,114,32,101,44,114,61,91,93,44,111,61,91,93,44,97,61,91,93,59,102,117,110,99,116,105,111,110,32,117,40,41,123,118,97,114,32,116,61,48,44,110,61,77,97,116,104,46,109,97,120,40,49,44,111,46,108,101,110,103,116,104,41,59,102,111,114,40,97,61,110,101,119,32,65,114,114,97,121,40,110,45,49,41,59,43,43,116,60,110,59,41,97,91,116,45,49,93,61,78,40,114,44,116,47,110,41,59,114,101,116,117,114,110,32,99,125,102,117,110,99,116,105,111,110,32,99,40,116,41,123,114,101,116,117,114,110,32,105,115,78,97,78,40,116,61,43,116,41,63,101,58,111,91,105,40,97,44,116,41,93,125,114,101,116,117,114,110,32,99,46,105,110,118,101,114,116,69,120,116,101,110,116,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,111,46,105,110,100,101,120,79,102,40,116,41,59,114,101,116,117,114,110,32,110,60,48,63,91,78,97,78,44,78,97,78,93,58,91,110,62,48,63,97,91,110,45,49,93,58,114,91,48,93,44,110,60,97,46,108,101,110,103,116,104,63,97,91,110,93,58,114,91,114,46,108,101,110,103,116,104,45,49,93,93,125,44,99,46,100,111,109,97,105,110,61,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,33,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,114,101,116,117,114,110,32,114,46,115,108,105,99,101,40,41,59,114,61,91,93,59,102,111,114,40,118,97,114,32,101,44,105,61,48,44,111,61,116,46,108,101,110,103,116,104,59,105,60,111,59,43,43,105,41,110,117,108,108,61,61,40,101,61,116,91,105,93,41,124,124,105,115,78,97,78,40,101,61,43,101,41,124,124,114,46,112,117,115,104,40,101,41,59,114,101,116,117,114,110,32,114,46,115,111,114,116,40,110,41,44,117,40,41,125,44,99,46,114,97,110,103,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,111,61,82,104,46,99,97,108,108,40,116,41,44,117,40,41,41,58,111,46,115,108,105,99,101,40,41,125,44,99,46,117,110,107,110,111,119,110,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,101,61,116,44,99,41,58,101,125,44,99,46,113,117,97,110,116,105,108,101,115,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,97,46,115,108,105,99,101,40,41,125,44,99,46,99,111,112,121,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,40,41,46,100,111,109,97,105,110,40,114,41,46,114,97,110,103,101,40,111,41,46,117,110,107,110,111,119,110,40,101,41,125,44,69,104,46,97,112,112,108,121,40,99,44,97,114,103,117,109,101,110,116,115,41,125,44,116,46,115,99,97,108,101,81,117,97,110,116,105,122,101,61,102,117,110,99,116,105,111,110,32,116,40,41,123,118,97,114,32,110,44,101,61,48,44,114,61,49,44,111,61,49,44,97,61,91,46,53,93,44,117,61,91,48,44,49,93,59,102,117,110,99,116,105,111,110,32,99,40,116,41,123,114,101,116,117,114,110,32,116,60,61,116,63,117,91,105,40,97,44,116,44,48,44,111,41,93,58,110,125,102,117,110,99,116,105,111,110,32,102,40,41,123,118,97,114,32,116,61,45,49,59,102,111,114,40,97,61,110,101,119,32,65,114,114,97,121,40,111,41,59,43,43,116,60,111,59,41,97,91,116,93,61,40,40,116,43,49,41,42,114,45,40,116,45,111,41,42,101,41,47,40,111,43,49,41,59,114,101,116,117,114,110,32,99,125,114,101,116,117,114,110,32,99,46,100,111,109,97,105,110,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,101,61,43,116,91,48,93,44,114,61,43,116,91,49,93,44,102,40,41,41,58,91,101,44,114,93,125,44,99,46,114,97,110,103,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,111,61,40,117,61,82,104,46,99,97,108,108,40,116,41,41,46,108,101,110,103,116,104,45,49,44,102,40,41,41,58,117,46,115,108,105,99,101,40,41,125,44,99,46,105,110,118,101,114,116,69,120,116,101,110,116,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,117,46,105,110,100,101,120,79,102,40,116,41,59,114,101,116,117,114,110,32,110,60,48,63,91,78,97,78,44,78,97,78,93,58,110,60,49,63,91,101,44,97,91,48,93,93,58,110,62,61,111,63,91,97,91,111,45,49,93,44,114,93,58,91,97,91,110,45,49,93,44,97,91,110,93,93,125,44,99,46,117,110,107,110,111,119,110,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,110,61,116,44,99,41,58,99,125,44,99,46,116,104,114,101,115,104,111,108,100,115,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,97,46,115,108,105,99,101,40,41,125,44,99,46,99,111,112,121,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,40,41,46,100,111,109,97,105,110,40,91,101,44,114,93,41,46,114,97,110,103,101,40,117,41,46,117,110,107,110,111,119,110,40,110,41,125,44,69,104,46,97,112,112,108,121,40,36,104,40,99,41,44,97,114,103,117,109,101,110,116,115,41,125,44,116,46,115,99,97,108,101,83,101,113,117,101,110,116,105,97,108,61,102,117,110,99,116,105,111,110,32,116,40,41,123,118,97,114,32,110,61,36,104,40,88,118,40,41,40,66,104,41,41,59,114,101,116,117,114,110,32,110,46,99,111,112,121,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,86,118,40,110,44,116,40,41,41,125,44,67,104,46,97,112,112,108,121,40,110,44,97,114,103,117,109,101,110,116,115,41,125,44,116,46,115,99,97,108,101,83,101,113,117,101,110,116,105,97,108,76,111,103,61,102,117,110,99,116,105,111,110,32,116,40,41,123,118,97,114,32,110,61,101,100,40,88,118,40,41,41,46,100,111,109,97,105,110,40,91,49,44,49,48,93,41,59,114,101,116,117,114,110,32,110,46,99,111,112,121,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,86,118,40,110,44,116,40,41,41,46,98,97,115,101,40,110,46,98,97,115,101,40,41,41,125,44,67,104,46,97,112,112,108,121,40,110,44,97,114,103,117,109,101,110,116,115,41,125,44,116,46,115,99,97,108,101,83,101,113,117,101,110,116,105,97,108,80,111,119,61,71,118,44,116,46,115,99,97,108,101,83,101,113,117,101,110,116,105,97,108,81,117,97,110,116,105,108,101,61,102,117,110,99,116,105,111,110,32,116,40,41,123,118,97,114,32,101,61,91,93,44,114,61,66,104,59,102,117,110,99,116,105,111,110,32,111,40,116,41,123,105,102,40,33,105,115,78,97,78,40,116,61,43,116,41,41,114,101,116,117,114,110,32,114,40,40,105,40,101,44,116,41,45,49,41,47,40,101,46,108,101,110,103,116,104,45,49,41,41,125,114,101,116,117,114,110,32,111,46,100,111,109,97,105,110,61,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,33,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,114,101,116,117,114,110,32,101,46,115,108,105,99,101,40,41,59,101,61,91,93,59,102,111,114,40,118,97,114,32,114,44,105,61,48,44,97,61,116,46,108,101,110,103,116,104,59,105,60,97,59,43,43,105,41,110,117,108,108,61,61,40,114,61,116,91,105,93,41,124,124,105,115,78,97,78,40,114,61,43,114,41,124,124,101,46,112,117,115,104,40,114,41,59,114,101,116,117,114,110,32,101,46,115,111,114,116,40,110,41,44,111,125,44,111,46,105,110,116,101,114,112,111,108,97,116,111,114,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,114,61,116,44,111,41,58,114,125,44,111,46,99,111,112,121,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,40,114,41,46,100,111,109,97,105,110,40,101,41,125,44,67,104,46,97,112,112,108,121,40,111,44,97,114,103,117,109,101,110,116,115,41,125,44,116,46,115,99,97,108,101,83,101,113,117,101,110,116,105,97,108,83,113,114,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,71,118,46,97,112,112,108,121,40,110,117,108,108,44,97,114,103,117,109,101,110,116,115,41,46,101,120,112,111,110,101,110,116,40,46,53,41,125,44,116,46,115,99,97,108,101,83,101,113,117,101,110,116,105,97,108,83,121,109,108,111,103,61,102,117,110,99,116,105,111,110,32,116,40,41,123,118,97,114,32,110,61,111,100,40,88,118,40,41,41,59,114,101,116,117,114,110,32,110,46,99,111,112,121,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,86,118,40,110,44,116,40,41,41,46,99,111,110,115,116,97,110,116,40,110,46,99,111,110,115,116,97,110,116,40,41,41,125,44,67,104,46,97,112,112,108,121,40,110,44,97,114,103,117,109,101,110,116,115,41,125,44,116,46,115,99,97,108,101,83,113,114,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,115,100,46,97,112,112,108,121,40,110,117,108,108,44,97,114,103,117,109,101,110,116,115,41,46,101,120,112,111,110,101,110,116,40,46,53,41,125,44,116,46,115,99,97,108,101,83,121,109,108,111,103,61,102,117,110,99,116,105,111,110,32,116,40,41,123,118,97,114,32,110,61,111,100,40,88,104,40,41,41,59,114,101,116,117,114,110,32,110,46,99,111,112,121,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,106,104,40,110,44,116,40,41,41,46,99,111,110,115,116,97,110,116,40,110,46,99,111,110,115,116,97,110,116,40,41,41,125,44,69,104,46,97,112,112,108,121,40,110,44,97,114,103,117,109,101,110,116,115,41,125,44,116,46,115,99,97,108,101,84,104,114,101,115,104,111,108,100,61,102,117,110,99,116,105,111,110,32,116,40,41,123,118,97,114,32,110,44,101,61,91,46,53,93,44,114,61,91,48,44,49,93,44,111,61,49,59,102,117,110,99,116,105,111,110,32,97,40,116,41,123,114,101,116,117,114,110,32,116,60,61,116,63,114,91,105,40,101,44,116,44,48,44,111,41,93,58,110,125,114,101,116,117,114,110,32,97,46,100,111,109,97,105,110,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,101,61,82,104,46,99,97,108,108,40,116,41,44,111,61,77,97,116,104,46,109,105,110,40,101,46,108,101,110,103,116,104,44,114,46,108,101,110,103,116,104,45,49,41,44,97,41,58,101,46,115,108,105,99,101,40,41,125,44,97,46,114,97,110,103,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,114,61,82,104,46,99,97,108,108,40,116,41,44,111,61,77,97,116,104,46,109,105,110,40,101,46,108,101,110,103,116,104,44,114,46,108,101,110,103,116,104,45,49,41,44,97,41,58,114,46,115,108,105,99,101,40,41,125,44,97,46,105,110,118,101,114,116,69,120,116,101,110,116,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,114,46,105,110,100,101,120,79,102,40,116,41,59,114,101,116,117,114,110,91,101,91,110,45,49,93,44,101,91,110,93,93,125,44,97,46,117,110,107,110,111,119,110,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,110,61,116,44,97,41,58,110,125,44,97,46,99,111,112,121,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,40,41,46,100,111,109,97,105,110,40,101,41,46,114,97,110,103,101,40,114,41,46,117,110,107,110,111,119,110,40,110,41,125,44,69,104,46,97,112,112,108,121,40,97,44,97,114,103,117,109,101,110,116,115,41,125,44,116,46,115,99,97,108,101,84,105,109,101,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,69,104,46,97,112,112,108,121,40,106,118,40,72,100,44,89,100,44,83,100,44,78,100,44,119,100,44,109,100,44,95,100,44,112,100,44,116,46,116,105,109,101,70,111,114,109,97,116,41,46,100,111,109,97,105,110,40,91,110,101,119,32,68,97,116,101,40,50,101,51,44,48,44,49,41,44,110,101,119,32,68,97,116,101,40,50,101,51,44,48,44,50,41,93,41,44,97,114,103,117,109,101,110,116,115,41,125,44,116,46,115,99,97,108,101,85,116,99,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,69,104,46,97,112,112,108,121,40,106,118,40,112,112,44,104,112,44,75,100,44,87,100,44,71,100,44,88,100,44,95,100,44,112,100,44,116,46,117,116,99,70,111,114,109,97,116,41,46,100,111,109,97,105,110,40,91,68,97,116,101,46,85,84,67,40,50,101,51,44,48,44,49,41,44,68,97,116,101,46,85,84,67,40,50,101,51,44,48,44,50,41,93,41,44,97,114,103,117,109,101,110,116,115,41,125,44,116,46,115,99,97,110,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,105,102,40,114,61,116,46,108,101,110,103,116,104,41,123,118,97,114,32,114,44,105,44,111,61,48,44,97,61,48,44,117,61,116,91,97,93,59,102,111,114,40,110,117,108,108,61,61,101,38,38,40,101,61,110,41,59,43,43,111,60,114,59,41,40,101,40,105,61,116,91,111,93,44,117,41,60,48,124,124,48,33,61,61,101,40,117,44,117,41,41,38,38,40,117,61,105,44,97,61,111,41,59,114,101,116,117,114,110,32,48,61,61,61,101,40,117,44,117,41,63,97,58,118,111,105,100,32,48,125,125,44,116,46,115,99,104,101,109,101,65,99,99,101,110,116,61,75,118,44,116,46,115,99,104,101,109,101,66,108,117,101,115,61,90,103,44,116,46,115,99,104,101,109,101,66,114,66,71,61,99,103,44,116,46,115,99,104,101,109,101,66,117,71,110,61,65,103,44,116,46,115,99,104,101,109,101,66,117,80,117,61,107,103,44,116,46,115,99,104,101,109,101,67,97,116,101,103,111,114,121,49,48,61,81,118,44,116,46,115,99,104,101,109,101,68,97,114,107,50,61,74,118,44,116,46,115,99,104,101,109,101,71,110,66,117,61,67,103,44,116,46,115,99,104,101,109,101,71,114,101,101,110,115,61,75,103,44,116,46,115,99,104,101,109,101,71,114,101,121,115,61,116,121,44,116,46,115,99,104,101,109,101,79,114,82,100,61,122,103,44,116,46,115,99,104,101,109,101,79,114,97,110,103,101,115,61,97,121,44,116,46,115,99,104,101,109,101,80,82,71,110,61,115,103,44,116,46,115,99,104,101,109,101,80,97,105,114,101,100,61,116,103,44,116,46,115,99,104,101,109,101,80,97,115,116,101,108,49,61,110,103,44,116,46,115,99,104,101,109,101,80,97,115,116,101,108,50,61,101,103,44,116,46,115,99,104,101,109,101,80,105,89,71,61,104,103,44,116,46,115,99,104,101,109,101,80,117,66,117,61,76,103,44,116,46,115,99,104,101,109,101,80,117,66,117,71,110,61,68,103,44,116,46,115,99,104,101,109,101,80,117,79,114,61,112,103,44,116,46,115,99,104,101,109,101,80,117,82,100,61,79,103,44,116,46,115,99,104,101,109,101,80,117,114,112,108,101,115,61,101,121,44,116,46,115,99,104,101,109,101,82,100,66,117,61,103,103,44,116,46,115,99,104,101,109,101,82,100,71,121,61,95,103,44,116,46,115,99,104,101,109,101,82,100,80,117,61,70,103,44,116,46,115,99,104,101,109,101,82,100,89,108,66,117,61,109,103,44,116,46,115,99,104,101,109,101,82,100,89,108,71,110,61,119,103,44,116,46,115,99,104,101,109,101,82,101,100,115,61,105,121,44,116,46,115,99,104,101,109,101,83,101,116,49,61,114,103,44,116,46,115,99,104,101,109,101,83,101,116,50,61,105,103,44,116,46,115,99,104,101,109,101,83,101,116,51,61,111,103,44,116,46,115,99,104,101,109,101,83,112,101,99,116,114,97,108,61,78,103,44,116,46,115,99,104,101,109,101,84,97,98,108,101,97,117,49,48,61,97,103,44,116,46,115,99,104,101,109,101,89,108,71,110,61,106,103,44,116,46,115,99,104,101,109,101,89,108,71,110,66,117,61,73,103,44,116,46,115,99,104,101,109,101,89,108,79,114,66,114,61,86,103,44,116,46,115,99,104,101,109,101,89,108,79,114,82,100,61,36,103,44,116,46,115,101,108,101,99,116,61,82,116,44,116,46,115,101,108,101,99,116,65,108,108,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,116,63,110,101,119,32,80,116,40,91,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,116,41,93,44,91,100,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,93,41,58,110,101,119,32,80,116,40,91,110,117,108,108,61,61,116,63,91,93,58,116,93,44,67,116,41,125,44,116,46,115,101,108,101,99,116,105,111,110,61,122,116,44,116,46,115,101,108,101,99,116,111,114,61,75,44,116,46,115,101,108,101,99,116,111,114,65,108,108,61,116,116,44,116,46,115,101,116,61,103,111,44,116,46,115,104,117,102,102,108,101,61,102,117,110,99,116,105,111,110,40,116,44,110,44,101,41,123,102,111,114,40,118,97,114,32,114,44,105,44,111,61,40,110,117,108,108,61,61,101,63,116,46,108,101,110,103,116,104,58,101,41,45,40,110,61,110,117,108,108,61,61,110,63,48,58,43,110,41,59,111,59,41,105,61,77,97,116,104,46,114,97,110,100,111,109,40,41,42,111,45,45,124,48,44,114,61,116,91,111,43,110,93,44,116,91,111,43,110,93,61,116,91,105,43,110,93,44,116,91,105,43,110,93,61,114,59,114,101,116,117,114,110,32,116,125,44,116,46,115,116,97,99,107,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,109,121,40,91,93,41,44,110,61,114,98,44,101,61,101,98,44,114,61,105,98,59,102,117,110,99,116,105,111,110,32,105,40,105,41,123,118,97,114,32,111,44,97,44,117,61,116,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,44,99,61,105,46,108,101,110,103,116,104,44,102,61,117,46,108,101,110,103,116,104,44,115,61,110,101,119,32,65,114,114,97,121,40,102,41,59,102,111,114,40,111,61,48,59,111,60,102,59,43,43,111,41,123,102,111,114,40,118,97,114,32,108,44,104,61,117,91,111,93,44,100,61,115,91,111,93,61,110,101,119,32,65,114,114,97,121,40,99,41,44,112,61,48,59,112,60,99,59,43,43,112,41,100,91,112,93,61,108,61,91,48,44,43,114,40,105,91,112,93,44,104,44,112,44,105,41,93,44,108,46,100,97,116,97,61,105,91,112,93,59,100,46,107,101,121,61,104,125,102,111,114,40,111,61,48,44,97,61,110,40,115,41,59,111,60,102,59,43,43,111,41,115,91,97,91,111,93,93,46,105,110,100,101,120,61,111,59,114,101,116,117,114,110,32,101,40,115,44,97,41,44,115,125,114,101,116,117,114,110,32,105,46,107,101,121,115,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,116,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,110,63,110,58,109,121,40,116,95,46,99,97,108,108,40,110,41,41,44,105,41,58,116,125,44,105,46,118,97,108,117,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,114,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,109,121,40,43,116,41,44,105,41,58,114,125,44,105,46,111,114,100,101,114,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,110,61,110,117,108,108,61,61,116,63,114,98,58,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,109,121,40,116,95,46,99,97,108,108,40,116,41,41,44,105,41,58,110,125,44,105,46,111,102,102,115,101,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,101,61,110,117,108,108,61,61,116,63,101,98,58,116,44,105,41,58,101,125,44,105,125,44,116,46,115,116,97,99,107,79,102,102,115,101,116,68,105,118,101,114,103,105,110,103,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,105,102,40,40,117,61,116,46,108,101,110,103,116,104,41,62,48,41,102,111,114,40,118,97,114,32,101,44,114,44,105,44,111,44,97,44,117,44,99,61,48,44,102,61,116,91,110,91,48,93,93,46,108,101,110,103,116,104,59,99,60,102,59,43,43,99,41,102,111,114,40,111,61,97,61,48,44,101,61,48,59,101,60,117,59,43,43,101,41,40,105,61,40,114,61,116,91,110,91,101,93,93,91,99,93,41,91,49,93,45,114,91,48,93,41,62,48,63,40,114,91,48,93,61,111,44,114,91,49,93,61,111,43,61,105,41,58,105,60,48,63,40,114,91,49,93,61,97,44,114,91,48,93,61,97,43,61,105,41,58,40,114,91,48,93,61,48,44,114,91,49,93,61,105,41,125,44,116,46,115,116,97,99,107,79,102,102,115,101,116,69,120,112,97,110,100,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,105,102,40,40,114,61,116,46,108,101,110,103,116,104,41,62,48,41,123,102,111,114,40,118,97,114,32,101,44,114,44,105,44,111,61,48,44,97,61,116,91,48,93,46,108,101,110,103,116,104,59,111,60,97,59,43,43,111,41,123,102,111,114,40,105,61,101,61,48,59,101,60,114,59,43,43,101,41,105,43,61,116,91,101,93,91,111,93,91,49,93,124,124,48,59,105,102,40,105,41,102,111,114,40,101,61,48,59,101,60,114,59,43,43,101,41,116,91,101,93,91,111,93,91,49,93,47,61,105,125,101,98,40,116,44,110,41,125,125,44,116,46,115,116,97,99,107,79,102,102,115,101,116,78,111,110,101,61,101,98,44,116,46,115,116,97,99,107,79,102,102,115,101,116,83,105,108,104,111,117,101,116,116,101,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,105,102,40,40,101,61,116,46,108,101,110,103,116,104,41,62,48,41,123,102,111,114,40,118,97,114,32,101,44,114,61,48,44,105,61,116,91,110,91,48,93,93,44,111,61,105,46,108,101,110,103,116,104,59,114,60,111,59,43,43,114,41,123,102,111,114,40,118,97,114,32,97,61,48,44,117,61,48,59,97,60,101,59,43,43,97,41,117,43,61,116,91,97,93,91,114,93,91,49,93,124,124,48,59,105,91,114,93,91,49,93,43,61,105,91,114,93,91,48,93,61,45,117,47,50,125,101,98,40,116,44,110,41,125,125,44,116,46,115,116,97,99,107,79,102,102,115,101,116,87,105,103,103,108,101,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,105,102,40,40,105,61,116,46,108,101,110,103,116,104,41,62,48,38,38,40,114,61,40,101,61,116,91,110,91,48,93,93,41,46,108,101,110,103,116,104,41,62,48,41,123,102,111,114,40,118,97,114,32,101,44,114,44,105,44,111,61,48,44,97,61,49,59,97,60,114,59,43,43,97,41,123,102,111,114,40,118,97,114,32,117,61,48,44,99,61,48,44,102,61,48,59,117,60,105,59,43,43,117,41,123,102,111,114,40,118,97,114,32,115,61,116,91,110,91,117,93,93,44,108,61,115,91,97,93,91,49,93,124,124,48,44,104,61,40,108,45,40,115,91,97,45,49,93,91,49,93,124,124,48,41,41,47,50,44,100,61,48,59,100,60,117,59,43,43,100,41,123,118,97,114,32,112,61,116,91,110,91,100,93,93,59,104,43,61,40,112,91,97,93,91,49,93,124,124,48,41,45,40,112,91,97,45,49,93,91,49,93,124,124,48,41,125,99,43,61,108,44,102,43,61,104,42,108,125,101,91,97,45,49,93,91,49,93,43,61,101,91,97,45,49,93,91,48,93,61,111,44,99,38,38,40,111,45,61,102,47,99,41,125,101,91,97,45,49,93,91,49,93,43,61,101,91,97,45,49,93,91,48,93,61,111,44,101,98,40,116,44,110,41,125,125,44,116,46,115,116,97,99,107,79,114,100,101,114,65,112,112,101,97,114,97,110,99,101,61,111,98,44,116,46,115,116,97,99,107,79,114,100,101,114,65,115,99,101,110,100,105,110,103,61,117,98,44,116,46,115,116,97,99,107,79,114,100,101,114,68,101,115,99,101,110,100,105,110,103,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,117,98,40,116,41,46,114,101,118,101,114,115,101,40,41,125,44,116,46,115,116,97,99,107,79,114,100,101,114,73,110,115,105,100,101,79,117,116,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,44,101,44,114,61,116,46,108,101,110,103,116,104,44,105,61,116,46,109,97,112,40,99,98,41,44,111,61,111,98,40,116,41,44,97,61,48,44,117,61,48,44,99,61,91,93,44,102,61,91,93,59,102,111,114,40,110,61,48,59,110,60,114,59,43,43,110,41,101,61,111,91,110,93,44,97,60,117,63,40,97,43,61,105,91,101,93,44,99,46,112,117,115,104,40,101,41,41,58,40,117,43,61,105,91,101,93,44,102,46,112,117,115,104,40,101,41,41,59,114,101,116,117,114,110,32,102,46,114,101,118,101,114,115,101,40,41,46,99,111,110,99,97,116,40,99,41,125,44,116,46,115,116,97,99,107,79,114,100,101,114,78,111,110,101,61,114,98,44,116,46,115,116,97,99,107,79,114,100,101,114,82,101,118,101,114,115,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,114,98,40,116,41,46,114,101,118,101,114,115,101,40,41,125,44,116,46,115,116,114,97,116,105,102,121,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,97,104,44,110,61,117,104,59,102,117,110,99,116,105,111,110,32,101,40,101,41,123,118,97,114,32,114,44,105,44,111,44,97,44,117,44,99,44,102,44,115,61,101,46,108,101,110,103,116,104,44,108,61,110,101,119,32,65,114,114,97,121,40,115,41,44,104,61,123,125,59,102,111,114,40,105,61,48,59,105,60,115,59,43,43,105,41,114,61,101,91,105,93,44,117,61,108,91,105,93,61,110,101,119,32,122,108,40,114,41,44,110,117,108,108,33,61,40,99,61,116,40,114,44,105,44,101,41,41,38,38,40,99,43,61,34,34,41,38,38,40,104,91,102,61,114,104,43,40,117,46,105,100,61,99,41,93,61,102,32,105,110,32,104,63,111,104,58,117,41,59,102,111,114,40,105,61,48,59,105,60,115,59,43,43,105,41,105,102,40,117,61,108,91,105,93,44,110,117,108,108,33,61,40,99,61,110,40,101,91,105,93,44,105,44,101,41,41,38,38,40,99,43,61,34,34,41,41,123,105,102,40,33,40,97,61,104,91,114,104,43,99,93,41,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,109,105,115,115,105,110,103,58,32,34,43,99,41,59,105,102,40,97,61,61,61,111,104,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,97,109,98,105,103,117,111,117,115,58,32,34,43,99,41,59,97,46,99,104,105,108,100,114,101,110,63,97,46,99,104,105,108,100,114,101,110,46,112,117,115,104,40,117,41,58,97,46,99,104,105,108,100,114,101,110,61,91,117,93,44,117,46,112,97,114,101,110,116,61,97,125,101,108,115,101,123,105,102,40,111,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,109,117,108,116,105,112,108,101,32,114,111,111,116,115,34,41,59,111,61,117,125,105,102,40,33,111,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,110,111,32,114,111,111,116,34,41,59,105,102,40,111,46,112,97,114,101,110,116,61,105,104,44,111,46,101,97,99,104,66,101,102,111,114,101,40,102,117,110,99,116,105,111,110,40,116,41,123,116,46,100,101,112,116,104,61,116,46,112,97,114,101,110,116,46,100,101,112,116,104,43,49,44,45,45,115,125,41,46,101,97,99,104,66,101,102,111,114,101,40,80,108,41,44,111,46,112,97,114,101,110,116,61,110,117,108,108,44,115,62,48,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,99,121,99,108,101,34,41,59,114,101,116,117,114,110,32,111,125,114,101,116,117,114,110,32,101,46,105,100,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,116,61,36,108,40,110,41,44,101,41,58,116,125,44,101,46,112,97,114,101,110,116,73,100,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,110,61,36,108,40,116,41,44,101,41,58,110,125,44,101,125,44,116,46,115,116,121,108,101,61,102,116,44,116,46,115,117,109,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,44,114,61,116,46,108,101,110,103,116,104,44,105,61,45,49,44,111,61,48,59,105,102,40,110,117,108,108,61,61,110,41,102,111,114,40,59,43,43,105,60,114,59,41,40,101,61,43,116,91,105,93,41,38,38,40,111,43,61,101,41,59,101,108,115,101,32,102,111,114,40,59,43,43,105,60,114,59,41,40,101,61,43,110,40,116,91,105,93,44,105,44,116,41,41,38,38,40,111,43,61,101,41,59,114,101,116,117,114,110,32,111,125,44,116,46,115,118,103,61,118,97,44,116,46,115,121,109,98,111,108,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,109,121,40,117,95,41,44,110,61,109,121,40,54,52,41,44,101,61,110,117,108,108,59,102,117,110,99,116,105,111,110,32,114,40,41,123,118,97,114,32,114,59,105,102,40,101,124,124,40,101,61,114,61,110,111,40,41,41,44,116,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,46,100,114,97,119,40,101,44,43,110,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,41,44,114,41,114,101,116,117,114,110,32,101,61,110,117,108,108,44,114,43,34,34,124,124,110,117,108,108,125,114,101,116,117,114,110,32,114,46,116,121,112,101,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,116,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,110,63,110,58,109,121,40,110,41,44,114,41,58,116,125,44,114,46,115,105,122,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,110,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,109,121,40,43,116,41,44,114,41,58,110,125,44,114,46,99,111,110,116,101,120,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,101,61,110,117,108,108,61,61,116,63,110,117,108,108,58,116,44,114,41,58,101,125,44,114,125,44,116,46,115,121,109,98,111,108,67,105,114,99,108,101,61,117,95,44,116,46,115,121,109,98,111,108,67,114,111,115,115,61,99,95,44,116,46,115,121,109,98,111,108,68,105,97,109,111,110,100,61,108,95,44,116,46,115,121,109,98,111,108,83,113,117,97,114,101,61,103,95,44,116,46,115,121,109,98,111,108,83,116,97,114,61,118,95,44,116,46,115,121,109,98,111,108,84,114,105,97,110,103,108,101,61,95,95,44,116,46,115,121,109,98,111,108,87,121,101,61,119,95,44,116,46,115,121,109,98,111,108,115,61,77,95,44,116,46,116,101,120,116,61,117,97,44,116,46,116,104,114,101,115,104,111,108,100,70,114,101,101,100,109,97,110,68,105,97,99,111,110,105,115,61,102,117,110,99,116,105,111,110,40,116,44,101,44,114,41,123,114,101,116,117,114,110,32,116,61,100,46,99,97,108,108,40,116,44,117,41,46,115,111,114,116,40,110,41,44,77,97,116,104,46,99,101,105,108,40,40,114,45,101,41,47,40,50,42,40,78,40,116,44,46,55,53,41,45,78,40,116,44,46,50,53,41,41,42,77,97,116,104,46,112,111,119,40,116,46,108,101,110,103,116,104,44,45,49,47,51,41,41,41,125,44,116,46,116,104,114,101,115,104,111,108,100,83,99,111,116,116,61,102,117,110,99,116,105,111,110,40,116,44,110,44,101,41,123,114,101,116,117,114,110,32,77,97,116,104,46,99,101,105,108,40,40,101,45,110,41,47,40,51,46,53,42,102,40,116,41,42,77,97,116,104,46,112,111,119,40,116,46,108,101,110,103,116,104,44,45,49,47,51,41,41,41,125,44,116,46,116,104,114,101,115,104,111,108,100,83,116,117,114,103,101,115,61,77,44,116,46,116,105,99,107,70,111,114,109,97,116,61,71,104,44,116,46,116,105,99,107,73,110,99,114,101,109,101,110,116,61,120,44,116,46,116,105,99,107,83,116,101,112,61,119,44,116,46,116,105,99,107,115,61,109,44,116,46,116,105,109,101,68,97,121,61,78,100,44,116,46,116,105,109,101,68,97,121,115,61,84,100,44,116,46,116,105,109,101,70,111,114,109,97,116,68,101,102,97,117,108,116,76,111,99,97,108,101,61,122,118,44,116,46,116,105,109,101,70,111,114,109,97,116,76,111,99,97,108,101,61,98,112,44,116,46,116,105,109,101,70,114,105,100,97,121,61,122,100,44,116,46,116,105,109,101,70,114,105,100,97,121,115,61,66,100,44,116,46,116,105,109,101,72,111,117,114,61,119,100,44,116,46,116,105,109,101,72,111,117,114,115,61,77,100,44,116,46,116,105,109,101,73,110,116,101,114,118,97,108,61,100,100,44,116,46,116,105,109,101,77,105,108,108,105,115,101,99,111,110,100,61,112,100,44,116,46,116,105,109,101,77,105,108,108,105,115,101,99,111,110,100,115,61,118,100,44,116,46,116,105,109,101,77,105,110,117,116,101,61,109,100,44,116,46,116,105,109,101,77,105,110,117,116,101,115,61,120,100,44,116,46,116,105,109,101,77,111,110,100,97,121,61,107,100,44,116,46,116,105,109,101,77,111,110,100,97,121,115,61,113,100,44,116,46,116,105,109,101,77,111,110,116,104,61,89,100,44,116,46,116,105,109,101,77,111,110,116,104,115,61,73,100,44,116,46,116,105,109,101,83,97,116,117,114,100,97,121,61,82,100,44,116,46,116,105,109,101,83,97,116,117,114,100,97,121,115,61,70,100,44,116,46,116,105,109,101,83,101,99,111,110,100,61,95,100,44,116,46,116,105,109,101,83,101,99,111,110,100,115,61,98,100,44,116,46,116,105,109,101,83,117,110,100,97,121,61,83,100,44,116,46,116,105,109,101,83,117,110,100,97,121,115,61,68,100,44,116,46,116,105,109,101,84,104,117,114,115,100,97,121,61,80,100,44,116,46,116,105,109,101,84,104,117,114,115,100,97,121,115,61,79,100,44,116,46,116,105,109,101,84,117,101,115,100,97,121,61,69,100,44,116,46,116,105,109,101,84,117,101,115,100,97,121,115,61,76,100,44,116,46,116,105,109,101,87,101,100,110,101,115,100,97,121,61,67,100,44,116,46,116,105,109,101,87,101,100,110,101,115,100,97,121,115,61,85,100,44,116,46,116,105,109,101,87,101,101,107,61,83,100,44,116,46,116,105,109,101,87,101,101,107,115,61,68,100,44,116,46,116,105,109,101,89,101,97,114,61,72,100,44,116,46,116,105,109,101,89,101,97,114,115,61,106,100,44,116,46,116,105,109,101,111,117,116,61,121,114,44,116,46,116,105,109,101,114,61,104,114,44,116,46,116,105,109,101,114,70,108,117,115,104,61,100,114,44,116,46,116,111,117,99,104,61,70,116,44,116,46,116,111,117,99,104,101,115,61,102,117,110,99,116,105,111,110,40,116,44,110,41,123,110,117,108,108,61,61,110,38,38,40,110,61,85,116,40,41,46,116,111,117,99,104,101,115,41,59,102,111,114,40,118,97,114,32,101,61,48,44,114,61,110,63,110,46,108,101,110,103,116,104,58,48,44,105,61,110,101,119,32,65,114,114,97,121,40,114,41,59,101,60,114,59,43,43,101,41,105,91,101,93,61,79,116,40,116,44,110,91,101,93,41,59,114,101,116,117,114,110,32,105,125,44,116,46,116,114,97,110,115,105,116,105,111,110,61,79,114,44,116,46,116,114,97,110,115,112,111,115,101,61,107,44,116,46,116,114,101,101,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,99,104,44,110,61,49,44,101,61,49,44,114,61,110,117,108,108,59,102,117,110,99,116,105,111,110,32,105,40,105,41,123,118,97,114,32,99,61,102,117,110,99,116,105,111,110,40,116,41,123,102,111,114,40,118,97,114,32,110,44,101,44,114,44,105,44,111,44,97,61,110,101,119,32,100,104,40,116,44,48,41,44,117,61,91,97,93,59,110,61,117,46,112,111,112,40,41,59,41,105,102,40,114,61,110,46,95,46,99,104,105,108,100,114,101,110,41,102,111,114,40,110,46,99,104,105,108,100,114,101,110,61,110,101,119,32,65,114,114,97,121,40,111,61,114,46,108,101,110,103,116,104,41,44,105,61,111,45,49,59,105,62,61,48,59,45,45,105,41,117,46,112,117,115,104,40,101,61,110,46,99,104,105,108,100,114,101,110,91,105,93,61,110,101,119,32,100,104,40,114,91,105,93,44,105,41,41,44,101,46,112,97,114,101,110,116,61,110,59,114,101,116,117,114,110,40,97,46,112,97,114,101,110,116,61,110,101,119,32,100,104,40,110,117,108,108,44,48,41,41,46,99,104,105,108,100,114,101,110,61,91,97,93,44,97,125,40,105,41,59,105,102,40,99,46,101,97,99,104,65,102,116,101,114,40,111,41,44,99,46,112,97,114,101,110,116,46,109,61,45,99,46,122,44,99,46,101,97,99,104,66,101,102,111,114,101,40,97,41,44,114,41,105,46,101,97,99,104,66,101,102,111,114,101,40,117,41,59,101,108,115,101,123,118,97,114,32,102,61,105,44,115,61,105,44,108,61,105,59,105,46,101,97,99,104,66,101,102,111,114,101,40,102,117,110,99,116,105,111,110,40,116,41,123,116,46,120,60,102,46,120,38,38,40,102,61,116,41,44,116,46,120,62,115,46,120,38,38,40,115,61,116,41,44,116,46,100,101,112,116,104,62,108,46,100,101,112,116,104,38,38,40,108,61,116,41,125,41,59,118,97,114,32,104,61,102,61,61,61,115,63,49,58,116,40,102,44,115,41,47,50,44,100,61,104,45,102,46,120,44,112,61,110,47,40,115,46,120,43,104,43,100,41,44,118,61,101,47,40,108,46,100,101,112,116,104,124,124,49,41,59,105,46,101,97,99,104,66,101,102,111,114,101,40,102,117,110,99,116,105,111,110,40,116,41,123,116,46,120,61,40,116,46,120,43,100,41,42,112,44,116,46,121,61,116,46,100,101,112,116,104,42,118,125,41,125,114,101,116,117,114,110,32,105,125,102,117,110,99,116,105,111,110,32,111,40,110,41,123,118,97,114,32,101,61,110,46,99,104,105,108,100,114,101,110,44,114,61,110,46,112,97,114,101,110,116,46,99,104,105,108,100,114,101,110,44,105,61,110,46,105,63,114,91,110,46,105,45,49,93,58,110,117,108,108,59,105,102,40,101,41,123,33,102,117,110,99,116,105,111,110,40,116,41,123,102,111,114,40,118,97,114,32,110,44,101,61,48,44,114,61,48,44,105,61,116,46,99,104,105,108,100,114,101,110,44,111,61,105,46,108,101,110,103,116,104,59,45,45,111,62,61,48,59,41,40,110,61,105,91,111,93,41,46,122,43,61,101,44,110,46,109,43,61,101,44,101,43,61,110,46,115,43,40,114,43,61,110,46,99,41,125,40,110,41,59,118,97,114,32,111,61,40,101,91,48,93,46,122,43,101,91,101,46,108,101,110,103,116,104,45,49,93,46,122,41,47,50,59,105,63,40,110,46,122,61,105,46,122,43,116,40,110,46,95,44,105,46,95,41,44,110,46,109,61,110,46,122,45,111,41,58,110,46,122,61,111,125,101,108,115,101,32,105,38,38,40,110,46,122,61,105,46,122,43,116,40,110,46,95,44,105,46,95,41,41,59,110,46,112,97,114,101,110,116,46,65,61,102,117,110,99,116,105,111,110,40,110,44,101,44,114,41,123,105,102,40,101,41,123,102,111,114,40,118,97,114,32,105,44,111,61,110,44,97,61,110,44,117,61,101,44,99,61,111,46,112,97,114,101,110,116,46,99,104,105,108,100,114,101,110,91,48,93,44,102,61,111,46,109,44,115,61,97,46,109,44,108,61,117,46,109,44,104,61,99,46,109,59,117,61,115,104,40,117,41,44,111,61,102,104,40,111,41,44,117,38,38,111,59,41,99,61,102,104,40,99,41,44,40,97,61,115,104,40,97,41,41,46,97,61,110,44,40,105,61,117,46,122,43,108,45,111,46,122,45,102,43,116,40,117,46,95,44,111,46,95,41,41,62,48,38,38,40,108,104,40,104,104,40,117,44,110,44,114,41,44,110,44,105,41,44,102,43,61,105,44,115,43,61,105,41,44,108,43,61,117,46,109,44,102,43,61,111,46,109,44,104,43,61,99,46,109,44,115,43,61,97,46,109,59,117,38,38,33,115,104,40,97,41,38,38,40,97,46,116,61,117,44,97,46,109,43,61,108,45,115,41,44,111,38,38,33,102,104,40,99,41,38,38,40,99,46,116,61,111,44,99,46,109,43,61,102,45,104,44,114,61,110,41,125,114,101,116,117,114,110,32,114,125,40,110,44,105,44,110,46,112,97,114,101,110,116,46,65,124,124,114,91,48,93,41,125,102,117,110,99,116,105,111,110,32,97,40,116,41,123,116,46,95,46,120,61,116,46,122,43,116,46,112,97,114,101,110,116,46,109,44,116,46,109,43,61,116,46,112,97,114,101,110,116,46,109,125,102,117,110,99,116,105,111,110,32,117,40,116,41,123,116,46,120,42,61,110,44,116,46,121,61,116,46,100,101,112,116,104,42,101,125,114,101,116,117,114,110,32,105,46,115,101,112,97,114,97,116,105,111,110,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,116,61,110,44,105,41,58,116,125,44,105,46,115,105,122,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,114,61,33,49,44,110,61,43,116,91,48,93,44,101,61,43,116,91,49,93,44,105,41,58,114,63,110,117,108,108,58,91,110,44,101,93,125,44,105,46,110,111,100,101,83,105,122,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,114,61,33,48,44,110,61,43,116,91,48,93,44,101,61,43,116,91,49,93,44,105,41,58,114,63,91,110,44,101,93,58,110,117,108,108,125,44,105,125,44,116,46,116,114,101,101,109,97,112,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,121,104,44,110,61,33,49,44,101,61,49,44,114,61,49,44,105,61,91,48,93,44,111,61,87,108,44,97,61,87,108,44,117,61,87,108,44,99,61,87,108,44,102,61,87,108,59,102,117,110,99,116,105,111,110,32,115,40,116,41,123,114,101,116,117,114,110,32,116,46,120,48,61,116,46,121,48,61,48,44,116,46,120,49,61,101,44,116,46,121,49,61,114,44,116,46,101,97,99,104,66,101,102,111,114,101,40,108,41,44,105,61,91,48,93,44,110,38,38,116,46,101,97,99,104,66,101,102,111,114,101,40,110,104,41,44,116,125,102,117,110,99,116,105,111,110,32,108,40,110,41,123,118,97,114,32,101,61,105,91,110,46,100,101,112,116,104,93,44,114,61,110,46,120,48,43,101,44,115,61,110,46,121,48,43,101,44,108,61,110,46,120,49,45,101,44,104,61,110,46,121,49,45,101,59,108,60,114,38,38,40,114,61,108,61,40,114,43,108,41,47,50,41,44,104,60,115,38,38,40,115,61,104,61,40,115,43,104,41,47,50,41,44,110,46,120,48,61,114,44,110,46,121,48,61,115,44,110,46,120,49,61,108,44,110,46,121,49,61,104,44,110,46,99,104,105,108,100,114,101,110,38,38,40,101,61,105,91,110,46,100,101,112,116,104,43,49,93,61,111,40,110,41,47,50,44,114,43,61,102,40,110,41,45,101,44,115,43,61,97,40,110,41,45,101,44,40,108,45,61,117,40,110,41,45,101,41,60,114,38,38,40,114,61,108,61,40,114,43,108,41,47,50,41,44,40,104,45,61,99,40,110,41,45,101,41,60,115,38,38,40,115,61,104,61,40,115,43,104,41,47,50,41,44,116,40,110,44,114,44,115,44,108,44,104,41,41,125,114,101,116,117,114,110,32,115,46,114,111,117,110,100,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,110,61,33,33,116,44,115,41,58,110,125,44,115,46,115,105,122,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,101,61,43,116,91,48,93,44,114,61,43,116,91,49,93,44,115,41,58,91,101,44,114,93,125,44,115,46,116,105,108,101,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,116,61,36,108,40,110,41,44,115,41,58,116,125,44,115,46,112,97,100,100,105,110,103,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,115,46,112,97,100,100,105,110,103,73,110,110,101,114,40,116,41,46,112,97,100,100,105,110,103,79,117,116,101,114,40,116,41,58,115,46,112,97,100,100,105,110,103,73,110,110,101,114,40,41,125,44,115,46,112,97,100,100,105,110,103,73,110,110,101,114,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,111,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,90,108,40,43,116,41,44,115,41,58,111,125,44,115,46,112,97,100,100,105,110,103,79,117,116,101,114,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,115,46,112,97,100,100,105,110,103,84,111,112,40,116,41,46,112,97,100,100,105,110,103,82,105,103,104,116,40,116,41,46,112,97,100,100,105,110,103,66,111,116,116,111,109,40,116,41,46,112,97,100,100,105,110,103,76,101,102,116,40,116,41,58,115,46,112,97,100,100,105,110,103,84,111,112,40,41,125,44,115,46,112,97,100,100,105,110,103,84,111,112,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,97,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,90,108,40,43,116,41,44,115,41,58,97,125,44,115,46,112,97,100,100,105,110,103,82,105,103,104,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,117,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,90,108,40,43,116,41,44,115,41,58,117,125,44,115,46,112,97,100,100,105,110,103,66,111,116,116,111,109,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,99,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,90,108,40,43,116,41,44,115,41,58,99,125,44,115,46,112,97,100,100,105,110,103,76,101,102,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,102,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,90,108,40,43,116,41,44,115,41,58,102,125,44,115,125,44,116,46,116,114,101,101,109,97,112,66,105,110,97,114,121,61,102,117,110,99,116,105,111,110,40,116,44,110,44,101,44,114,44,105,41,123,118,97,114,32,111,44,97,44,117,61,116,46,99,104,105,108,100,114,101,110,44,99,61,117,46,108,101,110,103,116,104,44,102,61,110,101,119,32,65,114,114,97,121,40,99,43,49,41,59,102,111,114,40,102,91,48,93,61,97,61,111,61,48,59,111,60,99,59,43,43,111,41,102,91,111,43,49,93,61,97,43,61,117,91,111,93,46,118,97,108,117,101,59,33,102,117,110,99,116,105,111,110,32,116,40,110,44,101,44,114,44,105,44,111,44,97,44,99,41,123,105,102,40,110,62,61,101,45,49,41,123,118,97,114,32,115,61,117,91,110,93,59,114,101,116,117,114,110,32,115,46,120,48,61,105,44,115,46,121,48,61,111,44,115,46,120,49,61,97,44,118,111,105,100,40,115,46,121,49,61,99,41,125,102,111,114,40,118,97,114,32,108,61,102,91,110,93,44,104,61,114,47,50,43,108,44,100,61,110,43,49,44,112,61,101,45,49,59,100,60,112,59,41,123,118,97,114,32,118,61,100,43,112,62,62,62,49,59,102,91,118,93,60,104,63,100,61,118,43,49,58,112,61,118,125,104,45,102,91,100,45,49,93,60,102,91,100,93,45,104,38,38,110,43,49,60,100,38,38,45,45,100,59,118,97,114,32,103,61,102,91,100,93,45,108,44,121,61,114,45,103,59,105,102,40,97,45,105,62,99,45,111,41,123,118,97,114,32,95,61,40,105,42,121,43,97,42,103,41,47,114,59,116,40,110,44,100,44,103,44,105,44,111,44,95,44,99,41,44,116,40,100,44,101,44,121,44,95,44,111,44,97,44,99,41,125,101,108,115,101,123,118,97,114,32,98,61,40,111,42,121,43,99,42,103,41,47,114,59,116,40,110,44,100,44,103,44,105,44,111,44,97,44,98,41,44,116,40,100,44,101,44,121,44,105,44,98,44,97,44,99,41,125,125,40,48,44,99,44,116,46,118,97,108,117,101,44,110,44,101,44,114,44,105,41,125,44,116,46,116,114,101,101,109,97,112,68,105,99,101,61,101,104,44,116,46,116,114,101,101,109,97,112,82,101,115,113,117,97,114,105,102,121,61,95,104,44,116,46,116,114,101,101,109,97,112,83,108,105,99,101,61,112,104,44,116,46,116,114,101,101,109,97,112,83,108,105,99,101,68,105,99,101,61,102,117,110,99,116,105,111,110,40,116,44,110,44,101,44,114,44,105,41,123,40,49,38,116,46,100,101,112,116,104,63,112,104,58,101,104,41,40,116,44,110,44,101,44,114,44,105,41,125,44,116,46,116,114,101,101,109,97,112,83,113,117,97,114,105,102,121,61,121,104,44,116,46,116,115,118,61,115,97,44,116,46,116,115,118,70,111,114,109,97,116,61,75,111,44,116,46,116,115,118,70,111,114,109,97,116,66,111,100,121,61,74,111,44,116,46,116,115,118,70,111,114,109,97,116,82,111,119,61,110,97,44,116,46,116,115,118,70,111,114,109,97,116,82,111,119,115,61,116,97,44,116,46,116,115,118,70,111,114,109,97,116,86,97,108,117,101,61,101,97,44,116,46,116,115,118,80,97,114,115,101,61,90,111,44,116,46,116,115,118,80,97,114,115,101,82,111,119,115,61,81,111,44,116,46,117,116,99,68,97,121,61,87,100,44,116,46,117,116,99,68,97,121,115,61,90,100,44,116,46,117,116,99,70,114,105,100,97,121,61,114,112,44,116,46,117,116,99,70,114,105,100,97,121,115,61,115,112,44,116,46,117,116,99,72,111,117,114,61,71,100,44,116,46,117,116,99,72,111,117,114,115,61,36,100,44,116,46,117,116,99,77,105,108,108,105,115,101,99,111,110,100,61,112,100,44,116,46,117,116,99,77,105,108,108,105,115,101,99,111,110,100,115,61,118,100,44,116,46,117,116,99,77,105,110,117,116,101,61,88,100,44,116,46,117,116,99,77,105,110,117,116,101,115,61,86,100,44,116,46,117,116,99,77,111,110,100,97,121,61,74,100,44,116,46,117,116,99,77,111,110,100,97,121,115,61,97,112,44,116,46,117,116,99,77,111,110,116,104,61,104,112,44,116,46,117,116,99,77,111,110,116,104,115,61,100,112,44,116,46,117,116,99,83,97,116,117,114,100,97,121,61,105,112,44,116,46,117,116,99,83,97,116,117,114,100,97,121,115,61,108,112,44,116,46,117,116,99,83,101,99,111,110,100,61,95,100,44,116,46,117,116,99,83,101,99,111,110,100,115,61,98,100,44,116,46,117,116,99,83,117,110,100,97,121,61,75,100,44,116,46,117,116,99,83,117,110,100,97,121,115,61,111,112,44,116,46,117,116,99,84,104,117,114,115,100,97,121,61,101,112,44,116,46,117,116,99,84,104,117,114,115,100,97,121,115,61,102,112,44,116,46,117,116,99,84,117,101,115,100,97,121,61,116,112,44,116,46,117,116,99,84,117,101,115,100,97,121,115,61,117,112,44,116,46,117,116,99,87,101,100,110,101,115,100,97,121,61,110,112,44,116,46,117,116,99,87,101,100,110,101,115,100,97,121,115,61,99,112,44,116,46,117,116,99,87,101,101,107,61,75,100,44,116,46,117,116,99,87,101,101,107,115,61,111,112,44,116,46,117,116,99,89,101,97,114,61,112,112,44,116,46,117,116,99,89,101,97,114,115,61,118,112,44,116,46,118,97,108,117,101,115,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,91,93,59,102,111,114,40,118,97,114,32,101,32,105,110,32,116,41,110,46,112,117,115,104,40,116,91,101,93,41,59,114,101,116,117,114,110,32,110,125,44,116,46,118,97,114,105,97,110,99,101,61,99,44,116,46,118,101,114,115,105,111,110,61,34,53,46,49,54,46,48,34,44,116,46,118,111,114,111,110,111,105,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,115,98,44,110,61,108,98,44,101,61,110,117,108,108,59,102,117,110,99,116,105,111,110,32,114,40,114,41,123,114,101,116,117,114,110,32,110,101,119,32,86,98,40,114,46,109,97,112,40,102,117,110,99,116,105,111,110,40,101,44,105,41,123,118,97,114,32,111,61,91,77,97,116,104,46,114,111,117,110,100,40,116,40,101,44,105,44,114,41,47,73,98,41,42,73,98,44,77,97,116,104,46,114,111,117,110,100,40,110,40,101,44,105,44,114,41,47,73,98,41,42,73,98,93,59,114,101,116,117,114,110,32,111,46,105,110,100,101,120,61,105,44,111,46,100,97,116,97,61,101,44,111,125,41,44,101,41,125,114,101,116,117,114,110,32,114,46,112,111,108,121,103,111,110,115,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,114,40,116,41,46,112,111,108,121,103,111,110,115,40,41,125,44,114,46,108,105,110,107,115,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,114,40,116,41,46,108,105,110,107,115,40,41,125,44,114,46,116,114,105,97,110,103,108,101,115,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,114,40,116,41,46,116,114,105,97,110,103,108,101,115,40,41,125,44,114,46,120,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,116,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,110,63,110,58,102,98,40,43,110,41,44,114,41,58,116,125,44,114,46,121,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,110,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,102,98,40,43,116,41,44,114,41,58,110,125,44,114,46,101,120,116,101,110,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,101,61,110,117,108,108,61,61,116,63,110,117,108,108,58,91,91,43,116,91,48,93,91,48,93,44,43,116,91,48,93,91,49,93,93,44,91,43,116,91,49,93,91,48,93,44,43,116,91,49,93,91,49,93,93,93,44,114,41,58,101,38,38,91,91,101,91,48,93,91,48,93,44,101,91,48,93,91,49,93,93,44,91,101,91,49,93,91,48,93,44,101,91,49,93,91,49,93,93,93,125,44,114,46,115,105,122,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,101,61,110,117,108,108,61,61,116,63,110,117,108,108,58,91,91,48,44,48,93,44,91,43,116,91,48,93,44,43,116,91,49,93,93,93,44,114,41,58,101,38,38,91,101,91,49,93,91,48,93,45,101,91,48,93,91,48,93,44,101,91,49,93,91,49,93,45,101,91,48,93,91,49,93,93,125,44,114,125,44,116,46,119,105,110,100,111,119,61,99,116,44,116,46,120,109,108,61,100,97,44,116,46,122,105,112,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,107,40,97,114,103,117,109,101,110,116,115,41,125,44,116,46,122,111,111,109,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,110,44,101,44,114,61,116,109,44,105,61,110,109,44,111,61,111,109,44,97,61,114,109,44,117,61,105,109,44,99,61,91,48,44,49,47,48,93,44,102,61,91,91,45,49,47,48,44,45,49,47,48,93,44,91,49,47,48,44,49,47,48,93,93,44,115,61,50,53,48,44,108,61,73,101,44,104,61,73,40,34,115,116,97,114,116,34,44,34,122,111,111,109,34,44,34,101,110,100,34,41,44,100,61,53,48,48,44,112,61,49,53,48,44,118,61,48,59,102,117,110,99,116,105,111,110,32,103,40,116,41,123,116,46,112,114,111,112,101,114,116,121,40,34,95,95,122,111,111,109,34,44,101,109,41,46,111,110,40,34,119,104,101,101,108,46,122,111,111,109,34,44,77,41,46,111,110,40,34,109,111,117,115,101,100,111,119,110,46,122,111,111,109,34,44,78,41,46,111,110,40,34,100,98,108,99,108,105,99,107,46,122,111,111,109,34,44,84,41,46,102,105,108,116,101,114,40,117,41,46,111,110,40,34,116,111,117,99,104,115,116,97,114,116,46,122,111,111,109,34,44,65,41,46,111,110,40,34,116,111,117,99,104,109,111,118,101,46,122,111,111,109,34,44,83,41,46,111,110,40,34,116,111,117,99,104,101,110,100,46,122,111,111,109,32,116,111,117,99,104,99,97,110,99,101,108,46,122,111,111,109,34,44,107,41,46,115,116,121,108,101,40,34,116,111,117,99,104,45,97,99,116,105,111,110,34,44,34,110,111,110,101,34,41,46,115,116,121,108,101,40,34,45,119,101,98,107,105,116,45,116,97,112,45,104,105,103,104,108,105,103,104,116,45,99,111,108,111,114,34,44,34,114,103,98,97,40,48,44,48,44,48,44,48,41,34,41,125,102,117,110,99,116,105,111,110,32,121,40,116,44,110,41,123,114,101,116,117,114,110,40,110,61,77,97,116,104,46,109,97,120,40,99,91,48,93,44,77,97,116,104,46,109,105,110,40,99,91,49,93,44,110,41,41,41,61,61,61,116,46,107,63,116,58,110,101,119,32,87,98,40,110,44,116,46,120,44,116,46,121,41,125,102,117,110,99,116,105,111,110,32,95,40,116,44,110,44,101,41,123,118,97,114,32,114,61,110,91,48,93,45,101,91,48,93,42,116,46,107,44,105,61,110,91,49,93,45,101,91,49,93,42,116,46,107,59,114,101,116,117,114,110,32,114,61,61,61,116,46,120,38,38,105,61,61,61,116,46,121,63,116,58,110,101,119,32,87,98,40,116,46,107,44,114,44,105,41,125,102,117,110,99,116,105,111,110,32,98,40,116,41,123,114,101,116,117,114,110,91,40,43,116,91,48,93,91,48,93,43,32,43,116,91,49,93,91,48,93,41,47,50,44,40,43,116,91,48,93,91,49,93,43,32,43,116,91,49,93,91,49,93,41,47,50,93,125,102,117,110,99,116,105,111,110,32,109,40,116,44,110,44,101,41,123,116,46,111,110,40,34,115,116,97,114,116,46,122,111,111,109,34,44,102,117,110,99,116,105,111,110,40,41,123,120,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,46,115,116,97,114,116,40,41,125,41,46,111,110,40,34,105,110,116,101,114,114,117,112,116,46,122,111,111,109,32,101,110,100,46,122,111,111,109,34,44,102,117,110,99,116,105,111,110,40,41,123,120,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,46,101,110,100,40,41,125,41,46,116,119,101,101,110,40,34,122,111,111,109,34,44,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,44,114,61,97,114,103,117,109,101,110,116,115,44,111,61,120,40,116,44,114,41,44,97,61,105,46,97,112,112,108,121,40,116,44,114,41,44,117,61,110,117,108,108,61,61,101,63,98,40,97,41,58,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,101,63,101,46,97,112,112,108,121,40,116,44,114,41,58,101,44,99,61,77,97,116,104,46,109,97,120,40,97,91,49,93,91,48,93,45,97,91,48,93,91,48,93,44,97,91,49,93,91,49,93,45,97,91,48,93,91,49,93,41,44,102,61,116,46,95,95,122,111,111,109,44,115,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,110,63,110,46,97,112,112,108,121,40,116,44,114,41,58,110,44,104,61,108,40,102,46,105,110,118,101,114,116,40,117,41,46,99,111,110,99,97,116,40,99,47,102,46,107,41,44,115,46,105,110,118,101,114,116,40,117,41,46,99,111,110,99,97,116,40,99,47,115,46,107,41,41,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,49,61,61,61,116,41,116,61,115,59,101,108,115,101,123,118,97,114,32,110,61,104,40,116,41,44,101,61,99,47,110,91,50,93,59,116,61,110,101,119,32,87,98,40,101,44,117,91,48,93,45,110,91,48,93,42,101,44,117,91,49,93,45,110,91,49,93,42,101,41,125,111,46,122,111,111,109,40,110,117,108,108,44,116,41,125,125,41,125,102,117,110,99,116,105,111,110,32,120,40,116,44,110,44,101,41,123,114,101,116,117,114,110,33,101,38,38,116,46,95,95,122,111,111,109,105,110,103,124,124,110,101,119,32,119,40,116,44,110,41,125,102,117,110,99,116,105,111,110,32,119,40,116,44,110,41,123,116,104,105,115,46,116,104,97,116,61,116,44,116,104,105,115,46,97,114,103,115,61,110,44,116,104,105,115,46,97,99,116,105,118,101,61,48,44,116,104,105,115,46,101,120,116,101,110,116,61,105,46,97,112,112,108,121,40,116,44,110,41,44,116,104,105,115,46,116,97,112,115,61,48,125,102,117,110,99,116,105,111,110,32,77,40,41,123,105,102,40,114,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,41,123,118,97,114,32,116,61,120,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,44,110,61,116,104,105,115,46,95,95,122,111,111,109,44,101,61,77,97,116,104,46,109,97,120,40,99,91,48,93,44,77,97,116,104,46,109,105,110,40,99,91,49,93,44,110,46,107,42,77,97,116,104,46,112,111,119,40,50,44,97,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,41,41,41,44,105,61,66,116,40,116,104,105,115,41,59,105,102,40,116,46,119,104,101,101,108,41,116,46,109,111,117,115,101,91,48,93,91,48,93,61,61,61,105,91,48,93,38,38,116,46,109,111,117,115,101,91,48,93,91,49,93,61,61,61,105,91,49,93,124,124,40,116,46,109,111,117,115,101,91,49,93,61,110,46,105,110,118,101,114,116,40,116,46,109,111,117,115,101,91,48,93,61,105,41,41,44,99,108,101,97,114,84,105,109,101,111,117,116,40,116,46,119,104,101,101,108,41,59,101,108,115,101,123,105,102,40,110,46,107,61,61,61,101,41,114,101,116,117,114,110,59,116,46,109,111,117,115,101,61,91,105,44,110,46,105,110,118,101,114,116,40,105,41,93,44,80,114,40,116,104,105,115,41,44,116,46,115,116,97,114,116,40,41,125,74,98,40,41,44,116,46,119,104,101,101,108,61,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,40,41,123,116,46,119,104,101,101,108,61,110,117,108,108,44,116,46,101,110,100,40,41,125,44,112,41,44,116,46,122,111,111,109,40,34,109,111,117,115,101,34,44,111,40,95,40,121,40,110,44,101,41,44,116,46,109,111,117,115,101,91,48,93,44,116,46,109,111,117,115,101,91,49,93,41,44,116,46,101,120,116,101,110,116,44,102,41,41,125,125,102,117,110,99,116,105,111,110,32,78,40,41,123,105,102,40,33,101,38,38,114,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,41,123,118,97,114,32,110,61,120,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,44,33,48,41,44,105,61,82,116,40,116,46,101,118,101,110,116,46,118,105,101,119,41,46,111,110,40,34,109,111,117,115,101,109,111,118,101,46,122,111,111,109,34,44,102,117,110,99,116,105,111,110,40,41,123,105,102,40,74,98,40,41,44,33,110,46,109,111,118,101,100,41,123,118,97,114,32,101,61,116,46,101,118,101,110,116,46,99,108,105,101,110,116,88,45,117,44,114,61,116,46,101,118,101,110,116,46,99,108,105,101,110,116,89,45,99,59,110,46,109,111,118,101,100,61,101,42,101,43,114,42,114,62,118,125,110,46,122,111,111,109,40,34,109,111,117,115,101,34,44,111,40,95,40,110,46,116,104,97,116,46,95,95,122,111,111,109,44,110,46,109,111,117,115,101,91,48,93,61,66,116,40,110,46,116,104,97,116,41,44,110,46,109,111,117,115,101,91,49,93,41,44,110,46,101,120,116,101,110,116,44,102,41,41,125,44,33,48,41,46,111,110,40,34,109,111,117,115,101,117,112,46,122,111,111,109,34,44,102,117,110,99,116,105,111,110,40,41,123,105,46,111,110,40,34,109,111,117,115,101,109,111,118,101,46,122,111,111,109,32,109,111,117,115,101,117,112,46,122,111,111,109,34,44,110,117,108,108,41,44,106,116,40,116,46,101,118,101,110,116,46,118,105,101,119,44,110,46,109,111,118,101,100,41,44,74,98,40,41,44,110,46,101,110,100,40,41,125,44,33,48,41,44,97,61,66,116,40,116,104,105,115,41,44,117,61,116,46,101,118,101,110,116,46,99,108,105,101,110,116,88,44,99,61,116,46,101,118,101,110,116,46,99,108,105,101,110,116,89,59,72,116,40,116,46,101,118,101,110,116,46,118,105,101,119,41,44,75,98,40,41,44,110,46,109,111,117,115,101,61,91,97,44,116,104,105,115,46,95,95,122,111,111,109,46,105,110,118,101,114,116,40,97,41,93,44,80,114,40,116,104,105,115,41,44,110,46,115,116,97,114,116,40,41,125,125,102,117,110,99,116,105,111,110,32,84,40,41,123,105,102,40,114,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,41,123,118,97,114,32,110,61,116,104,105,115,46,95,95,122,111,111,109,44,101,61,66,116,40,116,104,105,115,41,44,97,61,110,46,105,110,118,101,114,116,40,101,41,44,117,61,110,46,107,42,40,116,46,101,118,101,110,116,46,115,104,105,102,116,75,101,121,63,46,53,58,50,41,44,99,61,111,40,95,40,121,40,110,44,117,41,44,101,44,97,41,44,105,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,44,102,41,59,74,98,40,41,44,115,62,48,63,82,116,40,116,104,105,115,41,46,116,114,97,110,115,105,116,105,111,110,40,41,46,100,117,114,97,116,105,111,110,40,115,41,46,99,97,108,108,40,109,44,99,44,101,41,58,82,116,40,116,104,105,115,41,46,99,97,108,108,40,103,46,116,114,97,110,115,102,111,114,109,44,99,41,125,125,102,117,110,99,116,105,111,110,32,65,40,41,123,105,102,40,114,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,41,123,118,97,114,32,101,44,105,44,111,44,97,44,117,61,116,46,101,118,101,110,116,46,116,111,117,99,104,101,115,44,99,61,117,46,108,101,110,103,116,104,44,102,61,120,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,44,116,46,101,118,101,110,116,46,99,104,97,110,103,101,100,84,111,117,99,104,101,115,46,108,101,110,103,116,104,61,61,61,99,41,59,102,111,114,40,75,98,40,41,44,105,61,48,59,105,60,99,59,43,43,105,41,97,61,91,97,61,70,116,40,116,104,105,115,44,117,44,40,111,61,117,91,105,93,41,46,105,100,101,110,116,105,102,105,101,114,41,44,116,104,105,115,46,95,95,122,111,111,109,46,105,110,118,101,114,116,40,97,41,44,111,46,105,100,101,110,116,105,102,105,101,114,93,44,102,46,116,111,117,99,104,48,63,102,46,116,111,117,99,104,49,124,124,102,46,116,111,117,99,104,48,91,50,93,61,61,61,97,91,50,93,124,124,40,102,46,116,111,117,99,104,49,61,97,44,102,46,116,97,112,115,61,48,41,58,40,102,46,116,111,117,99,104,48,61,97,44,101,61,33,48,44,102,46,116,97,112,115,61,49,43,33,33,110,41,59,110,38,38,40,110,61,99,108,101,97,114,84,105,109,101,111,117,116,40,110,41,41,44,101,38,38,40,102,46,116,97,112,115,60,50,38,38,40,110,61,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,40,41,123,110,61,110,117,108,108,125,44,100,41,41,44,80,114,40,116,104,105,115,41,44,102,46,115,116,97,114,116,40,41,41,125,125,102,117,110,99,116,105,111,110,32,83,40,41,123,105,102,40,116,104,105,115,46,95,95,122,111,111,109,105,110,103,41,123,118,97,114,32,101,44,114,44,105,44,97,44,117,61,120,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,44,99,61,116,46,101,118,101,110,116,46,99,104,97,110,103,101,100,84,111,117,99,104,101,115,44,115,61,99,46,108,101,110,103,116,104,59,102,111,114,40,74,98,40,41,44,110,38,38,40,110,61,99,108,101,97,114,84,105,109,101,111,117,116,40,110,41,41,44,117,46,116,97,112,115,61,48,44,101,61,48,59,101,60,115,59,43,43,101,41,105,61,70,116,40,116,104,105,115,44,99,44,40,114,61,99,91,101,93,41,46,105,100,101,110,116,105,102,105,101,114,41,44,117,46,116,111,117,99,104,48,38,38,117,46,116,111,117,99,104,48,91,50,93,61,61,61,114,46,105,100,101,110,116,105,102,105,101,114,63,117,46,116,111,117,99,104,48,91,48,93,61,105,58,117,46,116,111,117,99,104,49,38,38,117,46,116,111,117,99,104,49,91,50,93,61,61,61,114,46,105,100,101,110,116,105,102,105,101,114,38,38,40,117,46,116,111,117,99,104,49,91,48,93,61,105,41,59,105,102,40,114,61,117,46,116,104,97,116,46,95,95,122,111,111,109,44,117,46,116,111,117,99,104,49,41,123,118,97,114,32,108,61,117,46,116,111,117,99,104,48,91,48,93,44,104,61,117,46,116,111,117,99,104,48,91,49,93,44,100,61,117,46,116,111,117,99,104,49,91,48,93,44,112,61,117,46,116,111,117,99,104,49,91,49,93,44,118,61,40,118,61,100,91,48,93,45,108,91,48,93,41,42,118,43,40,118,61,100,91,49,93,45,108,91,49,93,41,42,118,44,103,61,40,103,61,112,91,48,93,45,104,91,48,93,41,42,103,43,40,103,61,112,91,49,93,45,104,91,49,93,41,42,103,59,114,61,121,40,114,44,77,97,116,104,46,115,113,114,116,40,118,47,103,41,41,44,105,61,91,40,108,91,48,93,43,100,91,48,93,41,47,50,44,40,108,91,49,93,43,100,91,49,93,41,47,50,93,44,97,61,91,40,104,91,48,93,43,112,91,48,93,41,47,50,44,40,104,91,49,93,43,112,91,49,93,41,47,50,93,125,101,108,115,101,123,105,102,40,33,117,46,116,111,117,99,104,48,41,114,101,116,117,114,110,59,105,61,117,46,116,111,117,99,104,48,91,48,93,44,97,61,117,46,116,111,117,99,104,48,91,49,93,125,117,46,122,111,111,109,40,34,116,111,117,99,104,34,44,111,40,95,40,114,44,105,44,97,41,44,117,46,101,120,116,101,110,116,44,102,41,41,125,125,102,117,110,99,116,105,111,110,32,107,40,41,123,105,102,40,116,104,105,115,46,95,95,122,111,111,109,105,110,103,41,123,118,97,114,32,110,44,114,44,105,61,120,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,44,111,61,116,46,101,118,101,110,116,46,99,104,97,110,103,101,100,84,111,117,99,104,101,115,44,97,61,111,46,108,101,110,103,116,104,59,102,111,114,40,75,98,40,41,44,101,38,38,99,108,101,97,114,84,105,109,101,111,117,116,40,101,41,44,101,61,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,40,41,123,101,61,110,117,108,108,125,44,100,41,44,110,61,48,59,110,60,97,59,43,43,110,41,114,61,111,91,110,93,44,105,46,116,111,117,99,104,48,38,38,105,46,116,111,117,99,104,48,91,50,93,61,61,61,114,46,105,100,101,110,116,105,102,105,101,114,63,100,101,108,101,116,101,32,105,46,116,111,117,99,104,48,58,105,46,116,111,117,99,104,49,38,38,105,46,116,111,117,99,104,49,91,50,93,61,61,61,114,46,105,100,101,110,116,105,102,105,101,114,38,38,100,101,108,101,116,101,32,105,46,116,111,117,99,104,49,59,105,102,40,105,46,116,111,117,99,104,49,38,38,33,105,46,116,111,117,99,104,48,38,38,40,105,46,116,111,117,99,104,48,61,105,46,116,111,117,99,104,49,44,100,101,108,101,116,101,32,105,46,116,111,117,99,104,49,41,44,105,46,116,111,117,99,104,48,41,105,46,116,111,117,99,104,48,91,49,93,61,116,104,105,115,46,95,95,122,111,111,109,46,105,110,118,101,114,116,40,105,46,116,111,117,99,104,48,91,48,93,41,59,101,108,115,101,32,105,102,40,105,46,101,110,100,40,41,44,50,61,61,61,105,46,116,97,112,115,41,123,118,97,114,32,117,61,82,116,40,116,104,105,115,41,46,111,110,40,34,100,98,108,99,108,105,99,107,46,122,111,111,109,34,41,59,117,38,38,117,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,125,125,125,114,101,116,117,114,110,32,103,46,116,114,97,110,115,102,111,114,109,61,102,117,110,99,116,105,111,110,40,116,44,110,44,101,41,123,118,97,114,32,114,61,116,46,115,101,108,101,99,116,105,111,110,63,116,46,115,101,108,101,99,116,105,111,110,40,41,58,116,59,114,46,112,114,111,112,101,114,116,121,40,34,95,95,122,111,111,109,34,44,101,109,41,44,116,33,61,61,114,63,109,40,116,44,110,44,101,41,58,114,46,105,110,116,101,114,114,117,112,116,40,41,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,120,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,46,115,116,97,114,116,40,41,46,122,111,111,109,40,110,117,108,108,44,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,110,63,110,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,58,110,41,46,101,110,100,40,41,125,41,125,44,103,46,115,99,97,108,101,66,121,61,102,117,110,99,116,105,111,110,40,116,44,110,44,101,41,123,103,46,115,99,97,108,101,84,111,40,116,44,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,95,95,122,111,111,109,46,107,44,101,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,110,63,110,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,58,110,59,114,101,116,117,114,110,32,116,42,101,125,44,101,41,125,44,103,46,115,99,97,108,101,84,111,61,102,117,110,99,116,105,111,110,40,116,44,110,44,101,41,123,103,46,116,114,97,110,115,102,111,114,109,40,116,44,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,105,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,44,114,61,116,104,105,115,46,95,95,122,111,111,109,44,97,61,110,117,108,108,61,61,101,63,98,40,116,41,58,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,101,63,101,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,58,101,44,117,61,114,46,105,110,118,101,114,116,40,97,41,44,99,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,110,63,110,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,58,110,59,114,101,116,117,114,110,32,111,40,95,40,121,40,114,44,99,41,44,97,44,117,41,44,116,44,102,41,125,44,101,41,125,44,103,46,116,114,97,110,115,108,97,116,101,66,121,61,102,117,110,99,116,105,111,110,40,116,44,110,44,101,41,123,103,46,116,114,97,110,115,102,111,114,109,40,116,44,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,111,40,116,104,105,115,46,95,95,122,111,111,109,46,116,114,97,110,115,108,97,116,101,40,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,110,63,110,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,58,110,44,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,101,63,101,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,58,101,41,44,105,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,44,102,41,125,41,125,44,103,46,116,114,97,110,115,108,97,116,101,84,111,61,102,117,110,99,116,105,111,110,40,116,44,110,44,101,44,114,41,123,103,46,116,114,97,110,115,102,111,114,109,40,116,44,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,105,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,44,97,61,116,104,105,115,46,95,95,122,111,111,109,44,117,61,110,117,108,108,61,61,114,63,98,40,116,41,58,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,114,63,114,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,58,114,59,114,101,116,117,114,110,32,111,40,90,98,46,116,114,97,110,115,108,97,116,101,40,117,91,48,93,44,117,91,49,93,41,46,115,99,97,108,101,40,97,46,107,41,46,116,114,97,110,115,108,97,116,101,40,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,110,63,45,110,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,58,45,110,44,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,101,63,45,101,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,58,45,101,41,44,116,44,102,41,125,44,114,41,125,44,119,46,112,114,111,116,111,116,121,112,101,61,123,115,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,49,61,61,43,43,116,104,105,115,46,97,99,116,105,118,101,38,38,40,116,104,105,115,46,116,104,97,116,46,95,95,122,111,111,109,105,110,103,61,116,104,105,115,44,116,104,105,115,46,101,109,105,116,40,34,115,116,97,114,116,34,41,41,44,116,104,105,115,125,44,122,111,111,109,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,114,101,116,117,114,110,32,116,104,105,115,46,109,111,117,115,101,38,38,34,109,111,117,115,101,34,33,61,61,116,38,38,40,116,104,105,115,46,109,111,117,115,101,91,49,93,61,110,46,105,110,118,101,114,116,40,116,104,105,115,46,109,111,117,115,101,91,48,93,41,41,44,116,104,105,115,46,116,111,117,99,104,48,38,38,34,116,111,117,99,104,34,33,61,61,116,38,38,40,116,104,105,115,46,116,111,117,99,104,48,91,49,93,61,110,46,105,110,118,101,114,116,40,116,104,105,115,46,116,111,117,99,104,48,91,48,93,41,41,44,116,104,105,115,46,116,111,117,99,104,49,38,38,34,116,111,117,99,104,34,33,61,61,116,38,38,40,116,104,105,115,46,116,111,117,99,104,49,91,49,93,61,110,46,105,110,118,101,114,116,40,116,104,105,115,46,116,111,117,99,104,49,91,48,93,41,41,44,116,104,105,115,46,116,104,97,116,46,95,95,122,111,111,109,61,110,44,116,104,105,115,46,101,109,105,116,40,34,122,111,111,109,34,41,44,116,104,105,115,125,44,101,110,100,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,48,61,61,45,45,116,104,105,115,46,97,99,116,105,118,101,38,38,40,100,101,108,101,116,101,32,116,104,105,115,46,116,104,97,116,46,95,95,122,111,111,109,105,110,103,44,116,104,105,115,46,101,109,105,116,40,34,101,110,100,34,41,41,44,116,104,105,115,125,44,101,109,105,116,58,102,117,110,99,116,105,111,110,40,116,41,123,107,116,40,110,101,119,32,36,98,40,103,44,116,44,116,104,105,115,46,116,104,97,116,46,95,95,122,111,111,109,41,44,104,46,97,112,112,108,121,44,104,44,91,116,44,116,104,105,115,46,116,104,97,116,44,116,104,105,115,46,97,114,103,115,93,41,125,125,44,103,46,119,104,101,101,108,68,101,108,116,97,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,97,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,71,98,40,43,116,41,44,103,41,58,97,125,44,103,46,102,105,108,116,101,114,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,114,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,71,98,40,33,33,116,41,44,103,41,58,114,125,44,103,46,116,111,117,99,104,97,98,108,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,117,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,71,98,40,33,33,116,41,44,103,41,58,117,125,44,103,46,101,120,116,101,110,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,105,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,116,58,71,98,40,91,91,43,116,91,48,93,91,48,93,44,43,116,91,48,93,91,49,93,93,44,91,43,116,91,49,93,91,48,93,44,43,116,91,49,93,91,49,93,93,93,41,44,103,41,58,105,125,44,103,46,115,99,97,108,101,69,120,116,101,110,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,99,91,48,93,61,43,116,91,48,93,44,99,91,49,93,61,43,116,91,49,93,44,103,41,58,91,99,91,48,93,44,99,91,49,93,93,125,44,103,46,116,114,97,110,115,108,97,116,101,69,120,116,101,110,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,102,91,48,93,91,48,93,61,43,116,91,48,93,91,48,93,44,102,91,49,93,91,48,93,61,43,116,91,49,93,91,48,93,44,102,91,48,93,91,49,93,61,43,116,91,48,93,91,49,93,44,102,91,49,93,91,49,93,61,43,116,91,49,93,91,49,93,44,103,41,58,91,91,102,91,48,93,91,48,93,44,102,91,48,93,91,49,93,93,44,91,102,91,49,93,91,48,93,44,102,91,49,93,91,49,93,93,93,125,44,103,46,99,111,110,115,116,114,97,105,110,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,111,61,116,44,103,41,58,111,125,44,103,46,100,117,114,97,116,105,111,110,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,115,61,43,116,44,103,41,58,115,125,44,103,46,105,110,116,101,114,112,111,108,97,116,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,108,61,116,44,103,41,58,108,125,44,103,46,111,110,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,104,46,111,110,46,97,112,112,108,121,40,104,44,97,114,103,117,109,101,110,116,115,41,59,114,101,116,117,114,110,32,116,61,61,61,104,63,103,58,116,125,44,103,46,99,108,105,99,107,68,105,115,116,97,110,99,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,118,61,40,116,61,43,116,41,42,116,44,103,41,58,77,97,116,104,46,115,113,114,116,40,118,41,125,44,103,125,44,116,46,122,111,111,109,73,100,101,110,116,105,116,121,61,90,98,44,116,46,122,111,111,109,84,114,97,110,115,102,111,114,109,61,81,98,44,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,44,34,95,95,101,115,77,111,100,117,108,101,34,44,123,118,97,108,117,101,58,33,48,125,41,125,41,59,10,47,42,33,32,100,111,109,45,116,111,45,105,109,97,103,101,32,49,48,45,48,54,45,50,48,49,55,32,42,47,10,33,102,117,110,99,116,105,111,110,40,97,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,102,117,110,99,116,105,111,110,32,98,40,97,44,98,41,123,102,117,110,99,116,105,111,110,32,99,40,97,41,123,114,101,116,117,114,110,32,98,46,98,103,99,111,108,111,114,38,38,40,97,46,115,116,121,108,101,46,98,97,99,107,103,114,111,117,110,100,67,111,108,111,114,61,98,46,98,103,99,111,108,111,114,41,44,98,46,119,105,100,116,104,38,38,40,97,46,115,116,121,108,101,46,119,105,100,116,104,61,98,46,119,105,100,116,104,43,34,112,120,34,41,44,98,46,104,101,105,103,104,116,38,38,40,97,46,115,116,121,108,101,46,104,101,105,103,104,116,61,98,46,104,101,105,103,104,116,43,34,112,120,34,41,44,98,46,115,116,121,108,101,38,38,79,98,106,101,99,116,46,107,101,121,115,40,98,46,115,116,121,108,101,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,99,41,123,97,46,115,116,121,108,101,91,99,93,61,98,46,115,116,121,108,101,91,99,93,125,41,44,97,125,114,101,116,117,114,110,32,98,61,98,124,124,123,125,44,103,40,98,41,44,80,114,111,109,105,115,101,46,114,101,115,111,108,118,101,40,97,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,97,41,123,114,101,116,117,114,110,32,105,40,97,44,98,46,102,105,108,116,101,114,44,33,48,41,125,41,46,116,104,101,110,40,106,41,46,116,104,101,110,40,107,41,46,116,104,101,110,40,99,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,99,41,123,114,101,116,117,114,110,32,108,40,99,44,98,46,119,105,100,116,104,124,124,113,46,119,105,100,116,104,40,97,41,44,98,46,104,101,105,103,104,116,124,124,113,46,104,101,105,103,104,116,40,97,41,41,125,41,125,102,117,110,99,116,105,111,110,32,99,40,97,44,98,41,123,114,101,116,117,114,110,32,104,40,97,44,98,124,124,123,125,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,98,41,123,114,101,116,117,114,110,32,98,46,103,101,116,67,111,110,116,101,120,116,40,34,50,100,34,41,46,103,101,116,73,109,97,103,101,68,97,116,97,40,48,44,48,44,113,46,119,105,100,116,104,40,97,41,44,113,46,104,101,105,103,104,116,40,97,41,41,46,100,97,116,97,125,41,125,102,117,110,99,116,105,111,110,32,100,40,97,44,98,41,123,114,101,116,117,114,110,32,104,40,97,44,98,124,124,123,125,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,97,41,123,114,101,116,117,114,110,32,97,46,116,111,68,97,116,97,85,82,76,40,41,125,41,125,102,117,110,99,116,105,111,110,32,101,40,97,44,98,41,123,114,101,116,117,114,110,32,98,61,98,124,124,123,125,44,104,40,97,44,98,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,97,41,123,114,101,116,117,114,110,32,97,46,116,111,68,97,116,97,85,82,76,40,34,105,109,97,103,101,47,106,112,101,103,34,44,98,46,113,117,97,108,105,116,121,124,124,49,41,125,41,125,102,117,110,99,116,105,111,110,32,102,40,97,44,98,41,123,114,101,116,117,114,110,32,104,40,97,44,98,124,124,123,125,41,46,116,104,101,110,40,113,46,99,97,110,118,97,115,84,111,66,108,111,98,41,125,102,117,110,99,116,105,111,110,32,103,40,97,41,123,34,117,110,100,101,102,105,110,101,100,34,61,61,116,121,112,101,111,102,32,97,46,105,109,97,103,101,80,108,97,99,101,104,111,108,100,101,114,63,118,46,105,109,112,108,46,111,112,116,105,111,110,115,46,105,109,97,103,101,80,108,97,99,101,104,111,108,100,101,114,61,117,46,105,109,97,103,101,80,108,97,99,101,104,111,108,100,101,114,58,118,46,105,109,112,108,46,111,112,116,105,111,110,115,46,105,109,97,103,101,80,108,97,99,101,104,111,108,100,101,114,61,97,46,105,109,97,103,101,80,108,97,99,101,104,111,108,100,101,114,44,34,117,110,100,101,102,105,110,101,100,34,61,61,116,121,112,101,111,102,32,97,46,99,97,99,104,101,66,117,115,116,63,118,46,105,109,112,108,46,111,112,116,105,111,110,115,46,99,97,99,104,101,66,117,115,116,61,117,46,99,97,99,104,101,66,117,115,116,58,118,46,105,109,112,108,46,111,112,116,105,111,110,115,46,99,97,99,104,101,66,117,115,116,61,97,46,99,97,99,104,101,66,117,115,116,125,102,117,110,99,116,105,111,110,32,104,40,97,44,99,41,123,102,117,110,99,116,105,111,110,32,100,40,97,41,123,118,97,114,32,98,61,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,99,97,110,118,97,115,34,41,59,105,102,40,98,46,119,105,100,116,104,61,99,46,119,105,100,116,104,124,124,113,46,119,105,100,116,104,40,97,41,44,98,46,104,101,105,103,104,116,61,99,46,104,101,105,103,104,116,124,124,113,46,104,101,105,103,104,116,40,97,41,44,99,46,98,103,99,111,108,111,114,41,123,118,97,114,32,100,61,98,46,103,101,116,67,111,110,116,101,120,116,40,34,50,100,34,41,59,100,46,102,105,108,108,83,116,121,108,101,61,99,46,98,103,99,111,108,111,114,44,100,46,102,105,108,108,82,101,99,116,40,48,44,48,44,98,46,119,105,100,116,104,44,98,46,104,101,105,103,104,116,41,125,114,101,116,117,114,110,32,98,125,114,101,116,117,114,110,32,98,40,97,44,99,41,46,116,104,101,110,40,113,46,109,97,107,101,73,109,97,103,101,41,46,116,104,101,110,40,113,46,100,101,108,97,121,40,49,48,48,41,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,98,41,123,118,97,114,32,99,61,100,40,97,41,59,114,101,116,117,114,110,32,99,46,103,101,116,67,111,110,116,101,120,116,40,34,50,100,34,41,46,100,114,97,119,73,109,97,103,101,40,98,44,48,44,48,41,44,99,125,41,125,102,117,110,99,116,105,111,110,32,105,40,97,44,98,44,99,41,123,102,117,110,99,116,105,111,110,32,100,40,97,41,123,114,101,116,117,114,110,32,97,32,105,110,115,116,97,110,99,101,111,102,32,72,84,77,76,67,97,110,118,97,115,69,108,101,109,101,110,116,63,113,46,109,97,107,101,73,109,97,103,101,40,97,46,116,111,68,97,116,97,85,82,76,40,41,41,58,97,46,99,108,111,110,101,78,111,100,101,40,33,49,41,125,102,117,110,99,116,105,111,110,32,101,40,97,44,98,44,99,41,123,102,117,110,99,116,105,111,110,32,100,40,97,44,98,44,99,41,123,118,97,114,32,100,61,80,114,111,109,105,115,101,46,114,101,115,111,108,118,101,40,41,59,114,101,116,117,114,110,32,98,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,98,41,123,100,61,100,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,105,40,98,44,99,41,125,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,98,41,123,98,38,38,97,46,97,112,112,101,110,100,67,104,105,108,100,40,98,41,125,41,125,41,44,100,125,118,97,114,32,101,61,97,46,99,104,105,108,100,78,111,100,101,115,59,114,101,116,117,114,110,32,48,61,61,61,101,46,108,101,110,103,116,104,63,80,114,111,109,105,115,101,46,114,101,115,111,108,118,101,40,98,41,58,100,40,98,44,113,46,97,115,65,114,114,97,121,40,101,41,44,99,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,98,125,41,125,102,117,110,99,116,105,111,110,32,102,40,97,44,98,41,123,102,117,110,99,116,105,111,110,32,99,40,41,123,102,117,110,99,116,105,111,110,32,99,40,97,44,98,41,123,102,117,110,99,116,105,111,110,32,99,40,97,44,98,41,123,113,46,97,115,65,114,114,97,121,40,97,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,99,41,123,98,46,115,101,116,80,114,111,112,101,114,116,121,40,99,44,97,46,103,101,116,80,114,111,112,101,114,116,121,86,97,108,117,101,40,99,41,44,97,46,103,101,116,80,114,111,112,101,114,116,121,80,114,105,111,114,105,116,121,40,99,41,41,125,41,125,97,46,99,115,115,84,101,120,116,63,98,46,99,115,115,84,101,120,116,61,97,46,99,115,115,84,101,120,116,58,99,40,97,44,98,41,125,99,40,119,105,110,100,111,119,46,103,101,116,67,111,109,112,117,116,101,100,83,116,121,108,101,40,97,41,44,98,46,115,116,121,108,101,41,125,102,117,110,99,116,105,111,110,32,100,40,41,123,102,117,110,99,116,105,111,110,32,99,40,99,41,123,102,117,110,99,116,105,111,110,32,100,40,97,44,98,44,99,41,123,102,117,110,99,116,105,111,110,32,100,40,97,41,123,118,97,114,32,98,61,97,46,103,101,116,80,114,111,112,101,114,116,121,86,97,108,117,101,40,34,99,111,110,116,101,110,116,34,41,59,114,101,116,117,114,110,32,97,46,99,115,115,84,101,120,116,43,34,32,99,111,110,116,101,110,116,58,32,34,43,98,43,34,59,34,125,102,117,110,99,116,105,111,110,32,101,40,97,41,123,102,117,110,99,116,105,111,110,32,98,40,98,41,123,114,101,116,117,114,110,32,98,43,34,58,32,34,43,97,46,103,101,116,80,114,111,112,101,114,116,121,86,97,108,117,101,40,98,41,43,40,97,46,103,101,116,80,114,111,112,101,114,116,121,80,114,105,111,114,105,116,121,40,98,41,63,34,32,33,105,109,112,111,114,116,97,110,116,34,58,34,34,41,125,114,101,116,117,114,110,32,113,46,97,115,65,114,114,97,121,40,97,41,46,109,97,112,40,98,41,46,106,111,105,110,40,34,59,32,34,41,43,34,59,34,125,118,97,114,32,102,61,34,46,34,43,97,43,34,58,34,43,98,44,103,61,99,46,99,115,115,84,101,120,116,63,100,40,99,41,58,101,40,99,41,59,114,101,116,117,114,110,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,84,101,120,116,78,111,100,101,40,102,43,34,123,34,43,103,43,34,125,34,41,125,118,97,114,32,101,61,119,105,110,100,111,119,46,103,101,116,67,111,109,112,117,116,101,100,83,116,121,108,101,40,97,44,99,41,44,102,61,101,46,103,101,116,80,114,111,112,101,114,116,121,86,97,108,117,101,40,34,99,111,110,116,101,110,116,34,41,59,105,102,40,34,34,33,61,61,102,38,38,34,110,111,110,101,34,33,61,61,102,41,123,118,97,114,32,103,61,113,46,117,105,100,40,41,59,98,46,99,108,97,115,115,78,97,109,101,61,98,46,99,108,97,115,115,78,97,109,101,43,34,32,34,43,103,59,118,97,114,32,104,61,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,115,116,121,108,101,34,41,59,104,46,97,112,112,101,110,100,67,104,105,108,100,40,100,40,103,44,99,44,101,41,41,44,98,46,97,112,112,101,110,100,67,104,105,108,100,40,104,41,125,125,91,34,58,98,101,102,111,114,101,34,44,34,58,97,102,116,101,114,34,93,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,97,41,123,99,40,97,41,125,41,125,102,117,110,99,116,105,111,110,32,101,40,41,123,97,32,105,110,115,116,97,110,99,101,111,102,32,72,84,77,76,84,101,120,116,65,114,101,97,69,108,101,109,101,110,116,38,38,40,98,46,105,110,110,101,114,72,84,77,76,61,97,46,118,97,108,117,101,41,44,97,32,105,110,115,116,97,110,99,101,111,102,32,72,84,77,76,73,110,112,117,116,69,108,101,109,101,110,116,38,38,98,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,118,97,108,117,101,34,44,97,46,118,97,108,117,101,41,125,102,117,110,99,116,105,111,110,32,102,40,41,123,98,32,105,110,115,116,97,110,99,101,111,102,32,83,86,71,69,108,101,109,101,110,116,38,38,40,98,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,120,109,108,110,115,34,44,34,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,115,118,103,34,41,44,98,32,105,110,115,116,97,110,99,101,111,102,32,83,86,71,82,101,99,116,69,108,101,109,101,110,116,38,38,91,34,119,105,100,116,104,34,44,34,104,101,105,103,104,116,34,93,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,97,41,123,118,97,114,32,99,61,98,46,103,101,116,65,116,116,114,105,98,117,116,101,40,97,41,59,99,38,38,98,46,115,116,121,108,101,46,115,101,116,80,114,111,112,101,114,116,121,40,97,44,99,41,125,41,41,125,114,101,116,117,114,110,32,98,32,105,110,115,116,97,110,99,101,111,102,32,69,108,101,109,101,110,116,63,80,114,111,109,105,115,101,46,114,101,115,111,108,118,101,40,41,46,116,104,101,110,40,99,41,46,116,104,101,110,40,100,41,46,116,104,101,110,40,101,41,46,116,104,101,110,40,102,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,98,125,41,58,98,125,114,101,116,117,114,110,32,99,124,124,33,98,124,124,98,40,97,41,63,80,114,111,109,105,115,101,46,114,101,115,111,108,118,101,40,97,41,46,116,104,101,110,40,100,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,99,41,123,114,101,116,117,114,110,32,101,40,97,44,99,44,98,41,125,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,98,41,123,114,101,116,117,114,110,32,102,40,97,44,98,41,125,41,58,80,114,111,109,105,115,101,46,114,101,115,111,108,118,101,40,41,125,102,117,110,99,116,105,111,110,32,106,40,97,41,123,114,101,116,117,114,110,32,115,46,114,101,115,111,108,118,101,65,108,108,40,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,98,41,123,118,97,114,32,99,61,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,115,116,121,108,101,34,41,59,114,101,116,117,114,110,32,97,46,97,112,112,101,110,100,67,104,105,108,100,40,99,41,44,99,46,97,112,112,101,110,100,67,104,105,108,100,40,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,84,101,120,116,78,111,100,101,40,98,41,41,44,97,125,41,125,102,117,110,99,116,105,111,110,32,107,40,97,41,123,114,101,116,117,114,110,32,116,46,105,110,108,105,110,101,65,108,108,40,97,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,97,125,41,125,102,117,110,99,116,105,111,110,32,108,40,97,44,98,44,99,41,123,114,101,116,117,114,110,32,80,114,111,109,105,115,101,46,114,101,115,111,108,118,101,40,97,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,97,41,123,114,101,116,117,114,110,32,97,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,120,109,108,110,115,34,44,34,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,49,57,57,57,47,120,104,116,109,108,34,41,44,40,110,101,119,32,88,77,76,83,101,114,105,97,108,105,122,101,114,41,46,115,101,114,105,97,108,105,122,101,84,111,83,116,114,105,110,103,40,97,41,125,41,46,116,104,101,110,40,113,46,101,115,99,97,112,101,88,104,116,109,108,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,97,41,123,114,101,116,117,114,110,39,60,102,111,114,101,105,103,110,79,98,106,101,99,116,32,120,61,34,48,34,32,121,61,34,48,34,32,119,105,100,116,104,61,34,49,48,48,37,34,32,104,101,105,103,104,116,61,34,49,48,48,37,34,62,39,43,97,43,34,60,47,102,111,114,101,105,103,110,79,98,106,101,99,116,62,34,125,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,97,41,123,114,101,116,117,114,110,39,60,115,118,103,32,120,109,108,110,115,61,34,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,115,118,103,34,32,119,105,100,116,104,61,34,39,43,98,43,39,34,32,104,101,105,103,104,116,61,34,39,43,99,43,39,34,62,39,43,97,43,34,60,47,115,118,103,62,34,125,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,97,41,123,114,101,116,117,114,110,34,100,97,116,97,58,105,109,97,103,101,47,115,118,103,43,120,109,108,59,99,104,97,114,115,101,116,61,117,116,102,45,56,44,34,43,97,125,41,125,102,117,110,99,116,105,111,110,32,109,40,41,123,102,117,110,99,116,105,111,110,32,97,40,41,123,118,97,114,32,97,61,34,97,112,112,108,105,99,97,116,105,111,110,47,102,111,110,116,45,119,111,102,102,34,44,98,61,34,105,109,97,103,101,47,106,112,101,103,34,59,114,101,116,117,114,110,123,119,111,102,102,58,97,44,119,111,102,102,50,58,97,44,116,116,102,58,34,97,112,112,108,105,99,97,116,105,111,110,47,102,111,110,116,45,116,114,117,101,116,121,112,101,34,44,101,111,116,58,34,97,112,112,108,105,99,97,116,105,111,110,47,118,110,100,46,109,115,45,102,111,110,116,111,98,106,101,99,116,34,44,112,110,103,58,34,105,109,97,103,101,47,112,110,103,34,44,106,112,103,58,98,44,106,112,101,103,58,98,44,103,105,102,58,34,105,109,97,103,101,47,103,105,102,34,44,116,105,102,102,58,34,105,109,97,103,101,47,116,105,102,102,34,44,115,118,103,58,34,105,109,97,103,101,47,115,118,103,43,120,109,108,34,125,125,102,117,110,99,116,105,111,110,32,98,40,97,41,123,118,97,114,32,98,61,47,92,46,40,91,94,92,46,92,47,93,42,63,41,36,47,103,46,101,120,101,99,40,97,41,59,114,101,116,117,114,110,32,98,63,98,91,49,93,58,34,34,125,102,117,110,99,116,105,111,110,32,99,40,99,41,123,118,97,114,32,100,61,98,40,99,41,46,116,111,76,111,119,101,114,67,97,115,101,40,41,59,114,101,116,117,114,110,32,97,40,41,91,100,93,124,124,34,34,125,102,117,110,99,116,105,111,110,32,100,40,97,41,123,114,101,116,117,114,110,32,97,46,115,101,97,114,99,104,40,47,94,40,100,97,116,97,58,41,47,41,33,61,61,45,49,125,102,117,110,99,116,105,111,110,32,101,40,97,41,123,114,101,116,117,114,110,32,110,101,119,32,80,114,111,109,105,115,101,40,102,117,110,99,116,105,111,110,40,98,41,123,102,111,114,40,118,97,114,32,99,61,119,105,110,100,111,119,46,97,116,111,98,40,97,46,116,111,68,97,116,97,85,82,76,40,41,46,115,112,108,105,116,40,34,44,34,41,91,49,93,41,44,100,61,99,46,108,101,110,103,116,104,44,101,61,110,101,119,32,85,105,110,116,56,65,114,114,97,121,40,100,41,44,102,61,48,59,102,60,100,59,102,43,43,41,101,91,102,93,61,99,46,99,104,97,114,67,111,100,101,65,116,40,102,41,59,98,40,110,101,119,32,66,108,111,98,40,91,101,93,44,123,116,121,112,101,58,34,105,109,97,103,101,47,112,110,103,34,125,41,41,125,41,125,102,117,110,99,116,105,111,110,32,102,40,97,41,123,114,101,116,117,114,110,32,97,46,116,111,66,108,111,98,63,110,101,119,32,80,114,111,109,105,115,101,40,102,117,110,99,116,105,111,110,40,98,41,123,97,46,116,111,66,108,111,98,40,98,41,125,41,58,101,40,97,41,125,102,117,110,99,116,105,111,110,32,103,40,97,44,98,41,123,118,97,114,32,99,61,100,111,99,117,109,101,110,116,46,105,109,112,108,101,109,101,110,116,97,116,105,111,110,46,99,114,101,97,116,101,72,84,77,76,68,111,99,117,109,101,110,116,40,41,44,100,61,99,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,98,97,115,101,34,41,59,99,46,104,101,97,100,46,97,112,112,101,110,100,67,104,105,108,100,40,100,41,59,118,97,114,32,101,61,99,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,97,34,41,59,114,101,116,117,114,110,32,99,46,98,111,100,121,46,97,112,112,101,110,100,67,104,105,108,100,40,101,41,44,100,46,104,114,101,102,61,98,44,101,46,104,114,101,102,61,97,44,101,46,104,114,101,102,125,102,117,110,99,116,105,111,110,32,104,40,41,123,118,97,114,32,97,61,48,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,98,40,41,123,114,101,116,117,114,110,40,34,48,48,48,48,34,43,40,77,97,116,104,46,114,97,110,100,111,109,40,41,42,77,97,116,104,46,112,111,119,40,51,54,44,52,41,60,60,48,41,46,116,111,83,116,114,105,110,103,40,51,54,41,41,46,115,108,105,99,101,40,45,52,41,125,114,101,116,117,114,110,34,117,34,43,98,40,41,43,97,43,43,125,125,102,117,110,99,116,105,111,110,32,105,40,97,41,123,114,101,116,117,114,110,32,110,101,119,32,80,114,111,109,105,115,101,40,102,117,110,99,116,105,111,110,40,98,44,99,41,123,118,97,114,32,100,61,110,101,119,32,73,109,97,103,101,59,100,46,111,110,108,111,97,100,61,102,117,110,99,116,105,111,110,40,41,123,98,40,100,41,125,44,100,46,111,110,101,114,114,111,114,61,99,44,100,46,115,114,99,61,97,125,41,125,102,117,110,99,116,105,111,110,32,106,40,97,41,123,118,97,114,32,98,61,51,101,52,59,114,101,116,117,114,110,32,118,46,105,109,112,108,46,111,112,116,105,111,110,115,46,99,97,99,104,101,66,117,115,116,38,38,40,97,43,61,40,47,92,63,47,46,116,101,115,116,40,97,41,63,34,38,34,58,34,63,34,41,43,40,110,101,119,32,68,97,116,101,41,46,103,101,116,84,105,109,101,40,41,41,44,110,101,119,32,80,114,111,109,105,115,101,40,102,117,110,99,116,105,111,110,40,99,41,123,102,117,110,99,116,105,111,110,32,100,40,41,123,105,102,40,52,61,61,61,103,46,114,101,97,100,121,83,116,97,116,101,41,123,105,102,40,50,48,48,33,61,61,103,46,115,116,97,116,117,115,41,114,101,116,117,114,110,32,118,111,105,100,40,104,63,99,40,104,41,58,102,40,34,99,97,110,110,111,116,32,102,101,116,99,104,32,114,101,115,111,117,114,99,101,58,32,34,43,97,43,34,44,32,115,116,97,116,117,115,58,32,34,43,103,46,115,116,97,116,117,115,41,41,59,118,97,114,32,98,61,110,101,119,32,70,105,108,101,82,101,97,100,101,114,59,98,46,111,110,108,111,97,100,101,110,100,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,97,61,98,46,114,101,115,117,108,116,46,115,112,108,105,116,40,47,44,47,41,91,49,93,59,99,40,97,41,125,44,98,46,114,101,97,100,65,115,68,97,116,97,85,82,76,40,103,46,114,101,115,112,111,110,115,101,41,125,125,102,117,110,99,116,105,111,110,32,101,40,41,123,104,63,99,40,104,41,58,102,40,34,116,105,109,101,111,117,116,32,111,102,32,34,43,98,43,34,109,115,32,111,99,99,117,114,101,100,32,119,104,105,108,101,32,102,101,116,99,104,105,110,103,32,114,101,115,111,117,114,99,101,58,32,34,43,97,41,125,102,117,110,99,116,105,111,110,32,102,40,97,41,123,99,111,110,115,111,108,101,46,101,114,114,111,114,40,97,41,44,99,40,34,34,41,125,118,97,114,32,103,61,110,101,119,32,88,77,76,72,116,116,112,82,101,113,117,101,115,116,59,103,46,111,110,114,101,97,100,121,115,116,97,116,101,99,104,97,110,103,101,61,100,44,103,46,111,110,116,105,109,101,111,117,116,61,101,44,103,46,114,101,115,112,111,110,115,101,84,121,112,101,61,34,98,108,111,98,34,44,103,46,116,105,109,101,111,117,116,61,98,44,103,46,111,112,101,110,40,34,71,69,84,34,44,97,44,33,48,41,44,103,46,115,101,110,100,40,41,59,118,97,114,32,104,59,105,102,40,118,46,105,109,112,108,46,111,112,116,105,111,110,115,46,105,109,97,103,101,80,108,97,99,101,104,111,108,100,101,114,41,123,118,97,114,32,105,61,118,46,105,109,112,108,46,111,112,116,105,111,110,115,46,105,109,97,103,101,80,108,97,99,101,104,111,108,100,101,114,46,115,112,108,105,116,40,47,44,47,41,59,105,38,38,105,91,49,93,38,38,40,104,61,105,91,49,93,41,125,125,41,125,102,117,110,99,116,105,111,110,32,107,40,97,44,98,41,123,114,101,116,117,114,110,34,100,97,116,97,58,34,43,98,43,34,59,98,97,115,101,54,52,44,34,43,97,125,102,117,110,99,116,105,111,110,32,108,40,97,41,123,114,101,116,117,114,110,32,97,46,114,101,112,108,97,99,101,40,47,40,91,46,42,43,63,94,36,123,125,40,41,124,92,91,92,93,92,47,92,92,93,41,47,103,44,34,92,92,36,49,34,41,125,102,117,110,99,116,105,111,110,32,109,40,97,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,98,41,123,114,101,116,117,114,110,32,110,101,119,32,80,114,111,109,105,115,101,40,102,117,110,99,116,105,111,110,40,99,41,123,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,40,41,123,99,40,98,41,125,44,97,41,125,41,125,125,102,117,110,99,116,105,111,110,32,110,40,97,41,123,102,111,114,40,118,97,114,32,98,61,91,93,44,99,61,97,46,108,101,110,103,116,104,44,100,61,48,59,100,60,99,59,100,43,43,41,98,46,112,117,115,104,40,97,91,100,93,41,59,114,101,116,117,114,110,32,98,125,102,117,110,99,116,105,111,110,32,111,40,97,41,123,114,101,116,117,114,110,32,97,46,114,101,112,108,97,99,101,40,47,35,47,103,44,34,37,50,51,34,41,46,114,101,112,108,97,99,101,40,47,92,110,47,103,44,34,37,48,65,34,41,125,102,117,110,99,116,105,111,110,32,112,40,97,41,123,118,97,114,32,98,61,114,40,97,44,34,98,111,114,100,101,114,45,108,101,102,116,45,119,105,100,116,104,34,41,44,99,61,114,40,97,44,34,98,111,114,100,101,114,45,114,105,103,104,116,45,119,105,100,116,104,34,41,59,114,101,116,117,114,110,32,97,46,115,99,114,111,108,108,87,105,100,116,104,43,98,43,99,125,102,117,110,99,116,105,111,110,32,113,40,97,41,123,118,97,114,32,98,61,114,40,97,44,34,98,111,114,100,101,114,45,116,111,112,45,119,105,100,116,104,34,41,44,99,61,114,40,97,44,34,98,111,114,100,101,114,45,98,111,116,116,111,109,45,119,105,100,116,104,34,41,59,114,101,116,117,114,110,32,97,46,115,99,114,111,108,108,72,101,105,103,104,116,43,98,43,99,125,102,117,110,99,116,105,111,110,32,114,40,97,44,98,41,123,118,97,114,32,99,61,119,105,110,100,111,119,46,103,101,116,67,111,109,112,117,116,101,100,83,116,121,108,101,40,97,41,46,103,101,116,80,114,111,112,101,114,116,121,86,97,108,117,101,40,98,41,59,114,101,116,117,114,110,32,112,97,114,115,101,70,108,111,97,116,40,99,46,114,101,112,108,97,99,101,40,34,112,120,34,44,34,34,41,41,125,114,101,116,117,114,110,123,101,115,99,97,112,101,58,108,44,112,97,114,115,101,69,120,116,101,110,115,105,111,110,58,98,44,109,105,109,101,84,121,112,101,58,99,44,100,97,116,97,65,115,85,114,108,58,107,44,105,115,68,97,116,97,85,114,108,58,100,44,99,97,110,118,97,115,84,111,66,108,111,98,58,102,44,114,101,115,111,108,118,101,85,114,108,58,103,44,103,101,116,65,110,100,69,110,99,111,100,101,58,106,44,117,105,100,58,104,40,41,44,100,101,108,97,121,58,109,44,97,115,65,114,114,97,121,58,110,44,101,115,99,97,112,101,88,104,116,109,108,58,111,44,109,97,107,101,73,109,97,103,101,58,105,44,119,105,100,116,104,58,112,44,104,101,105,103,104,116,58,113,125,125,102,117,110,99,116,105,111,110,32,110,40,41,123,102,117,110,99,116,105,111,110,32,97,40,97,41,123,114,101,116,117,114,110,32,97,46,115,101,97,114,99,104,40,101,41,33,61,61,45,49,125,102,117,110,99,116,105,111,110,32,98,40,97,41,123,102,111,114,40,118,97,114,32,98,44,99,61,91,93,59,110,117,108,108,33,61,61,40,98,61,101,46,101,120,101,99,40,97,41,41,59,41,99,46,112,117,115,104,40,98,91,49,93,41,59,114,101,116,117,114,110,32,99,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,40,97,41,123,114,101,116,117,114,110,33,113,46,105,115,68,97,116,97,85,114,108,40,97,41,125,41,125,102,117,110,99,116,105,111,110,32,99,40,97,44,98,44,99,44,100,41,123,102,117,110,99,116,105,111,110,32,101,40,97,41,123,114,101,116,117,114,110,32,110,101,119,32,82,101,103,69,120,112,40,34,40,117,114,108,92,92,40,91,39,92,34,93,63,41,40,34,43,113,46,101,115,99,97,112,101,40,97,41,43,34,41,40,91,39,92,34,93,63,92,92,41,41,34,44,34,103,34,41,125,114,101,116,117,114,110,32,80,114,111,109,105,115,101,46,114,101,115,111,108,118,101,40,98,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,97,41,123,114,101,116,117,114,110,32,99,63,113,46,114,101,115,111,108,118,101,85,114,108,40,97,44,99,41,58,97,125,41,46,116,104,101,110,40,100,124,124,113,46,103,101,116,65,110,100,69,110,99,111,100,101,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,97,41,123,114,101,116,117,114,110,32,113,46,100,97,116,97,65,115,85,114,108,40,97,44,113,46,109,105,109,101,84,121,112,101,40,98,41,41,125,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,99,41,123,114,101,116,117,114,110,32,97,46,114,101,112,108,97,99,101,40,101,40,98,41,44,34,36,49,34,43,99,43,34,36,51,34,41,125,41,125,102,117,110,99,116,105,111,110,32,100,40,100,44,101,44,102,41,123,102,117,110,99,116,105,111,110,32,103,40,41,123,114,101,116,117,114,110,33,97,40,100,41,125,114,101,116,117,114,110,32,103,40,41,63,80,114,111,109,105,115,101,46,114,101,115,111,108,118,101,40,100,41,58,80,114,111,109,105,115,101,46,114,101,115,111,108,118,101,40,100,41,46,116,104,101,110,40,98,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,97,41,123,118,97,114,32,98,61,80,114,111,109,105,115,101,46,114,101,115,111,108,118,101,40,100,41,59,114,101,116,117,114,110,32,97,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,97,41,123,98,61,98,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,98,41,123,114,101,116,117,114,110,32,99,40,98,44,97,44,101,44,102,41,125,41,125,41,44,98,125,41,125,118,97,114,32,101,61,47,117,114,108,92,40,91,39,34,93,63,40,91,94,39,34,93,43,63,41,91,39,34,93,63,92,41,47,103,59,114,101,116,117,114,110,123,105,110,108,105,110,101,65,108,108,58,100,44,115,104,111,117,108,100,80,114,111,99,101,115,115,58,97,44,105,109,112,108,58,123,114,101,97,100,85,114,108,115,58,98,44,105,110,108,105,110,101,58,99,125,125,125,102,117,110,99,116,105,111,110,32,111,40,41,123,102,117,110,99,116,105,111,110,32,97,40,41,123,114,101,116,117,114,110,32,98,40,100,111,99,117,109,101,110,116,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,97,41,123,114,101,116,117,114,110,32,80,114,111,109,105,115,101,46,97,108,108,40,97,46,109,97,112,40,102,117,110,99,116,105,111,110,40,97,41,123,114,101,116,117,114,110,32,97,46,114,101,115,111,108,118,101,40,41,125,41,41,125,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,97,41,123,114,101,116,117,114,110,32,97,46,106,111,105,110,40,34,92,110,34,41,125,41,125,102,117,110,99,116,105,111,110,32,98,40,41,123,102,117,110,99,116,105,111,110,32,97,40,97,41,123,114,101,116,117,114,110,32,97,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,40,97,41,123,114,101,116,117,114,110,32,97,46,116,121,112,101,61,61,61,67,83,83,82,117,108,101,46,70,79,78,84,95,70,65,67,69,95,82,85,76,69,125,41,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,40,97,41,123,114,101,116,117,114,110,32,114,46,115,104,111,117,108,100,80,114,111,99,101,115,115,40,97,46,115,116,121,108,101,46,103,101,116,80,114,111,112,101,114,116,121,86,97,108,117,101,40,34,115,114,99,34,41,41,125,41,125,102,117,110,99,116,105,111,110,32,98,40,97,41,123,118,97,114,32,98,61,91,93,59,114,101,116,117,114,110,32,97,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,97,41,123,116,114,121,123,113,46,97,115,65,114,114,97,121,40,97,46,99,115,115,82,117,108,101,115,124,124,91,93,41,46,102,111,114,69,97,99,104,40,98,46,112,117,115,104,46,98,105,110,100,40,98,41,41,125,99,97,116,99,104,40,99,41,123,99,111,110,115,111,108,101,46,108,111,103,40,34,69,114,114,111,114,32,119,104,105,108,101,32,114,101,97,100,105,110,103,32,67,83,83,32,114,117,108,101,115,32,102,114,111,109,32,34,43,97,46,104,114,101,102,44,99,46,116,111,83,116,114,105,110,103,40,41,41,125,125,41,44,98,125,102,117,110,99,116,105,111,110,32,99,40,97,41,123,114,101,116,117,114,110,123,114,101,115,111,108,118,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,98,61,40,97,46,112,97,114,101,110,116,83,116,121,108,101,83,104,101,101,116,124,124,123,125,41,46,104,114,101,102,59,114,101,116,117,114,110,32,114,46,105,110,108,105,110,101,65,108,108,40,97,46,99,115,115,84,101,120,116,44,98,41,125,44,115,114,99,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,97,46,115,116,121,108,101,46,103,101,116,80,114,111,112,101,114,116,121,86,97,108,117,101,40,34,115,114,99,34,41,125,125,125,114,101,116,117,114,110,32,80,114,111,109,105,115,101,46,114,101,115,111,108,118,101,40,113,46,97,115,65,114,114,97,121,40,100,111,99,117,109,101,110,116,46,115,116,121,108,101,83,104,101,101,116,115,41,41,46,116,104,101,110,40,98,41,46,116,104,101,110,40,97,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,97,41,123,114,101,116,117,114,110,32,97,46,109,97,112,40,99,41,125,41,125,114,101,116,117,114,110,123,114,101,115,111,108,118,101,65,108,108,58,97,44,105,109,112,108,58,123,114,101,97,100,65,108,108,58,98,125,125,125,102,117,110,99,116,105,111,110,32,112,40,41,123,102,117,110,99,116,105,111,110,32,97,40,97,41,123,102,117,110,99,116,105,111,110,32,98,40,98,41,123,114,101,116,117,114,110,32,113,46,105,115,68,97,116,97,85,114,108,40,97,46,115,114,99,41,63,80,114,111,109,105,115,101,46,114,101,115,111,108,118,101,40,41,58,80,114,111,109,105,115,101,46,114,101,115,111,108,118,101,40,97,46,115,114,99,41,46,116,104,101,110,40,98,124,124,113,46,103,101,116,65,110,100,69,110,99,111,100,101,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,98,41,123,114,101,116,117,114,110,32,113,46,100,97,116,97,65,115,85,114,108,40,98,44,113,46,109,105,109,101,84,121,112,101,40,97,46,115,114,99,41,41,125,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,98,41,123,114,101,116,117,114,110,32,110,101,119,32,80,114,111,109,105,115,101,40,102,117,110,99,116,105,111,110,40,99,44,100,41,123,97,46,111,110,108,111,97,100,61,99,44,97,46,111,110,101,114,114,111,114,61,100,44,97,46,115,114,99,61,98,125,41,125,41,125,114,101,116,117,114,110,123,105,110,108,105,110,101,58,98,125,125,102,117,110,99,116,105,111,110,32,98,40,99,41,123,102,117,110,99,116,105,111,110,32,100,40,97,41,123,118,97,114,32,98,61,97,46,115,116,121,108,101,46,103,101,116,80,114,111,112,101,114,116,121,86,97,108,117,101,40,34,98,97,99,107,103,114,111,117,110,100,34,41,59,114,101,116,117,114,110,32,98,63,114,46,105,110,108,105,110,101,65,108,108,40,98,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,98,41,123,97,46,115,116,121,108,101,46,115,101,116,80,114,111,112,101,114,116,121,40,34,98,97,99,107,103,114,111,117,110,100,34,44,98,44,97,46,115,116,121,108,101,46,103,101,116,80,114,111,112,101,114,116,121,80,114,105,111,114,105,116,121,40,34,98,97,99,107,103,114,111,117,110,100,34,41,41,125,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,97,125,41,58,80,114,111,109,105,115,101,46,114,101,115,111,108,118,101,40,97,41,125,114,101,116,117,114,110,32,99,32,105,110,115,116,97,110,99,101,111,102,32,69,108,101,109,101,110,116,63,100,40,99,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,99,32,105,110,115,116,97,110,99,101,111,102,32,72,84,77,76,73,109,97,103,101,69,108,101,109,101,110,116,63,97,40,99,41,46,105,110,108,105,110,101,40,41,58,80,114,111,109,105,115,101,46,97,108,108,40,113,46,97,115,65,114,114,97,121,40,99,46,99,104,105,108,100,78,111,100,101,115,41,46,109,97,112,40,102,117,110,99,116,105,111,110,40,97,41,123,114,101,116,117,114,110,32,98,40,97,41,125,41,41,125,41,58,80,114,111,109,105,115,101,46,114,101,115,111,108,118,101,40,99,41,125,114,101,116,117,114,110,123,105,110,108,105,110,101,65,108,108,58,98,44,105,109,112,108,58,123,110,101,119,73,109,97,103,101,58,97,125,125,125,118,97,114,32,113,61,109,40,41,44,114,61,110,40,41,44,115,61,111,40,41,44,116,61,112,40,41,44,117,61,123,105,109,97,103,101,80,108,97,99,101,104,111,108,100,101,114,58,118,111,105,100,32,48,44,99,97,99,104,101,66,117,115,116,58,33,49,125,44,118,61,123,116,111,83,118,103,58,98,44,116,111,80,110,103,58,100,44,116,111,74,112,101,103,58,101,44,116,111,66,108,111,98,58,102,44,116,111,80,105,120,101,108,68,97,116,97,58,99,44,105,109,112,108,58,123,102,111,110,116,70,97,99,101,115,58,115,44,105,109,97,103,101,115,58,116,44,117,116,105,108,58,113,44,105,110,108,105,110,101,114,58,114,44,111,112,116,105,111,110,115,58,123,125,125,125,59,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,109,111,100,117,108,101,63,109,111,100,117,108,101,46,101,120,112,111,114,116,115,61,118,58,97,46,100,111,109,116,111,105,109,97,103,101,61,118,125,40,116,104,105,115,41,59,239,187,191,40,102,117,110,99,116,105,111,110,40,102,41,123,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,100,101,102,105,110,101,38,38,100,101,102,105,110,101,46,97,109,100,63,100,101,102,105,110,101,40,91,34,106,113,117,101,114,121,34,93,44,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,102,40,110,44,100,111,99,117,109,101,110,116,44,119,105,110,100,111,119,44,110,97,118,105,103,97,116,111,114,41,125,41,58,34,111,98,106,101,99,116,34,61,61,61,116,121,112,101,111,102,32,101,120,112,111,114,116,115,63,102,40,114,101,113,117,105,114,101,40,34,106,113,117,101,114,121,34,41,44,100,111,99,117,109,101,110,116,44,119,105,110,100,111,119,44,110,97,118,105,103,97,116,111,114,41,58,102,40,106,81,117,101,114,121,44,100,111,99,117,109,101,110,116,44,119,105,110,100,111,119,44,110,97,118,105,103,97,116,111,114,41,125,41,40,102,117,110,99,116,105,111,110,40,102,44,110,44,107,44,114,44,112,41,123,118,97,114,32,116,61,48,44,109,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,97,61,114,46,117,115,101,114,65,103,101,110,116,44,98,61,47,109,115,105,101,92,115,92,100,43,47,105,59,114,101,116,117,114,110,32,48,60,97,46,115,101,97,114,99,104,40,98,41,38,38,40,97,61,98,46,101,120,101,99,40,97,41,46,116,111,83,116,114,105,110,103,40,41,44,97,61,97,46,115,112,108,105,116,40,34,32,34,41,91,49,93,44,57,62,97,41,63,40,102,40,34,104,116,109,108,34,41,46,97,100,100,67,108,97,115,115,40,34,108,116,45,105,101,57,34,41,44,33,48,41,58,33,49,125,40,41,59,70,117,110,99,116,105,111,110,46,112,114,111,116,111,116,121,112,101,46,98,105,110,100,124,124,40,70,117,110,99,116,105,111,110,46,112,114,111,116,111,116,121,112,101,46,98,105,110,100,61,102,117,110,99,116,105,111,110,40,97,41,123,118,97,114,32,98,61,116,104,105,115,44,100,61,91,93,46,115,108,105,99,101,59,105,102,40,34,102,117,110,99,116,105,111,110,34,33,61,10,116,121,112,101,111,102,32,98,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,59,118,97,114,32,99,61,100,46,99,97,108,108,40,97,114,103,117,109,101,110,116,115,44,49,41,44,101,61,102,117,110,99,116,105,111,110,40,41,123,105,102,40,116,104,105,115,32,105,110,115,116,97,110,99,101,111,102,32,101,41,123,118,97,114,32,103,61,102,117,110,99,116,105,111,110,40,41,123,125,59,103,46,112,114,111,116,111,116,121,112,101,61,98,46,112,114,111,116,111,116,121,112,101,59,118,97,114,32,103,61,110,101,119,32,103,44,108,61,98,46,97,112,112,108,121,40,103,44,99,46,99,111,110,99,97,116,40,100,46,99,97,108,108,40,97,114,103,117,109,101,110,116,115,41,41,41,59,114,101,116,117,114,110,32,79,98,106,101,99,116,40,108,41,61,61,61,108,63,108,58,103,125,114,101,116,117,114,110,32,98,46,97,112,112,108,121,40,97,44,99,46,99,111,110,99,97,116,40,100,46,99,97,108,108,40,97,114,103,117,109,101,110,116,115,41,41,41,125,59,114,101,116,117,114,110,32,101,125,41,59,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,105,110,100,101,120,79,102,124,124,40,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,105,110,100,101,120,79,102,61,102,117,110,99,116,105,111,110,40,97,44,98,41,123,105,102,40,110,117,108,108,61,61,116,104,105,115,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,39,34,116,104,105,115,34,32,105,115,32,110,117,108,108,32,111,114,32,110,111,116,32,100,101,102,105,110,101,100,39,41,59,118,97,114,32,100,61,79,98,106,101,99,116,40,116,104,105,115,41,44,99,61,100,46,108,101,110,103,116,104,62,62,62,48,59,105,102,40,48,61,61,61,99,41,114,101,116,117,114,110,45,49,59,118,97,114,32,101,61,43,98,124,124,48,59,73,110,102,105,110,105,116,121,61,61,61,77,97,116,104,46,97,98,115,40,101,41,38,38,40,101,61,48,41,59,105,102,40,101,62,61,99,41,114,101,116,117,114,110,45,49,59,10,102,111,114,40,101,61,77,97,116,104,46,109,97,120,40,48,60,61,101,63,101,58,99,45,77,97,116,104,46,97,98,115,40,101,41,44,48,41,59,101,60,99,59,41,123,105,102,40,101,32,105,110,32,100,38,38,100,91,101,93,61,61,61,97,41,114,101,116,117,114,110,32,101,59,101,43,43,125,114,101,116,117,114,110,45,49,125,41,59,118,97,114,32,113,61,102,117,110,99,116,105,111,110,40,97,44,98,44,100,41,123,116,104,105,115,46,86,69,82,83,73,79,78,61,34,50,46,50,46,48,34,59,116,104,105,115,46,105,110,112,117,116,61,97,59,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,61,100,59,116,104,105,115,46,111,108,100,95,116,111,61,116,104,105,115,46,111,108,100,95,102,114,111,109,61,116,104,105,115,46,117,112,100,97,116,101,95,116,109,61,116,104,105,115,46,99,97,108,99,95,99,111,117,110,116,61,116,104,105,115,46,99,117,114,114,101,110,116,95,112,108,117,103,105,110,61,48,59,116,104,105,115,46,114,97,102,95,105,100,61,116,104,105,115,46,111,108,100,95,109,105,110,95,105,110,116,101,114,118,97,108,61,110,117,108,108,59,116,104,105,115,46,110,111,95,100,105,97,112,97,115,111,110,61,116,104,105,115,46,102,111,114,99,101,95,114,101,100,114,97,119,61,116,104,105,115,46,100,114,97,103,103,105,110,103,61,33,49,59,116,104,105,115,46,104,97,115,95,116,97,98,95,105,110,100,101,120,61,33,48,59,116,104,105,115,46,105,115,95,117,112,100,97,116,101,61,116,104,105,115,46,105,115,95,107,101,121,61,33,49,59,116,104,105,115,46,105,115,95,115,116,97,114,116,61,33,48,59,116,104,105,115,46,105,115,95,99,108,105,99,107,61,116,104,105,115,46,105,115,95,114,101,115,105,122,101,61,116,104,105,115,46,105,115,95,97,99,116,105,118,101,61,116,104,105,115,46,105,115,95,102,105,110,105,115,104,61,33,49,59,98,61,98,124,124,123,125,59,116,104,105,115,46,36,99,97,99,104,101,61,123,119,105,110,58,102,40,107,41,44,98,111,100,121,58,102,40,110,46,98,111,100,121,41,44,10,105,110,112,117,116,58,102,40,97,41,44,99,111,110,116,58,110,117,108,108,44,114,115,58,110,117,108,108,44,109,105,110,58,110,117,108,108,44,109,97,120,58,110,117,108,108,44,102,114,111,109,58,110,117,108,108,44,116,111,58,110,117,108,108,44,115,105,110,103,108,101,58,110,117,108,108,44,98,97,114,58,110,117,108,108,44,108,105,110,101,58,110,117,108,108,44,115,95,115,105,110,103,108,101,58,110,117,108,108,44,115,95,102,114,111,109,58,110,117,108,108,44,115,95,116,111,58,110,117,108,108,44,115,104,97,100,95,115,105,110,103,108,101,58,110,117,108,108,44,115,104,97,100,95,102,114,111,109,58,110,117,108,108,44,115,104,97,100,95,116,111,58,110,117,108,108,44,101,100,103,101,58,110,117,108,108,44,103,114,105,100,58,110,117,108,108,44,103,114,105,100,95,108,97,98,101,108,115,58,91,93,125,59,116,104,105,115,46,99,111,111,114,100,115,61,123,120,95,103,97,112,58,48,44,120,95,112,111,105,110,116,101,114,58,48,44,119,95,114,115,58,48,44,119,95,114,115,95,111,108,100,58,48,44,119,95,104,97,110,100,108,101,58,48,44,112,95,103,97,112,58,48,44,112,95,103,97,112,95,108,101,102,116,58,48,44,112,95,103,97,112,95,114,105,103,104,116,58,48,44,112,95,115,116,101,112,58,48,44,112,95,112,111,105,110,116,101,114,58,48,44,112,95,104,97,110,100,108,101,58,48,44,112,95,115,105,110,103,108,101,95,102,97,107,101,58,48,44,112,95,115,105,110,103,108,101,95,114,101,97,108,58,48,44,112,95,102,114,111,109,95,102,97,107,101,58,48,44,112,95,102,114,111,109,95,114,101,97,108,58,48,44,112,95,116,111,95,102,97,107,101,58,48,44,112,95,116,111,95,114,101,97,108,58,48,44,112,95,98,97,114,95,120,58,48,44,112,95,98,97,114,95,119,58,48,44,103,114,105,100,95,103,97,112,58,48,44,98,105,103,95,110,117,109,58,48,44,98,105,103,58,91,93,44,98,105,103,95,119,58,91,93,44,98,105,103,95,112,58,91,93,44,98,105,103,95,120,58,91,93,125,59,10,116,104,105,115,46,108,97,98,101,108,115,61,123,119,95,109,105,110,58,48,44,119,95,109,97,120,58,48,44,119,95,102,114,111,109,58,48,44,119,95,116,111,58,48,44,119,95,115,105,110,103,108,101,58,48,44,112,95,109,105,110,58,48,44,112,95,109,97,120,58,48,44,112,95,102,114,111,109,95,102,97,107,101,58,48,44,112,95,102,114,111,109,95,108,101,102,116,58,48,44,112,95,116,111,95,102,97,107,101,58,48,44,112,95,116,111,95,108,101,102,116,58,48,44,112,95,115,105,110,103,108,101,95,102,97,107,101,58,48,44,112,95,115,105,110,103,108,101,95,108,101,102,116,58,48,125,59,118,97,114,32,99,61,116,104,105,115,46,36,99,97,99,104,101,46,105,110,112,117,116,59,97,61,99,46,112,114,111,112,40,34,118,97,108,117,101,34,41,59,118,97,114,32,101,59,100,61,123,116,121,112,101,58,34,115,105,110,103,108,101,34,44,109,105,110,58,49,48,44,109,97,120,58,49,48,48,44,102,114,111,109,58,110,117,108,108,44,116,111,58,110,117,108,108,44,115,116,101,112,58,49,44,109,105,110,95,105,110,116,101,114,118,97,108,58,48,44,109,97,120,95,105,110,116,101,114,118,97,108,58,48,44,100,114,97,103,95,105,110,116,101,114,118,97,108,58,33,49,44,118,97,108,117,101,115,58,91,93,44,112,95,118,97,108,117,101,115,58,91,93,44,102,114,111,109,95,102,105,120,101,100,58,33,49,44,102,114,111,109,95,109,105,110,58,110,117,108,108,44,102,114,111,109,95,109,97,120,58,110,117,108,108,44,102,114,111,109,95,115,104,97,100,111,119,58,33,49,44,116,111,95,102,105,120,101,100,58,33,49,44,116,111,95,109,105,110,58,110,117,108,108,44,116,111,95,109,97,120,58,110,117,108,108,44,116,111,95,115,104,97,100,111,119,58,33,49,44,112,114,101,116,116,105,102,121,95,101,110,97,98,108,101,100,58,33,48,44,112,114,101,116,116,105,102,121,95,115,101,112,97,114,97,116,111,114,58,34,32,34,44,112,114,101,116,116,105,102,121,58,110,117,108,108,44,102,111,114,99,101,95,101,100,103,101,115,58,33,49,44,10,107,101,121,98,111,97,114,100,58,33,48,44,103,114,105,100,58,33,49,44,103,114,105,100,95,109,97,114,103,105,110,58,33,48,44,103,114,105,100,95,110,117,109,58,52,44,103,114,105,100,95,115,110,97,112,58,33,49,44,104,105,100,101,95,109,105,110,95,109,97,120,58,33,49,44,104,105,100,101,95,102,114,111,109,95,116,111,58,33,49,44,112,114,101,102,105,120,58,34,34,44,112,111,115,116,102,105,120,58,34,34,44,109,97,120,95,112,111,115,116,102,105,120,58,34,34,44,100,101,99,111,114,97,116,101,95,98,111,116,104,58,33,48,44,118,97,108,117,101,115,95,115,101,112,97,114,97,116,111,114,58,34,32,92,117,50,48,49,52,32,34,44,105,110,112,117,116,95,118,97,108,117,101,115,95,115,101,112,97,114,97,116,111,114,58,34,59,34,44,100,105,115,97,98,108,101,58,33,49,44,98,108,111,99,107,58,33,49,44,101,120,116,114,97,95,99,108,97,115,115,101,115,58,34,34,44,115,99,111,112,101,58,110,117,108,108,44,111,110,83,116,97,114,116,58,110,117,108,108,44,111,110,67,104,97,110,103,101,58,110,117,108,108,44,111,110,70,105,110,105,115,104,58,110,117,108,108,44,111,110,85,112,100,97,116,101,58,110,117,108,108,125,59,34,73,78,80,85,84,34,33,61,61,99,91,48,93,46,110,111,100,101,78,97,109,101,38,38,99,111,110,115,111,108,101,38,38,99,111,110,115,111,108,101,46,119,97,114,110,38,38,99,111,110,115,111,108,101,46,119,97,114,110,40,34,66,97,115,101,32,101,108,101,109,101,110,116,32,115,104,111,117,108,100,32,98,101,32,60,105,110,112,117,116,62,33,34,44,99,91,48,93,41,59,99,61,123,116,121,112,101,58,99,46,100,97,116,97,40,34,116,121,112,101,34,41,44,109,105,110,58,99,46,100,97,116,97,40,34,109,105,110,34,41,44,109,97,120,58,99,46,100,97,116,97,40,34,109,97,120,34,41,44,102,114,111,109,58,99,46,100,97,116,97,40,34,102,114,111,109,34,41,44,116,111,58,99,46,100,97,116,97,40,34,116,111,34,41,44,115,116,101,112,58,99,46,100,97,116,97,40,34,115,116,101,112,34,41,44,10,109,105,110,95,105,110,116,101,114,118,97,108,58,99,46,100,97,116,97,40,34,109,105,110,73,110,116,101,114,118,97,108,34,41,44,109,97,120,95,105,110,116,101,114,118,97,108,58,99,46,100,97,116,97,40,34,109,97,120,73,110,116,101,114,118,97,108,34,41,44,100,114,97,103,95,105,110,116,101,114,118,97,108,58,99,46,100,97,116,97,40,34,100,114,97,103,73,110,116,101,114,118,97,108,34,41,44,118,97,108,117,101,115,58,99,46,100,97,116,97,40,34,118,97,108,117,101,115,34,41,44,102,114,111,109,95,102,105,120,101,100,58,99,46,100,97,116,97,40,34,102,114,111,109,70,105,120,101,100,34,41,44,102,114,111,109,95,109,105,110,58,99,46,100,97,116,97,40,34,102,114,111,109,77,105,110,34,41,44,102,114,111,109,95,109,97,120,58,99,46,100,97,116,97,40,34,102,114,111,109,77,97,120,34,41,44,102,114,111,109,95,115,104,97,100,111,119,58,99,46,100,97,116,97,40,34,102,114,111,109,83,104,97,100,111,119,34,41,44,116,111,95,102,105,120,101,100,58,99,46,100,97,116,97,40,34,116,111,70,105,120,101,100,34,41,44,116,111,95,109,105,110,58,99,46,100,97,116,97,40,34,116,111,77,105,110,34,41,44,116,111,95,109,97,120,58,99,46,100,97,116,97,40,34,116,111,77,97,120,34,41,44,116,111,95,115,104,97,100,111,119,58,99,46,100,97,116,97,40,34,116,111,83,104,97,100,111,119,34,41,44,112,114,101,116,116,105,102,121,95,101,110,97,98,108,101,100,58,99,46,100,97,116,97,40,34,112,114,101,116,116,105,102,121,69,110,97,98,108,101,100,34,41,44,112,114,101,116,116,105,102,121,95,115,101,112,97,114,97,116,111,114,58,99,46,100,97,116,97,40,34,112,114,101,116,116,105,102,121,83,101,112,97,114,97,116,111,114,34,41,44,102,111,114,99,101,95,101,100,103,101,115,58,99,46,100,97,116,97,40,34,102,111,114,99,101,69,100,103,101,115,34,41,44,107,101,121,98,111,97,114,100,58,99,46,100,97,116,97,40,34,107,101,121,98,111,97,114,100,34,41,44,10,103,114,105,100,58,99,46,100,97,116,97,40,34,103,114,105,100,34,41,44,103,114,105,100,95,109,97,114,103,105,110,58,99,46,100,97,116,97,40,34,103,114,105,100,77,97,114,103,105,110,34,41,44,103,114,105,100,95,110,117,109,58,99,46,100,97,116,97,40,34,103,114,105,100,78,117,109,34,41,44,103,114,105,100,95,115,110,97,112,58,99,46,100,97,116,97,40,34,103,114,105,100,83,110,97,112,34,41,44,104,105,100,101,95,109,105,110,95,109,97,120,58,99,46,100,97,116,97,40,34,104,105,100,101,77,105,110,77,97,120,34,41,44,104,105,100,101,95,102,114,111,109,95,116,111,58,99,46,100,97,116,97,40,34,104,105,100,101,70,114,111,109,84,111,34,41,44,112,114,101,102,105,120,58,99,46,100,97,116,97,40,34,112,114,101,102,105,120,34,41,44,112,111,115,116,102,105,120,58,99,46,100,97,116,97,40,34,112,111,115,116,102,105,120,34,41,44,109,97,120,95,112,111,115,116,102,105,120,58,99,46,100,97,116,97,40,34,109,97,120,80,111,115,116,102,105,120,34,41,44,100,101,99,111,114,97,116,101,95,98,111,116,104,58,99,46,100,97,116,97,40,34,100,101,99,111,114,97,116,101,66,111,116,104,34,41,44,118,97,108,117,101,115,95,115,101,112,97,114,97,116,111,114,58,99,46,100,97,116,97,40,34,118,97,108,117,101,115,83,101,112,97,114,97,116,111,114,34,41,44,105,110,112,117,116,95,118,97,108,117,101,115,95,115,101,112,97,114,97,116,111,114,58,99,46,100,97,116,97,40,34,105,110,112,117,116,86,97,108,117,101,115,83,101,112,97,114,97,116,111,114,34,41,44,100,105,115,97,98,108,101,58,99,46,100,97,116,97,40,34,100,105,115,97,98,108,101,34,41,44,98,108,111,99,107,58,99,46,100,97,116,97,40,34,98,108,111,99,107,34,41,44,101,120,116,114,97,95,99,108,97,115,115,101,115,58,99,46,100,97,116,97,40,34,101,120,116,114,97,67,108,97,115,115,101,115,34,41,125,59,99,46,118,97,108,117,101,115,61,99,46,118,97,108,117,101,115,38,38,99,46,118,97,108,117,101,115,46,115,112,108,105,116,40,34,44,34,41,59,10,102,111,114,40,101,32,105,110,32,99,41,99,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,101,41,38,38,40,99,91,101,93,33,61,61,112,38,38,34,34,33,61,61,99,91,101,93,124,124,100,101,108,101,116,101,32,99,91,101,93,41,59,97,33,61,61,112,38,38,34,34,33,61,61,97,38,38,40,97,61,97,46,115,112,108,105,116,40,99,46,105,110,112,117,116,95,118,97,108,117,101,115,95,115,101,112,97,114,97,116,111,114,124,124,98,46,105,110,112,117,116,95,118,97,108,117,101,115,95,115,101,112,97,114,97,116,111,114,124,124,34,59,34,41,44,97,91,48,93,38,38,97,91,48,93,61,61,43,97,91,48,93,38,38,40,97,91,48,93,61,43,97,91,48,93,41,44,97,91,49,93,38,38,97,91,49,93,61,61,43,97,91,49,93,38,38,40,97,91,49,93,61,43,97,91,49,93,41,44,98,38,38,98,46,118,97,108,117,101,115,38,38,98,46,118,97,108,117,101,115,46,108,101,110,103,116,104,63,40,100,46,102,114,111,109,61,97,91,48,93,38,38,98,46,118,97,108,117,101,115,46,105,110,100,101,120,79,102,40,97,91,48,93,41,44,100,46,116,111,61,97,91,49,93,38,38,98,46,118,97,108,117,101,115,46,105,110,100,101,120,79,102,40,97,91,49,93,41,41,58,40,100,46,102,114,111,109,61,97,91,48,93,38,38,43,97,91,48,93,44,100,46,116,111,61,97,91,49,93,38,38,43,97,91,49,93,41,41,59,102,46,101,120,116,101,110,100,40,100,44,98,41,59,102,46,101,120,116,101,110,100,40,100,44,99,41,59,116,104,105,115,46,111,112,116,105,111,110,115,61,100,59,116,104,105,115,46,117,112,100,97,116,101,95,99,104,101,99,107,61,123,125,59,116,104,105,115,46,118,97,108,105,100,97,116,101,40,41,59,116,104,105,115,46,114,101,115,117,108,116,61,123,105,110,112,117,116,58,116,104,105,115,46,36,99,97,99,104,101,46,105,110,112,117,116,44,115,108,105,100,101,114,58,110,117,108,108,44,109,105,110,58,116,104,105,115,46,111,112,116,105,111,110,115,46,109,105,110,44,10,109,97,120,58,116,104,105,115,46,111,112,116,105,111,110,115,46,109,97,120,44,102,114,111,109,58,116,104,105,115,46,111,112,116,105,111,110,115,46,102,114,111,109,44,102,114,111,109,95,112,101,114,99,101,110,116,58,48,44,102,114,111,109,95,118,97,108,117,101,58,110,117,108,108,44,116,111,58,116,104,105,115,46,111,112,116,105,111,110,115,46,116,111,44,116,111,95,112,101,114,99,101,110,116,58,48,44,116,111,95,118,97,108,117,101,58,110,117,108,108,125,59,116,104,105,115,46,105,110,105,116,40,41,125,59,113,46,112,114,111,116,111,116,121,112,101,61,123,105,110,105,116,58,102,117,110,99,116,105,111,110,40,97,41,123,116,104,105,115,46,110,111,95,100,105,97,112,97,115,111,110,61,33,49,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,115,116,101,112,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,80,101,114,99,101,110,116,40,116,104,105,115,46,111,112,116,105,111,110,115,46,115,116,101,112,44,33,48,41,59,116,104,105,115,46,116,97,114,103,101,116,61,34,98,97,115,101,34,59,116,104,105,115,46,116,111,103,103,108,101,73,110,112,117,116,40,41,59,116,104,105,115,46,97,112,112,101,110,100,40,41,59,116,104,105,115,46,115,101,116,77,105,110,77,97,120,40,41,59,97,63,40,116,104,105,115,46,102,111,114,99,101,95,114,101,100,114,97,119,61,33,48,44,116,104,105,115,46,99,97,108,99,40,33,48,41,44,116,104,105,115,46,99,97,108,108,79,110,85,112,100,97,116,101,40,41,41,58,40,116,104,105,115,46,102,111,114,99,101,95,114,101,100,114,97,119,61,33,48,44,116,104,105,115,46,99,97,108,99,40,33,48,41,44,116,104,105,115,46,99,97,108,108,79,110,83,116,97,114,116,40,41,41,59,116,104,105,115,46,117,112,100,97,116,101,83,99,101,110,101,40,41,125,44,97,112,112,101,110,100,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,36,99,97,99,104,101,46,105,110,112,117,116,46,98,101,102,111,114,101,40,39,60,115,112,97,110,32,99,108,97,115,115,61,34,105,114,115,32,106,115,45,105,114,115,45,39,43,10,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,43,34,32,34,43,116,104,105,115,46,111,112,116,105,111,110,115,46,101,120,116,114,97,95,99,108,97,115,115,101,115,43,39,34,62,60,47,115,112,97,110,62,39,41,59,116,104,105,115,46,36,99,97,99,104,101,46,105,110,112,117,116,46,112,114,111,112,40,34,114,101,97,100,111,110,108,121,34,44,33,48,41,59,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,61,116,104,105,115,46,36,99,97,99,104,101,46,105,110,112,117,116,46,112,114,101,118,40,41,59,116,104,105,115,46,114,101,115,117,108,116,46,115,108,105,100,101,114,61,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,59,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,104,116,109,108,40,39,60,115,112,97,110,32,99,108,97,115,115,61,34,105,114,115,34,62,60,115,112,97,110,32,99,108,97,115,115,61,34,105,114,115,45,108,105,110,101,34,32,116,97,98,105,110,100,101,120,61,34,48,34,62,60,115,112,97,110,32,99,108,97,115,115,61,34,105,114,115,45,108,105,110,101,45,108,101,102,116,34,62,60,47,115,112,97,110,62,60,115,112,97,110,32,99,108,97,115,115,61,34,105,114,115,45,108,105,110,101,45,109,105,100,34,62,60,47,115,112,97,110,62,60,115,112,97,110,32,99,108,97,115,115,61,34,105,114,115,45,108,105,110,101,45,114,105,103,104,116,34,62,60,47,115,112,97,110,62,60,47,115,112,97,110,62,60,115,112,97,110,32,99,108,97,115,115,61,34,105,114,115,45,109,105,110,34,62,48,60,47,115,112,97,110,62,60,115,112,97,110,32,99,108,97,115,115,61,34,105,114,115,45,109,97,120,34,62,49,60,47,115,112,97,110,62,60,115,112,97,110,32,99,108,97,115,115,61,34,105,114,115,45,102,114,111,109,34,62,48,60,47,115,112,97,110,62,60,115,112,97,110,32,99,108,97,115,115,61,34,105,114,115,45,116,111,34,62,48,60,47,115,112,97,110,62,60,115,112,97,110,32,99,108,97,115,115,61,34,105,114,115,45,115,105,110,103,108,101,34,62,48,60,47,115,112,97,110,62,60,47,115,112,97,110,62,60,115,112,97,110,32,99,108,97,115,115,61,34,105,114,115,45,103,114,105,100,34,62,60,47,115,112,97,110,62,60,115,112,97,110,32,99,108,97,115,115,61,34,105,114,115,45,98,97,114,34,62,60,47,115,112,97,110,62,39,41,59,10,116,104,105,115,46,36,99,97,99,104,101,46,114,115,61,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,102,105,110,100,40,34,46,105,114,115,34,41,59,116,104,105,115,46,36,99,97,99,104,101,46,109,105,110,61,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,102,105,110,100,40,34,46,105,114,115,45,109,105,110,34,41,59,116,104,105,115,46,36,99,97,99,104,101,46,109,97,120,61,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,102,105,110,100,40,34,46,105,114,115,45,109,97,120,34,41,59,116,104,105,115,46,36,99,97,99,104,101,46,102,114,111,109,61,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,102,105,110,100,40,34,46,105,114,115,45,102,114,111,109,34,41,59,116,104,105,115,46,36,99,97,99,104,101,46,116,111,61,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,102,105,110,100,40,34,46,105,114,115,45,116,111,34,41,59,116,104,105,115,46,36,99,97,99,104,101,46,115,105,110,103,108,101,61,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,102,105,110,100,40,34,46,105,114,115,45,115,105,110,103,108,101,34,41,59,116,104,105,115,46,36,99,97,99,104,101,46,98,97,114,61,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,102,105,110,100,40,34,46,105,114,115,45,98,97,114,34,41,59,116,104,105,115,46,36,99,97,99,104,101,46,108,105,110,101,61,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,102,105,110,100,40,34,46,105,114,115,45,108,105,110,101,34,41,59,116,104,105,115,46,36,99,97,99,104,101,46,103,114,105,100,61,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,102,105,110,100,40,34,46,105,114,115,45,103,114,105,100,34,41,59,34,115,105,110,103,108,101,34,61,61,61,116,104,105,115,46,111,112,116,105,111,110,115,46,116,121,112,101,63,40,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,97,112,112,101,110,100,40,39,60,115,112,97,110,32,99,108,97,115,115,61,34,105,114,115,45,98,97,114,45,101,100,103,101,34,62,60,47,115,112,97,110,62,60,115,112,97,110,32,99,108,97,115,115,61,34,105,114,115,45,115,104,97,100,111,119,32,115,104,97,100,111,119,45,115,105,110,103,108,101,34,62,60,47,115,112,97,110,62,60,115,112,97,110,32,99,108,97,115,115,61,34,105,114,115,45,115,108,105,100,101,114,32,115,105,110,103,108,101,34,62,60,47,115,112,97,110,62,39,41,44,10,116,104,105,115,46,36,99,97,99,104,101,46,101,100,103,101,61,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,102,105,110,100,40,34,46,105,114,115,45,98,97,114,45,101,100,103,101,34,41,44,116,104,105,115,46,36,99,97,99,104,101,46,115,95,115,105,110,103,108,101,61,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,102,105,110,100,40,34,46,115,105,110,103,108,101,34,41,44,116,104,105,115,46,36,99,97,99,104,101,46,102,114,111,109,91,48,93,46,115,116,121,108,101,46,118,105,115,105,98,105,108,105,116,121,61,34,104,105,100,100,101,110,34,44,116,104,105,115,46,36,99,97,99,104,101,46,116,111,91,48,93,46,115,116,121,108,101,46,118,105,115,105,98,105,108,105,116,121,61,34,104,105,100,100,101,110,34,44,116,104,105,115,46,36,99,97,99,104,101,46,115,104,97,100,95,115,105,110,103,108,101,61,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,102,105,110,100,40,34,46,115,104,97,100,111,119,45,115,105,110,103,108,101,34,41,41,58,40,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,97,112,112,101,110,100,40,39,60,115,112,97,110,32,99,108,97,115,115,61,34,105,114,115,45,115,104,97,100,111,119,32,115,104,97,100,111,119,45,102,114,111,109,34,62,60,47,115,112,97,110,62,60,115,112,97,110,32,99,108,97,115,115,61,34,105,114,115,45,115,104,97,100,111,119,32,115,104,97,100,111,119,45,116,111,34,62,60,47,115,112,97,110,62,60,115,112,97,110,32,99,108,97,115,115,61,34,105,114,115,45,115,108,105,100,101,114,32,102,114,111,109,34,62,60,47,115,112,97,110,62,60,115,112,97,110,32,99,108,97,115,115,61,34,105,114,115,45,115,108,105,100,101,114,32,116,111,34,62,60,47,115,112,97,110,62,39,41,44,116,104,105,115,46,36,99,97,99,104,101,46,115,95,102,114,111,109,61,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,102,105,110,100,40,34,46,102,114,111,109,34,41,44,10,116,104,105,115,46,36,99,97,99,104,101,46,115,95,116,111,61,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,102,105,110,100,40,34,46,116,111,34,41,44,116,104,105,115,46,36,99,97,99,104,101,46,115,104,97,100,95,102,114,111,109,61,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,102,105,110,100,40,34,46,115,104,97,100,111,119,45,102,114,111,109,34,41,44,116,104,105,115,46,36,99,97,99,104,101,46,115,104,97,100,95,116,111,61,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,102,105,110,100,40,34,46,115,104,97,100,111,119,45,116,111,34,41,44,116,104,105,115,46,115,101,116,84,111,112,72,97,110,100,108,101,114,40,41,41,59,116,104,105,115,46,111,112,116,105,111,110,115,46,104,105,100,101,95,102,114,111,109,95,116,111,38,38,40,116,104,105,115,46,36,99,97,99,104,101,46,102,114,111,109,91,48,93,46,115,116,121,108,101,46,100,105,115,112,108,97,121,61,34,110,111,110,101,34,44,116,104,105,115,46,36,99,97,99,104,101,46,116,111,91,48,93,46,115,116,121,108,101,46,100,105,115,112,108,97,121,61,34,110,111,110,101,34,44,116,104,105,115,46,36,99,97,99,104,101,46,115,105,110,103,108,101,91,48,93,46,115,116,121,108,101,46,100,105,115,112,108,97,121,61,34,110,111,110,101,34,41,59,116,104,105,115,46,97,112,112,101,110,100,71,114,105,100,40,41,59,116,104,105,115,46,111,112,116,105,111,110,115,46,100,105,115,97,98,108,101,63,40,116,104,105,115,46,97,112,112,101,110,100,68,105,115,97,98,108,101,77,97,115,107,40,41,44,116,104,105,115,46,36,99,97,99,104,101,46,105,110,112,117,116,91,48,93,46,100,105,115,97,98,108,101,100,61,33,48,41,58,40,116,104,105,115,46,36,99,97,99,104,101,46,105,110,112,117,116,91,48,93,46,100,105,115,97,98,108,101,100,61,33,49,44,116,104,105,115,46,114,101,109,111,118,101,68,105,115,97,98,108,101,77,97,115,107,40,41,44,116,104,105,115,46,98,105,110,100,69,118,101,110,116,115,40,41,41,59,10,116,104,105,115,46,111,112,116,105,111,110,115,46,100,105,115,97,98,108,101,124,124,40,116,104,105,115,46,111,112,116,105,111,110,115,46,98,108,111,99,107,63,116,104,105,115,46,97,112,112,101,110,100,68,105,115,97,98,108,101,77,97,115,107,40,41,58,116,104,105,115,46,114,101,109,111,118,101,68,105,115,97,98,108,101,77,97,115,107,40,41,41,59,116,104,105,115,46,111,112,116,105,111,110,115,46,100,114,97,103,95,105,110,116,101,114,118,97,108,38,38,40,116,104,105,115,46,36,99,97,99,104,101,46,98,97,114,91,48,93,46,115,116,121,108,101,46,99,117,114,115,111,114,61,34,109,111,118,101,34,41,125,44,115,101,116,84,111,112,72,97,110,100,108,101,114,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,97,61,116,104,105,115,46,111,112,116,105,111,110,115,46,109,97,120,44,98,61,116,104,105,115,46,111,112,116,105,111,110,115,46,116,111,59,116,104,105,115,46,111,112,116,105,111,110,115,46,102,114,111,109,62,116,104,105,115,46,111,112,116,105,111,110,115,46,109,105,110,38,38,98,61,61,61,97,63,116,104,105,115,46,36,99,97,99,104,101,46,115,95,102,114,111,109,46,97,100,100,67,108,97,115,115,40,34,116,121,112,101,95,108,97,115,116,34,41,58,98,60,97,38,38,116,104,105,115,46,36,99,97,99,104,101,46,115,95,116,111,46,97,100,100,67,108,97,115,115,40,34,116,121,112,101,95,108,97,115,116,34,41,125,44,99,104,97,110,103,101,76,101,118,101,108,58,102,117,110,99,116,105,111,110,40,97,41,123,115,119,105,116,99,104,40,97,41,123,99,97,115,101,32,34,115,105,110,103,108,101,34,58,116,104,105,115,46,99,111,111,114,100,115,46,112,95,103,97,112,61,116,104,105,115,46,116,111,70,105,120,101,100,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,112,111,105,110,116,101,114,45,116,104,105,115,46,99,111,111,114,100,115,46,112,95,115,105,110,103,108,101,95,102,97,107,101,41,59,116,104,105,115,46,36,99,97,99,104,101,46,115,95,115,105,110,103,108,101,46,97,100,100,67,108,97,115,115,40,34,115,116,97,116,101,95,104,111,118,101,114,34,41,59,10,98,114,101,97,107,59,99,97,115,101,32,34,102,114,111,109,34,58,116,104,105,115,46,99,111,111,114,100,115,46,112,95,103,97,112,61,116,104,105,115,46,116,111,70,105,120,101,100,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,112,111,105,110,116,101,114,45,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,102,97,107,101,41,59,116,104,105,115,46,36,99,97,99,104,101,46,115,95,102,114,111,109,46,97,100,100,67,108,97,115,115,40,34,115,116,97,116,101,95,104,111,118,101,114,34,41,59,116,104,105,115,46,36,99,97,99,104,101,46,115,95,102,114,111,109,46,97,100,100,67,108,97,115,115,40,34,116,121,112,101,95,108,97,115,116,34,41,59,116,104,105,115,46,36,99,97,99,104,101,46,115,95,116,111,46,114,101,109,111,118,101,67,108,97,115,115,40,34,116,121,112,101,95,108,97,115,116,34,41,59,98,114,101,97,107,59,99,97,115,101,32,34,116,111,34,58,116,104,105,115,46,99,111,111,114,100,115,46,112,95,103,97,112,61,116,104,105,115,46,116,111,70,105,120,101,100,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,112,111,105,110,116,101,114,45,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,102,97,107,101,41,59,116,104,105,115,46,36,99,97,99,104,101,46,115,95,116,111,46,97,100,100,67,108,97,115,115,40,34,115,116,97,116,101,95,104,111,118,101,114,34,41,59,116,104,105,115,46,36,99,97,99,104,101,46,115,95,116,111,46,97,100,100,67,108,97,115,115,40,34,116,121,112,101,95,108,97,115,116,34,41,59,116,104,105,115,46,36,99,97,99,104,101,46,115,95,102,114,111,109,46,114,101,109,111,118,101,67,108,97,115,115,40,34,116,121,112,101,95,108,97,115,116,34,41,59,98,114,101,97,107,59,99,97,115,101,32,34,98,111,116,104,34,58,116,104,105,115,46,99,111,111,114,100,115,46,112,95,103,97,112,95,108,101,102,116,61,116,104,105,115,46,116,111,70,105,120,101,100,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,112,111,105,110,116,101,114,45,10,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,102,97,107,101,41,44,116,104,105,115,46,99,111,111,114,100,115,46,112,95,103,97,112,95,114,105,103,104,116,61,116,104,105,115,46,116,111,70,105,120,101,100,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,102,97,107,101,45,116,104,105,115,46,99,111,111,114,100,115,46,112,95,112,111,105,110,116,101,114,41,44,116,104,105,115,46,36,99,97,99,104,101,46,115,95,116,111,46,114,101,109,111,118,101,67,108,97,115,115,40,34,116,121,112,101,95,108,97,115,116,34,41,44,116,104,105,115,46,36,99,97,99,104,101,46,115,95,102,114,111,109,46,114,101,109,111,118,101,67,108,97,115,115,40,34,116,121,112,101,95,108,97,115,116,34,41,125,125,44,97,112,112,101,110,100,68,105,115,97,98,108,101,77,97,115,107,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,97,112,112,101,110,100,40,39,60,115,112,97,110,32,99,108,97,115,115,61,34,105,114,115,45,100,105,115,97,98,108,101,45,109,97,115,107,34,62,60,47,115,112,97,110,62,39,41,59,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,97,100,100,67,108,97,115,115,40,34,105,114,115,45,100,105,115,97,98,108,101,100,34,41,125,44,114,101,109,111,118,101,68,105,115,97,98,108,101,77,97,115,107,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,114,101,109,111,118,101,40,34,46,105,114,115,45,100,105,115,97,98,108,101,45,109,97,115,107,34,41,59,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,114,101,109,111,118,101,67,108,97,115,115,40,34,105,114,115,45,100,105,115,97,98,108,101,100,34,41,125,44,114,101,109,111,118,101,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,114,101,109,111,118,101,40,41,59,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,61,10,110,117,108,108,59,116,104,105,115,46,36,99,97,99,104,101,46,108,105,110,101,46,111,102,102,40,34,107,101,121,100,111,119,110,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,41,59,116,104,105,115,46,36,99,97,99,104,101,46,98,111,100,121,46,111,102,102,40,34,116,111,117,99,104,109,111,118,101,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,41,59,116,104,105,115,46,36,99,97,99,104,101,46,98,111,100,121,46,111,102,102,40,34,109,111,117,115,101,109,111,118,101,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,41,59,116,104,105,115,46,36,99,97,99,104,101,46,119,105,110,46,111,102,102,40,34,116,111,117,99,104,101,110,100,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,41,59,116,104,105,115,46,36,99,97,99,104,101,46,119,105,110,46,111,102,102,40,34,109,111,117,115,101,117,112,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,41,59,109,38,38,40,116,104,105,115,46,36,99,97,99,104,101,46,98,111,100,121,46,111,102,102,40,34,109,111,117,115,101,117,112,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,41,44,116,104,105,115,46,36,99,97,99,104,101,46,98,111,100,121,46,111,102,102,40,34,109,111,117,115,101,108,101,97,118,101,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,41,41,59,116,104,105,115,46,36,99,97,99,104,101,46,103,114,105,100,95,108,97,98,101,108,115,61,91,93,59,116,104,105,115,46,99,111,111,114,100,115,46,98,105,103,61,91,93,59,116,104,105,115,46,99,111,111,114,100,115,46,98,105,103,95,119,61,91,93,59,116,104,105,115,46,99,111,111,114,100,115,46,98,105,103,95,112,61,91,93,59,116,104,105,115,46,99,111,111,114,100,115,46,98,105,103,95,120,61,10,91,93,59,99,97,110,99,101,108,65,110,105,109,97,116,105,111,110,70,114,97,109,101,40,116,104,105,115,46,114,97,102,95,105,100,41,125,44,98,105,110,100,69,118,101,110,116,115,58,102,117,110,99,116,105,111,110,40,41,123,105,102,40,33,116,104,105,115,46,110,111,95,100,105,97,112,97,115,111,110,41,123,116,104,105,115,46,36,99,97,99,104,101,46,98,111,100,121,46,111,110,40,34,116,111,117,99,104,109,111,118,101,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,77,111,118,101,46,98,105,110,100,40,116,104,105,115,41,41,59,116,104,105,115,46,36,99,97,99,104,101,46,98,111,100,121,46,111,110,40,34,109,111,117,115,101,109,111,118,101,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,77,111,118,101,46,98,105,110,100,40,116,104,105,115,41,41,59,116,104,105,115,46,36,99,97,99,104,101,46,119,105,110,46,111,110,40,34,116,111,117,99,104,101,110,100,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,85,112,46,98,105,110,100,40,116,104,105,115,41,41,59,116,104,105,115,46,36,99,97,99,104,101,46,119,105,110,46,111,110,40,34,109,111,117,115,101,117,112,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,85,112,46,98,105,110,100,40,116,104,105,115,41,41,59,116,104,105,115,46,36,99,97,99,104,101,46,108,105,110,101,46,111,110,40,34,116,111,117,99,104,115,116,97,114,116,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,67,108,105,99,107,46,98,105,110,100,40,116,104,105,115,44,34,99,108,105,99,107,34,41,41,59,10,116,104,105,115,46,36,99,97,99,104,101,46,108,105,110,101,46,111,110,40,34,109,111,117,115,101,100,111,119,110,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,67,108,105,99,107,46,98,105,110,100,40,116,104,105,115,44,34,99,108,105,99,107,34,41,41,59,116,104,105,115,46,36,99,97,99,104,101,46,108,105,110,101,46,111,110,40,34,102,111,99,117,115,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,70,111,99,117,115,46,98,105,110,100,40,116,104,105,115,41,41,59,116,104,105,115,46,111,112,116,105,111,110,115,46,100,114,97,103,95,105,110,116,101,114,118,97,108,38,38,34,100,111,117,98,108,101,34,61,61,61,116,104,105,115,46,111,112,116,105,111,110,115,46,116,121,112,101,63,40,116,104,105,115,46,36,99,97,99,104,101,46,98,97,114,46,111,110,40,34,116,111,117,99,104,115,116,97,114,116,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,68,111,119,110,46,98,105,110,100,40,116,104,105,115,44,34,98,111,116,104,34,41,41,44,116,104,105,115,46,36,99,97,99,104,101,46,98,97,114,46,111,110,40,34,109,111,117,115,101,100,111,119,110,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,68,111,119,110,46,98,105,110,100,40,116,104,105,115,44,34,98,111,116,104,34,41,41,41,58,40,116,104,105,115,46,36,99,97,99,104,101,46,98,97,114,46,111,110,40,34,116,111,117,99,104,115,116,97,114,116,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,67,108,105,99,107,46,98,105,110,100,40,116,104,105,115,44,34,99,108,105,99,107,34,41,41,44,10,116,104,105,115,46,36,99,97,99,104,101,46,98,97,114,46,111,110,40,34,109,111,117,115,101,100,111,119,110,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,67,108,105,99,107,46,98,105,110,100,40,116,104,105,115,44,34,99,108,105,99,107,34,41,41,41,59,34,115,105,110,103,108,101,34,61,61,61,116,104,105,115,46,111,112,116,105,111,110,115,46,116,121,112,101,63,40,116,104,105,115,46,36,99,97,99,104,101,46,115,105,110,103,108,101,46,111,110,40,34,116,111,117,99,104,115,116,97,114,116,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,68,111,119,110,46,98,105,110,100,40,116,104,105,115,44,34,115,105,110,103,108,101,34,41,41,44,116,104,105,115,46,36,99,97,99,104,101,46,115,95,115,105,110,103,108,101,46,111,110,40,34,116,111,117,99,104,115,116,97,114,116,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,68,111,119,110,46,98,105,110,100,40,116,104,105,115,44,34,115,105,110,103,108,101,34,41,41,44,116,104,105,115,46,36,99,97,99,104,101,46,115,104,97,100,95,115,105,110,103,108,101,46,111,110,40,34,116,111,117,99,104,115,116,97,114,116,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,67,108,105,99,107,46,98,105,110,100,40,116,104,105,115,44,34,99,108,105,99,107,34,41,41,44,116,104,105,115,46,36,99,97,99,104,101,46,115,105,110,103,108,101,46,111,110,40,34,109,111,117,115,101,100,111,119,110,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,68,111,119,110,46,98,105,110,100,40,116,104,105,115,44,10,34,115,105,110,103,108,101,34,41,41,44,116,104,105,115,46,36,99,97,99,104,101,46,115,95,115,105,110,103,108,101,46,111,110,40,34,109,111,117,115,101,100,111,119,110,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,68,111,119,110,46,98,105,110,100,40,116,104,105,115,44,34,115,105,110,103,108,101,34,41,41,44,116,104,105,115,46,36,99,97,99,104,101,46,101,100,103,101,46,111,110,40,34,109,111,117,115,101,100,111,119,110,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,67,108,105,99,107,46,98,105,110,100,40,116,104,105,115,44,34,99,108,105,99,107,34,41,41,44,116,104,105,115,46,36,99,97,99,104,101,46,115,104,97,100,95,115,105,110,103,108,101,46,111,110,40,34,109,111,117,115,101,100,111,119,110,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,67,108,105,99,107,46,98,105,110,100,40,116,104,105,115,44,34,99,108,105,99,107,34,41,41,41,58,40,116,104,105,115,46,36,99,97,99,104,101,46,115,105,110,103,108,101,46,111,110,40,34,116,111,117,99,104,115,116,97,114,116,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,68,111,119,110,46,98,105,110,100,40,116,104,105,115,44,110,117,108,108,41,41,44,116,104,105,115,46,36,99,97,99,104,101,46,115,105,110,103,108,101,46,111,110,40,34,109,111,117,115,101,100,111,119,110,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,68,111,119,110,46,98,105,110,100,40,116,104,105,115,44,110,117,108,108,41,41,44,116,104,105,115,46,36,99,97,99,104,101,46,102,114,111,109,46,111,110,40,34,116,111,117,99,104,115,116,97,114,116,46,105,114,115,95,34,43,10,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,68,111,119,110,46,98,105,110,100,40,116,104,105,115,44,34,102,114,111,109,34,41,41,44,116,104,105,115,46,36,99,97,99,104,101,46,115,95,102,114,111,109,46,111,110,40,34,116,111,117,99,104,115,116,97,114,116,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,68,111,119,110,46,98,105,110,100,40,116,104,105,115,44,34,102,114,111,109,34,41,41,44,116,104,105,115,46,36,99,97,99,104,101,46,116,111,46,111,110,40,34,116,111,117,99,104,115,116,97,114,116,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,68,111,119,110,46,98,105,110,100,40,116,104,105,115,44,34,116,111,34,41,41,44,116,104,105,115,46,36,99,97,99,104,101,46,115,95,116,111,46,111,110,40,34,116,111,117,99,104,115,116,97,114,116,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,68,111,119,110,46,98,105,110,100,40,116,104,105,115,44,34,116,111,34,41,41,44,116,104,105,115,46,36,99,97,99,104,101,46,115,104,97,100,95,102,114,111,109,46,111,110,40,34,116,111,117,99,104,115,116,97,114,116,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,67,108,105,99,107,46,98,105,110,100,40,116,104,105,115,44,34,99,108,105,99,107,34,41,41,44,116,104,105,115,46,36,99,97,99,104,101,46,115,104,97,100,95,116,111,46,111,110,40,34,116,111,117,99,104,115,116,97,114,116,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,67,108,105,99,107,46,98,105,110,100,40,116,104,105,115,44,10,34,99,108,105,99,107,34,41,41,44,116,104,105,115,46,36,99,97,99,104,101,46,102,114,111,109,46,111,110,40,34,109,111,117,115,101,100,111,119,110,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,68,111,119,110,46,98,105,110,100,40,116,104,105,115,44,34,102,114,111,109,34,41,41,44,116,104,105,115,46,36,99,97,99,104,101,46,115,95,102,114,111,109,46,111,110,40,34,109,111,117,115,101,100,111,119,110,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,68,111,119,110,46,98,105,110,100,40,116,104,105,115,44,34,102,114,111,109,34,41,41,44,116,104,105,115,46,36,99,97,99,104,101,46,116,111,46,111,110,40,34,109,111,117,115,101,100,111,119,110,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,68,111,119,110,46,98,105,110,100,40,116,104,105,115,44,34,116,111,34,41,41,44,116,104,105,115,46,36,99,97,99,104,101,46,115,95,116,111,46,111,110,40,34,109,111,117,115,101,100,111,119,110,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,68,111,119,110,46,98,105,110,100,40,116,104,105,115,44,34,116,111,34,41,41,44,116,104,105,115,46,36,99,97,99,104,101,46,115,104,97,100,95,102,114,111,109,46,111,110,40,34,109,111,117,115,101,100,111,119,110,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,67,108,105,99,107,46,98,105,110,100,40,116,104,105,115,44,34,99,108,105,99,107,34,41,41,44,116,104,105,115,46,36,99,97,99,104,101,46,115,104,97,100,95,116,111,46,111,110,40,34,109,111,117,115,101,100,111,119,110,46,105,114,115,95,34,43,10,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,67,108,105,99,107,46,98,105,110,100,40,116,104,105,115,44,34,99,108,105,99,107,34,41,41,41,59,105,102,40,116,104,105,115,46,111,112,116,105,111,110,115,46,107,101,121,98,111,97,114,100,41,116,104,105,115,46,36,99,97,99,104,101,46,108,105,110,101,46,111,110,40,34,107,101,121,100,111,119,110,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,107,101,121,46,98,105,110,100,40,116,104,105,115,44,34,107,101,121,98,111,97,114,100,34,41,41,59,109,38,38,40,116,104,105,115,46,36,99,97,99,104,101,46,98,111,100,121,46,111,110,40,34,109,111,117,115,101,117,112,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,85,112,46,98,105,110,100,40,116,104,105,115,41,41,44,116,104,105,115,46,36,99,97,99,104,101,46,98,111,100,121,46,111,110,40,34,109,111,117,115,101,108,101,97,118,101,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,85,112,46,98,105,110,100,40,116,104,105,115,41,41,41,125,125,44,112,111,105,110,116,101,114,70,111,99,117,115,58,102,117,110,99,116,105,111,110,40,97,41,123,105,102,40,33,116,104,105,115,46,116,97,114,103,101,116,41,123,118,97,114,32,98,61,34,115,105,110,103,108,101,34,61,61,61,116,104,105,115,46,111,112,116,105,111,110,115,46,116,121,112,101,63,116,104,105,115,46,36,99,97,99,104,101,46,115,105,110,103,108,101,58,116,104,105,115,46,36,99,97,99,104,101,46,102,114,111,109,59,97,61,98,46,111,102,102,115,101,116,40,41,46,108,101,102,116,59,97,43,61,98,46,119,105,100,116,104,40,41,47,50,45,49,59,116,104,105,115,46,112,111,105,110,116,101,114,67,108,105,99,107,40,34,115,105,110,103,108,101,34,44,10,123,112,114,101,118,101,110,116,68,101,102,97,117,108,116,58,102,117,110,99,116,105,111,110,40,41,123,125,44,112,97,103,101,88,58,97,125,41,125,125,44,112,111,105,110,116,101,114,77,111,118,101,58,102,117,110,99,116,105,111,110,40,97,41,123,116,104,105,115,46,100,114,97,103,103,105,110,103,38,38,40,116,104,105,115,46,99,111,111,114,100,115,46,120,95,112,111,105,110,116,101,114,61,40,97,46,112,97,103,101,88,124,124,97,46,111,114,105,103,105,110,97,108,69,118,101,110,116,46,116,111,117,99,104,101,115,38,38,97,46,111,114,105,103,105,110,97,108,69,118,101,110,116,46,116,111,117,99,104,101,115,91,48,93,46,112,97,103,101,88,41,45,116,104,105,115,46,99,111,111,114,100,115,46,120,95,103,97,112,44,116,104,105,115,46,99,97,108,99,40,41,41,125,44,112,111,105,110,116,101,114,85,112,58,102,117,110,99,116,105,111,110,40,97,41,123,116,104,105,115,46,99,117,114,114,101,110,116,95,112,108,117,103,105,110,61,61,61,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,38,38,116,104,105,115,46,105,115,95,97,99,116,105,118,101,38,38,40,116,104,105,115,46,105,115,95,97,99,116,105,118,101,61,33,49,44,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,102,105,110,100,40,34,46,115,116,97,116,101,95,104,111,118,101,114,34,41,46,114,101,109,111,118,101,67,108,97,115,115,40,34,115,116,97,116,101,95,104,111,118,101,114,34,41,44,116,104,105,115,46,102,111,114,99,101,95,114,101,100,114,97,119,61,33,48,44,109,38,38,102,40,34,42,34,41,46,112,114,111,112,40,34,117,110,115,101,108,101,99,116,97,98,108,101,34,44,33,49,41,44,116,104,105,115,46,117,112,100,97,116,101,83,99,101,110,101,40,41,44,116,104,105,115,46,114,101,115,116,111,114,101,79,114,105,103,105,110,97,108,77,105,110,73,110,116,101,114,118,97,108,40,41,44,40,102,46,99,111,110,116,97,105,110,115,40,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,91,48,93,44,10,97,46,116,97,114,103,101,116,41,124,124,116,104,105,115,46,100,114,97,103,103,105,110,103,41,38,38,116,104,105,115,46,99,97,108,108,79,110,70,105,110,105,115,104,40,41,44,116,104,105,115,46,100,114,97,103,103,105,110,103,61,33,49,41,125,44,112,111,105,110,116,101,114,68,111,119,110,58,102,117,110,99,116,105,111,110,40,97,44,98,41,123,98,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,59,118,97,114,32,100,61,98,46,112,97,103,101,88,124,124,98,46,111,114,105,103,105,110,97,108,69,118,101,110,116,46,116,111,117,99,104,101,115,38,38,98,46,111,114,105,103,105,110,97,108,69,118,101,110,116,46,116,111,117,99,104,101,115,91,48,93,46,112,97,103,101,88,59,50,33,61,61,98,46,98,117,116,116,111,110,38,38,40,34,98,111,116,104,34,61,61,61,97,38,38,116,104,105,115,46,115,101,116,84,101,109,112,77,105,110,73,110,116,101,114,118,97,108,40,41,44,97,124,124,40,97,61,116,104,105,115,46,116,97,114,103,101,116,124,124,34,102,114,111,109,34,41,44,116,104,105,115,46,99,117,114,114,101,110,116,95,112,108,117,103,105,110,61,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,116,97,114,103,101,116,61,97,44,116,104,105,115,46,100,114,97,103,103,105,110,103,61,116,104,105,115,46,105,115,95,97,99,116,105,118,101,61,33,48,44,116,104,105,115,46,99,111,111,114,100,115,46,120,95,103,97,112,61,116,104,105,115,46,36,99,97,99,104,101,46,114,115,46,111,102,102,115,101,116,40,41,46,108,101,102,116,44,116,104,105,115,46,99,111,111,114,100,115,46,120,95,112,111,105,110,116,101,114,61,100,45,116,104,105,115,46,99,111,111,114,100,115,46,120,95,103,97,112,44,116,104,105,115,46,99,97,108,99,80,111,105,110,116,101,114,80,101,114,99,101,110,116,40,41,44,116,104,105,115,46,99,104,97,110,103,101,76,101,118,101,108,40,97,41,44,109,38,38,102,40,34,42,34,41,46,112,114,111,112,40,34,117,110,115,101,108,101,99,116,97,98,108,101,34,44,10,33,48,41,44,116,104,105,115,46,36,99,97,99,104,101,46,108,105,110,101,46,116,114,105,103,103,101,114,40,34,102,111,99,117,115,34,41,44,116,104,105,115,46,117,112,100,97,116,101,83,99,101,110,101,40,41,41,125,44,112,111,105,110,116,101,114,67,108,105,99,107,58,102,117,110,99,116,105,111,110,40,97,44,98,41,123,98,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,59,118,97,114,32,100,61,98,46,112,97,103,101,88,124,124,98,46,111,114,105,103,105,110,97,108,69,118,101,110,116,46,116,111,117,99,104,101,115,38,38,98,46,111,114,105,103,105,110,97,108,69,118,101,110,116,46,116,111,117,99,104,101,115,91,48,93,46,112,97,103,101,88,59,50,33,61,61,98,46,98,117,116,116,111,110,38,38,40,116,104,105,115,46,99,117,114,114,101,110,116,95,112,108,117,103,105,110,61,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,116,97,114,103,101,116,61,97,44,116,104,105,115,46,105,115,95,99,108,105,99,107,61,33,48,44,116,104,105,115,46,99,111,111,114,100,115,46,120,95,103,97,112,61,116,104,105,115,46,36,99,97,99,104,101,46,114,115,46,111,102,102,115,101,116,40,41,46,108,101,102,116,44,116,104,105,115,46,99,111,111,114,100,115,46,120,95,112,111,105,110,116,101,114,61,43,40,100,45,116,104,105,115,46,99,111,111,114,100,115,46,120,95,103,97,112,41,46,116,111,70,105,120,101,100,40,41,44,116,104,105,115,46,102,111,114,99,101,95,114,101,100,114,97,119,61,33,48,44,116,104,105,115,46,99,97,108,99,40,41,44,116,104,105,115,46,36,99,97,99,104,101,46,108,105,110,101,46,116,114,105,103,103,101,114,40,34,102,111,99,117,115,34,41,41,125,44,107,101,121,58,102,117,110,99,116,105,111,110,40,97,44,98,41,123,105,102,40,33,40,116,104,105,115,46,99,117,114,114,101,110,116,95,112,108,117,103,105,110,33,61,61,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,124,124,98,46,97,108,116,75,101,121,124,124,10,98,46,99,116,114,108,75,101,121,124,124,98,46,115,104,105,102,116,75,101,121,124,124,98,46,109,101,116,97,75,101,121,41,41,123,115,119,105,116,99,104,40,98,46,119,104,105,99,104,41,123,99,97,115,101,32,56,51,58,99,97,115,101,32,54,53,58,99,97,115,101,32,52,48,58,99,97,115,101,32,51,55,58,98,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,59,116,104,105,115,46,109,111,118,101,66,121,75,101,121,40,33,49,41,59,98,114,101,97,107,59,99,97,115,101,32,56,55,58,99,97,115,101,32,54,56,58,99,97,115,101,32,51,56,58,99,97,115,101,32,51,57,58,98,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,116,104,105,115,46,109,111,118,101,66,121,75,101,121,40,33,48,41,125,114,101,116,117,114,110,33,48,125,125,44,109,111,118,101,66,121,75,101,121,58,102,117,110,99,116,105,111,110,40,97,41,123,118,97,114,32,98,61,116,104,105,115,46,99,111,111,114,100,115,46,112,95,112,111,105,110,116,101,114,44,100,61,40,116,104,105,115,46,111,112,116,105,111,110,115,46,109,97,120,45,116,104,105,115,46,111,112,116,105,111,110,115,46,109,105,110,41,47,49,48,48,44,100,61,116,104,105,115,46,111,112,116,105,111,110,115,46,115,116,101,112,47,100,59,116,104,105,115,46,99,111,111,114,100,115,46,120,95,112,111,105,110,116,101,114,61,116,104,105,115,46,116,111,70,105,120,101,100,40,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,47,49,48,48,42,40,97,63,98,43,100,58,98,45,100,41,41,59,116,104,105,115,46,105,115,95,107,101,121,61,33,48,59,116,104,105,115,46,99,97,108,99,40,41,125,44,115,101,116,77,105,110,77,97,120,58,102,117,110,99,116,105,111,110,40,41,123,105,102,40,116,104,105,115,46,111,112,116,105,111,110,115,41,105,102,40,116,104,105,115,46,111,112,116,105,111,110,115,46,104,105,100,101,95,109,105,110,95,109,97,120,41,116,104,105,115,46,36,99,97,99,104,101,46,109,105,110,91,48,93,46,115,116,121,108,101,46,100,105,115,112,108,97,121,61,10,34,110,111,110,101,34,44,116,104,105,115,46,36,99,97,99,104,101,46,109,97,120,91,48,93,46,115,116,121,108,101,46,100,105,115,112,108,97,121,61,34,110,111,110,101,34,59,101,108,115,101,123,105,102,40,116,104,105,115,46,111,112,116,105,111,110,115,46,118,97,108,117,101,115,46,108,101,110,103,116,104,41,116,104,105,115,46,36,99,97,99,104,101,46,109,105,110,46,104,116,109,108,40,116,104,105,115,46,100,101,99,111,114,97,116,101,40,116,104,105,115,46,111,112,116,105,111,110,115,46,112,95,118,97,108,117,101,115,91,116,104,105,115,46,111,112,116,105,111,110,115,46,109,105,110,93,41,41,44,116,104,105,115,46,36,99,97,99,104,101,46,109,97,120,46,104,116,109,108,40,116,104,105,115,46,100,101,99,111,114,97,116,101,40,116,104,105,115,46,111,112,116,105,111,110,115,46,112,95,118,97,108,117,101,115,91,116,104,105,115,46,111,112,116,105,111,110,115,46,109,97,120,93,41,41,59,101,108,115,101,123,118,97,114,32,97,61,116,104,105,115,46,95,112,114,101,116,116,105,102,121,40,116,104,105,115,46,111,112,116,105,111,110,115,46,109,105,110,41,44,98,61,116,104,105,115,46,95,112,114,101,116,116,105,102,121,40,116,104,105,115,46,111,112,116,105,111,110,115,46,109,97,120,41,59,116,104,105,115,46,114,101,115,117,108,116,46,109,105,110,95,112,114,101,116,116,121,61,97,59,116,104,105,115,46,114,101,115,117,108,116,46,109,97,120,95,112,114,101,116,116,121,61,98,59,116,104,105,115,46,36,99,97,99,104,101,46,109,105,110,46,104,116,109,108,40,116,104,105,115,46,100,101,99,111,114,97,116,101,40,97,44,116,104,105,115,46,111,112,116,105,111,110,115,46,109,105,110,41,41,59,116,104,105,115,46,36,99,97,99,104,101,46,109,97,120,46,104,116,109,108,40,116,104,105,115,46,100,101,99,111,114,97,116,101,40,98,44,116,104,105,115,46,111,112,116,105,111,110,115,46,109,97,120,41,41,125,116,104,105,115,46,108,97,98,101,108,115,46,119,95,109,105,110,61,116,104,105,115,46,36,99,97,99,104,101,46,109,105,110,46,111,117,116,101,114,87,105,100,116,104,40,33,49,41,59,10,116,104,105,115,46,108,97,98,101,108,115,46,119,95,109,97,120,61,116,104,105,115,46,36,99,97,99,104,101,46,109,97,120,46,111,117,116,101,114,87,105,100,116,104,40,33,49,41,125,125,44,115,101,116,84,101,109,112,77,105,110,73,110,116,101,114,118,97,108,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,97,61,116,104,105,115,46,114,101,115,117,108,116,46,116,111,45,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,59,110,117,108,108,61,61,61,116,104,105,115,46,111,108,100,95,109,105,110,95,105,110,116,101,114,118,97,108,38,38,40,116,104,105,115,46,111,108,100,95,109,105,110,95,105,110,116,101,114,118,97,108,61,116,104,105,115,46,111,112,116,105,111,110,115,46,109,105,110,95,105,110,116,101,114,118,97,108,41,59,116,104,105,115,46,111,112,116,105,111,110,115,46,109,105,110,95,105,110,116,101,114,118,97,108,61,97,125,44,114,101,115,116,111,114,101,79,114,105,103,105,110,97,108,77,105,110,73,110,116,101,114,118,97,108,58,102,117,110,99,116,105,111,110,40,41,123,110,117,108,108,33,61,61,116,104,105,115,46,111,108,100,95,109,105,110,95,105,110,116,101,114,118,97,108,38,38,40,116,104,105,115,46,111,112,116,105,111,110,115,46,109,105,110,95,105,110,116,101,114,118,97,108,61,116,104,105,115,46,111,108,100,95,109,105,110,95,105,110,116,101,114,118,97,108,44,116,104,105,115,46,111,108,100,95,109,105,110,95,105,110,116,101,114,118,97,108,61,110,117,108,108,41,125,44,99,97,108,99,58,102,117,110,99,116,105,111,110,40,97,41,123,105,102,40,116,104,105,115,46,111,112,116,105,111,110,115,41,123,116,104,105,115,46,99,97,108,99,95,99,111,117,110,116,43,43,59,105,102,40,49,48,61,61,61,116,104,105,115,46,99,97,108,99,95,99,111,117,110,116,124,124,97,41,116,104,105,115,46,99,97,108,99,95,99,111,117,110,116,61,48,44,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,61,116,104,105,115,46,36,99,97,99,104,101,46,114,115,46,111,117,116,101,114,87,105,100,116,104,40,33,49,41,44,10,116,104,105,115,46,99,97,108,99,72,97,110,100,108,101,80,101,114,99,101,110,116,40,41,59,105,102,40,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,41,123,116,104,105,115,46,99,97,108,99,80,111,105,110,116,101,114,80,101,114,99,101,110,116,40,41,59,97,61,116,104,105,115,46,103,101,116,72,97,110,100,108,101,88,40,41,59,34,98,111,116,104,34,61,61,61,116,104,105,115,46,116,97,114,103,101,116,38,38,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,103,97,112,61,48,44,97,61,116,104,105,115,46,103,101,116,72,97,110,100,108,101,88,40,41,41,59,34,99,108,105,99,107,34,61,61,61,116,104,105,115,46,116,97,114,103,101,116,38,38,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,103,97,112,61,116,104,105,115,46,99,111,111,114,100,115,46,112,95,104,97,110,100,108,101,47,50,44,97,61,116,104,105,115,46,103,101,116,72,97,110,100,108,101,88,40,41,44,116,104,105,115,46,116,97,114,103,101,116,61,116,104,105,115,46,111,112,116,105,111,110,115,46,100,114,97,103,95,105,110,116,101,114,118,97,108,63,34,98,111,116,104,95,111,110,101,34,58,116,104,105,115,46,99,104,111,111,115,101,72,97,110,100,108,101,40,97,41,41,59,115,119,105,116,99,104,40,116,104,105,115,46,116,97,114,103,101,116,41,123,99,97,115,101,32,34,98,97,115,101,34,58,118,97,114,32,98,61,40,116,104,105,115,46,111,112,116,105,111,110,115,46,109,97,120,45,116,104,105,115,46,111,112,116,105,111,110,115,46,109,105,110,41,47,49,48,48,59,97,61,40,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,45,116,104,105,115,46,111,112,116,105,111,110,115,46,109,105,110,41,47,98,59,98,61,40,116,104,105,115,46,114,101,115,117,108,116,46,116,111,45,116,104,105,115,46,111,112,116,105,111,110,115,46,109,105,110,41,47,98,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,115,105,110,103,108,101,95,114,101,97,108,61,116,104,105,115,46,116,111,70,105,120,101,100,40,97,41,59,10,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,61,116,104,105,115,46,116,111,70,105,120,101,100,40,97,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,61,116,104,105,115,46,116,111,70,105,120,101,100,40,98,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,115,105,110,103,108,101,95,114,101,97,108,61,116,104,105,115,46,99,104,101,99,107,68,105,97,112,97,115,111,110,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,115,105,110,103,108,101,95,114,101,97,108,44,116,104,105,115,46,111,112,116,105,111,110,115,46,102,114,111,109,95,109,105,110,44,116,104,105,115,46,111,112,116,105,111,110,115,46,102,114,111,109,95,109,97,120,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,61,116,104,105,115,46,99,104,101,99,107,68,105,97,112,97,115,111,110,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,44,116,104,105,115,46,111,112,116,105,111,110,115,46,102,114,111,109,95,109,105,110,44,116,104,105,115,46,111,112,116,105,111,110,115,46,102,114,111,109,95,109,97,120,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,61,116,104,105,115,46,99,104,101,99,107,68,105,97,112,97,115,111,110,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,44,116,104,105,115,46,111,112,116,105,111,110,115,46,116,111,95,109,105,110,44,116,104,105,115,46,111,112,116,105,111,110,115,46,116,111,95,109,97,120,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,115,105,110,103,108,101,95,102,97,107,101,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,70,97,107,101,80,101,114,99,101,110,116,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,115,105,110,103,108,101,95,114,101,97,108,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,102,97,107,101,61,10,116,104,105,115,46,99,111,110,118,101,114,116,84,111,70,97,107,101,80,101,114,99,101,110,116,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,102,97,107,101,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,70,97,107,101,80,101,114,99,101,110,116,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,41,59,116,104,105,115,46,116,97,114,103,101,116,61,110,117,108,108,59,98,114,101,97,107,59,99,97,115,101,32,34,115,105,110,103,108,101,34,58,105,102,40,116,104,105,115,46,111,112,116,105,111,110,115,46,102,114,111,109,95,102,105,120,101,100,41,98,114,101,97,107,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,115,105,110,103,108,101,95,114,101,97,108,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,82,101,97,108,80,101,114,99,101,110,116,40,97,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,115,105,110,103,108,101,95,114,101,97,108,61,116,104,105,115,46,99,97,108,99,87,105,116,104,83,116,101,112,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,115,105,110,103,108,101,95,114,101,97,108,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,115,105,110,103,108,101,95,114,101,97,108,61,116,104,105,115,46,99,104,101,99,107,68,105,97,112,97,115,111,110,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,115,105,110,103,108,101,95,114,101,97,108,44,116,104,105,115,46,111,112,116,105,111,110,115,46,102,114,111,109,95,109,105,110,44,116,104,105,115,46,111,112,116,105,111,110,115,46,102,114,111,109,95,109,97,120,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,115,105,110,103,108,101,95,102,97,107,101,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,70,97,107,101,80,101,114,99,101,110,116,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,115,105,110,103,108,101,95,114,101,97,108,41,59,10,98,114,101,97,107,59,99,97,115,101,32,34,102,114,111,109,34,58,105,102,40,116,104,105,115,46,111,112,116,105,111,110,115,46,102,114,111,109,95,102,105,120,101,100,41,98,114,101,97,107,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,82,101,97,108,80,101,114,99,101,110,116,40,97,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,61,116,104,105,115,46,99,97,108,99,87,105,116,104,83,116,101,112,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,62,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,38,38,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,61,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,61,116,104,105,115,46,99,104,101,99,107,68,105,97,112,97,115,111,110,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,44,116,104,105,115,46,111,112,116,105,111,110,115,46,102,114,111,109,95,109,105,110,44,116,104,105,115,46,111,112,116,105,111,110,115,46,102,114,111,109,95,109,97,120,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,61,116,104,105,115,46,99,104,101,99,107,77,105,110,73,110,116,101,114,118,97,108,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,44,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,44,34,102,114,111,109,34,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,61,10,116,104,105,115,46,99,104,101,99,107,77,97,120,73,110,116,101,114,118,97,108,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,44,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,44,34,102,114,111,109,34,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,102,97,107,101,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,70,97,107,101,80,101,114,99,101,110,116,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,41,59,98,114,101,97,107,59,99,97,115,101,32,34,116,111,34,58,105,102,40,116,104,105,115,46,111,112,116,105,111,110,115,46,116,111,95,102,105,120,101,100,41,98,114,101,97,107,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,82,101,97,108,80,101,114,99,101,110,116,40,97,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,61,116,104,105,115,46,99,97,108,99,87,105,116,104,83,116,101,112,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,60,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,38,38,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,61,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,61,116,104,105,115,46,99,104,101,99,107,68,105,97,112,97,115,111,110,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,44,116,104,105,115,46,111,112,116,105,111,110,115,46,116,111,95,109,105,110,44,116,104,105,115,46,111,112,116,105,111,110,115,46,116,111,95,109,97,120,41,59,10,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,61,116,104,105,115,46,99,104,101,99,107,77,105,110,73,110,116,101,114,118,97,108,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,44,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,44,34,116,111,34,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,61,116,104,105,115,46,99,104,101,99,107,77,97,120,73,110,116,101,114,118,97,108,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,44,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,44,34,116,111,34,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,102,97,107,101,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,70,97,107,101,80,101,114,99,101,110,116,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,41,59,98,114,101,97,107,59,99,97,115,101,32,34,98,111,116,104,34,58,105,102,40,116,104,105,115,46,111,112,116,105,111,110,115,46,102,114,111,109,95,102,105,120,101,100,124,124,116,104,105,115,46,111,112,116,105,111,110,115,46,116,111,95,102,105,120,101,100,41,98,114,101,97,107,59,97,61,116,104,105,115,46,116,111,70,105,120,101,100,40,97,43,46,48,48,49,42,116,104,105,115,46,99,111,111,114,100,115,46,112,95,104,97,110,100,108,101,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,82,101,97,108,80,101,114,99,101,110,116,40,97,41,45,116,104,105,115,46,99,111,111,114,100,115,46,112,95,103,97,112,95,108,101,102,116,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,61,116,104,105,115,46,99,97,108,99,87,105,116,104,83,116,101,112,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,41,59,10,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,61,116,104,105,115,46,99,104,101,99,107,68,105,97,112,97,115,111,110,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,44,116,104,105,115,46,111,112,116,105,111,110,115,46,102,114,111,109,95,109,105,110,44,116,104,105,115,46,111,112,116,105,111,110,115,46,102,114,111,109,95,109,97,120,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,61,116,104,105,115,46,99,104,101,99,107,77,105,110,73,110,116,101,114,118,97,108,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,44,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,44,34,102,114,111,109,34,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,102,97,107,101,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,70,97,107,101,80,101,114,99,101,110,116,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,82,101,97,108,80,101,114,99,101,110,116,40,97,41,43,116,104,105,115,46,99,111,111,114,100,115,46,112,95,103,97,112,95,114,105,103,104,116,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,61,116,104,105,115,46,99,97,108,99,87,105,116,104,83,116,101,112,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,61,116,104,105,115,46,99,104,101,99,107,68,105,97,112,97,115,111,110,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,44,116,104,105,115,46,111,112,116,105,111,110,115,46,116,111,95,109,105,110,44,10,116,104,105,115,46,111,112,116,105,111,110,115,46,116,111,95,109,97,120,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,61,116,104,105,115,46,99,104,101,99,107,77,105,110,73,110,116,101,114,118,97,108,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,44,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,44,34,116,111,34,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,102,97,107,101,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,70,97,107,101,80,101,114,99,101,110,116,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,41,59,98,114,101,97,107,59,99,97,115,101,32,34,98,111,116,104,95,111,110,101,34,58,105,102,40,33,116,104,105,115,46,111,112,116,105,111,110,115,46,102,114,111,109,95,102,105,120,101,100,38,38,33,116,104,105,115,46,111,112,116,105,111,110,115,46,116,111,95,102,105,120,101,100,41,123,118,97,114,32,100,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,82,101,97,108,80,101,114,99,101,110,116,40,97,41,59,97,61,116,104,105,115,46,114,101,115,117,108,116,46,116,111,95,112,101,114,99,101,110,116,45,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,95,112,101,114,99,101,110,116,59,118,97,114,32,99,61,97,47,50,44,98,61,100,45,99,44,100,61,100,43,99,59,48,62,98,38,38,40,98,61,48,44,100,61,98,43,97,41,59,49,48,48,60,100,38,38,40,100,61,49,48,48,44,98,61,100,45,97,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,61,116,104,105,115,46,99,97,108,99,87,105,116,104,83,116,101,112,40,98,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,61,116,104,105,115,46,99,104,101,99,107,68,105,97,112,97,115,111,110,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,44,10,116,104,105,115,46,111,112,116,105,111,110,115,46,102,114,111,109,95,109,105,110,44,116,104,105,115,46,111,112,116,105,111,110,115,46,102,114,111,109,95,109,97,120,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,102,97,107,101,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,70,97,107,101,80,101,114,99,101,110,116,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,61,116,104,105,115,46,99,97,108,99,87,105,116,104,83,116,101,112,40,100,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,61,116,104,105,115,46,99,104,101,99,107,68,105,97,112,97,115,111,110,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,44,116,104,105,115,46,111,112,116,105,111,110,115,46,116,111,95,109,105,110,44,116,104,105,115,46,111,112,116,105,111,110,115,46,116,111,95,109,97,120,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,102,97,107,101,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,70,97,107,101,80,101,114,99,101,110,116,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,41,125,125,34,115,105,110,103,108,101,34,61,61,61,116,104,105,115,46,111,112,116,105,111,110,115,46,116,121,112,101,63,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,98,97,114,95,120,61,116,104,105,115,46,99,111,111,114,100,115,46,112,95,104,97,110,100,108,101,47,50,44,116,104,105,115,46,99,111,111,114,100,115,46,112,95,98,97,114,95,119,61,116,104,105,115,46,99,111,111,114,100,115,46,112,95,115,105,110,103,108,101,95,102,97,107,101,44,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,95,112,101,114,99,101,110,116,61,116,104,105,115,46,99,111,111,114,100,115,46,112,95,115,105,110,103,108,101,95,114,101,97,108,44,10,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,86,97,108,117,101,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,115,105,110,103,108,101,95,114,101,97,108,41,44,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,95,112,114,101,116,116,121,61,116,104,105,115,46,95,112,114,101,116,116,105,102,121,40,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,41,44,116,104,105,115,46,111,112,116,105,111,110,115,46,118,97,108,117,101,115,46,108,101,110,103,116,104,38,38,40,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,95,118,97,108,117,101,61,116,104,105,115,46,111,112,116,105,111,110,115,46,118,97,108,117,101,115,91,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,93,41,41,58,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,98,97,114,95,120,61,116,104,105,115,46,116,111,70,105,120,101,100,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,102,97,107,101,43,116,104,105,115,46,99,111,111,114,100,115,46,112,95,104,97,110,100,108,101,47,50,41,44,116,104,105,115,46,99,111,111,114,100,115,46,112,95,98,97,114,95,119,61,116,104,105,115,46,116,111,70,105,120,101,100,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,102,97,107,101,45,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,102,97,107,101,41,44,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,95,112,101,114,99,101,110,116,61,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,44,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,86,97,108,117,101,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,41,44,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,95,112,114,101,116,116,121,61,10,116,104,105,115,46,95,112,114,101,116,116,105,102,121,40,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,41,44,116,104,105,115,46,114,101,115,117,108,116,46,116,111,95,112,101,114,99,101,110,116,61,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,44,116,104,105,115,46,114,101,115,117,108,116,46,116,111,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,86,97,108,117,101,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,41,44,116,104,105,115,46,114,101,115,117,108,116,46,116,111,95,112,114,101,116,116,121,61,116,104,105,115,46,95,112,114,101,116,116,105,102,121,40,116,104,105,115,46,114,101,115,117,108,116,46,116,111,41,44,116,104,105,115,46,111,112,116,105,111,110,115,46,118,97,108,117,101,115,46,108,101,110,103,116,104,38,38,40,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,95,118,97,108,117,101,61,116,104,105,115,46,111,112,116,105,111,110,115,46,118,97,108,117,101,115,91,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,93,44,116,104,105,115,46,114,101,115,117,108,116,46,116,111,95,118,97,108,117,101,61,116,104,105,115,46,111,112,116,105,111,110,115,46,118,97,108,117,101,115,91,116,104,105,115,46,114,101,115,117,108,116,46,116,111,93,41,41,59,116,104,105,115,46,99,97,108,99,77,105,110,77,97,120,40,41,59,116,104,105,115,46,99,97,108,99,76,97,98,101,108,115,40,41,125,125,125,44,99,97,108,99,80,111,105,110,116,101,114,80,101,114,99,101,110,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,63,40,48,62,116,104,105,115,46,99,111,111,114,100,115,46,120,95,112,111,105,110,116,101,114,124,124,105,115,78,97,78,40,116,104,105,115,46,99,111,111,114,100,115,46,120,95,112,111,105,110,116,101,114,41,63,116,104,105,115,46,99,111,111,114,100,115,46,120,95,112,111,105,110,116,101,114,61,10,48,58,116,104,105,115,46,99,111,111,114,100,115,46,120,95,112,111,105,110,116,101,114,62,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,38,38,40,116,104,105,115,46,99,111,111,114,100,115,46,120,95,112,111,105,110,116,101,114,61,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,41,44,116,104,105,115,46,99,111,111,114,100,115,46,112,95,112,111,105,110,116,101,114,61,116,104,105,115,46,116,111,70,105,120,101,100,40,116,104,105,115,46,99,111,111,114,100,115,46,120,95,112,111,105,110,116,101,114,47,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,42,49,48,48,41,41,58,116,104,105,115,46,99,111,111,114,100,115,46,112,95,112,111,105,110,116,101,114,61,48,125,44,99,111,110,118,101,114,116,84,111,82,101,97,108,80,101,114,99,101,110,116,58,102,117,110,99,116,105,111,110,40,97,41,123,114,101,116,117,114,110,32,97,47,40,49,48,48,45,116,104,105,115,46,99,111,111,114,100,115,46,112,95,104,97,110,100,108,101,41,42,49,48,48,125,44,99,111,110,118,101,114,116,84,111,70,97,107,101,80,101,114,99,101,110,116,58,102,117,110,99,116,105,111,110,40,97,41,123,114,101,116,117,114,110,32,97,47,49,48,48,42,40,49,48,48,45,116,104,105,115,46,99,111,111,114,100,115,46,112,95,104,97,110,100,108,101,41,125,44,103,101,116,72,97,110,100,108,101,88,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,97,61,49,48,48,45,116,104,105,115,46,99,111,111,114,100,115,46,112,95,104,97,110,100,108,101,44,98,61,116,104,105,115,46,116,111,70,105,120,101,100,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,112,111,105,110,116,101,114,45,116,104,105,115,46,99,111,111,114,100,115,46,112,95,103,97,112,41,59,48,62,98,63,98,61,48,58,98,62,97,38,38,40,98,61,97,41,59,114,101,116,117,114,110,32,98,125,44,99,97,108,99,72,97,110,100,108,101,80,101,114,99,101,110,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,99,111,111,114,100,115,46,119,95,104,97,110,100,108,101,61,10,34,115,105,110,103,108,101,34,61,61,61,116,104,105,115,46,111,112,116,105,111,110,115,46,116,121,112,101,63,116,104,105,115,46,36,99,97,99,104,101,46,115,95,115,105,110,103,108,101,46,111,117,116,101,114,87,105,100,116,104,40,33,49,41,58,116,104,105,115,46,36,99,97,99,104,101,46,115,95,102,114,111,109,46,111,117,116,101,114,87,105,100,116,104,40,33,49,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,104,97,110,100,108,101,61,116,104,105,115,46,116,111,70,105,120,101,100,40,116,104,105,115,46,99,111,111,114,100,115,46,119,95,104,97,110,100,108,101,47,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,42,49,48,48,41,125,44,99,104,111,111,115,101,72,97,110,100,108,101,58,102,117,110,99,116,105,111,110,40,97,41,123,114,101,116,117,114,110,34,115,105,110,103,108,101,34,61,61,61,116,104,105,115,46,111,112,116,105,111,110,115,46,116,121,112,101,63,34,115,105,110,103,108,101,34,58,97,62,61,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,43,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,45,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,41,47,50,63,116,104,105,115,46,111,112,116,105,111,110,115,46,116,111,95,102,105,120,101,100,63,34,102,114,111,109,34,58,34,116,111,34,58,116,104,105,115,46,111,112,116,105,111,110,115,46,102,114,111,109,95,102,105,120,101,100,63,34,116,111,34,58,34,102,114,111,109,34,125,44,99,97,108,99,77,105,110,77,97,120,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,38,38,40,116,104,105,115,46,108,97,98,101,108,115,46,112,95,109,105,110,61,116,104,105,115,46,108,97,98,101,108,115,46,119,95,109,105,110,47,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,42,49,48,48,44,116,104,105,115,46,108,97,98,101,108,115,46,112,95,109,97,120,61,10,116,104,105,115,46,108,97,98,101,108,115,46,119,95,109,97,120,47,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,42,49,48,48,41,125,44,99,97,108,99,76,97,98,101,108,115,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,38,38,33,116,104,105,115,46,111,112,116,105,111,110,115,46,104,105,100,101,95,102,114,111,109,95,116,111,38,38,40,34,115,105,110,103,108,101,34,61,61,61,116,104,105,115,46,111,112,116,105,111,110,115,46,116,121,112,101,63,40,116,104,105,115,46,108,97,98,101,108,115,46,119,95,115,105,110,103,108,101,61,116,104,105,115,46,36,99,97,99,104,101,46,115,105,110,103,108,101,46,111,117,116,101,114,87,105,100,116,104,40,33,49,41,44,116,104,105,115,46,108,97,98,101,108,115,46,112,95,115,105,110,103,108,101,95,102,97,107,101,61,116,104,105,115,46,108,97,98,101,108,115,46,119,95,115,105,110,103,108,101,47,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,42,49,48,48,44,116,104,105,115,46,108,97,98,101,108,115,46,112,95,115,105,110,103,108,101,95,108,101,102,116,61,116,104,105,115,46,99,111,111,114,100,115,46,112,95,115,105,110,103,108,101,95,102,97,107,101,43,116,104,105,115,46,99,111,111,114,100,115,46,112,95,104,97,110,100,108,101,47,50,45,116,104,105,115,46,108,97,98,101,108,115,46,112,95,115,105,110,103,108,101,95,102,97,107,101,47,50,41,58,40,116,104,105,115,46,108,97,98,101,108,115,46,119,95,102,114,111,109,61,116,104,105,115,46,36,99,97,99,104,101,46,102,114,111,109,46,111,117,116,101,114,87,105,100,116,104,40,33,49,41,44,116,104,105,115,46,108,97,98,101,108,115,46,112,95,102,114,111,109,95,102,97,107,101,61,116,104,105,115,46,108,97,98,101,108,115,46,119,95,102,114,111,109,47,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,42,49,48,48,44,116,104,105,115,46,108,97,98,101,108,115,46,112,95,102,114,111,109,95,108,101,102,116,61,10,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,102,97,107,101,43,116,104,105,115,46,99,111,111,114,100,115,46,112,95,104,97,110,100,108,101,47,50,45,116,104,105,115,46,108,97,98,101,108,115,46,112,95,102,114,111,109,95,102,97,107,101,47,50,44,116,104,105,115,46,108,97,98,101,108,115,46,112,95,102,114,111,109,95,108,101,102,116,61,116,104,105,115,46,116,111,70,105,120,101,100,40,116,104,105,115,46,108,97,98,101,108,115,46,112,95,102,114,111,109,95,108,101,102,116,41,44,116,104,105,115,46,108,97,98,101,108,115,46,112,95,102,114,111,109,95,108,101,102,116,61,116,104,105,115,46,99,104,101,99,107,69,100,103,101,115,40,116,104,105,115,46,108,97,98,101,108,115,46,112,95,102,114,111,109,95,108,101,102,116,44,116,104,105,115,46,108,97,98,101,108,115,46,112,95,102,114,111,109,95,102,97,107,101,41,44,116,104,105,115,46,108,97,98,101,108,115,46,119,95,116,111,61,116,104,105,115,46,36,99,97,99,104,101,46,116,111,46,111,117,116,101,114,87,105,100,116,104,40,33,49,41,44,116,104,105,115,46,108,97,98,101,108,115,46,112,95,116,111,95,102,97,107,101,61,116,104,105,115,46,108,97,98,101,108,115,46,119,95,116,111,47,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,42,49,48,48,44,116,104,105,115,46,108,97,98,101,108,115,46,112,95,116,111,95,108,101,102,116,61,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,102,97,107,101,43,116,104,105,115,46,99,111,111,114,100,115,46,112,95,104,97,110,100,108,101,47,50,45,116,104,105,115,46,108,97,98,101,108,115,46,112,95,116,111,95,102,97,107,101,47,50,44,116,104,105,115,46,108,97,98,101,108,115,46,112,95,116,111,95,108,101,102,116,61,116,104,105,115,46,116,111,70,105,120,101,100,40,116,104,105,115,46,108,97,98,101,108,115,46,112,95,116,111,95,108,101,102,116,41,44,116,104,105,115,46,108,97,98,101,108,115,46,112,95,116,111,95,108,101,102,116,61,10,116,104,105,115,46,99,104,101,99,107,69,100,103,101,115,40,116,104,105,115,46,108,97,98,101,108,115,46,112,95,116,111,95,108,101,102,116,44,116,104,105,115,46,108,97,98,101,108,115,46,112,95,116,111,95,102,97,107,101,41,44,116,104,105,115,46,108,97,98,101,108,115,46,119,95,115,105,110,103,108,101,61,116,104,105,115,46,36,99,97,99,104,101,46,115,105,110,103,108,101,46,111,117,116,101,114,87,105,100,116,104,40,33,49,41,44,116,104,105,115,46,108,97,98,101,108,115,46,112,95,115,105,110,103,108,101,95,102,97,107,101,61,116,104,105,115,46,108,97,98,101,108,115,46,119,95,115,105,110,103,108,101,47,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,42,49,48,48,44,116,104,105,115,46,108,97,98,101,108,115,46,112,95,115,105,110,103,108,101,95,108,101,102,116,61,40,116,104,105,115,46,108,97,98,101,108,115,46,112,95,102,114,111,109,95,108,101,102,116,43,116,104,105,115,46,108,97,98,101,108,115,46,112,95,116,111,95,108,101,102,116,43,116,104,105,115,46,108,97,98,101,108,115,46,112,95,116,111,95,102,97,107,101,41,47,50,45,116,104,105,115,46,108,97,98,101,108,115,46,112,95,115,105,110,103,108,101,95,102,97,107,101,47,50,44,116,104,105,115,46,108,97,98,101,108,115,46,112,95,115,105,110,103,108,101,95,108,101,102,116,61,116,104,105,115,46,116,111,70,105,120,101,100,40,116,104,105,115,46,108,97,98,101,108,115,46,112,95,115,105,110,103,108,101,95,108,101,102,116,41,41,44,116,104,105,115,46,108,97,98,101,108,115,46,112,95,115,105,110,103,108,101,95,108,101,102,116,61,116,104,105,115,46,99,104,101,99,107,69,100,103,101,115,40,116,104,105,115,46,108,97,98,101,108,115,46,112,95,115,105,110,103,108,101,95,108,101,102,116,44,116,104,105,115,46,108,97,98,101,108,115,46,112,95,115,105,110,103,108,101,95,102,97,107,101,41,41,125,44,117,112,100,97,116,101,83,99,101,110,101,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,114,97,102,95,105,100,38,38,10,40,99,97,110,99,101,108,65,110,105,109,97,116,105,111,110,70,114,97,109,101,40,116,104,105,115,46,114,97,102,95,105,100,41,44,116,104,105,115,46,114,97,102,95,105,100,61,110,117,108,108,41,59,99,108,101,97,114,84,105,109,101,111,117,116,40,116,104,105,115,46,117,112,100,97,116,101,95,116,109,41,59,116,104,105,115,46,117,112,100,97,116,101,95,116,109,61,110,117,108,108,59,116,104,105,115,46,111,112,116,105,111,110,115,38,38,40,116,104,105,115,46,100,114,97,119,72,97,110,100,108,101,115,40,41,44,116,104,105,115,46,105,115,95,97,99,116,105,118,101,63,116,104,105,115,46,114,97,102,95,105,100,61,114,101,113,117,101,115,116,65,110,105,109,97,116,105,111,110,70,114,97,109,101,40,116,104,105,115,46,117,112,100,97,116,101,83,99,101,110,101,46,98,105,110,100,40,116,104,105,115,41,41,58,116,104,105,115,46,117,112,100,97,116,101,95,116,109,61,115,101,116,84,105,109,101,111,117,116,40,116,104,105,115,46,117,112,100,97,116,101,83,99,101,110,101,46,98,105,110,100,40,116,104,105,115,41,44,51,48,48,41,41,125,44,100,114,97,119,72,97,110,100,108,101,115,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,61,116,104,105,115,46,36,99,97,99,104,101,46,114,115,46,111,117,116,101,114,87,105,100,116,104,40,33,49,41,59,105,102,40,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,41,123,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,33,61,61,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,95,111,108,100,38,38,40,116,104,105,115,46,116,97,114,103,101,116,61,34,98,97,115,101,34,44,116,104,105,115,46,105,115,95,114,101,115,105,122,101,61,33,48,41,59,105,102,40,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,33,61,61,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,95,111,108,100,124,124,116,104,105,115,46,102,111,114,99,101,95,114,101,100,114,97,119,41,116,104,105,115,46,115,101,116,77,105,110,77,97,120,40,41,44,10,116,104,105,115,46,99,97,108,99,40,33,48,41,44,116,104,105,115,46,100,114,97,119,76,97,98,101,108,115,40,41,44,116,104,105,115,46,111,112,116,105,111,110,115,46,103,114,105,100,38,38,40,116,104,105,115,46,99,97,108,99,71,114,105,100,77,97,114,103,105,110,40,41,44,116,104,105,115,46,99,97,108,99,71,114,105,100,76,97,98,101,108,115,40,41,41,44,116,104,105,115,46,102,111,114,99,101,95,114,101,100,114,97,119,61,33,48,44,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,95,111,108,100,61,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,44,116,104,105,115,46,100,114,97,119,83,104,97,100,111,119,40,41,59,105,102,40,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,38,38,40,116,104,105,115,46,100,114,97,103,103,105,110,103,124,124,116,104,105,115,46,102,111,114,99,101,95,114,101,100,114,97,119,124,124,116,104,105,115,46,105,115,95,107,101,121,41,41,123,105,102,40,116,104,105,115,46,111,108,100,95,102,114,111,109,33,61,61,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,124,124,116,104,105,115,46,111,108,100,95,116,111,33,61,61,116,104,105,115,46,114,101,115,117,108,116,46,116,111,124,124,116,104,105,115,46,102,111,114,99,101,95,114,101,100,114,97,119,124,124,116,104,105,115,46,105,115,95,107,101,121,41,123,116,104,105,115,46,100,114,97,119,76,97,98,101,108,115,40,41,59,116,104,105,115,46,36,99,97,99,104,101,46,98,97,114,91,48,93,46,115,116,121,108,101,46,108,101,102,116,61,116,104,105,115,46,99,111,111,114,100,115,46,112,95,98,97,114,95,120,43,34,37,34,59,116,104,105,115,46,36,99,97,99,104,101,46,98,97,114,91,48,93,46,115,116,121,108,101,46,119,105,100,116,104,61,116,104,105,115,46,99,111,111,114,100,115,46,112,95,98,97,114,95,119,43,34,37,34,59,105,102,40,34,115,105,110,103,108,101,34,61,61,61,116,104,105,115,46,111,112,116,105,111,110,115,46,116,121,112,101,41,116,104,105,115,46,36,99,97,99,104,101,46,115,95,115,105,110,103,108,101,91,48,93,46,115,116,121,108,101,46,108,101,102,116,61,10,116,104,105,115,46,99,111,111,114,100,115,46,112,95,115,105,110,103,108,101,95,102,97,107,101,43,34,37,34,59,101,108,115,101,123,116,104,105,115,46,36,99,97,99,104,101,46,115,95,102,114,111,109,91,48,93,46,115,116,121,108,101,46,108,101,102,116,61,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,102,97,107,101,43,34,37,34,59,116,104,105,115,46,36,99,97,99,104,101,46,115,95,116,111,91,48,93,46,115,116,121,108,101,46,108,101,102,116,61,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,102,97,107,101,43,34,37,34,59,105,102,40,116,104,105,115,46,111,108,100,95,102,114,111,109,33,61,61,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,124,124,116,104,105,115,46,102,111,114,99,101,95,114,101,100,114,97,119,41,116,104,105,115,46,36,99,97,99,104,101,46,102,114,111,109,91,48,93,46,115,116,121,108,101,46,108,101,102,116,61,116,104,105,115,46,108,97,98,101,108,115,46,112,95,102,114,111,109,95,108,101,102,116,43,34,37,34,59,105,102,40,116,104,105,115,46,111,108,100,95,116,111,33,61,61,116,104,105,115,46,114,101,115,117,108,116,46,116,111,124,124,116,104,105,115,46,102,111,114,99,101,95,114,101,100,114,97,119,41,116,104,105,115,46,36,99,97,99,104,101,46,116,111,91,48,93,46,115,116,121,108,101,46,108,101,102,116,61,116,104,105,115,46,108,97,98,101,108,115,46,112,95,116,111,95,108,101,102,116,43,34,37,34,125,116,104,105,115,46,36,99,97,99,104,101,46,115,105,110,103,108,101,91,48,93,46,115,116,121,108,101,46,108,101,102,116,61,116,104,105,115,46,108,97,98,101,108,115,46,112,95,115,105,110,103,108,101,95,108,101,102,116,43,34,37,34,59,116,104,105,115,46,119,114,105,116,101,84,111,73,110,112,117,116,40,41,59,116,104,105,115,46,111,108,100,95,102,114,111,109,61,61,61,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,38,38,116,104,105,115,46,111,108,100,95,116,111,61,61,61,10,116,104,105,115,46,114,101,115,117,108,116,46,116,111,124,124,116,104,105,115,46,105,115,95,115,116,97,114,116,124,124,40,116,104,105,115,46,36,99,97,99,104,101,46,105,110,112,117,116,46,116,114,105,103,103,101,114,40,34,99,104,97,110,103,101,34,41,44,116,104,105,115,46,36,99,97,99,104,101,46,105,110,112,117,116,46,116,114,105,103,103,101,114,40,34,105,110,112,117,116,34,41,41,59,116,104,105,115,46,111,108,100,95,102,114,111,109,61,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,59,116,104,105,115,46,111,108,100,95,116,111,61,116,104,105,115,46,114,101,115,117,108,116,46,116,111,59,116,104,105,115,46,105,115,95,114,101,115,105,122,101,124,124,116,104,105,115,46,105,115,95,117,112,100,97,116,101,124,124,116,104,105,115,46,105,115,95,115,116,97,114,116,124,124,116,104,105,115,46,105,115,95,102,105,110,105,115,104,124,124,116,104,105,115,46,99,97,108,108,79,110,67,104,97,110,103,101,40,41,59,105,102,40,116,104,105,115,46,105,115,95,107,101,121,124,124,116,104,105,115,46,105,115,95,99,108,105,99,107,41,116,104,105,115,46,105,115,95,99,108,105,99,107,61,116,104,105,115,46,105,115,95,107,101,121,61,33,49,44,116,104,105,115,46,99,97,108,108,79,110,70,105,110,105,115,104,40,41,59,116,104,105,115,46,105,115,95,102,105,110,105,115,104,61,116,104,105,115,46,105,115,95,114,101,115,105,122,101,61,116,104,105,115,46,105,115,95,117,112,100,97,116,101,61,33,49,125,116,104,105,115,46,102,111,114,99,101,95,114,101,100,114,97,119,61,116,104,105,115,46,105,115,95,99,108,105,99,107,61,116,104,105,115,46,105,115,95,107,101,121,61,116,104,105,115,46,105,115,95,115,116,97,114,116,61,33,49,125,125,125,44,100,114,97,119,76,97,98,101,108,115,58,102,117,110,99,116,105,111,110,40,41,123,105,102,40,116,104,105,115,46,111,112,116,105,111,110,115,41,123,118,97,114,32,97,61,116,104,105,115,46,111,112,116,105,111,110,115,46,118,97,108,117,101,115,46,108,101,110,103,116,104,44,10,98,61,116,104,105,115,46,111,112,116,105,111,110,115,46,112,95,118,97,108,117,101,115,59,105,102,40,33,116,104,105,115,46,111,112,116,105,111,110,115,46,104,105,100,101,95,102,114,111,109,95,116,111,41,105,102,40,34,115,105,110,103,108,101,34,61,61,61,116,104,105,115,46,111,112,116,105,111,110,115,46,116,121,112,101,41,123,105,102,40,97,41,97,61,116,104,105,115,46,100,101,99,111,114,97,116,101,40,98,91,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,93,41,59,101,108,115,101,123,118,97,114,32,100,61,116,104,105,115,46,95,112,114,101,116,116,105,102,121,40,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,41,59,97,61,116,104,105,115,46,100,101,99,111,114,97,116,101,40,100,44,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,41,125,116,104,105,115,46,36,99,97,99,104,101,46,115,105,110,103,108,101,46,104,116,109,108,40,97,41,59,116,104,105,115,46,99,97,108,99,76,97,98,101,108,115,40,41,59,116,104,105,115,46,36,99,97,99,104,101,46,109,105,110,91,48,93,46,115,116,121,108,101,46,118,105,115,105,98,105,108,105,116,121,61,116,104,105,115,46,108,97,98,101,108,115,46,112,95,115,105,110,103,108,101,95,108,101,102,116,60,116,104,105,115,46,108,97,98,101,108,115,46,112,95,109,105,110,43,49,63,34,104,105,100,100,101,110,34,58,34,118,105,115,105,98,108,101,34,59,116,104,105,115,46,36,99,97,99,104,101,46,109,97,120,91,48,93,46,115,116,121,108,101,46,118,105,115,105,98,105,108,105,116,121,61,116,104,105,115,46,108,97,98,101,108,115,46,112,95,115,105,110,103,108,101,95,108,101,102,116,43,116,104,105,115,46,108,97,98,101,108,115,46,112,95,115,105,110,103,108,101,95,102,97,107,101,62,49,48,48,45,116,104,105,115,46,108,97,98,101,108,115,46,112,95,109,97,120,45,49,63,34,104,105,100,100,101,110,34,58,34,118,105,115,105,98,108,101,34,125,101,108,115,101,123,97,63,40,116,104,105,115,46,111,112,116,105,111,110,115,46,100,101,99,111,114,97,116,101,95,98,111,116,104,63,10,40,97,61,116,104,105,115,46,100,101,99,111,114,97,116,101,40,98,91,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,93,41,44,97,43,61,116,104,105,115,46,111,112,116,105,111,110,115,46,118,97,108,117,101,115,95,115,101,112,97,114,97,116,111,114,44,97,43,61,116,104,105,115,46,100,101,99,111,114,97,116,101,40,98,91,116,104,105,115,46,114,101,115,117,108,116,46,116,111,93,41,41,58,97,61,116,104,105,115,46,100,101,99,111,114,97,116,101,40,98,91,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,93,43,116,104,105,115,46,111,112,116,105,111,110,115,46,118,97,108,117,101,115,95,115,101,112,97,114,97,116,111,114,43,98,91,116,104,105,115,46,114,101,115,117,108,116,46,116,111,93,41,44,100,61,116,104,105,115,46,100,101,99,111,114,97,116,101,40,98,91,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,93,41,44,98,61,116,104,105,115,46,100,101,99,111,114,97,116,101,40,98,91,116,104,105,115,46,114,101,115,117,108,116,46,116,111,93,41,41,58,40,100,61,116,104,105,115,46,95,112,114,101,116,116,105,102,121,40,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,41,44,98,61,116,104,105,115,46,95,112,114,101,116,116,105,102,121,40,116,104,105,115,46,114,101,115,117,108,116,46,116,111,41,44,116,104,105,115,46,111,112,116,105,111,110,115,46,100,101,99,111,114,97,116,101,95,98,111,116,104,63,40,97,61,116,104,105,115,46,100,101,99,111,114,97,116,101,40,100,44,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,41,44,97,43,61,116,104,105,115,46,111,112,116,105,111,110,115,46,118,97,108,117,101,115,95,115,101,112,97,114,97,116,111,114,44,97,43,61,116,104,105,115,46,100,101,99,111,114,97,116,101,40,98,44,116,104,105,115,46,114,101,115,117,108,116,46,116,111,41,41,58,97,61,116,104,105,115,46,100,101,99,111,114,97,116,101,40,100,43,116,104,105,115,46,111,112,116,105,111,110,115,46,118,97,108,117,101,115,95,115,101,112,97,114,97,116,111,114,43,10,98,44,116,104,105,115,46,114,101,115,117,108,116,46,116,111,41,44,100,61,116,104,105,115,46,100,101,99,111,114,97,116,101,40,100,44,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,41,44,98,61,116,104,105,115,46,100,101,99,111,114,97,116,101,40,98,44,116,104,105,115,46,114,101,115,117,108,116,46,116,111,41,41,59,116,104,105,115,46,36,99,97,99,104,101,46,115,105,110,103,108,101,46,104,116,109,108,40,97,41,59,116,104,105,115,46,36,99,97,99,104,101,46,102,114,111,109,46,104,116,109,108,40,100,41,59,116,104,105,115,46,36,99,97,99,104,101,46,116,111,46,104,116,109,108,40,98,41,59,116,104,105,115,46,99,97,108,99,76,97,98,101,108,115,40,41,59,97,61,77,97,116,104,46,109,105,110,40,116,104,105,115,46,108,97,98,101,108,115,46,112,95,115,105,110,103,108,101,95,108,101,102,116,44,116,104,105,115,46,108,97,98,101,108,115,46,112,95,102,114,111,109,95,108,101,102,116,41,59,100,61,116,104,105,115,46,108,97,98,101,108,115,46,112,95,115,105,110,103,108,101,95,108,101,102,116,43,116,104,105,115,46,108,97,98,101,108,115,46,112,95,115,105,110,103,108,101,95,102,97,107,101,59,118,97,114,32,98,61,116,104,105,115,46,108,97,98,101,108,115,46,112,95,116,111,95,108,101,102,116,43,116,104,105,115,46,108,97,98,101,108,115,46,112,95,116,111,95,102,97,107,101,44,99,61,77,97,116,104,46,109,97,120,40,100,44,98,41,59,116,104,105,115,46,108,97,98,101,108,115,46,112,95,102,114,111,109,95,108,101,102,116,43,116,104,105,115,46,108,97,98,101,108,115,46,112,95,102,114,111,109,95,102,97,107,101,62,61,116,104,105,115,46,108,97,98,101,108,115,46,112,95,116,111,95,108,101,102,116,63,40,116,104,105,115,46,36,99,97,99,104,101,46,102,114,111,109,91,48,93,46,115,116,121,108,101,46,118,105,115,105,98,105,108,105,116,121,61,34,104,105,100,100,101,110,34,44,116,104,105,115,46,36,99,97,99,104,101,46,116,111,91,48,93,46,115,116,121,108,101,46,118,105,115,105,98,105,108,105,116,121,61,10,34,104,105,100,100,101,110,34,44,116,104,105,115,46,36,99,97,99,104,101,46,115,105,110,103,108,101,91,48,93,46,115,116,121,108,101,46,118,105,115,105,98,105,108,105,116,121,61,34,118,105,115,105,98,108,101,34,44,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,61,61,61,116,104,105,115,46,114,101,115,117,108,116,46,116,111,63,40,34,102,114,111,109,34,61,61,61,116,104,105,115,46,116,97,114,103,101,116,63,116,104,105,115,46,36,99,97,99,104,101,46,102,114,111,109,91,48,93,46,115,116,121,108,101,46,118,105,115,105,98,105,108,105,116,121,61,34,118,105,115,105,98,108,101,34,58,34,116,111,34,61,61,61,116,104,105,115,46,116,97,114,103,101,116,63,116,104,105,115,46,36,99,97,99,104,101,46,116,111,91,48,93,46,115,116,121,108,101,46,118,105,115,105,98,105,108,105,116,121,61,34,118,105,115,105,98,108,101,34,58,116,104,105,115,46,116,97,114,103,101,116,124,124,40,116,104,105,115,46,36,99,97,99,104,101,46,102,114,111,109,91,48,93,46,115,116,121,108,101,46,118,105,115,105,98,105,108,105,116,121,61,34,118,105,115,105,98,108,101,34,41,44,116,104,105,115,46,36,99,97,99,104,101,46,115,105,110,103,108,101,91,48,93,46,115,116,121,108,101,46,118,105,115,105,98,105,108,105,116,121,61,34,104,105,100,100,101,110,34,44,99,61,98,41,58,40,116,104,105,115,46,36,99,97,99,104,101,46,102,114,111,109,91,48,93,46,115,116,121,108,101,46,118,105,115,105,98,105,108,105,116,121,61,34,104,105,100,100,101,110,34,44,116,104,105,115,46,36,99,97,99,104,101,46,116,111,91,48,93,46,115,116,121,108,101,46,118,105,115,105,98,105,108,105,116,121,61,34,104,105,100,100,101,110,34,44,116,104,105,115,46,36,99,97,99,104,101,46,115,105,110,103,108,101,91,48,93,46,115,116,121,108,101,46,118,105,115,105,98,105,108,105,116,121,61,34,118,105,115,105,98,108,101,34,44,99,61,77,97,116,104,46,109,97,120,40,100,44,98,41,41,41,58,40,116,104,105,115,46,36,99,97,99,104,101,46,102,114,111,109,91,48,93,46,115,116,121,108,101,46,118,105,115,105,98,105,108,105,116,121,61,10,34,118,105,115,105,98,108,101,34,44,116,104,105,115,46,36,99,97,99,104,101,46,116,111,91,48,93,46,115,116,121,108,101,46,118,105,115,105,98,105,108,105,116,121,61,34,118,105,115,105,98,108,101,34,44,116,104,105,115,46,36,99,97,99,104,101,46,115,105,110,103,108,101,91,48,93,46,115,116,121,108,101,46,118,105,115,105,98,105,108,105,116,121,61,34,104,105,100,100,101,110,34,41,59,116,104,105,115,46,36,99,97,99,104,101,46,109,105,110,91,48,93,46,115,116,121,108,101,46,118,105,115,105,98,105,108,105,116,121,61,97,60,116,104,105,115,46,108,97,98,101,108,115,46,112,95,109,105,110,43,49,63,34,104,105,100,100,101,110,34,58,34,118,105,115,105,98,108,101,34,59,116,104,105,115,46,36,99,97,99,104,101,46,109,97,120,91,48,93,46,115,116,121,108,101,46,118,105,115,105,98,105,108,105,116,121,61,99,62,49,48,48,45,116,104,105,115,46,108,97,98,101,108,115,46,112,95,109,97,120,45,49,63,34,104,105,100,100,101,110,34,58,34,118,105,115,105,98,108,101,34,125,125,125,44,100,114,97,119,83,104,97,100,111,119,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,97,61,116,104,105,115,46,111,112,116,105,111,110,115,44,98,61,116,104,105,115,46,36,99,97,99,104,101,44,100,61,34,110,117,109,98,101,114,34,61,61,61,116,121,112,101,111,102,32,97,46,102,114,111,109,95,109,105,110,38,38,33,105,115,78,97,78,40,97,46,102,114,111,109,95,109,105,110,41,44,99,61,34,110,117,109,98,101,114,34,61,61,61,116,121,112,101,111,102,32,97,46,102,114,111,109,95,109,97,120,38,38,33,105,115,78,97,78,40,97,46,102,114,111,109,95,109,97,120,41,44,101,61,34,110,117,109,98,101,114,34,61,61,61,116,121,112,101,111,102,32,97,46,116,111,95,109,105,110,38,38,33,105,115,78,97,78,40,97,46,116,111,95,109,105,110,41,44,103,61,34,110,117,109,98,101,114,34,61,61,61,116,121,112,101,111,102,32,97,46,116,111,95,109,97,120,38,38,33,105,115,78,97,78,40,97,46,116,111,95,109,97,120,41,59,10,34,115,105,110,103,108,101,34,61,61,61,97,46,116,121,112,101,63,97,46,102,114,111,109,95,115,104,97,100,111,119,38,38,40,100,124,124,99,41,63,40,100,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,80,101,114,99,101,110,116,40,100,63,97,46,102,114,111,109,95,109,105,110,58,97,46,109,105,110,41,44,99,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,80,101,114,99,101,110,116,40,99,63,97,46,102,114,111,109,95,109,97,120,58,97,46,109,97,120,41,45,100,44,100,61,116,104,105,115,46,116,111,70,105,120,101,100,40,100,45,116,104,105,115,46,99,111,111,114,100,115,46,112,95,104,97,110,100,108,101,47,49,48,48,42,100,41,44,99,61,116,104,105,115,46,116,111,70,105,120,101,100,40,99,45,116,104,105,115,46,99,111,111,114,100,115,46,112,95,104,97,110,100,108,101,47,49,48,48,42,99,41,44,100,43,61,116,104,105,115,46,99,111,111,114,100,115,46,112,95,104,97,110,100,108,101,47,50,44,98,46,115,104,97,100,95,115,105,110,103,108,101,91,48,93,46,115,116,121,108,101,46,100,105,115,112,108,97,121,61,34,98,108,111,99,107,34,44,98,46,115,104,97,100,95,115,105,110,103,108,101,91,48,93,46,115,116,121,108,101,46,108,101,102,116,61,100,43,34,37,34,44,98,46,115,104,97,100,95,115,105,110,103,108,101,91,48,93,46,115,116,121,108,101,46,119,105,100,116,104,61,99,43,34,37,34,41,58,98,46,115,104,97,100,95,115,105,110,103,108,101,91,48,93,46,115,116,121,108,101,46,100,105,115,112,108,97,121,61,34,110,111,110,101,34,58,40,97,46,102,114,111,109,95,115,104,97,100,111,119,38,38,40,100,124,124,99,41,63,40,100,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,80,101,114,99,101,110,116,40,100,63,97,46,102,114,111,109,95,109,105,110,58,97,46,109,105,110,41,44,99,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,80,101,114,99,101,110,116,40,99,63,97,46,102,114,111,109,95,109,97,120,58,97,46,109,97,120,41,45,10,100,44,100,61,116,104,105,115,46,116,111,70,105,120,101,100,40,100,45,116,104,105,115,46,99,111,111,114,100,115,46,112,95,104,97,110,100,108,101,47,49,48,48,42,100,41,44,99,61,116,104,105,115,46,116,111,70,105,120,101,100,40,99,45,116,104,105,115,46,99,111,111,114,100,115,46,112,95,104,97,110,100,108,101,47,49,48,48,42,99,41,44,100,43,61,116,104,105,115,46,99,111,111,114,100,115,46,112,95,104,97,110,100,108,101,47,50,44,98,46,115,104,97,100,95,102,114,111,109,91,48,93,46,115,116,121,108,101,46,100,105,115,112,108,97,121,61,34,98,108,111,99,107,34,44,98,46,115,104,97,100,95,102,114,111,109,91,48,93,46,115,116,121,108,101,46,108,101,102,116,61,100,43,34,37,34,44,98,46,115,104,97,100,95,102,114,111,109,91,48,93,46,115,116,121,108,101,46,119,105,100,116,104,61,99,43,34,37,34,41,58,98,46,115,104,97,100,95,102,114,111,109,91,48,93,46,115,116,121,108,101,46,100,105,115,112,108,97,121,61,34,110,111,110,101,34,44,97,46,116,111,95,115,104,97,100,111,119,38,38,40,101,124,124,103,41,63,40,101,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,80,101,114,99,101,110,116,40,101,63,97,46,116,111,95,109,105,110,58,97,46,109,105,110,41,44,97,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,80,101,114,99,101,110,116,40,103,63,97,46,116,111,95,109,97,120,58,97,46,109,97,120,41,45,101,44,101,61,116,104,105,115,46,116,111,70,105,120,101,100,40,101,45,116,104,105,115,46,99,111,111,114,100,115,46,112,95,104,97,110,100,108,101,47,49,48,48,42,101,41,44,97,61,116,104,105,115,46,116,111,70,105,120,101,100,40,97,45,116,104,105,115,46,99,111,111,114,100,115,46,112,95,104,97,110,100,108,101,47,49,48,48,42,97,41,44,101,43,61,116,104,105,115,46,99,111,111,114,100,115,46,112,95,104,97,110,100,108,101,47,50,44,98,46,115,104,97,100,95,116,111,91,48,93,46,115,116,121,108,101,46,100,105,115,112,108,97,121,61,10,34,98,108,111,99,107,34,44,98,46,115,104,97,100,95,116,111,91,48,93,46,115,116,121,108,101,46,108,101,102,116,61,101,43,34,37,34,44,98,46,115,104,97,100,95,116,111,91,48,93,46,115,116,121,108,101,46,119,105,100,116,104,61,97,43,34,37,34,41,58,98,46,115,104,97,100,95,116,111,91,48,93,46,115,116,121,108,101,46,100,105,115,112,108,97,121,61,34,110,111,110,101,34,41,125,44,119,114,105,116,101,84,111,73,110,112,117,116,58,102,117,110,99,116,105,111,110,40,41,123,34,115,105,110,103,108,101,34,61,61,61,116,104,105,115,46,111,112,116,105,111,110,115,46,116,121,112,101,63,40,116,104,105,115,46,111,112,116,105,111,110,115,46,118,97,108,117,101,115,46,108,101,110,103,116,104,63,116,104,105,115,46,36,99,97,99,104,101,46,105,110,112,117,116,46,112,114,111,112,40,34,118,97,108,117,101,34,44,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,95,118,97,108,117,101,41,58,116,104,105,115,46,36,99,97,99,104,101,46,105,110,112,117,116,46,112,114,111,112,40,34,118,97,108,117,101,34,44,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,41,44,116,104,105,115,46,36,99,97,99,104,101,46,105,110,112,117,116,46,100,97,116,97,40,34,102,114,111,109,34,44,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,41,41,58,40,116,104,105,115,46,111,112,116,105,111,110,115,46,118,97,108,117,101,115,46,108,101,110,103,116,104,63,116,104,105,115,46,36,99,97,99,104,101,46,105,110,112,117,116,46,112,114,111,112,40,34,118,97,108,117,101,34,44,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,95,118,97,108,117,101,43,116,104,105,115,46,111,112,116,105,111,110,115,46,105,110,112,117,116,95,118,97,108,117,101,115,95,115,101,112,97,114,97,116,111,114,43,116,104,105,115,46,114,101,115,117,108,116,46,116,111,95,118,97,108,117,101,41,58,116,104,105,115,46,36,99,97,99,104,101,46,105,110,112,117,116,46,112,114,111,112,40,34,118,97,108,117,101,34,44,10,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,43,116,104,105,115,46,111,112,116,105,111,110,115,46,105,110,112,117,116,95,118,97,108,117,101,115,95,115,101,112,97,114,97,116,111,114,43,116,104,105,115,46,114,101,115,117,108,116,46,116,111,41,44,116,104,105,115,46,36,99,97,99,104,101,46,105,110,112,117,116,46,100,97,116,97,40,34,102,114,111,109,34,44,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,41,44,116,104,105,115,46,36,99,97,99,104,101,46,105,110,112,117,116,46,100,97,116,97,40,34,116,111,34,44,116,104,105,115,46,114,101,115,117,108,116,46,116,111,41,41,125,44,99,97,108,108,79,110,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,119,114,105,116,101,84,111,73,110,112,117,116,40,41,59,105,102,40,116,104,105,115,46,111,112,116,105,111,110,115,46,111,110,83,116,97,114,116,38,38,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,116,104,105,115,46,111,112,116,105,111,110,115,46,111,110,83,116,97,114,116,41,105,102,40,116,104,105,115,46,111,112,116,105,111,110,115,46,115,99,111,112,101,41,116,104,105,115,46,111,112,116,105,111,110,115,46,111,110,83,116,97,114,116,46,99,97,108,108,40,116,104,105,115,46,111,112,116,105,111,110,115,46,115,99,111,112,101,44,116,104,105,115,46,114,101,115,117,108,116,41,59,101,108,115,101,32,116,104,105,115,46,111,112,116,105,111,110,115,46,111,110,83,116,97,114,116,40,116,104,105,115,46,114,101,115,117,108,116,41,125,44,99,97,108,108,79,110,67,104,97,110,103,101,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,119,114,105,116,101,84,111,73,110,112,117,116,40,41,59,105,102,40,116,104,105,115,46,111,112,116,105,111,110,115,46,111,110,67,104,97,110,103,101,38,38,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,116,104,105,115,46,111,112,116,105,111,110,115,46,111,110,67,104,97,110,103,101,41,105,102,40,116,104,105,115,46,111,112,116,105,111,110,115,46,115,99,111,112,101,41,116,104,105,115,46,111,112,116,105,111,110,115,46,111,110,67,104,97,110,103,101,46,99,97,108,108,40,116,104,105,115,46,111,112,116,105,111,110,115,46,115,99,111,112,101,44,10,116,104,105,115,46,114,101,115,117,108,116,41,59,101,108,115,101,32,116,104,105,115,46,111,112,116,105,111,110,115,46,111,110,67,104,97,110,103,101,40,116,104,105,115,46,114,101,115,117,108,116,41,125,44,99,97,108,108,79,110,70,105,110,105,115,104,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,119,114,105,116,101,84,111,73,110,112,117,116,40,41,59,105,102,40,116,104,105,115,46,111,112,116,105,111,110,115,46,111,110,70,105,110,105,115,104,38,38,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,116,104,105,115,46,111,112,116,105,111,110,115,46,111,110,70,105,110,105,115,104,41,105,102,40,116,104,105,115,46,111,112,116,105,111,110,115,46,115,99,111,112,101,41,116,104,105,115,46,111,112,116,105,111,110,115,46,111,110,70,105,110,105,115,104,46,99,97,108,108,40,116,104,105,115,46,111,112,116,105,111,110,115,46,115,99,111,112,101,44,116,104,105,115,46,114,101,115,117,108,116,41,59,101,108,115,101,32,116,104,105,115,46,111,112,116,105,111,110,115,46,111,110,70,105,110,105,115,104,40,116,104,105,115,46,114,101,115,117,108,116,41,125,44,99,97,108,108,79,110,85,112,100,97,116,101,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,119,114,105,116,101,84,111,73,110,112,117,116,40,41,59,105,102,40,116,104,105,115,46,111,112,116,105,111,110,115,46,111,110,85,112,100,97,116,101,38,38,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,116,104,105,115,46,111,112,116,105,111,110,115,46,111,110,85,112,100,97,116,101,41,105,102,40,116,104,105,115,46,111,112,116,105,111,110,115,46,115,99,111,112,101,41,116,104,105,115,46,111,112,116,105,111,110,115,46,111,110,85,112,100,97,116,101,46,99,97,108,108,40,116,104,105,115,46,111,112,116,105,111,110,115,46,115,99,111,112,101,44,116,104,105,115,46,114,101,115,117,108,116,41,59,101,108,115,101,32,116,104,105,115,46,111,112,116,105,111,110,115,46,111,110,85,112,100,97,116,101,40,116,104,105,115,46,114,101,115,117,108,116,41,125,44,10,116,111,103,103,108,101,73,110,112,117,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,36,99,97,99,104,101,46,105,110,112,117,116,46,116,111,103,103,108,101,67,108,97,115,115,40,34,105,114,115,45,104,105,100,100,101,110,45,105,110,112,117,116,34,41,59,116,104,105,115,46,104,97,115,95,116,97,98,95,105,110,100,101,120,63,116,104,105,115,46,36,99,97,99,104,101,46,105,110,112,117,116,46,112,114,111,112,40,34,116,97,98,105,110,100,101,120,34,44,45,49,41,58,116,104,105,115,46,36,99,97,99,104,101,46,105,110,112,117,116,46,114,101,109,111,118,101,80,114,111,112,40,34,116,97,98,105,110,100,101,120,34,41,59,116,104,105,115,46,104,97,115,95,116,97,98,95,105,110,100,101,120,61,33,116,104,105,115,46,104,97,115,95,116,97,98,95,105,110,100,101,120,125,44,99,111,110,118,101,114,116,84,111,80,101,114,99,101,110,116,58,102,117,110,99,116,105,111,110,40,97,44,98,41,123,118,97,114,32,100,61,116,104,105,115,46,111,112,116,105,111,110,115,46,109,97,120,45,116,104,105,115,46,111,112,116,105,111,110,115,46,109,105,110,59,114,101,116,117,114,110,32,100,63,116,104,105,115,46,116,111,70,105,120,101,100,40,40,98,63,97,58,97,45,116,104,105,115,46,111,112,116,105,111,110,115,46,109,105,110,41,47,40,100,47,49,48,48,41,41,58,40,116,104,105,115,46,110,111,95,100,105,97,112,97,115,111,110,61,33,48,44,48,41,125,44,99,111,110,118,101,114,116,84,111,86,97,108,117,101,58,102,117,110,99,116,105,111,110,40,97,41,123,118,97,114,32,98,61,116,104,105,115,46,111,112,116,105,111,110,115,46,109,105,110,44,100,61,116,104,105,115,46,111,112,116,105,111,110,115,46,109,97,120,44,99,61,98,46,116,111,83,116,114,105,110,103,40,41,46,115,112,108,105,116,40,34,46,34,41,91,49,93,44,101,61,100,46,116,111,83,116,114,105,110,103,40,41,46,115,112,108,105,116,40,34,46,34,41,91,49,93,44,103,44,108,44,102,61,48,44,104,61,48,59,10,105,102,40,48,61,61,61,97,41,114,101,116,117,114,110,32,116,104,105,115,46,111,112,116,105,111,110,115,46,109,105,110,59,105,102,40,49,48,48,61,61,61,97,41,114,101,116,117,114,110,32,116,104,105,115,46,111,112,116,105,111,110,115,46,109,97,120,59,99,38,38,40,102,61,103,61,99,46,108,101,110,103,116,104,41,59,101,38,38,40,102,61,108,61,101,46,108,101,110,103,116,104,41,59,103,38,38,108,38,38,40,102,61,103,62,61,108,63,103,58,108,41,59,48,62,98,38,38,40,104,61,77,97,116,104,46,97,98,115,40,98,41,44,98,61,43,40,98,43,104,41,46,116,111,70,105,120,101,100,40,102,41,44,100,61,43,40,100,43,104,41,46,116,111,70,105,120,101,100,40,102,41,41,59,97,61,40,100,45,98,41,47,49,48,48,42,97,43,98,59,40,98,61,116,104,105,115,46,111,112,116,105,111,110,115,46,115,116,101,112,46,116,111,83,116,114,105,110,103,40,41,46,115,112,108,105,116,40,34,46,34,41,91,49,93,41,63,97,61,43,97,46,116,111,70,105,120,101,100,40,98,46,108,101,110,103,116,104,41,58,40,97,47,61,116,104,105,115,46,111,112,116,105,111,110,115,46,115,116,101,112,44,97,42,61,116,104,105,115,46,111,112,116,105,111,110,115,46,115,116,101,112,44,97,61,43,97,46,116,111,70,105,120,101,100,40,48,41,41,59,104,38,38,40,97,45,61,104,41,59,104,61,98,63,43,97,46,116,111,70,105,120,101,100,40,98,46,108,101,110,103,116,104,41,58,116,104,105,115,46,116,111,70,105,120,101,100,40,97,41,59,104,60,116,104,105,115,46,111,112,116,105,111,110,115,46,109,105,110,63,104,61,116,104,105,115,46,111,112,116,105,111,110,115,46,109,105,110,58,104,62,116,104,105,115,46,111,112,116,105,111,110,115,46,109,97,120,38,38,40,104,61,116,104,105,115,46,111,112,116,105,111,110,115,46,109,97,120,41,59,114,101,116,117,114,110,32,104,125,44,99,97,108,99,87,105,116,104,83,116,101,112,58,102,117,110,99,116,105,111,110,40,97,41,123,118,97,114,32,98,61,10,77,97,116,104,46,114,111,117,110,100,40,97,47,116,104,105,115,46,99,111,111,114,100,115,46,112,95,115,116,101,112,41,42,116,104,105,115,46,99,111,111,114,100,115,46,112,95,115,116,101,112,59,49,48,48,60,98,38,38,40,98,61,49,48,48,41,59,49,48,48,61,61,61,97,38,38,40,98,61,49,48,48,41,59,114,101,116,117,114,110,32,116,104,105,115,46,116,111,70,105,120,101,100,40,98,41,125,44,99,104,101,99,107,77,105,110,73,110,116,101,114,118,97,108,58,102,117,110,99,116,105,111,110,40,97,44,98,44,100,41,123,118,97,114,32,99,61,116,104,105,115,46,111,112,116,105,111,110,115,59,105,102,40,33,99,46,109,105,110,95,105,110,116,101,114,118,97,108,41,114,101,116,117,114,110,32,97,59,97,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,86,97,108,117,101,40,97,41,59,98,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,86,97,108,117,101,40,98,41,59,34,102,114,111,109,34,61,61,61,100,63,98,45,97,60,99,46,109,105,110,95,105,110,116,101,114,118,97,108,38,38,40,97,61,98,45,99,46,109,105,110,95,105,110,116,101,114,118,97,108,41,58,97,45,98,60,99,46,109,105,110,95,105,110,116,101,114,118,97,108,38,38,40,97,61,98,43,99,46,109,105,110,95,105,110,116,101,114,118,97,108,41,59,114,101,116,117,114,110,32,116,104,105,115,46,99,111,110,118,101,114,116,84,111,80,101,114,99,101,110,116,40,97,41,125,44,99,104,101,99,107,77,97,120,73,110,116,101,114,118,97,108,58,102,117,110,99,116,105,111,110,40,97,44,98,44,100,41,123,118,97,114,32,99,61,116,104,105,115,46,111,112,116,105,111,110,115,59,105,102,40,33,99,46,109,97,120,95,105,110,116,101,114,118,97,108,41,114,101,116,117,114,110,32,97,59,97,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,86,97,108,117,101,40,97,41,59,98,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,86,97,108,117,101,40,98,41,59,34,102,114,111,109,34,61,61,61,10,100,63,98,45,97,62,99,46,109,97,120,95,105,110,116,101,114,118,97,108,38,38,40,97,61,98,45,99,46,109,97,120,95,105,110,116,101,114,118,97,108,41,58,97,45,98,62,99,46,109,97,120,95,105,110,116,101,114,118,97,108,38,38,40,97,61,98,43,99,46,109,97,120,95,105,110,116,101,114,118,97,108,41,59,114,101,116,117,114,110,32,116,104,105,115,46,99,111,110,118,101,114,116,84,111,80,101,114,99,101,110,116,40,97,41,125,44,99,104,101,99,107,68,105,97,112,97,115,111,110,58,102,117,110,99,116,105,111,110,40,97,44,98,44,100,41,123,97,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,86,97,108,117,101,40,97,41,59,118,97,114,32,99,61,116,104,105,115,46,111,112,116,105,111,110,115,59,34,110,117,109,98,101,114,34,33,61,61,116,121,112,101,111,102,32,98,38,38,40,98,61,99,46,109,105,110,41,59,34,110,117,109,98,101,114,34,33,61,61,116,121,112,101,111,102,32,100,38,38,40,100,61,99,46,109,97,120,41,59,97,60,98,38,38,40,97,61,98,41,59,97,62,100,38,38,40,97,61,100,41,59,114,101,116,117,114,110,32,116,104,105,115,46,99,111,110,118,101,114,116,84,111,80,101,114,99,101,110,116,40,97,41,125,44,116,111,70,105,120,101,100,58,102,117,110,99,116,105,111,110,40,97,41,123,97,61,97,46,116,111,70,105,120,101,100,40,50,48,41,59,114,101,116,117,114,110,43,97,125,44,95,112,114,101,116,116,105,102,121,58,102,117,110,99,116,105,111,110,40,97,41,123,114,101,116,117,114,110,32,116,104,105,115,46,111,112,116,105,111,110,115,46,112,114,101,116,116,105,102,121,95,101,110,97,98,108,101,100,63,116,104,105,115,46,111,112,116,105,111,110,115,46,112,114,101,116,116,105,102,121,38,38,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,116,104,105,115,46,111,112,116,105,111,110,115,46,112,114,101,116,116,105,102,121,63,116,104,105,115,46,111,112,116,105,111,110,115,46,112,114,101,116,116,105,102,121,40,97,41,58,10,116,104,105,115,46,112,114,101,116,116,105,102,121,40,97,41,58,97,125,44,112,114,101,116,116,105,102,121,58,102,117,110,99,116,105,111,110,40,97,41,123,114,101,116,117,114,110,32,97,46,116,111,83,116,114,105,110,103,40,41,46,114,101,112,108,97,99,101,40,47,40,92,100,123,49,44,51,125,40,63,61,40,63,58,92,100,92,100,92,100,41,43,40,63,33,92,100,41,41,41,47,103,44,34,36,49,34,43,116,104,105,115,46,111,112,116,105,111,110,115,46,112,114,101,116,116,105,102,121,95,115,101,112,97,114,97,116,111,114,41,125,44,99,104,101,99,107,69,100,103,101,115,58,102,117,110,99,116,105,111,110,40,97,44,98,41,123,105,102,40,33,116,104,105,115,46,111,112,116,105,111,110,115,46,102,111,114,99,101,95,101,100,103,101,115,41,114,101,116,117,114,110,32,116,104,105,115,46,116,111,70,105,120,101,100,40,97,41,59,48,62,97,63,97,61,48,58,97,62,49,48,48,45,98,38,38,40,97,61,49,48,48,45,98,41,59,114,101,116,117,114,110,32,116,104,105,115,46,116,111,70,105,120,101,100,40,97,41,125,44,118,97,108,105,100,97,116,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,97,61,116,104,105,115,46,111,112,116,105,111,110,115,44,98,61,116,104,105,115,46,114,101,115,117,108,116,44,100,61,97,46,118,97,108,117,101,115,44,99,61,100,46,108,101,110,103,116,104,44,101,59,34,115,116,114,105,110,103,34,61,61,61,116,121,112,101,111,102,32,97,46,109,105,110,38,38,40,97,46,109,105,110,61,43,97,46,109,105,110,41,59,34,115,116,114,105,110,103,34,61,61,61,116,121,112,101,111,102,32,97,46,109,97,120,38,38,40,97,46,109,97,120,61,43,97,46,109,97,120,41,59,34,115,116,114,105,110,103,34,61,61,61,116,121,112,101,111,102,32,97,46,102,114,111,109,38,38,40,97,46,102,114,111,109,61,43,97,46,102,114,111,109,41,59,34,115,116,114,105,110,103,34,61,61,61,116,121,112,101,111,102,32,97,46,116,111,38,38,40,97,46,116,111,61,43,97,46,116,111,41,59,10,34,115,116,114,105,110,103,34,61,61,61,116,121,112,101,111,102,32,97,46,115,116,101,112,38,38,40,97,46,115,116,101,112,61,43,97,46,115,116,101,112,41,59,34,115,116,114,105,110,103,34,61,61,61,116,121,112,101,111,102,32,97,46,102,114,111,109,95,109,105,110,38,38,40,97,46,102,114,111,109,95,109,105,110,61,43,97,46,102,114,111,109,95,109,105,110,41,59,34,115,116,114,105,110,103,34,61,61,61,116,121,112,101,111,102,32,97,46,102,114,111,109,95,109,97,120,38,38,40,97,46,102,114,111,109,95,109,97,120,61,43,97,46,102,114,111,109,95,109,97,120,41,59,34,115,116,114,105,110,103,34,61,61,61,116,121,112,101,111,102,32,97,46,116,111,95,109,105,110,38,38,40,97,46,116,111,95,109,105,110,61,43,97,46,116,111,95,109,105,110,41,59,34,115,116,114,105,110,103,34,61,61,61,116,121,112,101,111,102,32,97,46,116,111,95,109,97,120,38,38,40,97,46,116,111,95,109,97,120,61,43,97,46,116,111,95,109,97,120,41,59,34,115,116,114,105,110,103,34,61,61,61,116,121,112,101,111,102,32,97,46,103,114,105,100,95,110,117,109,38,38,40,97,46,103,114,105,100,95,110,117,109,61,43,97,46,103,114,105,100,95,110,117,109,41,59,97,46,109,97,120,60,97,46,109,105,110,38,38,40,97,46,109,97,120,61,97,46,109,105,110,41,59,105,102,40,99,41,102,111,114,40,97,46,112,95,118,97,108,117,101,115,61,91,93,44,97,46,109,105,110,61,48,44,97,46,109,97,120,61,99,45,49,44,97,46,115,116,101,112,61,49,44,97,46,103,114,105,100,95,110,117,109,61,97,46,109,97,120,44,97,46,103,114,105,100,95,115,110,97,112,61,33,48,44,101,61,48,59,101,60,99,59,101,43,43,41,123,118,97,114,32,103,61,43,100,91,101,93,59,105,115,78,97,78,40,103,41,63,103,61,100,91,101,93,58,40,100,91,101,93,61,103,44,103,61,116,104,105,115,46,95,112,114,101,116,116,105,102,121,40,103,41,41,59,97,46,112,95,118,97,108,117,101,115,46,112,117,115,104,40,103,41,125,105,102,40,34,110,117,109,98,101,114,34,33,61,61,10,116,121,112,101,111,102,32,97,46,102,114,111,109,124,124,105,115,78,97,78,40,97,46,102,114,111,109,41,41,97,46,102,114,111,109,61,97,46,109,105,110,59,105,102,40,34,110,117,109,98,101,114,34,33,61,61,116,121,112,101,111,102,32,97,46,116,111,124,124,105,115,78,97,78,40,97,46,116,111,41,41,97,46,116,111,61,97,46,109,97,120,59,34,115,105,110,103,108,101,34,61,61,61,97,46,116,121,112,101,63,40,97,46,102,114,111,109,60,97,46,109,105,110,38,38,40,97,46,102,114,111,109,61,97,46,109,105,110,41,44,97,46,102,114,111,109,62,97,46,109,97,120,38,38,40,97,46,102,114,111,109,61,97,46,109,97,120,41,41,58,40,97,46,102,114,111,109,60,97,46,109,105,110,38,38,40,97,46,102,114,111,109,61,97,46,109,105,110,41,44,97,46,102,114,111,109,62,97,46,109,97,120,38,38,40,97,46,102,114,111,109,61,97,46,109,97,120,41,44,97,46,116,111,60,97,46,109,105,110,38,38,40,97,46,116,111,61,97,46,109,105,110,41,44,97,46,116,111,62,97,46,109,97,120,38,38,40,97,46,116,111,61,97,46,109,97,120,41,44,116,104,105,115,46,117,112,100,97,116,101,95,99,104,101,99,107,46,102,114,111,109,38,38,40,116,104,105,115,46,117,112,100,97,116,101,95,99,104,101,99,107,46,102,114,111,109,33,61,61,97,46,102,114,111,109,38,38,97,46,102,114,111,109,62,97,46,116,111,38,38,40,97,46,102,114,111,109,61,97,46,116,111,41,44,116,104,105,115,46,117,112,100,97,116,101,95,99,104,101,99,107,46,116,111,33,61,61,97,46,116,111,38,38,97,46,116,111,60,97,46,102,114,111,109,38,38,40,97,46,116,111,61,97,46,102,114,111,109,41,41,44,97,46,102,114,111,109,62,97,46,116,111,38,38,40,97,46,102,114,111,109,61,97,46,116,111,41,44,97,46,116,111,60,97,46,102,114,111,109,38,38,40,97,46,116,111,61,97,46,102,114,111,109,41,41,59,105,102,40,34,110,117,109,98,101,114,34,33,61,61,116,121,112,101,111,102,32,97,46,115,116,101,112,124,124,10,105,115,78,97,78,40,97,46,115,116,101,112,41,124,124,33,97,46,115,116,101,112,124,124,48,62,97,46,115,116,101,112,41,97,46,115,116,101,112,61,49,59,34,110,117,109,98,101,114,34,61,61,61,116,121,112,101,111,102,32,97,46,102,114,111,109,95,109,105,110,38,38,97,46,102,114,111,109,60,97,46,102,114,111,109,95,109,105,110,38,38,40,97,46,102,114,111,109,61,97,46,102,114,111,109,95,109,105,110,41,59,34,110,117,109,98,101,114,34,61,61,61,116,121,112,101,111,102,32,97,46,102,114,111,109,95,109,97,120,38,38,97,46,102,114,111,109,62,97,46,102,114,111,109,95,109,97,120,38,38,40,97,46,102,114,111,109,61,97,46,102,114,111,109,95,109,97,120,41,59,34,110,117,109,98,101,114,34,61,61,61,116,121,112,101,111,102,32,97,46,116,111,95,109,105,110,38,38,97,46,116,111,60,97,46,116,111,95,109,105,110,38,38,40,97,46,116,111,61,97,46,116,111,95,109,105,110,41,59,34,110,117,109,98,101,114,34,61,61,61,116,121,112,101,111,102,32,97,46,116,111,95,109,97,120,38,38,97,46,102,114,111,109,62,97,46,116,111,95,109,97,120,38,38,40,97,46,116,111,61,97,46,116,111,95,109,97,120,41,59,105,102,40,98,41,123,98,46,109,105,110,33,61,61,97,46,109,105,110,38,38,40,98,46,109,105,110,61,97,46,109,105,110,41,59,98,46,109,97,120,33,61,61,97,46,109,97,120,38,38,40,98,46,109,97,120,61,97,46,109,97,120,41,59,105,102,40,98,46,102,114,111,109,60,98,46,109,105,110,124,124,98,46,102,114,111,109,62,98,46,109,97,120,41,98,46,102,114,111,109,61,97,46,102,114,111,109,59,105,102,40,98,46,116,111,60,98,46,109,105,110,124,124,98,46,116,111,62,98,46,109,97,120,41,98,46,116,111,61,97,46,116,111,125,105,102,40,34,110,117,109,98,101,114,34,33,61,61,116,121,112,101,111,102,32,97,46,109,105,110,95,105,110,116,101,114,118,97,108,124,124,105,115,78,97,78,40,97,46,109,105,110,95,105,110,116,101,114,118,97,108,41,124,124,10,33,97,46,109,105,110,95,105,110,116,101,114,118,97,108,124,124,48,62,97,46,109,105,110,95,105,110,116,101,114,118,97,108,41,97,46,109,105,110,95,105,110,116,101,114,118,97,108,61,48,59,105,102,40,34,110,117,109,98,101,114,34,33,61,61,116,121,112,101,111,102,32,97,46,109,97,120,95,105,110,116,101,114,118,97,108,124,124,105,115,78,97,78,40,97,46,109,97,120,95,105,110,116,101,114,118,97,108,41,124,124,33,97,46,109,97,120,95,105,110,116,101,114,118,97,108,124,124,48,62,97,46,109,97,120,95,105,110,116,101,114,118,97,108,41,97,46,109,97,120,95,105,110,116,101,114,118,97,108,61,48,59,97,46,109,105,110,95,105,110,116,101,114,118,97,108,38,38,97,46,109,105,110,95,105,110,116,101,114,118,97,108,62,97,46,109,97,120,45,97,46,109,105,110,38,38,40,97,46,109,105,110,95,105,110,116,101,114,118,97,108,61,97,46,109,97,120,45,97,46,109,105,110,41,59,97,46,109,97,120,95,105,110,116,101,114,118,97,108,38,38,97,46,109,97,120,95,105,110,116,101,114,118,97,108,62,97,46,109,97,120,45,97,46,109,105,110,38,38,40,97,46,109,97,120,95,105,110,116,101,114,118,97,108,61,97,46,109,97,120,45,97,46,109,105,110,41,125,44,100,101,99,111,114,97,116,101,58,102,117,110,99,116,105,111,110,40,97,44,98,41,123,118,97,114,32,100,61,34,34,44,99,61,116,104,105,115,46,111,112,116,105,111,110,115,59,99,46,112,114,101,102,105,120,38,38,40,100,43,61,99,46,112,114,101,102,105,120,41,59,100,43,61,97,59,99,46,109,97,120,95,112,111,115,116,102,105,120,38,38,40,99,46,118,97,108,117,101,115,46,108,101,110,103,116,104,38,38,97,61,61,61,99,46,112,95,118,97,108,117,101,115,91,99,46,109,97,120,93,63,40,100,43,61,99,46,109,97,120,95,112,111,115,116,102,105,120,44,99,46,112,111,115,116,102,105,120,38,38,40,100,43,61,34,32,34,41,41,58,98,61,61,61,99,46,109,97,120,38,38,40,100,43,61,99,46,109,97,120,95,112,111,115,116,102,105,120,44,10,99,46,112,111,115,116,102,105,120,38,38,40,100,43,61,34,32,34,41,41,41,59,99,46,112,111,115,116,102,105,120,38,38,40,100,43,61,99,46,112,111,115,116,102,105,120,41,59,114,101,116,117,114,110,32,100,125,44,117,112,100,97,116,101,70,114,111,109,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,61,116,104,105,115,46,111,112,116,105,111,110,115,46,102,114,111,109,59,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,95,112,101,114,99,101,110,116,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,80,101,114,99,101,110,116,40,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,41,59,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,95,112,114,101,116,116,121,61,116,104,105,115,46,95,112,114,101,116,116,105,102,121,40,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,41,59,116,104,105,115,46,111,112,116,105,111,110,115,46,118,97,108,117,101,115,38,38,40,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,95,118,97,108,117,101,61,116,104,105,115,46,111,112,116,105,111,110,115,46,118,97,108,117,101,115,91,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,93,41,125,44,117,112,100,97,116,101,84,111,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,114,101,115,117,108,116,46,116,111,61,116,104,105,115,46,111,112,116,105,111,110,115,46,116,111,59,116,104,105,115,46,114,101,115,117,108,116,46,116,111,95,112,101,114,99,101,110,116,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,80,101,114,99,101,110,116,40,116,104,105,115,46,114,101,115,117,108,116,46,116,111,41,59,116,104,105,115,46,114,101,115,117,108,116,46,116,111,95,112,114,101,116,116,121,61,116,104,105,115,46,95,112,114,101,116,116,105,102,121,40,116,104,105,115,46,114,101,115,117,108,116,46,116,111,41,59,116,104,105,115,46,111,112,116,105,111,110,115,46,118,97,108,117,101,115,38,38,10,40,116,104,105,115,46,114,101,115,117,108,116,46,116,111,95,118,97,108,117,101,61,116,104,105,115,46,111,112,116,105,111,110,115,46,118,97,108,117,101,115,91,116,104,105,115,46,114,101,115,117,108,116,46,116,111,93,41,125,44,117,112,100,97,116,101,82,101,115,117,108,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,114,101,115,117,108,116,46,109,105,110,61,116,104,105,115,46,111,112,116,105,111,110,115,46,109,105,110,59,116,104,105,115,46,114,101,115,117,108,116,46,109,97,120,61,116,104,105,115,46,111,112,116,105,111,110,115,46,109,97,120,59,116,104,105,115,46,117,112,100,97,116,101,70,114,111,109,40,41,59,116,104,105,115,46,117,112,100,97,116,101,84,111,40,41,125,44,97,112,112,101,110,100,71,114,105,100,58,102,117,110,99,116,105,111,110,40,41,123,105,102,40,116,104,105,115,46,111,112,116,105,111,110,115,46,103,114,105,100,41,123,118,97,114,32,97,61,116,104,105,115,46,111,112,116,105,111,110,115,44,98,59,118,97,114,32,100,61,97,46,109,97,120,45,97,46,109,105,110,59,118,97,114,32,99,61,97,46,103,114,105,100,95,110,117,109,44,101,61,52,44,103,61,34,34,59,116,104,105,115,46,99,97,108,99,71,114,105,100,77,97,114,103,105,110,40,41,59,105,102,40,97,46,103,114,105,100,95,115,110,97,112,41,105,102,40,53,48,60,100,41,123,99,61,53,48,47,97,46,115,116,101,112,59,118,97,114,32,102,61,116,104,105,115,46,116,111,70,105,120,101,100,40,97,46,115,116,101,112,47,46,53,41,125,101,108,115,101,32,99,61,100,47,97,46,115,116,101,112,44,102,61,116,104,105,115,46,116,111,70,105,120,101,100,40,97,46,115,116,101,112,47,40,100,47,49,48,48,41,41,59,101,108,115,101,32,102,61,116,104,105,115,46,116,111,70,105,120,101,100,40,49,48,48,47,99,41,59,52,60,99,38,38,40,101,61,51,41,59,55,60,99,38,38,40,101,61,50,41,59,49,52,60,99,38,38,40,101,61,49,41,59,50,56,60,99,38,38,40,101,61,48,41,59,10,102,111,114,40,100,61,48,59,100,60,99,43,49,59,100,43,43,41,123,118,97,114,32,107,61,101,59,118,97,114,32,104,61,116,104,105,115,46,116,111,70,105,120,101,100,40,102,42,100,41,59,49,48,48,60,104,38,38,40,104,61,49,48,48,41,59,116,104,105,115,46,99,111,111,114,100,115,46,98,105,103,91,100,93,61,104,59,118,97,114,32,109,61,40,104,45,102,42,40,100,45,49,41,41,47,40,107,43,49,41,59,102,111,114,40,98,61,49,59,98,60,61,107,38,38,48,33,61,61,104,59,98,43,43,41,123,118,97,114,32,110,61,116,104,105,115,46,116,111,70,105,120,101,100,40,104,45,109,42,98,41,59,103,43,61,39,60,115,112,97,110,32,99,108,97,115,115,61,34,105,114,115,45,103,114,105,100,45,112,111,108,32,115,109,97,108,108,34,32,115,116,121,108,101,61,34,108,101,102,116,58,32,39,43,110,43,39,37,34,62,60,47,115,112,97,110,62,39,125,103,43,61,39,60,115,112,97,110,32,99,108,97,115,115,61,34,105,114,115,45,103,114,105,100,45,112,111,108,34,32,115,116,121,108,101,61,34,108,101,102,116,58,32,39,43,104,43,39,37,34,62,60,47,115,112,97,110,62,39,59,98,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,86,97,108,117,101,40,104,41,59,98,61,97,46,118,97,108,117,101,115,46,108,101,110,103,116,104,63,97,46,112,95,118,97,108,117,101,115,91,98,93,58,116,104,105,115,46,95,112,114,101,116,116,105,102,121,40,98,41,59,103,43,61,39,60,115,112,97,110,32,99,108,97,115,115,61,34,105,114,115,45,103,114,105,100,45,116,101,120,116,32,106,115,45,103,114,105,100,45,116,101,120,116,45,39,43,100,43,39,34,32,115,116,121,108,101,61,34,108,101,102,116,58,32,39,43,104,43,39,37,34,62,39,43,98,43,34,60,47,115,112,97,110,62,34,125,116,104,105,115,46,99,111,111,114,100,115,46,98,105,103,95,110,117,109,61,77,97,116,104,46,99,101,105,108,40,99,43,49,41,59,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,97,100,100,67,108,97,115,115,40,34,105,114,115,45,119,105,116,104,45,103,114,105,100,34,41,59,10,116,104,105,115,46,36,99,97,99,104,101,46,103,114,105,100,46,104,116,109,108,40,103,41,59,116,104,105,115,46,99,97,99,104,101,71,114,105,100,76,97,98,101,108,115,40,41,125,125,44,99,97,99,104,101,71,114,105,100,76,97,98,101,108,115,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,97,44,98,61,116,104,105,115,46,99,111,111,114,100,115,46,98,105,103,95,110,117,109,59,102,111,114,40,97,61,48,59,97,60,98,59,97,43,43,41,123,118,97,114,32,100,61,116,104,105,115,46,36,99,97,99,104,101,46,103,114,105,100,46,102,105,110,100,40,34,46,106,115,45,103,114,105,100,45,116,101,120,116,45,34,43,97,41,59,116,104,105,115,46,36,99,97,99,104,101,46,103,114,105,100,95,108,97,98,101,108,115,46,112,117,115,104,40,100,41,125,116,104,105,115,46,99,97,108,99,71,114,105,100,76,97,98,101,108,115,40,41,125,44,99,97,108,99,71,114,105,100,76,97,98,101,108,115,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,97,59,118,97,114,32,98,61,91,93,59,118,97,114,32,100,61,91,93,44,99,61,116,104,105,115,46,99,111,111,114,100,115,46,98,105,103,95,110,117,109,59,102,111,114,40,97,61,48,59,97,60,99,59,97,43,43,41,116,104,105,115,46,99,111,111,114,100,115,46,98,105,103,95,119,91,97,93,61,116,104,105,115,46,36,99,97,99,104,101,46,103,114,105,100,95,108,97,98,101,108,115,91,97,93,46,111,117,116,101,114,87,105,100,116,104,40,33,49,41,44,116,104,105,115,46,99,111,111,114,100,115,46,98,105,103,95,112,91,97,93,61,116,104,105,115,46,116,111,70,105,120,101,100,40,116,104,105,115,46,99,111,111,114,100,115,46,98,105,103,95,119,91,97,93,47,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,42,49,48,48,41,44,116,104,105,115,46,99,111,111,114,100,115,46,98,105,103,95,120,91,97,93,61,116,104,105,115,46,116,111,70,105,120,101,100,40,116,104,105,115,46,99,111,111,114,100,115,46,98,105,103,95,112,91,97,93,47,10,50,41,44,98,91,97,93,61,116,104,105,115,46,116,111,70,105,120,101,100,40,116,104,105,115,46,99,111,111,114,100,115,46,98,105,103,91,97,93,45,116,104,105,115,46,99,111,111,114,100,115,46,98,105,103,95,120,91,97,93,41,44,100,91,97,93,61,116,104,105,115,46,116,111,70,105,120,101,100,40,98,91,97,93,43,116,104,105,115,46,99,111,111,114,100,115,46,98,105,103,95,112,91,97,93,41,59,116,104,105,115,46,111,112,116,105,111,110,115,46,102,111,114,99,101,95,101,100,103,101,115,38,38,40,98,91,48,93,60,45,116,104,105,115,46,99,111,111,114,100,115,46,103,114,105,100,95,103,97,112,38,38,40,98,91,48,93,61,45,116,104,105,115,46,99,111,111,114,100,115,46,103,114,105,100,95,103,97,112,44,100,91,48,93,61,116,104,105,115,46,116,111,70,105,120,101,100,40,98,91,48,93,43,116,104,105,115,46,99,111,111,114,100,115,46,98,105,103,95,112,91,48,93,41,44,116,104,105,115,46,99,111,111,114,100,115,46,98,105,103,95,120,91,48,93,61,116,104,105,115,46,99,111,111,114,100,115,46,103,114,105,100,95,103,97,112,41,44,100,91,99,45,49,93,62,49,48,48,43,116,104,105,115,46,99,111,111,114,100,115,46,103,114,105,100,95,103,97,112,38,38,40,100,91,99,45,49,93,61,49,48,48,43,116,104,105,115,46,99,111,111,114,100,115,46,103,114,105,100,95,103,97,112,44,98,91,99,45,49,93,61,116,104,105,115,46,116,111,70,105,120,101,100,40,100,91,99,45,49,93,45,116,104,105,115,46,99,111,111,114,100,115,46,98,105,103,95,112,91,99,45,49,93,41,44,116,104,105,115,46,99,111,111,114,100,115,46,98,105,103,95,120,91,99,45,49,93,61,116,104,105,115,46,116,111,70,105,120,101,100,40,116,104,105,115,46,99,111,111,114,100,115,46,98,105,103,95,112,91,99,45,49,93,45,116,104,105,115,46,99,111,111,114,100,115,46,103,114,105,100,95,103,97,112,41,41,41,59,116,104,105,115,46,99,97,108,99,71,114,105,100,67,111,108,108,105,115,105,111,110,40,50,44,10,98,44,100,41,59,116,104,105,115,46,99,97,108,99,71,114,105,100,67,111,108,108,105,115,105,111,110,40,52,44,98,44,100,41,59,102,111,114,40,97,61,48,59,97,60,99,59,97,43,43,41,98,61,116,104,105,115,46,36,99,97,99,104,101,46,103,114,105,100,95,108,97,98,101,108,115,91,97,93,91,48,93,44,116,104,105,115,46,99,111,111,114,100,115,46,98,105,103,95,120,91,97,93,33,61,61,78,117,109,98,101,114,46,80,79,83,73,84,73,86,69,95,73,78,70,73,78,73,84,89,38,38,40,98,46,115,116,121,108,101,46,109,97,114,103,105,110,76,101,102,116,61,45,116,104,105,115,46,99,111,111,114,100,115,46,98,105,103,95,120,91,97,93,43,34,37,34,41,125,44,99,97,108,99,71,114,105,100,67,111,108,108,105,115,105,111,110,58,102,117,110,99,116,105,111,110,40,97,44,98,44,100,41,123,118,97,114,32,99,44,101,61,116,104,105,115,46,99,111,111,114,100,115,46,98,105,103,95,110,117,109,59,102,111,114,40,99,61,48,59,99,60,101,59,99,43,61,97,41,123,118,97,114,32,103,61,99,43,97,47,50,59,105,102,40,103,62,61,101,41,98,114,101,97,107,59,118,97,114,32,102,61,116,104,105,115,46,36,99,97,99,104,101,46,103,114,105,100,95,108,97,98,101,108,115,91,103,93,91,48,93,59,102,46,115,116,121,108,101,46,118,105,115,105,98,105,108,105,116,121,61,100,91,99,93,60,61,98,91,103,93,63,34,118,105,115,105,98,108,101,34,58,34,104,105,100,100,101,110,34,125,125,44,99,97,108,99,71,114,105,100,77,97,114,103,105,110,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,111,112,116,105,111,110,115,46,103,114,105,100,95,109,97,114,103,105,110,38,38,40,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,61,116,104,105,115,46,36,99,97,99,104,101,46,114,115,46,111,117,116,101,114,87,105,100,116,104,40,33,49,41,44,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,38,38,40,116,104,105,115,46,99,111,111,114,100,115,46,119,95,104,97,110,100,108,101,61,10,34,115,105,110,103,108,101,34,61,61,61,116,104,105,115,46,111,112,116,105,111,110,115,46,116,121,112,101,63,116,104,105,115,46,36,99,97,99,104,101,46,115,95,115,105,110,103,108,101,46,111,117,116,101,114,87,105,100,116,104,40,33,49,41,58,116,104,105,115,46,36,99,97,99,104,101,46,115,95,102,114,111,109,46,111,117,116,101,114,87,105,100,116,104,40,33,49,41,44,116,104,105,115,46,99,111,111,114,100,115,46,112,95,104,97,110,100,108,101,61,116,104,105,115,46,116,111,70,105,120,101,100,40,116,104,105,115,46,99,111,111,114,100,115,46,119,95,104,97,110,100,108,101,47,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,42,49,48,48,41,44,116,104,105,115,46,99,111,111,114,100,115,46,103,114,105,100,95,103,97,112,61,116,104,105,115,46,116,111,70,105,120,101,100,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,104,97,110,100,108,101,47,50,45,46,49,41,44,116,104,105,115,46,36,99,97,99,104,101,46,103,114,105,100,91,48,93,46,115,116,121,108,101,46,119,105,100,116,104,61,116,104,105,115,46,116,111,70,105,120,101,100,40,49,48,48,45,116,104,105,115,46,99,111,111,114,100,115,46,112,95,104,97,110,100,108,101,41,43,34,37,34,44,116,104,105,115,46,36,99,97,99,104,101,46,103,114,105,100,91,48,93,46,115,116,121,108,101,46,108,101,102,116,61,116,104,105,115,46,99,111,111,114,100,115,46,103,114,105,100,95,103,97,112,43,34,37,34,41,41,125,44,117,112,100,97,116,101,58,102,117,110,99,116,105,111,110,40,97,41,123,116,104,105,115,46,105,110,112,117,116,38,38,40,116,104,105,115,46,105,115,95,117,112,100,97,116,101,61,33,48,44,116,104,105,115,46,111,112,116,105,111,110,115,46,102,114,111,109,61,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,44,116,104,105,115,46,111,112,116,105,111,110,115,46,116,111,61,116,104,105,115,46,114,101,115,117,108,116,46,116,111,44,116,104,105,115,46,117,112,100,97,116,101,95,99,104,101,99,107,46,102,114,111,109,61,10,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,44,116,104,105,115,46,117,112,100,97,116,101,95,99,104,101,99,107,46,116,111,61,116,104,105,115,46,114,101,115,117,108,116,46,116,111,44,116,104,105,115,46,111,112,116,105,111,110,115,61,102,46,101,120,116,101,110,100,40,116,104,105,115,46,111,112,116,105,111,110,115,44,97,41,44,116,104,105,115,46,118,97,108,105,100,97,116,101,40,41,44,116,104,105,115,46,117,112,100,97,116,101,82,101,115,117,108,116,40,97,41,44,116,104,105,115,46,116,111,103,103,108,101,73,110,112,117,116,40,41,44,116,104,105,115,46,114,101,109,111,118,101,40,41,44,116,104,105,115,46,105,110,105,116,40,33,48,41,41,125,44,114,101,115,101,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,105,110,112,117,116,38,38,40,116,104,105,115,46,117,112,100,97,116,101,82,101,115,117,108,116,40,41,44,116,104,105,115,46,117,112,100,97,116,101,40,41,41,125,44,100,101,115,116,114,111,121,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,105,110,112,117,116,38,38,40,116,104,105,115,46,116,111,103,103,108,101,73,110,112,117,116,40,41,44,116,104,105,115,46,36,99,97,99,104,101,46,105,110,112,117,116,46,112,114,111,112,40,34,114,101,97,100,111,110,108,121,34,44,33,49,41,44,102,46,100,97,116,97,40,116,104,105,115,46,105,110,112,117,116,44,34,105,111,110,82,97,110,103,101,83,108,105,100,101,114,34,44,110,117,108,108,41,44,116,104,105,115,46,114,101,109,111,118,101,40,41,44,116,104,105,115,46,111,112,116,105,111,110,115,61,116,104,105,115,46,105,110,112,117,116,61,110,117,108,108,41,125,125,59,102,46,102,110,46,105,111,110,82,97,110,103,101,83,108,105,100,101,114,61,102,117,110,99,116,105,111,110,40,97,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,102,46,100,97,116,97,40,116,104,105,115,44,34,105,111,110,82,97,110,103,101,83,108,105,100,101,114,34,41,124,124,10,102,46,100,97,116,97,40,116,104,105,115,44,34,105,111,110,82,97,110,103,101,83,108,105,100,101,114,34,44,110,101,119,32,113,40,116,104,105,115,44,97,44,116,43,43,41,41,125,41,125,59,40,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,118,97,114,32,97,61,48,44,98,61,91,34,109,115,34,44,34,109,111,122,34,44,34,119,101,98,107,105,116,34,44,34,111,34,93,44,100,61,48,59,100,60,98,46,108,101,110,103,116,104,38,38,33,107,46,114,101,113,117,101,115,116,65,110,105,109,97,116,105,111,110,70,114,97,109,101,59,43,43,100,41,107,46,114,101,113,117,101,115,116,65,110,105,109,97,116,105,111,110,70,114,97,109,101,61,107,91,98,91,100,93,43,34,82,101,113,117,101,115,116,65,110,105,109,97,116,105,111,110,70,114,97,109,101,34,93,44,107,46,99,97,110,99,101,108,65,110,105,109,97,116,105,111,110,70,114,97,109,101,61,107,91,98,91,100,93,43,34,67,97,110,99,101,108,65,110,105,109,97,116,105,111,110,70,114,97,109,101,34,93,124,124,107,91,98,91,100,93,43,34,67,97,110,99,101,108,82,101,113,117,101,115,116,65,110,105,109,97,116,105,111,110,70,114,97,109,101,34,93,59,107,46,114,101,113,117,101,115,116,65,110,105,109,97,116,105,111,110,70,114,97,109,101,124,124,40,107,46,114,101,113,117,101,115,116,65,110,105,109,97,116,105,111,110,70,114,97,109,101,61,102,117,110,99,116,105,111,110,40,98,44,100,41,123,118,97,114,32,99,61,40,110,101,119,32,68,97,116,101,41,46,103,101,116,84,105,109,101,40,41,44,101,61,77,97,116,104,46,109,97,120,40,48,44,49,54,45,40,99,45,97,41,41,44,102,61,107,46,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,40,41,123,98,40,99,43,101,41,125,44,101,41,59,97,61,99,43,101,59,114,101,116,117,114,110,32,102,125,41,59,107,46,99,97,110,99,101,108,65,110,105,109,97,116,105,111,110,70,114,97,109,101,124,124,40,107,46,99,97,110,99,101,108,65,110,105,109,97,116,105,111,110,70,114,97,109,101,61,10,102,117,110,99,116,105,111,110,40,97,41,123,99,108,101,97,114,84,105,109,101,111,117,116,40,97,41,125,41,125,41,40,41,125,41,59,10,10,47,42,33,32,76,105,116,121,32,45,32,118,51,46,48,46,48,45,100,101,118,32,45,32,50,48,49,57,45,48,56,45,48,55,10,42,32,104,116,116,112,58,47,47,115,111,114,103,97,108,108,97,46,99,111,109,47,108,105,116,121,47,10,42,32,67,111,112,121,114,105,103,104,116,32,40,99,41,32,50,48,49,53,45,50,48,49,57,32,74,97,110,32,83,111,114,103,97,108,108,97,59,32,76,105,99,101,110,115,101,100,32,77,73,84,32,42,47,10,10,33,102,117,110,99,116,105,111,110,40,97,44,98,41,123,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,100,101,102,105,110,101,38,38,100,101,102,105,110,101,46,97,109,100,63,100,101,102,105,110,101,40,91,34,106,113,117,101,114,121,34,93,44,102,117,110,99,116,105,111,110,40,99,41,123,114,101,116,117,114,110,32,98,40,97,44,99,41,125,41,58,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,109,111,100,117,108,101,38,38,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,109,111,100,117,108,101,46,101,120,112,111,114,116,115,63,109,111,100,117,108,101,46,101,120,112,111,114,116,115,61,98,40,97,44,114,101,113,117,105,114,101,40,34,106,113,117,101,114,121,34,41,41,58,97,46,108,105,116,121,61,98,40,97,44,97,46,106,81,117,101,114,121,124,124,97,46,90,101,112,116,111,41,125,40,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,119,105,110,100,111,119,63,119,105,110,100,111,119,58,116,104,105,115,44,102,117,110,99,116,105,111,110,40,97,44,98,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,102,117,110,99,116,105,111,110,32,99,40,97,41,123,118,97,114,32,98,61,121,40,41,59,114,101,116,117,114,110,32,71,38,38,97,46,108,101,110,103,116,104,63,40,97,46,111,110,101,40,71,44,98,46,114,101,115,111,108,118,101,41,44,115,101,116,84,105,109,101,111,117,116,40,98,46,114,101,115,111,108,118,101,44,53,48,48,41,41,58,98,46,114,101,115,111,108,118,101,40,41,44,98,46,112,114,111,109,105,115,101,40,41,125,102,117,110,99,116,105,111,110,32,100,40,97,44,99,44,100,41,123,105,102,40,49,61,61,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,114,101,116,117,114,110,32,98,46,101,120,116,101,110,100,40,123,125,44,97,41,59,105,102,40,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,99,41,123,105,102,40,118,111,105,100,32,48,61,61,61,100,41,114,101,116,117,114,110,32,118,111,105,100,32,48,61,61,61,97,91,99,93,63,110,117,108,108,58,97,91,99,93,59,97,91,99,93,61,100,125,101,108,115,101,32,98,46,101,120,116,101,110,100,40,97,44,99,41,59,114,101,116,117,114,110,32,116,104,105,115,125,102,117,110,99,116,105,111,110,32,101,40,97,41,123,118,97,114,32,98,61,97,46,105,110,100,101,120,79,102,40,34,63,34,41,59,98,62,45,49,38,38,40,97,61,97,46,115,117,98,115,116,114,40,98,43,49,41,41,59,102,111,114,40,118,97,114,32,99,44,100,61,100,101,99,111,100,101,85,82,73,40,97,46,115,112,108,105,116,40,34,35,34,41,91,48,93,41,46,115,112,108,105,116,40,34,38,34,41,44,101,61,123,125,44,102,61,48,44,103,61,100,46,108,101,110,103,116,104,59,102,60,103,59,102,43,43,41,100,91,102,93,38,38,40,99,61,100,91,102,93,46,115,112,108,105,116,40,34,61,34,41,44,101,91,99,91,48,93,93,61,99,91,49,93,41,59,114,101,116,117,114,110,32,101,125,102,117,110,99,116,105,111,110,32,102,40,97,44,99,41,123,105,102,40,33,99,41,114,101,116,117,114,110,32,97,59,105,102,40,34,115,116,114,105,110,103,34,61,61,61,98,46,116,121,112,101,40,99,41,38,38,40,99,61,101,40,99,41,41,44,97,46,105,110,100,101,120,79,102,40,34,63,34,41,62,45,49,41,123,118,97,114,32,100,61,97,46,115,112,108,105,116,40,34,63,34,41,59,97,61,100,46,115,104,105,102,116,40,41,44,99,61,98,46,101,120,116,101,110,100,40,123,125,44,101,40,100,91,48,93,41,44,99,41,125,114,101,116,117,114,110,32,97,43,34,63,34,43,98,46,112,97,114,97,109,40,99,41,125,102,117,110,99,116,105,111,110,32,103,40,97,44,98,41,123,118,97,114,32,99,61,97,46,105,110,100,101,120,79,102,40,34,35,34,41,59,114,101,116,117,114,110,45,49,61,61,61,99,63,98,58,40,99,62,48,38,38,40,97,61,97,46,115,117,98,115,116,114,40,99,41,41,44,98,43,97,41,125,102,117,110,99,116,105,111,110,32,104,40,97,44,98,44,99,44,100,41,123,114,101,116,117,114,110,32,98,38,38,98,46,101,108,101,109,101,110,116,40,41,46,97,100,100,67,108,97,115,115,40,34,108,105,116,121,45,105,102,114,97,109,101,34,41,44,99,38,38,40,97,61,102,40,97,44,99,41,41,44,100,38,38,40,97,61,103,40,100,44,97,41,41,44,39,60,100,105,118,32,99,108,97,115,115,61,34,108,105,116,121,45,105,102,114,97,109,101,45,99,111,110,116,97,105,110,101,114,34,62,60,105,102,114,97,109,101,32,102,114,97,109,101,98,111,114,100,101,114,61,34,48,34,32,97,108,108,111,119,102,117,108,108,115,99,114,101,101,110,32,97,108,108,111,119,61,34,102,117,108,108,115,99,114,101,101,110,34,32,115,114,99,61,34,39,43,97,43,39,34,47,62,60,47,100,105,118,62,39,125,102,117,110,99,116,105,111,110,32,105,40,97,41,123,114,101,116,117,114,110,32,98,40,39,60,115,112,97,110,32,99,108,97,115,115,61,34,108,105,116,121,45,101,114,114,111,114,34,47,62,39,41,46,97,112,112,101,110,100,40,97,41,125,102,117,110,99,116,105,111,110,32,106,40,97,44,99,41,123,118,97,114,32,100,61,99,46,111,112,101,110,101,114,40,41,38,38,99,46,111,112,101,110,101,114,40,41,46,100,97,116,97,40,34,108,105,116,121,45,100,101,115,99,34,41,124,124,34,105,109,103,34,44,101,61,98,40,39,60,105,109,103,32,115,114,99,61,34,39,43,97,43,39,34,32,97,108,116,61,34,39,43,100,43,39,34,47,62,39,41,44,102,61,121,40,41,44,103,61,102,117,110,99,116,105,111,110,40,41,123,102,46,114,101,106,101,99,116,40,105,40,34,70,97,105,108,101,100,32,108,111,97,100,105,110,103,32,105,109,97,103,101,34,41,41,125,59,114,101,116,117,114,110,32,101,46,111,110,40,34,108,111,97,100,34,44,102,117,110,99,116,105,111,110,40,41,123,105,102,40,48,61,61,61,116,104,105,115,46,110,97,116,117,114,97,108,87,105,100,116,104,41,114,101,116,117,114,110,32,103,40,41,59,102,46,114,101,115,111,108,118,101,40,101,41,125,41,46,111,110,40,34,101,114,114,111,114,34,44,103,41,44,102,46,112,114,111,109,105,115,101,40,41,125,102,117,110,99,116,105,111,110,32,107,40,97,44,99,41,123,118,97,114,32,100,44,101,44,102,59,116,114,121,123,100,61,98,40,97,41,125,99,97,116,99,104,40,97,41,123,114,101,116,117,114,110,33,49,125,114,101,116,117,114,110,33,33,100,46,108,101,110,103,116,104,38,38,40,101,61,98,40,39,60,105,32,115,116,121,108,101,61,34,100,105,115,112,108,97,121,58,110,111,110,101,32,33,105,109,112,111,114,116,97,110,116,34,47,62,39,41,44,102,61,100,46,104,97,115,67,108,97,115,115,40,34,108,105,116,121,45,104,105,100,101,34,41,44,99,46,101,108,101,109,101,110,116,40,41,46,111,110,101,40,34,108,105,116,121,58,114,101,109,111,118,101,34,44,102,117,110,99,116,105,111,110,40,41,123,101,46,98,101,102,111,114,101,40,100,41,46,114,101,109,111,118,101,40,41,44,102,38,38,33,100,46,99,108,111,115,101,115,116,40,34,46,108,105,116,121,45,99,111,110,116,101,110,116,34,41,46,108,101,110,103,116,104,38,38,100,46,97,100,100,67,108,97,115,115,40,34,108,105,116,121,45,104,105,100,101,34,41,125,41,44,100,46,114,101,109,111,118,101,67,108,97,115,115,40,34,108,105,116,121,45,104,105,100,101,34,41,46,97,102,116,101,114,40,101,41,41,125,102,117,110,99,116,105,111,110,32,108,40,97,44,98,41,123,114,101,116,117,114,110,32,104,40,97,44,98,41,125,102,117,110,99,116,105,111,110,32,109,40,41,123,114,101,116,117,114,110,32,119,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,46,99,108,105,101,110,116,72,101,105,103,104,116,63,119,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,46,99,108,105,101,110,116,72,101,105,103,104,116,58,77,97,116,104,46,114,111,117,110,100,40,120,46,104,101,105,103,104,116,40,41,41,125,102,117,110,99,116,105,111,110,32,110,40,97,41,123,118,97,114,32,98,61,115,40,41,59,98,38,38,40,50,55,61,61,61,97,46,107,101,121,67,111,100,101,38,38,98,46,111,112,116,105,111,110,115,40,34,101,115,99,34,41,38,38,98,46,99,108,111,115,101,40,41,44,57,61,61,61,97,46,107,101,121,67,111,100,101,38,38,111,40,97,44,98,41,41,125,102,117,110,99,116,105,111,110,32,111,40,97,44,98,41,123,118,97,114,32,99,61,98,46,101,108,101,109,101,110,116,40,41,46,102,105,110,100,40,68,41,44,100,61,99,46,105,110,100,101,120,40,119,46,97,99,116,105,118,101,69,108,101,109,101,110,116,41,59,97,46,115,104,105,102,116,75,101,121,38,38,100,60,61,48,63,40,99,46,103,101,116,40,99,46,108,101,110,103,116,104,45,49,41,46,102,111,99,117,115,40,41,44,97,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,41,58,97,46,115,104,105,102,116,75,101,121,124,124,100,33,61,61,99,46,108,101,110,103,116,104,45,49,124,124,40,99,46,103,101,116,40,48,41,46,102,111,99,117,115,40,41,44,97,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,41,125,102,117,110,99,116,105,111,110,32,112,40,41,123,98,46,101,97,99,104,40,65,44,102,117,110,99,116,105,111,110,40,97,44,98,41,123,98,46,114,101,115,105,122,101,40,41,125,41,125,102,117,110,99,116,105,111,110,32,113,40,97,41,123,49,61,61,61,65,46,117,110,115,104,105,102,116,40,97,41,38,38,40,122,46,97,100,100,67,108,97,115,115,40,34,108,105,116,121,45,97,99,116,105,118,101,34,41,44,120,46,111,110,40,123,114,101,115,105,122,101,58,112,44,107,101,121,100,111,119,110,58,110,125,41,41,44,98,40,34,98,111,100,121,32,62,32,42,34,41,46,110,111,116,40,97,46,101,108,101,109,101,110,116,40,41,41,46,97,100,100,67,108,97,115,115,40,34,108,105,116,121,45,104,105,100,100,101,110,34,41,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,97,61,98,40,116,104,105,115,41,59,118,111,105,100,32,48,61,61,61,97,46,100,97,116,97,40,67,41,38,38,97,46,100,97,116,97,40,67,44,97,46,97,116,116,114,40,66,41,124,124,110,117,108,108,41,125,41,46,97,116,116,114,40,66,44,34,116,114,117,101,34,41,125,102,117,110,99,116,105,111,110,32,114,40,97,41,123,118,97,114,32,99,59,97,46,101,108,101,109,101,110,116,40,41,46,97,116,116,114,40,66,44,34,116,114,117,101,34,41,44,49,61,61,61,65,46,108,101,110,103,116,104,38,38,40,122,46,114,101,109,111,118,101,67,108,97,115,115,40,34,108,105,116,121,45,97,99,116,105,118,101,34,41,44,120,46,111,102,102,40,123,114,101,115,105,122,101,58,112,44,107,101,121,100,111,119,110,58,110,125,41,41,44,65,61,98,46,103,114,101,112,40,65,44,102,117,110,99,116,105,111,110,40,98,41,123,114,101,116,117,114,110,32,97,33,61,61,98,125,41,44,99,61,65,46,108,101,110,103,116,104,63,65,91,48,93,46,101,108,101,109,101,110,116,40,41,58,98,40,34,46,108,105,116,121,45,104,105,100,100,101,110,34,41,44,99,46,114,101,109,111,118,101,67,108,97,115,115,40,34,108,105,116,121,45,104,105,100,100,101,110,34,41,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,97,61,98,40,116,104,105,115,41,44,99,61,97,46,100,97,116,97,40,67,41,59,99,63,97,46,97,116,116,114,40,66,44,99,41,58,97,46,114,101,109,111,118,101,65,116,116,114,40,66,41,44,97,46,114,101,109,111,118,101,68,97,116,97,40,67,41,125,41,125,102,117,110,99,116,105,111,110,32,115,40,41,123,114,101,116,117,114,110,32,48,61,61,61,65,46,108,101,110,103,116,104,63,110,117,108,108,58,65,91,48,93,125,102,117,110,99,116,105,111,110,32,116,40,97,44,99,44,100,44,101,41,123,118,97,114,32,102,44,103,61,34,105,110,108,105,110,101,34,44,104,61,98,46,101,120,116,101,110,100,40,123,125,44,100,41,59,114,101,116,117,114,110,32,101,38,38,104,91,101,93,63,40,102,61,104,91,101,93,40,97,44,99,41,44,103,61,101,41,58,40,98,46,101,97,99,104,40,91,34,105,110,108,105,110,101,34,44,34,105,102,114,97,109,101,34,93,44,102,117,110,99,116,105,111,110,40,97,44,98,41,123,100,101,108,101,116,101,32,104,91,98,93,44,104,91,98,93,61,100,91,98,93,125,41,44,98,46,101,97,99,104,40,104,44,102,117,110,99,116,105,111,110,40,98,44,100,41,123,114,101,116,117,114,110,33,100,124,124,40,33,40,33,100,46,116,101,115,116,124,124,100,46,116,101,115,116,40,97,44,99,41,41,124,124,40,102,61,100,40,97,44,99,41,44,33,49,33,61,61,102,63,40,103,61,98,44,33,49,41,58,118,111,105,100,32,48,41,41,125,41,41,44,123,104,97,110,100,108,101,114,58,103,44,99,111,110,116,101,110,116,58,102,124,124,34,34,125,125,102,117,110,99,116,105,111,110,32,117,40,97,44,101,44,102,44,103,41,123,102,117,110,99,116,105,111,110,32,104,40,97,41,123,107,61,98,40,97,41,46,99,115,115,40,34,109,97,120,45,104,101,105,103,104,116,34,44,109,40,41,43,34,112,120,34,41,44,106,46,102,105,110,100,40,34,46,108,105,116,121,45,108,111,97,100,101,114,34,41,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,97,61,98,40,116,104,105,115,41,59,99,40,97,41,46,97,108,119,97,121,115,40,102,117,110,99,116,105,111,110,40,41,123,97,46,114,101,109,111,118,101,40,41,125,41,125,41,44,106,46,114,101,109,111,118,101,67,108,97,115,115,40,34,108,105,116,121,45,108,111,97,100,105,110,103,34,41,46,102,105,110,100,40,34,46,108,105,116,121,45,99,111,110,116,101,110,116,34,41,46,101,109,112,116,121,40,41,46,97,112,112,101,110,100,40,107,41,44,110,61,33,48,44,107,46,116,114,105,103,103,101,114,40,34,108,105,116,121,58,114,101,97,100,121,34,44,91,108,93,41,125,118,97,114,32,105,44,106,44,107,44,108,61,116,104,105,115,44,110,61,33,49,44,111,61,33,49,59,101,61,98,46,101,120,116,101,110,100,40,123,125,44,69,44,101,41,44,106,61,98,40,101,46,116,101,109,112,108,97,116,101,41,44,108,46,101,108,101,109,101,110,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,106,125,44,108,46,111,112,101,110,101,114,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,102,125,44,108,46,99,111,110,116,101,110,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,107,125,44,108,46,111,112,116,105,111,110,115,61,98,46,112,114,111,120,121,40,100,44,108,44,101,41,44,108,46,104,97,110,100,108,101,114,115,61,98,46,112,114,111,120,121,40,100,44,108,44,101,46,104,97,110,100,108,101,114,115,41,44,108,46,114,101,115,105,122,101,61,102,117,110,99,116,105,111,110,40,41,123,110,38,38,33,111,38,38,107,46,99,115,115,40,34,109,97,120,45,104,101,105,103,104,116,34,44,109,40,41,43,34,112,120,34,41,46,116,114,105,103,103,101,114,40,34,108,105,116,121,58,114,101,115,105,122,101,34,44,91,108,93,41,125,44,108,46,99,108,111,115,101,61,102,117,110,99,116,105,111,110,40,41,123,105,102,40,110,38,38,33,111,41,123,111,61,33,48,44,114,40,108,41,59,118,97,114,32,97,61,121,40,41,59,105,102,40,103,38,38,40,119,46,97,99,116,105,118,101,69,108,101,109,101,110,116,61,61,61,106,91,48,93,124,124,98,46,99,111,110,116,97,105,110,115,40,106,91,48,93,44,119,46,97,99,116,105,118,101,69,108,101,109,101,110,116,41,41,41,116,114,121,123,103,46,102,111,99,117,115,40,41,125,99,97,116,99,104,40,97,41,123,125,114,101,116,117,114,110,32,107,46,116,114,105,103,103,101,114,40,34,108,105,116,121,58,99,108,111,115,101,34,44,91,108,93,41,44,106,46,114,101,109,111,118,101,67,108,97,115,115,40,34,108,105,116,121,45,111,112,101,110,101,100,34,41,46,97,100,100,67,108,97,115,115,40,34,108,105,116,121,45,99,108,111,115,101,100,34,41,44,99,40,107,46,97,100,100,40,106,41,41,46,97,108,119,97,121,115,40,102,117,110,99,116,105,111,110,40,41,123,107,46,116,114,105,103,103,101,114,40,34,108,105,116,121,58,114,101,109,111,118,101,34,44,91,108,93,41,44,106,46,114,101,109,111,118,101,40,41,44,106,61,118,111,105,100,32,48,44,97,46,114,101,115,111,108,118,101,40,41,125,41,44,97,46,112,114,111,109,105,115,101,40,41,125,125,44,105,61,116,40,97,44,108,44,101,46,104,97,110,100,108,101,114,115,44,101,46,104,97,110,100,108,101,114,41,44,106,46,97,116,116,114,40,66,44,34,102,97,108,115,101,34,41,46,97,100,100,67,108,97,115,115,40,34,108,105,116,121,45,108,111,97,100,105,110,103,32,108,105,116,121,45,111,112,101,110,101,100,32,108,105,116,121,45,34,43,105,46,104,97,110,100,108,101,114,41,46,97,112,112,101,110,100,84,111,40,34,98,111,100,121,34,41,46,102,111,99,117,115,40,41,46,111,110,40,34,99,108,105,99,107,34,44,34,91,100,97,116,97,45,108,105,116,121,45,99,108,111,115,101,93,34,44,102,117,110,99,116,105,111,110,40,97,41,123,98,40,97,46,116,97,114,103,101,116,41,46,105,115,40,34,91,100,97,116,97,45,108,105,116,121,45,99,108,111,115,101,93,34,41,38,38,108,46,99,108,111,115,101,40,41,125,41,46,116,114,105,103,103,101,114,40,34,108,105,116,121,58,111,112,101,110,34,44,91,108,93,41,44,113,40,108,41,44,98,46,119,104,101,110,40,105,46,99,111,110,116,101,110,116,41,46,97,108,119,97,121,115,40,104,41,125,102,117,110,99,116,105,111,110,32,118,40,97,44,99,44,100,41,123,97,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,63,40,97,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,100,61,98,40,116,104,105,115,41,44,97,61,100,46,100,97,116,97,40,34,108,105,116,121,45,116,97,114,103,101,116,34,41,124,124,100,46,97,116,116,114,40,34,104,114,101,102,34,41,124,124,100,46,97,116,116,114,40,34,115,114,99,34,41,41,58,100,61,98,40,100,41,59,118,97,114,32,101,61,110,101,119,32,117,40,97,44,98,46,101,120,116,101,110,100,40,123,125,44,100,46,100,97,116,97,40,34,108,105,116,121,45,111,112,116,105,111,110,115,34,41,124,124,100,46,100,97,116,97,40,34,108,105,116,121,34,41,44,99,41,44,100,44,119,46,97,99,116,105,118,101,69,108,101,109,101,110,116,41,59,105,102,40,33,97,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,41,114,101,116,117,114,110,32,101,125,118,97,114,32,119,61,97,46,100,111,99,117,109,101,110,116,44,120,61,98,40,97,41,44,121,61,98,46,68,101,102,101,114,114,101,100,44,122,61,98,40,34,104,116,109,108,34,41,44,65,61,91,93,44,66,61,34,97,114,105,97,45,104,105,100,100,101,110,34,44,67,61,34,108,105,116,121,45,34,43,66,44,68,61,39,97,91,104,114,101,102,93,44,97,114,101,97,91,104,114,101,102,93,44,105,110,112,117,116,58,110,111,116,40,91,100,105,115,97,98,108,101,100,93,41,44,115,101,108,101,99,116,58,110,111,116,40,91,100,105,115,97,98,108,101,100,93,41,44,116,101,120,116,97,114,101,97,58,110,111,116,40,91,100,105,115,97,98,108,101,100,93,41,44,98,117,116,116,111,110,58,110,111,116,40,91,100,105,115,97,98,108,101,100,93,41,44,105,102,114,97,109,101,44,111,98,106,101,99,116,44,101,109,98,101,100,44,91,99,111,110,116,101,110,116,101,100,105,116,97,98,108,101,93,44,91,116,97,98,105,110,100,101,120,93,58,110,111,116,40,91,116,97,98,105,110,100,101,120,94,61,34,45,34,93,41,39,44,69,61,123,101,115,99,58,33,48,44,104,97,110,100,108,101,114,58,110,117,108,108,44,104,97,110,100,108,101,114,115,58,123,105,109,97,103,101,58,106,44,105,110,108,105,110,101,58,107,44,105,102,114,97,109,101,58,108,125,44,116,101,109,112,108,97,116,101,58,39,60,100,105,118,32,99,108,97,115,115,61,34,108,105,116,121,34,32,114,111,108,101,61,34,100,105,97,108,111,103,34,32,97,114,105,97,45,108,97,98,101,108,61,34,68,105,97,108,111,103,32,87,105,110,100,111,119,32,40,80,114,101,115,115,32,101,115,99,97,112,101,32,116,111,32,99,108,111,115,101,41,34,32,116,97,98,105,110,100,101,120,61,34,45,49,34,62,60,100,105,118,32,99,108,97,115,115,61,34,108,105,116,121,45,119,114,97,112,34,32,100,97,116,97,45,108,105,116,121,45,99,108,111,115,101,32,114,111,108,101,61,34,100,111,99,117,109,101,110,116,34,62,60,100,105,118,32,99,108,97,115,115,61,34,108,105,116,121,45,108,111,97,100,101,114,34,32,97,114,105,97,45,104,105,100,100,101,110,61,34,116,114,117,101,34,62,76,111,97,100,105,110,103,46,46,46,60,47,100,105,118,62,60,100,105,118,32,99,108,97,115,115,61,34,108,105,116,121,45,99,111,110,116,97,105,110,101,114,34,62,60,100,105,118,32,99,108,97,115,115,61,34,108,105,116,121,45,99,111,110,116,101,110,116,34,62,60,47,100,105,118,62,60,98,117,116,116,111,110,32,99,108,97,115,115,61,34,108,105,116,121,45,99,108,111,115,101,34,32,116,121,112,101,61,34,98,117,116,116,111,110,34,32,97,114,105,97,45,108,97,98,101,108,61,34,67,108,111,115,101,32,40,80,114,101,115,115,32,101,115,99,97,112,101,32,116,111,32,99,108,111,115,101,41,34,32,100,97,116,97,45,108,105,116,121,45,99,108,111,115,101,62,38,116,105,109,101,115,59,60,47,98,117,116,116,111,110,62,60,47,100,105,118,62,60,47,100,105,118,62,60,47,100,105,118,62,39,125,44,70,61,47,40,94,100,97,116,97,58,105,109,97,103,101,92,47,41,124,40,92,46,40,112,110,103,124,106,112,101,63,103,124,103,105,102,124,115,118,103,124,119,101,98,112,124,98,109,112,124,105,99,111,124,116,105,102,102,63,41,40,92,63,92,83,42,41,63,36,41,47,105,44,71,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,97,61,119,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,44,98,61,123,87,101,98,107,105,116,84,114,97,110,115,105,116,105,111,110,58,34,119,101,98,107,105,116,84,114,97,110,115,105,116,105,111,110,69,110,100,34,44,77,111,122,84,114,97,110,115,105,116,105,111,110,58,34,116,114,97,110,115,105,116,105,111,110,101,110,100,34,44,79,84,114,97,110,115,105,116,105,111,110,58,34,111,84,114,97,110,115,105,116,105,111,110,69,110,100,32,111,116,114,97,110,115,105,116,105,111,110,101,110,100,34,44,116,114,97,110,115,105,116,105,111,110,58,34,116,114,97,110,115,105,116,105,111,110,101,110,100,34,125,59,102,111,114,40,118,97,114,32,99,32,105,110,32,98,41,105,102,40,118,111,105,100,32,48,33,61,61,97,46,115,116,121,108,101,91,99,93,41,114,101,116,117,114,110,32,98,91,99,93,59,114,101,116,117,114,110,33,49,125,40,41,59,114,101,116,117,114,110,32,106,46,116,101,115,116,61,102,117,110,99,116,105,111,110,40,97,41,123,114,101,116,117,114,110,32,70,46,116,101,115,116,40,97,41,125,44,118,46,118,101,114,115,105,111,110,61,34,51,46,48,46,48,45,100,101,118,34,44,118,46,111,112,116,105,111,110,115,61,98,46,112,114,111,120,121,40,100,44,118,44,69,41,44,118,46,104,97,110,100,108,101,114,115,61,98,46,112,114,111,120,121,40,100,44,118,44,69,46,104,97,110,100,108,101,114,115,41,44,118,46,99,117,114,114,101,110,116,61,115,44,118,46,105,102,114,97,109,101,61,104,44,98,40,119,41,46,111,110,40,34,99,108,105,99,107,46,108,105,116,121,34,44,34,91,100,97,116,97,45,108,105,116,121,93,34,44,118,41,44,118,125,41,59,47,42,42,10,32,42,32,104,116,116,112,115,58,47,47,115,116,97,99,107,111,118,101,114,102,108,111,119,46,99,111,109,47,113,117,101,115,116,105,111,110,115,47,49,48,52,50,48,51,53,50,10,32,42,47,10,102,117,110,99,116,105,111,110,32,104,117,109,97,110,70,105,108,101,83,105,122,101,40,98,121,116,101,115,41,32,123,10,32,32,32,32,105,102,32,40,98,121,116,101,115,32,61,61,61,32,48,41,32,123,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,34,48,32,66,34,10,32,32,32,32,125,10,10,32,32,32,32,108,101,116,32,116,104,114,101,115,104,32,61,32,49,48,48,48,59,10,32,32,32,32,105,102,32,40,77,97,116,104,46,97,98,115,40,98,121,116,101,115,41,32,60,32,116,104,114,101,115,104,41,32,123,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,98,121,116,101,115,32,43,32,39,32,66,39,59,10,32,32,32,32,125,10,32,32,32,32,108,101,116,32,117,110,105,116,115,32,61,32,91,39,107,39,44,32,39,77,39,44,32,39,71,39,44,32,39,84,39,44,32,39,80,39,44,32,39,69,39,44,32,39,90,39,44,32,39,89,39,93,59,10,32,32,32,32,108,101,116,32,117,32,61,32,45,49,59,10,32,32,32,32,100,111,32,123,10,32,32,32,32,32,32,32,32,98,121,116,101,115,32,47,61,32,116,104,114,101,115,104,59,10,32,32,32,32,32,32,32,32,43,43,117,59,10,32,32,32,32,125,32,119,104,105,108,101,32,40,77,97,116,104,46,97,98,115,40,98,121,116,101,115,41,32,62,61,32,116,104,114,101,115,104,32,38,38,32,117,32,60,32,117,110,105,116,115,46,108,101,110,103,116,104,32,45,32,49,41,59,10,10,32,32,32,32,114,101,116,117,114,110,32,98,121,116,101,115,46,116,111,70,105,120,101,100,40,49,41,32,43,32,117,110,105,116,115,91,117,93,59,10,125,10,10,47,42,42,10,32,42,32,104,116,116,112,115,58,47,47,115,116,97,99,107,111,118,101,114,102,108,111,119,46,99,111,109,47,113,117,101,115,116,105,111,110,115,47,54,51,49,50,57,57,51,10,32,42,47,10,102,117,110,99,116,105,111,110,32,104,117,109,97,110,84,105,109,101,40,115,101,99,95,110,117,109,41,32,123,10,32,32,32,32,115,101,99,95,110,117,109,32,61,32,77,97,116,104,46,102,108,111,111,114,40,115,101,99,95,110,117,109,41,59,10,32,32,32,32,108,101,116,32,104,111,117,114,115,32,61,32,77,97,116,104,46,102,108,111,111,114,40,115,101,99,95,110,117,109,32,47,32,51,54,48,48,41,59,10,32,32,32,32,108,101,116,32,109,105,110,117,116,101,115,32,61,32,77,97,116,104,46,102,108,111,111,114,40,40,115,101,99,95,110,117,109,32,45,32,40,104,111,117,114,115,32,42,32,51,54,48,48,41,41,32,47,32,54,48,41,59,10,32,32,32,32,108,101,116,32,115,101,99,111,110,100,115,32,61,32,115,101,99,95,110,117,109,32,45,32,40,104,111,117,114,115,32,42,32,51,54,48,48,41,32,45,32,40,109,105,110,117,116,101,115,32,42,32,54,48,41,59,10,10,32,32,32,32,105,102,32,40,104,111,117,114,115,32,60,32,49,48,41,32,123,10,32,32,32,32,32,32,32,32,104,111,117,114,115,32,61,32,34,48,34,32,43,32,104,111,117,114,115,59,10,32,32,32,32,125,10,32,32,32,32,105,102,32,40,109,105,110,117,116,101,115,32,60,32,49,48,41,32,123,10,32,32,32,32,32,32,32,32,109,105,110,117,116,101,115,32,61,32,34,48,34,32,43,32,109,105,110,117,116,101,115,59,10,32,32,32,32,125,10,32,32,32,32,105,102,32,40,115,101,99,111,110,100,115,32,60,32,49,48,41,32,123,10,32,32,32,32,32,32,32,32,115,101,99,111,110,100,115,32,61,32,34,48,34,32,43,32,115,101,99,111,110,100,115,59,10,32,32,32,32,125,10,32,32,32,32,114,101,116,117,114,110,32,104,111,117,114,115,32,43,32,34,58,34,32,43,32,109,105,110,117,116,101,115,32,43,32,34,58,34,32,43,32,115,101,99,111,110,100,115,59,10,125,10,10,102,117,110,99,116,105,111,110,32,100,101,98,111,117,110,99,101,40,102,117,110,99,44,32,119,97,105,116,41,32,123,10,32,32,32,32,108,101,116,32,116,105,109,101,111,117,116,59,10,32,32,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,40,41,32,123,10,32,32,32,32,32,32,32,32,108,101,116,32,99,111,110,116,101,120,116,32,61,32,116,104,105,115,44,32,97,114,103,115,32,61,32,97,114,103,117,109,101,110,116,115,59,10,32,32,32,32,32,32,32,32,108,101,116,32,108,97,116,101,114,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,116,105,109,101,111,117,116,32,61,32,110,117,108,108,59,10,32,32,32,32,32,32,32,32,32,32,32,32,102,117,110,99,46,97,112,112,108,121,40,99,111,110,116,101,120,116,44,32,97,114,103,115,41,59,10,32,32,32,32,32,32,32,32,125,59,10,32,32,32,32,32,32,32,32,99,108,101,97,114,84,105,109,101,111,117,116,40,116,105,109,101,111,117,116,41,59,10,32,32,32,32,32,32,32,32,116,105,109,101,111,117,116,32,61,32,115,101,116,84,105,109,101,111,117,116,40,108,97,116,101,114,44,32,119,97,105,116,41,59,10,32,32,32,32,32,32,32,32,102,117,110,99,46,97,112,112,108,121,40,99,111,110,116,101,120,116,44,32,97,114,103,115,41,59,10,32,32,32,32,125,59,10,125,10,10,102,117,110,99,116,105,111,110,32,108,117,109,40,99,41,32,123,10,32,32,32,32,99,32,61,32,99,46,115,117,98,115,116,114,105,110,103,40,49,41,59,10,32,32,32,32,108,101,116,32,114,103,98,32,61,32,112,97,114,115,101,73,110,116,40,99,44,32,49,54,41,59,10,32,32,32,32,108,101,116,32,114,32,61,32,40,114,103,98,32,62,62,32,49,54,41,32,38,32,48,120,102,102,59,10,32,32,32,32,108,101,116,32,103,32,61,32,40,114,103,98,32,62,62,32,56,41,32,38,32,48,120,102,102,59,10,32,32,32,32,108,101,116,32,98,32,61,32,40,114,103,98,32,62,62,32,48,41,32,38,32,48,120,102,102,59,10,10,32,32,32,32,114,101,116,117,114,110,32,48,46,50,49,50,54,32,42,32,114,32,43,32,48,46,55,49,53,50,32,42,32,103,32,43,32,48,46,48,55,50,50,32,42,32,98,59,10,125,10,10,102,117,110,99,116,105,111,110,32,115,116,114,85,110,101,115,99,97,112,101,40,115,116,114,41,32,123,10,32,32,32,32,108,101,116,32,114,101,115,117,108,116,32,61,32,34,34,59,10,10,32,32,32,32,102,111,114,32,40,108,101,116,32,105,32,61,32,48,59,32,105,32,60,32,115,116,114,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,10,32,32,32,32,32,32,32,32,99,111,110,115,116,32,99,32,61,32,115,116,114,91,105,93,59,10,32,32,32,32,32,32,32,32,99,111,110,115,116,32,110,101,120,116,32,61,32,115,116,114,91,105,43,49,93,59,10,10,32,32,32,32,32,32,32,32,105,102,32,40,99,32,61,61,61,32,39,93,39,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,110,101,120,116,32,61,61,61,32,39,93,39,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,115,117,108,116,32,43,61,32,99,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,32,43,61,32,49,59,10,32,32,32,32,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,115,117,108,116,32,43,61,32,83,116,114,105,110,103,46,102,114,111,109,67,104,97,114,67,111,100,101,40,112,97,114,115,101,73,110,116,40,115,116,114,46,115,108,105,99,101,40,105,44,32,105,32,43,32,50,41,44,32,49,54,41,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,32,43,61,32,50,59,10,32,32,32,32,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,114,101,115,117,108,116,32,43,61,32,99,59,10,32,32,32,32,32,32,32,32,125,10,32,32,32,32,125,10,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,59,10,125,10,10,99,111,110,115,116,32,67,79,78,70,32,61,32,110,101,119,32,83,101,116,116,105,110,103,115,40,41,59,10,10,99,111,110,115,116,32,95,100,101,102,97,117,108,116,115,32,61,32,123,10,32,32,32,32,100,105,115,112,108,97,121,58,32,34,103,114,105,100,34,44,10,32,32,32,32,102,117,122,122,121,58,32,116,114,117,101,44,10,32,32,32,32,104,105,103,104,108,105,103,104,116,58,32,116,114,117,101,44,10,32,32,32,32,115,111,114,116,58,32,34,115,99,111,114,101,34,44,10,32,32,32,32,115,101,97,114,99,104,73,110,80,97,116,104,58,32,102,97,108,115,101,44,10,32,32,32,32,116,114,101,101,109,97,112,84,121,112,101,58,32,34,99,97,115,99,97,100,101,100,34,44,10,32,32,32,32,116,114,101,101,109,97,112,84,105,108,105,110,103,58,32,34,115,113,117,97,114,105,102,121,34,44,10,32,32,32,32,116,114,101,101,109,97,112,71,114,111,117,112,105,110,103,68,101,112,116,104,58,32,51,44,10,32,32,32,32,116,114,101,101,109,97,112,67,111,108,111,114,58,32,34,80,117,66,117,71,110,34,44,10,32,32,32,32,116,114,101,101,109,97,112,83,105,122,101,58,32,34,108,97,114,103,101,34,44,10,32,32,32,32,115,117,103,103,101,115,116,80,97,116,104,58,32,116,114,117,101,44,10,32,32,32,32,102,114,97,103,109,101,110,116,83,105,122,101,58,32,49,48,48,44,10,32,32,32,32,99,111,108,117,109,110,115,58,32,53,10,125,59,10,10,102,117,110,99,116,105,111,110,32,108,111,97,100,83,101,116,116,105,110,103,115,40,41,32,123,10,32,32,32,32,67,79,78,70,46,108,111,97,100,40,41,59,10,10,32,32,32,32,36,40,34,35,115,101,116,116,105,110,103,68,105,115,112,108,97,121,34,41,46,118,97,108,40,67,79,78,70,46,111,112,116,105,111,110,115,46,100,105,115,112,108,97,121,41,59,10,32,32,32,32,36,40,34,35,115,101,116,116,105,110,103,70,117,122,122,121,34,41,46,112,114,111,112,40,34,99,104,101,99,107,101,100,34,44,32,67,79,78,70,46,111,112,116,105,111,110,115,46,102,117,122,122,121,41,59,10,32,32,32,32,36,40,34,35,115,101,116,116,105,110,103,72,105,103,104,108,105,103,104,116,34,41,46,112,114,111,112,40,34,99,104,101,99,107,101,100,34,44,32,67,79,78,70,46,111,112,116,105,111,110,115,46,104,105,103,104,108,105,103,104,116,41,59,10,32,32,32,32,36,40,34,35,115,101,116,116,105,110,103,83,101,97,114,99,104,73,110,80,97,116,104,34,41,46,112,114,111,112,40,34,99,104,101,99,107,101,100,34,44,32,67,79,78,70,46,111,112,116,105,111,110,115,46,115,101,97,114,99,104,73,110,80,97,116,104,41,59,10,32,32,32,32,36,40,34,35,115,101,116,116,105,110,103,84,114,101,101,109,97,112,84,105,108,105,110,103,34,41,46,118,97,108,40,67,79,78,70,46,111,112,116,105,111,110,115,46,116,114,101,101,109,97,112,84,105,108,105,110,103,41,59,10,32,32,32,32,36,40,34,35,115,101,116,116,105,110,103,84,114,101,101,109,97,112,71,114,111,117,112,105,110,103,68,101,112,116,104,34,41,46,118,97,108,40,67,79,78,70,46,111,112,116,105,111,110,115,46,116,114,101,101,109,97,112,71,114,111,117,112,105,110,103,68,101,112,116,104,41,59,10,32,32,32,32,36,40,34,35,115,101,116,116,105,110,103,84,114,101,101,109,97,112,67,111,108,111,114,34,41,46,118,97,108,40,67,79,78,70,46,111,112,116,105,111,110,115,46,116,114,101,101,109,97,112,67,111,108,111,114,41,59,10,32,32,32,32,36,40,34,35,115,101,116,116,105,110,103,84,114,101,101,109,97,112,83,105,122,101,34,41,46,118,97,108,40,67,79,78,70,46,111,112,116,105,111,110,115,46,116,114,101,101,109,97,112,83,105,122,101,41,59,10,32,32,32,32,36,40,34,35,115,101,116,116,105,110,103,84,114,101,101,109,97,112,84,121,112,101,34,41,46,118,97,108,40,67,79,78,70,46,111,112,116,105,111,110,115,46,116,114,101,101,109,97,112,84,121,112,101,41,59,10,32,32,32,32,36,40,34,35,115,101,116,116,105,110,103,83,117,103,103,101,115,116,80,97,116,104,34,41,46,112,114,111,112,40,34,99,104,101,99,107,101,100,34,44,32,67,79,78,70,46,111,112,116,105,111,110,115,46,115,117,103,103,101,115,116,80,97,116,104,41,59,10,32,32,32,32,36,40,34,35,115,101,116,116,105,110,103,70,114,97,103,109,101,110,116,83,105,122,101,34,41,46,118,97,108,40,67,79,78,70,46,111,112,116,105,111,110,115,46,102,114,97,103,109,101,110,116,83,105,122,101,41,59,10,32,32,32,32,36,40,34,35,115,101,116,116,105,110,103,67,111,108,117,109,110,115,34,41,46,118,97,108,40,67,79,78,70,46,111,112,116,105,111,110,115,46,99,111,108,117,109,110,115,41,59,10,125,10,10,102,117,110,99,116,105,111,110,32,83,101,116,116,105,110,103,115,40,41,32,123,10,32,32,32,32,116,104,105,115,46,111,112,116,105,111,110,115,32,61,32,123,125,59,10,10,32,32,32,32,116,104,105,115,46,95,111,110,85,112,100,97,116,101,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,10,32,32,32,32,32,32,32,32,36,40,34,35,102,117,122,122,121,84,111,103,103,108,101,34,41,46,112,114,111,112,40,34,99,104,101,99,107,101,100,34,44,32,116,104,105,115,46,111,112,116,105,111,110,115,46,102,117,122,122,121,41,59,10,32,32,32,32,32,32,32,32,117,112,100,97,116,101,67,111,108,117,109,110,83,116,121,108,101,40,41,59,10,32,32,32,32,125,59,10,10,32,32,32,32,116,104,105,115,46,108,111,97,100,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,10,32,32,32,32,32,32,32,32,99,111,110,115,116,32,114,97,119,32,61,32,119,105,110,100,111,119,46,108,111,99,97,108,83,116,111,114,97,103,101,46,103,101,116,73,116,101,109,40,34,111,112,116,105,111,110,115,34,41,59,10,32,32,32,32,32,32,32,32,105,102,32,40,114,97,119,32,61,61,61,32,110,117,108,108,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,111,112,116,105,111,110,115,32,61,32,95,100,101,102,97,117,108,116,115,59,10,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,99,111,110,115,116,32,106,32,61,32,74,83,79,78,46,112,97,114,115,101,40,114,97,119,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,106,32,124,124,32,79,98,106,101,99,116,46,107,101,121,115,40,95,100,101,102,97,117,108,116,115,41,46,115,111,109,101,40,107,32,61,62,32,33,106,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,107,41,41,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,111,112,116,105,111,110,115,32,61,32,95,100,101,102,97,117,108,116,115,59,10,32,32,32,32,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,111,112,116,105,111,110,115,32,61,32,106,59,10,32,32,32,32,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,125,10,10,32,32,32,32,32,32,32,32,116,104,105,115,46,95,111,110,85,112,100,97,116,101,40,41,59,10,32,32,32,32,125,59,10,10,32,32,32,32,116,104,105,115,46,115,97,118,101,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,10,32,32,32,32,32,32,32,32,119,105,110,100,111,119,46,108,111,99,97,108,83,116,111,114,97,103,101,46,115,101,116,73,116,101,109,40,34,111,112,116,105,111,110,115,34,44,32,74,83,79,78,46,115,116,114,105,110,103,105,102,121,40,116,104,105,115,46,111,112,116,105,111,110,115,41,41,59,10,32,32,32,32,32,32,32,32,116,104,105,115,46,95,111,110,85,112,100,97,116,101,40,41,59,10,32,32,32,32,125,10,125,10,10,102,117,110,99,116,105,111,110,32,117,112,100,97,116,101,83,101,116,116,105,110,103,115,40,41,32,123,10,32,32,32,32,67,79,78,70,46,111,112,116,105,111,110,115,46,100,105,115,112,108,97,121,32,61,32,36,40,34,35,115,101,116,116,105,110,103,68,105,115,112,108,97,121,34,41,46,118,97,108,40,41,59,10,32,32,32,32,67,79,78,70,46,111,112,116,105,111,110,115,46,102,117,122,122,121,32,61,32,36,40,34,35,115,101,116,116,105,110,103,70,117,122,122,121,34,41,46,112,114,111,112,40,34,99,104,101,99,107,101,100,34,41,59,10,32,32,32,32,67,79,78,70,46,111,112,116,105,111,110,115,46,104,105,103,104,108,105,103,104,116,32,61,32,36,40,34,35,115,101,116,116,105,110,103,72,105,103,104,108,105,103,104,116,34,41,46,112,114,111,112,40,34,99,104,101,99,107,101,100,34,41,59,10,32,32,32,32,67,79,78,70,46,111,112,116,105,111,110,115,46,115,101,97,114,99,104,73,110,80,97,116,104,32,61,32,36,40,34,35,115,101,116,116,105,110,103,83,101,97,114,99,104,73,110,80,97,116,104,34,41,46,112,114,111,112,40,34,99,104,101,99,107,101,100,34,41,59,10,32,32,32,32,67,79,78,70,46,111,112,116,105,111,110,115,46,116,114,101,101,109,97,112,84,105,108,105,110,103,32,61,32,36,40,34,35,115,101,116,116,105,110,103,84,114,101,101,109,97,112,84,105,108,105,110,103,34,41,46,118,97,108,40,41,59,10,32,32,32,32,67,79,78,70,46,111,112,116,105,111,110,115,46,116,114,101,101,109,97,112,71,114,111,117,112,105,110,103,68,101,112,116,104,32,61,32,36,40,34,35,115,101,116,116,105,110,103,84,114,101,101,109,97,112,71,114,111,117,112,105,110,103,68,101,112,116,104,34,41,46,118,97,108,40,41,59,10,32,32,32,32,67,79,78,70,46,111,112,116,105,111,110,115,46,116,114,101,101,109,97,112,67,111,108,111,114,32,61,32,36,40,34,35,115,101,116,116,105,110,103,84,114,101,101,109,97,112,67,111,108,111,114,34,41,46,118,97,108,40,41,59,10,32,32,32,32,67,79,78,70,46,111,112,116,105,111,110,115,46,116,114,101,101,109,97,112,83,105,122,101,32,61,32,36,40,34,35,115,101,116,116,105,110,103,84,114,101,101,109,97,112,83,105,122,101,34,41,46,118,97,108,40,41,59,10,32,32,32,32,67,79,78,70,46,111,112,116,105,111,110,115,46,116,114,101,101,109,97,112,84,121,112,101,32,61,32,36,40,34,35,115,101,116,116,105,110,103,84,114,101,101,109,97,112,84,121,112,101,34,41,46,118,97,108,40,41,59,10,32,32,32,32,67,79,78,70,46,111,112,116,105,111,110,115,46,115,117,103,103,101,115,116,80,97,116,104,32,61,32,36,40,34,35,115,101,116,116,105,110,103,83,117,103,103,101,115,116,80,97,116,104,34,41,46,112,114,111,112,40,34,99,104,101,99,107,101,100,34,41,59,10,32,32,32,32,67,79,78,70,46,111,112,116,105,111,110,115,46,102,114,97,103,109,101,110,116,83,105,122,101,32,61,32,36,40,34,35,115,101,116,116,105,110,103,70,114,97,103,109,101,110,116,83,105,122,101,34,41,46,118,97,108,40,41,59,10,32,32,32,32,67,79,78,70,46,111,112,116,105,111,110,115,46,99,111,108,117,109,110,115,32,61,32,36,40,34,35,115,101,116,116,105,110,103,67,111,108,117,109,110,115,34,41,46,118,97,108,40,41,59,10,32,32,32,32,67,79,78,70,46,115,97,118,101,40,41,59,10,10,32,32,32,32,105,102,32,40,116,121,112,101,111,102,32,115,101,97,114,99,104,68,101,98,111,117,110,99,101,100,32,33,61,61,32,34,117,110,100,101,102,105,110,101,100,34,41,32,123,10,32,32,32,32,32,32,32,32,115,101,97,114,99,104,68,101,98,111,117,110,99,101,100,40,41,59,10,32,32,32,32,125,10,10,32,32,32,32,105,102,32,40,116,121,112,101,111,102,32,117,112,100,97,116,101,83,116,97,116,115,32,33,61,61,32,34,117,110,100,101,102,105,110,101,100,34,41,32,123,10,32,32,32,32,32,32,32,32,117,112,100,97,116,101,83,116,97,116,115,40,41,59,10,32,32,32,32,125,10,10,32,32,32,32,36,46,116,111,97,115,116,40,123,10,32,32,32,32,32,32,32,32,104,101,97,100,105,110,103,58,32,34,83,101,116,116,105,110,103,115,32,117,112,100,97,116,101,100,34,44,10,32,32,32,32,32,32,32,32,116,101,120,116,58,32,34,83,101,116,116,105,110,103,115,32,115,97,118,101,100,32,116,111,32,98,114,111,119,115,101,114,32,115,116,111,114,97,103,101,34,44,10,32,32,32,32,32,32,32,32,115,116,97,99,107,58,32,51,44,10,32,32,32,32,32,32,32,32,98,103,67,111,108,111,114,58,32,34,35,48,48,97,52,98,99,34,44,10,32,32,32,32,32,32,32,32,116,101,120,116,67,111,108,111,114,58,32,34,35,102,102,102,34,44,10,32,32,32,32,32,32,32,32,112,111,115,105,116,105,111,110,58,32,39,98,111,116,116,111,109,45,114,105,103,104,116,39,44,10,32,32,32,32,32,32,32,32,104,105,100,101,65,102,116,101,114,58,32,51,48,48,48,44,10,32,32,32,32,32,32,32,32,108,111,97,100,101,114,66,103,58,32,34,35,48,56,99,55,101,56,34,44,10,32,32,32,32,125,41,59,10,125,10,10,106,81,117,101,114,121,91,34,106,115,111,110,80,111,115,116,34,93,32,61,32,102,117,110,99,116,105,111,110,32,40,117,114,108,44,32,100,97,116,97,41,32,123,10,32,32,32,32,114,101,116,117,114,110,32,106,81,117,101,114,121,46,97,106,97,120,40,123,10,32,32,32,32,32,32,32,32,117,114,108,58,32,117,114,108,44,10,32,32,32,32,32,32,32,32,116,121,112,101,58,32,34,112,111,115,116,34,44,10,32,32,32,32,32,32,32,32,100,97,116,97,58,32,74,83,79,78,46,115,116,114,105,110,103,105,102,121,40,100,97,116,97,41,44,10,32,32,32,32,32,32,32,32,99,111,110,116,101,110,116,84,121,112,101,58,32,34,97,112,112,108,105,99,97,116,105,111,110,47,106,115,111,110,34,10,32,32,32,32,125,41,46,102,97,105,108,40,101,114,114,32,61,62,32,123,10,32,32,32,32,32,32,32,32,115,104,111,119,69,115,69,114,114,111,114,40,41,59,10,32,32,32,32,32,32,32,32,99,111,110,115,111,108,101,46,108,111,103,40,101,114,114,41,59,10,32,32,32,32,125,41,59,10,125,59,10,10,102,117,110,99,116,105,111,110,32,116,111,103,103,108,101,84,104,101,109,101,40,41,32,123,10,32,32,32,32,105,102,32,40,33,100,111,99,117,109,101,110,116,46,99,111,111,107,105,101,46,105,110,99,108,117,100,101,115,40,34,115,105,115,116,34,41,41,32,123,10,32,32,32,32,32,32,32,32,100,111,99,117,109,101,110,116,46,99,111,111,107,105,101,32,61,32,34,115,105,115,116,61,100,97,114,107,59,83,97,109,101,83,105,116,101,61,83,116,114,105,99,116,34,59,10,32,32,32,32,125,32,101,108,115,101,32,123,10,32,32,32,32,32,32,32,32,100,111,99,117,109,101,110,116,46,99,111,111,107,105,101,32,61,32,34,115,105,115,116,61,59,32,77,97,120,45,65,103,101,61,45,57,57,57,57,57,57,57,57,59,34,59,10,32,32,32,32,125,10,32,32,32,32,119,105,110,100,111,119,46,108,111,99,97,116,105,111,110,46,114,101,108,111,97,100,40,41,59,10,125,10,10,102,117,110,99,116,105,111,110,32,117,112,100,97,116,101,67,111,108,117,109,110,83,116,121,108,101,40,41,32,123,10,32,32,32,32,99,111,110,115,116,32,115,116,121,108,101,32,61,32,100,111,99,117,109,101,110,116,46,103,101,116,69,108,101,109,101,110,116,66,121,73,100,40,34,115,116,121,108,101,34,41,59,10,32,32,32,32,105,102,32,40,115,116,121,108,101,41,32,123,10,32,32,32,32,32,32,32,32,115,116,121,108,101,46,105,110,110,101,114,72,84,77,76,32,61,10,32,32,32,32,32,32,32,32,96,10,64,109,101,100,105,97,32,115,99,114,101,101,110,32,97,110,100,32,40,109,105,110,45,119,105,100,116,104,58,32,49,53,48,48,112,120,41,32,123,10,32,32,32,32,46,99,111,110,116,97,105,110,101,114,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,109,97,120,45,119,105,100,116,104,58,32,49,52,52,48,112,120,59,10,32,32,32,32,32,32,32,32,125,10,10,32,32,32,32,46,98,114,105,99,107,108,97,121,101,114,45,99,111,108,117,109,110,45,115,105,122,101,114,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,119,105,100,116,104,58,32,36,123,49,48,48,32,47,32,67,79,78,70,46,111,112,116,105,111,110,115,46,99,111,108,117,109,110,115,125,37,32,33,105,109,112,111,114,116,97,110,116,59,10,32,32,32,32,32,32,32,32,125,10,10,32,32,32,32,46,98,114,105,99,107,108,97,121,101,114,45,99,111,108,117,109,110,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,109,97,120,45,119,105,100,116,104,58,32,36,123,49,48,48,32,47,32,67,79,78,70,46,111,112,116,105,111,110,115,46,99,111,108,117,109,110,115,125,37,59,10,32,32,32,32,32,32,32,32,125,10,32,32,32,32,125,10,125,10,32,32,32,32,32,32,32,32,96,10,32,32,32,32,125,10,125,47,42,42,10,32,42,32,69,110,97,98,108,101,32,103,105,102,32,108,111,97,100,105,110,103,32,111,110,32,104,111,118,101,114,10,32,42,47,10,102,117,110,99,116,105,111,110,32,103,105,102,79,118,101,114,40,116,104,117,109,98,110,97,105,108,44,32,104,105,116,41,32,123,10,32,32,32,32,108,101,116,32,99,97,108,108,101,101,32,61,32,97,114,103,117,109,101,110,116,115,46,99,97,108,108,101,101,59,10,10,32,32,32,32,116,104,117,109,98,110,97,105,108,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,109,111,117,115,101,111,118,101,114,34,44,32,102,117,110,99,116,105,111,110,32,40,41,32,123,10,10,32,32,32,32,32,32,32,32,116,104,117,109,98,110,97,105,108,46,109,111,117,115,101,83,116,97,121,101,100,79,118,101,114,32,61,32,116,114,117,101,59,10,10,32,32,32,32,32,32,32,32,119,105,110,100,111,119,46,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,32,40,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,116,104,117,109,98,110,97,105,108,46,109,111,117,115,101,83,116,97,121,101,100,79,118,101,114,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,117,109,98,110,97,105,108,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,40,39,109,111,117,115,101,111,118,101,114,39,44,32,99,97,108,108,101,101,44,32,102,97,108,115,101,41,59,10,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,76,111,97,100,32,103,105,102,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,117,109,98,110,97,105,108,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,115,114,99,34,44,32,34,102,47,34,32,43,32,104,105,116,91,34,95,105,100,34,93,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,125,44,32,54,48,48,41,59,10,10,32,32,32,32,125,41,59,10,10,32,32,32,32,116,104,117,109,98,110,97,105,108,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,109,111,117,115,101,111,117,116,34,44,32,102,117,110,99,116,105,111,110,32,40,41,32,123,10,32,32,32,32,32,32,32,32,47,47,82,101,115,101,116,32,116,105,109,101,114,10,32,32,32,32,32,32,32,32,116,104,117,109,98,110,97,105,108,46,109,111,117,115,101,83,116,97,121,101,100,79,118,101,114,32,61,32,102,97,108,115,101,59,10,32,32,32,32,32,32,32,32,116,104,117,109,98,110,97,105,108,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,115,114,99,34,44,32,96,116,47,36,123,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,105,110,100,101,120,34,93,125,47,36,123,104,105,116,91,34,95,105,100,34,93,125,96,41,59,10,32,32,32,32,125,41,10,125,10,10,102,117,110,99,116,105,111,110,32,103,101,116,67,111,110,116,101,110,116,72,105,103,104,108,105,103,104,116,40,104,105,116,41,32,123,10,32,32,32,32,105,102,32,40,104,105,116,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,34,104,105,103,104,108,105,103,104,116,34,41,41,32,123,10,32,32,32,32,32,32,32,32,105,102,32,40,104,105,116,91,34,104,105,103,104,108,105,103,104,116,34,93,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,34,99,111,110,116,101,110,116,34,41,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,104,105,116,91,34,104,105,103,104,108,105,103,104,116,34,93,91,34,99,111,110,116,101,110,116,34,93,91,48,93,59,10,10,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,104,105,116,91,34,104,105,103,104,108,105,103,104,116,34,93,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,34,99,111,110,116,101,110,116,46,110,71,114,97,109,34,41,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,104,105,116,91,34,104,105,103,104,108,105,103,104,116,34,93,91,34,99,111,110,116,101,110,116,46,110,71,114,97,109,34,93,91,48,93,59,10,32,32,32,32,32,32,32,32,125,10,32,32,32,32,125,10,10,32,32,32,32,114,101,116,117,114,110,32,117,110,100,101,102,105,110,101,100,59,10,125,10,10,102,117,110,99,116,105,111,110,32,103,101,116,80,97,116,104,72,105,103,104,108,105,103,104,116,40,104,105,116,41,32,123,10,32,32,32,32,105,102,32,40,104,105,116,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,34,104,105,103,104,108,105,103,104,116,34,41,41,32,123,10,32,32,32,32,32,32,32,32,105,102,32,40,104,105,116,91,34,104,105,103,104,108,105,103,104,116,34,93,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,34,112,97,116,104,46,116,101,120,116,34,41,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,104,105,116,91,34,104,105,103,104,108,105,103,104,116,34,93,91,34,112,97,116,104,46,116,101,120,116,34,93,91,48,93,59,10,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,104,105,116,91,34,104,105,103,104,108,105,103,104,116,34,93,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,34,112,97,116,104,46,110,71,114,97,109,34,41,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,104,105,116,91,34,104,105,103,104,108,105,103,104,116,34,93,91,34,112,97,116,104,46,110,71,114,97,109,34,93,91,48,93,59,10,32,32,32,32,32,32,32,32,125,10,32,32,32,32,125,10,10,32,32,32,32,114,101,116,117,114,110,32,117,110,100,101,102,105,110,101,100,59,10,125,10,10,102,117,110,99,116,105,111,110,32,97,112,112,108,121,78,97,109,101,84,111,84,105,116,108,101,40,104,105,116,44,32,116,105,116,108,101,44,32,101,120,116,101,110,115,105,111,110,41,32,123,10,32,32,32,32,105,102,32,40,104,105,116,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,34,104,105,103,104,108,105,103,104,116,34,41,41,32,123,10,32,32,32,32,32,32,32,32,105,102,32,40,104,105,116,91,34,104,105,103,104,108,105,103,104,116,34,93,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,34,110,97,109,101,34,41,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,116,105,116,108,101,46,105,110,115,101,114,116,65,100,106,97,99,101,110,116,72,84,77,76,40,39,97,102,116,101,114,98,101,103,105,110,39,44,32,104,105,116,91,34,104,105,103,104,108,105,103,104,116,34,93,91,34,110,97,109,101,34,93,32,43,32,101,120,116,101,110,115,105,111,110,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,10,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,104,105,116,91,34,104,105,103,104,108,105,103,104,116,34,93,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,34,110,97,109,101,46,110,71,114,97,109,34,41,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,116,105,116,108,101,46,105,110,115,101,114,116,65,100,106,97,99,101,110,116,72,84,77,76,40,39,97,102,116,101,114,98,101,103,105,110,39,44,32,104,105,116,91,34,104,105,103,104,108,105,103,104,116,34,93,91,34,110,97,109,101,46,110,71,114,97,109,34,93,32,43,32,101,120,116,101,110,115,105,111,110,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,10,32,32,32,32,32,32,32,32,125,10,32,32,32,32,125,10,10,32,32,32,32,116,105,116,108,101,46,97,112,112,101,110,100,67,104,105,108,100,40,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,84,101,120,116,78,111,100,101,40,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,110,97,109,101,34,93,32,43,32,101,120,116,101,110,115,105,111,110,41,41,59,10,125,10,10,102,117,110,99,116,105,111,110,32,115,104,111,117,108,100,80,108,97,121,86,105,100,101,111,40,104,105,116,41,32,123,10,32,32,32,32,99,111,110,115,116,32,118,105,100,101,111,99,32,61,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,118,105,100,101,111,99,34,93,59,10,32,32,32,32,99,111,110,115,116,32,109,105,109,101,32,61,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,109,105,109,101,34,93,59,10,10,32,32,32,32,114,101,116,117,114,110,32,109,105,109,101,32,38,38,10,32,32,32,32,32,32,32,32,109,105,109,101,46,115,116,97,114,116,115,87,105,116,104,40,34,118,105,100,101,111,47,34,41,32,38,38,10,32,32,32,32,32,32,32,32,33,40,34,112,97,114,101,110,116,34,32,105,110,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,41,32,38,38,10,32,32,32,32,32,32,32,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,101,120,116,101,110,115,105,111,110,34,93,32,33,61,61,32,34,109,107,118,34,32,38,38,10,32,32,32,32,32,32,32,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,101,120,116,101,110,115,105,111,110,34,93,32,33,61,61,32,34,97,118,105,34,32,38,38,10,32,32,32,32,32,32,32,32,118,105,100,101,111,99,32,33,61,61,32,34,104,101,118,99,34,32,38,38,10,32,32,32,32,32,32,32,32,118,105,100,101,111,99,32,33,61,61,32,34,109,112,101,103,50,118,105,100,101,111,34,32,38,38,10,32,32,32,32,32,32,32,32,118,105,100,101,111,99,32,33,61,61,32,34,119,109,118,51,34,59,10,125,10,10,102,117,110,99,116,105,111,110,32,115,104,111,117,108,100,68,105,115,112,108,97,121,82,97,119,73,109,97,103,101,40,104,105,116,41,32,123,10,32,32,32,32,99,111,110,115,116,32,109,105,109,101,32,61,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,109,105,109,101,34,93,59,10,10,32,32,32,32,114,101,116,117,114,110,32,109,105,109,101,32,38,38,10,32,32,32,32,32,32,32,32,109,105,109,101,46,115,116,97,114,116,115,87,105,116,104,40,34,105,109,97,103,101,47,34,41,32,38,38,10,32,32,32,32,32,32,32,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,109,105,109,101,34,93,32,38,38,10,32,32,32,32,32,32,32,32,33,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,112,97,114,101,110,116,34,93,32,38,38,10,32,32,32,32,32,32,32,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,118,105,100,101,111,99,34,93,32,33,61,61,32,34,116,105,102,102,34,32,38,38,10,32,32,32,32,32,32,32,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,118,105,100,101,111,99,34,93,32,33,61,61,32,34,114,97,119,34,32,38,38,10,32,32,32,32,32,32,32,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,118,105,100,101,111,99,34,93,32,33,61,61,32,34,112,112,109,34,59,10,125,10,10,102,117,110,99,116,105,111,110,32,109,97,107,101,80,108,97,99,101,104,111,108,100,101,114,40,119,44,32,104,44,32,115,109,97,108,108,41,32,123,10,32,32,32,32,108,101,116,32,99,97,108,99,59,10,32,32,32,32,105,102,32,40,115,109,97,108,108,41,32,123,10,32,32,32,32,32,32,32,32,99,97,108,99,32,61,32,119,32,62,32,104,10,32,32,32,32,32,32,32,32,32,32,32,32,63,32,40,54,52,32,47,32,119,32,47,32,104,41,32,62,61,32,49,48,48,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,63,32,40,54,52,32,42,32,119,32,47,32,104,41,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,58,32,54,52,10,32,32,32,32,32,32,32,32,32,32,32,32,58,32,54,52,59,10,32,32,32,32,125,32,101,108,115,101,32,123,10,32,32,32,32,32,32,32,32,99,97,108,99,32,61,32,119,32,62,32,104,10,32,32,32,32,32,32,32,32,32,32,32,32,63,32,40,49,55,53,32,47,32,119,32,47,32,104,41,32,62,61,32,50,55,50,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,63,32,40,49,55,53,32,42,32,119,32,47,32,104,41,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,58,32,49,55,53,10,32,32,32,32,32,32,32,32,32,32,32,32,58,32,49,55,53,59,10,32,32,32,32,125,10,10,32,32,32,32,99,111,110,115,116,32,101,108,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,101,108,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,115,116,121,108,101,34,44,32,96,104,101,105,103,104,116,58,32,36,123,99,97,108,99,125,112,120,96,41,59,10,32,32,32,32,114,101,116,117,114,110,32,101,108,59,10,125,10,10,102,117,110,99,116,105,111,110,32,101,120,116,40,104,105,116,41,32,123,10,32,32,32,32,114,101,116,117,114,110,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,34,101,120,116,101,110,115,105,111,110,34,41,32,38,38,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,101,120,116,101,110,115,105,111,110,34,93,32,33,61,61,32,34,34,32,63,32,34,46,34,32,43,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,101,120,116,101,110,115,105,111,110,34,93,32,58,32,34,34,59,10,125,10,10,102,117,110,99,116,105,111,110,32,109,97,107,101,84,105,116,108,101,40,104,105,116,41,32,123,10,32,32,32,32,108,101,116,32,116,105,116,108,101,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,116,105,116,108,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,102,105,108,101,45,116,105,116,108,101,34,41,59,10,32,32,32,32,108,101,116,32,101,120,116,101,110,115,105,111,110,32,61,32,101,120,116,40,104,105,116,41,59,10,10,32,32,32,32,97,112,112,108,121,78,97,109,101,84,111,84,105,116,108,101,40,104,105,116,44,32,116,105,116,108,101,44,32,101,120,116,101,110,115,105,111,110,41,59,10,10,32,32,32,32,116,105,116,108,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,116,105,116,108,101,34,44,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,112,97,116,104,34,93,32,43,32,34,47,34,32,43,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,110,97,109,101,34,93,32,43,32,101,120,116,101,110,115,105,111,110,41,59,10,32,32,32,32,114,101,116,117,114,110,32,116,105,116,108,101,59,10,125,10,10,102,117,110,99,116,105,111,110,32,103,101,116,84,97,103,115,40,104,105,116,44,32,109,105,109,101,67,97,116,101,103,111,114,121,41,32,123,10,10,32,32,32,32,108,101,116,32,116,97,103,115,32,61,32,91,93,59,10,32,32,32,32,115,119,105,116,99,104,32,40,109,105,109,101,67,97,116,101,103,111,114,121,41,32,123,10,32,32,32,32,32,32,32,32,99,97,115,101,32,34,118,105,100,101,111,34,58,10,32,32,32,32,32,32,32,32,99,97,115,101,32,34,105,109,97,103,101,34,58,10,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,104,105,116,91,34,95,115,111,117,114,99,101,34,93,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,34,118,105,100,101,111,99,34,41,32,38,38,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,118,105,100,101,111,99,34,93,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,111,110,115,116,32,102,111,114,109,97,116,84,97,103,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,115,112,97,110,34,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,111,114,109,97,116,84,97,103,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,98,97,100,103,101,32,98,97,100,103,101,45,112,105,108,108,32,98,97,100,103,101,45,118,105,100,101,111,34,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,111,114,109,97,116,84,97,103,46,97,112,112,101,110,100,67,104,105,108,100,40,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,84,101,120,116,78,111,100,101,40,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,118,105,100,101,111,99,34,93,46,114,101,112,108,97,99,101,40,34,32,34,44,32,34,34,41,41,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,97,103,115,46,112,117,115,104,40,102,111,114,109,97,116,84,97,103,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,32,32,32,32,98,114,101,97,107,59,10,32,32,32,32,32,32,32,32,99,97,115,101,32,34,97,117,100,105,111,34,58,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,104,105,116,91,34,95,115,111,117,114,99,101,34,93,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,34,97,117,100,105,111,99,34,41,32,38,38,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,97,117,100,105,111,99,34,93,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,108,101,116,32,102,111,114,109,97,116,84,97,103,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,115,112,97,110,34,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,111,114,109,97,116,84,97,103,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,98,97,100,103,101,32,98,97,100,103,101,45,112,105,108,108,32,98,97,100,103,101,45,97,117,100,105,111,34,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,111,114,109,97,116,84,97,103,46,97,112,112,101,110,100,67,104,105,108,100,40,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,84,101,120,116,78,111,100,101,40,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,97,117,100,105,111,99,34,93,41,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,97,103,115,46,112,117,115,104,40,102,111,114,109,97,116,84,97,103,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,32,32,32,32,98,114,101,97,107,59,10,32,32,32,32,125,10,32,32,32,32,47,47,32,85,115,101,114,32,116,97,103,115,10,32,32,32,32,105,102,32,40,104,105,116,91,34,95,115,111,117,114,99,101,34,93,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,34,116,97,103,34,41,41,32,123,10,32,32,32,32,32,32,32,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,116,97,103,34,93,46,102,111,114,69,97,99,104,40,116,97,103,32,61,62,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,116,97,103,115,46,112,117,115,104,40,109,97,107,101,85,115,101,114,84,97,103,40,116,97,103,44,32,104,105,116,41,41,59,10,32,32,32,32,32,32,32,32,125,41,10,32,32,32,32,125,10,10,32,32,32,32,114,101,116,117,114,110,32,116,97,103,115,10,125,10,10,102,117,110,99,116,105,111,110,32,109,97,107,101,85,115,101,114,84,97,103,40,116,97,103,44,32,104,105,116,41,32,123,10,32,32,32,32,99,111,110,115,116,32,117,115,101,114,84,97,103,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,115,112,97,110,34,41,59,10,32,32,32,32,117,115,101,114,84,97,103,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,98,97,100,103,101,32,98,97,100,103,101,45,112,105,108,108,32,98,97,100,103,101,45,117,115,101,114,34,41,59,10,32,32,32,32,117,115,101,114,84,97,103,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,116,105,116,108,101,34,44,32,116,97,103,46,115,112,108,105,116,40,34,35,34,41,91,48,93,41,10,10,32,32,32,32,99,111,110,115,116,32,116,111,107,101,110,115,32,61,32,116,97,103,46,115,112,108,105,116,40,34,35,34,41,59,10,10,32,32,32,32,105,102,32,40,116,111,107,101,110,115,46,108,101,110,103,116,104,32,62,32,49,41,32,123,10,32,32,32,32,32,32,32,32,99,111,110,115,116,32,98,103,32,61,32,34,35,34,32,43,32,116,111,107,101,110,115,91,49,93,59,10,32,32,32,32,32,32,32,32,99,111,110,115,116,32,102,103,32,61,32,108,117,109,40,116,111,107,101,110,115,91,49,93,41,32,62,32,53,48,32,63,32,34,35,48,48,48,34,32,58,32,34,35,102,102,102,34,59,10,32,32,32,32,32,32,32,32,117,115,101,114,84,97,103,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,115,116,121,108,101,34,44,32,96,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,36,123,98,103,125,59,32,99,111,108,111,114,58,32,36,123,102,103,125,96,41,59,10,32,32,32,32,125,10,10,32,32,32,32,99,111,110,115,116,32,100,101,108,101,116,101,66,117,116,116,111,110,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,115,112,97,110,34,41,59,10,32,32,32,32,100,101,108,101,116,101,66,117,116,116,111,110,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,98,97,100,103,101,32,98,97,100,103,101,45,112,105,108,108,32,98,97,100,103,101,45,100,101,108,101,116,101,34,41,10,32,32,32,32,100,101,108,101,116,101,66,117,116,116,111,110,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,116,105,116,108,101,34,44,32,34,68,101,108,101,116,101,32,116,97,103,34,41,10,32,32,32,32,100,101,108,101,116,101,66,117,116,116,111,110,46,97,112,112,101,110,100,67,104,105,108,100,40,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,84,101,120,116,78,111,100,101,40,34,88,34,41,41,59,10,32,32,32,32,100,101,108,101,116,101,66,117,116,116,111,110,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,99,108,105,99,107,34,44,32,40,41,32,61,62,32,123,10,32,32,32,32,32,32,32,32,100,101,108,101,116,101,84,97,103,40,116,97,103,44,32,104,105,116,41,46,116,104,101,110,40,40,41,32,61,62,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,117,115,101,114,84,97,103,46,114,101,109,111,118,101,40,41,59,10,32,32,32,32,32,32,32,32,125,41,59,10,32,32,32,32,125,41,59,10,32,32,32,32,117,115,101,114,84,97,103,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,109,111,117,115,101,101,110,116,101,114,34,44,32,40,41,32,61,62,32,117,115,101,114,84,97,103,46,97,112,112,101,110,100,67,104,105,108,100,40,100,101,108,101,116,101,66,117,116,116,111,110,41,41,59,10,32,32,32,32,117,115,101,114,84,97,103,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,109,111,117,115,101,108,101,97,118,101,34,44,32,40,41,32,61,62,32,100,101,108,101,116,101,66,117,116,116,111,110,46,114,101,109,111,118,101,40,41,41,59,10,10,32,32,32,32,99,111,110,115,116,32,110,97,109,101,32,61,32,116,111,107,101,110,115,91,48,93,46,115,112,108,105,116,40,34,46,34,41,91,116,111,107,101,110,115,91,48,93,46,115,112,108,105,116,40,34,46,34,41,46,108,101,110,103,116,104,32,45,32,49,93,59,10,32,32,32,32,117,115,101,114,84,97,103,46,97,112,112,101,110,100,67,104,105,108,100,40,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,84,101,120,116,78,111,100,101,40,110,97,109,101,41,41,59,10,10,32,32,32,32,114,101,116,117,114,110,32,117,115,101,114,84,97,103,59,10,125,10,10,102,117,110,99,116,105,111,110,32,105,110,102,111,66,117,116,116,111,110,67,98,40,104,105,116,41,32,123,10,32,32,32,32,114,101,116,117,114,110,32,40,41,32,61,62,32,123,10,32,32,32,32,32,32,32,32,103,101,116,68,111,99,117,109,101,110,116,73,110,102,111,40,104,105,116,91,34,95,105,100,34,93,41,46,116,104,101,110,40,100,111,99,32,61,62,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,36,40,34,35,109,111,100,97,108,45,116,105,116,108,101,34,41,46,116,101,120,116,40,100,111,99,91,34,110,97,109,101,34,93,32,43,32,101,120,116,40,104,105,116,41,41,59,10,10,32,32,32,32,32,32,32,32,32,32,32,32,99,111,110,115,116,32,116,98,111,100,121,32,61,32,36,40,34,60,116,98,111,100,121,62,34,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,36,40,34,35,109,111,100,97,108,45,98,111,100,121,34,41,46,101,109,112,116,121,40,41,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,46,97,112,112,101,110,100,40,36,40,34,60,116,97,98,108,101,32,99,108,97,115,115,61,39,116,97,98,108,101,32,116,97,98,108,101,45,115,109,39,62,34,41,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,46,97,112,112,101,110,100,40,36,40,34,60,116,104,101,97,100,62,34,41,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,46,97,112,112,101,110,100,40,36,40,34,60,116,114,62,34,41,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,46,97,112,112,101,110,100,40,36,40,34,60,116,104,62,34,41,46,116,101,120,116,40,34,70,105,101,108,100,34,41,41,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,46,97,112,112,101,110,100,40,36,40,34,60,116,104,62,34,41,46,116,101,120,116,40,34,86,97,108,117,101,34,41,41,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,41,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,41,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,46,97,112,112,101,110,100,40,116,98,111,100,121,41,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,41,59,10,10,32,32,32,32,32,32,32,32,32,32,32,32,116,98,111,100,121,46,97,112,112,101,110,100,40,36,40,34,60,116,114,62,34,41,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,46,97,112,112,101,110,100,40,36,40,34,60,116,100,62,34,41,46,116,101,120,116,40,34,105,110,100,101,120,34,41,41,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,46,97,112,112,101,110,100,40,36,40,34,60,116,100,62,34,41,46,116,101,120,116,40,96,91,36,123,105,110,100,101,120,77,97,112,91,100,111,99,91,34,105,110,100,101,120,34,93,93,125,93,96,41,41,10,32,32,32,32,32,32,32,32,32,32,32,32,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,99,111,110,115,116,32,100,105,115,112,108,97,121,70,105,101,108,100,115,32,61,32,110,101,119,32,83,101,116,40,91,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,34,109,105,109,101,34,44,32,34,115,105,122,101,34,44,32,34,109,116,105,109,101,34,44,32,34,112,97,116,104,34,44,32,34,116,105,116,108,101,34,44,32,34,119,105,100,116,104,34,44,32,34,104,101,105,103,104,116,34,44,32,34,100,117,114,97,116,105,111,110,34,44,32,34,97,117,100,105,111,99,34,44,32,34,118,105,100,101,111,99,34,44,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,34,98,105,116,114,97,116,101,34,44,32,34,97,114,116,105,115,116,34,44,32,34,97,108,98,117,109,34,44,32,34,97,108,98,117,109,95,97,114,116,105,115,116,34,44,32,34,103,101,110,114,101,34,44,32,34,116,105,116,108,101,34,44,32,34,102,111,110,116,95,110,97,109,101,34,44,32,34,116,97,103,34,44,32,34,97,117,116,104,111,114,34,44,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,34,109,111,100,105,102,105,101,100,95,98,121,34,10,32,32,32,32,32,32,32,32,32,32,32,32,93,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,79,98,106,101,99,116,46,107,101,121,115,40,100,111,99,41,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,46,102,105,108,116,101,114,40,107,101,121,32,61,62,32,107,101,121,46,115,116,97,114,116,115,87,105,116,104,40,34,95,107,101,121,119,111,114,100,46,34,41,32,124,124,32,107,101,121,46,115,116,97,114,116,115,87,105,116,104,40,34,95,116,101,120,116,46,34,41,32,124,124,32,100,105,115,112,108,97,121,70,105,101,108,100,115,46,104,97,115,40,107,101,121,41,32,124,124,32,107,101,121,46,115,116,97,114,116,115,87,105,116,104,40,34,101,120,105,102,95,34,41,41,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,46,102,111,114,69,97,99,104,40,107,101,121,32,61,62,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,98,111,100,121,46,97,112,112,101,110,100,40,36,40,34,60,116,114,62,34,41,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,46,97,112,112,101,110,100,40,36,40,34,60,116,100,62,34,41,46,116,101,120,116,40,107,101,121,41,41,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,46,97,112,112,101,110,100,40,36,40,34,60,116,100,62,34,41,46,116,101,120,116,40,100,111,99,91,107,101,121,93,41,41,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,100,111,99,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,34,99,111,110,116,101,110,116,34,41,32,38,38,32,100,111,99,91,34,99,111,110,116,101,110,116,34,93,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,36,40,34,35,109,111,100,97,108,45,98,111,100,121,34,41,46,97,112,112,101,110,100,40,36,40,34,60,100,105,118,32,99,108,97,115,115,61,39,99,111,110,116,101,110,116,45,100,105,118,39,62,34,41,46,116,101,120,116,40,100,111,99,91,34,99,111,110,116,101,110,116,34,93,41,41,10,32,32,32,32,32,32,32,32,32,32,32,32,125,10,10,32,32,32,32,32,32,32,32,32,32,32,32,36,40,34,35,109,111,100,97,108,34,41,46,109,111,100,97,108,40,41,59,10,32,32,32,32,32,32,32,32,125,41,59,10,32,32,32,32,125,10,125,10,10,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,68,111,99,67,97,114,100,40,104,105,116,41,32,123,10,32,32,32,32,108,101,116,32,100,111,99,67,97,114,100,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,100,111,99,67,97,114,100,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,99,97,114,100,34,41,59,10,10,32,32,32,32,108,101,116,32,100,111,99,67,97,114,100,66,111,100,121,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,100,111,99,67,97,114,100,66,111,100,121,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,99,97,114,100,45,98,111,100,121,32,100,111,99,117,109,101,110,116,34,41,59,10,10,32,32,32,32,47,47,84,105,116,108,101,10,32,32,32,32,108,101,116,32,116,105,116,108,101,32,61,32,109,97,107,101,84,105,116,108,101,40,104,105,116,41,59,10,32,32,32,32,108,101,116,32,105,115,83,117,98,68,111,99,117,109,101,110,116,32,61,32,102,97,108,115,101,59,10,10,32,32,32,32,108,101,116,32,108,105,110,107,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,97,34,41,59,10,32,32,32,32,108,105,110,107,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,104,114,101,102,34,44,32,34,102,47,34,32,43,32,104,105,116,91,34,95,105,100,34,93,41,59,10,32,32,32,32,108,105,110,107,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,116,97,114,103,101,116,34,44,32,34,95,98,108,97,110,107,34,41,59,10,32,32,32,32,108,105,110,107,46,115,116,121,108,101,46,109,97,120,87,105,100,116,104,32,61,32,34,99,97,108,99,40,49,48,48,37,32,45,32,49,46,50,114,101,109,41,34,59,10,32,32,32,32,108,105,110,107,46,97,112,112,101,110,100,67,104,105,108,100,40,116,105,116,108,101,41,59,10,10,32,32,32,32,105,102,32,40,104,105,116,91,34,95,115,111,117,114,99,101,34,93,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,34,112,97,114,101,110,116,34,41,41,32,123,10,32,32,32,32,32,32,32,32,100,111,99,67,97,114,100,46,99,108,97,115,115,76,105,115,116,46,97,100,100,40,34,115,117,98,45,100,111,99,117,109,101,110,116,34,41,59,10,32,32,32,32,32,32,32,32,105,115,83,117,98,68,111,99,117,109,101,110,116,32,61,32,116,114,117,101,59,10,32,32,32,32,125,10,10,32,32,32,32,108,101,116,32,116,97,103,67,111,110,116,97,105,110,101,114,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,116,97,103,67,111,110,116,97,105,110,101,114,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,99,97,114,100,45,116,101,120,116,34,41,59,10,10,32,32,32,32,105,102,32,40,104,105,116,91,34,95,115,111,117,114,99,101,34,93,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,34,109,105,109,101,34,41,32,38,38,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,109,105,109,101,34,93,32,33,61,61,32,110,117,108,108,41,32,123,10,10,32,32,32,32,32,32,32,32,108,101,116,32,116,104,117,109,98,110,97,105,108,79,118,101,114,108,97,121,32,61,32,110,117,108,108,59,10,32,32,32,32,32,32,32,32,108,101,116,32,105,109,103,87,114,97,112,112,101,114,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,32,32,32,32,105,109,103,87,114,97,112,112,101,114,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,115,116,121,108,101,34,44,32,34,112,111,115,105,116,105,111,110,58,32,114,101,108,97,116,105,118,101,34,41,59,10,32,32,32,32,32,32,32,32,105,109,103,87,114,97,112,112,101,114,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,105,109,103,45,119,114,97,112,112,101,114,34,41,59,10,10,32,32,32,32,32,32,32,32,108,101,116,32,109,105,109,101,67,97,116,101,103,111,114,121,32,61,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,109,105,109,101,34,93,46,115,112,108,105,116,40,34,47,34,41,91,48,93,59,10,10,32,32,32,32,32,32,32,32,47,47,84,104,117,109,98,110,97,105,108,10,32,32,32,32,32,32,32,32,108,101,116,32,116,104,117,109,98,110,97,105,108,32,61,32,109,97,107,101,84,104,117,109,98,110,97,105,108,40,109,105,109,101,67,97,116,101,103,111,114,121,44,32,104,105,116,44,32,105,109,103,87,114,97,112,112,101,114,44,32,102,97,108,115,101,41,59,10,10,32,32,32,32,32,32,32,32,47,47,84,104,117,109,98,110,97,105,108,32,111,118,101,114,108,97,121,10,32,32,32,32,32,32,32,32,115,119,105,116,99,104,32,40,109,105,109,101,67,97,116,101,103,111,114,121,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,34,105,109,97,103,101,34,58,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,117,109,98,110,97,105,108,79,118,101,114,108,97,121,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,117,109,98,110,97,105,108,79,118,101,114,108,97,121,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,99,97,114,100,45,105,109,103,45,111,118,101,114,108,97,121,34,41,59,10,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,82,101,115,111,108,117,116,105,111,110,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,104,105,116,91,34,95,115,111,117,114,99,101,34,93,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,34,119,105,100,116,104,34,41,32,38,38,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,119,105,100,116,104,34,93,32,62,32,51,50,32,38,38,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,104,101,105,103,104,116,34,93,32,62,32,51,50,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,108,101,116,32,114,101,115,111,108,117,116,105,111,110,66,97,100,103,101,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,115,112,97,110,34,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,115,111,108,117,116,105,111,110,66,97,100,103,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,98,97,100,103,101,32,98,97,100,103,101,45,114,101,115,111,108,117,116,105,111,110,34,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,104,105,116,91,34,95,115,111,117,114,99,101,34,93,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,34,119,105,100,116,104,34,41,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,115,111,108,117,116,105,111,110,66,97,100,103,101,46,97,112,112,101,110,100,67,104,105,108,100,40,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,84,101,120,116,78,111,100,101,40,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,119,105,100,116,104,34,93,32,43,32,34,120,34,32,43,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,104,101,105,103,104,116,34,93,41,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,117,109,98,110,97,105,108,79,118,101,114,108,97,121,46,97,112,112,101,110,100,67,104,105,108,100,40,114,101,115,111,108,117,116,105,111,110,66,97,100,103,101,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,10,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,72,111,118,101,114,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,116,104,117,109,98,110,97,105,108,32,38,38,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,118,105,100,101,111,99,34,93,32,61,61,61,32,34,103,105,102,34,32,38,38,32,33,105,115,83,117,98,68,111,99,117,109,101,110,116,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,103,105,102,79,118,101,114,40,116,104,117,109,98,110,97,105,108,44,32,104,105,116,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,98,114,101,97,107,59,10,10,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,34,118,105,100,101,111,34,58,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,68,117,114,97,116,105,111,110,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,104,105,116,91,34,95,115,111,117,114,99,101,34,93,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,34,100,117,114,97,116,105,111,110,34,41,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,117,109,98,110,97,105,108,79,118,101,114,108,97,121,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,117,109,98,110,97,105,108,79,118,101,114,108,97,121,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,99,97,114,100,45,105,109,103,45,111,118,101,114,108,97,121,34,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,111,110,115,116,32,100,117,114,97,116,105,111,110,66,97,100,103,101,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,115,112,97,110,34,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,100,117,114,97,116,105,111,110,66,97,100,103,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,98,97,100,103,101,32,98,97,100,103,101,45,114,101,115,111,108,117,116,105,111,110,34,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,100,117,114,97,116,105,111,110,66,97,100,103,101,46,97,112,112,101,110,100,67,104,105,108,100,40,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,84,101,120,116,78,111,100,101,40,104,117,109,97,110,84,105,109,101,40,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,100,117,114,97,116,105,111,110,34,93,41,41,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,117,109,98,110,97,105,108,79,118,101,114,108,97,121,46,97,112,112,101,110,100,67,104,105,108,100,40,100,117,114,97,116,105,111,110,66,97,100,103,101,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,125,10,10,32,32,32,32,32,32,32,32,47,47,32,84,97,103,115,10,32,32,32,32,32,32,32,32,108,101,116,32,116,97,103,115,32,61,32,103,101,116,84,97,103,115,40,104,105,116,44,32,109,105,109,101,67,97,116,101,103,111,114,121,41,59,10,32,32,32,32,32,32,32,32,102,111,114,32,40,108,101,116,32,105,32,61,32,48,59,32,105,32,60,32,116,97,103,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,116,97,103,67,111,110,116,97,105,110,101,114,46,97,112,112,101,110,100,67,104,105,108,100,40,116,97,103,115,91,105,93,41,59,10,32,32,32,32,32,32,32,32,125,10,10,32,32,32,32,32,32,32,32,47,47,67,111,110,116,101,110,116,10,32,32,32,32,32,32,32,32,108,101,116,32,99,111,110,116,101,110,116,72,108,32,61,32,103,101,116,67,111,110,116,101,110,116,72,105,103,104,108,105,103,104,116,40,104,105,116,41,59,10,32,32,32,32,32,32,32,32,105,102,32,40,99,111,110,116,101,110,116,72,108,32,33,61,61,32,117,110,100,101,102,105,110,101,100,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,99,111,110,115,116,32,99,111,110,116,101,110,116,68,105,118,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,99,111,110,116,101,110,116,68,105,118,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,99,111,110,116,101,110,116,45,100,105,118,34,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,99,111,110,116,101,110,116,68,105,118,46,105,110,115,101,114,116,65,100,106,97,99,101,110,116,72,84,77,76,40,39,97,102,116,101,114,98,101,103,105,110,39,44,32,99,111,110,116,101,110,116,72,108,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,100,111,99,67,97,114,100,46,97,112,112,101,110,100,67,104,105,108,100,40,99,111,110,116,101,110,116,68,105,118,41,59,10,32,32,32,32,32,32,32,32,125,10,10,32,32,32,32,32,32,32,32,105,102,32,40,116,104,117,109,98,110,97,105,108,32,33,61,61,32,110,117,108,108,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,100,111,99,67,97,114,100,46,97,112,112,101,110,100,67,104,105,108,100,40,105,109,103,87,114,97,112,112,101,114,41,59,10,32,32,32,32,32,32,32,32,125,10,10,32,32,32,32,32,32,32,32,47,47,65,117,100,105,111,10,32,32,32,32,32,32,32,32,105,102,32,40,109,105,109,101,67,97,116,101,103,111,114,121,32,61,61,61,32,34,97,117,100,105,111,34,32,38,38,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,34,97,117,100,105,111,99,34,41,32,38,38,32,33,105,115,83,117,98,68,111,99,117,109,101,110,116,41,32,123,10,10,32,32,32,32,32,32,32,32,32,32,32,32,108,101,116,32,97,117,100,105,111,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,97,117,100,105,111,34,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,97,117,100,105,111,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,112,114,101,108,111,97,100,34,44,32,34,110,111,110,101,34,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,97,117,100,105,111,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,97,117,100,105,111,45,102,105,116,32,102,105,116,34,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,97,117,100,105,111,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,111,110,116,114,111,108,115,34,44,32,34,34,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,97,117,100,105,111,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,116,121,112,101,34,44,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,109,105,109,101,34,93,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,97,117,100,105,111,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,115,114,99,34,44,32,34,102,47,34,32,43,32,104,105,116,91,34,95,105,100,34,93,41,59,10,10,32,32,32,32,32,32,32,32,32,32,32,32,100,111,99,67,97,114,100,46,97,112,112,101,110,100,67,104,105,108,100,40,97,117,100,105,111,41,10,32,32,32,32,32,32,32,32,125,10,10,32,32,32,32,32,32,32,32,105,102,32,40,116,104,117,109,98,110,97,105,108,79,118,101,114,108,97,121,32,33,61,61,32,110,117,108,108,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,105,109,103,87,114,97,112,112,101,114,46,97,112,112,101,110,100,67,104,105,108,100,40,116,104,117,109,98,110,97,105,108,79,118,101,114,108,97,121,41,59,10,32,32,32,32,32,32,32,32,125,10,32,32,32,32,125,10,10,32,32,32,32,47,47,83,105,122,101,32,116,97,103,10,32,32,32,32,108,101,116,32,115,105,122,101,84,97,103,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,115,109,97,108,108,34,41,59,10,32,32,32,32,115,105,122,101,84,97,103,46,97,112,112,101,110,100,67,104,105,108,100,40,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,84,101,120,116,78,111,100,101,40,104,117,109,97,110,70,105,108,101,83,105,122,101,40,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,115,105,122,101,34,93,41,41,41,59,10,32,32,32,32,115,105,122,101,84,97,103,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,116,101,120,116,45,109,117,116,101,100,34,41,59,10,32,32,32,32,116,97,103,67,111,110,116,97,105,110,101,114,46,97,112,112,101,110,100,67,104,105,108,100,40,115,105,122,101,84,97,103,41,59,10,10,32,32,32,32,99,111,110,115,116,32,116,105,116,108,101,87,114,97,112,112,101,114,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,116,105,116,108,101,87,114,97,112,112,101,114,46,115,116,121,108,101,46,100,105,115,112,108,97,121,32,61,32,34,102,108,101,120,34,59,10,10,32,32,32,32,99,111,110,115,116,32,105,110,102,111,66,117,116,116,111,110,32,61,32,109,97,107,101,73,110,102,111,66,117,116,116,111,110,40,104,105,116,41,59,10,10,32,32,32,32,116,105,116,108,101,87,114,97,112,112,101,114,46,97,112,112,101,110,100,67,104,105,108,100,40,105,110,102,111,66,117,116,116,111,110,41,59,10,32,32,32,32,116,105,116,108,101,87,114,97,112,112,101,114,46,97,112,112,101,110,100,67,104,105,108,100,40,108,105,110,107,41,59,10,10,32,32,32,32,100,111,99,67,97,114,100,66,111,100,121,46,97,112,112,101,110,100,67,104,105,108,100,40,116,105,116,108,101,87,114,97,112,112,101,114,41,59,10,32,32,32,32,100,111,99,67,97,114,100,46,97,112,112,101,110,100,67,104,105,108,100,40,100,111,99,67,97,114,100,66,111,100,121,41,59,10,10,32,32,32,32,100,111,99,67,97,114,100,66,111,100,121,46,97,112,112,101,110,100,67,104,105,108,100,40,116,97,103,67,111,110,116,97,105,110,101,114,41,59,10,10,32,32,32,32,97,116,116,97,99,104,84,97,103,67,111,110,116,97,105,110,101,114,69,118,101,110,116,76,105,115,116,101,110,101,114,40,116,97,103,67,111,110,116,97,105,110,101,114,44,32,104,105,116,41,59,10,32,32,32,32,114,101,116,117,114,110,32,100,111,99,67,97,114,100,59,10,125,10,10,102,117,110,99,116,105,111,110,32,97,116,116,97,99,104,84,97,103,67,111,110,116,97,105,110,101,114,69,118,101,110,116,76,105,115,116,101,110,101,114,40,116,97,103,67,111,110,116,97,105,110,101,114,44,32,104,105,116,41,32,123,10,32,32,32,32,99,111,110,115,116,32,115,105,122,101,84,97,103,32,61,32,65,114,114,97,121,46,102,114,111,109,40,116,97,103,67,111,110,116,97,105,110,101,114,46,99,104,105,108,100,114,101,110,41,46,102,105,110,100,40,99,104,105,108,100,32,61,62,32,99,104,105,108,100,46,116,97,103,78,97,109,101,32,61,61,61,32,34,83,77,65,76,76,34,41,59,10,10,32,32,32,32,99,111,110,115,116,32,97,100,100,84,97,103,66,117,116,116,111,110,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,115,112,97,110,34,41,59,10,32,32,32,32,97,100,100,84,97,103,66,117,116,116,111,110,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,98,97,100,103,101,32,98,97,100,103,101,45,112,105,108,108,32,97,100,100,45,116,97,103,45,98,117,116,116,111,110,34,41,59,10,32,32,32,32,97,100,100,84,97,103,66,117,116,116,111,110,46,97,112,112,101,110,100,67,104,105,108,100,40,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,84,101,120,116,78,111,100,101,40,34,43,65,100,100,34,41,41,59,10,10,32,32,32,32,116,97,103,67,111,110,116,97,105,110,101,114,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,109,111,117,115,101,101,110,116,101,114,34,44,32,40,41,32,61,62,32,116,97,103,67,111,110,116,97,105,110,101,114,46,105,110,115,101,114,116,66,101,102,111,114,101,40,97,100,100,84,97,103,66,117,116,116,111,110,44,32,115,105,122,101,84,97,103,41,41,59,10,32,32,32,32,116,97,103,67,111,110,116,97,105,110,101,114,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,109,111,117,115,101,108,101,97,118,101,34,44,32,40,41,32,61,62,32,97,100,100,84,97,103,66,117,116,116,111,110,46,114,101,109,111,118,101,40,41,41,59,10,10,32,32,32,32,97,100,100,84,97,103,66,117,116,116,111,110,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,99,108,105,99,107,34,44,32,40,41,32,61,62,32,123,10,32,32,32,32,32,32,32,32,116,97,103,66,97,114,46,118,97,108,117,101,32,61,32,34,34,59,10,32,32,32,32,32,32,32,32,99,117,114,114,101,110,116,68,111,99,84,111,84,97,103,32,61,32,104,105,116,59,10,32,32,32,32,32,32,32,32,99,117,114,114,101,110,116,84,97,103,67,97,108,108,98,97,99,107,32,61,32,116,97,103,32,61,62,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,116,97,103,67,111,110,116,97,105,110,101,114,46,105,110,115,101,114,116,66,101,102,111,114,101,40,109,97,107,101,85,115,101,114,84,97,103,40,116,97,103,44,32,104,105,116,41,44,32,115,105,122,101,84,97,103,41,59,10,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,36,40,34,35,116,97,103,77,111,100,97,108,34,41,46,109,111,100,97,108,40,34,115,104,111,119,34,41,59,10,32,32,32,32,32,32,32,32,116,97,103,66,97,114,46,102,111,99,117,115,40,41,59,10,32,32,32,32,125,41,59,10,125,10,10,102,117,110,99,116,105,111,110,32,109,97,107,101,84,104,117,109,98,110,97,105,108,40,109,105,109,101,67,97,116,101,103,111,114,121,44,32,104,105,116,44,32,105,109,103,87,114,97,112,112,101,114,44,32,115,109,97,108,108,41,32,123,10,10,32,32,32,32,105,102,32,40,33,104,105,116,91,34,95,115,111,117,114,99,101,34,93,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,34,116,104,117,109,98,110,97,105,108,34,41,41,32,123,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,110,117,108,108,59,10,32,32,32,32,125,10,10,32,32,32,32,108,101,116,32,116,104,117,109,98,110,97,105,108,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,105,109,103,34,41,59,10,32,32,32,32,105,102,32,40,115,109,97,108,108,41,32,123,10,32,32,32,32,32,32,32,32,116,104,117,109,98,110,97,105,108,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,102,105,116,45,115,109,34,41,59,10,32,32,32,32,125,32,101,108,115,101,32,123,10,32,32,32,32,32,32,32,32,105,102,32,40,104,105,116,91,34,95,115,111,117,114,99,101,34,93,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,34,112,97,114,101,110,116,34,41,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,116,104,117,109,98,110,97,105,108,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,99,97,114,100,45,105,109,103,45,116,111,112,32,102,105,116,32,105,109,103,45,112,97,100,100,105,110,103,34,41,59,10,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,116,104,117,109,98,110,97,105,108,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,99,97,114,100,45,105,109,103,45,116,111,112,32,102,105,116,34,41,59,10,32,32,32,32,32,32,32,32,125,10,32,32,32,32,125,10,32,32,32,32,116,104,117,109,98,110,97,105,108,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,115,114,99,34,44,32,96,116,47,36,123,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,105,110,100,101,120,34,93,125,47,36,123,104,105,116,91,34,95,105,100,34,93,125,96,41,59,10,10,32,32,32,32,105,102,32,40,115,104,111,117,108,100,68,105,115,112,108,97,121,82,97,119,73,109,97,103,101,40,104,105,116,41,41,32,123,10,32,32,32,32,32,32,32,32,116,104,117,109,98,110,97,105,108,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,99,108,105,99,107,34,44,32,40,41,32,61,62,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,99,111,110,115,116,32,108,32,61,32,108,105,116,121,40,96,102,47,36,123,104,105,116,91,34,95,105,100,34,93,125,35,46,106,112,103,96,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,119,105,110,100,111,119,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,115,99,114,111,108,108,34,44,32,40,41,32,61,62,32,108,46,99,108,111,115,101,40,41,41,59,10,32,32,32,32,32,32,32,32,125,41,59,10,10,32,32,32,32,32,32,32,32,116,104,117,109,98,110,97,105,108,46,99,108,97,115,115,76,105,115,116,46,97,100,100,40,34,112,111,105,110,116,101,114,34,41,59,10,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,115,104,111,117,108,100,80,108,97,121,86,105,100,101,111,40,104,105,116,41,41,32,123,10,32,32,32,32,32,32,32,32,116,104,117,109,98,110,97,105,108,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,99,108,105,99,107,34,44,32,40,41,32,61,62,32,108,105,116,121,40,96,102,47,36,123,104,105,116,91,34,95,105,100,34,93,125,35,46,109,112,52,96,41,41,59,10,10,32,32,32,32,32,32,32,32,116,104,117,109,98,110,97,105,108,46,99,108,97,115,115,76,105,115,116,46,97,100,100,40,34,112,111,105,110,116,101,114,34,41,59,10,10,32,32,32,32,32,32,32,32,105,102,32,40,33,115,109,97,108,108,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,99,111,110,115,116,32,112,108,97,121,79,118,101,114,108,97,121,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,112,108,97,121,79,118,101,114,108,97,121,46,105,110,110,101,114,72,84,77,76,32,61,32,39,60,115,118,103,32,118,105,101,119,66,111,120,61,34,48,32,48,32,52,57,52,46,57,52,50,32,52,57,52,46,57,52,50,34,32,120,109,108,110,115,61,34,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,115,118,103,34,62,60,112,97,116,104,32,100,61,34,109,51,53,46,51,53,51,32,48,32,52,50,52,46,50,51,54,32,50,52,55,46,52,55,49,45,52,50,52,46,50,51,54,32,50,52,55,46,52,55,49,122,34,47,62,60,47,115,118,103,62,39,59,10,32,32,32,32,32,32,32,32,32,32,32,32,112,108,97,121,79,118,101,114,108,97,121,46,99,108,97,115,115,76,105,115,116,46,97,100,100,40,34,112,108,97,121,34,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,105,109,103,87,114,97,112,112,101,114,46,112,114,101,112,101,110,100,40,112,108,97,121,79,118,101,114,108,97,121,41,59,10,32,32,32,32,32,32,32,32,125,10,32,32,32,32,125,10,10,32,32,32,32,99,111,110,115,116,32,112,108,97,99,101,104,111,108,100,101,114,32,61,32,109,97,107,101,80,108,97,99,101,104,111,108,100,101,114,40,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,119,105,100,116,104,34,93,44,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,104,101,105,103,104,116,34,93,44,32,115,109,97,108,108,41,59,10,32,32,32,32,105,109,103,87,114,97,112,112,101,114,46,97,112,112,101,110,100,67,104,105,108,100,40,112,108,97,99,101,104,111,108,100,101,114,41,59,10,10,32,32,32,32,116,104,117,109,98,110,97,105,108,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,101,114,114,111,114,34,44,32,40,41,32,61,62,32,123,10,32,32,32,32,32,32,32,32,105,109,103,87,114,97,112,112,101,114,46,114,101,109,111,118,101,40,41,59,10,32,32,32,32,125,41,59,10,32,32,32,32,116,104,117,109,98,110,97,105,108,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,108,111,97,100,34,44,32,40,41,32,61,62,32,123,10,32,32,32,32,32,32,32,32,112,108,97,99,101,104,111,108,100,101,114,46,114,101,109,111,118,101,40,41,59,10,32,32,32,32,32,32,32,32,105,109,103,87,114,97,112,112,101,114,46,97,112,112,101,110,100,67,104,105,108,100,40,116,104,117,109,98,110,97,105,108,41,59,10,32,32,32,32,125,41,59,10,10,32,32,32,32,114,101,116,117,114,110,32,116,104,117,109,98,110,97,105,108,59,10,125,10,10,102,117,110,99,116,105,111,110,32,109,97,107,101,73,110,102,111,66,117,116,116,111,110,40,104,105,116,41,32,123,10,32,32,32,32,99,111,110,115,116,32,105,110,102,111,66,117,116,116,111,110,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,115,112,97,110,34,41,59,10,32,32,32,32,105,110,102,111,66,117,116,116,111,110,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,105,110,102,111,45,105,99,111,110,34,41,59,10,32,32,32,32,105,110,102,111,66,117,116,116,111,110,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,99,108,105,99,107,34,44,32,105,110,102,111,66,117,116,116,111,110,67,98,40,104,105,116,41,41,59,10,32,32,32,32,114,101,116,117,114,110,32,105,110,102,111,66,117,116,116,111,110,59,10,125,10,10,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,68,111,99,76,105,110,101,40,104,105,116,41,32,123,10,10,32,32,32,32,99,111,110,115,116,32,109,105,109,101,32,61,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,109,105,109,101,34,93,59,10,32,32,32,32,108,101,116,32,109,105,109,101,67,97,116,101,103,111,114,121,32,61,32,109,105,109,101,32,63,32,109,105,109,101,46,115,112,108,105,116,40,34,47,34,41,91,48,93,32,58,32,110,117,108,108,59,10,32,32,32,32,108,101,116,32,116,97,103,115,32,61,32,103,101,116,84,97,103,115,40,104,105,116,44,32,109,105,109,101,67,97,116,101,103,111,114,121,41,59,10,10,32,32,32,32,108,101,116,32,105,109,103,87,114,97,112,112,101,114,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,105,109,103,87,114,97,112,112,101,114,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,97,108,105,103,110,45,115,101,108,102,45,115,116,97,114,116,32,109,114,45,49,32,119,114,97,112,112,101,114,45,115,109,34,41,59,10,10,32,32,32,32,108,101,116,32,109,101,100,105,97,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,109,101,100,105,97,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,109,101,100,105,97,34,41,59,10,10,32,32,32,32,99,111,110,115,116,32,108,105,110,101,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,108,105,110,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,32,102,108,101,120,45,99,111,108,117,109,110,32,97,108,105,103,110,45,105,116,101,109,115,45,115,116,97,114,116,34,41,59,10,10,32,32,32,32,105,102,32,40,104,105,116,91,34,95,115,111,117,114,99,101,34,93,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,34,112,97,114,101,110,116,34,41,41,32,123,10,32,32,32,32,32,32,32,32,108,105,110,101,46,99,108,97,115,115,76,105,115,116,46,97,100,100,40,34,115,117,98,45,100,111,99,117,109,101,110,116,34,41,59,10,32,32,32,32,125,10,10,32,32,32,32,99,111,110,115,116,32,105,110,102,111,66,117,116,116,111,110,32,61,32,109,97,107,101,73,110,102,111,66,117,116,116,111,110,40,104,105,116,41,59,10,10,32,32,32,32,99,111,110,115,116,32,116,105,116,108,101,32,61,32,109,97,107,101,84,105,116,108,101,40,104,105,116,41,59,10,10,32,32,32,32,108,101,116,32,108,105,110,107,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,97,34,41,59,10,32,32,32,32,108,105,110,107,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,104,114,101,102,34,44,32,34,102,47,34,32,43,32,104,105,116,91,34,95,105,100,34,93,41,59,10,32,32,32,32,108,105,110,107,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,116,97,114,103,101,116,34,44,32,34,95,98,108,97,110,107,34,41,59,10,32,32,32,32,108,105,110,107,46,115,116,121,108,101,46,109,97,120,87,105,100,116,104,32,61,32,34,99,97,108,99,40,49,48,48,37,32,45,32,49,46,50,114,101,109,41,34,59,10,32,32,32,32,108,105,110,107,46,97,112,112,101,110,100,67,104,105,108,100,40,116,105,116,108,101,41,59,10,10,32,32,32,32,99,111,110,115,116,32,116,105,116,108,101,68,105,118,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,10,32,32,32,32,99,111,110,115,116,32,116,105,116,108,101,87,114,97,112,112,101,114,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,116,105,116,108,101,87,114,97,112,112,101,114,46,115,116,121,108,101,46,100,105,115,112,108,97,121,32,61,32,34,102,108,101,120,34,59,10,32,32,32,32,116,105,116,108,101,87,114,97,112,112,101,114,46,97,112,112,101,110,100,67,104,105,108,100,40,105,110,102,111,66,117,116,116,111,110,41,59,10,32,32,32,32,116,105,116,108,101,87,114,97,112,112,101,114,46,97,112,112,101,110,100,67,104,105,108,100,40,108,105,110,107,41,59,10,10,32,32,32,32,116,105,116,108,101,68,105,118,46,97,112,112,101,110,100,67,104,105,108,100,40,116,105,116,108,101,87,114,97,112,112,101,114,41,59,10,10,32,32,32,32,108,105,110,101,46,97,112,112,101,110,100,67,104,105,108,100,40,109,101,100,105,97,41,59,10,10,32,32,32,32,108,101,116,32,116,104,117,109,98,110,97,105,108,32,61,32,109,97,107,101,84,104,117,109,98,110,97,105,108,40,109,105,109,101,67,97,116,101,103,111,114,121,44,32,104,105,116,44,32,105,109,103,87,114,97,112,112,101,114,44,32,116,114,117,101,41,59,10,32,32,32,32,105,102,32,40,116,104,117,109,98,110,97,105,108,41,32,123,10,32,32,32,32,32,32,32,32,109,101,100,105,97,46,97,112,112,101,110,100,67,104,105,108,100,40,105,109,103,87,114,97,112,112,101,114,41,59,10,32,32,32,32,32,32,32,32,116,105,116,108,101,68,105,118,46,115,116,121,108,101,46,109,97,120,87,105,100,116,104,32,61,32,34,99,97,108,99,40,49,48,48,37,32,45,32,54,52,112,120,41,34,59,10,32,32,32,32,125,32,101,108,115,101,32,123,10,32,32,32,32,32,32,32,32,116,105,116,108,101,68,105,118,46,115,116,121,108,101,46,109,97,120,87,105,100,116,104,32,61,32,34,49,48,48,37,34,59,10,32,32,32,32,125,10,32,32,32,32,109,101,100,105,97,46,97,112,112,101,110,100,67,104,105,108,100,40,116,105,116,108,101,68,105,118,41,59,10,10,32,32,32,32,47,47,32,67,111,110,116,101,110,116,10,32,32,32,32,108,101,116,32,99,111,110,116,101,110,116,72,108,32,61,32,103,101,116,67,111,110,116,101,110,116,72,105,103,104,108,105,103,104,116,40,104,105,116,41,59,10,32,32,32,32,105,102,32,40,99,111,110,116,101,110,116,72,108,32,33,61,61,32,117,110,100,101,102,105,110,101,100,41,32,123,10,32,32,32,32,32,32,32,32,99,111,110,115,116,32,99,111,110,116,101,110,116,68,105,118,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,32,32,32,32,99,111,110,116,101,110,116,68,105,118,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,99,111,110,116,101,110,116,45,100,105,118,34,41,59,10,32,32,32,32,32,32,32,32,99,111,110,116,101,110,116,68,105,118,46,105,110,115,101,114,116,65,100,106,97,99,101,110,116,72,84,77,76,40,34,97,102,116,101,114,98,101,103,105,110,34,44,32,99,111,110,116,101,110,116,72,108,41,59,10,32,32,32,32,32,32,32,32,116,105,116,108,101,68,105,118,46,97,112,112,101,110,100,67,104,105,108,100,40,99,111,110,116,101,110,116,68,105,118,41,59,10,32,32,32,32,125,10,10,32,32,32,32,108,101,116,32,112,97,116,104,76,105,110,101,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,112,97,116,104,76,105,110,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,112,97,116,104,45,114,111,119,34,41,59,10,10,32,32,32,32,108,101,116,32,112,97,116,104,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,112,97,116,104,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,112,97,116,104,45,108,105,110,101,34,41,59,10,32,32,32,32,112,97,116,104,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,116,105,116,108,101,34,44,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,112,97,116,104,34,93,32,43,32,34,47,34,41,59,10,10,32,32,32,32,99,111,110,115,116,32,112,97,116,104,72,105,103,104,108,105,103,104,116,32,61,32,103,101,116,80,97,116,104,72,105,103,104,108,105,103,104,116,40,104,105,116,41,59,10,32,32,32,32,105,102,32,40,112,97,116,104,72,105,103,104,108,105,103,104,116,41,32,123,10,32,32,32,32,32,32,32,32,112,97,116,104,46,105,110,115,101,114,116,65,100,106,97,99,101,110,116,72,84,77,76,40,34,97,102,116,101,114,98,101,103,105,110,34,44,32,112,97,116,104,72,105,103,104,108,105,103,104,116,32,43,32,34,47,34,41,59,10,32,32,32,32,125,32,101,108,115,101,32,123,10,32,32,32,32,32,32,32,32,112,97,116,104,46,97,112,112,101,110,100,67,104,105,108,100,40,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,84,101,120,116,78,111,100,101,40,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,112,97,116,104,34,93,32,43,32,34,47,34,41,41,59,10,32,32,32,32,125,10,10,32,32,32,32,108,101,116,32,116,97,103,67,111,110,116,97,105,110,101,114,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,116,97,103,67,111,110,116,97,105,110,101,114,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,116,97,103,45,99,111,110,116,97,105,110,101,114,34,41,59,10,10,32,32,32,32,102,111,114,32,40,108,101,116,32,105,32,61,32,48,59,32,105,32,60,32,116,97,103,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,10,32,32,32,32,32,32,32,32,116,97,103,67,111,110,116,97,105,110,101,114,46,97,112,112,101,110,100,67,104,105,108,100,40,116,97,103,115,91,105,93,41,59,10,32,32,32,32,125,10,10,32,32,32,32,47,47,83,105,122,101,32,116,97,103,10,32,32,32,32,108,101,116,32,115,105,122,101,84,97,103,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,115,109,97,108,108,34,41,59,10,32,32,32,32,115,105,122,101,84,97,103,46,97,112,112,101,110,100,67,104,105,108,100,40,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,84,101,120,116,78,111,100,101,40,104,117,109,97,110,70,105,108,101,83,105,122,101,40,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,115,105,122,101,34,93,41,41,41,59,10,32,32,32,32,115,105,122,101,84,97,103,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,116,101,120,116,45,109,117,116,101,100,34,41,59,10,32,32,32,32,116,97,103,67,111,110,116,97,105,110,101,114,46,97,112,112,101,110,100,67,104,105,108,100,40,115,105,122,101,84,97,103,41,59,10,10,32,32,32,32,116,105,116,108,101,68,105,118,46,97,112,112,101,110,100,67,104,105,108,100,40,112,97,116,104,76,105,110,101,41,59,10,32,32,32,32,112,97,116,104,76,105,110,101,46,97,112,112,101,110,100,67,104,105,108,100,40,112,97,116,104,41,59,10,32,32,32,32,112,97,116,104,76,105,110,101,46,97,112,112,101,110,100,67,104,105,108,100,40,116,97,103,67,111,110,116,97,105,110,101,114,41,59,10,10,32,32,32,32,97,116,116,97,99,104,84,97,103,67,111,110,116,97,105,110,101,114,69,118,101,110,116,76,105,115,116,101,110,101,114,40,116,97,103,67,111,110,116,97,105,110,101,114,44,32,104,105,116,41,59,10,10,32,32,32,32,114,101,116,117,114,110,32,108,105,110,101,59,10,125,10,10,102,117,110,99,116,105,111,110,32,109,97,107,101,80,114,101,108,111,97,100,101,114,40,41,32,123,10,32,32,32,32,99,111,110,115,116,32,101,108,101,109,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,101,108,101,109,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,112,114,111,103,114,101,115,115,34,41,59,10,32,32,32,32,99,111,110,115,116,32,98,97,114,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,98,97,114,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,112,114,111,103,114,101,115,115,45,98,97,114,32,112,114,111,103,114,101,115,115,45,98,97,114,45,115,116,114,105,112,101,100,32,112,114,111,103,114,101,115,115,45,98,97,114,45,97,110,105,109,97,116,101,100,34,41,59,10,32,32,32,32,98,97,114,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,115,116,121,108,101,34,44,32,34,119,105,100,116,104,58,32,49,48,48,37,34,41,59,10,32,32,32,32,101,108,101,109,46,97,112,112,101,110,100,67,104,105,108,100,40,98,97,114,41,59,10,10,32,32,32,32,114,101,116,117,114,110,32,101,108,101,109,59,10,125,10,10,102,117,110,99,116,105,111,110,32,109,97,107,101,80,97,103,101,73,110,100,105,99,97,116,111,114,40,115,101,97,114,99,104,82,101,115,117,108,116,41,32,123,10,32,32,32,32,108,101,116,32,112,97,103,101,73,110,100,105,99,97,116,111,114,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,112,97,103,101,73,110,100,105,99,97,116,111,114,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,112,97,103,101,45,105,110,100,105,99,97,116,111,114,32,102,111,110,116,45,119,101,105,103,104,116,45,108,105,103,104,116,34,41,59,10,32,32,32,32,99,111,110,115,116,32,116,111,116,97,108,72,105,116,115,32,61,32,115,101,97,114,99,104,82,101,115,117,108,116,91,34,97,103,103,114,101,103,97,116,105,111,110,115,34,93,91,34,116,111,116,97,108,95,99,111,117,110,116,34,93,91,34,118,97,108,117,101,34,93,59,10,32,32,32,32,112,97,103,101,73,110,100,105,99,97,116,111,114,46,97,112,112,101,110,100,67,104,105,108,100,40,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,84,101,120,116,78,111,100,101,40,100,111,99,67,111,117,110,116,32,43,32,34,32,47,32,34,32,43,32,116,111,116,97,108,72,105,116,115,41,41,59,10,32,32,32,32,114,101,116,117,114,110,32,112,97,103,101,73,110,100,105,99,97,116,111,114,59,10,125,10,10,10,102,117,110,99,116,105,111,110,32,109,97,107,101,83,116,97,116,115,67,97,114,100,40,115,101,97,114,99,104,82,101,115,117,108,116,41,32,123,10,10,32,32,32,32,108,101,116,32,115,116,97,116,115,67,97,114,100,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,115,116,97,116,115,67,97,114,100,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,99,97,114,100,32,115,116,97,116,34,41,59,10,32,32,32,32,108,101,116,32,115,116,97,116,115,67,97,114,100,66,111,100,121,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,115,116,97,116,115,67,97,114,100,66,111,100,121,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,99,97,114,100,45,98,111,100,121,34,41,59,10,10,32,32,32,32,47,47,32,83,116,97,116,115,10,32,32,32,32,108,101,116,32,115,116,97,116,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,115,112,97,110,34,41,59,10,32,32,32,32,99,111,110,115,116,32,116,111,116,97,108,72,105,116,115,32,61,32,115,101,97,114,99,104,82,101,115,117,108,116,91,34,97,103,103,114,101,103,97,116,105,111,110,115,34,93,91,34,116,111,116,97,108,95,99,111,117,110,116,34,93,91,34,118,97,108,117,101,34,93,59,10,32,32,32,32,115,116,97,116,46,97,112,112,101,110,100,67,104,105,108,100,40,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,84,101,120,116,78,111,100,101,40,116,111,116,97,108,72,105,116,115,32,43,32,34,32,114,101,115,117,108,116,115,32,105,110,32,34,32,43,32,115,101,97,114,99,104,82,101,115,117,108,116,91,34,116,111,111,107,34,93,32,43,32,34,109,115,34,41,41,59,10,10,32,32,32,32,115,116,97,116,115,67,97,114,100,66,111,100,121,46,97,112,112,101,110,100,67,104,105,108,100,40,115,116,97,116,41,59,10,10,32,32,32,32,47,47,32,68,105,115,112,108,97,121,32,109,111,100,101,10,32,32,32,32,99,111,110,115,116,32,114,101,115,117,108,116,77,111,100,101,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,114,101,115,117,108,116,77,111,100,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,98,116,110,45,103,114,111,117,112,32,98,116,110,45,103,114,111,117,112,45,116,111,103,103,108,101,34,41,59,10,32,32,32,32,114,101,115,117,108,116,77,111,100,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,100,97,116,97,45,116,111,103,103,108,101,34,44,32,34,98,117,116,116,111,110,115,34,41,59,10,32,32,32,32,114,101,115,117,108,116,77,111,100,101,46,115,116,121,108,101,46,99,115,115,70,108,111,97,116,32,61,32,34,114,105,103,104,116,34,59,10,10,32,32,32,32,99,111,110,115,116,32,108,105,115,116,77,111,100,101,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,108,97,98,101,108,34,41,59,10,32,32,32,32,108,105,115,116,77,111,100,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,98,116,110,32,98,116,110,45,112,114,105,109,97,114,121,34,41,59,10,32,32,32,32,108,105,115,116,77,111,100,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,116,105,116,108,101,34,44,32,34,76,105,115,116,32,109,111,100,101,34,41,59,10,32,32,32,32,108,105,115,116,77,111,100,101,46,105,110,110,101,114,72,84,77,76,32,61,32,39,60,115,118,103,32,119,105,100,116,104,61,34,50,48,112,120,34,32,104,101,105,103,104,116,61,34,50,48,112,120,34,32,114,111,108,101,61,34,105,109,103,34,32,120,109,108,110,115,61,34,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,115,118,103,34,32,118,105,101,119,66,111,120,61,34,48,32,48,32,53,49,50,32,53,49,50,34,62,60,112,97,116,104,32,102,105,108,108,61,34,99,117,114,114,101,110,116,67,111,108,111,114,34,32,100,61,34,77,56,48,32,51,54,56,72,49,54,97,49,54,32,49,54,32,48,32,48,32,48,45,49,54,32,49,54,118,54,52,97,49,54,32,49,54,32,48,32,48,32,48,32,49,54,32,49,54,104,54,52,97,49,54,32,49,54,32,48,32,48,32,48,32,49,54,45,49,54,118,45,54,52,97,49,54,32,49,54,32,48,32,48,32,48,45,49,54,45,49,54,122,109,48,45,51,50,48,72,49,54,65,49,54,32,49,54,32,48,32,48,32,48,32,48,32,54,52,118,54,52,97,49,54,32,49,54,32,48,32,48,32,48,32,49,54,32,49,54,104,54,52,97,49,54,32,49,54,32,48,32,48,32,48,32,49,54,45,49,54,86,54,52,97,49,54,32,49,54,32,48,32,48,32,48,45,49,54,45,49,54,122,109,48,32,49,54,48,72,49,54,97,49,54,32,49,54,32,48,32,48,32,48,45,49,54,32,49,54,118,54,52,97,49,54,32,49,54,32,48,32,48,32,48,32,49,54,32,49,54,104,54,52,97,49,54,32,49,54,32,48,32,48,32,48,32,49,54,45,49,54,118,45,54,52,97,49,54,32,49,54,32,48,32,48,32,48,45,49,54,45,49,54,122,109,52,49,54,32,49,55,54,72,49,55,54,97,49,54,32,49,54,32,48,32,48,32,48,45,49,54,32,49,54,118,51,50,97,49,54,32,49,54,32,48,32,48,32,48,32,49,54,32,49,54,104,51,50,48,97,49,54,32,49,54,32,48,32,48,32,48,32,49,54,45,49,54,118,45,51,50,97,49,54,32,49,54,32,48,32,48,32,48,45,49,54,45,49,54,122,109,48,45,51,50,48,72,49,55,54,97,49,54,32,49,54,32,48,32,48,32,48,45,49,54,32,49,54,118,51,50,97,49,54,32,49,54,32,48,32,48,32,48,32,49,54,32,49,54,104,51,50,48,97,49,54,32,49,54,32,48,32,48,32,48,32,49,54,45,49,54,86,56,48,97,49,54,32,49,54,32,48,32,48,32,48,45,49,54,45,49,54,122,109,48,32,49,54,48,72,49,55,54,97,49,54,32,49,54,32,48,32,48,32,48,45,49,54,32,49,54,118,51,50,97,49,54,32,49,54,32,48,32,48,32,48,32,49,54,32,49,54,104,51,50,48,97,49,54,32,49,54,32,48,32,48,32,48,32,49,54,45,49,54,118,45,51,50,97,49,54,32,49,54,32,48,32,48,32,48,45,49,54,45,49,54,122,34,62,60,47,112,97,116,104,62,60,47,115,118,103,62,39,59,10,10,32,32,32,32,99,111,110,115,116,32,103,114,105,100,77,111,100,101,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,108,97,98,101,108,34,41,59,10,32,32,32,32,103,114,105,100,77,111,100,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,98,116,110,32,98,116,110,45,112,114,105,109,97,114,121,34,41,59,10,32,32,32,32,103,114,105,100,77,111,100,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,116,105,116,108,101,34,44,32,34,71,114,105,100,32,109,111,100,101,34,41,59,10,32,32,32,32,103,114,105,100,77,111,100,101,46,105,110,110,101,114,72,84,77,76,32,61,32,39,60,115,118,103,32,119,105,100,116,104,61,34,50,48,112,120,34,32,104,101,105,103,104,116,61,34,50,48,112,120,34,32,114,111,108,101,61,34,105,109,103,34,32,120,109,108,110,115,61,34,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,115,118,103,34,32,118,105,101,119,66,111,120,61,34,48,32,48,32,53,49,50,32,53,49,50,34,62,60,112,97,116,104,32,102,105,108,108,61,34,99,117,114,114,101,110,116,67,111,108,111,114,34,32,100,61,34,77,49,52,57,46,51,51,51,32,53,54,118,56,48,99,48,32,49,51,46,50,53,53,45,49,48,46,55,52,53,32,50,52,45,50,52,32,50,52,72,50,52,99,45,49,51,46,50,53,53,32,48,45,50,52,45,49,48,46,55,52,53,45,50,52,45,50,52,86,53,54,99,48,45,49,51,46,50,53,53,32,49,48,46,55,52,53,45,50,52,32,50,52,45,50,52,104,49,48,49,46,51,51,51,99,49,51,46,50,53,53,32,48,32,50,52,32,49,48,46,55,52,53,32,50,52,32,50,52,122,109,49,56,49,46,51,51,52,32,50,52,48,118,45,56,48,99,48,45,49,51,46,50,53,53,45,49,48,46,55,52,53,45,50,52,45,50,52,45,50,52,72,50,48,53,46,51,51,51,99,45,49,51,46,50,53,53,32,48,45,50,52,32,49,48,46,55,52,53,45,50,52,32,50,52,118,56,48,99,48,32,49,51,46,50,53,53,32,49,48,46,55,52,53,32,50,52,32,50,52,32,50,52,104,49,48,49,46,51,51,51,99,49,51,46,50,53,54,32,48,32,50,52,46,48,48,49,45,49,48,46,55,52,53,32,50,52,46,48,48,49,45,50,52,122,109,51,50,45,50,52,48,118,56,48,99,48,32,49,51,46,50,53,53,32,49,48,46,55,52,53,32,50,52,32,50,52,32,50,52,72,52,56,56,99,49,51,46,50,53,53,32,48,32,50,52,45,49,48,46,55,52,53,32,50,52,45,50,52,86,53,54,99,48,45,49,51,46,50,53,53,45,49,48,46,55,52,53,45,50,52,45,50,52,45,50,52,72,51,56,54,46,54,54,55,99,45,49,51,46,50,53,53,32,48,45,50,52,32,49,48,46,55,52,53,45,50,52,32,50,52,122,109,45,51,50,32,56,48,86,53,54,99,48,45,49,51,46,50,53,53,45,49,48,46,55,52,53,45,50,52,45,50,52,45,50,52,72,50,48,53,46,51,51,51,99,45,49,51,46,50,53,53,32,48,45,50,52,32,49,48,46,55,52,53,45,50,52,32,50,52,118,56,48,99,48,32,49,51,46,50,53,53,32,49,48,46,55,52,53,32,50,52,32,50,52,32,50,52,104,49,48,49,46,51,51,51,99,49,51,46,50,53,54,32,48,32,50,52,46,48,48,49,45,49,48,46,55,52,53,32,50,52,46,48,48,49,45,50,52,122,109,45,50,48,53,46,51,51,52,32,53,54,72,50,52,99,45,49,51,46,50,53,53,32,48,45,50,52,32,49,48,46,55,52,53,45,50,52,32,50,52,118,56,48,99,48,32,49,51,46,50,53,53,32,49,48,46,55,52,53,32,50,52,32,50,52,32,50,52,104,49,48,49,46,51,51,51,99,49,51,46,50,53,53,32,48,32,50,52,45,49,48,46,55,52,53,32,50,52,45,50,52,118,45,56,48,99,48,45,49,51,46,50,53,53,45,49,48,46,55,52,53,45,50,52,45,50,52,45,50,52,122,77,48,32,51,55,54,118,56,48,99,48,32,49,51,46,50,53,53,32,49,48,46,55,52,53,32,50,52,32,50,52,32,50,52,104,49,48,49,46,51,51,51,99,49,51,46,50,53,53,32,48,32,50,52,45,49,48,46,55,52,53,32,50,52,45,50,52,118,45,56,48,99,48,45,49,51,46,50,53,53,45,49,48,46,55,52,53,45,50,52,45,50,52,45,50,52,72,50,52,99,45,49,51,46,50,53,53,32,48,45,50,52,32,49,48,46,55,52,53,45,50,52,32,50,52,122,109,51,56,54,46,54,54,55,45,53,54,72,52,56,56,99,49,51,46,50,53,53,32,48,32,50,52,45,49,48,46,55,52,53,32,50,52,45,50,52,118,45,56,48,99,48,45,49,51,46,50,53,53,45,49,48,46,55,52,53,45,50,52,45,50,52,45,50,52,72,51,56,54,46,54,54,55,99,45,49,51,46,50,53,53,32,48,45,50,52,32,49,48,46,55,52,53,45,50,52,32,50,52,118,56,48,99,48,32,49,51,46,50,53,53,32,49,48,46,55,52,53,32,50,52,32,50,52,32,50,52,122,109,48,32,49,54,48,72,52,56,56,99,49,51,46,50,53,53,32,48,32,50,52,45,49,48,46,55,52,53,32,50,52,45,50,52,118,45,56,48,99,48,45,49,51,46,50,53,53,45,49,48,46,55,52,53,45,50,52,45,50,52,45,50,52,72,51,56,54,46,54,54,55,99,45,49,51,46,50,53,53,32,48,45,50,52,32,49,48,46,55,52,53,45,50,52,32,50,52,118,56,48,99,48,32,49,51,46,50,53,53,32,49,48,46,55,52,53,32,50,52,32,50,52,32,50,52,122,77,49,56,49,46,51,51,51,32,51,55,54,118,56,48,99,48,32,49,51,46,50,53,53,32,49,48,46,55,52,53,32,50,52,32,50,52,32,50,52,104,49,48,49,46,51,51,51,99,49,51,46,50,53,53,32,48,32,50,52,45,49,48,46,55,52,53,32,50,52,45,50,52,118,45,56,48,99,48,45,49,51,46,50,53,53,45,49,48,46,55,52,53,45,50,52,45,50,52,45,50,52,72,50,48,53,46,51,51,51,99,45,49,51,46,50,53,53,32,48,45,50,52,32,49,48,46,55,52,53,45,50,52,32,50,52,122,34,62,60,47,112,97,116,104,62,60,47,115,118,103,62,39,59,10,10,32,32,32,32,114,101,115,117,108,116,77,111,100,101,46,97,112,112,101,110,100,67,104,105,108,100,40,103,114,105,100,77,111,100,101,41,59,10,32,32,32,32,114,101,115,117,108,116,77,111,100,101,46,97,112,112,101,110,100,67,104,105,108,100,40,108,105,115,116,77,111,100,101,41,59,10,10,32,32,32,32,105,102,32,40,67,79,78,70,46,111,112,116,105,111,110,115,46,100,105,115,112,108,97,121,32,61,61,61,32,34,103,114,105,100,34,41,32,123,10,32,32,32,32,32,32,32,32,103,114,105,100,77,111,100,101,46,99,108,97,115,115,76,105,115,116,46,97,100,100,40,34,97,99,116,105,118,101,34,41,10,32,32,32,32,125,32,101,108,115,101,32,123,10,32,32,32,32,32,32,32,32,108,105,115,116,77,111,100,101,46,99,108,97,115,115,76,105,115,116,46,97,100,100,40,34,97,99,116,105,118,101,34,41,10,32,32,32,32,125,10,10,32,32,32,32,103,114,105,100,77,111,100,101,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,99,108,105,99,107,34,44,32,40,41,32,61,62,32,123,10,32,32,32,32,32,32,32,32,67,79,78,70,46,111,112,116,105,111,110,115,46,100,105,115,112,108,97,121,32,61,32,34,103,114,105,100,34,59,10,32,32,32,32,32,32,32,32,67,79,78,70,46,115,97,118,101,40,41,59,10,32,32,32,32,32,32,32,32,115,101,97,114,99,104,68,101,98,111,117,110,99,101,100,40,41,59,10,32,32,32,32,125,41,59,10,32,32,32,32,108,105,115,116,77,111,100,101,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,99,108,105,99,107,34,44,32,40,41,32,61,62,32,123,10,32,32,32,32,32,32,32,32,67,79,78,70,46,111,112,116,105,111,110,115,46,100,105,115,112,108,97,121,32,61,32,34,108,105,115,116,34,59,10,32,32,32,32,32,32,32,32,67,79,78,70,46,115,97,118,101,40,41,59,10,32,32,32,32,32,32,32,32,115,101,97,114,99,104,68,101,98,111,117,110,99,101,100,40,41,59,10,32,32,32,32,125,41,59,10,10,32,32,32,32,115,116,97,116,115,67,97,114,100,66,111,100,121,46,97,112,112,101,110,100,67,104,105,108,100,40,114,101,115,117,108,116,77,111,100,101,41,59,10,10,32,32,32,32,47,47,32,83,111,114,116,32,109,111,100,101,10,32,32,32,32,99,111,110,115,116,32,115,111,114,116,77,111,100,101,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,115,111,114,116,77,111,100,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,100,114,111,112,100,111,119,110,34,41,59,10,32,32,32,32,115,111,114,116,77,111,100,101,46,115,116,121,108,101,46,99,115,115,70,108,111,97,116,32,61,32,34,114,105,103,104,116,34,59,10,32,32,32,32,115,111,114,116,77,111,100,101,46,115,116,121,108,101,46,109,97,114,103,105,110,82,105,103,104,116,32,61,32,34,49,48,112,120,34,59,10,10,32,32,32,32,99,111,110,115,116,32,115,111,114,116,77,111,100,101,66,116,110,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,98,117,116,116,111,110,34,41,59,10,32,32,32,32,115,111,114,116,77,111,100,101,66,116,110,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,98,116,110,32,98,116,110,45,109,100,32,98,116,110,45,112,114,105,109,97,114,121,32,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,34,41,59,10,32,32,32,32,115,111,114,116,77,111,100,101,66,116,110,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,105,100,34,44,32,34,115,111,114,116,77,111,100,101,66,116,110,34,41,59,10,32,32,32,32,115,111,114,116,77,111,100,101,66,116,110,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,116,121,112,101,34,44,32,34,98,117,116,116,111,110,34,41,59,10,32,32,32,32,115,111,114,116,77,111,100,101,66,116,110,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,100,97,116,97,45,116,111,103,103,108,101,34,44,32,34,100,114,111,112,100,111,119,110,34,41,59,10,32,32,32,32,115,111,114,116,77,111,100,101,66,116,110,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,97,114,105,97,45,104,97,115,112,111,112,117,112,34,44,32,34,116,114,117,101,34,41,59,10,32,32,32,32,115,111,114,116,77,111,100,101,66,116,110,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,97,114,105,97,45,101,120,112,97,110,100,101,100,34,44,32,34,102,97,108,115,101,34,41,59,10,32,32,32,32,115,111,114,116,77,111,100,101,66,116,110,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,116,105,116,108,101,34,44,32,34,83,111,114,116,32,111,112,116,105,111,110,115,34,41,59,10,32,32,32,32,115,111,114,116,77,111,100,101,66,116,110,46,105,110,110,101,114,72,84,77,76,32,61,32,39,60,115,118,103,32,97,114,105,97,45,104,105,100,100,101,110,61,34,116,114,117,101,34,32,119,105,100,116,104,61,34,50,48,112,120,34,32,104,101,105,103,104,116,61,34,50,48,112,120,34,32,120,109,108,110,115,61,34,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,115,118,103,34,32,118,105,101,119,66,111,120,61,34,48,32,48,32,51,50,48,32,53,49,50,34,62,60,112,97,116,104,32,102,105,108,108,61,34,99,117,114,114,101,110,116,67,111,108,111,114,34,32,100,61,34,77,52,49,32,50,56,56,104,50,51,56,99,50,49,46,52,32,48,32,51,50,46,49,32,50,53,46,57,32,49,55,32,52,49,76,49,55,55,32,52,52,56,99,45,57,46,52,32,57,46,52,45,50,52,46,54,32,57,46,52,45,51,51,46,57,32,48,76,50,52,32,51,50,57,99,45,49,53,46,49,45,49,53,46,49,45,52,46,52,45,52,49,32,49,55,45,52,49,122,109,50,53,53,45,49,48,53,76,49,55,55,32,54,52,99,45,57,46,52,45,57,46,52,45,50,52,46,54,45,57,46,52,45,51,51,46,57,32,48,76,50,52,32,49,56,51,99,45,49,53,46,49,32,49,53,46,49,45,52,46,52,32,52,49,32,49,55,32,52,49,104,50,51,56,99,50,49,46,52,32,48,32,51,50,46,49,45,50,53,46,57,32,49,55,45,52,49,122,34,62,60,47,112,97,116,104,62,60,47,115,118,103,62,39,59,10,10,32,32,32,32,99,111,110,115,116,32,115,111,114,116,77,111,100,101,77,101,110,117,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,115,111,114,116,77,111,100,101,77,101,110,117,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,100,114,111,112,100,111,119,110,45,109,101,110,117,34,41,59,10,32,32,32,32,115,111,114,116,77,111,100,101,77,101,110,117,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,97,114,105,97,45,108,97,98,101,108,108,101,100,98,121,34,44,32,34,115,111,114,116,77,111,100,101,66,116,110,34,41,59,10,10,32,32,32,32,79,98,106,101,99,116,46,107,101,121,115,40,83,79,82,84,95,77,79,68,69,83,41,46,102,111,114,69,97,99,104,40,109,111,100,101,32,61,62,32,123,10,32,32,32,32,32,32,32,32,99,111,110,115,116,32,105,116,101,109,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,32,32,32,32,105,116,101,109,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,100,114,111,112,100,111,119,110,45,105,116,101,109,34,41,59,10,32,32,32,32,32,32,32,32,105,116,101,109,46,97,112,112,101,110,100,67,104,105,108,100,40,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,84,101,120,116,78,111,100,101,40,83,79,82,84,95,77,79,68,69,83,91,109,111,100,101,93,46,116,101,120,116,41,41,59,10,32,32,32,32,32,32,32,32,115,111,114,116,77,111,100,101,77,101,110,117,46,97,112,112,101,110,100,67,104,105,108,100,40,105,116,101,109,41,59,10,10,32,32,32,32,32,32,32,32,105,116,101,109,46,111,110,99,108,105,99,107,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,67,79,78,70,46,111,112,116,105,111,110,115,46,115,111,114,116,32,61,32,109,111,100,101,59,10,32,32,32,32,32,32,32,32,32,32,32,32,67,79,78,70,46,115,97,118,101,40,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,115,101,97,114,99,104,68,101,98,111,117,110,99,101,100,40,41,59,10,32,32,32,32,32,32,32,32,125,59,10,32,32,32,32,125,41,59,10,10,32,32,32,32,115,111,114,116,77,111,100,101,46,97,112,112,101,110,100,67,104,105,108,100,40,115,111,114,116,77,111,100,101,66,116,110,41,59,10,32,32,32,32,115,111,114,116,77,111,100,101,46,97,112,112,101,110,100,67,104,105,108,100,40,115,111,114,116,77,111,100,101,77,101,110,117,41,59,10,10,32,32,32,32,115,116,97,116,115,67,97,114,100,66,111,100,121,46,97,112,112,101,110,100,67,104,105,108,100,40,115,111,114,116,77,111,100,101,41,59,10,10,32,32,32,32,105,102,32,40,116,111,116,97,108,72,105,116,115,32,33,61,61,32,48,41,32,123,10,32,32,32,32,32,32,32,32,108,101,116,32,115,105,122,101,83,116,97,116,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,32,32,32,32,115,105,122,101,83,116,97,116,46,97,112,112,101,110,100,67,104,105,108,100,40,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,84,101,120,116,78,111,100,101,40,104,117,109,97,110,70,105,108,101,83,105,122,101,40,115,101,97,114,99,104,82,101,115,117,108,116,91,34,97,103,103,114,101,103,97,116,105,111,110,115,34,93,91,34,116,111,116,97,108,95,115,105,122,101,34,93,91,34,118,97,108,117,101,34,93,41,41,41,59,10,32,32,32,32,32,32,32,32,115,116,97,116,115,67,97,114,100,66,111,100,121,46,97,112,112,101,110,100,67,104,105,108,100,40,115,105,122,101,83,116,97,116,41,59,10,32,32,32,32,125,10,10,32,32,32,32,115,116,97,116,115,67,97,114,100,46,97,112,112,101,110,100,67,104,105,108,100,40,115,116,97,116,115,67,97,114,100,66,111,100,121,41,59,10,10,32,32,32,32,114,101,116,117,114,110,32,115,116,97,116,115,67,97,114,100,59,10,125,10,10,102,117,110,99,116,105,111,110,32,109,97,107,101,82,101,115,117,108,116,67,111,110,116,97,105,110,101,114,40,41,32,123,10,32,32,32,32,108,101,116,32,114,101,115,117,108,116,67,111,110,116,97,105,110,101,114,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,10,32,32,32,32,105,102,32,40,67,79,78,70,46,111,112,116,105,111,110,115,46,100,105,115,112,108,97,121,32,61,61,61,32,34,103,114,105,100,34,41,32,123,10,32,32,32,32,32,32,32,32,114,101,115,117,108,116,67,111,110,116,97,105,110,101,114,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,98,114,105,99,107,108,97,121,101,114,34,41,59,10,32,32,32,32,125,32,101,108,115,101,32,123,10,32,32,32,32,32,32,32,32,114,101,115,117,108,116,67,111,110,116,97,105,110,101,114,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,108,105,115,116,45,103,114,111,117,112,34,41,59,10,32,32,32,32,125,10,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,67,111,110,116,97,105,110,101,114,59,10,125,10}; char search_js[23245] = {99,111,110,115,116,32,83,73,90,69,32,61,32,54,48,59,10,108,101,116,32,109,105,109,101,77,97,112,32,61,32,91,93,59,10,108,101,116,32,116,97,103,77,97,112,32,61,32,91,93,59,10,108,101,116,32,109,105,109,101,84,114,101,101,59,10,108,101,116,32,116,97,103,84,114,101,101,59,10,10,108,101,116,32,115,101,97,114,99,104,66,97,114,32,61,32,100,111,99,117,109,101,110,116,46,103,101,116,69,108,101,109,101,110,116,66,121,73,100,40,34,115,101,97,114,99,104,66,97,114,34,41,59,10,108,101,116,32,112,97,116,104,66,97,114,32,61,32,100,111,99,117,109,101,110,116,46,103,101,116,69,108,101,109,101,110,116,66,121,73,100,40,34,112,97,116,104,66,97,114,34,41,59,10,108,101,116,32,116,97,103,66,97,114,32,61,32,100,111,99,117,109,101,110,116,46,103,101,116,69,108,101,109,101,110,116,66,121,73,100,40,34,116,97,103,66,97,114,34,41,59,10,108,101,116,32,99,117,114,114,101,110,116,68,111,99,84,111,84,97,103,32,61,32,110,117,108,108,59,10,108,101,116,32,99,117,114,114,101,110,116,84,97,103,67,97,108,108,98,97,99,107,32,61,32,110,117,108,108,59,10,108,101,116,32,108,97,115,116,68,111,99,32,61,32,110,117,108,108,59,10,108,101,116,32,114,101,97,99,104,101,100,69,110,100,32,61,32,102,97,108,115,101,59,10,108,101,116,32,100,111,99,67,111,117,110,116,32,61,32,48,59,10,108,101,116,32,99,111,111,108,105,110,103,68,111,119,110,32,61,32,102,97,108,115,101,59,10,108,101,116,32,115,101,97,114,99,104,66,117,115,121,32,61,32,116,114,117,101,59,10,108,101,116,32,115,101,108,101,99,116,101,100,73,110,100,105,99,101,115,32,61,32,91,93,59,10,108,101,116,32,105,110,100,101,120,77,97,112,32,61,32,123,125,59,10,10,108,101,116,32,115,105,122,101,95,109,105,110,32,61,32,48,59,10,108,101,116,32,115,105,122,101,95,109,97,120,32,61,32,49,48,48,48,48,48,48,48,48,48,48,48,48,48,59,10,10,108,101,116,32,100,97,116,101,95,109,105,110,32,61,32,110,117,108,108,59,10,108,101,116,32,100,97,116,101,95,109,97,120,32,61,32,110,117,108,108,59,10,10,83,79,82,84,95,77,79,68,69,83,32,61,32,123,10,32,32,32,32,115,99,111,114,101,58,32,123,10,32,32,32,32,32,32,32,32,116,101,120,116,58,32,34,82,101,108,101,118,97,110,99,101,34,44,10,32,32,32,32,32,32,32,32,109,111,100,101,58,32,91,10,32,32,32,32,32,32,32,32,32,32,32,32,123,95,115,99,111,114,101,58,32,123,111,114,100,101,114,58,32,34,100,101,115,99,34,125,125,44,10,32,32,32,32,32,32,32,32,32,32,32,32,123,95,116,105,101,58,32,123,111,114,100,101,114,58,32,34,97,115,99,34,125,125,10,32,32,32,32,32,32,32,32,93,44,10,32,32,32,32,32,32,32,32,107,101,121,58,32,104,105,116,32,61,62,32,104,105,116,91,34,95,115,99,111,114,101,34,93,10,32,32,32,32,125,44,10,32,32,32,32,100,97,116,101,95,97,115,99,58,32,123,10,32,32,32,32,32,32,32,32,116,101,120,116,58,32,34,68,97,116,101,32,40,65,115,99,101,110,100,105,110,103,41,34,44,32,109,111,100,101,58,32,91,10,32,32,32,32,32,32,32,32,32,32,32,32,123,109,116,105,109,101,58,32,123,111,114,100,101,114,58,32,34,97,115,99,34,125,125,44,10,32,32,32,32,32,32,32,32,32,32,32,32,123,95,116,105,101,58,32,123,111,114,100,101,114,58,32,34,97,115,99,34,125,125,10,32,32,32,32,32,32,32,32,93,44,10,32,32,32,32,32,32,32,32,107,101,121,58,32,104,105,116,32,61,62,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,109,116,105,109,101,34,93,10,32,32,32,32,125,44,10,32,32,32,32,100,97,116,101,95,100,101,115,99,58,32,123,10,32,32,32,32,32,32,32,32,116,101,120,116,58,32,34,68,97,116,101,32,40,68,101,115,99,101,110,100,105,110,103,41,34,44,32,109,111,100,101,58,32,91,10,32,32,32,32,32,32,32,32,32,32,32,32,123,109,116,105,109,101,58,32,123,111,114,100,101,114,58,32,34,100,101,115,99,34,125,125,44,10,32,32,32,32,32,32,32,32,32,32,32,32,123,95,116,105,101,58,32,123,111,114,100,101,114,58,32,34,97,115,99,34,125,125,10,32,32,32,32,32,32,32,32,93,44,10,32,32,32,32,32,32,32,32,107,101,121,58,32,104,105,116,32,61,62,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,109,116,105,109,101,34,93,10,32,32,32,32,125,44,10,32,32,32,32,115,105,122,101,95,97,115,99,58,32,123,10,32,32,32,32,32,32,32,32,116,101,120,116,58,32,34,83,105,122,101,32,40,65,115,99,101,110,100,105,110,103,41,34,44,32,109,111,100,101,58,32,91,10,32,32,32,32,32,32,32,32,32,32,32,32,123,115,105,122,101,58,32,123,111,114,100,101,114,58,32,34,97,115,99,34,125,125,44,10,32,32,32,32,32,32,32,32,32,32,32,32,123,95,116,105,101,58,32,123,111,114,100,101,114,58,32,34,97,115,99,34,125,125,10,32,32,32,32,32,32,32,32,93,44,10,32,32,32,32,32,32,32,32,107,101,121,58,32,104,105,116,32,61,62,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,115,105,122,101,34,93,10,32,32,32,32,125,44,10,32,32,32,32,115,105,122,101,95,100,101,115,99,58,32,123,10,32,32,32,32,32,32,32,32,116,101,120,116,58,32,34,83,105,122,101,32,40,68,101,115,99,101,110,100,105,110,103,41,34,44,32,109,111,100,101,58,32,91,10,32,32,32,32,32,32,32,32,32,32,32,32,123,115,105,122,101,58,32,123,111,114,100,101,114,58,32,34,100,101,115,99,34,125,125,44,10,32,32,32,32,32,32,32,32,32,32,32,32,123,95,116,105,101,58,32,123,111,114,100,101,114,58,32,34,97,115,99,34,125,125,10,32,32,32,32,32,32,32,32,93,44,10,32,32,32,32,32,32,32,32,107,101,121,58,32,104,105,116,32,61,62,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,115,105,122,101,34,93,10,32,32,32,32,125,44,10,125,59,10,10,102,117,110,99,116,105,111,110,32,115,104,111,119,69,115,69,114,114,111,114,40,41,32,123,10,32,32,32,32,36,46,116,111,97,115,116,40,123,10,32,32,32,32,32,32,32,32,104,101,97,100,105,110,103,58,32,34,69,108,97,115,116,105,99,115,101,97,114,99,104,32,99,111,110,110,101,99,116,105,111,110,32,101,114,114,111,114,34,44,10,32,32,32,32,32,32,32,32,116,101,120,116,58,32,34,115,105,115,116,50,32,119,101,98,32,109,111,100,117,108,101,32,101,110,99,111,117,110,116,101,114,101,100,32,97,110,32,101,114,114,111,114,32,119,104,105,108,101,32,99,111,110,110,101,99,116,105,110,103,32,34,32,43,10,32,32,32,32,32,32,32,32,32,32,32,32,34,116,111,32,69,108,97,115,116,105,99,115,101,97,114,99,104,46,32,83,101,101,32,115,101,114,118,101,114,32,108,111,103,115,32,102,111,114,32,109,111,114,101,32,105,110,102,111,114,109,97,116,105,111,110,46,34,44,10,32,32,32,32,32,32,32,32,115,116,97,99,107,58,32,102,97,108,115,101,44,10,32,32,32,32,32,32,32,32,98,103,67,111,108,111,114,58,32,34,35,97,57,52,52,52,50,34,44,10,32,32,32,32,32,32,32,32,116,101,120,116,67,111,108,111,114,58,32,34,35,102,50,100,101,100,101,34,44,10,32,32,32,32,32,32,32,32,112,111,115,105,116,105,111,110,58,32,39,98,111,116,116,111,109,45,114,105,103,104,116,39,44,10,32,32,32,32,32,32,32,32,104,105,100,101,65,102,116,101,114,58,32,102,97,108,115,101,10,32,32,32,32,125,41,59,10,125,10,10,119,105,110,100,111,119,46,111,110,108,111,97,100,32,61,32,40,41,32,61,62,32,123,10,32,32,32,32,67,79,78,70,46,108,111,97,100,40,41,59,10,32,32,32,32,110,101,119,32,97,117,116,111,67,111,109,112,108,101,116,101,40,123,10,32,32,32,32,32,32,32,32,115,101,108,101,99,116,111,114,58,32,39,35,112,97,116,104,66,97,114,39,44,10,32,32,32,32,32,32,32,32,109,105,110,67,104,97,114,115,58,32,49,44,10,32,32,32,32,32,32,32,32,100,101,108,97,121,58,32,52,48,48,44,10,32,32,32,32,32,32,32,32,114,101,110,100,101,114,73,116,101,109,58,32,102,117,110,99,116,105,111,110,32,40,105,116,101,109,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,39,60,100,105,118,32,99,108,97,115,115,61,34,97,117,116,111,99,111,109,112,108,101,116,101,45,115,117,103,103,101,115,116,105,111,110,34,32,100,97,116,97,45,118,97,108,61,34,39,32,43,32,105,116,101,109,32,43,32,39,34,62,39,32,43,32,105,116,101,109,32,43,32,39,60,47,100,105,118,62,39,59,10,32,32,32,32,32,32,32,32,125,44,10,32,32,32,32,32,32,32,32,115,111,117,114,99,101,58,32,97,115,121,110,99,32,102,117,110,99,116,105,111,110,32,40,116,101,114,109,44,32,115,117,103,103,101,115,116,41,32,123,10,10,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,67,79,78,70,46,111,112,116,105,111,110,115,46,115,117,103,103,101,115,116,80,97,116,104,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,91,93,10,32,32,32,32,32,32,32,32,32,32,32,32,125,10,10,32,32,32,32,32,32,32,32,32,32,32,32,116,101,114,109,32,61,32,116,101,114,109,46,116,111,76,111,119,101,114,67,97,115,101,40,41,59,10,10,32,32,32,32,32,32,32,32,32,32,32,32,99,111,110,115,116,32,99,104,111,105,99,101,115,32,61,32,97,119,97,105,116,32,103,101,116,80,97,116,104,67,104,111,105,99,101,115,40,41,59,10,10,32,32,32,32,32,32,32,32,32,32,32,32,108,101,116,32,109,97,116,99,104,101,115,32,61,32,91,93,59,10,32,32,32,32,32,32,32,32,32,32,32,32,102,111,114,32,40,108,101,116,32,105,32,61,32,48,59,32,105,32,60,32,99,104,111,105,99,101,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,126,99,104,111,105,99,101,115,91,105,93,46,116,111,76,111,119,101,114,67,97,115,101,40,41,46,105,110,100,101,120,79,102,40,116,101,114,109,41,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,109,97,116,99,104,101,115,46,112,117,115,104,40,99,104,111,105,99,101,115,91,105,93,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,32,32,32,32,115,117,103,103,101,115,116,40,109,97,116,99,104,101,115,46,115,111,114,116,40,41,41,59,10,32,32,32,32,32,32,32,32,125,44,10,32,32,32,32,32,32,32,32,111,110,83,101,108,101,99,116,58,32,102,117,110,99,116,105,111,110,32,40,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,115,101,97,114,99,104,68,101,98,111,117,110,99,101,100,40,41,59,10,32,32,32,32,32,32,32,32,125,10,32,32,32,32,125,41,59,10,32,32,32,32,115,101,97,114,99,104,66,97,114,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,107,101,121,117,112,34,44,32,115,101,97,114,99,104,68,101,98,111,117,110,99,101,100,41,59,10,32,32,32,32,112,97,116,104,66,97,114,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,107,101,121,117,112,34,44,32,101,32,61,62,32,123,10,32,32,32,32,32,32,32,32,105,102,32,40,101,46,107,101,121,32,61,61,61,32,34,69,110,116,101,114,34,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,115,101,97,114,99,104,68,101,98,111,117,110,99,101,100,40,41,59,10,32,32,32,32,32,32,32,32,125,10,32,32,32,32,125,41,59,10,32,32,32,32,110,101,119,32,97,117,116,111,67,111,109,112,108,101,116,101,40,123,10,32,32,32,32,32,32,32,32,115,101,108,101,99,116,111,114,58,32,39,35,116,97,103,66,97,114,39,44,10,32,32,32,32,32,32,32,32,109,105,110,67,104,97,114,115,58,32,49,44,10,32,32,32,32,32,32,32,32,100,101,108,97,121,58,32,50,48,48,44,10,32,32,32,32,32,32,32,32,114,101,110,100,101,114,73,116,101,109,58,32,102,117,110,99,116,105,111,110,32,40,105,116,101,109,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,39,60,100,105,118,32,99,108,97,115,115,61,34,97,117,116,111,99,111,109,112,108,101,116,101,45,115,117,103,103,101,115,116,105,111,110,34,32,100,97,116,97,45,118,97,108,61,34,39,32,43,32,105,116,101,109,32,43,32,39,34,62,39,32,43,32,105,116,101,109,46,115,112,108,105,116,40,34,35,34,41,91,48,93,32,43,32,39,60,47,100,105,118,62,39,59,10,32,32,32,32,32,32,32,32,125,44,10,32,32,32,32,32,32,32,32,115,111,117,114,99,101,58,32,97,115,121,110,99,32,102,117,110,99,116,105,111,110,32,40,116,101,114,109,44,32,115,117,103,103,101,115,116,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,116,101,114,109,32,61,32,116,101,114,109,46,116,111,76,111,119,101,114,67,97,115,101,40,41,59,10,10,32,32,32,32,32,32,32,32,32,32,32,32,99,111,110,115,116,32,99,104,111,105,99,101,115,32,61,32,97,119,97,105,116,32,103,101,116,84,97,103,67,104,111,105,99,101,115,40,41,59,10,10,32,32,32,32,32,32,32,32,32,32,32,32,108,101,116,32,109,97,116,99,104,101,115,32,61,32,91,93,59,10,32,32,32,32,32,32,32,32,32,32,32,32,102,111,114,32,40,108,101,116,32,105,32,61,32,48,59,32,105,32,60,32,99,104,111,105,99,101,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,126,99,104,111,105,99,101,115,91,105,93,46,116,111,76,111,119,101,114,67,97,115,101,40,41,46,105,110,100,101,120,79,102,40,116,101,114,109,41,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,109,97,116,99,104,101,115,46,112,117,115,104,40,99,104,111,105,99,101,115,91,105,93,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,32,32,32,32,115,117,103,103,101,115,116,40,109,97,116,99,104,101,115,46,115,111,114,116,40,41,41,59,10,32,32,32,32,32,32,32,32,125,44,10,32,32,32,32,32,32,32,32,111,110,83,101,108,101,99,116,58,32,102,117,110,99,116,105,111,110,32,40,101,44,32,105,116,101,109,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,99,111,110,115,116,32,110,97,109,101,32,61,32,105,116,101,109,46,115,112,108,105,116,40,34,35,34,41,91,48,93,59,10,32,32,32,32,32,32,32,32,32,32,32,32,99,111,110,115,116,32,99,111,108,111,114,32,61,32,34,35,34,32,43,32,105,116,101,109,46,115,112,108,105,116,40,34,35,34,41,91,49,93,59,10,32,32,32,32,32,32,32,32,32,32,32,32,36,40,34,35,116,97,103,45,99,111,108,111,114,34,41,46,118,97,108,40,99,111,108,111,114,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,36,40,34,35,116,97,103,45,99,111,108,111,114,34,41,46,116,114,105,103,103,101,114,40,34,107,101,121,117,112,34,44,32,99,111,108,111,114,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,116,97,103,66,97,114,46,118,97,108,117,101,32,61,32,110,97,109,101,59,10,32,32,32,32,32,32,32,32,32,32,32,32,101,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,59,10,32,32,32,32,32,32,32,32,125,10,32,32,32,32,125,41,59,10,32,32,32,32,91,116,97,103,66,97,114,44,32,100,111,99,117,109,101,110,116,46,103,101,116,69,108,101,109,101,110,116,66,121,73,100,40,34,116,97,103,45,99,111,108,111,114,34,41,93,46,102,111,114,69,97,99,104,40,101,108,101,109,32,61,62,32,123,10,32,32,32,32,32,32,32,32,101,108,101,109,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,107,101,121,117,112,34,44,32,101,32,61,62,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,101,46,107,101,121,32,61,61,61,32,34,69,110,116,101,114,34,32,38,38,32,116,97,103,66,97,114,46,118,97,108,117,101,46,108,101,110,103,116,104,32,62,32,48,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,111,110,115,116,32,116,97,103,32,61,32,116,97,103,66,97,114,46,118,97,108,117,101,32,43,32,100,111,99,117,109,101,110,116,46,103,101,116,69,108,101,109,101,110,116,66,121,73,100,40,34,116,97,103,45,99,111,108,111,114,34,41,46,118,97,108,117,101,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,97,118,101,84,97,103,40,116,97,103,44,32,99,117,114,114,101,110,116,68,111,99,84,111,84,97,103,41,46,116,104,101,110,40,40,41,32,61,62,32,99,117,114,114,101,110,116,84,97,103,67,97,108,108,98,97,99,107,40,116,97,103,41,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,125,41,59,10,32,32,32,32,125,41,10,32,32,32,32,36,40,34,35,116,97,103,45,99,111,108,111,114,34,41,46,99,111,108,111,114,112,105,99,107,101,114,40,123,10,32,32,32,32,32,32,32,32,102,111,114,109,97,116,58,32,34,104,101,120,34,44,10,32,32,32,32,32,32,32,32,115,108,105,100,101,114,115,58,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,115,97,116,117,114,97,116,105,111,110,58,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,101,108,101,99,116,111,114,58,32,39,46,99,111,108,111,114,112,105,99,107,101,114,45,115,97,116,117,114,97,116,105,111,110,39,44,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,97,108,108,76,101,102,116,58,32,39,115,101,116,83,97,116,117,114,97,116,105,111,110,82,97,116,105,111,39,44,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,97,108,108,84,111,112,58,32,39,115,101,116,86,97,108,117,101,82,97,116,105,111,39,10,32,32,32,32,32,32,32,32,32,32,32,32,125,44,10,32,32,32,32,32,32,32,32,32,32,32,32,104,117,101,58,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,101,108,101,99,116,111,114,58,32,39,46,99,111,108,111,114,112,105,99,107,101,114,45,104,117,101,39,44,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,109,97,120,76,101,102,116,58,32,48,44,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,97,108,108,76,101,102,116,58,32,102,97,108,115,101,44,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,97,108,108,84,111,112,58,32,39,115,101,116,72,117,101,82,97,116,105,111,39,10,32,32,32,32,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,125,10,32,32,32,32,125,41,59,10,125,59,10,10,102,117,110,99,116,105,111,110,32,115,97,118,101,84,97,103,40,116,97,103,44,32,104,105,116,41,32,123,10,32,32,32,32,99,111,110,115,116,32,114,101,108,80,97,116,104,32,61,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,112,97,116,104,34,93,32,43,32,34,47,34,32,43,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,110,97,109,101,34,93,32,43,32,101,120,116,40,104,105,116,41,59,10,10,32,32,32,32,114,101,116,117,114,110,32,36,46,106,115,111,110,80,111,115,116,40,34,47,116,97,103,47,34,32,43,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,105,110,100,101,120,34,93,44,32,123,10,32,32,32,32,32,32,32,32,100,101,108,101,116,101,58,32,102,97,108,115,101,44,10,32,32,32,32,32,32,32,32,110,97,109,101,58,32,116,97,103,44,10,32,32,32,32,32,32,32,32,100,111,99,95,105,100,58,32,104,105,116,91,34,95,105,100,34,93,44,10,32,32,32,32,32,32,32,32,114,101,108,112,97,116,104,58,32,114,101,108,80,97,116,104,10,32,32,32,32,125,41,46,116,104,101,110,40,40,41,32,61,62,32,123,10,32,32,32,32,32,32,32,32,116,97,103,66,97,114,46,98,108,117,114,40,41,59,10,32,32,32,32,32,32,32,32,36,40,34,35,116,97,103,77,111,100,97,108,34,41,46,109,111,100,97,108,40,34,104,105,100,101,34,41,59,10,32,32,32,32,32,32,32,32,36,46,116,111,97,115,116,40,123,10,32,32,32,32,32,32,32,32,32,32,32,32,104,101,97,100,105,110,103,58,32,34,84,97,103,32,97,100,100,101,100,34,44,10,32,32,32,32,32,32,32,32,32,32,32,32,116,101,120,116,58,32,34,84,97,103,32,115,97,118,101,100,32,116,111,32,105,110,100,101,120,32,115,116,111,114,97,103,101,32,97,110,100,32,117,112,100,97,116,101,100,32,105,110,32,69,108,97,115,116,105,99,83,101,97,114,99,104,34,44,10,32,32,32,32,32,32,32,32,32,32,32,32,115,116,97,99,107,58,32,51,44,10,32,32,32,32,32,32,32,32,32,32,32,32,98,103,67,111,108,111,114,58,32,34,35,48,48,97,52,98,99,34,44,10,32,32,32,32,32,32,32,32,32,32,32,32,116,101,120,116,67,111,108,111,114,58,32,34,35,102,102,102,34,44,10,32,32,32,32,32,32,32,32,32,32,32,32,112,111,115,105,116,105,111,110,58,32,39,98,111,116,116,111,109,45,114,105,103,104,116,39,44,10,32,32,32,32,32,32,32,32,32,32,32,32,104,105,100,101,65,102,116,101,114,58,32,51,48,48,48,44,10,32,32,32,32,32,32,32,32,32,32,32,32,108,111,97,100,101,114,66,103,58,32,34,35,48,56,99,55,101,56,34,44,10,32,32,32,32,32,32,32,32,125,41,59,10,32,32,32,32,125,41,10,125,10,10,102,117,110,99,116,105,111,110,32,100,101,108,101,116,101,84,97,103,40,116,97,103,44,32,104,105,116,41,32,123,10,32,32,32,32,99,111,110,115,116,32,114,101,108,80,97,116,104,32,61,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,112,97,116,104,34,93,32,43,32,34,47,34,32,43,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,110,97,109,101,34,93,32,43,32,101,120,116,40,104,105,116,41,59,10,10,32,32,32,32,114,101,116,117,114,110,32,36,46,106,115,111,110,80,111,115,116,40,34,47,116,97,103,47,34,32,43,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,105,110,100,101,120,34,93,44,32,123,10,32,32,32,32,32,32,32,32,100,101,108,101,116,101,58,32,116,114,117,101,44,10,32,32,32,32,32,32,32,32,110,97,109,101,58,32,116,97,103,44,10,32,32,32,32,32,32,32,32,100,111,99,95,105,100,58,32,104,105,116,91,34,95,105,100,34,93,44,10,32,32,32,32,32,32,32,32,114,101,108,112,97,116,104,58,32,114,101,108,80,97,116,104,10,32,32,32,32,125,41,46,116,104,101,110,40,40,41,32,61,62,32,123,10,32,32,32,32,32,32,32,32,36,46,116,111,97,115,116,40,123,10,32,32,32,32,32,32,32,32,32,32,32,32,104,101,97,100,105,110,103,58,32,34,84,97,103,32,100,101,108,101,116,101,100,34,44,10,32,32,32,32,32,32,32,32,32,32,32,32,116,101,120,116,58,32,34,84,97,103,32,100,101,108,101,116,101,100,32,105,110,100,101,120,32,115,116,111,114,97,103,101,32,97,110,100,32,117,112,100,97,116,101,100,32,105,110,32,69,108,97,115,116,105,99,83,101,97,114,99,104,34,44,10,32,32,32,32,32,32,32,32,32,32,32,32,115,116,97,99,107,58,32,51,44,10,32,32,32,32,32,32,32,32,32,32,32,32,98,103,67,111,108,111,114,58,32,34,35,48,48,97,52,98,99,34,44,10,32,32,32,32,32,32,32,32,32,32,32,32,116,101,120,116,67,111,108,111,114,58,32,34,35,102,102,102,34,44,10,32,32,32,32,32,32,32,32,32,32,32,32,112,111,115,105,116,105,111,110,58,32,39,98,111,116,116,111,109,45,114,105,103,104,116,39,44,10,32,32,32,32,32,32,32,32,32,32,32,32,104,105,100,101,65,102,116,101,114,58,32,51,48,48,48,44,10,32,32,32,32,32,32,32,32,32,32,32,32,108,111,97,100,101,114,66,103,58,32,34,35,48,56,99,55,101,56,34,44,10,32,32,32,32,32,32,32,32,125,41,59,10,32,32,32,32,125,41,10,125,10,10,102,117,110,99,116,105,111,110,32,116,111,103,103,108,101,70,117,122,122,121,40,41,32,123,10,32,32,32,32,115,101,97,114,99,104,68,101,98,111,117,110,99,101,100,40,41,59,10,125,10,10,36,46,103,101,116,40,34,105,34,41,46,116,104,101,110,40,114,101,115,112,32,61,62,32,123,10,10,32,32,32,32,99,111,110,115,116,32,117,114,108,73,110,100,105,99,101,115,32,61,32,40,110,101,119,32,85,82,76,83,101,97,114,99,104,80,97,114,97,109,115,40,108,111,99,97,116,105,111,110,46,115,101,97,114,99,104,41,41,46,103,101,116,40,34,105,34,41,59,10,32,32,32,32,114,101,115,112,91,34,105,110,100,105,99,101,115,34,93,46,102,111,114,69,97,99,104,40,105,100,120,32,61,62,32,123,10,32,32,32,32,32,32,32,32,105,110,100,101,120,77,97,112,91,105,100,120,46,105,100,93,32,61,32,105,100,120,46,110,97,109,101,59,10,32,32,32,32,32,32,32,32,99,111,110,115,116,32,111,112,116,32,61,32,36,40,34,60,111,112,116,105,111,110,62,34,41,10,32,32,32,32,32,32,32,32,32,32,32,32,46,97,116,116,114,40,34,118,97,108,117,101,34,44,32,105,100,120,46,105,100,41,10,32,32,32,32,32,32,32,32,32,32,32,32,46,97,112,112,101,110,100,40,105,100,120,46,110,97,109,101,41,59,10,10,32,32,32,32,32,32,32,32,105,102,32,40,117,114,108,73,110,100,105,99,101,115,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,117,114,108,73,110,100,105,99,101,115,46,115,112,108,105,116,40,34,44,34,41,46,105,110,100,101,120,79,102,40,105,100,120,46,110,97,109,101,41,32,33,61,61,32,45,49,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,111,112,116,46,97,116,116,114,40,34,115,101,108,101,99,116,101,100,34,44,32,116,114,117,101,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,101,108,101,99,116,101,100,73,110,100,105,99,101,115,46,112,117,115,104,40,105,100,120,46,105,100,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,33,105,100,120,46,110,97,109,101,46,105,110,99,108,117,100,101,115,40,34,40,110,115,102,119,41,34,41,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,111,112,116,46,97,116,116,114,40,34,115,101,108,101,99,116,101,100,34,44,32,116,114,117,101,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,115,101,108,101,99,116,101,100,73,110,100,105,99,101,115,46,112,117,115,104,40,105,100,120,46,105,100,41,59,10,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,36,40,34,35,105,110,100,105,99,101,115,34,41,46,97,112,112,101,110,100,40,111,112,116,41,59,10,32,32,32,32,125,41,59,10,10,32,32,32,32,99,114,101,97,116,101,80,97,116,104,84,114,101,101,40,34,35,112,97,116,104,84,114,101,101,34,41,59,10,125,41,59,10,10,102,117,110,99,116,105,111,110,32,103,101,116,68,111,99,117,109,101,110,116,73,110,102,111,40,105,100,41,32,123,10,32,32,32,32,114,101,116,117,114,110,32,36,46,103,101,116,74,83,79,78,40,34,100,47,34,32,43,32,105,100,41,46,102,97,105,108,40,115,104,111,119,69,115,69,114,114,111,114,41,10,125,10,10,102,117,110,99,116,105,111,110,32,104,97,110,100,108,101,84,114,101,101,67,108,105,99,107,40,116,114,101,101,41,32,123,10,32,32,32,32,114,101,116,117,114,110,32,40,110,111,100,101,44,32,101,41,32,61,62,32,123,10,32,32,32,32,32,32,32,32,105,102,32,40,101,32,33,61,61,32,34,99,104,101,99,107,101,100,34,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,10,32,32,32,32,32,32,32,32,125,10,10,32,32,32,32,32,32,32,32,105,102,32,40,110,111,100,101,46,105,100,32,61,61,61,32,34,97,110,121,34,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,110,111,100,101,46,105,116,114,101,101,46,115,116,97,116,101,46,99,104,101,99,107,101,100,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,114,101,101,46,100,101,115,101,108,101,99,116,68,101,101,112,40,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,116,114,101,101,46,110,111,100,101,40,34,97,110,121,34,41,46,100,101,115,101,108,101,99,116,40,41,59,10,32,32,32,32,32,32,32,32,125,10,10,32,32,32,32,32,32,32,32,115,101,97,114,99,104,68,101,98,111,117,110,99,101,100,40,41,59,10,32,32,32,32,125,10,125,10,10,36,46,106,115,111,110,80,111,115,116,40,34,101,115,34,44,32,123,10,32,32,32,32,97,103,103,115,58,32,123,10,32,32,32,32,32,32,32,32,109,105,109,101,84,121,112,101,115,58,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,116,101,114,109,115,58,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,105,101,108,100,58,32,34,109,105,109,101,34,44,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,105,122,101,58,32,49,48,48,48,48,10,32,32,32,32,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,125,10,32,32,32,32,125,44,10,32,32,32,32,115,105,122,101,58,32,48,44,10,125,41,46,116,104,101,110,40,114,101,115,112,32,61,62,32,123,10,32,32,32,32,114,101,115,112,91,34,97,103,103,114,101,103,97,116,105,111,110,115,34,93,91,34,109,105,109,101,84,121,112,101,115,34,93,91,34,98,117,99,107,101,116,115,34,93,46,115,111,114,116,40,40,97,44,32,98,41,32,61,62,32,97,46,107,101,121,32,62,32,98,46,107,101,121,41,46,102,111,114,69,97,99,104,40,98,117,99,107,101,116,32,61,62,32,123,10,32,32,32,32,32,32,32,32,108,101,116,32,116,109,112,32,61,32,98,117,99,107,101,116,91,34,107,101,121,34,93,46,115,112,108,105,116,40,34,47,34,41,59,10,32,32,32,32,32,32,32,32,108,101,116,32,99,97,116,101,103,111,114,121,32,61,32,116,109,112,91,48,93,59,10,32,32,32,32,32,32,32,32,108,101,116,32,109,105,109,101,32,61,32,116,109,112,91,49,93,59,10,10,32,32,32,32,32,32,32,32,108,101,116,32,99,97,116,101,103,111,114,121,95,101,120,105,115,116,115,32,61,32,102,97,108,115,101,59,10,10,32,32,32,32,32,32,32,32,108,101,116,32,99,104,105,108,100,32,61,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,34,105,100,34,58,32,98,117,99,107,101,116,91,34,107,101,121,34,93,44,10,32,32,32,32,32,32,32,32,32,32,32,32,34,116,101,120,116,34,58,32,96,36,123,109,105,109,101,125,32,40,36,123,98,117,99,107,101,116,91,34,100,111,99,95,99,111,117,110,116,34,93,125,41,96,10,32,32,32,32,32,32,32,32,125,59,10,10,32,32,32,32,32,32,32,32,109,105,109,101,77,97,112,46,102,111,114,69,97,99,104,40,110,111,100,101,32,61,62,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,110,111,100,101,46,116,101,120,116,32,61,61,61,32,99,97,116,101,103,111,114,121,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,111,100,101,46,99,104,105,108,100,114,101,110,46,112,117,115,104,40,99,104,105,108,100,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,97,116,101,103,111,114,121,95,101,120,105,115,116,115,32,61,32,116,114,117,101,59,10,32,32,32,32,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,125,41,59,10,10,32,32,32,32,32,32,32,32,105,102,32,40,33,99,97,116,101,103,111,114,121,95,101,120,105,115,116,115,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,109,105,109,101,77,97,112,46,112,117,115,104,40,123,34,116,101,120,116,34,58,32,99,97,116,101,103,111,114,121,44,32,99,104,105,108,100,114,101,110,58,32,91,99,104,105,108,100,93,125,41,59,10,32,32,32,32,32,32,32,32,125,10,32,32,32,32,125,41,59,10,32,32,32,32,109,105,109,101,77,97,112,46,112,117,115,104,40,123,34,116,101,120,116,34,58,32,34,65,108,108,34,44,32,34,105,100,34,58,32,34,97,110,121,34,125,41,59,10,10,32,32,32,32,109,105,109,101,84,114,101,101,32,61,32,110,101,119,32,73,110,115,112,105,114,101,84,114,101,101,40,123,10,32,32,32,32,32,32,32,32,115,101,108,101,99,116,105,111,110,58,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,109,111,100,101,58,32,39,99,104,101,99,107,98,111,120,39,10,32,32,32,32,32,32,32,32,125,44,10,32,32,32,32,32,32,32,32,100,97,116,97,58,32,109,105,109,101,77,97,112,10,32,32,32,32,125,41,59,10,32,32,32,32,110,101,119,32,73,110,115,112,105,114,101,84,114,101,101,68,79,77,40,109,105,109,101,84,114,101,101,44,32,123,10,32,32,32,32,32,32,32,32,116,97,114,103,101,116,58,32,39,35,109,105,109,101,84,114,101,101,39,10,32,32,32,32,125,41,59,10,32,32,32,32,109,105,109,101,84,114,101,101,46,111,110,40,34,110,111,100,101,46,115,116,97,116,101,46,99,104,97,110,103,101,100,34,44,32,104,97,110,100,108,101,84,114,101,101,67,108,105,99,107,40,109,105,109,101,84,114,101,101,41,41,59,10,32,32,32,32,109,105,109,101,84,114,101,101,46,100,101,115,101,108,101,99,116,40,41,59,10,32,32,32,32,109,105,109,101,84,114,101,101,46,110,111,100,101,40,34,97,110,121,34,41,46,115,101,108,101,99,116,40,41,59,10,125,41,59,10,10,47,47,32,84,97,103,115,32,116,114,101,101,10,36,46,106,115,111,110,80,111,115,116,40,34,101,115,34,44,32,123,10,32,32,32,32,97,103,103,115,58,32,123,10,32,32,32,32,32,32,32,32,116,97,103,115,58,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,116,101,114,109,115,58,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,105,101,108,100,58,32,34,116,97,103,34,44,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,105,122,101,58,32,49,48,48,48,48,10,32,32,32,32,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,125,10,32,32,32,32,125,44,10,32,32,32,32,115,105,122,101,58,32,48,44,10,125,41,46,116,104,101,110,40,114,101,115,112,32,61,62,32,123,10,32,32,32,32,114,101,115,112,91,34,97,103,103,114,101,103,97,116,105,111,110,115,34,93,91,34,116,97,103,115,34,93,91,34,98,117,99,107,101,116,115,34,93,10,32,32,32,32,32,32,32,32,46,115,111,114,116,40,40,97,44,32,98,41,32,61,62,32,97,91,34,107,101,121,34,93,46,108,111,99,97,108,101,67,111,109,112,97,114,101,40,98,91,34,107,101,121,34,93,41,41,10,32,32,32,32,32,32,32,32,46,102,111,114,69,97,99,104,40,98,117,99,107,101,116,32,61,62,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,97,100,100,84,97,103,40,116,97,103,77,97,112,44,32,98,117,99,107,101,116,91,34,107,101,121,34,93,44,32,98,117,99,107,101,116,91,34,107,101,121,34,93,44,32,98,117,99,107,101,116,91,34,100,111,99,95,99,111,117,110,116,34,93,41,10,32,32,32,32,32,32,32,32,125,41,59,10,10,32,32,32,32,116,97,103,77,97,112,46,112,117,115,104,40,123,34,116,101,120,116,34,58,32,34,65,108,108,34,44,32,34,105,100,34,58,32,34,97,110,121,34,125,41,59,10,32,32,32,32,116,97,103,84,114,101,101,32,61,32,110,101,119,32,73,110,115,112,105,114,101,84,114,101,101,40,123,10,32,32,32,32,32,32,32,32,115,101,108,101,99,116,105,111,110,58,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,109,111,100,101,58,32,39,99,104,101,99,107,98,111,120,39,10,32,32,32,32,32,32,32,32,125,44,10,32,32,32,32,32,32,32,32,99,104,101,99,107,98,111,120,58,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,97,117,116,111,67,104,101,99,107,67,104,105,108,100,114,101,110,58,32,102,97,108,115,101,10,32,32,32,32,32,32,32,32,125,44,10,32,32,32,32,32,32,32,32,100,97,116,97,58,32,116,97,103,77,97,112,10,32,32,32,32,125,41,59,10,32,32,32,32,110,101,119,32,73,110,115,112,105,114,101,84,114,101,101,68,79,77,40,116,97,103,84,114,101,101,44,32,123,10,32,32,32,32,32,32,32,32,116,97,114,103,101,116,58,32,39,35,116,97,103,84,114,101,101,39,10,32,32,32,32,125,41,59,10,32,32,32,32,116,97,103,84,114,101,101,46,111,110,40,34,110,111,100,101,46,115,116,97,116,101,46,99,104,97,110,103,101,100,34,44,32,104,97,110,100,108,101,84,114,101,101,67,108,105,99,107,40,116,97,103,84,114,101,101,41,41,59,10,32,32,32,32,116,97,103,84,114,101,101,46,110,111,100,101,40,34,97,110,121,34,41,46,115,101,108,101,99,116,40,41,59,10,32,32,32,32,115,101,97,114,99,104,66,117,115,121,32,61,32,102,97,108,115,101,59,10,125,41,59,10,10,102,117,110,99,116,105,111,110,32,97,100,100,84,97,103,40,109,97,112,44,32,116,97,103,44,32,105,100,44,32,99,111,117,110,116,41,32,123,10,32,32,32,32,47,47,32,108,101,116,32,116,97,103,115,32,61,32,116,97,103,46,115,112,108,105,116,40,34,35,34,41,91,48,93,46,115,112,108,105,116,40,34,46,34,41,59,10,32,32,32,32,108,101,116,32,116,97,103,115,32,61,32,116,97,103,46,115,112,108,105,116,40,34,46,34,41,59,10,10,32,32,32,32,108,101,116,32,99,104,105,108,100,32,61,32,123,10,32,32,32,32,32,32,32,32,105,100,58,32,105,100,44,10,32,32,32,32,32,32,32,32,118,97,108,117,101,115,58,32,91,105,100,93,44,10,32,32,32,32,32,32,32,32,99,111,117,110,116,58,32,99,111,117,110,116,44,10,32,32,32,32,32,32,32,32,116,101,120,116,58,32,116,97,103,115,46,108,101,110,103,116,104,32,33,61,61,32,49,32,63,32,116,97,103,115,91,48,93,32,58,32,96,36,123,116,97,103,115,91,48,93,46,115,112,108,105,116,40,34,35,34,41,91,48,93,125,32,40,36,123,99,111,117,110,116,125,41,96,44,10,32,32,32,32,32,32,32,32,110,97,109,101,58,32,116,97,103,115,91,48,93,44,10,32,32,32,32,32,32,32,32,99,104,105,108,100,114,101,110,58,32,91,93,44,10,32,32,32,32,32,32,32,32,105,115,76,101,97,102,58,32,116,97,103,115,46,108,101,110,103,116,104,32,61,61,61,32,49,44,10,32,32,32,32,32,32,32,32,47,47,79,118,101,114,119,114,105,116,101,32,98,97,115,101,32,102,117,110,99,116,105,111,110,115,10,32,32,32,32,32,32,32,32,98,108,117,114,58,32,102,117,110,99,116,105,111,110,32,40,41,32,123,10,32,32,32,32,32,32,32,32,125,44,10,32,32,32,32,32,32,32,32,115,101,108,101,99,116,58,32,102,117,110,99,116,105,111,110,32,40,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,115,116,97,116,101,40,34,115,101,108,101,99,116,101,100,34,44,32,116,114,117,101,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,99,104,101,99,107,40,41,10,32,32,32,32,32,32,32,32,125,44,10,32,32,32,32,32,32,32,32,100,101,115,101,108,101,99,116,58,32,102,117,110,99,116,105,111,110,32,40,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,115,116,97,116,101,40,34,115,101,108,101,99,116,101,100,34,44,32,102,97,108,115,101,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,46,117,110,99,104,101,99,107,40,41,10,32,32,32,32,32,32,32,32,125,44,10,32,32,32,32,32,32,32,32,117,110,99,104,101,99,107,58,32,102,117,110,99,116,105,111,110,32,40,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,116,104,105,115,46,105,115,76,101,97,102,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,10,32,32,32,32,32,32,32,32,32,32,32,32,125,10,10,32,32,32,32,32,32,32,32,32,32,32,32,98,97,115,101,83,116,97,116,101,67,104,97,110,103,101,40,39,99,104,101,99,107,101,100,39,44,32,102,97,108,115,101,44,32,39,117,110,99,104,101,99,107,101,100,39,44,32,116,104,105,115,44,32,102,97,108,115,101,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,115,116,97,116,101,40,39,105,110,100,101,116,101,114,109,105,110,97,116,101,39,44,32,102,97,108,115,101,41,59,10,10,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,104,97,115,80,97,114,101,110,116,40,41,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,103,101,116,80,97,114,101,110,116,40,41,46,114,101,102,114,101,115,104,73,110,100,101,116,101,114,109,105,110,97,116,101,83,116,97,116,101,40,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,125,10,10,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,95,116,114,101,101,46,101,110,100,40,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,59,10,32,32,32,32,32,32,32,32,125,44,10,32,32,32,32,32,32,32,32,99,104,101,99,107,58,32,102,117,110,99,116,105,111,110,32,40,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,116,104,105,115,46,105,115,76,101,97,102,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,10,32,32,32,32,32,32,32,32,32,32,32,32,125,10,10,32,32,32,32,32,32,32,32,32,32,32,32,98,97,115,101,83,116,97,116,101,67,104,97,110,103,101,40,39,99,104,101,99,107,101,100,39,44,32,116,114,117,101,44,32,39,99,104,101,99,107,101,100,39,44,32,116,104,105,115,44,32,102,97,108,115,101,41,59,10,10,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,116,104,105,115,46,104,97,115,80,97,114,101,110,116,40,41,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,103,101,116,80,97,114,101,110,116,40,41,46,114,101,102,114,101,115,104,73,110,100,101,116,101,114,109,105,110,97,116,101,83,116,97,116,101,40,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,125,10,10,32,32,32,32,32,32,32,32,32,32,32,32,116,104,105,115,46,95,116,114,101,101,46,101,110,100,40,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,104,105,115,59,10,32,32,32,32,32,32,32,32,125,10,32,32,32,32,125,59,10,10,32,32,32,32,108,101,116,32,102,111,117,110,100,32,61,32,102,97,108,115,101,59,10,32,32,32,32,109,97,112,46,102,111,114,69,97,99,104,40,110,111,100,101,32,61,62,32,123,10,32,32,32,32,32,32,32,32,105,102,32,40,110,111,100,101,46,110,97,109,101,46,115,112,108,105,116,40,34,35,34,41,91,48,93,32,61,61,61,32,99,104,105,108,100,46,110,97,109,101,46,115,112,108,105,116,40,34,35,34,41,91,48,93,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,102,111,117,110,100,32,61,32,116,114,117,101,59,10,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,116,97,103,115,46,108,101,110,103,116,104,32,33,61,61,32,49,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,100,100,84,97,103,40,110,111,100,101,46,99,104,105,108,100,114,101,110,44,32,116,97,103,115,46,115,108,105,99,101,40,49,41,46,106,111,105,110,40,34,46,34,41,44,32,105,100,44,32,99,111,117,110,116,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,83,97,109,101,32,110,97,109,101,44,32,100,105,102,102,101,114,101,110,116,32,99,111,108,111,114,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,111,100,101,46,99,111,117,110,116,32,43,61,32,99,111,117,110,116,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,111,100,101,46,116,101,120,116,32,61,32,96,36,123,116,97,103,115,91,48,93,46,115,112,108,105,116,40,34,35,34,41,91,48,93,125,32,40,36,123,110,111,100,101,46,99,111,117,110,116,125,41,96,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,111,100,101,46,118,97,108,117,101,115,46,112,117,115,104,40,105,100,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,125,10,32,32,32,32,125,41,59,10,32,32,32,32,105,102,32,40,33,102,111,117,110,100,41,32,123,10,32,32,32,32,32,32,32,32,105,102,32,40,116,97,103,115,46,108,101,110,103,116,104,32,33,61,61,32,49,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,97,100,100,84,97,103,40,99,104,105,108,100,46,99,104,105,108,100,114,101,110,44,32,116,97,103,115,46,115,108,105,99,101,40,49,41,46,106,111,105,110,40,34,46,34,41,44,32,105,100,44,32,99,111,117,110,116,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,109,97,112,46,112,117,115,104,40,99,104,105,108,100,41,59,10,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,109,97,112,46,112,117,115,104,40,99,104,105,108,100,41,59,10,32,32,32,32,32,32,32,32,125,10,32,32,32,32,125,10,125,10,10,102,117,110,99,116,105,111,110,32,105,110,115,101,114,116,72,105,116,115,40,114,101,115,117,108,116,67,111,110,116,97,105,110,101,114,44,32,104,105,116,115,41,32,123,10,32,32,32,32,102,111,114,32,40,108,101,116,32,105,32,61,32,48,59,32,105,32,60,32,104,105,116,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,10,10,32,32,32,32,32,32,32,32,105,102,32,40,67,79,78,70,46,111,112,116,105,111,110,115,46,100,105,115,112,108,97,121,32,61,61,61,32,34,103,114,105,100,34,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,114,101,115,117,108,116,67,111,110,116,97,105,110,101,114,46,95,98,114,105,99,107,46,97,112,112,101,110,100,40,99,114,101,97,116,101,68,111,99,67,97,114,100,40,104,105,116,115,91,105,93,41,41,59,10,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,114,101,115,117,108,116,67,111,110,116,97,105,110,101,114,46,97,112,112,101,110,100,67,104,105,108,100,40,99,114,101,97,116,101,68,111,99,76,105,110,101,40,104,105,116,115,91,105,93,41,41,59,10,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,100,111,99,67,111,117,110,116,43,43,59,10,32,32,32,32,125,10,125,10,10,119,105,110,100,111,119,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,115,99,114,111,108,108,34,44,32,102,117,110,99,116,105,111,110,32,40,41,32,123,10,32,32,32,32,105,102,32,40,33,115,101,97,114,99,104,66,117,115,121,41,32,123,10,32,32,32,32,32,32,32,32,108,101,116,32,116,104,114,101,115,104,111,108,100,32,61,32,52,48,48,59,10,10,32,32,32,32,32,32,32,32,105,102,32,40,40,119,105,110,100,111,119,46,105,110,110,101,114,72,101,105,103,104,116,32,43,32,119,105,110,100,111,119,46,115,99,114,111,108,108,89,41,32,62,61,32,100,111,99,117,109,101,110,116,46,98,111,100,121,46,111,102,102,115,101,116,72,101,105,103,104,116,32,45,32,116,104,114,101,115,104,111,108,100,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,114,101,97,99,104,101,100,69,110,100,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,111,111,108,105,110,103,68,111,119,110,32,61,32,116,114,117,101,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,101,97,114,99,104,40,108,97,115,116,68,111,99,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,125,10,32,32,32,32,125,10,125,41,59,10,10,102,117,110,99,116,105,111,110,32,103,101,116,83,101,108,101,99,116,101,100,78,111,100,101,115,40,116,114,101,101,41,32,123,10,32,32,32,32,108,101,116,32,115,101,108,101,99,116,101,100,78,111,100,101,115,32,61,32,91,93,59,10,10,32,32,32,32,108,101,116,32,115,101,108,101,99,116,101,100,32,61,32,116,114,101,101,46,115,101,108,101,99,116,101,100,40,41,59,10,10,32,32,32,32,102,111,114,32,40,108,101,116,32,105,32,61,32,48,59,32,105,32,60,32,115,101,108,101,99,116,101,100,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,10,10,32,32,32,32,32,32,32,32,105,102,32,40,115,101,108,101,99,116,101,100,91,105,93,46,105,100,32,61,61,61,32,34,97,110,121,34,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,91,34,97,110,121,34,93,10,32,32,32,32,32,32,32,32,125,10,10,32,32,32,32,32,32,32,32,47,47,79,110,108,121,32,103,101,116,32,99,104,105,108,100,114,101,110,10,32,32,32,32,32,32,32,32,105,102,32,40,115,101,108,101,99,116,101,100,91,105,93,46,116,101,120,116,46,105,110,100,101,120,79,102,40,34,40,34,41,32,33,61,61,32,45,49,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,115,101,108,101,99,116,101,100,91,105,93,46,118,97,108,117,101,115,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,101,108,101,99,116,101,100,78,111,100,101,115,46,112,117,115,104,40,115,101,108,101,99,116,101,100,91,105,93,46,118,97,108,117,101,115,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,101,108,101,99,116,101,100,78,111,100,101,115,46,112,117,115,104,40,115,101,108,101,99,116,101,100,91,105,93,46,105,100,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,125,10,32,32,32,32,125,10,10,32,32,32,32,114,101,116,117,114,110,32,115,101,108,101,99,116,101,100,78,111,100,101,115,10,125,10,10,102,117,110,99,116,105,111,110,32,115,101,97,114,99,104,40,97,102,116,101,114,32,61,32,110,117,108,108,41,32,123,10,32,32,32,32,108,97,115,116,68,111,99,32,61,32,110,117,108,108,59,10,10,32,32,32,32,105,102,32,40,115,101,97,114,99,104,66,117,115,121,41,32,123,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,10,32,32,32,32,125,10,32,32,32,32,115,101,97,114,99,104,66,117,115,121,32,61,32,116,114,117,101,59,10,10,32,32,32,32,108,101,116,32,115,101,97,114,99,104,82,101,115,117,108,116,115,32,61,32,100,111,99,117,109,101,110,116,46,103,101,116,69,108,101,109,101,110,116,66,121,73,100,40,34,115,101,97,114,99,104,82,101,115,117,108,116,115,34,41,59,10,32,32,32,32,47,47,67,108,101,97,114,32,111,108,100,32,115,101,97,114,99,104,32,114,101,115,117,108,116,115,10,32,32,32,32,108,101,116,32,112,114,101,108,111,97,100,59,10,32,32,32,32,105,102,32,40,33,97,102,116,101,114,41,32,123,10,32,32,32,32,32,32,32,32,119,104,105,108,101,32,40,115,101,97,114,99,104,82,101,115,117,108,116,115,46,102,105,114,115,116,67,104,105,108,100,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,115,101,97,114,99,104,82,101,115,117,108,116,115,46,114,101,109,111,118,101,67,104,105,108,100,40,115,101,97,114,99,104,82,101,115,117,108,116,115,46,102,105,114,115,116,67,104,105,108,100,41,59,10,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,112,114,101,108,111,97,100,32,61,32,109,97,107,101,80,114,101,108,111,97,100,101,114,40,41,59,10,32,32,32,32,32,32,32,32,115,101,97,114,99,104,82,101,115,117,108,116,115,46,97,112,112,101,110,100,67,104,105,108,100,40,112,114,101,108,111,97,100,41,59,10,32,32,32,32,125,10,10,32,32,32,32,108,101,116,32,113,117,101,114,121,32,61,32,115,101,97,114,99,104,66,97,114,46,118,97,108,117,101,59,10,32,32,32,32,108,101,116,32,101,109,112,116,121,32,61,32,113,117,101,114,121,32,61,61,61,32,34,34,59,10,32,32,32,32,108,101,116,32,99,111,110,100,105,116,105,111,110,32,61,32,101,109,112,116,121,32,63,32,34,115,104,111,117,108,100,34,32,58,32,34,109,117,115,116,34,59,10,32,32,32,32,108,101,116,32,102,105,108,116,101,114,115,32,61,32,91,10,32,32,32,32,32,32,32,32,123,114,97,110,103,101,58,32,123,115,105,122,101,58,32,123,103,116,101,58,32,115,105,122,101,95,109,105,110,44,32,108,116,101,58,32,115,105,122,101,95,109,97,120,125,125,125,44,10,32,32,32,32,32,32,32,32,123,116,101,114,109,115,58,32,123,105,110,100,101,120,58,32,115,101,108,101,99,116,101,100,73,110,100,105,99,101,115,125,125,10,32,32,32,32,93,59,10,32,32,32,32,108,101,116,32,102,105,101,108,100,115,32,61,32,91,10,32,32,32,32,32,32,32,32,34,110,97,109,101,94,56,34,44,10,32,32,32,32,32,32,32,32,34,99,111,110,116,101,110,116,94,51,34,44,10,32,32,32,32,32,32,32,32,34,97,108,98,117,109,94,56,34,44,32,34,97,114,116,105,115,116,94,56,34,44,32,34,116,105,116,108,101,94,56,34,44,32,34,103,101,110,114,101,94,50,34,44,32,34,97,108,98,117,109,95,97,114,116,105,115,116,94,56,34,44,10,32,32,32,32,32,32,32,32,34,102,111,110,116,95,110,97,109,101,94,54,34,10,32,32,32,32,93,59,10,10,32,32,32,32,105,102,32,40,67,79,78,70,46,111,112,116,105,111,110,115,46,115,101,97,114,99,104,73,110,80,97,116,104,41,32,123,10,32,32,32,32,32,32,32,32,102,105,101,108,100,115,46,112,117,115,104,40,34,112,97,116,104,46,116,101,120,116,94,53,34,41,59,10,32,32,32,32,125,10,10,32,32,32,32,105,102,32,40,36,40,34,35,102,117,122,122,121,84,111,103,103,108,101,34,41,46,112,114,111,112,40,34,99,104,101,99,107,101,100,34,41,41,32,123,10,32,32,32,32,32,32,32,32,102,105,101,108,100,115,46,112,117,115,104,40,34,99,111,110,116,101,110,116,46,110,71,114,97,109,34,41,59,10,32,32,32,32,32,32,32,32,105,102,32,40,67,79,78,70,46,111,112,116,105,111,110,115,46,115,101,97,114,99,104,73,110,80,97,116,104,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,102,105,101,108,100,115,46,112,117,115,104,40,34,112,97,116,104,46,110,71,114,97,109,34,41,59,10,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,102,105,101,108,100,115,46,112,117,115,104,40,34,110,97,109,101,46,110,71,114,97,109,94,51,34,41,59,10,32,32,32,32,125,10,10,32,32,32,32,108,101,116,32,112,97,116,104,32,61,32,112,97,116,104,66,97,114,46,118,97,108,117,101,46,114,101,112,108,97,99,101,40,47,92,47,36,47,44,32,34,34,41,46,116,111,76,111,119,101,114,67,97,115,101,40,41,59,32,47,47,114,101,109,111,118,101,32,116,114,97,105,108,105,110,103,32,115,108,97,115,104,101,115,10,32,32,32,32,105,102,32,40,112,97,116,104,32,33,61,61,32,34,34,41,32,123,10,32,32,32,32,32,32,32,32,102,105,108,116,101,114,115,46,112,117,115,104,40,123,116,101,114,109,58,32,123,112,97,116,104,58,32,112,97,116,104,125,125,41,10,32,32,32,32,125,10,32,32,32,32,108,101,116,32,109,105,109,101,84,121,112,101,115,32,61,32,103,101,116,83,101,108,101,99,116,101,100,78,111,100,101,115,40,109,105,109,101,84,114,101,101,41,59,10,32,32,32,32,105,102,32,40,33,109,105,109,101,84,121,112,101,115,46,105,110,99,108,117,100,101,115,40,34,97,110,121,34,41,41,32,123,10,32,32,32,32,32,32,32,32,102,105,108,116,101,114,115,46,112,117,115,104,40,123,116,101,114,109,115,58,32,123,34,109,105,109,101,34,58,32,109,105,109,101,84,121,112,101,115,125,125,41,59,10,32,32,32,32,125,10,10,32,32,32,32,108,101,116,32,116,97,103,115,32,61,32,103,101,116,83,101,108,101,99,116,101,100,78,111,100,101,115,40,116,97,103,84,114,101,101,41,59,10,32,32,32,32,105,102,32,40,33,116,97,103,115,46,105,110,99,108,117,100,101,115,40,34,97,110,121,34,41,41,32,123,10,32,32,32,32,32,32,32,32,116,97,103,115,46,102,111,114,69,97,99,104,40,116,97,103,71,114,111,117,112,32,61,62,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,102,105,108,116,101,114,115,46,112,117,115,104,40,123,116,101,114,109,115,58,32,123,34,116,97,103,34,58,32,116,97,103,71,114,111,117,112,125,125,41,10,32,32,32,32,32,32,32,32,125,41,10,32,32,32,32,125,10,10,32,32,32,32,105,102,32,40,100,97,116,101,95,109,105,110,32,38,38,32,100,97,116,101,95,109,97,120,41,32,123,10,32,32,32,32,32,32,32,32,102,105,108,116,101,114,115,46,112,117,115,104,40,123,114,97,110,103,101,58,32,123,109,116,105,109,101,58,32,123,103,116,101,58,32,100,97,116,101,95,109,105,110,44,32,108,116,101,58,32,100,97,116,101,95,109,97,120,125,125,125,41,10,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,100,97,116,101,95,109,105,110,41,32,123,10,32,32,32,32,32,32,32,32,102,105,108,116,101,114,115,46,112,117,115,104,40,123,114,97,110,103,101,58,32,123,109,116,105,109,101,58,32,123,103,116,101,58,32,100,97,116,101,95,109,105,110,125,125,125,41,10,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,100,97,116,101,95,109,97,120,41,32,123,10,32,32,32,32,32,32,32,32,102,105,108,116,101,114,115,46,112,117,115,104,40,123,114,97,110,103,101,58,32,123,109,116,105,109,101,58,32,123,108,116,101,58,32,100,97,116,101,95,109,97,120,125,125,125,41,10,32,32,32,32,125,10,10,32,32,32,32,108,101,116,32,113,32,61,32,123,10,32,32,32,32,32,32,32,32,34,95,115,111,117,114,99,101,34,58,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,101,120,99,108,117,100,101,115,58,32,91,34,99,111,110,116,101,110,116,34,44,32,34,95,116,105,101,34,93,10,32,32,32,32,32,32,32,32,125,44,10,32,32,32,32,32,32,32,32,113,117,101,114,121,58,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,98,111,111,108,58,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,91,99,111,110,100,105,116,105,111,110,93,58,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,105,109,112,108,101,95,113,117,101,114,121,95,115,116,114,105,110,103,58,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,113,117,101,114,121,58,32,113,117,101,114,121,44,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,105,101,108,100,115,58,32,102,105,101,108,100,115,44,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,100,101,102,97,117,108,116,95,111,112,101,114,97,116,111,114,58,32,34,97,110,100,34,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,105,108,116,101,114,58,32,102,105,108,116,101,114,115,10,32,32,32,32,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,125,44,10,32,32,32,32,32,32,32,32,34,115,111,114,116,34,58,32,83,79,82,84,95,77,79,68,69,83,91,67,79,78,70,46,111,112,116,105,111,110,115,46,115,111,114,116,93,46,109,111,100,101,44,10,32,32,32,32,32,32,32,32,97,103,103,115,58,10,32,32,32,32,32,32,32,32,32,32,32,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,111,116,97,108,95,115,105,122,101,58,32,123,34,115,117,109,34,58,32,123,34,102,105,101,108,100,34,58,32,34,115,105,122,101,34,125,125,44,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,111,116,97,108,95,99,111,117,110,116,58,32,123,34,118,97,108,117,101,95,99,111,117,110,116,34,58,32,123,34,102,105,101,108,100,34,58,32,34,115,105,122,101,34,125,125,10,32,32,32,32,32,32,32,32,32,32,32,32,125,44,10,32,32,32,32,32,32,32,32,115,105,122,101,58,32,83,73,90,69,44,10,32,32,32,32,125,59,10,10,32,32,32,32,105,102,32,40,97,102,116,101,114,41,32,123,10,32,32,32,32,32,32,32,32,113,46,115,101,97,114,99,104,95,97,102,116,101,114,32,61,32,91,83,79,82,84,95,77,79,68,69,83,91,67,79,78,70,46,111,112,116,105,111,110,115,46,115,111,114,116,93,46,107,101,121,40,97,102,116,101,114,41,44,32,97,102,116,101,114,91,34,95,105,100,34,93,93,59,10,32,32,32,32,125,10,10,32,32,32,32,105,102,32,40,67,79,78,70,46,111,112,116,105,111,110,115,46,104,105,103,104,108,105,103,104,116,41,32,123,10,32,32,32,32,32,32,32,32,113,46,104,105,103,104,108,105,103,104,116,32,61,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,112,114,101,95,116,97,103,115,58,32,91,34,60,109,97,114,107,62,34,93,44,10,32,32,32,32,32,32,32,32,32,32,32,32,112,111,115,116,95,116,97,103,115,58,32,91,34,60,47,109,97,114,107,62,34,93,44,10,32,32,32,32,32,32,32,32,32,32,32,32,102,114,97,103,109,101,110,116,95,115,105,122,101,58,32,67,79,78,70,46,111,112,116,105,111,110,115,46,102,114,97,103,109,101,110,116,83,105,122,101,44,10,32,32,32,32,32,32,32,32,32,32,32,32,110,117,109,98,101,114,95,111,102,95,102,114,97,103,109,101,110,116,115,58,32,49,44,10,32,32,32,32,32,32,32,32,32,32,32,32,111,114,100,101,114,58,32,34,115,99,111,114,101,34,44,10,32,32,32,32,32,32,32,32,32,32,32,32,102,105,101,108,100,115,58,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,111,110,116,101,110,116,58,32,123,125,44,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,34,99,111,110,116,101,110,116,46,110,71,114,97,109,34,58,32,123,125,44,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,97,109,101,58,32,123,125,44,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,34,110,97,109,101,46,110,71,114,97,109,34,58,32,123,125,44,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,111,110,116,95,110,97,109,101,58,32,123,125,44,10,32,32,32,32,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,125,59,10,32,32,32,32,32,32,32,32,105,102,32,40,67,79,78,70,46,111,112,116,105,111,110,115,46,115,101,97,114,99,104,73,110,80,97,116,104,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,113,46,104,105,103,104,108,105,103,104,116,46,102,105,101,108,100,115,91,34,112,97,116,104,46,116,101,120,116,34,93,32,61,32,123,125,59,10,32,32,32,32,32,32,32,32,32,32,32,32,113,46,104,105,103,104,108,105,103,104,116,46,102,105,101,108,100,115,91,34,112,97,116,104,46,110,71,114,97,109,34,93,32,61,32,123,125,59,10,32,32,32,32,32,32,32,32,125,10,32,32,32,32,125,10,10,32,32,32,32,36,46,106,115,111,110,80,111,115,116,40,34,101,115,34,44,32,113,41,46,116,104,101,110,40,115,101,97,114,99,104,82,101,115,117,108,116,32,61,62,32,123,10,32,32,32,32,32,32,32,32,108,101,116,32,104,105,116,115,32,61,32,115,101,97,114,99,104,82,101,115,117,108,116,91,34,104,105,116,115,34,93,91,34,104,105,116,115,34,93,59,10,32,32,32,32,32,32,32,32,105,102,32,40,104,105,116,115,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,108,97,115,116,68,111,99,32,61,32,104,105,116,115,91,104,105,116,115,46,108,101,110,103,116,104,32,45,32,49,93,59,10,32,32,32,32,32,32,32,32,125,10,10,32,32,32,32,32,32,32,32,104,105,116,115,46,102,111,114,69,97,99,104,40,104,105,116,32,61,62,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,110,97,109,101,34,93,32,61,32,115,116,114,85,110,101,115,99,97,112,101,40,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,110,97,109,101,34,93,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,112,97,116,104,34,93,32,61,32,115,116,114,85,110,101,115,99,97,112,101,40,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,112,97,116,104,34,93,41,59,10,32,32,32,32,32,32,32,32,125,41,59,10,10,32,32,32,32,32,32,32,32,105,102,32,40,33,97,102,116,101,114,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,112,114,101,108,111,97,100,46,114,101,109,111,118,101,40,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,115,101,97,114,99,104,82,101,115,117,108,116,115,46,97,112,112,101,110,100,67,104,105,108,100,40,109,97,107,101,83,116,97,116,115,67,97,114,100,40,115,101,97,114,99,104,82,101,115,117,108,116,41,41,59,10,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,108,101,116,32,112,97,103,101,73,110,100,105,99,97,116,111,114,32,61,32,109,97,107,101,80,97,103,101,73,110,100,105,99,97,116,111,114,40,115,101,97,114,99,104,82,101,115,117,108,116,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,115,101,97,114,99,104,82,101,115,117,108,116,115,46,97,112,112,101,110,100,67,104,105,108,100,40,112,97,103,101,73,110,100,105,99,97,116,111,114,41,59,10,32,32,32,32,32,32,32,32,125,10,10,32,32,32,32,32,32,32,32,47,47,83,101,116,117,112,32,112,97,103,101,10,32,32,32,32,32,32,32,32,108,101,116,32,114,101,115,117,108,116,67,111,110,116,97,105,110,101,114,32,61,32,109,97,107,101,82,101,115,117,108,116,67,111,110,116,97,105,110,101,114,40,41,59,10,32,32,32,32,32,32,32,32,115,101,97,114,99,104,82,101,115,117,108,116,115,46,97,112,112,101,110,100,67,104,105,108,100,40,114,101,115,117,108,116,67,111,110,116,97,105,110,101,114,41,59,10,10,32,32,32,32,32,32,32,32,105,102,32,40,67,79,78,70,46,111,112,116,105,111,110,115,46,100,105,115,112,108,97,121,32,61,61,61,32,34,103,114,105,100,34,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,114,101,115,117,108,116,67,111,110,116,97,105,110,101,114,46,95,98,114,105,99,107,32,61,32,110,101,119,32,66,114,105,99,107,108,97,121,101,114,40,114,101,115,117,108,116,67,111,110,116,97,105,110,101,114,41,59,10,32,32,32,32,32,32,32,32,125,10,10,32,32,32,32,32,32,32,32,105,102,32,40,33,97,102,116,101,114,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,100,111,99,67,111,117,110,116,32,61,32,48,59,10,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,114,101,97,99,104,101,100,69,110,100,32,61,32,104,105,116,115,46,108,101,110,103,116,104,32,33,61,61,32,83,73,90,69,59,10,32,32,32,32,32,32,32,32,105,110,115,101,114,116,72,105,116,115,40,114,101,115,117,108,116,67,111,110,116,97,105,110,101,114,44,32,104,105,116,115,41,59,10,32,32,32,32,32,32,32,32,115,101,97,114,99,104,66,117,115,121,32,61,32,102,97,108,115,101,59,10,32,32,32,32,125,41,59,10,125,10,10,10,108,101,116,32,115,101,97,114,99,104,68,101,98,111,117,110,99,101,100,32,61,32,95,46,100,101,98,111,117,110,99,101,40,102,117,110,99,116,105,111,110,32,40,41,32,123,10,32,32,32,32,99,111,111,108,105,110,103,68,111,119,110,32,61,32,102,97,108,115,101,59,10,32,32,32,32,115,101,97,114,99,104,40,41,10,125,44,32,53,48,48,41,59,10,10,10,47,47,83,105,122,101,32,115,108,105,100,101,114,10,36,40,34,35,115,105,122,101,83,108,105,100,101,114,34,41,46,105,111,110,82,97,110,103,101,83,108,105,100,101,114,40,123,10,32,32,32,32,116,121,112,101,58,32,34,100,111,117,98,108,101,34,44,10,32,32,32,32,103,114,105,100,58,32,102,97,108,115,101,44,10,32,32,32,32,102,111,114,99,101,95,101,100,103,101,115,58,32,116,114,117,101,44,10,32,32,32,32,109,105,110,58,32,48,44,10,32,32,32,32,109,97,120,58,32,51,54,56,52,46,48,51,49,52,57,56,54,52,44,10,32,32,32,32,102,114,111,109,58,32,48,44,10,32,32,32,32,116,111,58,32,51,54,56,52,46,48,51,49,52,57,56,54,52,44,10,32,32,32,32,109,105,110,95,105,110,116,101,114,118,97,108,58,32,53,44,10,32,32,32,32,100,114,97,103,95,105,110,116,101,114,118,97,108,58,32,116,114,117,101,44,10,32,32,32,32,112,114,101,116,116,105,102,121,58,32,102,117,110,99,116,105,111,110,32,40,110,117,109,41,32,123,10,10,32,32,32,32,32,32,32,32,105,102,32,40,110,117,109,32,61,61,61,32,48,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,34,48,32,66,34,10,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,110,117,109,32,62,61,32,51,54,56,52,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,104,117,109,97,110,70,105,108,101,83,105,122,101,40,110,117,109,32,42,32,110,117,109,32,42,32,110,117,109,41,32,43,32,34,43,34,59,10,32,32,32,32,32,32,32,32,125,10,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,104,117,109,97,110,70,105,108,101,83,105,122,101,40,110,117,109,32,42,32,110,117,109,32,42,32,110,117,109,41,10,32,32,32,32,125,44,10,32,32,32,32,111,110,67,104,97,110,103,101,58,32,102,117,110,99,116,105,111,110,32,40,101,41,32,123,10,32,32,32,32,32,32,32,32,115,105,122,101,95,109,105,110,32,61,32,40,101,46,102,114,111,109,32,42,32,101,46,102,114,111,109,32,42,32,101,46,102,114,111,109,41,59,10,32,32,32,32,32,32,32,32,115,105,122,101,95,109,97,120,32,61,32,40,101,46,116,111,32,42,32,101,46,116,111,32,42,32,101,46,116,111,41,59,10,10,32,32,32,32,32,32,32,32,105,102,32,40,101,46,116,111,32,62,61,32,51,54,56,52,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,115,105,122,101,95,109,97,120,32,61,32,49,48,48,48,48,48,48,48,48,48,48,48,48,48,59,10,32,32,32,32,32,32,32,32,125,10,10,32,32,32,32,32,32,32,32,115,101,97,114,99,104,68,101,98,111,117,110,99,101,100,40,41,59,10,32,32,32,32,125,10,125,41,59,10,10,47,47,68,97,116,101,32,115,108,105,100,101,114,10,36,46,106,115,111,110,80,111,115,116,40,34,101,115,34,44,32,123,10,32,32,32,32,97,103,103,115,58,32,123,10,32,32,32,32,32,32,32,32,100,97,116,101,95,109,105,110,58,32,123,109,105,110,58,32,123,102,105,101,108,100,58,32,34,109,116,105,109,101,34,125,125,44,10,32,32,32,32,32,32,32,32,100,97,116,101,95,109,97,120,58,32,123,109,97,120,58,32,123,102,105,101,108,100,58,32,34,109,116,105,109,101,34,125,125,44,10,32,32,32,32,125,44,10,32,32,32,32,115,105,122,101,58,32,48,10,125,41,46,116,104,101,110,40,114,101,115,112,32,61,62,32,123,10,32,32,32,32,36,40,34,35,100,97,116,101,83,108,105,100,101,114,34,41,46,105,111,110,82,97,110,103,101,83,108,105,100,101,114,40,123,10,32,32,32,32,32,32,32,32,116,121,112,101,58,32,34,100,111,117,98,108,101,34,44,10,32,32,32,32,32,32,32,32,103,114,105,100,58,32,102,97,108,115,101,44,10,32,32,32,32,32,32,32,32,102,111,114,99,101,95,101,100,103,101,115,58,32,116,114,117,101,44,10,32,32,32,32,32,32,32,32,109,105,110,58,32,114,101,115,112,91,34,97,103,103,114,101,103,97,116,105,111,110,115,34,93,91,34,100,97,116,101,95,109,105,110,34,93,91,34,118,97,108,117,101,34,93,44,10,32,32,32,32,32,32,32,32,109,97,120,58,32,114,101,115,112,91,34,97,103,103,114,101,103,97,116,105,111,110,115,34,93,91,34,100,97,116,101,95,109,97,120,34,93,91,34,118,97,108,117,101,34,93,44,10,32,32,32,32,32,32,32,32,102,114,111,109,58,32,114,101,115,112,91,34,97,103,103,114,101,103,97,116,105,111,110,115,34,93,91,34,100,97,116,101,95,109,105,110,34,93,91,34,118,97,108,117,101,34,93,44,10,32,32,32,32,32,32,32,32,116,111,58,32,40,68,97,116,101,46,110,111,119,40,41,32,47,32,49,48,48,48,41,44,10,32,32,32,32,32,32,32,32,109,105,110,95,105,110,116,101,114,118,97,108,58,32,51,54,48,48,32,42,32,50,52,32,42,32,55,44,10,32,32,32,32,32,32,32,32,115,116,101,112,58,32,51,54,48,48,32,42,32,50,52,44,10,32,32,32,32,32,32,32,32,100,114,97,103,95,105,110,116,101,114,118,97,108,58,32,116,114,117,101,44,10,32,32,32,32,32,32,32,32,112,114,101,116,116,105,102,121,58,32,102,117,110,99,116,105,111,110,32,40,110,117,109,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,108,101,116,32,100,97,116,101,32,61,32,40,110,101,119,32,68,97,116,101,40,110,117,109,32,42,32,49,48,48,48,41,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,100,97,116,101,46,103,101,116,85,84,67,70,117,108,108,89,101,97,114,40,41,32,43,32,34,45,34,32,43,32,40,34,48,34,32,43,32,40,100,97,116,101,46,103,101,116,85,84,67,77,111,110,116,104,40,41,32,43,32,49,41,41,46,115,108,105,99,101,40,45,50,41,32,43,32,34,45,34,32,43,32,40,34,48,34,32,43,32,100,97,116,101,46,103,101,116,85,84,67,68,97,116,101,40,41,41,46,115,108,105,99,101,40,45,50,41,10,32,32,32,32,32,32,32,32,125,44,10,32,32,32,32,32,32,32,32,111,110,70,105,110,105,115,104,58,32,102,117,110,99,116,105,111,110,32,40,101,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,100,97,116,101,95,109,105,110,32,61,32,101,46,102,114,111,109,32,61,61,61,32,101,46,109,105,110,32,63,32,110,117,108,108,32,58,32,101,46,102,114,111,109,59,10,32,32,32,32,32,32,32,32,32,32,32,32,100,97,116,101,95,109,97,120,32,61,32,101,46,116,111,32,61,61,61,32,101,46,109,97,120,32,63,32,110,117,108,108,32,58,32,101,46,116,111,59,10,32,32,32,32,32,32,32,32,32,32,32,32,115,101,97,114,99,104,68,101,98,111,117,110,99,101,100,40,41,59,10,32,32,32,32,32,32,32,32,125,10,32,32,32,32,125,41,59,10,125,41,10,10,102,117,110,99,116,105,111,110,32,117,112,100,97,116,101,73,110,100,105,99,101,115,40,41,32,123,10,32,32,32,32,108,101,116,32,115,101,108,101,99,116,101,100,32,61,32,36,40,39,35,105,110,100,105,99,101,115,39,41,46,102,105,110,100,40,39,111,112,116,105,111,110,58,115,101,108,101,99,116,101,100,39,41,59,10,32,32,32,32,115,101,108,101,99,116,101,100,73,110,100,105,99,101,115,32,61,32,91,93,59,10,32,32,32,32,36,40,115,101,108,101,99,116,101,100,41,46,101,97,99,104,40,102,117,110,99,116,105,111,110,32,40,41,32,123,10,32,32,32,32,32,32,32,32,115,101,108,101,99,116,101,100,73,110,100,105,99,101,115,46,112,117,115,104,40,36,40,116,104,105,115,41,46,118,97,108,40,41,41,59,10,32,32,32,32,125,41,59,10,10,32,32,32,32,115,101,97,114,99,104,68,101,98,111,117,110,99,101,100,40,41,59,10,125,10,10,100,111,99,117,109,101,110,116,46,103,101,116,69,108,101,109,101,110,116,66,121,73,100,40,34,105,110,100,105,99,101,115,34,41,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,99,104,97,110,103,101,34,44,32,117,112,100,97,116,101,73,110,100,105,99,101,115,41,59,10,117,112,100,97,116,101,73,110,100,105,99,101,115,40,41,59,10,10,119,105,110,100,111,119,46,111,110,107,101,121,117,112,32,61,32,102,117,110,99,116,105,111,110,32,40,101,41,32,123,10,32,32,32,32,105,102,32,40,101,46,107,101,121,32,61,61,61,32,34,47,34,32,124,124,32,101,46,107,101,121,32,61,61,61,32,34,69,115,99,97,112,101,34,41,32,123,10,32,32,32,32,32,32,32,32,99,111,110,115,116,32,98,97,114,32,61,32,100,111,99,117,109,101,110,116,46,103,101,116,69,108,101,109,101,110,116,66,121,73,100,40,34,115,101,97,114,99,104,66,97,114,34,41,59,10,32,32,32,32,32,32,32,32,98,97,114,46,115,99,114,111,108,108,73,110,116,111,86,105,101,119,40,41,59,10,32,32,32,32,32,32,32,32,98,97,114,46,102,111,99,117,115,40,41,59,10,32,32,32,32,125,10,125,59,10,10,102,117,110,99,116,105,111,110,32,103,101,116,78,101,120,116,68,101,112,116,104,40,110,111,100,101,41,32,123,10,32,32,32,32,108,101,116,32,113,32,61,32,123,10,32,32,32,32,32,32,32,32,113,117,101,114,121,58,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,98,111,111,108,58,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,105,108,116,101,114,58,32,91,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,123,116,101,114,109,58,32,123,105,110,100,101,120,58,32,110,111,100,101,46,105,110,100,101,120,125,125,44,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,123,114,97,110,103,101,58,32,123,95,100,101,112,116,104,58,32,123,103,116,101,58,32,110,111,100,101,46,100,101,112,116,104,32,43,32,49,44,32,108,116,101,58,32,110,111,100,101,46,100,101,112,116,104,32,43,32,51,125,125,125,44,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,93,10,32,32,32,32,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,125,44,10,32,32,32,32,32,32,32,32,97,103,103,115,58,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,112,97,116,104,115,58,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,101,114,109,115,58,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,105,101,108,100,58,32,34,112,97,116,104,34,44,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,105,122,101,58,32,49,48,48,48,48,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,125,44,10,32,32,32,32,32,32,32,32,115,105,122,101,58,32,48,10,32,32,32,32,125,59,10,10,32,32,32,32,105,102,32,40,110,111,100,101,46,100,101,112,116,104,32,62,32,48,41,32,123,10,32,32,32,32,32,32,32,32,113,46,113,117,101,114,121,46,98,111,111,108,46,109,117,115,116,32,61,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,112,114,101,102,105,120,58,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,112,97,116,104,58,32,110,111,100,101,46,105,100,44,10,32,32,32,32,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,125,59,10,32,32,32,32,125,10,10,32,32,32,32,114,101,116,117,114,110,32,36,46,106,115,111,110,80,111,115,116,40,34,101,115,34,44,32,113,41,46,116,104,101,110,40,114,101,115,112,32,61,62,32,123,10,32,32,32,32,32,32,32,32,99,111,110,115,116,32,98,117,99,107,101,116,115,32,61,32,114,101,115,112,91,34,97,103,103,114,101,103,97,116,105,111,110,115,34,93,91,34,112,97,116,104,115,34,93,91,34,98,117,99,107,101,116,115,34,93,59,10,32,32,32,32,32,32,32,32,105,102,32,40,33,98,117,99,107,101,116,115,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,59,10,32,32,32,32,32,32,32,32,125,10,10,32,32,32,32,32,32,32,32,99,111,110,115,116,32,112,97,116,104,115,32,61,32,91,93,59,10,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,98,117,99,107,101,116,115,10,32,32,32,32,32,32,32,32,32,32,32,32,46,102,105,108,116,101,114,40,98,117,99,107,101,116,32,61,62,32,98,117,99,107,101,116,46,107,101,121,46,108,101,110,103,116,104,32,62,32,110,111,100,101,46,105,100,46,108,101,110,103,116,104,32,124,124,32,110,111,100,101,46,105,100,46,115,116,97,114,116,115,87,105,116,104,40,34,47,34,41,41,10,32,32,32,32,32,32,32,32,32,32,32,32,46,115,111,114,116,40,40,97,44,32,98,41,32,61,62,32,97,46,107,101,121,32,62,32,98,46,107,101,121,41,10,32,32,32,32,32,32,32,32,32,32,32,32,46,109,97,112,40,98,117,99,107,101,116,32,61,62,32,123,10,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,112,97,116,104,115,46,115,111,109,101,40,110,32,61,62,32,98,117,99,107,101,116,46,107,101,121,46,115,116,97,114,116,115,87,105,116,104,40,110,41,41,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,110,117,108,108,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,10,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,111,110,115,116,32,110,97,109,101,32,61,32,110,111,100,101,46,105,100,46,115,116,97,114,116,115,87,105,116,104,40,34,47,34,41,32,63,32,98,117,99,107,101,116,46,107,101,121,32,58,32,98,117,99,107,101,116,46,107,101,121,46,115,108,105,99,101,40,110,111,100,101,46,105,100,46,108,101,110,103,116,104,32,43,32,49,41,59,10,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,112,97,116,104,115,46,112,117,115,104,40,98,117,99,107,101,116,46,107,101,121,41,59,10,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,100,58,32,98,117,99,107,101,116,46,107,101,121,44,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,101,120,116,58,32,96,36,123,110,97,109,101,125,47,32,40,36,123,98,117,99,107,101,116,46,100,111,99,95,99,111,117,110,116,125,41,96,44,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,100,101,112,116,104,58,32,110,111,100,101,46,100,101,112,116,104,32,43,32,49,44,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,110,100,101,120,58,32,110,111,100,101,46,105,110,100,101,120,44,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,115,58,32,91,98,117,99,107,101,116,46,107,101,121,93,44,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,104,105,108,100,114,101,110,58,32,116,114,117,101,44,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,32,32,32,32,125,41,46,102,105,108,116,101,114,40,120,32,61,62,32,120,32,33,61,61,32,110,117,108,108,41,10,32,32,32,32,125,41,10,125,10,10,102,117,110,99,116,105,111,110,32,104,97,110,100,108,101,80,97,116,104,84,114,101,101,67,108,105,99,107,40,116,114,101,101,41,32,123,10,32,32,32,32,114,101,116,117,114,110,32,40,101,118,101,110,116,44,32,110,111,100,101,44,32,104,97,110,100,108,101,114,41,32,61,62,32,123,10,10,32,32,32,32,32,32,32,32,105,102,32,40,110,111,100,101,46,100,101,112,116,104,32,33,61,61,32,48,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,36,40,34,35,112,97,116,104,66,97,114,34,41,46,118,97,108,40,110,111,100,101,46,105,100,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,36,40,34,35,112,97,116,104,84,114,101,101,77,111,100,97,108,34,41,46,109,111,100,97,108,40,34,104,105,100,101,34,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,115,101,97,114,99,104,68,101,98,111,117,110,99,101,100,40,41,59,10,32,32,32,32,32,32,32,32,125,10,10,32,32,32,32,32,32,32,32,104,97,110,100,108,101,114,40,41,59,10,32,32,32,32,125,10,125,10,10,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,80,97,116,104,84,114,101,101,40,116,97,114,103,101,116,41,32,123,10,32,32,32,32,108,101,116,32,112,97,116,104,84,114,101,101,32,61,32,110,101,119,32,73,110,115,112,105,114,101,84,114,101,101,40,123,10,32,32,32,32,32,32,32,32,100,97,116,97,58,32,102,117,110,99,116,105,111,110,32,40,110,111,100,101,44,32,114,101,115,111,108,118,101,44,32,114,101,106,101,99,116,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,103,101,116,78,101,120,116,68,101,112,116,104,40,110,111,100,101,41,59,10,32,32,32,32,32,32,32,32,125,44,10,32,32,32,32,32,32,32,32,115,111,114,116,58,32,34,116,101,120,116,34,10,32,32,32,32,125,41,59,10,10,32,32,32,32,115,101,108,101,99,116,101,100,73,110,100,105,99,101,115,46,102,111,114,69,97,99,104,40,105,110,100,101,120,32,61,62,32,123,10,32,32,32,32,32,32,32,32,112,97,116,104,84,114,101,101,46,97,100,100,78,111,100,101,40,123,10,32,32,32,32,32,32,32,32,32,32,32,32,105,100,58,32,34,47,34,32,43,32,105,110,100,101,120,44,10,32,32,32,32,32,32,32,32,32,32,32,32,118,97,108,117,101,115,58,32,91,34,47,34,32,43,32,105,110,100,101,120,93,44,10,32,32,32,32,32,32,32,32,32,32,32,32,116,101,120,116,58,32,96,47,91,36,123,105,110,100,101,120,77,97,112,91,105,110,100,101,120,93,125,93,96,44,10,32,32,32,32,32,32,32,32,32,32,32,32,105,110,100,101,120,58,32,105,110,100,101,120,44,10,32,32,32,32,32,32,32,32,32,32,32,32,100,101,112,116,104,58,32,48,44,10,32,32,32,32,32,32,32,32,32,32,32,32,99,104,105,108,100,114,101,110,58,32,116,114,117,101,10,32,32,32,32,32,32,32,32,125,41,10,32,32,32,32,125,41,59,10,10,32,32,32,32,110,101,119,32,73,110,115,112,105,114,101,84,114,101,101,68,79,77,40,112,97,116,104,84,114,101,101,44,32,123,10,32,32,32,32,32,32,32,32,116,97,114,103,101,116,58,32,116,97,114,103,101,116,10,32,32,32,32,125,41,59,10,10,32,32,32,32,112,97,116,104,84,114,101,101,46,111,110,40,34,110,111,100,101,46,99,108,105,99,107,34,44,32,104,97,110,100,108,101,80,97,116,104,84,114,101,101,67,108,105,99,107,40,112,97,116,104,84,114,101,101,41,41,59,10,125,10,10,102,117,110,99,116,105,111,110,32,103,101,116,80,97,116,104,67,104,111,105,99,101,115,40,41,32,123,10,32,32,32,32,114,101,116,117,114,110,32,110,101,119,32,80,114,111,109,105,115,101,40,103,101,116,80,97,116,104,115,32,61,62,32,123,10,32,32,32,32,32,32,32,32,36,46,106,115,111,110,80,111,115,116,40,34,101,115,34,44,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,115,117,103,103,101,115,116,58,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,112,97,116,104,58,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,112,114,101,102,105,120,58,32,112,97,116,104,66,97,114,46,118,97,108,117,101,44,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,111,109,112,108,101,116,105,111,110,58,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,105,101,108,100,58,32,34,115,117,103,103,101,115,116,45,112,97,116,104,34,44,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,107,105,112,95,100,117,112,108,105,99,97,116,101,115,58,32,116,114,117,101,44,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,105,122,101,58,32,49,48,48,48,48,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,125,41,46,116,104,101,110,40,114,101,115,112,32,61,62,32,103,101,116,80,97,116,104,115,40,114,101,115,112,91,34,115,117,103,103,101,115,116,34,93,91,34,112,97,116,104,34,93,91,48,93,91,34,111,112,116,105,111,110,115,34,93,46,109,97,112,40,111,112,116,32,61,62,32,111,112,116,91,34,95,115,111,117,114,99,101,34,93,91,34,112,97,116,104,34,93,41,41,41,59,10,32,32,32,32,125,41,59,10,125,10,10,10,102,117,110,99,116,105,111,110,32,103,101,116,84,97,103,67,104,111,105,99,101,115,40,41,32,123,10,32,32,32,32,114,101,116,117,114,110,32,110,101,119,32,80,114,111,109,105,115,101,40,103,101,116,80,97,116,104,115,32,61,62,32,123,10,32,32,32,32,32,32,32,32,36,46,106,115,111,110,80,111,115,116,40,34,101,115,34,44,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,115,117,103,103,101,115,116,58,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,97,103,58,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,112,114,101,102,105,120,58,32,116,97,103,66,97,114,46,118,97,108,117,101,44,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,111,109,112,108,101,116,105,111,110,58,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,105,101,108,100,58,32,34,115,117,103,103,101,115,116,45,116,97,103,34,44,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,107,105,112,95,100,117,112,108,105,99,97,116,101,115,58,32,116,114,117,101,44,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,105,122,101,58,32,49,48,48,48,48,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,125,41,46,116,104,101,110,40,114,101,115,112,32,61,62,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,99,111,110,115,116,32,114,101,115,117,108,116,32,61,32,91,93,59,10,32,32,32,32,32,32,32,32,32,32,32,32,114,101,115,112,91,34,115,117,103,103,101,115,116,34,93,91,34,116,97,103,34,93,91,48,93,91,34,111,112,116,105,111,110,115,34,93,46,109,97,112,40,111,112,116,32,61,62,32,111,112,116,91,34,95,115,111,117,114,99,101,34,93,91,34,116,97,103,34,93,41,46,102,111,114,69,97,99,104,40,116,97,103,115,32,61,62,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,97,103,115,46,102,111,114,69,97,99,104,40,116,97,103,32,61,62,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,111,110,115,116,32,116,32,61,32,116,97,103,46,115,112,108,105,116,40,34,35,34,41,91,48,93,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,114,101,115,117,108,116,46,102,105,110,100,40,120,32,61,62,32,120,46,115,112,108,105,116,40,34,35,34,41,91,48,93,32,61,61,61,32,116,41,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,115,117,108,116,46,112,117,115,104,40,116,97,103,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,103,101,116,80,97,116,104,115,40,114,101,115,117,108,116,41,59,10,32,32,32,32,32,32,32,32,125,41,59,10,32,32,32,32,125,41,59,10,125,10}; char sprite_skin_flat_png[669] = {137,80,78,71,13,10,26,10,0,0,0,13,73,72,68,82,0,0,1,4,0,0,0,180,8,6,0,0,0,114,181,82,203,0,0,0,6,98,75,71,68,0,255,0,255,0,255,160,189,167,147,0,0,0,9,112,72,89,115,0,0,11,19,0,0,11,19,1,0,154,156,24,0,0,0,7,116,73,77,69,7,226,4,15,15,9,24,243,73,194,157,0,0,2,42,73,68,65,84,120,218,237,221,33,110,219,96,0,134,225,207,150,193,72,122,129,144,154,180,42,24,154,194,10,2,42,85,161,61,198,110,144,19,236,6,225,61,192,66,75,2,10,202,166,33,3,171,33,105,164,20,4,46,33,3,147,92,18,21,85,37,147,186,104,126,30,26,96,233,3,175,126,89,138,255,98,189,217,118,1,72,82,154,0,16,4,64,16,0,65,0,4,1,16,4,64,16,0,65,0,4,1,16,4,64,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,146,34,73,158,239,238,207,254,124,190,248,150,228,42,201,137,89,160,55,118,73,22,85,211,78,135,147,241,178,56,196,224,135,16,64,191,195,80,53,237,168,88,111,182,223,147,220,216,3,122,111,94,172,55,219,95,78,7,64,146,93,41,6,192,193,137,123,25,128,87,130,0,8,2,240,118,16,118,102,0,114,120,169,184,176,3,144,100,81,86,77,59,117,74,0,167,131,170,105,167,229,112,50,94,86,77,59,74,50,23,6,232,95,8,146,204,171,166,29,13,39,227,165,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,128,227,87,212,179,125,103,6,32,113,47,3,32,8,128,32,0,130,0,8,2,32,8,128,32,0,130,0,8,2,32,8,128,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,73,138,36,121,190,187,63,187,92,125,121,252,200,7,175,190,14,10,243,195,113,41,255,69,12,128,35,13,130,24,0,175,65,48,1,32,8,128,32,0,130,0,8,2,32,8,128,32,0,127,25,132,135,250,231,185,25,128,36,41,135,147,241,82,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,128,255,64,61,219,119,245,108,223,89,2,250,161,122,239,199,223,79,43,11,65,143,248,12,59,32,8,128,32,0,130,0,8,2,32,8,128,32,0,130,0,8,2,32,8,128,32,0,130,0,8,2,32,8,128,32,0,71,226,221,239,33,124,58,173,45,4,0,0,0,0,0,0,0,0,0,0,0,0,124,188,193,245,109,55,184,190,117,251,51,244,132,191,63,3,130,0,8,2,32,8,128,32,0,130,0,8,2,32,8,128,32,0,130,0,8,2,32,8,128,32,0,130,0,8,2,32,8,128,32,0,0,0,0,0,0,0,0,0,0,0,0,0,36,121,1,4,9,83,90,112,63,72,221,0,0,0,0,73,69,78,68,174,66,96,130}; char sprite_skin_flat_dark_png[595] = {137,80,78,71,13,10,26,10,0,0,0,13,73,72,68,82,0,0,1,4,0,0,0,180,8,6,0,0,0,114,181,82,203,0,0,0,6,98,75,71,68,0,0,0,0,0,0,249,67,187,127,0,0,0,9,112,72,89,115,0,0,11,19,0,0,11,19,1,0,154,156,24,0,0,0,7,116,73,77,69,7,227,10,31,0,56,13,119,224,92,162,0,0,1,224,73,68,65,84,120,218,237,221,33,110,194,96,0,134,225,239,111,54,137,155,33,120,106,230,177,136,133,6,69,178,147,192,73,182,43,112,1,44,201,130,224,16,24,240,4,179,27,44,89,167,134,156,33,97,108,125,30,91,209,228,19,175,106,255,191,140,154,89,27,128,36,149,9,0,65,0,4,1,16,4,64,16,0,65,0,4,1,16,4,64,16,0,65,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,41,73,114,92,111,135,207,175,47,123,115,64,55,173,230,139,122,48,29,31,138,24,0,223,81,40,163,102,214,154,2,72,156,186,12,8,2,32,8,128,32,0,130,0,8,2,32,8,192,229,65,88,205,23,181,25,128,213,124,81,251,116,25,56,127,186,108,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,224,246,149,108,118,238,118,4,146,56,117,25,16,4,64,16,0,65,0,4,1,16,4,64,16,0,65,0,4,1,16,4,64,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,146,36,37,73,142,235,237,112,112,255,176,191,234,155,159,30,139,249,225,182,84,191,18,3,224,54,131,32,6,192,57,8,38,0,4,1,16,4,64,16,0,65,0,4,1,16,4,224,194,32,28,63,222,107,51,0,73,82,13,166,227,131,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,193,102,215,102,179,107,13,1,221,112,247,211,195,254,219,103,146,228,100,39,232,4,199,176,3,130,0,8,2,32,8,128,32,0,130,0,8,2,32,8,128,32,0,130,0,8,2,32,8,128,32,0,130,0,8,2,240,23,130,112,154,84,57,77,52,3,0,0,0,0,0,0,0,0,0,0,0,0,184,178,94,179,108,123,205,210,237,207,208,17,126,101,4,4,1,16,4,64,16,0,65,0,4,1,16,4,64,16,0,65,0,4,1,16,4,64,16,0,65,0,4,1,16,4,64,16,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,72,242,5,81,103,62,209,158,129,108,239,0,0,0,0,73,69,78,68,174,66,96,130}; diff --git a/third-party/libscan b/third-party/libscan index 0e4906b..baf39a8 160000 --- a/third-party/libscan +++ b/third-party/libscan @@ -1 +1 @@ -Subproject commit 0e4906bc405ebe112b55b7ca5720b923b4cbd681 +Subproject commit baf39a8b1ac7521ecdd79b274980d07c82c329fc