From 34e1cabc53a2704d537b1b559442dc7dcc603d6c Mon Sep 17 00:00:00 2001 From: Your Name Date: Wed, 9 Apr 2025 22:53:12 +0800 Subject: [PATCH 01/19] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E8=87=AA=E5=AE=9A?= =?UTF-8?q?=E4=B9=89=E5=90=8D=E7=A7=B0=E8=BF=87=E9=95=BF=E5=8F=AF=E8=83=BD?= =?UTF-8?q?=E5=AF=BC=E8=87=B4=E7=B3=BB=E7=BB=9F=E5=B4=A9=E6=BA=83=E7=9A=84?= =?UTF-8?q?=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- TC1/http_server/app_httpd.c | 2 +- TC1/mqtt_server/user_mqtt_client.c | 3 ++- TC1/mqtt_server/user_mqtt_client.h | 4 ++-- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/TC1/http_server/app_httpd.c b/TC1/http_server/app_httpd.c index 580be64..9d56cc9 100644 --- a/TC1/http_server/app_httpd.c +++ b/TC1/http_server/app_httpd.c @@ -52,7 +52,7 @@ static bool is_http_init; static bool is_handlers_registered; const struct httpd_wsgi_call g_app_handlers[]; -char power_info_json[1952] = {0}; +char power_info_json[2560] = {0}; char up_time[16] = "00:00:00"; /* diff --git a/TC1/mqtt_server/user_mqtt_client.c b/TC1/mqtt_server/user_mqtt_client.c index 6648802..00db224 100644 --- a/TC1/mqtt_server/user_mqtt_client.c +++ b/TC1/mqtt_server/user_mqtt_client.c @@ -530,7 +530,7 @@ void UserMqttHassAuto(char socket_id) { socket_id--; char *send_buf = NULL; char *topic_buf = NULL; - send_buf = (char *) malloc(600); + send_buf = (char *) malloc(800); topic_buf = (char *) malloc(64); if (send_buf != NULL && topic_buf != NULL) { sprintf(topic_buf, "homeassistant/switch/%s/socket_%d/config", str_mac, socket_id); @@ -691,6 +691,7 @@ void UserMqttHassAutoPower(void) { "\"object_id\":\"tc1_%s_sut\"," "\"state_topic\":\"homeassistant/sensor/%s/startupTime/state\"," "\"icon\":\"mdi:clock-time-three-outline\"," + "\"entity_category\":\"diagnostic\"," "\"value_template\":\"{{ value_json.startupTime }}\",""\"device\":{" "\"identifiers\":[\"tc1_%s\"]," "\"name\":\"%s\"," diff --git a/TC1/mqtt_server/user_mqtt_client.h b/TC1/mqtt_server/user_mqtt_client.h index f6e4fa6..29ade30 100644 --- a/TC1/mqtt_server/user_mqtt_client.h +++ b/TC1/mqtt_server/user_mqtt_client.h @@ -10,8 +10,8 @@ #define MQTT_CMD_TIMEOUT 5000 // 5s #define MQTT_YIELD_TMIE 5000 // 5s -#define MAX_MQTT_TOPIC_SIZE (256) -#define MAX_MQTT_DATA_SIZE (1024) +#define MAX_MQTT_TOPIC_SIZE (512) +#define MAX_MQTT_DATA_SIZE (2048) #define MAX_MQTT_SEND_QUEUE_SIZE (10) #define MQTT_SERVER user_config->mqtt_ip From 5623b632c73b947ff36bf7a9dfa6379f7b78a63f Mon Sep 17 00:00:00 2001 From: Your Name Date: Sat, 12 Apr 2025 16:03:34 +0800 Subject: [PATCH 02/19] =?UTF-8?q?=E4=BF=AE=E5=A4=8Dota=E5=8F=AF=E8=83=BD?= =?UTF-8?q?=E6=97=A0=E6=B3=95=E4=BD=BF=E7=94=A8=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- TC1/http_server/app_httpd.c | 14 +- TC1/http_server/web/index.html | 3 +- TC1/http_server/web_data.c | 227 +++++++++++++++-------------- TC1/mqtt_server/user_mqtt_client.c | 36 ++++- TC1/mqtt_server/user_mqtt_client.h | 2 + TC1/ota_server/ota_server.c | 2 +- 6 files changed, 155 insertions(+), 129 deletions(-) diff --git a/TC1/http_server/app_httpd.c b/TC1/http_server/app_httpd.c index 9d56cc9..b79c56a 100644 --- a/TC1/http_server/app_httpd.c +++ b/TC1/http_server/app_httpd.c @@ -103,17 +103,6 @@ static int HttpGetIndexPage(httpd_request_t *req) { return err; } -static int HttpGetDemoPage(httpd_request_t *req) { - OSStatus err = kNoErr; - err = httpd_send_all_header(req, HTTP_RES_200, sizeof(web_index_html), HTTP_CONTENT_HTML_ZIP); - require_noerr_action(err, exit, http_log("ERROR: Unable to send http demo headers.")); - - err = httpd_send_body(req->sock, web_index_html, sizeof(web_index_html)); - require_noerr_action(err, exit, http_log("ERROR: Unable to send http demo body.")); - exit: - return err; -} - static int HttpGetAssets(httpd_request_t *req) { OSStatus err = kNoErr; @@ -150,7 +139,7 @@ static int HttpGetAssets(httpd_request_t *req) { static int HttpGetTc1Status(httpd_request_t *req) { char *sockets = GetSocketStatus(); char *short_click_config = GetButtonClickConfig(); - char *tc1_status = malloc(1024); + char *tc1_status = malloc(1500); char *socket_names = malloc(512); sprintf(socket_names, "%s,%s,%s,%s,%s,%s", user_config->socket_names[0], @@ -608,7 +597,6 @@ static int OtaStart(httpd_request_t *req) { const struct httpd_wsgi_call g_app_handlers[] = { {"/", HTTPD_HDR_DEFORT, 0, HttpGetIndexPage, NULL, NULL, NULL}, - {"/demo", HTTPD_HDR_DEFORT, 0, HttpGetDemoPage, NULL, NULL, NULL}, {"/assets", HTTPD_HDR_ADD_SERVER | HTTPD_HDR_ADD_CONN_CLOSE, APP_HTTP_FLAGS_NO_EXACT_MATCH, HttpGetAssets, NULL, NULL, NULL}, {"/socket", HTTPD_HDR_DEFORT, 0, NULL, HttpSetSocketStatus, NULL, NULL}, diff --git a/TC1/http_server/web/index.html b/TC1/http_server/web/index.html index abd1969..0a50590 100644 --- a/TC1/http_server/web/index.html +++ b/TC1/http_server/web/index.html @@ -1305,7 +1305,7 @@ componentHandler.upgradeDom(); switch_lables[i+3].MaterialSwitch.off(); } } - window.setTimeout(GetPowerRecord, 3000); + window.powerTimeout= window.setTimeout(GetPowerRecord, 3000); }, power_idx.toString()); } $(document).ready(function(){ @@ -1485,6 +1485,7 @@ HttpPost("/shortClickEvent", function (re) { var protocol = window.location.protocol; var baseUrl = protocol+"//"+window.location.host; +clearTimeout(window.powerTimeout); HttpPost("/ota", function (re) { OtaStatus(); }, ota_url); diff --git a/TC1/http_server/web_data.c b/TC1/http_server/web_data.c index d0a3021..43f4a88 100644 --- a/TC1/http_server/web_data.c +++ b/TC1/http_server/web_data.c @@ -1,5 +1,5 @@ const unsigned char js_pack[0xd2be] = { -0x1f,0x8b,0x08,0x00,0x3b,0x32,0xe0,0x67,0x02,0xff,0xd4,0xbd,0xfb,0x72,0xdb,0x46, +0x1f,0x8b,0x08,0x00,0xb9,0xf8,0xf9,0x67,0x02,0xff,0xd4,0xbd,0xfb,0x72,0xdb,0x46, 0xd2,0x38,0xfa,0xff,0x56,0xed,0x3b,0x88,0x48,0x96,0x01,0xc4,0x21,0x45,0xca,0xb1, 0x13,0x83,0x1e,0xb1,0x1c,0xdb,0x49,0xbc,0x5f,0x9c,0x64,0xe3,0x5c,0x97,0x62,0x52, 0xb8,0x92,0xa0,0x48,0x82,0xe2,0xc5,0x12,0x23,0x72,0xdf,0xe7,0xf7,0x1a,0xe7,0xc9, @@ -3372,7 +3372,7 @@ const unsigned char js_pack[0xd2be] = { 0x02,0x0f,0xb7,0x98,0x0c,0x59,0x7f,0x97,0xf2,0x25,0x55,0x7c,0x45,0xad,0x25,0x8e, 0x0f,0x58,0x4f,0xcc,0x9f,0x00,0x32,0xd2,0xf4,0xa5,0xf0,0xee,0x02,0x00}; const unsigned char css_pack[0x6217] = { -0x1f,0x8b,0x08,0x00,0x3b,0x32,0xe0,0x67,0x02,0xff,0xed,0xbd,0x79,0x73,0xdb,0xc8, +0x1f,0x8b,0x08,0x00,0xb9,0xf8,0xf9,0x67,0x02,0xff,0xed,0xbd,0x79,0x73,0xdb,0xc8, 0xf5,0x28,0xfa,0x7f,0xaa,0xf2,0x1d,0x70,0x9d,0x9a,0x1a,0x6b,0x42,0xc8,0xd8,0x49, 0x4a,0x95,0x54,0xbc,0x8f,0x26,0x96,0x9c,0x78,0x19,0x8f,0x9d,0x5f,0x9e,0x0b,0x04, 0x9a,0x24,0x24,0x90,0x60,0x00,0x50,0x1b,0x4b,0xb7,0xee,0x07,0xb9,0xef,0xcb,0xbd, @@ -4942,8 +4942,8 @@ const unsigned char css_pack[0x6217] = { 0x34,0x4a,0x61,0x0f,0x9e,0x4c,0x71,0xf7,0x2d,0x84,0xeb,0x52,0x24,0xf6,0xd5,0x25, 0xe6,0x54,0x09,0x49,0xbc,0xd0,0xc2,0x1c,0x55,0x23,0x76,0x55,0x21,0xff,0x3f,0x3f, 0xef,0x85,0xce,0x3d,0xbc,0x02,0x00}; -const unsigned char web_index_html[0x3465] = { -0x1f,0x8b,0x08,0x00,0x3b,0x32,0xe0,0x67,0x02,0xff,0xed,0x7d,0x6d,0x93,0xdb,0xc6, +const unsigned char web_index_html[0x3477] = { +0x1f,0x8b,0x08,0x00,0xb9,0xf8,0xf9,0x67,0x02,0xff,0xed,0x7d,0x6d,0x93,0xdb,0xc6, 0x91,0xf0,0xf7,0xab,0xca,0x7f,0x18,0xc3,0xaa,0x90,0xbc,0x25,0x40,0x02,0x7c,0x59, 0x72,0xdf,0x52,0xca,0xda,0xc9,0xfa,0xb9,0x95,0xe5,0xcb,0xea,0x94,0xe7,0x4e,0x71, 0xd1,0x58,0x02,0xbb,0x84,0x05,0x12,0x34,0x00,0xee,0x6a,0x6d,0xab,0x4a,0x4a,0xce, @@ -5673,112 +5673,113 @@ const unsigned char web_index_html[0x3465] = { 0x88,0x99,0x00,0x71,0x65,0x3a,0x88,0x2b,0x7b,0x43,0x7c,0x68,0xe7,0x06,0xc3,0x7f, 0xc4,0xc6,0x8d,0xe8,0xd6,0x0d,0x3e,0x7b,0xea,0xce,0x8d,0x7d,0xdb,0xbb,0x31,0x7a, 0xf7,0x06,0xc3,0x2d,0x69,0xf3,0xc6,0xd0,0xf6,0x8d,0x78,0x56,0x2e,0xe7,0x1d,0xef, -0xdf,0xb8,0xf3,0x9d,0x07,0x07,0x3b,0x3f,0xa6,0xb1,0xf3,0xe3,0x7e,0xdc,0xbf,0x31, -0xd2,0x1f,0xc5,0x99,0xb6,0x79,0x52,0x8a,0x3a,0xa4,0xf2,0xa1,0xad,0x09,0xca,0x67, -0xcd,0xb5,0x8d,0xce,0x66,0x18,0x49,0x70,0x7a,0xfc,0x91,0x1b,0x41,0x53,0xe2,0x36, -0x74,0x30,0x15,0x8a,0xcd,0x7a,0xa2,0x33,0x21,0xee,0xac,0xa0,0xf8,0x2a,0x21,0x8d, -0xa8,0xda,0xd6,0xf5,0x93,0x1a,0x0d,0xf4,0x1f,0xbb,0x52,0x88,0x7c,0x8b,0xf9,0xc8, -0x79,0x10,0xde,0x6a,0x9f,0xb7,0xf0,0xf6,0xd0,0xb0,0xff,0x3a,0xa8,0x93,0xed,0x5e, -0x4e,0x5f,0xb0,0x49,0xde,0x7b,0x92,0x56,0x34,0xba,0x06,0x75,0x3a,0x36,0x41,0xe4, -0xa7,0x20,0x5c,0xc4,0x71,0xd2,0x2a,0x87,0xcb,0xce,0x58,0x4a,0x9d,0x7e,0x44,0x23, -0x8d,0x23,0x71,0x79,0x2c,0x14,0x18,0x83,0x00,0x7f,0xc6,0xcb,0x10,0x8d,0x1f,0xf6, -0x3f,0x96,0xd7,0x4a,0x78,0x47,0xbb,0x60,0xf2,0x3b,0x76,0x50,0x4d,0xca,0xbb,0x2f, -0x3e,0xd8,0x7d,0xf9,0x6a,0x0a,0xcc,0x30,0x5e,0x39,0x1a,0x39,0x68,0x2f,0xf9,0x21, -0xcb,0x11,0xcc,0x83,0x80,0xc2,0xc0,0x88,0xb5,0x3a,0x8e,0x65,0xea,0x92,0x69,0x6d, -0xc6,0x66,0x4d,0x94,0x00,0x40,0x24,0x67,0xd4,0xd4,0x0a,0xa5,0x84,0x66,0xf2,0x4d, -0xe6,0x3b,0x8e,0x9c,0xe4,0x65,0x77,0x6c,0xc0,0x64,0xd2,0x68,0xc0,0xa3,0x91,0x34, -0x10,0xf0,0x68,0xc4,0xe8,0x18,0x63,0x24,0x8b,0x35,0x45,0x0f,0x07,0x85,0x89,0xc3, -0x46,0xd7,0x66,0xdf,0x77,0x46,0xdf,0x07,0xc5,0x2e,0xa5,0x40,0x2c,0x4a,0x36,0x28, -0x1f,0x84,0xcb,0x8e,0xd9,0x2e,0x30,0x0e,0x7e,0x36,0x3b,0x0c,0x72,0x71,0x51,0x96, -0x9f,0x7f,0x7e,0x38,0x7d,0xa1,0x96,0xfb,0x01,0x97,0x9d,0x99,0x3f,0x3f,0x10,0x40, -0xd4,0x84,0x39,0x3c,0x7e,0x4b,0xc8,0xcd,0x09,0xa2,0x30,0xb6,0x4a,0x98,0xf4,0xaf, -0x5a,0x56,0x17,0x07,0xad,0x10,0x9a,0xa7,0x05,0x46,0x16,0x4e,0x0a,0xd6,0x7d,0x44, -0x37,0xc3,0x7e,0x19,0xa1,0x30,0x0d,0xd9,0x75,0xd5,0x76,0x17,0x41,0x26,0xc4,0xed, -0x46,0x59,0x36,0x42,0x36,0xc6,0xc6,0xd2,0x8e,0x0d,0x10,0x41,0x54,0xb4,0x06,0xd5, -0x40,0x23,0x62,0x69,0xc7,0x9c,0xb7,0xc3,0x93,0xcd,0xf0,0xf5,0x3a,0x1b,0x9a,0xc2, -0xe7,0xa6,0x0a,0x9a,0xaf,0x38,0xc7,0x47,0xfe,0x90,0xcc,0xcd,0x4f,0x2f,0xb2,0x2e, -0x9f,0x99,0xe7,0x72,0xc9,0xb1,0x5c,0x83,0xab,0x97,0xfa,0xaf,0xbc,0x7f,0xf3,0xd3, -0x33,0x91,0x5c,0x4a,0x72,0xae,0x6b,0x2f,0x45,0x72,0x95,0x52,0x60,0x9d,0x8f,0xe4, -0x2a,0x27,0xe6,0xea,0xbf,0xf1,0x46,0x24,0x57,0x25,0xa5,0xc6,0xd7,0x22,0xb9,0xaa, -0xc9,0xb0,0x5e,0xf8,0x30,0x92,0x6b,0x36,0x31,0xd7,0xe0,0xca,0xbb,0x19,0x5e,0x63, -0x61,0xce,0x5a,0x42,0xce,0x77,0xfe,0x90,0x89,0xf2,0x22,0xe2,0xd8,0x0e,0x06,0x94, -0x51,0x0e,0x2d,0x6e,0xd4,0x99,0x8f,0x15,0xa5,0xbd,0x7f,0x5c,0x51,0x36,0x95,0x0f, -0xbc,0x95,0x01,0x38,0x3f,0x3e,0x85,0x08,0xf4,0x83,0x91,0xf8,0x55,0x86,0xc0,0xd8, -0xf4,0xb2,0x61,0xd1,0x30,0x9b,0x5c,0x9c,0xc3,0x63,0x83,0x8a,0x7e,0xa6,0x61,0x48, -0x63,0x0f,0x02,0xe1,0x4b,0x46,0x80,0x27,0x96,0xf4,0x0f,0x30,0x12,0x86,0x86,0xd2, -0xc3,0x9a,0x96,0x38,0x94,0x7a,0x27,0x96,0x61,0x9f,0x88,0x22,0x17,0x71,0x98,0x43, -0xcd,0x7e,0x8e,0x10,0x89,0x48,0x0e,0xe6,0x97,0x1b,0x4d,0x57,0xe7,0xa4,0x8b,0x36, -0x15,0xf3,0xb0,0xc7,0xca,0x13,0xd4,0x6c,0x63,0xca,0xb3,0x8d,0xb5,0xcc,0xf4,0x8f, -0x06,0x28,0x9d,0x4c,0x88,0x05,0x48,0xb5,0x73,0x38,0x7f,0x0c,0xba,0x90,0x7c,0x91, -0x50,0xe9,0x4a,0xdb,0x31,0xaa,0xce,0x8c,0x36,0x35,0x94,0x43,0x46,0x1c,0x5b,0x59, -0x61,0x94,0x8d,0x38,0xd7,0xfd,0xe1,0x64,0x91,0x1d,0x2a,0x64,0x5b,0xbd,0x8e,0x16, -0xf2,0xc5,0x07,0xee,0xbb,0x27,0xf8,0x50,0x54,0xae,0x28,0x37,0x28,0xd1,0xb1,0xf9, -0xb1,0x8e,0x8b,0x6b,0x5e,0x61,0x6e,0x4a,0x19,0xb8,0x70,0x51,0x66,0xd1,0x80,0xab, -0xb6,0x16,0x05,0xc3,0xfc,0xfa,0xcc,0x3b,0xca,0xee,0xa1,0xb4,0x7f,0x0b,0xb4,0x4a, -0x0e,0x36,0x1c,0x67,0x4a,0x71,0xb1,0x22,0xc3,0x11,0x31,0x6c,0x71,0x22,0x6a,0x55, -0x8c,0x5e,0x25,0x4e,0xdc,0x4d,0xc6,0x42,0xec,0xda,0x5a,0x64,0x49,0x78,0x8c,0xa5, -0x7d,0x28,0x9b,0xe9,0x99,0x27,0xe8,0x27,0x31,0xd9,0x61,0x2e,0xec,0x03,0xf4,0x4f, -0xb2,0xe3,0x5e,0xf8,0xfd,0x75,0x68,0x2e,0x67,0xe8,0x32,0x54,0x26,0x1f,0x07,0xf1, -0x30,0x57,0x36,0x43,0x83,0x61,0x37,0x37,0x75,0x98,0xcb,0x31,0xeb,0x9a,0x4e,0xe2, -0x4e,0x07,0x97,0x60,0x0f,0x60,0xa4,0x0c,0x85,0xce,0xb2,0x0f,0x1b,0xe3,0xc1,0x76, -0x1f,0x2e,0x7c,0x3e,0x5c,0x67,0x42,0x60,0x6c,0xf7,0x07,0x1d,0x40,0x1b,0x5d,0xfc, -0xf2,0x23,0xbd,0x67,0x9f,0xfc,0xcc,0x78,0xb3,0xf0,0x20,0x40,0x2e,0x53,0xcc,0xfc, -0x00,0x77,0x44,0xf5,0xcf,0x5d,0x1f,0xfc,0x09,0x1d,0xb9,0x99,0xb9,0x8c,0xf7,0xb9, -0xe2,0xf7,0x5e,0xc5,0x47,0x0e,0xd7,0x43,0x43,0x87,0x01,0x46,0xf6,0x78,0xca,0xd4, -0xf0,0x5a,0x84,0x49,0xd0,0xf0,0x8e,0xce,0x14,0x9c,0xbe,0x99,0x0d,0x8f,0x46,0x7c, -0x83,0xe3,0xa4,0x21,0x0f,0xde,0x9a,0x31,0x3f,0xa8,0x47,0x76,0x26,0xa2,0x08,0x84, -0x53,0x8a,0x75,0xee,0x55,0x52,0x7f,0x48,0xde,0x30,0x19,0xb5,0xad,0x79,0x9f,0x2f, -0x13,0x1b,0xef,0x39,0x80,0x06,0x44,0xe1,0x37,0x3b,0x79,0x90,0x39,0x97,0x85,0xd5, -0xd9,0x7c,0xc2,0x66,0x6b,0xad,0xa9,0x5a,0x91,0x97,0xf7,0x24,0xa5,0x4a,0xb7,0x12, -0x8d,0x02,0xe0,0x6d,0x60,0x4d,0x05,0xc0,0x38,0x6f,0xd9,0x8d,0x70,0xe9,0x3e,0xfd, -0xb4,0xa9,0x44,0x59,0xe1,0xc0,0xe2,0xc6,0xac,0xec,0x43,0x14,0xa7,0xe7,0x9f,0x7f, -0x28,0x0e,0x1a,0x99,0xc0,0xc5,0x58,0xdf,0xba,0xfa,0x09,0x3b,0x6e,0xf2,0xf6,0x99, -0xf3,0xb7,0xdf,0xfe,0x8c,0xf2,0x31,0x50,0x27,0x49,0x5b,0x73,0xc6,0xb1,0x6d,0x82, -0xc0,0x3e,0x3e,0xc4,0xfb,0x93,0xff,0x1d,0x7c,0x02,0x93,0x98,0xb7,0xd8,0x0e,0xb0, -0x9b,0xd7,0xfe,0xfd,0xe6,0xf5,0x8f,0x23,0x5e,0xb8,0x21,0x21,0x4a,0x0c,0xe1,0xa3, -0x3b,0x95,0xe3,0x4d,0x3d,0x4d,0x0e,0x3d,0x47,0xc9,0x80,0x37,0x01,0xa3,0x87,0xb6, -0xc3,0x07,0x4d,0x18,0xde,0x1b,0x37,0xc4,0x97,0x7c,0x00,0xc6,0x37,0x4a,0xf7,0x93, -0x34,0xcc,0xa8,0xdf,0x1f,0xd2,0x88,0x72,0x2a,0x51,0x02,0xc4,0x59,0xdf,0x3e,0xea, -0x4f,0x91,0xb2,0x74,0xfb,0xad,0xb7,0xed,0x22,0x1f,0xee,0x8d,0x44,0xab,0x9d,0xb6, -0x82,0xc5,0x0d,0x82,0xcd,0x8e,0xe3,0xa4,0x3f,0xc6,0xd2,0x42,0x9e,0x87,0x35,0x23, -0x66,0x72,0xb8,0xdf,0x72,0x9e,0x6d,0x1e,0xf4,0xf6,0x01,0x01,0x21,0xc4,0xd0,0xd3, -0x9c,0x26,0xf8,0xd0,0x0a,0x0a,0xea,0xb4,0x48,0xad,0x8f,0xa7,0x72,0x81,0x89,0xc6, -0x6d,0xbd,0x9c,0x9f,0x14,0x06,0x2d,0xcb,0xc1,0x10,0x65,0xa6,0xed,0x38,0xf7,0xca, -0xde,0x11,0x89,0x50,0x64,0x7e,0x32,0x18,0x71,0x44,0x28,0x4d,0x7c,0xcd,0xcb,0x47, -0xfe,0xe3,0xd6,0x45,0xba,0x49,0x9c,0x72,0x7b,0xb2,0x40,0x01,0x14,0x22,0x46,0x19, -0xb6,0xe7,0x6c,0x48,0x88,0x98,0x74,0x50,0x9e,0x61,0x27,0xa1,0x95,0x33,0x59,0x18, -0x0e,0x86,0x8d,0xcc,0x46,0x83,0x09,0x68,0xcc,0x5d,0x84,0x47,0x8f,0x32,0x1b,0xa7, -0x20,0xcc,0x04,0x99,0x26,0x43,0xf6,0x11,0xda,0xff,0xa8,0x32,0xd4,0xa8,0x11,0x4c, -0x8e,0xfe,0xc3,0x43,0x11,0x89,0x4f,0x37,0x66,0x42,0x7c,0x86,0xce,0xf0,0xe5,0xdd, -0x7c,0x11,0x07,0xe0,0xd1,0x63,0x87,0x13,0x4f,0xd3,0x0d,0xbf,0x8a,0x1d,0x3b,0x0a, -0x94,0x7d,0x09,0x7c,0x94,0x72,0xf6,0x3f,0x16,0x9e,0xa4,0xe4,0xe9,0xb9,0xa3,0xf8, -0x35,0xe8,0x20,0x06,0xd0,0xb4,0x9a,0x54,0x5c,0x24,0xff,0x55,0x24,0xff,0x3a,0x4c, -0xdd,0xfe,0x89,0x56,0xe7,0xbf,0x9e,0x11,0x0a,0x40,0xd5,0x78,0xe1,0x16,0x08,0x48, -0xb2,0xa9,0x09,0xd8,0x8c,0x92,0x13,0xd6,0x4e,0xb7,0xe7,0x44,0x49,0xe9,0xb5,0x21, -0xe1,0xe8,0xe8,0xf0,0x93,0xda,0xa3,0x4e,0x76,0x0e,0x73,0x05,0x3e,0xf9,0x30,0x69, -0x78,0xdb,0x08,0xb5,0x56,0x82,0xad,0xb6,0xde,0x16,0x5b,0x2d,0x93,0xec,0x67,0xa5, -0xdb,0x5b,0x7d,0xff,0xf4,0x13,0xde,0xa7,0xbb,0xd1,0xe5,0xec,0xdf,0x67,0x8b,0x43, -0x71,0x30,0x31,0xbe,0xd2,0xf6,0x46,0x19,0x7b,0x0f,0x39,0xc3,0x6c,0x9f,0x31,0x8c, -0xa1,0x38,0xe9,0x76,0x93,0x59,0x15,0xa1,0x26,0x8d,0x98,0xfd,0x85,0x42,0xd4,0x1b, -0xc9,0x05,0x1a,0x85,0xf9,0xf9,0x02,0x1c,0x13,0x46,0x52,0xd0,0xab,0x79,0x68,0x2d, -0xd6,0x43,0x68,0x61,0xc8,0x65,0x19,0xb4,0xd7,0xd6,0xf1,0x43,0x74,0xd9,0xdc,0xa4, -0xf1,0xaa,0x01,0x43,0x46,0xc5,0xaa,0x86,0x7d,0x35,0xd2,0x79,0xd9,0xe1,0xf9,0x43, -0x47,0xde,0xb1,0xaf,0x87,0x8f,0x3c,0xf0,0xce,0xfb,0xc0,0x38,0xef,0xb3,0x80,0xe7, -0x06,0x7e,0x1e,0x3a,0xb1,0x58,0xf4,0x6c,0x3a,0xef,0x0b,0xe7,0xfc,0x06,0x9b,0xc8, -0x76,0x01,0xef,0x43,0xe1,0x49,0x4e,0x74,0xd3,0x1a,0x19,0xdf,0xe5,0x21,0x16,0x71, -0xa0,0xd9,0xfc,0xaa,0x9e,0x87,0x65,0x18,0x40,0x51,0xcc,0xc7,0xd2,0x56,0x74,0x63, -0xb3,0xe5,0xa6,0xd3,0x91,0xff,0x92,0x79,0x8c,0x90,0x11,0xe2,0xde,0xfc,0xf4,0x42, -0xff,0xad,0xff,0xb9,0xfd,0xd6,0xf5,0xdd,0x97,0xcf,0x0d,0xb7,0x91,0x0b,0x1a,0x4d, -0x6c,0x27,0x8d,0x89,0x65,0x27,0x38,0x15,0x68,0xe0,0xe9,0xc8,0x73,0xfa,0xf8,0xd3, -0x9f,0x52,0x99,0xc6,0x05,0xb1,0x86,0x04,0x09,0x12,0xd3,0x48,0x96,0xd0,0x7c,0x1e, -0xf7,0xf9,0x84,0xf3,0x54,0xf0,0xeb,0x9c,0xc1,0xc2,0x12,0xdd,0xc7,0xb0,0x48,0x23, -0xf3,0xec,0x76,0x56,0xd8,0x7d,0xfb,0x23,0x18,0x4c,0x6e,0xfd,0xfe,0x2c,0x3b,0xf2, -0xa8,0x7f,0xf9,0xca,0xd7,0x37,0xc2,0xe3,0x89,0xa8,0x55,0xb7,0xb8,0x88,0xab,0x35, -0xde,0x04,0x8a,0xe7,0x2d,0xd6,0x8c,0xb0,0xd9,0xb7,0x20,0xb2,0xb9,0x14,0xdf,0x1b, -0x67,0x7a,0xc5,0x0a,0x24,0x86,0x85,0x79,0x5f,0x13,0x9d,0xd8,0x16,0x60,0x88,0x47, -0xc7,0x7f,0x01,0x7a,0x9e,0x90,0xbe,0x05,0x26,0x39,0x48,0x98,0xdb,0x38,0xfa,0x90, -0x97,0xf6,0xfc,0xf3,0xde,0xcd,0xe2,0x62,0x31,0x5c,0x99,0xf3,0xd3,0xe4,0xf8,0x1e, -0xcd,0x78,0x0c,0xf5,0x44,0xf2,0x92,0x6c,0xdb,0x80,0xb4,0x0e,0x2e,0xbc,0x7b,0xfb, -0x77,0xaf,0x80,0xb4,0x46,0xce,0x80,0xc2,0x63,0x02,0x3c,0x84,0xc3,0xea,0xf9,0x8f, -0x9d,0x14,0xbc,0xb3,0x69,0x16,0x0a,0xe8,0xa6,0x86,0x9b,0xff,0x0f,0x2f,0x54,0x56, -0x8a,0x5c,0x10,0x01,0x00}; +0xdf,0xb8,0xf3,0x9d,0x07,0x07,0x3b,0x3f,0xa6,0xb1,0xf3,0xe3,0x7e,0xdc,0xbf,0x11, +0xf1,0x46,0x51,0xa1,0xf4,0xfc,0x51,0x8b,0x29,0x3e,0x2a,0xce,0xdc,0xcd,0x93,0x52, +0xd4,0x49,0x95,0x0f,0xed,0x4f,0x50,0x48,0x6b,0xae,0x6d,0x74,0x36,0xc3,0xe8,0x82, +0xd3,0xe3,0x8f,0xe1,0x08,0x9a,0x17,0xb7,0xab,0x83,0xe9,0x51,0x6c,0x26,0x14,0x9d, +0x1d,0x71,0xe7,0x07,0xc5,0x57,0x0e,0x69,0x94,0xd5,0xb6,0xae,0x9f,0xd4,0x68,0xf0, +0xff,0xd8,0xd5,0x43,0xe4,0x65,0xcc,0x6f,0xce,0x83,0xf0,0x56,0x00,0xbd,0xc5,0xb8, +0x87,0x86,0x7d,0xda,0x41,0x9d,0x6c,0x47,0x73,0xfa,0x22,0x4e,0xf2,0x7e,0x94,0xb4, +0xa2,0xd1,0x75,0xa9,0xd3,0xb1,0x49,0x23,0x3f,0x2d,0xe1,0xa2,0x90,0x93,0x56,0x3e, +0x5c,0x76,0xee,0x52,0xea,0x94,0x24,0x1a,0x7d,0x1c,0x89,0xd5,0x63,0xe1,0xc1,0x18, +0x18,0xf8,0x33,0x5e,0xae,0x68,0x4c,0xb1,0xff,0x01,0xbd,0x56,0xc2,0x3b,0xda,0x2d, +0x93,0xdf,0xb1,0xc3,0x6b,0x52,0xde,0x7d,0xf1,0xc1,0xee,0xcb,0x57,0x53,0x60,0x86, +0x31,0xcc,0xd1,0x68,0x42,0x7b,0xc9,0x0f,0x63,0x8e,0x60,0x1e,0x04,0x19,0x06,0x86, +0xad,0xd5,0x71,0x2c,0x53,0x97,0x4c,0x6b,0x33,0x36,0x93,0xa2,0x04,0x00,0x22,0x39, +0xa3,0xa6,0x5b,0x28,0x25,0x34,0x93,0x6f,0x46,0xdf,0x71,0x34,0x25,0x2f,0xbb,0x63, +0x83,0x28,0x93,0x46,0x08,0x1e,0x8d,0xa4,0xc1,0x81,0x47,0x23,0x46,0xc7,0x18,0x23, +0x59,0xfc,0x29,0x7a,0x3d,0x28,0x4c,0x1c,0x4a,0xba,0x36,0xfb,0xe6,0x33,0xfa,0x43, +0x28,0x76,0x29,0x05,0x62,0x91,0xb3,0x41,0xf9,0x20,0x84,0x76,0xcc,0x16,0x82,0x71, +0xf0,0xb3,0xd9,0x61,0x90,0x8b,0x8b,0xb2,0xfc,0xfc,0xf3,0xc3,0xe9,0x0b,0xb5,0xdc, +0x0f,0xb8,0xec,0xcc,0x24,0xfa,0x81,0x00,0xa2,0x26,0xcc,0xe1,0x91,0x5c,0x42,0x6e, +0x4e,0x10,0x85,0xb1,0x55,0x6e,0xea,0xee,0xaa,0x65,0x75,0x71,0x20,0x0b,0xa1,0x79, +0x5a,0x60,0x64,0xe1,0xa4,0x00,0xde,0x47,0x74,0x33,0xec,0x97,0x11,0x0a,0xd3,0x30, +0x5e,0x57,0x6d,0x77,0x11,0x64,0x42,0x2c,0x6f,0x94,0x65,0x23,0x64,0x63,0x6c,0x7c, +0xed,0xd8,0xa0,0x11,0x44,0x45,0x6b,0x50,0x0d,0x34,0x22,0xbe,0x76,0xcc,0x19,0x3c, +0x3c,0xd9,0x0c,0x5f,0xaf,0xb3,0xe1,0x2a,0x7c,0x6e,0xaa,0xa0,0xf9,0x8a,0x73,0x7c, +0x34,0x10,0xc9,0xdc,0xfc,0xf4,0x22,0xeb,0xf2,0x99,0x79,0x2e,0x97,0x1c,0xcb,0x35, +0xb8,0x7a,0xa9,0xff,0xca,0xfb,0x37,0x3f,0x3d,0x13,0xc9,0xa5,0x24,0xe7,0xba,0xf6, +0x52,0x24,0x57,0x29,0x05,0xd6,0xf9,0x48,0xae,0x72,0x62,0xae,0xfe,0x1b,0x6f,0x44, +0x72,0x55,0x52,0x6a,0x7c,0x2d,0x92,0xab,0x9a,0x0c,0xeb,0x85,0x0f,0x23,0xb9,0x66, +0x13,0x73,0x0d,0xae,0xbc,0x9b,0xe1,0x35,0x16,0xe6,0xac,0x25,0xe4,0x7c,0xe7,0x0f, +0x99,0x28,0x2f,0x22,0xce,0xee,0x60,0x40,0x19,0xe5,0xe4,0xe2,0x46,0x9d,0xf9,0x58, +0x51,0xda,0xfb,0xc7,0x15,0x65,0xd3,0xfb,0xc0,0x83,0x19,0x80,0xf3,0x63,0x56,0x88, +0x40,0x3f,0x22,0x89,0x5f,0x6a,0x08,0x0c,0x50,0x2f,0x1b,0x16,0x0d,0xb3,0xc9,0xc5, +0x39,0x3c,0x4a,0xa8,0xe8,0x67,0x1a,0x86,0x34,0xf6,0x70,0x10,0xbe,0x64,0x04,0x78, +0x62,0x49,0xff,0x50,0x23,0x61,0x68,0x28,0x3d,0xac,0x69,0x89,0x43,0xa9,0x77,0x8a, +0x19,0xf6,0x89,0x28,0x72,0x11,0x27,0x3a,0xd4,0xec,0xe7,0x08,0x91,0x88,0xe4,0x60, +0xbe,0xba,0xd1,0x74,0x75,0x4e,0xba,0x68,0x53,0x31,0xaf,0x7b,0xac,0x3c,0x41,0xcd, +0x36,0xa6,0x3c,0xdb,0x6c,0xcb,0xa6,0x03,0xd1,0xa0,0xa5,0x93,0x09,0xf1,0x01,0xa9, +0x76,0x0e,0xe7,0xa3,0x41,0xb7,0x92,0x2f,0x12,0x2a,0x5d,0x7d,0x3b,0x46,0xd5,0x99, +0xd1,0xa6,0xc6,0x73,0xc8,0x88,0x63,0x2b,0x2b,0x8c,0xb2,0x11,0x87,0xbb,0x3f,0x9c, +0x2c,0xb2,0x83,0x86,0x6c,0xab,0xd7,0xd1,0x42,0xbe,0xf8,0xc0,0x7d,0x97,0x05,0x1f, +0x9e,0xca,0x15,0xe5,0x06,0x25,0x3a,0x36,0x3f,0xd6,0x71,0x71,0x1d,0x2c,0xcc,0x4d, +0x29,0x03,0x17,0x2e,0xf2,0x2c,0x1a,0x84,0xd5,0xd6,0xa2,0x60,0x98,0xaf,0x9f,0x79, +0x4c,0xd9,0x3d,0x94,0xf6,0x6f,0x81,0x56,0xc9,0x01,0x88,0xe3,0x4c,0x29,0x2e,0x7e, +0x64,0x38,0x4a,0x86,0x2d,0x58,0x44,0xad,0x8a,0xd1,0x2b,0xc7,0x89,0x3b,0xcc,0x58, +0xd8,0x5d,0x5b,0x8b,0x2c,0x13,0x8f,0xb1,0xb4,0x0f,0x65,0x33,0x3d,0xf3,0x04,0xfd, +0x4c,0x26,0x3b,0xe0,0x85,0x7d,0x94,0xfe,0x49,0x76,0x04,0x0c,0xbf,0xe7,0x0e,0xcd, +0xe5,0x0c,0x5d,0x9a,0xca,0xe4,0xe3,0x20,0x1e,0xe6,0xca,0x66,0x68,0x80,0xec,0xe6, +0xa6,0x0e,0xf3,0x3b,0x66,0x5d,0xd3,0x89,0xdd,0xe9,0xe0,0x12,0xec,0x0b,0x8c,0x94, +0xa1,0xd0,0x59,0xf6,0x61,0x63,0x3c,0xd8,0x02,0xc4,0x85,0xd4,0x87,0x6b,0x4f,0x08, +0x8c,0xed,0x08,0xa1,0x03,0x68,0xa3,0x8b,0x5f,0x83,0xa4,0xf7,0xec,0x33,0xa0,0x19, +0x6f,0x66,0x1e,0x04,0xcd,0x65,0x8a,0x99,0x1f,0xe0,0x2e,0xa9,0xfe,0xb9,0xeb,0x83, +0x3f,0xa1,0x73,0x37,0x33,0x97,0xf1,0x3e,0x61,0xfc,0xde,0xab,0xf8,0xc8,0xe1,0x7a, +0x68,0xe8,0x80,0xc0,0xc8,0xbe,0x4f,0x99,0x1a,0x5e,0x8b,0x30,0x09,0x1a,0xde,0xe5, +0x99,0x82,0xd3,0x37,0xb3,0x09,0xd2,0x88,0x6f,0x7a,0x9c,0x34,0x0c,0xc2,0x5b,0x47, +0xe6,0x07,0xf5,0xc8,0x6e,0x45,0x14,0x81,0x70,0x4a,0xb1,0xce,0xbd,0x4a,0xea,0x0f, +0xc9,0x9b,0x28,0xa3,0xb6,0x35,0xef,0x07,0x66,0x62,0xe3,0x3d,0x07,0xd0,0x80,0x28, +0xfc,0x06,0x28,0x0f,0x32,0xe7,0xc6,0xb0,0x3a,0x9b,0x4f,0xd8,0x6c,0xfd,0x35,0x55, +0x2b,0xf2,0xf2,0x9e,0xa4,0x54,0xe9,0xf6,0xa2,0x51,0x00,0xbc,0x4d,0xad,0xa9,0x00, +0x18,0xe7,0x2d,0xbb,0x11,0x2e,0xe7,0xa7,0x9f,0x40,0x95,0x28,0x2b,0x1c,0x58,0xdc, +0xac,0x95,0x7d,0x88,0xe2,0xf4,0xfc,0xf3,0x0f,0xc5,0x41,0x23,0x13,0xb8,0xb8,0xeb, +0x5b,0x57,0x3f,0x61,0x47,0x50,0xde,0x3e,0x73,0xfe,0xf6,0xdb,0x9f,0x51,0x3e,0x06, +0xea,0x24,0x69,0xbb,0xce,0x38,0xb6,0x4d,0x10,0xec,0xc7,0x87,0x7d,0x7f,0xf2,0xbf, +0x83,0x4f,0x60,0x12,0xf3,0x16,0xdb,0x15,0x76,0xf3,0xda,0xbf,0xdf,0xbc,0xfe,0x71, +0xc4,0x33,0x37,0x24,0x44,0x89,0x61,0x7d,0x74,0xf7,0x72,0xbc,0xa9,0xa7,0xc9,0xa1, +0xe7,0x28,0x19,0xf0,0x26,0x60,0xf4,0xd0,0x16,0xf9,0xa0,0x09,0xc3,0xfb,0xe5,0x86, +0xf8,0x92,0x0f,0xc0,0xf8,0x46,0xe9,0x7e,0x92,0x86,0x19,0xf5,0xfb,0x43,0x1a,0x51, +0x4e,0x25,0x4a,0x80,0x38,0xeb,0xdb,0x47,0xfd,0x29,0x52,0x96,0x6e,0xc9,0xf5,0xb6, +0x62,0xe4,0xc3,0xfd,0x92,0x68,0xb5,0xd3,0x56,0xb0,0x58,0x42,0xb0,0xd9,0x71,0x9c, +0xf4,0xc7,0x58,0x5a,0xc8,0xf3,0xba,0x66,0xc4,0x4c,0x0e,0xf7,0x60,0xce,0xb3,0x0d, +0x85,0xde,0xde,0x20,0x20,0x84,0x18,0x7a,0x9f,0xd3,0x04,0x1f,0x5a,0x41,0x41,0x9d, +0x16,0xa9,0xf5,0xf1,0x54,0x2e,0x30,0xd1,0xb8,0xed,0x98,0xf3,0x93,0xc2,0xa0,0x65, +0x39,0x18,0xa2,0xcc,0xb4,0x1d,0xe7,0x5e,0xd9,0x3b,0x22,0x11,0x8a,0xcc,0x4f,0x06, +0x23,0x8e,0x08,0xa5,0x89,0xaf,0x79,0xf9,0xdd,0x00,0xb8,0x9d,0x91,0x6e,0x1c,0xa7, +0xdc,0x9e,0x2c,0x78,0x00,0x85,0x88,0x51,0x86,0xed,0x43,0x1b,0x12,0x22,0x26,0x1d, +0x94,0x67,0xd8,0x49,0x68,0xe5,0x4c,0x16,0x86,0x03,0x64,0x23,0xb3,0xd1,0x60,0x02, +0x1a,0x73,0x17,0xe1,0x71,0xa4,0xcc,0xc6,0x29,0x08,0x33,0x41,0xa6,0xc9,0x90,0x7d, +0x84,0xf6,0x3f,0xaa,0x0c,0x35,0x6a,0x04,0x93,0xa3,0xff,0xf0,0x50,0x44,0xe2,0xd3, +0x8d,0x99,0x10,0x9f,0xa1,0x73,0x7d,0x79,0x37,0x5f,0xc4,0x01,0x78,0xf4,0xd8,0xe1, +0xc4,0x13,0x76,0xc3,0x2f,0x65,0xc7,0x8e,0x07,0x65,0x5f,0x07,0x1f,0xa5,0x9c,0xfd, +0x0f,0x88,0x27,0x29,0x79,0x7a,0x16,0x29,0x7e,0x21,0x3a,0x88,0x0b,0x34,0xad,0x26, +0x15,0x17,0xc9,0x7f,0x15,0xc9,0xbf,0x0e,0x53,0xb7,0x7f,0xa2,0xd5,0xf9,0xaf,0x67, +0x84,0x02,0x50,0x35,0x5e,0xb8,0x05,0x02,0x42,0xd5,0x7e,0xe4,0xc0,0xb1,0x04,0x1f, +0x6d,0xe2,0xfe,0x2b,0xc0,0x78,0x94,0x2c,0x31,0x5a,0xb8,0x3d,0x27,0x4a,0x6e,0xaf, +0x9d,0x09,0x47,0x4e,0x87,0x9f,0xe2,0x1e,0x75,0x22,0x74,0x98,0x2b,0xf0,0xe5,0x87, +0x49,0xc3,0xdb,0x4d,0xa8,0x45,0x13,0x6c,0xd1,0xf5,0xb6,0xe6,0x6a,0x99,0x64,0x5f, +0x2c,0xdd,0x16,0xeb,0xfb,0xb5,0x9f,0xf0,0x3e,0xf9,0x8d,0x6e,0x69,0xff,0x3e,0x5b, +0x1c,0x8a,0x9f,0x89,0xf1,0x9e,0xb6,0x37,0xca,0xfc,0x7d,0xe7,0x5e,0xdc,0xe5,0x3a, +0x86,0x31,0x14,0x27,0xdd,0x6e,0x32,0xcb,0x23,0xd4,0xb6,0x91,0xa9,0x41,0xa1,0x10, +0xf5,0x58,0x72,0x01,0x4a,0x61,0x7e,0xbe,0x00,0xc7,0x84,0x91,0x14,0xf4,0x6a,0x1e, +0x5a,0xc3,0xf5,0x10,0x5a,0x18,0x72,0x6b,0x06,0xed,0xb5,0x75,0xfc,0x80,0x5d,0x36, +0x37,0x69,0x9c,0x6b,0xc0,0x90,0x51,0x31,0xae,0x61,0x7f,0x8e,0x74,0x70,0x76,0xe8, +0xfe,0xd0,0x51,0x79,0xec,0xab,0xe3,0x23,0x0f,0xca,0xf3,0x3e,0x4c,0xce,0xfb,0x35, +0xe0,0xb9,0x81,0x9f,0x95,0x4e,0x2c,0x16,0x3d,0xd3,0xce,0xfb,0x32,0x3a,0xbf,0x31, +0x27,0xb2,0xcd,0xc0,0xfb,0xc0,0x78,0x92,0xa3,0xdd,0xb4,0x46,0xc6,0x85,0x79,0x88, +0x45,0x9c,0x6c,0x36,0xbf,0x1a,0xe8,0x61,0x19,0x06,0x5e,0x14,0xf3,0xb1,0xb4,0x15, +0xdd,0xd8,0x6c,0xb9,0xe9,0x74,0xe4,0xbf,0x80,0x1e,0x23,0x64,0x84,0xb8,0x37,0x3f, +0xbd,0xd0,0x7f,0xeb,0x7f,0x6e,0xbf,0x75,0x7d,0xf7,0xe5,0x73,0xc3,0x6d,0xe4,0x82, +0x4d,0x13,0xdb,0x49,0x63,0x69,0xd9,0xc9,0x4f,0x05,0x1a,0xb0,0x3a,0xf2,0x7c,0x3f, +0xfe,0xd4,0xa8,0x54,0xa6,0x71,0xc1,0xaf,0x21,0x41,0x82,0xc4,0x34,0x92,0x25,0x34, +0x9f,0xc7,0x7d,0x3e,0xe1,0x1c,0x16,0xfc,0xaa,0x67,0xb0,0xf8,0x44,0xf7,0x3f,0x2c, +0xd2,0x88,0x3e,0xbb,0x9d,0x15,0x76,0xdf,0xfe,0x08,0x06,0x9c,0x5b,0xbf,0x3f,0xcb, +0x8e,0x4a,0xea,0x5f,0xbe,0xf2,0xf5,0x8d,0xf0,0x58,0x23,0x6a,0xf9,0x2d,0x2e,0xe2, +0x8a,0x8e,0x37,0xc9,0xe2,0x79,0x8b,0x35,0x23,0x6c,0xf6,0x0d,0x89,0x6c,0x2e,0xc5, +0x3f,0xc7,0x99,0x67,0xb1,0x02,0x89,0xe1,0x64,0xde,0x57,0x48,0x27,0xb6,0x17,0x18, +0xe2,0x51,0x1b,0x41,0x80,0x9e,0x27,0xa4,0x6f,0x9d,0x49,0x0e,0x2e,0xe6,0x36,0x9c, +0x3e,0xe4,0xa5,0x3d,0xff,0xbc,0x77,0xb3,0xb8,0x58,0x0c,0x57,0xef,0xfc,0x34,0x39, +0xbe,0xb7,0x33,0x1e,0x7b,0x3d,0x91,0xbc,0x24,0xdb,0x3f,0x20,0xad,0x83,0x0b,0xef, +0xde,0xfe,0xdd,0x2b,0x20,0xad,0x91,0xb3,0xa3,0xf0,0x78,0x01,0x0f,0xe1,0xb0,0x7a, +0xfe,0x23,0x29,0x05,0xef,0x4c,0x9b,0x85,0x02,0xba,0xb2,0xe1,0xe6,0xff,0x03,0x8c, +0x92,0xa8,0xc1,0x94,0x10,0x01,0x00}; diff --git a/TC1/mqtt_server/user_mqtt_client.c b/TC1/mqtt_server/user_mqtt_client.c index 00db224..7db7a37 100644 --- a/TC1/mqtt_server/user_mqtt_client.c +++ b/TC1/mqtt_server/user_mqtt_client.c @@ -77,6 +77,7 @@ void UserMqttTimerFunc(void *arg) { UserMqttHassAutoLed(); UserMqttHassAutoTotalSocket(); UserMqttHassAutoChildLock(); + UserMqttHassAutoRebootButton(); break; case 1: case 2: @@ -422,6 +423,8 @@ void ProcessHaCmd(char *cmd) { childLockEnabled = on; UserMqttSendChildLockState(); mico_system_context_update(sys_config); + }else if (strcmp(cmd, "reboot") == 0) { + MicoSystemReboot(); // 立即重启设备 } } @@ -530,7 +533,7 @@ void UserMqttHassAuto(char socket_id) { socket_id--; char *send_buf = NULL; char *topic_buf = NULL; - send_buf = (char *) malloc(800); + send_buf = (char *) malloc(600); topic_buf = (char *) malloc(64); if (send_buf != NULL && topic_buf != NULL) { sprintf(topic_buf, "homeassistant/switch/%s/socket_%d/config", str_mac, socket_id); @@ -542,6 +545,7 @@ void UserMqttHassAuto(char socket_id) { "\"cmd_t\":\"device/ztc1/set\"," "\"pl_on\":\"set socket %s %d 1\"," "\"pl_off\":\"set socket %s %d 0\"," + "\"device_class\":\"outlet\"," "\"device\":{" "\"identifiers\":[\"tc1_%s\"]," "\"name\":\"%s\"," @@ -558,6 +562,33 @@ void UserMqttHassAuto(char socket_id) { free(topic_buf); } +void UserMqttHassAutoRebootButton(void) { + char *send_buf = NULL; + char *topic_buf = NULL; + send_buf = (char *) malloc(600); + topic_buf = (char *) malloc(64); + if (send_buf != NULL && topic_buf != NULL) { + // 重启按钮配置 + sprintf(topic_buf, "homeassistant/button/%s/reboot/config", str_mac); + sprintf(send_buf, + "{\"name\":\"重启设备\"," + "\"uniq_id\":\"tc1_%s_reboot\"," + "\"object_id\":\"tc1_%s_reboot\"," + "\"cmd_t\":\"device/ztc1/set\"," + "\"pl_prs\":\"reboot\"," + "\"device_class\":\"outlet\"," + "\"device\":{" + "\"identifiers\":[\"tc1_%s\"]," + "\"name\":\"%s\"," + "\"model\":\"TC1\"," + "\"manufacturer\":\"PHICOMM\"}}", + str_mac,str_mac,str_mac, sys_config->micoSystemConfig.name); + UserMqttSendTopic(topic_buf, send_buf, 1); + } + if (send_buf) free(send_buf); + if (topic_buf) free(topic_buf); +} + void UserMqttHassAutoLed(void) { char *send_buf = NULL; char *topic_buf = NULL; @@ -573,6 +604,7 @@ void UserMqttHassAutoLed(void) { "\"cmd_t\":\"device/ztc1/set\"," "\"pl_on\":\"set led %s 1\"," "\"pl_off\":\"set led %s 0\"," + "\"device_class\":\"outlet\"," "\"device\":{" "\"identifiers\":[\"tc1_%s\"]," "\"name\":\"%s\"," @@ -602,6 +634,7 @@ void UserMqttHassAutoChildLock(void) { "\"cmd_t\":\"device/ztc1/set\"," "\"pl_on\":\"set childLock %s 1\"," "\"pl_off\":\"set childLock %s 0\"," + "\"device_class\":\"outlet\"," "\"device\":{" "\"identifiers\":[\"tc1_%s\"]," "\"name\":\"%s\"," @@ -631,6 +664,7 @@ void UserMqttHassAutoTotalSocket(void) { "\"cmd_t\":\"device/ztc1/set\"," "\"pl_on\":\"set total_socket %s 1\"," "\"pl_off\":\"set total_socket %s 0\"," + "\"device_class\":\"outlet\"," "\"device\":{" "\"identifiers\":[\"tc1_%s\"]," "\"name\":\"%s\"," diff --git a/TC1/mqtt_server/user_mqtt_client.h b/TC1/mqtt_server/user_mqtt_client.h index 29ade30..d384d07 100644 --- a/TC1/mqtt_server/user_mqtt_client.h +++ b/TC1/mqtt_server/user_mqtt_client.h @@ -49,4 +49,6 @@ extern void UserMqttHassAutoTotalSocket(void); extern void registerMqttEvents(void); +extern void UserMqttHassAutoRebootButton(void); + #endif diff --git a/TC1/ota_server/ota_server.c b/TC1/ota_server/ota_server.c index 43f17a1..fa9d8d5 100644 --- a/TC1/ota_server/ota_server.c +++ b/TC1/ota_server/ota_server.c @@ -257,7 +257,7 @@ static void OtaServerThread(mico_thread_arg_t arg) InitMd5(&md5); } - httpHeader = HTTPHeaderCreateWithCallback(1024, OnReceivedData, NULL, NULL); + httpHeader = HTTPHeaderCreateWithCallback(512, OnReceivedData, NULL, NULL); require_action(httpHeader, DELETE, OtaServerProgressSet(OTA_FAIL)); while (1) From 026e0589349ac802600e72648842a640f5aaaec1 Mon Sep 17 00:00:00 2001 From: Your Name Date: Wed, 16 Apr 2025 23:16:01 +0800 Subject: [PATCH 03/19] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E5=9C=A8=E4=B8=8D?= =?UTF-8?q?=E9=85=8D=E7=BD=AEMQTT=E4=BF=A1=E6=81=AF=E7=9A=84=E6=83=85?= =?UTF-8?q?=E5=86=B5=E4=B8=8B=EF=BC=8COTA=E5=B0=86=E5=A4=A7=E6=A6=82?= =?UTF-8?q?=E7=8E=87=E6=97=A0=E6=B3=95=E8=BF=9B=E8=A1=8C=EF=BC=8C=E4=B8=94?= =?UTF-8?q?=E5=90=8E=E5=8F=B0=E5=8F=AF=E8=83=BD=E7=BB=8F=E5=B8=B8=E5=8D=A1?= =?UTF-8?q?=E6=AD=BB=E5=88=B7=E4=B8=8D=E5=87=BA=E9=A1=B5=E9=9D=A2=E7=9A=84?= =?UTF-8?q?=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- TC1/http_server/app_httpd.c | 53 ++++++++++++++++++++++-------- TC1/http_server/web_data.c | 6 ++-- TC1/main.c | 2 ++ TC1/main.h | 2 +- TC1/mqtt_server/user_mqtt_client.c | 3 ++ 5 files changed, 49 insertions(+), 17 deletions(-) diff --git a/TC1/http_server/app_httpd.c b/TC1/http_server/app_httpd.c index b79c56a..1f65fc2 100644 --- a/TC1/http_server/app_httpd.c +++ b/TC1/http_server/app_httpd.c @@ -54,6 +54,7 @@ static bool is_handlers_registered; const struct httpd_wsgi_call g_app_handlers[]; char power_info_json[2560] = {0}; char up_time[16] = "00:00:00"; +#define CHUNK_SIZE 512 // 每次发送 512 字节,避免 buffer 太大 /* void GetPraFromUrl(char* url, char* pra, char* val) @@ -90,16 +91,30 @@ void GetPraFromUrl(char* url, char* pra, char* val) } */ + +static OSStatus send_in_chunks(int sock, const uint8_t *data, int total_len) { + OSStatus err = kNoErr; + for (int offset = 0; offset < total_len; offset += CHUNK_SIZE) { + int chunk_len = (total_len - offset > CHUNK_SIZE) ? CHUNK_SIZE : (total_len - offset); + err = httpd_send_body(sock, data + offset, chunk_len); + require_noerr_action(err, exit, http_log("ERROR: Send chunk failed at offset %d", offset)); + } +exit: + return err; +} + static int HttpGetIndexPage(httpd_request_t *req) { OSStatus err = kNoErr; + int total_sz = sizeof(web_index_html); - err = httpd_send_all_header(req, HTTP_RES_200, sizeof(web_index_html), HTTP_CONTENT_HTML_ZIP); - require_noerr_action(err, exit, http_log("ERROR: Unable to send http index headers.")); - err = httpd_send_body(req->sock, web_index_html, sizeof(web_index_html)); - require_noerr_action(err, exit, http_log("ERROR: Unable to send http index body.")); + err = httpd_send_all_header(req, HTTP_RES_200, total_sz, HTTP_CONTENT_HTML_ZIP); + require_noerr_action(err, exit, http_log("ERROR: Unable to send index headers.")); - exit: + err = send_in_chunks(req->sock, web_index_html, total_sz); + require_noerr_action(err, exit, http_log("ERROR: Unable to send index body.")); + +exit: return err; } @@ -107,14 +122,15 @@ static int HttpGetAssets(httpd_request_t *req) { OSStatus err = kNoErr; char *file_name = strstr(req->filename, "/assets/"); - if (!file_name) { http_log("HttpGetAssets url[%s] err", req->filename); + if (!file_name) { + http_log("HttpGetAssets url[%s] err", req->filename); return err; } - //http_log("HttpGetAssets url[%s] file_name[%s]", req->filename, file_name); int total_sz = 0; const unsigned char *file_data = NULL; const char *content_type = HTTP_CONTENT_JS_ZIP; + if (strcmp(file_name + 8, "js_pack.js") == 0) { total_sz = sizeof(js_pack); file_data = js_pack; @@ -122,17 +138,25 @@ static int HttpGetAssets(httpd_request_t *req) { total_sz = sizeof(css_pack); file_data = css_pack; content_type = HTTP_CONTENT_CSS_ZIP; + } else if (strcmp(file_name + 8, "index.html") == 0) { + total_sz = sizeof(web_index_html); + file_data = web_index_html; + content_type = HTTP_CONTENT_HTML_ZIP; + } + + if (total_sz == 0 || file_data == NULL) { + http_log("File not found: %s", req->filename); + return err; } - if (total_sz == 0) return err; err = httpd_send_all_header(req, HTTP_RES_200, total_sz, content_type); - require_noerr_action(err, exit, http_log("ERROR: Unable to send http assets headers.")); + require_noerr_action(err, exit, http_log("ERROR: Unable to send asset headers.")); - err = httpd_send_body(req->sock, file_data, total_sz); - require_noerr_action(err, exit, http_log("ERROR: Unable to send http assets body.")); + err = send_in_chunks(req->sock, file_data, total_sz); + require_noerr_action(err, exit, http_log("ERROR: Unable to send asset body.")); - exit: +exit: return err; } @@ -392,7 +416,10 @@ static int HttpSetMqttConfig(httpd_request_t *req) { sscanf(buf, "%s %d %s %s", MQTT_SERVER, &MQTT_SERVER_PORT, MQTT_SERVER_USR, MQTT_SERVER_PWD); mico_system_context_update(sys_config); - + if (!(MQTT_SERVER[0] < 0x20 || MQTT_SERVER[0] > 0x7f || MQTT_SERVER_PORT < 1)){ + err = UserMqttInit(); + require_noerr(err, exit); + } send_http("OK", 2, exit, &err); exit: diff --git a/TC1/http_server/web_data.c b/TC1/http_server/web_data.c index 43f4a88..fe774ee 100644 --- a/TC1/http_server/web_data.c +++ b/TC1/http_server/web_data.c @@ -1,5 +1,5 @@ const unsigned char js_pack[0xd2be] = { -0x1f,0x8b,0x08,0x00,0xb9,0xf8,0xf9,0x67,0x02,0xff,0xd4,0xbd,0xfb,0x72,0xdb,0x46, +0x1f,0x8b,0x08,0x00,0x7d,0xc5,0xff,0x67,0x02,0xff,0xd4,0xbd,0xfb,0x72,0xdb,0x46, 0xd2,0x38,0xfa,0xff,0x56,0xed,0x3b,0x88,0x48,0x96,0x01,0xc4,0x21,0x45,0xca,0xb1, 0x13,0x83,0x1e,0xb1,0x1c,0xdb,0x49,0xbc,0x5f,0x9c,0x64,0xe3,0x5c,0x97,0x62,0x52, 0xb8,0x92,0xa0,0x48,0x82,0xe2,0xc5,0x12,0x23,0x72,0xdf,0xe7,0xf7,0x1a,0xe7,0xc9, @@ -3372,7 +3372,7 @@ const unsigned char js_pack[0xd2be] = { 0x02,0x0f,0xb7,0x98,0x0c,0x59,0x7f,0x97,0xf2,0x25,0x55,0x7c,0x45,0xad,0x25,0x8e, 0x0f,0x58,0x4f,0xcc,0x9f,0x00,0x32,0xd2,0xf4,0xa5,0xf0,0xee,0x02,0x00}; const unsigned char css_pack[0x6217] = { -0x1f,0x8b,0x08,0x00,0xb9,0xf8,0xf9,0x67,0x02,0xff,0xed,0xbd,0x79,0x73,0xdb,0xc8, +0x1f,0x8b,0x08,0x00,0x7e,0xc5,0xff,0x67,0x02,0xff,0xed,0xbd,0x79,0x73,0xdb,0xc8, 0xf5,0x28,0xfa,0x7f,0xaa,0xf2,0x1d,0x70,0x9d,0x9a,0x1a,0x6b,0x42,0xc8,0xd8,0x49, 0x4a,0x95,0x54,0xbc,0x8f,0x26,0x96,0x9c,0x78,0x19,0x8f,0x9d,0x5f,0x9e,0x0b,0x04, 0x9a,0x24,0x24,0x90,0x60,0x00,0x50,0x1b,0x4b,0xb7,0xee,0x07,0xb9,0xef,0xcb,0xbd, @@ -4943,7 +4943,7 @@ const unsigned char css_pack[0x6217] = { 0xe6,0x54,0x09,0x49,0xbc,0xd0,0xc2,0x1c,0x55,0x23,0x76,0x55,0x21,0xff,0x3f,0x3f, 0xef,0x85,0xce,0x3d,0xbc,0x02,0x00}; const unsigned char web_index_html[0x3477] = { -0x1f,0x8b,0x08,0x00,0xb9,0xf8,0xf9,0x67,0x02,0xff,0xed,0x7d,0x6d,0x93,0xdb,0xc6, +0x1f,0x8b,0x08,0x00,0x7e,0xc5,0xff,0x67,0x02,0xff,0xed,0x7d,0x6d,0x93,0xdb,0xc6, 0x91,0xf0,0xf7,0xab,0xca,0x7f,0x18,0xc3,0xaa,0x90,0xbc,0x25,0x40,0x02,0x7c,0x59, 0x72,0xdf,0x52,0xca,0xda,0xc9,0xfa,0xb9,0x95,0xe5,0xcb,0xea,0x94,0xe7,0x4e,0x71, 0xd1,0x58,0x02,0xbb,0x84,0x05,0x12,0x34,0x00,0xee,0x6a,0x6d,0xab,0x4a,0x4a,0xce, diff --git a/TC1/main.c b/TC1/main.c index c66c7e4..2a95441 100644 --- a/TC1/main.c +++ b/TC1/main.c @@ -186,8 +186,10 @@ int application_start(void) { } } KeyInit(); + if (!(MQTT_SERVER[0] < 0x20 || MQTT_SERVER[0] > 0x7f || MQTT_SERVER_PORT < 1)){ err = UserMqttInit(); require_noerr(err, exit); + } err = UserRtcInit(); require_noerr(err, exit); PowerInit(); diff --git a/TC1/main.h b/TC1/main.h index 2b39c77..4abee42 100644 --- a/TC1/main.h +++ b/TC1/main.h @@ -16,7 +16,7 @@ #define wifi_log(M, ...) custom_log("WIFI", M, ##__VA_ARGS__); web_log("WIFI", M, ##__VA_ARGS__); #define power_log(M, ...) custom_log("POWER", M, ##__VA_ARGS__); web_log("POWER", M, ##__VA_ARGS__); -#define VERSION "v2.1.6" +#define VERSION "v2.1.7" #define TYPE 1 #define TYPE_NAME "TC1" diff --git a/TC1/mqtt_server/user_mqtt_client.c b/TC1/mqtt_server/user_mqtt_client.c index 7db7a37..2818d7d 100644 --- a/TC1/mqtt_server/user_mqtt_client.c +++ b/TC1/mqtt_server/user_mqtt_client.c @@ -431,6 +431,9 @@ void ProcessHaCmd(char *cmd) { OSStatus UserMqttSendTopic(char *topic, char *arg, char retained) { OSStatus err = kUnknownErr; p_mqtt_send_msg_t p_send_msg = NULL; + if(mqtt_msg_send_queue == NULL){ + return err; + } // mqtt_log("======App prepare to send ![%d]======", MicoGetMemoryInfo()->free_memory); From 0e361111a5924822a80927fd50b406d23deca58c Mon Sep 17 00:00:00 2001 From: Your Name Date: Thu, 17 Apr 2025 10:25:14 +0800 Subject: [PATCH 04/19] =?UTF-8?q?=E4=BF=AE=E5=A4=8Dhamqtt=E4=B8=AD?= =?UTF-8?q?=E9=87=8D=E5=90=AF=E6=8C=89=E9=92=AE=E6=97=A0=E6=B3=95=E4=BD=BF?= =?UTF-8?q?=E7=94=A8=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- TC1/mqtt_server/user_mqtt_client.c | 1 - 1 file changed, 1 deletion(-) diff --git a/TC1/mqtt_server/user_mqtt_client.c b/TC1/mqtt_server/user_mqtt_client.c index 2818d7d..12c7364 100644 --- a/TC1/mqtt_server/user_mqtt_client.c +++ b/TC1/mqtt_server/user_mqtt_client.c @@ -579,7 +579,6 @@ void UserMqttHassAutoRebootButton(void) { "\"object_id\":\"tc1_%s_reboot\"," "\"cmd_t\":\"device/ztc1/set\"," "\"pl_prs\":\"reboot\"," - "\"device_class\":\"outlet\"," "\"device\":{" "\"identifiers\":[\"tc1_%s\"]," "\"name\":\"%s\"," From 004eaf28ddd9e05cda97bb85fdf4d8eb568fc29c Mon Sep 17 00:00:00 2001 From: nhkefus Date: Thu, 17 Apr 2025 17:39:27 +0800 Subject: [PATCH 05/19] =?UTF-8?q?=E5=BC=80=E5=8F=91=E6=9C=AC=E5=9C=B0ota?= =?UTF-8?q?=E4=B8=8A=E4=BC=A0=E7=94=A8=E7=9A=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- TC1/http_server/app_httpd.c | 58 +++++++++++++++++ TC1/http_server/web/index.html | 111 ++++++++++++++++++++++----------- TC1/main.c | 4 +- 3 files changed, 133 insertions(+), 40 deletions(-) diff --git a/TC1/http_server/app_httpd.c b/TC1/http_server/app_httpd.c index 1f65fc2..96cf2e9 100644 --- a/TC1/http_server/app_httpd.c +++ b/TC1/http_server/app_httpd.c @@ -255,6 +255,64 @@ static int HttpSetButtonEvent(httpd_request_t *req) { return err; } +static int HttpSetOTAFile(httpd_request_t *req) { + OSStatus err = kNoErr; + uint32_t total = 0, ota_offset = 0; + char *buffer = malloc(OTA_BUFFER_SIZE); + if (!buffer) return kGeneralErr; + +// mico_logic_partition_t* ota_partition = MicoFlashGetInfo(MICO_PARTITION_OTA_TEMP); +// MicoFlashErase(MICO_PARTITION_OTA_TEMP, 0x0, ota_partition->partition_length); + + CRC16_Context crc_context; + CRC16_Init(&crc_context); + + tc1_log("開始接收 OTA 數據..."); + struct timeval timeout = {60, 0}; // 60秒 + setsockopt(req->sock, SOL_SOCKET, SO_RCVTIMEO, &timeout, sizeof(timeout)); +int remaining = -1; + while (remaining!=0) { + int readSize = remaining>OTA_BUFFER_SIZE?OTA_BUFFER_SIZE:(remaining>0?remaining:OTA_BUFFER_SIZE); + remaining = httpd_get_data(req, buffer, readSize); + if (remaining < 0) { + err = kConnectionErr; + tc1_log("httpd_get_data 失敗"); + goto exit; + break; + } + +// CRC16_Update(&crc_context, buffer, readSize); + +// err = MicoFlashWrite(MICO_PARTITION_OTA_TEMP, &crc_context->offset, (uint8_t *)buffer, readSize); +// require_noerr_quiet(err, exit); + total+=readSize; + mico_thread_msleep(10); + } + + uint16_t crc16; +// CRC16_Final(&crc_context, &crc16); + char response[64]; + + snprintf(response, sizeof(response), "OK, total: %ld bytes, CRC: 0x%04X", total, crc16); + send_http(response, strlen(response), exit, &err); + return 0; + + err = mico_ota_switch_to_new_fw(ota_offset, crc16); + require_noerr(err, exit); + + tc1_log("OTA 完成,重啟系統"); + mico_system_power_perform(mico_system_context_get(), eState_Software_Reset); + +exit: + if (req->sock >= 0) { + close(req->sock); + req->sock = -1; + } + if (buffer) free(buffer); + tc1_log("OTA 結束,狀態: %d", err); + return err; +} + static int HttpSetDeviceName(httpd_request_t *req) { OSStatus err = kNoErr; diff --git a/TC1/http_server/web/index.html b/TC1/http_server/web/index.html index 0a50590..9dcbb63 100644 --- a/TC1/http_server/web/index.html +++ b/TC1/http_server/web/index.html @@ -40,20 +40,20 @@ TC1智能插座
- - - - - - - - - - - - - - + + + + + + + + + + + + + + TC1智能插座
- + @@ -55,7 +55,7 @@ @@ -401,10 +401,10 @@ @@ -422,10 +422,10 @@ @@ -519,10 +519,10 @@ @@ -598,10 +598,10 @@ @@ -655,10 +655,10 @@
@@ -675,10 +675,11 @@ +
@@ -689,10 +690,10 @@

                 
@@ -1504,12 +1505,15 @@ HttpPost("/shortClickEvent", function (re) { var ota_url = document.getElementById("ota_url").value; var protocol = window.location.protocol; var baseUrl = protocol+"//"+window.location.host; - +document.getElementById("submit-ota-link").disabled = true; HttpPost("/ota", function (re) { OtaStatus(); }, ota_url); } - + var upload_status = document.querySelector('#upload_status'); + upload_status.addEventListener('mdl-componentupgraded', function() { + this.MaterialProgress.setProgress(0); + }); function OtaFileUpload() { //alert("假的假的是假的,忽略"); //return; @@ -1520,12 +1524,31 @@ HttpPost("/shortClickEvent", function (re) { } clearTimeout(powerTimerId); console.log(fileInput.files[0].size); // 应显示 647168 左右 -fetch("/ota/fileUpload", { - method: "POST", - headers: { "Content-Type": "application/octet-stream" }, - body: fileInput.files[0] -}).then(r => r.text()).then(alert).catch(alert); - } +document.getElementById("submit-ota-file").disabled = true; +const xhr = new XMLHttpRequest(); +xhr.open("POST", "/ota/fileUpload"); + +xhr.upload.onprogress = function (e) { + if (e.lengthComputable) { + let percent = (e.loaded / e.total * 100).toFixed(1); + upload_status.MaterialProgress.setProgress(percent); + console.log(`上传进度:${percent}%`); + } +}; + +xhr.onload = function () { + alert("上传完成:" + xhr.responseText); + document.getElementById("submit-ota-file").disabled = false; +}; + +xhr.onerror = function () { + alert("上传失败"); + document.getElementById("submit-ota-file").disabled = false; +}; + +xhr.setRequestHeader("Content-Type", "application/octet-stream"); +xhr.send(fileInput.files[0]); + } var ota_status = document.querySelector('#ota_status'); ota_status.addEventListener('mdl-componentupgraded', function() { From 36861fadff69a108b4057eddfa947d17eff09f25 Mon Sep 17 00:00:00 2001 From: Your Name Date: Mon, 21 Apr 2025 21:17:34 +0800 Subject: [PATCH 14/19] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E4=BA=86MQTT=E6=9B=BE?= =?UTF-8?q?=E7=BB=8F=E8=BF=9E=E4=B8=8A=EF=BC=8C=E4=BD=86=E4=B8=AD=E9=80=94?= =?UTF-8?q?=E9=95=BF=E6=97=B6=E9=97=B4=E6=96=AD=E5=BC=80=EF=BC=8C=E5=AF=BC?= =?UTF-8?q?=E8=87=B4=E6=B6=88=E6=81=AF=E9=98=9F=E5=88=97=E4=B8=80=E7=9B=B4?= =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E7=88=86=E5=86=85=E5=AD=98=EF=BC=8C=E8=BF=9B?= =?UTF-8?q?=E8=80=8C=E5=AF=BC=E8=87=B4=E6=AD=BB=E6=9C=BA=E7=9A=84=E9=97=AE?= =?UTF-8?q?=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- TC1/http_server/web/index.html | 2 +- TC1/http_server/web_data.c | 1744 ++++++++++++++-------------- TC1/http_server/web_log.c | 5 + TC1/mqtt_server/user_mqtt_client.c | 2 +- 4 files changed, 886 insertions(+), 867 deletions(-) diff --git a/TC1/http_server/web/index.html b/TC1/http_server/web/index.html index e9fc642..50f688f 100644 --- a/TC1/http_server/web/index.html +++ b/TC1/http_server/web/index.html @@ -1519,7 +1519,7 @@ document.getElementById("submit-ota-link").disabled = true; //return; var fileInput = document.getElementById("ota_file"); if (fileInput.files.length === 0) { - alert("请选择要上传的 OTA 文件"); + Toast("请选择要上传的 OTA 文件"); return; } clearTimeout(powerTimerId); diff --git a/TC1/http_server/web_data.c b/TC1/http_server/web_data.c index ad60d21..9e38127 100644 --- a/TC1/http_server/web_data.c +++ b/TC1/http_server/web_data.c @@ -1,5 +1,5 @@ const unsigned char js_pack[0xd2be] = { -0x1f,0x8b,0x08,0x00,0xde,0x28,0x02,0x68,0x02,0xff,0xd4,0xbd,0xfb,0x72,0xdb,0x46, +0x1f,0x8b,0x08,0x00,0xcb,0x44,0x06,0x68,0x02,0xff,0xd4,0xbd,0xfb,0x72,0xdb,0x46, 0xd2,0x38,0xfa,0xff,0x56,0xed,0x3b,0x88,0x48,0x96,0x01,0xc4,0x21,0x45,0xca,0xb1, 0x13,0x83,0x1e,0xb1,0x1c,0xdb,0x49,0xbc,0x5f,0x9c,0x64,0xe3,0x5c,0x97,0x62,0x52, 0xb8,0x92,0xa0,0x48,0x82,0xe2,0xc5,0x12,0x23,0x72,0xdf,0xe7,0xf7,0x1a,0xe7,0xc9, @@ -3372,7 +3372,7 @@ const unsigned char js_pack[0xd2be] = { 0x02,0x0f,0xb7,0x98,0x0c,0x59,0x7f,0x97,0xf2,0x25,0x55,0x7c,0x45,0xad,0x25,0x8e, 0x0f,0x58,0x4f,0xcc,0x9f,0x00,0x32,0xd2,0xf4,0xa5,0xf0,0xee,0x02,0x00}; const unsigned char css_pack[0x6217] = { -0x1f,0x8b,0x08,0x00,0xde,0x28,0x02,0x68,0x02,0xff,0xed,0xbd,0x79,0x73,0xdb,0xc8, +0x1f,0x8b,0x08,0x00,0xcb,0x44,0x06,0x68,0x02,0xff,0xed,0xbd,0x79,0x73,0xdb,0xc8, 0xf5,0x28,0xfa,0x7f,0xaa,0xf2,0x1d,0x70,0x9d,0x9a,0x1a,0x6b,0x42,0xc8,0xd8,0x49, 0x4a,0x95,0x54,0xbc,0x8f,0x26,0x96,0x9c,0x78,0x19,0x8f,0x9d,0x5f,0x9e,0x0b,0x04, 0x9a,0x24,0x24,0x90,0x60,0x00,0x50,0x1b,0x4b,0xb7,0xee,0x07,0xb9,0xef,0xcb,0xbd, @@ -4942,866 +4942,880 @@ const unsigned char css_pack[0x6217] = { 0x34,0x4a,0x61,0x0f,0x9e,0x4c,0x71,0xf7,0x2d,0x84,0xeb,0x52,0x24,0xf6,0xd5,0x25, 0xe6,0x54,0x09,0x49,0xbc,0xd0,0xc2,0x1c,0x55,0x23,0x76,0x55,0x21,0xff,0x3f,0x3f, 0xef,0x85,0xce,0x3d,0xbc,0x02,0x00}; -const unsigned char web_index_html[0x35dc] = { -0x1f,0x8b,0x08,0x00,0xde,0x28,0x02,0x68,0x02,0xff,0xed,0x7d,0xfb,0x97,0x1b,0xc5, -0xb1,0xf0,0xef,0x39,0x27,0xff,0x43,0x33,0xf8,0x44,0xd2,0x5d,0xcd,0x48,0x33,0x7a, -0xac,0xb4,0xaf,0x1c,0x67,0x21,0x59,0xbe,0xac,0x31,0xc9,0x3a,0xce,0x77,0xaf,0xc3, -0x11,0xb3,0xd2,0xec,0x6a,0xf0,0x48,0x23,0x66,0x46,0xbb,0x5e,0xc3,0x9e,0x63,0x27, -0x21,0xc6,0x0e,0xc6,0x86,0x40,0x9c,0x0b,0xdc,0x00,0xb9,0x10,0x08,0x09,0x38,0xf7, -0x26,0xe1,0xe1,0x07,0x9c,0xf3,0xfd,0x2b,0x58,0x5a,0xfb,0x27,0xfe,0x85,0xaf,0xaa, -0x7b,0x1e,0x3d,0xa3,0x19,0x49,0x6b,0x6b,0x0d,0xb6,0xd7,0x09,0xda,0x79,0x54,0x57, -0x57,0x57,0x57,0x57,0x57,0x55,0x57,0xf7,0x7c,0x7d,0xf5,0xcb,0xb9,0x87,0x1a,0x66, -0xdd,0xd9,0xea,0x68,0xa4,0xe9,0xb4,0x8c,0x85,0xef,0x7e,0x67,0x0e,0xff,0x12,0x43, -0x6d,0xaf,0xcf,0x0b,0x5a,0x5b,0xa0,0x4f,0x34,0xb5,0x01,0x7f,0x09,0xfc,0x9b,0x6b, -0x69,0x8e,0x4a,0xea,0x4d,0xd5,0xb2,0x35,0x67,0x5e,0xe8,0x3a,0x6b,0x62,0x45,0x08, -0xbd,0x6b,0x3a,0x4e,0x47,0xd4,0x9e,0xe9,0xea,0x1b,0xf3,0xc2,0xff,0x15,0x7f,0x76, -0x50,0x5c,0x34,0x5b,0x1d,0xd5,0xd1,0x57,0x0d,0x4d,0x20,0x75,0xb3,0xed,0x68,0x6d, -0x28,0xf8,0xd8,0xa3,0xf3,0x5a,0x63,0x5d,0x0b,0x17,0x6d,0xab,0x2d,0x6d,0x5e,0x68, -0x68,0x76,0xdd,0xd2,0x3b,0x8e,0x6e,0xb6,0x05,0xf6,0x96,0xfd,0xf3,0xcb,0x1e,0x24, -0x6b,0x16,0x5c,0x8b,0x5a,0xbb,0x41,0x1c,0xad,0xd5,0x31,0x54,0x47,0x23,0x4e,0x53, -0x75,0x48,0x53,0x33,0x3a,0x36,0xd9,0x32,0xbb,0x64,0xb5,0xab,0x1b,0x0d,0xb2,0xa6, -0xda,0x4e,0x96,0xb4,0xcc,0x86,0x66,0xb5,0xe1,0xcf,0xaa,0x6e,0x68,0x64,0x53,0x5b, -0x25,0x6a,0xa7,0x63,0x4b,0x71,0x75,0x6f,0xe8,0xda,0x66,0xc7,0xb4,0x1c,0x8e,0xd2, -0x4d,0xbd,0xe1,0x34,0xe7,0x1b,0xda,0x86,0x5e,0xd7,0x44,0x7a,0x93,0x25,0x7a,0x5b, -0x77,0x74,0xd5,0x10,0xed,0xba,0x6a,0x68,0xf3,0xb2,0x94,0x87,0x4a,0xe0,0x59,0xab, -0xdb,0x0a,0x1e,0xf9,0xe8,0x1d,0xdd,0x31,0xb4,0x85,0x23,0x8b,0x72,0xff,0x3f,0xaf, -0xdc,0xfc,0xd5,0xf5,0xfe,0x85,0x57,0x7a,0x57,0xde,0x9f,0xcb,0xb1,0xc7,0x83,0x24, -0x30,0x32,0x45,0x20,0x53,0x04,0x32,0xc5,0xba,0xda,0x51,0xc3,0xac,0xdb,0xd2,0x6c, -0x1f,0xb7,0xa1,0xb7,0x8f,0x13,0x4b,0x33,0xe6,0x05,0x1d,0xde,0x0b,0xc4,0xd6,0x4f, -0x6a,0xf6,0xbc,0x20,0x57,0x95,0x13,0xf0,0x9f,0x40,0x9a,0x96,0xb6,0x36,0x2f,0x60, -0x97,0xcc,0xe4,0x72,0x5b,0xdd,0xb6,0x63,0xb6,0xd7,0x25,0xbd,0xde,0xcd,0x39,0x75, -0x39,0xa7,0xb7,0xd4,0x75,0xcd,0xce,0xa9,0xed,0x86,0x65,0xea,0x0d,0x11,0xf8,0x7e, -0xdc,0x31,0x3b,0x52,0xa7,0xbd,0xee,0xe3,0x7f,0x48,0x14,0xc9,0xc1,0x06,0xb0,0xd9, -0x24,0x4d,0xb3,0x85,0x1d,0xa3,0x69,0x6d,0xb2,0x66,0x5a,0x64,0x45,0x5d,0x53,0x2d, -0x9d,0x98,0x6d,0xa2,0x1f,0x5e,0x21,0xa2,0x18,0xd3,0x12,0x20,0x1f,0x1a,0xb2,0xab, -0xf6,0x8c,0x2a,0x6d,0x3b,0xaa,0xd3,0xb5,0xc5,0x55,0xd5,0x82,0xcb,0xad,0x10,0x9a, -0x55,0x43,0xad,0x1f,0x1f,0x1b,0x11,0xe5,0x3e,0x57,0xfa,0x10,0xc8,0x90,0x05,0x5d, -0x4a,0x1e,0xd1,0x6c,0x7d,0xbd,0x4d,0x96,0x75,0x47,0x8b,0xe1,0x32,0xc3,0xe5,0x98, -0xdd,0x7a,0x53,0x44,0x8e,0x8b,0x1d,0x4b,0xab,0x83,0x7c,0x9b,0xb6,0xd6,0x18,0x8f, -0xdb,0xba,0x69,0x27,0x72,0xfa,0x08,0xca,0x27,0xa2,0xa5,0x1c,0xfe,0xb9,0xde,0xae, -0x90,0xb4,0x5c,0x2c,0x9e,0x80,0xff,0xc8,0x14,0x71,0xf0,0x6d,0xdd,0x34,0x4c,0x2b, -0x13,0xcf,0xef,0x96,0x8d,0xe4,0xe9,0x75,0x15,0x87,0x8e,0x88,0xc8,0x1e,0xc3,0x3a, -0xe3,0x07,0xd1,0x70,0x2a,0x69,0x0b,0x73,0x2d,0x9b,0x6f,0xaa,0x4b,0x09,0xdf,0xe4, -0x50,0x0b,0x86,0x52,0xb2,0x88,0x74,0x73,0xfc,0x7e,0xb8,0x50,0x98,0x56,0x1e,0xf9, -0x61,0x0c,0x8b,0xed,0x26,0x8c,0xbf,0x7a,0xd7,0x21,0x4c,0xa2,0xc7,0xe1,0xe9,0x9a, -0xba,0x81,0xc0,0x21,0x6a,0x38,0x84,0x28,0x28,0x76,0x53,0xd3,0x1c,0x0f,0x9b,0x6a, -0x83,0xf2,0xb2,0x73,0x75,0xdb,0xae,0x75,0x40,0x68,0x24,0xb8,0xf0,0xcb,0x51,0xe8, -0x85,0x80,0x65,0x52,0xab,0x61,0x88,0x2d,0xad,0xdd,0x25,0xcf,0xf2,0x7c,0x24,0xa4, -0xa5,0x9e,0x10,0x9b,0x9a,0xbe,0xde,0x74,0x66,0x48,0x21,0x9f,0xef,0x9c,0x20,0x0f, -0xe9,0x2d,0xd4,0x1d,0x6a,0xdb,0x99,0x0d,0x83,0x9a,0x1b,0x9a,0xb5,0x66,0x98,0x9b, -0xe2,0xd6,0x0c,0x51,0xbb,0x30,0x96,0x62,0x21,0xb7,0x5d,0x0a,0x72,0x1e,0x09,0x73, -0x39,0x57,0xf1,0xce,0xad,0x9a,0x8d,0x2d,0xfc,0xdb,0xd0,0x37,0x48,0xdd,0x00,0xf2, -0x51,0x4b,0xb6,0x4c,0xd1,0x50,0x41,0xd7,0x39,0x04,0x49,0xe4,0x2e,0x9f,0xb6,0x07, -0x5f,0x88,0xe2,0x9a,0x7e,0x42,0x83,0x41,0x6e,0xa9,0x9b,0x9a,0x15,0xf3,0x02,0xab, -0xd2,0x2c,0x9f,0x0d,0xec,0x36,0x54,0x99,0xfb,0x28,0x28,0x5a,0xab,0x85,0x0b,0xd1, -0x82,0x1c,0x89,0x83,0x90,0xa2,0x65,0x6e,0xf2,0xd0,0xb4,0xc4,0x6a,0xd7,0x81,0x4e, -0xe5,0x0b,0xb9,0x4f,0xdc,0xb6,0x84,0xef,0x60,0x66,0xc0,0x21,0xa8,0xad,0xad,0x69, -0x75,0xd6,0x40,0xf6,0x5e,0xa4,0x42,0x4a,0xb4,0x86,0xee,0x88,0xae,0xb2,0x46,0x59, -0x8c,0xd6,0x46,0x6b,0xd4,0xfd,0xca,0xdc,0x51,0x4f,0xcb,0xda,0x71,0xb0,0x4c,0x26, -0x36,0xd6,0x13,0x5e,0xd1,0xd7,0x5d,0x5b,0x23,0x27,0x50,0xde,0x66,0x98,0x78,0x3d, -0x4c,0x87,0x0b,0x52,0x22,0xe4,0x92,0x50,0xe6,0xe2,0x71,0xce,0xe5,0xf4,0x28,0x7b, -0x72,0xac,0x7d,0xd1,0xc7,0x76,0x47,0x6d,0x0f,0x32,0xda,0xd5,0x6b,0x83,0xb3,0x0d, -0x82,0x47,0x51,0xc4,0x76,0x95,0x08,0x90,0x75,0xec,0xd3,0xb9,0x1c,0xbc,0x8f,0x16, -0x41,0x2d,0x35,0xf9,0xbe,0xfb,0xde,0xc3,0xc5,0xd2,0x2c,0xfd,0xa1,0x63,0xde,0x57, -0x6e,0x49,0xd5,0x7a,0xff,0xf4,0x06,0x68,0x86,0x86,0xb5,0xea,0x80,0x99,0x32,0x56, -0xa1,0xe4,0x9e,0x1f,0xbb,0x4e,0x2a,0x0c,0x63,0x43,0x0f,0x91,0x0f,0xc7,0x52,0xdb, -0x36,0x9a,0x2e,0x20,0x24,0xe3,0xd7,0x9e,0x1b,0xbb,0x7a,0x14,0xa5,0x91,0x80,0xbe, -0x74,0x8d,0x86,0xec,0x1a,0x7c,0x37,0x53,0x8d,0xe8,0x76,0x2b,0x7f,0x3d,0xd8,0xc5, -0xf8,0x36,0xe8,0xe0,0x55,0x13,0xaa,0x6b,0x01,0x18,0xe8,0xcd,0xf1,0x3a,0x1a,0xa6, -0xc2,0xdd,0xf6,0xb2,0xa1,0x47,0x49,0xad,0xd5,0x60,0x3e,0x6f,0x09,0x60,0xae,0xd4, -0x61,0x5a,0x3a,0x3e,0x2f,0x2c,0x36,0xc1,0xc0,0xd5,0x96,0xe1,0xa7,0x0b,0x53,0x48, -0x3a,0xa5,0xb5,0x53,0x19,0x61,0xe1,0xd1,0xf6,0xba,0xa1,0xdb,0xcd,0xb9,0x9c,0xa1, -0xef,0x5d,0x55,0x75,0x5a,0xd5,0x8d,0xcf,0x3e,0xea,0xff,0xfe,0xcc,0xde,0xd6,0xf4, -0x74,0x07,0x6b,0xea,0x5f,0x7a,0xaf,0xff,0xe6,0xdf,0x6e,0x7e,0xf8,0xc7,0xf1,0x2a, -0x9b,0xcb,0x75,0x8d,0x18,0x28,0x77,0x24,0xfb,0x75,0x59,0xda,0xaa,0x69,0x3a,0xe9, -0x8c,0x10,0xaf,0xe0,0x26,0xa2,0xcd,0x13,0x70,0xe3,0xb0,0x67,0xd5,0x53,0x99,0xf8, -0xa6,0x14,0x3c,0x23,0x61,0x6f,0x54,0x3c,0xaf,0x7c,0x99,0x19,0xa0,0x59,0xde,0x6d, -0xd4,0x08,0x18,0x98,0xd2,0x6b,0x35,0xee,0x11,0x35,0x18,0x45,0x71,0xd5,0xe8,0x6a, -0xe2,0xba,0xa5,0x6d,0x89,0xd5,0x7c,0x9e,0x7b,0xe1,0x68,0x27,0x1c,0xfe,0x6d,0x29, -0x1f,0x9a,0xcd,0xdb,0x6a,0xb8,0x2e,0xb8,0xd7,0xd7,0xa9,0x55,0x47,0x71,0x44,0x6e, -0x07,0xea,0xaa,0xe4,0xf3,0x03,0xd3,0xbd,0xca,0xcb,0x46,0x80,0xa0,0x56,0xa3,0x16, -0x9b,0xfb,0x50,0x54,0xeb,0x8e,0xbe,0xa1,0x79,0x06,0xdb,0xd3,0xea,0x86,0xca,0x9c, -0xc2,0x99,0x95,0xa6,0xb9,0xf9,0x04,0x4a,0xb7,0x9c,0x99,0x1d,0xd1,0xf7,0x89,0x8d, -0x2c,0x22,0x0b,0xc2,0x92,0x41,0x2c,0x13,0xdc,0x36,0x01,0x6c,0x5b,0x1b,0xec,0x53, -0x4a,0xd1,0x64,0xa5,0x05,0xdd,0xa7,0x09,0xc8,0xca,0xc0,0xdc,0x8f,0x8e,0xba,0x40, -0xdd,0xf5,0x1f,0x6b,0x5b,0xf3,0xc2,0x12,0x56,0x03,0xca,0xe5,0xea,0xad,0x77,0xfe, -0x15,0x3f,0xeb,0xe7,0xd4,0x5d,0xf5,0xc8,0xb0,0x2e,0x50,0xee,0xad,0x2e,0x00,0xa3, -0xdf,0xd1,0xdb,0xeb,0xf6,0x5d,0xe8,0x86,0x45,0xb3,0xbd,0xa6,0x83,0x33,0x72,0xf3, -0xe3,0x2f,0x76,0xae,0x7f,0xbc,0xe7,0x1d,0x51,0xb8,0xb7,0x3a,0x42,0xad,0xd7,0x35, -0xf0,0xbd,0x54,0x43,0xb5,0x5a,0x77,0xa1,0x33,0x8e,0xe8,0x2d,0xad,0x71,0x44,0xb5, -0x8f,0x0b,0x0b,0xbd,0x8f,0x5f,0xef,0x5f,0xfa,0xe4,0xc6,0xd5,0xab,0xbd,0x73,0xef, -0xec,0x79,0xaf,0x14,0xef,0xad,0x5e,0xa1,0x13,0xfb,0xdd,0xed,0x8e,0xfe,0x8b,0x67, -0x6f,0xbd,0xfa,0xf1,0xcd,0x33,0x1f,0x42,0xbf,0xdc,0xf8,0xfc,0xec,0x9e,0xf7,0x48, -0xe9,0xde,0xea,0x11,0xbd,0xbd,0x66,0xde,0x85,0x0e,0x59,0xd9,0xb2,0xc1,0x8e,0x5c, -0xa1,0xa1,0x35,0x61,0x61,0xe7,0x1f,0x57,0x77,0xae,0xbe,0xb5,0x73,0xee,0x93,0xfe, -0xa9,0xd3,0x7b,0xde,0x21,0xe5,0x7b,0x6d,0x88,0x98,0xdd,0x46,0xad,0x61,0x6e,0xb6, -0x0d,0x53,0x6d,0xdc,0x85,0xae,0x39,0x7c,0xe4,0x20,0x28,0xad,0x37,0xae,0xdc,0xb8, -0xfa,0x49,0xef,0xfc,0x99,0x9d,0x24,0x4f,0x7e,0x82,0x3d,0x32,0x7d,0x6f,0xf5,0x48, -0xdb,0x74,0x34,0xfb,0xae,0x8d,0x91,0x65,0x73,0xdd,0x1b,0x20,0xe0,0x55,0xf5,0xbe, -0xbc,0x34,0x46,0x77,0xcc,0xe5,0x80,0xfd,0xbe,0x29,0xcf,0x99,0xf5,0x2d,0x55,0x6f, -0xc7,0x85,0xca,0xdc,0x18,0xe9,0xb0,0xa8,0xda,0xba,0xa5,0x37,0x08,0x35,0xc8,0x39, -0x60,0xf6,0xbf,0xa4,0x08,0x4f,0x07,0x3a,0x97,0xe0,0x8f,0xcc,0x4c,0x75,0xcd,0x30, -0xfc,0x0b,0x51,0x2c,0x62,0x97,0x72,0xf7,0x15,0xbc,0x17,0x1d,0x8c,0xd4,0x33,0xb7, -0x8c,0xd6,0xe8,0x5d,0x88,0xc0,0x76,0x1a,0x27,0xd2,0x83,0x80,0x6b,0x52,0xbd,0x94, -0x4a,0x93,0xae,0xe6,0xd8,0xac,0x02,0xd5,0x62,0x98,0xec,0xa6,0x0a,0x23,0x49,0x14, -0x95,0x46,0x67,0x1c,0x92,0x0a,0x51,0x92,0xd8,0x63,0x59,0xa1,0xcf,0xdd,0x90,0x7a, -0xa2,0x70,0x45,0x18,0x88,0x44,0xd4,0x6a,0x76,0xb7,0x83,0x61,0x58,0x68,0x05,0x95, -0x65,0xc6,0xc4,0x44,0x01,0x8c,0x45,0x41,0xe3,0x6d,0x7e,0xbb,0x44,0x51,0x3b,0x01, -0xf2,0xd0,0x10,0x86,0x08,0x32,0x0b,0xaf,0x2a,0x09,0xa8,0x5c,0x42,0x58,0xd8,0xae, -0xff,0xd2,0xfb,0xbd,0x17,0x3e,0x01,0xff,0x4f,0x19,0x36,0x30,0x62,0xe2,0x74,0xd1, -0xc0,0x0d,0x7a,0xcc,0xb6,0x59,0x3f,0xae,0x39,0xb5,0xae,0x21,0x84,0x43,0xc8,0xba, -0xed,0x50,0x29,0xb2,0x5c,0x6e,0xe3,0x83,0x91,0xf4,0x87,0x83,0x11,0x58,0xc4,0x0d, -0x46,0x24,0x0e,0xee,0x68,0xb8,0xd2,0x2f,0x22,0x76,0x2c,0xbd,0xa5,0x5a,0x5b,0x62, -0x8c,0xdc,0xef,0xc2,0xe0,0x6e,0xea,0x46,0x63,0xd9,0xc4,0x15,0xa0,0xde,0xc5,0xcb, -0x3b,0xaf,0x7e,0xb0,0xf3,0xd7,0xf7,0x6e,0xbd,0x1a,0x3f,0x81,0x71,0xda,0x21,0xf9, -0xe5,0xb8,0xd4,0xdb,0x1a,0xd0,0xdd,0x40,0xfa,0xd1,0x65,0x4d,0x56,0x6f,0xc8,0x34, -0x75,0x55,0x0b,0x05,0xd1,0xec,0x4d,0xdd,0xa9,0x37,0xbd,0x58,0x48,0xf8,0x2e,0x14, -0x19,0x11,0x46,0xd0,0x48,0x63,0x64,0xb4,0x27,0x19,0x12,0xb1,0x8e,0xec,0x10,0x0d, -0x33,0x58,0x11,0x8b,0xa5,0x48,0x6f,0x77,0xba,0x0e,0xc1,0xd5,0xdf,0x79,0xa1,0xde, -0xd4,0xea,0xc7,0x57,0xcd,0x13,0x02,0x95,0x96,0x04,0x64,0x83,0xd4,0x03,0x1b,0x10, -0x89,0x30,0x92,0x8b,0x14,0xbf,0xd6,0xc8,0x25,0xf3,0x27,0x47,0x19,0x74,0x27,0x9d, -0x45,0x23,0x5c,0xf7,0x9a,0xe8,0x2e,0x6b,0xa0,0x2f,0x76,0x5e,0xfd,0x57,0xff,0xca, -0xc5,0xfe,0x8b,0x67,0x76,0xde,0xbd,0xb2,0x73,0xfa,0xf2,0x83,0x2a,0xb7,0xf9,0x09, -0x88,0x6b,0x7e,0x5f,0x4a,0xf7,0x40,0x4a,0x57,0xe8,0xf4,0x71,0xd0,0x30,0x60,0x72, -0x3a,0x75,0xb5,0x77,0xed,0x54,0xef,0xf9,0x7f,0x3c,0xa8,0x52,0xaa,0x22,0x17,0xee, -0x58,0x4e,0x11,0xcb,0xbe,0xa4,0xde,0x9e,0xa4,0xee,0xc9,0xb2,0x31,0xb3,0x90,0xee, -0xeb,0x65,0xe3,0xdd,0x8c,0x75,0xcf,0x0a,0x75,0x25,0x25,0x54,0xc0,0x65,0x95,0xde, -0x6e,0x68,0x27,0x84,0x05,0x51,0x7e,0x50,0x35,0x81,0x3c,0x01,0x3d,0x20,0xef,0x6b, -0x81,0x7d,0x2d,0x70,0x3f,0x68,0x01,0xe5,0x41,0xd5,0x02,0xca,0x04,0xb4,0x80,0xb2, -0xaf,0x05,0xf6,0xb5,0xc0,0xfd,0xa0,0x05,0x0a,0x0f,0xaa,0x16,0x28,0x4c,0x40,0x0b, -0x14,0xf6,0xb5,0xc0,0xbe,0x16,0xb8,0x1f,0xb4,0x40,0xf1,0x41,0xd5,0x02,0xc5,0x09, -0x68,0x81,0xe2,0xbe,0x16,0xd8,0xd7,0x02,0xf7,0x83,0x16,0x28,0x3d,0xa8,0x5a,0xa0, -0x34,0x01,0x2d,0x50,0xda,0xd7,0x02,0xfb,0x5a,0xe0,0x7e,0xd0,0x02,0xe5,0x07,0x55, -0x0b,0x94,0x27,0xa0,0x05,0xca,0xf7,0xb8,0x16,0xa0,0xdb,0x09,0x92,0xd0,0xc7,0x67, -0x2e,0xc4,0xee,0x3c,0x72,0x9f,0xed,0x27,0xb8,0xdc,0x61,0x82,0xcb,0xb7,0x22,0xbd, -0xa5,0x77,0xee,0xad,0x9d,0x97,0xce,0xf4,0xde,0xf8,0x62,0xcc,0xdc,0x96,0x11,0x64, -0xe3,0x98,0xa9,0x3b,0x22,0xee,0x4a,0x77,0xc4,0x8e,0x6a,0x8d,0x1a,0x18,0x09,0x12, -0x13,0xc7,0xb2,0x68,0x47,0x8e,0x42,0x4d,0xf7,0x6e,0xce,0x0b,0xee,0xc6,0xd0,0x82, -0x5c,0xea,0x9c,0x98,0xf5,0xb7,0x7f,0x9e,0x98,0xb1,0xeb,0x96,0x69,0x18,0xb3,0xdc, -0x86,0xd0,0xa6,0xde,0x68,0x68,0xed,0xd9,0x91,0x2c,0xa5,0x72,0xe1,0x53,0xbe,0x29, -0x8c,0xa3,0x30,0x1d,0x6b,0x0c,0x28,0x06,0xd9,0x58,0xe8,0x5d,0xff,0x5d,0xef,0xec, -0x79,0xd6,0x33,0x33,0xae,0xb2,0x45,0xc6,0x76,0x7c,0x05,0x64,0x77,0x69,0xde,0xb6, -0xb0,0x90,0x77,0x15,0x03,0xf9,0xf9,0x5c,0xce,0x69,0xec,0xa2,0x8e,0x1b,0x57,0xcf, -0xf5,0x2f,0xbd,0xb7,0xf3,0xea,0xbf,0x6e,0x9d,0xb9,0xc0,0xd7,0xb1,0x59,0x73,0xfc, -0x5a,0x34,0xcb,0x32,0x2d,0xae,0x8e,0xe3,0x3f,0xff,0x7f,0x9f,0x36,0x77,0x59,0x4f, -0xff,0x0f,0x1f,0x24,0xd4,0xb3,0x35,0xd9,0x7a,0x4e,0x5d,0x8d,0xa9,0x64,0x22,0x55, -0x00,0x98,0x35,0x52,0xf3,0x52,0xa1,0x18,0x05,0x15,0x1d,0x21,0x3e,0x79,0xde,0x03, -0x02,0x17,0x1d,0x10,0x48,0x98,0xe2,0xc4,0x35,0xb3,0x6b,0x39,0x4d,0x61,0x0c,0x16, -0x84,0x25,0x5d,0xa9,0xe4,0x41,0xd2,0xc1,0x3c,0x5b,0xd7,0xdb,0x22,0xe8,0xa9,0x99, -0x22,0xde,0xc7,0xef,0x22,0x1d,0x37,0x7b,0x6d,0x8f,0xe6,0x07,0x25,0x4e,0x19,0x97, -0xa8,0x32,0x66,0x29,0x95,0xa8,0xe9,0xec,0x67,0xba,0xaa,0xa5,0x25,0xea,0xf3,0x38, -0x06,0xb9,0x0c,0xf1,0xc6,0xf6,0x0c,0xe9,0xb6,0x6d,0xcd,0x99,0x1d,0x35,0x7f,0xdc, -0xae,0xb2,0x1d,0xa9,0x64,0x77,0xae,0xbf,0xbc,0x73,0xf5,0x4d,0x6f,0x07,0x4a,0xac, -0x9e,0x4d,0xe4,0xf0,0x58,0xb3,0xc9,0x6e,0x5a,0x4c,0xb1,0x82,0x81,0xd4,0x22,0xcc, -0x40,0x03,0x83,0x76,0xe4,0x6c,0x84,0x42,0x0b,0x7f,0x6b,0x9b,0xfa,0x9a,0x5e,0xb3, -0x35,0x63,0x4c,0xb5,0x8e,0x04,0x23,0x7d,0x6b,0xba,0x66,0x34,0x3c,0x43,0x2e,0xfc, -0xc0,0xbf,0x13,0x45,0x20,0x5c,0xa5,0x4d,0x62,0x76,0xe1,0xba,0xe6,0xd0,0xae,0xd6, -0x0c,0xf4,0x04,0x42,0x77,0xb5,0xda,0x9a,0xee,0x6d,0xf9,0x1f,0xa9,0xae,0x99,0x71, -0x47,0xd5,0x81,0x47,0xbd,0x6b,0xea,0x31,0xd6,0x6d,0xa8,0x46,0x17,0x6e,0x84,0x58, -0xa2,0xc7,0xb6,0xef,0xf0,0x9f,0xa5,0x81,0x54,0xb6,0x8d,0xad,0xf1,0x28,0x62,0x34, -0xb0,0x49,0x87,0xa3,0x82,0x1d,0xdb,0xe0,0x93,0x3a,0x12,0x17,0x4f,0x36,0xdb,0xcd, -0x6c,0xae,0xaf,0x1b,0x5a,0xad,0xc6,0xb8,0x38,0x9e,0x0b,0xb4,0x0b,0x77,0x68,0x0c, -0xd7,0xe8,0xb8,0xb6,0xb5,0x6a,0xa2,0x9c,0xaa,0xa0,0x75,0x37,0x69,0x92,0xbe,0x90, -0x1b,0x4b,0xd1,0x8e,0xae,0x3a,0x3e,0x5f,0x3c,0xc6,0xad,0xa0,0x2e,0x40,0xd0,0xe3, -0xf1,0x9d,0x4b,0x41,0x85,0x85,0x95,0x95,0xc7,0x1e,0x19,0x6e,0x7f,0x07,0x2d,0x76, -0x53,0x78,0x6d,0xbd,0x81,0x88,0x6b,0x34,0x47,0x37,0x52,0xd9,0xe8,0x96,0xc6,0x6d, -0xdf,0xc6,0x0b,0x51,0x74,0x77,0x65,0x1b,0xda,0x9a,0xc3,0x6f,0xea,0x1e,0x29,0x07, -0xc9,0xb6,0xfd,0x28,0xdd,0x3e,0x30,0xc8,0xeb,0x5d,0x1b,0x48,0xa8,0x61,0x13,0xef, -0xc2,0x38,0x1f,0x55,0x05,0x1b,0x20,0xe3,0x0f,0x72,0x9e,0xfa,0xa1,0x43,0x9a,0x57, -0x02,0xe3,0x89,0xd4,0x30,0x19,0x62,0x22,0xc0,0x57,0x3e,0xa6,0x54,0x8d,0xd5,0x35, -0x93,0xe0,0xf3,0xae,0x59,0xd8,0x81,0x3a,0x37,0x4d,0xab,0x31,0x01,0xcd,0xc8,0x58, -0xed,0x23,0x9c,0x30,0xbb,0x03,0xbc,0xbd,0xcb,0xbf,0xd9,0x79,0xfb,0xf4,0x64,0x98, -0xbe,0x6b,0x22,0x2d,0xb5,0xa1,0x9b,0x7e,0xb8,0x22,0x74,0xb3,0x9b,0xd8,0x05,0x17, -0xc1,0x70,0xdb,0xa7,0x76,0xc6,0xd2,0xdb,0xfc,0xb4,0x42,0xab,0x17,0xf8,0xde,0x54, -0x3b,0xc2,0x00,0xb1,0xb5,0x1a,0x0b,0x3e,0x8d,0x47,0x12,0xfe,0x63,0xb3,0x93,0xeb, -0x63,0xfb,0xb3,0x96,0x2c,0xdc,0x4e,0xd0,0xc8,0x25,0xc1,0x95,0xce,0xde,0xb5,0x53, -0x3b,0xbf,0xfa,0x68,0xe7,0x97,0x9f,0x8f,0x1b,0xea,0x18,0x47,0x5b,0x87,0xfa,0xc8, -0x66,0xbb,0x9e,0xb8,0xae,0xd9,0xb3,0x1e,0xb3,0x87,0x6f,0xb0,0xda,0x45,0xb7,0x79, -0x98,0xf6,0xac,0xef,0x30,0xdb,0x85,0xc5,0xa6,0xee,0xbc,0x0f,0x6f,0x7e,0xf9,0xc7, -0x9f,0xc3,0x24,0x38,0xa1,0x1e,0x1c,0xee,0x90,0xa0,0x05,0x7b,0xc7,0x76,0x34,0xb3, -0x80,0x6d,0xce,0xd2,0x5f,0x05,0x3d,0x12,0x3e,0x47,0x29,0x84,0x45,0xe5,0x0c,0xc9, -0xee,0x6a,0x4b,0x1f,0x22,0x1b,0xf1,0x01,0x6f,0x2f,0x9a,0x4d,0xf7,0xed,0x69,0x8d, -0x31,0x82,0xe0,0xc3,0x84,0xa8,0x7f,0xe1,0xe2,0x8d,0x2b,0xef,0x26,0xb1,0x48,0xbd, -0xe7,0x3c,0xb6,0x93,0x2c,0x52,0xfd,0x8d,0x3b,0x6c,0x87,0x7e,0x72,0xe4,0x08,0xd9, -0x43,0x7f,0x6d,0x42,0x6e,0xd9,0xdd,0x33,0x0b,0xc6,0x35,0xa4,0xe8,0xf0,0x68,0x3d, -0xe3,0x38,0x35,0xb5,0xd1,0xb0,0x26,0x36,0xd1,0x73,0x18,0x7b,0x6f,0xfe,0xbd,0xf7, -0x5f,0xa7,0xee,0x39,0xbb,0x6a,0xf7,0x0c,0xa4,0x87,0x5f,0x4e,0x94,0x81,0x0c,0xe3, -0xce,0x5f,0x2f,0xf7,0x2e,0xfc,0xf7,0x03,0xc0,0xc0,0xae,0x3d,0x61,0x01,0xa4,0x08, -0x77,0x5e,0xfd,0xa0,0xff,0xc2,0xa7,0xbd,0x8b,0xe7,0x1f,0x04,0x11,0xdc,0x6c,0x4c, -0x58,0x02,0x37,0x27,0x64,0xa4,0x7f,0xb3,0xf3,0x3f,0x6d,0xcb,0xfe,0xfc,0x7f,0x9f, -0xcf,0xff,0x6c,0x01,0xe6,0xc6,0x67,0xe7,0xfa,0xe7,0xde,0xdb,0xb7,0x05,0xee,0x44, -0x8f,0xac,0x59,0xda,0x33,0x93,0x55,0x24,0x0c,0x23,0xeb,0x9b,0x5b,0x7f,0x7a,0x19, -0xfa,0xe9,0xeb,0x6b,0x2f,0xec,0xbc,0xff,0xca,0xd7,0xd7,0xce,0xde,0xf3,0x8a,0x05, -0xdb,0xf6,0x60,0x6a,0x97,0xc2,0x38,0xda,0x45,0xdb,0xd0,0xda,0x4e,0xb2,0x72,0x89, -0xa3,0x8a,0xad,0xd8,0x22,0x83,0x1d,0x3c,0xf1,0xa8,0xe6,0xa8,0xf6,0xf1,0x9a,0xb3, -0x1a,0x72,0xaa,0x1b,0xaa,0xa3,0xb2,0x25,0x7f,0x8f,0x4f,0xc1,0x93,0xc4,0x5e,0x1b, -0xba,0x30,0x38,0xe7,0x34,0x17,0xfa,0x97,0x3e,0xb9,0x75,0xe9,0x9f,0x73,0x39,0xb8, -0x1c,0x01,0xe8,0x9d,0x45,0x3e,0x0a,0xd0,0xdb,0xef,0x3b,0x1a,0xf0,0x8b,0x0f,0x77, -0x5e,0xba,0x3c,0x4e,0xd5,0xbf,0x3b,0x7f,0xe3,0xfa,0x9b,0x43,0x00,0x87,0x2c,0x80, -0x8e,0xe2,0x40,0x63,0x21,0xaf,0x88,0x72,0x89,0xe4,0xa7,0x67,0x64,0x79,0xc4,0x7a, -0x2b,0x42,0x8f,0x03,0x93,0x9f,0x10,0xcc,0x9c,0xba,0xd0,0x7b,0xe1,0xed,0x5b,0xff, -0xf9,0x2e,0xca,0xf2,0x10,0xf8,0x3b,0x6a,0xbe,0x92,0x57,0xf2,0x22,0xe5,0xc1,0xdc, -0xaa,0xb5,0x40,0xd9,0x30,0x93,0xaf,0xdc,0x45,0x4e,0x94,0xf7,0x9e,0x13,0xf1,0xab, -0xdf,0xbb,0x1a,0xf7,0xb8,0x70,0x29,0xd2,0x49,0xff,0xc1,0x30,0x30,0xfa,0x9f,0x5e, -0xed,0x9d,0x7b,0xdb,0x3b,0xfd,0xee,0xb6,0xad,0x8a,0x28,0xdb,0xbe,0x79,0x03,0x23, -0xb4,0x4e,0x2b,0xec,0x66,0x25,0x34,0xb0,0x19,0xa8,0x7a,0xde,0xd4,0xb4,0xe3,0x0d, -0x75,0x2b,0x58,0x19,0x1d,0x2b,0xce,0x39,0xd4,0x36,0x99,0xc0,0xfa,0x6c,0xde,0x5b, -0xa0,0x0d,0xd1,0xb8,0xbf,0x48,0x7b,0x27,0x8b,0xb4,0xe1,0xee,0x1e,0xba,0x50,0xdb, -0xff,0xc3,0xe5,0xde,0xc5,0x3f,0x7b,0x33,0xdb,0xb8,0x0b,0xb6,0x83,0xb5,0x7c,0x03, -0x2b,0xb4,0xac,0xd5,0x89,0x27,0x47,0x53,0x63,0x03,0x84,0x8c,0x8a,0x18,0xbd,0x61, -0x43,0x48,0x6b,0xcc,0xa7,0x1c,0xab,0xab,0xa5,0xc6,0xec,0xed,0xfe,0xa5,0xb7,0x19, -0x7b,0xc6,0xe9,0xc9,0x91,0x49,0xe3,0x63,0x13,0x5d,0x81,0xbe,0xb9,0x7c,0xa1,0xf7, -0xee,0x5f,0x26,0x89,0x54,0xc6,0x0e,0x7f,0xab,0xff,0xe6,0x5b,0x37,0x3e,0x3b,0x35, -0x49,0xbc,0x8a,0x8f,0xf7,0xca,0x8b,0x93,0xc4,0x5b,0x08,0xe8,0x3d,0x3b,0x49,0xbc, -0x45,0x0f,0x6f,0xef,0x8d,0x37,0x26,0x89,0xb7,0x14,0xf0,0xe1,0xd5,0x49,0xe2,0x2d, -0xfb,0xf4,0x3e,0xff,0xd1,0x24,0xf1,0x4e,0x7b,0x78,0xfb,0x97,0xde,0x1b,0x67,0xc7, -0xc3,0x04,0x72,0x22,0xee,0xce,0xa4,0x37,0x56,0x0a,0xd2,0x64,0xd2,0x8b,0xfc,0xf9, -0xd5,0x3e,0xee,0xd4,0xf4,0xc6,0x89,0xd0,0x7c,0xe6,0x3d,0xdb,0x9f,0xcf,0xee,0x78, -0x3e,0xf3,0xd9,0x3b,0x7c,0x3e,0x73,0x5d,0xaf,0xdd,0xcf,0x64,0x1e,0xfe,0xbd,0x98, -0xc9,0xa8,0x90,0x98,0x1d,0xcd,0xa2,0x4b,0xcf,0x76,0x6d,0xac,0x73,0x08,0xef,0xd6, -0x60,0x9b,0x5c,0x90,0xaa,0x81,0x5f,0xfc,0x08,0x06,0x04,0xbd,0x9d,0x54,0x90,0xca, -0x56,0x5b,0x1d,0x43,0x93,0x31,0xeb,0xf6,0xee,0xad,0x12,0x4c,0x30,0x7e,0xa7,0xb7, -0x34,0x4c,0x2a,0xd5,0x3a,0x38,0x0b,0x07,0x3c,0xa2,0xcf,0xef,0x6f,0x1e,0xd1,0xd4, -0x05,0x16,0x64,0x99,0x19,0x73,0xdb,0x0d,0x9f,0x14,0x01,0x9a,0xc8,0x5c,0x5b,0x23, -0xb7,0xb9,0x29,0xea,0x4e,0xb6,0x44,0x71,0xca,0x61,0xe8,0xae,0xab,0xe4,0xcd,0x4e, -0x5e,0xd9,0xe4,0x6d,0x4e,0xa3,0xb6,0x31,0x0d,0xeb,0xc9,0x91,0xbc,0xfc,0x76,0x86, -0x65,0x07,0xce,0x67,0x3e,0xd8,0x68,0xf8,0xe7,0xa6,0xa7,0x33,0xb3,0xf7,0x57,0x88, -0x76,0x8c,0x60,0x4d,0xf1,0xc1,0x0b,0xd6,0x44,0xcf,0xc6,0xdf,0x5d,0xbc,0x26,0x88, -0x3e,0xd3,0x0f,0xea,0xd5,0xe8,0xe9,0xfe,0x35,0x1a,0xc6,0xb6,0xef,0x52,0x14,0x9a, -0x36,0x60,0xe7,0x7f,0xae,0xf6,0xfe,0xf8,0xdb,0x71,0x02,0xc2,0x67,0xdf,0xbf,0xf9, -0xce,0x8b,0x23,0xc3,0xc2,0x77,0x1a,0x3f,0xbe,0xe3,0xb0,0x61,0xf1,0x01,0x0d,0x1b, -0xb2,0xee,0xf4,0xd8,0xbe,0x1f,0x3c,0xf4,0xfd,0xa8,0x6f,0x69,0xac,0x90,0xe9,0xf6, -0x1a,0x02,0xb1,0x89,0x96,0x7f,0xb0,0xef,0x6b,0xdd,0x89,0xaf,0x15,0x62,0xed,0x70, -0x57,0x0b,0x06,0xcd,0x2b,0x1f,0xdf,0x7c,0xff,0xcf,0xbd,0x0b,0x2f,0xf7,0x7f,0xff, -0x79,0xef,0xda,0x85,0x5d,0xba,0x5d,0x7c,0x55,0xf7,0x6f,0xfc,0xb0,0x77,0xfe,0xb5, -0x5c,0xef,0xdd,0xd7,0x7b,0x67,0xae,0xde,0xdd,0x00,0x22,0xb8,0x01,0xb7,0x5e,0xfb, -0x12,0x3a,0xe9,0xbe,0x0a,0xec,0x7c,0xbb,0x14,0x92,0xec,0x29,0x24,0x66,0x81,0xa0, -0x33,0x67,0xd7,0xf0,0x83,0x20,0x36,0x73,0xec,0x58,0xde,0x79,0xfc,0xbb,0x7d,0x35, -0x75,0x27,0x6a,0x2a,0x89,0xe1,0x43,0x9d,0xe4,0xe4,0xde,0xe0,0xf2,0xed,0x61,0xa0, -0xf6,0xff,0xf6,0x4e,0xff,0xb5,0xbf,0xef,0x52,0x9b,0x25,0x50,0xb4,0x67,0xe1,0xa4, -0x84,0x86,0xb0,0x91,0x85,0xdf,0xa3,0x76,0x2d,0x2d,0x61,0x7f,0xec,0xef,0xc9,0xd8, -0x17,0xfd,0xc1,0xcf,0x8c,0x36,0xce,0x1a,0xe1,0x1f,0xec,0x0f,0xf3,0x3b,0x19,0xe6, -0x21,0xd6,0x0e,0xb7,0x46,0xa8,0x8b,0xb5,0xf3,0xfa,0xaf,0x6f,0x2b,0x02,0xcc,0xd7, -0xb3,0x67,0x23,0x76,0xd5,0x69,0xbb,0xf1,0x92,0x60,0x94,0x4e,0x66,0x70,0x7e,0xeb, -0x43,0x3c,0x6a,0xa3,0xf1,0x03,0x6a,0xed,0x3d,0x8a,0x4e,0xfa,0x37,0x1f,0xe4,0xa1, -0x5e,0xdf,0x5d,0x0d,0xf2,0x94,0xe2,0xfc,0x69,0x76,0xfe,0xcd,0x24,0x52,0xf1,0xf6, -0x3c,0xe2,0xb1,0x73,0xf6,0x85,0xfe,0x9b,0x7f,0x1b,0x1d,0xbc,0xa0,0x92,0x8e,0x1f, -0xf7,0xab,0x81,0x33,0x6c,0xd3,0xc8,0xec,0x86,0x2c,0xe5,0xa5,0x42,0x61,0xaf,0xf2, -0xe1,0x1e,0x7b,0x62,0x74,0x42,0x56,0x40,0x95,0x0e,0x5c,0x94,0xab,0x8a,0x24,0x97, -0x2b,0x40,0x93,0xa4,0x28,0xca,0x5e,0x25,0xaa,0xf5,0x3e,0xba,0xb8,0x73,0xfd,0xe5, -0xfe,0x4b,0x7f,0xa1,0xb9,0xf9,0xe3,0x53,0xd8,0xa2,0x9f,0x8f,0x54,0x4a,0x25,0xc9, -0xfb,0x2f,0xbf,0x57,0x24,0x02,0x7d,0x2c,0xf5,0x71,0x6c,0xe2,0xd6,0x61,0x3a,0xda, -0xc4,0x04,0x1d,0x8e,0x87,0xf2,0x9e,0x71,0xf0,0xe2,0xe5,0xde,0xb9,0x0f,0xfc,0x8c, -0xcf,0x71,0x88,0xec,0x76,0x98,0x71,0x2d,0xe7,0x67,0xe4,0xc2,0x4c,0xb1,0x30,0xa9, -0xdc,0xbb,0xdb,0x50,0x8f,0x9e,0x01,0xd6,0xd0,0xed,0x8e,0xa1,0x6e,0xcd,0x90,0x35, -0x43,0x3b,0x31,0x4b,0x54,0x43,0x5f,0x6f,0x8b,0xe8,0xad,0xd9,0x33,0xa4,0x0e,0xc3, -0x5d,0xb3,0x66,0xe9,0x2b,0x71,0xd3,0x52,0x3b,0x33,0x04,0x7f,0x67,0x87,0x1f,0x21, -0xe8,0x22,0x5e,0x33,0xdb,0x8e,0x68,0xeb,0x27,0xb5,0x99,0xbc,0x54,0xd1,0x5a,0xb3, -0x78,0x6c,0xdd,0xc5,0x9d,0x77,0xaf,0x7c,0x7d,0xed,0x75,0xe6,0xf9,0x79,0x1f,0x5e, -0x42,0x3f,0xbd,0x64,0x7f,0x7d,0xed,0x45,0xff,0x1b,0x4c,0xb7,0x2e,0x7d,0xb8,0xf3, -0xab,0xd3,0x05,0x30,0x74,0x7b,0x17,0x2e,0xe3,0xda,0xcc,0xc5,0xcb,0x6c,0xaf,0xf0, -0xad,0x33,0xe7,0xfb,0xbf,0xff,0xfb,0xad,0xe7,0xcf,0x83,0x68,0x40,0x01,0x39,0x6f, -0xfb,0x65,0x6e,0x7c,0xf9,0x5f,0xfd,0x17,0x4f,0xb3,0x92,0xfd,0xd3,0x7f,0xea,0xbd, -0x7b,0xbe,0x77,0xe6,0x4a,0xef,0xa5,0x5f,0x0e,0xf9,0x0e,0x70,0x12,0xe7,0xd8,0xe7, -0x00,0xe9,0x29,0x64,0x38,0x8f,0x0c,0x5d,0xa7,0xd8,0xe5,0xd9,0x83,0x63,0x5a,0x40, -0x49,0x67,0x10,0xa2,0xfe,0x1d,0x6a,0xeb,0x0c,0xb3,0x71,0x92,0x6d,0x1b,0xfa,0x21, -0x7a,0xb6,0x12,0xe6,0xe5,0xaf,0x2a,0xde,0x27,0x05,0xc8,0xc0,0x07,0xe9,0xb9,0x99, -0x74,0x60,0x36,0x64,0xa6,0x84,0xed,0x88,0x6c,0x75,0x95,0xc7,0xb6,0x07,0xf9,0xe3, -0xe5,0xb1,0x66,0xad,0x51,0x61,0xe0,0x6f,0x2a,0xb8,0xdb,0x7b,0xf3,0x83,0x9d,0x2b, -0x5f,0x7a,0x1f,0x17,0xdd,0xdf,0x69,0xb2,0xcb,0x9d,0x26,0xa6,0xa3,0xd6,0xba,0x96, -0x11,0xe4,0xba,0x4c,0x6a,0x9d,0xda,0x43,0xbc,0x70,0xf8,0xc8,0x41,0x32,0x89,0xed, -0xa7,0xdf,0x22,0x4b,0xf7,0xb0,0xa3,0xae,0x38,0xaa,0xe5,0xdc,0x27,0x0b,0x99,0x3e, -0xb3,0x3c,0x81,0xb0,0xd9,0xa7,0x94,0xf9,0x26,0x74,0x2c,0x73,0x1d,0x03,0x10,0x1e, -0x89,0xde,0x7d,0xbc,0x62,0x7f,0x60,0xb4,0x0f,0x98,0xcb,0x28,0xdb,0xdf,0x90,0xf6, -0x71,0xfb,0xeb,0x87,0x70,0x2d,0xf8,0xaa,0x28,0x07,0x4f,0x72,0x6b,0xba,0xa1,0xfd, -0xac,0x43,0x3f,0xf2,0x4c,0x5a,0x9a,0xd3,0x34,0xf1,0x20,0x44,0x13,0x0f,0x5d,0xd2, -0xda,0x75,0xa6,0x03,0x5a,0x5d,0xc3,0xd1,0x3b,0x20,0xc5,0x74,0x5c,0x51,0xff,0xe1, -0xde,0x52,0x62,0xd8,0xc6,0x40,0x89,0xb1,0x3b,0xf7,0xb4,0x0e,0xef,0xfe,0xbe,0x50, -0x35,0x3f,0xf4,0xfb,0x12,0xf5,0xcd,0x5d,0xd1,0x2b,0x37,0x3e,0x3b,0x77,0xe3,0xda, -0xdb,0x04,0x55,0x77,0xff,0xf7,0x67,0x6e,0x5c,0xfd,0xe4,0x2e,0x6e,0x67,0x9b,0xbe, -0xa7,0x15,0x42,0xf8,0xe3,0xda,0xb7,0xad,0x10,0xec,0x2d,0x5b,0x34,0xcc,0xf5,0xdb, -0x58,0x62,0xee,0x58,0x6e,0xd6,0xc4,0x96,0x5d,0x33,0xf0,0x73,0xdf,0x73,0x39,0x78, -0xf4,0xad,0x90,0xe5,0x1f,0x69,0xce,0xca,0x96,0xbd,0x6c,0xae,0x7f,0xe3,0xf3,0x66, -0xef,0x85,0x4f,0xc1,0x03,0x9a,0xbc,0x50,0x87,0xbe,0x8f,0x9e,0xc3,0x0f,0xa4,0xc3, -0x4d,0x00,0xc6,0x3c,0x04,0x97,0x66,0x7a,0x70,0x1c,0xca,0xb3,0xdd,0x04,0xa1,0x75, -0x4c,0xd5,0x76,0x84,0xb1,0xce,0x7b,0xf7,0x58,0x61,0xa9,0xba,0xad,0x35,0x3c,0x6d, -0xe8,0x7a,0x0e,0x0b,0x2b,0x80,0x8d,0x1c,0x41,0x6c,0xfe,0x21,0xe9,0xcc,0xf9,0x08, -0x4e,0xab,0xc3,0x4a,0x69,0x7d,0x20,0xec,0x34,0x9b,0x30,0x54,0x2f,0x26,0xcc,0xb5, -0xd5,0xfa,0xf1,0x55,0xd5,0x62,0xa3,0xca,0xbd,0xf1,0xf8,0x19,0x95,0x0f,0xef,0x3d, -0x8c,0x03,0x2a,0x97,0x21,0x1e,0x0c,0x1e,0x63,0x1f,0x80,0xbb,0x49,0x7d,0x11,0xfa, -0xb9,0xa3,0xdd,0x39,0xc6,0x05,0xfe,0xd8,0x5c,0x43,0x5b,0xb3,0xf9,0x4f,0xcb,0xaf, -0xb3,0xc0,0x05,0x7a,0x76,0x2a,0x3d,0xdf,0xb7,0xa6,0x1a,0xaa,0x35,0x70,0x40,0xff, -0x5c,0x47,0x75,0x9a,0x04,0x20,0x0f,0xe5,0x49,0xbe,0xa9,0x14,0x37,0x94,0xe2,0x52, -0xfe,0x24,0x18,0xab,0xba,0x61,0xcc,0x0b,0x6d,0xb3,0xad,0x0d,0xb8,0x84,0x41,0x11, -0x45,0x21,0x25,0x69,0x5a,0x31,0xc4,0xa2,0x54,0x16,0x0b,0x52,0xa5,0x2c,0xca,0x92, -0x52,0x25,0xb2,0x54,0x2a,0x10,0x78,0x44,0xf0,0xd1,0xb2,0x0b,0x74,0xf2,0xd0,0xb4, -0x54,0xa9,0xc0,0xa3,0x42,0x75,0xb9,0x0c,0xef,0x64,0x78,0x47,0xe8,0x2b,0xd9,0xe0, -0x4b,0x95,0xaa,0x88,0xa9,0x74,0xf2,0x90,0xac,0x48,0x25,0x52,0x59,0x92,0xe5,0x8d, -0xb2,0x51,0x94,0xa6,0x4b,0x44,0x81,0xc7,0xf0,0x17,0xeb,0x28,0x88,0x45,0x51,0x91, -0x0a,0xd3,0x47,0x2b,0x08,0x47,0x8a,0x75,0xa0,0xa0,0x3a,0x4d,0xf2,0x62,0x15,0x30, -0xe4,0x0b,0xf0,0xa7,0x6a,0xc3,0x85,0x42,0xaa,0xf8,0xbf,0x3a,0x7b,0x49,0xaa,0x22, -0xbe,0x84,0x3f,0x55,0x5b,0x64,0x60,0xf8,0xbf,0x93,0xad,0x3c,0x91,0xcb,0x75,0xac, -0x15,0x31,0x4c,0xc3,0x85,0x5c,0x80,0x3f,0xd3,0x36,0xbb,0x20,0xd3,0xf8,0x1f,0xc1, -0x1b,0x82,0x37,0xec,0x02,0x9f,0x9d,0x0c,0xb1,0x66,0x2e,0xb7,0x9e,0xc4,0xff,0x46, -0x23,0x99,0xed,0x32,0xb4,0xbc,0xd0,0x14,0xcb,0x1b,0xe5,0xa6,0xa8,0x6c,0x88,0xe5, -0xa5,0xd2,0x86,0xa8,0x34,0xcb,0x47,0x4b,0x4d,0x05,0x1e,0x95,0x37,0x94,0x93,0x43, -0x3a,0x60,0xac,0x3e,0x4b,0x26,0x8c,0x7e,0x76,0x20,0x11,0x79,0x29,0x5b,0x58,0x04, -0xa6,0x54,0xb3,0x05,0x52,0xc8,0xe2,0x05,0xfc,0x29,0x1d,0x95,0xab,0x07,0x95,0xac, -0x02,0xdc,0xcc,0x67,0xf3,0xa4,0x94,0x55,0xe4,0xa5,0xd0,0x13,0x45,0xce,0xca,0xd5, -0xa3,0xb2,0xb2,0x84,0xbf,0xd5,0xa5,0xd2,0xd1,0xd2,0x92,0xac,0x1c,0x2d,0x2c,0x95, -0x0e,0xc9,0xd3,0xd2,0x74,0x25,0x5b,0x5c,0x84,0xbf,0x65,0x39,0x5b,0x24,0xf0,0xb7, -0x58,0xc8,0x42,0x3f,0x4c,0xe3,0x25,0x5e,0x29,0xcb,0x72,0x59,0xca,0x57,0xb2,0x25, -0xa9,0x28,0x2f,0xcb,0x15,0xa9,0x54,0xc9,0x4e,0x4b,0x55,0xb8,0xac,0x4a,0x95,0x6c, -0x59,0x9a,0x5e,0x54,0xf2,0x52,0xbe,0x0c,0x57,0xc5,0x22,0x71,0x2f,0x09,0x7d,0x87, -0x62,0x81,0x05,0x94,0x12,0x62,0x59,0x84,0x2b,0x59,0xf1,0x31,0x57,0x4b,0xac,0x32, -0xac,0xfc,0x90,0x5c,0x02,0xa9,0x01,0x0c,0xb2,0xb2,0x5c,0xc9,0xca,0x05,0x09,0xda, -0x53,0x5e,0x92,0xf3,0x12,0x14,0x07,0xf1,0x9c,0xce,0x56,0xa4,0x32,0x50,0xe1,0x03, -0xfd,0x87,0x40,0x26,0xcf,0x7c,0xe2,0x72,0x9f,0xae,0x62,0x4e,0x74,0x3c,0x82,0x60, -0x96,0x16,0x81,0x7a,0x45,0x26,0x25,0x68,0x32,0x01,0x9e,0x55,0xf1,0x6f,0x15,0x98, -0x4e,0xb0,0x95,0x20,0xe8,0x92,0x42,0x64,0x59,0x9a,0x86,0x7b,0xb8,0x53,0xa4,0x62, -0xf9,0x28,0xdc,0x2a,0x45,0x2c,0x56,0x96,0x11,0xa8,0x0c,0x45,0xca,0xa4,0x8a,0xfd, -0x8d,0x7f,0x17,0xe1,0x07,0xba,0x07,0x58,0x08,0x23,0xba,0x4c,0x80,0xe3,0x05,0x52, -0x5e,0x91,0xf3,0xee,0xc3,0x3c,0x42,0xe4,0x5d,0xf0,0x3c,0x0c,0x6e,0x0f,0x85,0x4c, -0x28,0xde,0xa3,0xb4,0x8e,0x45,0x78,0xef,0x56,0x5b,0x65,0x84,0xc0,0xb0,0x5c,0xac, -0xba,0x04,0xe6,0xf1,0xb7,0x84,0x88,0x4b,0x87,0x94,0x3c,0x76,0x2d,0xb4,0xa2,0x8a, -0x63,0x56,0x91,0xa5,0x82,0x82,0x7d,0x0c,0xbf,0x70,0x0d,0x4f,0x50,0x2c,0x88,0x02, -0xe2,0x55,0x58,0x04,0xcc,0x65,0x78,0xac,0x60,0x33,0x94,0x32,0xbe,0xaf,0x60,0x93, -0xf0,0xa2,0x34,0xbd,0x5c,0xa1,0x52,0x05,0x7f,0xa5,0xe9,0x22,0x36,0xbb,0xbc,0x58, -0x91,0xaa,0x05,0xbc,0x02,0x1a,0xab,0xc8,0x05,0x60,0x45,0x05,0xae,0x18,0x53,0x2a, -0x4b,0x55,0x69,0x7a,0x19,0x4a,0xcb,0x95,0xa3,0xd0,0x22,0x85,0x54,0xa4,0x22,0x63, -0x10,0x28,0x21,0x24,0xad,0xb2,0x22,0x17,0xdd,0x87,0x45,0x02,0xb2,0x5d,0x90,0x8a, -0xd3,0xcb,0x8c,0xd7,0x70,0x5d,0x46,0x21,0x45,0x8e,0x82,0x28,0x56,0x91,0xf8,0x72, -0x05,0xd1,0x82,0xb6,0x51,0x50,0xbb,0x48,0xa5,0x32,0xbd,0x98,0x96,0xe4,0xe2,0x51, -0x6c,0x1f,0x6d,0xe7,0x52,0x71,0x51,0x91,0xaa,0xa0,0x04,0xe1,0x7f,0xf4,0x2f,0x72, -0x6b,0x51,0x41,0x7c,0xc0,0x3e,0x7c,0x04,0x55,0x21,0xe3,0x97,0x2a,0xf0,0x62,0x19, -0xae,0xf0,0xa7,0xb8,0xa4,0xe4,0x97,0x11,0x19,0x30,0x01,0x9e,0xe3,0x2d,0x52,0x53, -0x05,0x4d,0x0b,0x63,0x02,0xc1,0x17,0x81,0x03,0x40,0x31,0x14,0x56,0x28,0xb2,0x7c, -0x95,0x71,0xe9,0x28,0xbc,0x71,0xab,0x92,0x69,0x0d,0x48,0x53,0x54,0xc6,0x93,0xb5, -0x85,0x63,0xa9,0x6d,0xdb,0x88,0xd9,0xd8,0x70,0x67,0x32,0xab,0xa0,0xde,0x05,0xbe, -0xe5,0xa7,0x0d,0xd0,0xe9,0x25,0x54,0xec,0x25,0x19,0xb5,0x33,0xfc,0x57,0x07,0x91, -0x29,0x82,0xc2,0xaf,0x16,0x91,0xec,0x0a,0x68,0x6d,0x19,0x35,0xf1,0xb4,0x2c,0x02, -0x4b,0x0b,0x4b,0xf2,0xf4,0xd1,0x62,0x53,0x9c,0x3e,0xaa,0x2c,0x55,0x36,0x80,0x1b, -0x1b,0x00,0x58,0x6d,0x82,0x98,0xc9,0xd3,0x8b,0xf0,0x5b,0x02,0x11,0xad,0x2a,0x28, -0x5e,0xa0,0x2f,0xaa,0x38,0x83,0xa0,0x58,0x4a,0x05,0xe8,0x50,0xaa,0x1a,0xf2,0x28, -0x55,0x20,0x23,0xf0,0x4e,0x46,0x51,0x04,0xa9,0xad,0x80,0x0e,0xae,0x4b,0xd3,0xc0, -0x3b,0xa9,0x8c,0x3f,0x70,0x55,0xc0,0x2a,0xb1,0x72,0x9c,0x9b,0xca,0x86,0x58,0x42, -0x76,0xc2,0x0f,0xed,0x8f,0xaa,0x51,0x12,0x4b,0x84,0x76,0x17,0xfe,0x48,0xd3,0x65, -0xa0,0x3e,0x5f,0x84,0x49,0x09,0xc5,0x54,0xce,0x03,0x3a,0x94,0x29,0x45,0x69,0x2a, -0x30,0xc9,0x81,0xb5,0x5e,0x68,0xe2,0x54,0xb6,0x0c,0x42,0x43,0x9f,0x41,0x83,0x60, -0x3e,0x53,0x4e,0xb6,0x44,0x2a,0xcb,0xd3,0x00,0x54,0x56,0xe0,0x61,0xa1,0x40,0xe5, -0x09,0x88,0x9f,0x6e,0xc2,0x84,0xa3,0x14,0xc7,0x9d,0x6a,0x2c,0x6d,0xd5,0x34,0x9d, -0x09,0x77,0x10,0x2a,0x6d,0xe0,0x7c,0x96,0x8e,0x23,0xf8,0x23,0xd1,0xb1,0x85,0x8a, -0xb8,0x80,0x2a,0x79,0x3a,0x5b,0x95,0xa8,0x42,0x9e,0xce,0x02,0x58,0x89,0xbd,0xc3, -0x1f,0xd4,0x29,0xa0,0x65,0xe9,0x10,0x83,0x79,0x3f,0x0b,0x20,0xb4,0x3b,0xaa,0xf8, -0xac,0xba,0x0c,0xfc,0x2a,0x22,0x1c,0x8c,0x17,0x60,0x5e,0x16,0xb5,0x36,0x2a,0x99, -0x2a,0x3e,0x63,0x83,0x32,0x8b,0x3f,0xa8,0xce,0x4b,0xa8,0xab,0xab,0x84,0x5d,0xe5, -0x11,0x0e,0xdf,0x82,0x4e,0xc7,0x2a,0xe4,0x2c,0xb5,0x27,0x40,0x99,0xe3,0x7c,0xa0, -0x64,0x41,0xa3,0x81,0x0a,0x5a,0x9e,0x86,0x69,0x01,0x86,0xa5,0x92,0x85,0x9b,0xa3, -0xc5,0x43,0x40,0x2c,0x23,0xaa,0x80,0x74,0x62,0xa7,0xc1,0x3d,0xe8,0x49,0x28,0x0e, -0x24,0xa0,0x49,0x82,0xcd,0x58,0x2c,0x61,0x0d,0xd0,0x0b,0xf0,0xa2,0x8a,0xcd,0x29, -0x82,0x84,0x54,0x18,0x1d,0x15,0x2c,0x01,0x1a,0x0b,0xc4,0x87,0xd2,0x28,0x83,0xe0, -0xd0,0x86,0x16,0x97,0x69,0x8b,0x8a,0x8b,0xd8,0x58,0x80,0xa7,0x6d,0x29,0x12,0xaf, -0xc6,0xff,0x18,0xd7,0x4c,0x60,0x19,0x07,0x96,0xd9,0x61,0x69,0x07,0x89,0x3d,0x82, -0xb2,0x6b,0x94,0x40,0x63,0x82,0xf0,0xed,0xa1,0x75,0x50,0x37,0xcc,0x6e,0x83,0x92, -0x42,0x03,0x26,0x13,0x95,0xa9,0x2a,0x0e,0x43,0x19,0xf5,0x15,0x76,0x6f,0x19,0xa7, -0xaa,0x52,0x15,0xb5,0x40,0x99,0x6a,0x3c,0x50,0x85,0x38,0x2a,0x65,0x82,0x5c,0xc4, -0xbe,0x80,0xc7,0x25,0x77,0xe4,0xa2,0x2a,0x28,0xa0,0x2a,0x2e,0x94,0xc1,0xe6,0x40, -0x71,0x92,0xf1,0x6f,0xb1,0x9e,0xc7,0x3e,0x45,0xbd,0x09,0x03,0x19,0x27,0xaa,0x72, -0x53,0x2e,0xd4,0x15,0x18,0x93,0xf0,0xba,0x04,0x03,0x4c,0x29,0x22,0xc3,0xc0,0xc4, -0x03,0x08,0xd4,0x32,0xf9,0x12,0x8c,0xb4,0x69,0x54,0x2a,0x65,0xbc,0xaa,0x96,0x61, -0xd8,0x02,0x6b,0x0b,0x30,0xc6,0x11,0x50,0x2c,0x35,0x0b,0x47,0xab,0xcd,0xe2,0x46, -0xb1,0x59,0x18,0x77,0xf8,0xb1,0x35,0x94,0xe4,0x66,0x03,0x7a,0xa5,0x29,0x96,0x36, -0x4a,0x4d,0xb0,0xf2,0xd0,0xc6,0x05,0x81,0x05,0xcd,0x05,0x6a,0x7c,0x09,0x2c,0xbd, -0xa5,0x52,0x5d,0xa4,0x8a,0x39,0x8f,0x2a,0x0f,0x86,0x08,0xfd,0x43,0x94,0x65,0x50, -0x45,0x55,0x68,0x1e,0xbc,0xc3,0x69,0x96,0xce,0x17,0x4d,0x68,0x30,0xdc,0x43,0xd3, -0x14,0x11,0x15,0xba,0xa8,0x1c,0x2d,0xd5,0xb1,0x9c,0x0c,0xb7,0xa2,0x82,0xff,0x6b, -0x8a,0xf2,0x51,0x19,0x34,0xd0,0xc9,0x16,0x94,0xaf,0x80,0x29,0x56,0x81,0x42,0x1b, -0xb2,0xbc,0x87,0x22,0xd3,0xd4,0x8c,0xce,0x84,0x95,0x0f,0x51,0x16,0xc1,0xe0,0xab, -0xd0,0x56,0xbb,0x17,0xb2,0x02,0xc6,0x3d,0x5c,0xc9,0x79,0xff,0xff,0xa2,0xfb,0x40, -0x94,0xf3,0x2b,0xa8,0x3e,0x14,0x0a,0x46,0xa0,0xed,0x32,0xd5,0xa1,0x0a,0x1a,0xd5, -0x0a,0x18,0xd3,0x2d,0xe8,0x77,0x30,0xde,0x41,0x09,0x1b,0xc0,0x28,0x98,0x1f,0x50, -0xf9,0xb0,0x99,0x1e,0x0d,0x71,0xaa,0x46,0xe8,0xdf,0x12,0x2d,0x24,0xb9,0x4c,0x05, -0x10,0x90,0x18,0x19,0xbb,0x60,0x1a,0x2e,0x2a,0x05,0xf4,0x59,0x70,0x66,0x52,0xca, -0x75,0xb0,0x32,0x44,0x10,0x46,0xf4,0x5c,0xc0,0xa7,0xc1,0x3f,0x00,0xce,0x3a,0x31, -0xe8,0x0c,0x5b,0x54,0x08,0x5e,0xc3,0xac,0x5f,0xa9,0xa3,0x08,0xa2,0xdd,0x00,0xb6, -0x82,0x08,0xf2,0x2e,0x16,0xed,0x22,0xbd,0x01,0x71,0x47,0x31,0x06,0x3f,0x09,0x11, -0xe2,0x24,0x04,0x17,0x60,0xb4,0x00,0x74,0x69,0x5c,0x11,0x6c,0x9a,0xad,0x21,0x13, -0xb4,0x8c,0xe6,0x15,0x78,0x19,0x20,0xd6,0x65,0x94,0xc1,0x4a,0xb3,0x80,0x13,0x54, -0x81,0xb2,0xab,0x59,0xd8,0xa8,0xec,0xa1,0x70,0xe0,0x22,0xfa,0xb7,0x4f,0x38,0x58, -0x3f,0x97,0xd1,0xdb,0x02,0x4f,0x50,0x44,0x0b,0xe0,0xe8,0x34,0x15,0x95,0x31,0x9b, -0x15,0x97,0x31,0x96,0xac,0xba,0x51,0x32,0x60,0x16,0xab,0x52,0x53,0x13,0x6d,0x0b, -0x83,0xba,0xbc,0xf0,0x53,0x01,0x0f,0x06,0x15,0xbb,0x08,0x9a,0x4b,0x84,0xff,0x11, -0x94,0x22,0x2a,0x4a,0x63,0xf6,0xc9,0xd1,0xdb,0xea,0x95,0xb8,0x74,0xf1,0x3b,0xea, -0x15,0x54,0x36,0x4d,0xb9,0x02,0x03,0x6e,0xa9,0x80,0x03,0x2e,0x0f,0x8a,0x34,0x74, -0x3b,0xbd,0x01,0xda,0xab,0x72,0xb4,0xbc,0x34,0xb6,0x5a,0x6d,0x99,0x96,0x86,0x39, -0x35,0x93,0x36,0x6c,0x48,0x25,0xa2,0x43,0x6d,0x7f,0xbc,0xfa,0xc3,0x95,0x78,0x16, -0x3a,0xc6,0x09,0x14,0xaa,0xa0,0x71,0x0a,0x71,0xdf,0xda,0xde,0x5b,0x1f,0x85,0x8f, -0x01,0xe1,0xcb,0xbb,0x81,0x1f,0x93,0x19,0x6d,0xd3,0xd1,0x6c,0x61,0x04,0xfb,0x15, -0x8f,0xdf,0x70,0x5f,0x0e,0xf8,0x0d,0x24,0x4d,0x73,0x9d,0xb1,0x97,0x72,0x65,0x6b, -0xaa,0x55,0x6f,0x0e,0xd1,0x44,0x25,0x54,0xb4,0x60,0xbe,0x83,0xde,0x03,0x55,0xac, -0x80,0xa6,0x53,0xa8,0x39,0x07,0x03,0x04,0x43,0x3f,0xd4,0xfb,0x94,0xe9,0x74,0x48, -0xdd,0x51,0xb4,0x08,0xd1,0x28,0x93,0x5d,0x8f,0xa6,0x40,0x9f,0x15,0x56,0x0a,0xec, -0x21,0xbb,0x65,0xef,0x3d,0x70,0xe8,0xdc,0x32,0xf6,0x2e,0xc2,0x8b,0x88,0xb1,0x88, -0x91,0x23,0xf4,0x0e,0x0d,0xa8,0x0b,0xaa,0xdc,0xc0,0xba,0x4b,0xf0,0xb8,0x5a,0x45, -0xe7,0xa9,0x58,0x45,0x8b,0x1e,0x4d,0x81,0x2a,0x4c,0xce,0x2d,0x18,0x82,0xf9,0xc5, -0x69,0x29,0x8f,0x56,0x29,0xba,0xa7,0x74,0x32,0x2e,0x21,0xee,0x15,0xfa,0xb4,0xc4, -0xaa,0xc4,0xb7,0x1e,0x14,0xad,0x97,0xc2,0x79,0x37,0xc5,0x3d,0x54,0xa8,0xb6,0xe6, -0x60,0xe0,0x7b,0x88,0x30,0xe4,0xb3,0x63,0xf5,0xe2,0x80,0x71,0x26,0x83,0x61,0x0e, -0x13,0x22,0x4c,0x46,0x60,0x6f,0x89,0xe0,0x28,0x65,0x31,0xdc,0x02,0x17,0x65,0xd9, -0xbb,0xc2,0x97,0xf8,0x46,0x81,0x9f,0x3c,0xfe,0x94,0x11,0x10,0xe6,0x56,0x7c,0x65, -0x28,0xe8,0xc0,0x01,0xa7,0x61,0xae,0x93,0xe4,0x0a,0x3c,0x03,0x8c,0x79,0xe4,0x3e, -0x70,0x19,0x51,0xc8,0xb4,0x84,0x4c,0x0c,0x34,0x71,0xc0,0x2d,0x02,0x3c,0x75,0xd1, -0x7d,0xac,0xe0,0x4f,0x01,0x11,0x29,0x55,0xf8,0x29,0x55,0xe9,0x33,0x74,0x0e,0x0b, -0x55,0x28,0x5a,0x2d,0x23,0x64,0x09,0x61,0x2a,0x22,0x75,0x14,0xc1,0xf3,0x10,0xa9, -0xe3,0x84,0x55,0x2f,0xa3,0xd1,0x9e,0x85,0x29,0x5a,0x46,0x30,0x4a,0xbd,0xe2,0xff, -0x80,0x42,0x85,0x9f,0x0a,0xbd,0x22,0xe8,0x59,0x55,0x8a,0x75,0xfa,0x2e,0x8b,0x6d, -0x29,0x62,0x33,0x65,0xac,0xb8,0x38,0x9d,0x45,0x90,0xe5,0x2a,0x86,0x94,0xd0,0xf0, -0x04,0xe3,0xbf,0x5c,0x86,0xab,0x52,0x35,0x4b,0x83,0x4b,0x20,0x68,0xe8,0x7f,0x94, -0x0b,0xe0,0x7b,0x28,0xd5,0xe5,0x12,0xa2,0x00,0xb8,0x42,0xdd,0xa3,0x3f,0x5f,0x71, -0xd1,0xd0,0x16,0x60,0xdb,0x95,0x65,0xb0,0x45,0x8b,0x50,0x1c,0xdc,0xdd,0x45,0x74, -0xf7,0xc0,0xdf,0xc8,0x57,0x80,0xd2,0x32,0x7a,0x1e,0x05,0x4a,0x33,0xf5,0x41,0x2a, -0x94,0x7b,0x59,0xe4,0xde,0x22,0xf8,0x5a,0x45,0xf4,0x47,0x0a,0x65,0x74,0xbb,0xa8, -0x67,0x52,0x65,0x57,0x8a,0x8d,0x7c,0x47,0xe7,0x06,0x39,0x9b,0x47,0x82,0x81,0xef, -0xa2,0x5f,0x94,0x50,0x7e,0x56,0xb0,0x45,0xb4,0xf9,0x85,0xac,0xdb,0x7c,0xe6,0x11, -0x61,0xd0,0x15,0x9a,0x40,0x19,0xef,0x3e,0x53,0xf0,0xa7,0x80,0x88,0x14,0x24,0xd8, -0xa5,0xda,0x40,0xb6,0x8b,0x94,0xed,0xf0,0x0c,0x21,0xa0,0x72,0xac,0x84,0xfa,0x7b, -0xd8,0x0c,0x5a,0x71,0x1e,0x49,0x44,0xf7,0x9d,0xa0,0xcc,0x20,0x9c,0x52,0xf4,0x7e, -0x68,0x8f,0x17,0x2b,0xf4,0xaa,0x49,0x79,0xce,0x5e,0xe0,0x03,0xa4,0x4d,0xa6,0xdc, -0xa6,0x7c,0x97,0x29,0x22,0x1a,0x07,0xa8,0x7b,0x5d,0x0f,0x0c,0xc0,0x40,0x2c,0xdc, -0x96,0xb3,0x7e,0x37,0x1b,0xbe,0x34,0x60,0x85,0x94,0xf4,0x3c,0xad,0x61,0x9a,0xe2, -0xf5,0x84,0x26,0x90,0x2e,0x5f,0xb8,0xb2,0xae,0x94,0xd2,0x0a,0x5d,0x39,0x5c,0xe6, -0x64,0xfe,0x24,0x41,0x97,0x17,0x5d,0x11,0x54,0xde,0x55,0x40,0x0a,0x08,0xca,0x4c, -0xc0,0x0a,0x34,0xce,0x5d,0x26,0xb6,0x77,0x97,0x75,0x9f,0xd8,0x78,0x4d,0xb9,0xe1, -0x3e,0x5c,0x41,0x87,0xb5,0x42,0xd1,0x64,0x5d,0x74,0x49,0x0a,0x7e,0x2e,0xe7,0xc6, -0xee,0xbd,0xfc,0x2a,0x0c,0xec,0xd3,0xa5,0x21,0x17,0x60,0x43,0xb5,0x08,0x0e,0xf8, -0x1a,0xcd,0xb8,0x9e,0x27,0x02,0x8d,0xfb,0x7b,0x03,0x36,0x15,0x52,0x23,0x29,0x36, -0xc6,0x53,0x38,0xc6,0x53,0x39,0x0e,0x68,0x37,0xd3,0x32,0x16,0xa4,0xb4,0x08,0xb3, -0x94,0x2a,0x8f,0x18,0x97,0x2c,0x2e,0x5b,0x26,0x17,0xac,0x63,0x09,0xc4,0xb6,0xea, -0xf3,0x82,0x6a,0x83,0x5a,0xb2,0x73,0x4f,0xdb,0xb5,0x8e,0x5a,0x3f,0x2e,0x3d,0x4d, -0x53,0x21,0xa2,0x18,0xdc,0x86,0xe5,0x72,0x37,0x2f,0x7f,0x74,0xf3,0x83,0x53,0x41, -0x33,0x97,0xd5,0xf6,0xfa,0xa2,0xd9,0x5e,0xd3,0xd7,0xa1,0x9d,0xcf,0x7a,0xdc,0x02, -0xb8,0x0b,0x6f,0xf6,0xce,0xbf,0xe6,0xdd,0x2f,0x81,0x8d,0x3b,0x43,0x9e,0xd5,0xda, -0x33,0x44,0xc0,0x6b,0x21,0x4b,0xea,0x78,0x7d,0xe3,0xb3,0xab,0xb7,0xde,0xf9,0x97, -0xb0,0x9d,0xf5,0x00,0x19,0x2a,0x0f,0x94,0xdd,0x79,0xc0,0x2c,0x77,0x8f,0x03,0xf6, -0x37,0xe2,0x7b,0xf0,0xf4,0x01,0xc1,0x27,0x5e,0x99,0xde,0xc7,0xaf,0xf7,0x2f,0x7d, -0xc2,0x4e,0xda,0xe3,0x4a,0xae,0x6c,0xd9,0x8e,0xd6,0x5a,0xa1,0xe9,0x21,0x5e,0x61, -0xf6,0x8c,0xb0,0x87,0x5e,0x79,0xb6,0x0c,0xba,0x73,0xee,0x93,0xfe,0xa9,0xd3,0x5c, -0xf9,0xc3,0x47,0x0e,0x7a,0xc5,0xe0,0xd2,0xaf,0xec,0x8d,0x2b,0x37,0xae,0x7e,0xc2, -0x92,0x28,0x06,0x2a,0x5b,0x36,0xd7,0x23,0x35,0xc1,0x93,0x70,0x35,0x6c,0xb5,0x95, -0x2b,0x79,0x70,0xd5,0xec,0x3a,0x5e,0x29,0x7a,0xe3,0x57,0xf5,0xfc,0x3f,0x6e,0x5c, -0x79,0x89,0x03,0xcd,0xe5,0x18,0x2f,0xfd,0x4a,0xe9,0xa7,0x7f,0xfd,0x1a,0xd9,0xa7, -0x82,0xdd,0xc2,0xec,0xb4,0x51,0xae,0xf0,0xb2,0xd6,0x98,0x61,0x80,0x4f,0x98,0x9b, -0x9a,0x05,0xb7,0x3e,0x61,0x6e,0x56,0xa6,0x9b,0x56,0xc9,0xb7,0x8a,0xa2,0x3c,0x68, -0x18,0x6e,0xc9,0x23,0xa6,0xa3,0x1a,0x64,0x85,0x1e,0x18,0xe1,0x57,0x74,0xea,0x2a, -0x3b,0x4b,0x83,0xef,0xe1,0xa6,0x6e,0x34,0x96,0xa1,0xb0,0x5b,0x8e,0xde,0x13,0x7c, -0xe0,0xd7,0xf9,0xd7,0xf7,0x6e,0xbd,0x0a,0xdc,0x66,0x25,0xdc,0x3f,0x6b,0xdd,0x36, -0x5d,0x66,0x83,0xf2,0x20,0x71,0x1a,0x8a,0x5d,0x57,0x5d,0xd7,0xd2,0xf8,0x35,0xe4, -0x4c,0x20,0x78,0xfa,0x1a,0xa1,0x8f,0xc8,0x3c,0x8c,0xba,0xa7,0x3b,0x02,0xf7,0x0a, -0x48,0x6e,0x9a,0x9b,0x74,0x45,0x31,0x0d,0xed,0xfa,0xc7,0x57,0xa7,0x2f,0xdd,0xfc, -0x00,0x7e,0x7f,0xf9,0xd5,0x2f,0xcf,0x7d,0x75,0xfa,0x8b,0xaf,0x4e,0xbf,0xf1,0xd5, -0x2f,0x7f,0xf7,0xd5,0xe9,0x17,0xbf,0x3a,0x75,0x1a,0x3a,0xa2,0xff,0xe6,0xdf,0x6e, -0x7e,0xf8,0xc7,0xaf,0x4e,0x5f,0x8e,0x02,0x9c,0xfa,0xa5,0x90,0x99,0x0d,0x70,0x5a, -0x9a,0xd3,0xb5,0xda,0xfe,0x83,0x6d,0xef,0xe2,0x40,0x5a,0x90,0xe8,0xf7,0x9a,0x33, -0x92,0xa6,0xd6,0x9b,0x69,0x8f,0xfe,0x74,0x88,0x22,0x1c,0x41,0xe0,0x8e,0xc0,0xd0, -0x39,0x90,0x76,0x9a,0xba,0x9d,0x91,0x54,0xc7,0xb1,0xd2,0x82,0xfb,0x8d,0xe7,0x50, -0x4d,0x08,0xbb,0x01,0x2c,0x9e,0xe7,0xc6,0xdc,0x31,0x28,0xfc,0xe4,0x31,0x84,0x7e, -0x92,0x83,0xf4,0x70,0x35,0x9d,0x96,0x91,0x86,0x22,0x01,0x96,0x6d,0xef,0x72,0x3b, -0x18,0xc1,0x3f,0x38,0xf2,0x78,0xed,0xf0,0x13,0x8f,0xfe,0xf4,0xe0,0x91,0xc7,0x0e, -0x3f,0xbe,0x32,0x7f,0x4c,0xe8,0xbd,0x70,0xa6,0x7f,0xfe,0x4f,0x41,0xdf,0x79,0xa8, -0x11,0x18,0xf3,0x52,0x6c,0x74,0x9c,0x80,0x8c,0x63,0xde,0x8b,0x5c,0xae,0x77,0xed, -0xf3,0xfe,0x3b,0xbf,0x11,0x6d,0x4c,0x26,0x0b,0x80,0xbd,0x25,0x52,0xa0,0xd5,0x51, -0xf5,0xb6,0x86,0x85,0x1a,0x66,0xbd,0x0b,0x5a,0xd1,0x91,0x9e,0xe9,0x6a,0xd6,0xd6, -0x8a,0xbb,0xb5,0x24,0x9d,0x7a,0x78,0x70,0x35,0x37,0xe5,0x11,0xeb,0xf7,0x7d,0xd0, -0x81,0x40,0x85,0xcd,0x71,0x12,0x6b,0xc3,0xc4,0x1f,0xd4,0x41,0xf8,0x0a,0x24,0x63, -0x86,0xe0,0xc5,0xb6,0xdf,0xf4,0x01,0x62,0xa4,0x43,0x6e,0x8e,0xee,0x8a,0xfb,0x46, -0xc2,0x05,0x6c,0xef,0x26,0x8d,0xe8,0x22,0xdc,0xf2,0xdb,0xa9,0xb5,0x1b,0xec,0xc9, -0x81,0xb4,0xd7,0x9e,0x8c,0x84,0xdb,0xb4,0xb6,0x62,0xfb,0xb9,0x6e,0xb6,0x3a,0xa0, -0xdd,0xdb,0xce,0x92,0xda,0x6e,0x18,0x50,0x73,0xb7,0xb3,0x6e,0xa9,0x0d,0x0d,0x06, -0xcf,0x4f,0xb5,0x75,0x1d,0x94,0x81,0xa5,0x61,0x4e,0x4c,0x30,0x96,0x3d,0xd2,0x7a, -0xe7,0xde,0xbe,0x79,0xfd,0x7a,0xef,0xe3,0x17,0xfb,0x2f,0x5c,0x74,0x49,0x41,0x30, -0x8f,0x9c,0x83,0x4f,0xab,0x27,0x78,0xa6,0xfb,0x8c,0xc2,0x17,0x8f,0x5a,0x56,0xda, -0xd2,0x38,0x32,0x38,0xf1,0xc7,0xf7,0x44,0xb3,0x2c,0x18,0x6d,0x64,0x0a,0x64,0x58, -0x62,0x99,0x72,0x91,0xf6,0x86,0xd0,0xa5,0xbb,0x96,0x91,0x25,0x66,0xdb,0xfd,0xf8, -0x6c,0x96,0xce,0x29,0x59,0xca,0x75,0xae,0x8e,0x03,0x92,0x8a,0xb0,0x9c,0x88,0x43, -0xb1,0x19,0xfc,0xc9,0x06,0x8f,0xb0,0xe4,0x0c,0x2b,0x1f,0x3c,0x44,0x44,0x33,0xf4, -0x97,0x7b,0xe8,0x56,0x36,0xe3,0x93,0x12,0x6e,0x11,0xfe,0xf3,0x29,0x82,0x57,0xd0, -0x07,0x1d,0x43,0xad,0x6b,0xe9,0x5c,0x2a,0xb7,0x9e,0x25,0x29,0x21,0x95,0xe1,0x47, -0xd0,0x36,0x87,0x99,0x7e,0x12,0x76,0xc6,0x63,0x54,0xd2,0xf8,0xf0,0x39,0xb0,0xe4, -0x38,0x9d,0x1f,0x69,0x4e,0x84,0x09,0x1c,0x29,0xb1,0x2c,0x12,0x7e,0xf4,0xe8,0x11, -0xd0,0x6a,0xed,0xae,0x61,0x0c,0x43,0xfc,0x84,0x69,0x3b,0x03,0x65,0x23,0x8c,0x8d, -0xc7,0xff,0xc4,0xe1,0x15,0xac,0x20,0x46,0x56,0x43,0x15,0x3c,0xa2,0x19,0xb7,0x87, -0xff,0x91,0x47,0x97,0x1f,0x3d,0xf2,0x68,0x7c,0x0d,0xae,0xf8,0xd1,0xb1,0xe0,0x3d, -0x79,0x04,0xe4,0xf6,0x88,0x69,0x1a,0xbc,0x50,0xe6,0x72,0x24,0xdd,0xd6,0x36,0x09, -0xbe,0x4b,0x67,0x32,0x12,0x66,0xf9,0xa9,0x20,0x83,0x5b,0xf0,0x4f,0x3c,0x74,0x48, -0x6c,0x34,0x48,0xb3,0x39,0xd3,0x6a,0xcd,0xd8,0xb6,0xb4,0x02,0x0a,0x7b,0x7e,0x7e, -0x81,0x28,0x79,0x74,0x59,0xc0,0xde,0x53,0x48,0xbe,0x32,0x93,0xaf,0xce,0xe4,0xc1, -0x47,0x50,0x0a,0xe3,0x20,0x14,0x01,0xdd,0x0c,0x20,0xa3,0xb8,0xe8,0x3f,0x1f,0xe1, -0x34,0x38,0xf4,0x95,0x99,0xea,0x4c,0x11,0xcc,0x6c,0x86,0x0a,0x51,0x48,0x1d,0xcb, -0x74,0x4c,0x94,0x46,0x17,0x13,0x28,0x11,0x5f,0xdc,0xd6,0x5a,0x4e,0x44,0xcd,0x98, -0xbc,0x9d,0x43,0x88,0x70,0x68,0x4a,0x20,0x20,0xcc,0xa0,0x70,0xa5,0x75,0xcd,0x39, -0x04,0xda,0xa5,0x99,0xce,0x4c,0xc9,0xd9,0x81,0x7c,0x9c,0x5c,0xae,0xff,0xe6,0x0b, -0x37,0xae,0x5e,0xe7,0xca,0x36,0x42,0x65,0x59,0x7b,0xb2,0x71,0xb9,0x3c,0x50,0xf6, -0xd2,0x7b,0x5c,0xc1,0x66,0xa8,0xe0,0x92,0xd9,0xb5,0xec,0xf8,0x92,0xa0,0xb2,0xfe, -0x7e,0x01,0x2c,0x20,0xae,0x6c,0x2b,0x4c,0xb0,0xde,0xee,0x3a,0x5a,0x6c,0x69,0x28, -0xfb,0xc2,0x6f,0xb8,0x82,0x76,0xa8,0xe0,0x0a,0x3d,0xd4,0x2a,0xa1,0xe0,0xce,0xfb, -0xaf,0x70,0x05,0x9f,0xa1,0x05,0x41,0xa7,0x35,0xa5,0x35,0xc3,0x04,0x6d,0x9f,0x8e, -0xb2,0xab,0x90,0xc9,0x15,0x00,0x11,0xd4,0xf8,0xd1,0x7f,0xf7,0xae,0xfc,0x99,0x2b, -0xbb,0x22,0x90,0x10,0xb5,0x86,0xa1,0xdb,0x5e,0xcd,0x51,0x16,0x5d,0xfe,0x2b,0x57, -0x6f,0xa0,0xf9,0xf5,0xb5,0x74,0x2e,0xbd,0x35,0x95,0xc9,0x49,0xd0,0x50,0x87,0x76, -0x69,0x26,0xa8,0x01,0x6e,0xe7,0xe1,0x3f,0x5f,0x75,0x80,0x46,0x7e,0xf4,0x44,0x47, -0x3a,0x00,0x3d,0xe8,0x93,0xf9,0x43,0x18,0xc0,0xff,0xae,0xc1,0xa4,0x90,0x99,0x12, -0x60,0x42,0xb7,0xbb,0xab,0x36,0xcc,0xd2,0x45,0x22,0x12,0x1f,0x5a,0x32,0xb4,0xf6, -0xba,0xd3,0xe4,0xf4,0xcd,0x1a,0x34,0x94,0xce,0xef,0x44,0x6f,0x13,0x93,0xab,0x11, -0xe8,0x41,0xf1,0x65,0x45,0xd3,0x42,0x5a,0x98,0x02,0x98,0x29,0x21,0x03,0x98,0x07, -0x09,0x84,0x1b,0x94,0xc7,0x04,0x02,0xa3,0xd5,0xcf,0xcf,0xcb,0x19,0xf2,0x7d,0x92, -0x36,0x8f,0x1d,0x7f,0x32,0x03,0x7c,0x4b,0xa7,0x85,0x7c,0x1e,0xf0,0xd3,0x7b,0x8f, -0xee,0xb4,0xe0,0x3f,0xf1,0x88,0x0e,0xa8,0x66,0xf6,0x0c,0x56,0x18,0x1d,0xed,0xfe, -0xd8,0xe6,0x46,0x3c,0x75,0x74,0x70,0xab,0x95,0xfb,0xa1,0xba,0x1a,0xda,0x07,0xb3, -0x91,0x77,0xf4,0x7b,0x69,0xde,0x57,0x1a,0xb9,0x97,0xfe,0x67,0x9d,0xa2,0xcf,0x30, -0x3f,0x30,0xfa,0xac,0x6b,0x0f,0x82,0x6d,0x0e,0x60,0xc3,0x8f,0x27,0xf8,0xf3,0x23, -0x98,0x60,0x0f,0x7b,0x7b,0x4f,0x5c,0x63,0x68,0x84,0x22,0x12,0x32,0xfc,0xec,0x7a, -0x08,0x77,0xc9,0x46,0x4c,0x1a,0xfa,0x9d,0x6e,0x68,0x4c,0xc8,0x94,0x01,0x09,0x79, -0xd4,0xd0,0xf0,0xf2,0x07,0x5b,0x8f,0x35,0xd2,0xfe,0xf7,0xbc,0x45,0x80,0xf3,0x4d, -0x38,0xbf,0xa4,0xc4,0xbe,0x3d,0x7f,0xc4,0x4c,0x47,0x1f,0xfd,0x5c,0x6f,0x38,0xcd, -0x2c,0xc9,0x07,0x44,0x50,0x2b,0x8a,0x7e,0x6c,0xd6,0x70,0x86,0xd5,0x18,0xfe,0x20, -0x6d,0xb8,0xbc,0xa5,0xd9,0x75,0xb5,0x4d,0x37,0xdc,0x5b,0xfe,0x8b,0x90,0x49,0xf5, -0x04,0x1a,0xd2,0x7a,0x83,0x9f,0xc6,0xc1,0x7a,0xc5,0x1c,0x56,0xe4,0x9b,0xde,0xd0, -0x38,0xdb,0xc4,0x7f,0x33,0x05,0x05,0xa8,0xc5,0x14,0x79,0xa9,0xdb,0xa2,0xdd,0x52, -0x0d,0x98,0x02,0xea,0x96,0xa6,0xb5,0xc9,0xc2,0x02,0x91,0x82,0x6d,0x54,0xb5,0x5a, -0xc3,0x52,0xc1,0xc5,0xf0,0x36,0x08,0x65,0x24,0x9a,0x54,0x93,0xce,0x04,0xd9,0x87, -0xb7,0xc5,0x28,0x56,0x37,0xd6,0xd3,0x56,0x37,0xf4,0x75,0x26,0x8c,0x35,0xdc,0x32, -0x25,0xa0,0x65,0xd6,0x32,0x37,0xb4,0x45,0xcc,0xdd,0x4b,0x0b,0x2e,0x0c,0x3d,0x8a, -0x6f,0x43,0x13,0xc2,0xc4,0xc7,0x21,0x98,0xd1,0x9e,0x81,0x21,0x0a,0xfc,0x11,0xe5, -0x0c,0x1b,0xa5,0x20,0xb3,0xc9,0xc8,0x38,0xad,0x83,0x99,0x43,0xf3,0x44,0x09,0x19, -0x2c,0x3f,0xa5,0xbd,0x91,0xce,0x84,0xcc,0x75,0xe1,0xe1,0xe8,0xb7,0x4c,0x33,0xc7, -0xf2,0x4f,0x02,0x9f,0x2d,0xe8,0x61,0xb7,0xa3,0x7d,0x73,0xf5,0x88,0x97,0x46,0x2e, -0xd5,0xa9,0x2b,0x94,0x1e,0x1c,0x64,0x51,0xec,0xc1,0x07,0xd4,0x76,0x83,0xd7,0x2f, -0x15,0x8b,0x8e,0x7e,0x4e,0x6c,0xd7,0xe8,0xb0,0x54,0x2c,0x3a,0xfc,0xba,0xd6,0xae, -0xb1,0x41,0xa1,0x78,0xda,0x36,0x1b,0xb7,0x41,0xda,0x66,0x3c,0xdf,0xe8,0xc7,0x66, -0x76,0x8d,0x0d,0x4b,0x71,0x7e,0x17,0xd1,0x0c,0x5b,0xe3,0xe5,0x60,0x53,0x6f,0x37, -0xcc,0x4d,0x90,0x7e,0x98,0x56,0x30,0x6c,0x01,0x63,0x23,0xcd,0x8f,0xd4,0x4c,0xd4, -0xa5,0x74,0xff,0xf8,0xe3,0x55,0xce,0xcc,0x86,0x14,0x55,0xc8,0x0e,0x63,0xce,0xf9, -0x80,0x3f,0x46,0x9f,0xd6,0xba,0xc6,0x50,0x55,0xe2,0x01,0xf9,0x43,0x83,0xe9,0x3d, -0x76,0x54,0xa4,0x0d,0x45,0x7d,0x08,0xae,0xac,0xfd,0x83,0x2d,0x3a,0x24,0x1e,0x07, -0xfd,0x9f,0x8e,0x39,0x3a,0x92,0xc7,0xe5,0xbe,0x31,0x70,0xe7,0xea,0x6e,0xf1,0xb9, -0x43,0x8c,0x21,0xf3,0x8c,0x72,0x21,0x67,0x7b,0x41,0x1b,0x5f,0xaf,0x85,0x1d,0x05, -0x5a,0x2d,0x85,0x81,0xfa,0xfe,0xcf,0xca,0xe1,0xc7,0xb1,0x2f,0x6d,0x0d,0x81,0x66, -0x07,0x61,0x5c,0xff,0x96,0xdd,0x48,0x8c,0x3c,0xf8,0xdb,0x31,0x74,0xa8,0x2b,0xcb, -0xa9,0x0c,0xde,0x1b,0x0e,0x41,0x23,0xd9,0xb1,0x25,0x82,0xf6,0xa3,0xd8,0xd8,0x89, -0x0e,0x31,0xb8,0x86,0xe9,0x94,0x14,0x39,0x47,0xb4,0x63,0xe9,0x2d,0x3c,0x45,0x14, -0xcc,0x1f,0x07,0x4a,0xa4,0x06,0x75,0x97,0xbb,0x57,0x95,0x26,0xf2,0x53,0x73,0xe2, -0x84,0x93,0x76,0x09,0x6b,0x68,0x1b,0x7a,0x5d,0x43,0xc2,0x82,0x62,0x7e,0xdd,0xb4, -0xc0,0xfc,0x00,0x24,0x6f,0xcb,0x10,0x6a,0xcc,0xe8,0x40,0x71,0x7e,0x16,0xfe,0xcc, -0x71,0xbc,0x72,0xcd,0x08,0x78,0x3c,0x35,0x15,0xf1,0xce,0xb0,0x0c,0x86,0x27,0x56, -0x70,0x2b,0xf0,0x3c,0xdf,0xf4,0x63,0xfa,0x54,0xe1,0xc9,0x68,0x14,0x80,0x86,0x4c, -0x52,0xfc,0x30,0xf4,0xec,0x88,0x86,0x76,0x62,0x5c,0x1c,0xac,0x0b,0xd8,0x99,0x7d, -0x11,0x5c,0x5e,0x78,0x08,0x51,0x65,0x7c,0xc2,0x28,0x9f,0x16,0x19,0x53,0xa1,0x02, -0xbf,0x57,0x8f,0xe9,0x4f,0xce,0x32,0x7f,0xe3,0xc6,0x97,0x1f,0xf7,0x5f,0xfd,0x9c, -0xc5,0xcd,0x7a,0x17,0xcf,0xef,0xbc,0xff,0xf7,0x28,0x56,0x9f,0xc2,0x4c,0x40,0x6c, -0x04,0xaf,0x20,0xcc,0x06,0xb8,0x7a,0x57,0x2e,0xf4,0x2e,0x7c,0xfa,0xf5,0xb5,0x17, -0x7b,0x17,0x2e,0xfb,0x67,0x4b,0xde,0xfc,0xd7,0xa7,0xbd,0xf7,0x7f,0xdb,0x7f,0xed, -0xef,0xbd,0x8f,0x2e,0xf1,0x15,0xe4,0x72,0xfe,0xf8,0x03,0x9a,0x24,0xf7,0x18,0x56, -0x5f,0xe8,0x5c,0x5a,0x69,0xcc,0x4b,0x16,0x06,0x1a,0x1c,0x07,0x14,0xe9,0x26,0x12, -0x1e,0x94,0x8c,0xaf,0x7e,0x7c,0x84,0xbe,0x92,0xcc,0xf0,0xac,0x15,0xa7,0xd4,0xc6, -0x44,0xb4,0xb6,0x16,0xc5,0xc4,0xf9,0xe8,0xa1,0x19,0xd4,0x95,0xc8,0x96,0xd9,0xd0, -0x90,0x70,0x39,0x44,0x36,0x37,0x6f,0x7a,0xdf,0x49,0xf6,0xcd,0x09,0x0e,0xfd,0x80, -0x7d,0xca,0x0d,0x56,0xf7,0x29,0x9a,0x4f,0xd1,0x12,0xa1,0x09,0x75,0xb0,0x48,0x60, -0x7c,0xc6,0x31,0x82,0x23,0x4d,0xed,0xc4,0x52,0xc5,0x13,0x8f,0xdf,0x8b,0xdf,0xcd, -0x04,0xe3,0x92,0xa2,0x76,0x68,0xd1,0xcc,0x98,0x94,0x03,0x78,0x88,0xe8,0x80,0xd1, -0xfe,0x44,0x1f,0x00,0x47,0x6d,0x73,0x12,0x58,0xe6,0x11,0x20,0xce,0x58,0x27,0xbe, -0xa9,0x1e,0x81,0x09,0x8c,0x77,0xe2,0x9b,0xee,0x51,0x34,0x1c,0x69,0xfe,0x04,0x1a, -0xc0,0x80,0xf3,0x03,0xf5,0xfc,0x90,0x99,0xf7,0x01,0x07,0x43,0x67,0x77,0xb8,0x36, -0xbe,0x5b,0xc2,0x7d,0x9a,0x19,0x84,0xd7,0x3b,0x11,0x50,0xbd,0x13,0x03,0x45,0x4f, -0xb6,0x08,0xc3,0xe1,0xa3,0x18,0x48,0xef,0x98,0x89,0x30,0xb0,0xfb,0x34,0x0c,0xef, -0x9e,0xf8,0x10,0x86,0xec,0x76,0xe8,0x94,0xcf,0x1b,0x8f,0x71,0xfa,0xd6,0x57,0x4b, -0x09,0xea,0x36,0x1c,0xc7,0x95,0x3a,0x5d,0xbb,0x99,0x7e,0x8a,0xc5,0x72,0x0f,0x3c, -0xcb,0xeb,0xb4,0xed,0xa7,0x22,0x91,0x9c,0xb8,0x92,0x6e,0x14,0x38,0x12,0xff,0xc7, -0xa3,0x17,0x5e,0xfd,0xc0,0x9f,0xcf,0x62,0x0b,0xde,0x3a,0x73,0x1e,0xc1,0xe8,0x8a, -0xc6,0x48,0x48,0xff,0xfc,0x86,0x91,0x90,0x3b,0xd7,0x3f,0x1e,0x07,0xa7,0x4b,0x36, -0x5b,0x42,0x18,0x87,0xce,0xeb,0x2f,0xe3,0x0a,0x54,0xd8,0x93,0x48,0x3d,0x1c,0x73, -0xfc,0x51,0x0a,0x0c,0xff,0x4e,0x07,0xcc,0xac,0x34,0x07,0x38,0x67,0xe8,0x0b,0x29, -0xce,0xb7,0x0f,0x7c,0x83,0x54,0xf8,0xb4,0xc3,0x30,0x10,0x06,0xf9,0x53,0xde,0xf1, -0x87,0xa9,0x2c,0x01,0xd7,0x82,0x7b,0x4d,0xa7,0x6d,0xa1,0xff,0xe6,0x87,0xee,0x8a, -0x97,0xfb,0xce,0x0f,0x87,0xa3,0x70,0x18,0x9a,0xc3,0x0b,0x47,0xa4,0x85,0x71,0x12, -0x82,0xcd,0x8a,0x1c,0xeb,0xbf,0x97,0x4d,0x7a,0xea,0xc0,0xb3,0x3a,0x48,0x5a,0x3c, -0x88,0x77,0x3a,0x25,0xc2,0xad,0xa9,0xa0,0x3c,0x9f,0x1a,0x68,0x7f,0xb8,0x45,0x38, -0xed,0xb9,0x01,0x10,0x6a,0x1a,0xb1,0x6e,0x4e,0x65,0x53,0x8c,0x45,0xa9,0x4c,0x84, -0x47,0xdf,0x40,0x1f,0xea,0xa3,0x9b,0x10,0x22,0x12,0x06,0x1f,0x3b,0x64,0x8e,0x99, -0x2e,0x92,0xde,0x46,0x63,0x51,0x0a,0x1f,0x3c,0xc7,0xe4,0xd2,0xd2,0x40,0x1b,0xda, -0x4d,0xee,0x54,0x2a,0xdb,0x53,0x1e,0xd0,0xc8,0x45,0x9c,0x5c,0x68,0xec,0x1e,0x8c, -0x61,0xfe,0x70,0xf2,0xd0,0x8a,0x41,0xc4,0xef,0x8f,0x43,0xe9,0xee,0x8d,0xcc,0x80, -0xc0,0xa0,0xee,0x71,0x56,0x6b,0xa8,0xa6,0x40,0xc8,0x9e,0xfa,0xee,0x77,0xe6,0x9c, -0xa6,0xa6,0xb2,0xd3,0x69,0x82,0xb3,0x70,0x86,0x9c,0x2e,0x1d,0x9c,0x24,0xdd,0x3b, -0xf7,0x41,0xf8,0x80,0xe8,0x98,0x53,0xa3,0xfd,0xe3,0x6d,0xf0,0x49,0x50,0xcf,0xaa, -0xd9,0xc0,0x53,0xef,0x9e,0xa2,0x0d,0xa0,0x6e,0x48,0xdb,0x99,0xcf,0xc3,0x5d,0x9c, -0x7e,0x74,0xa9,0x8f,0x91,0x7d,0x1a,0x05,0x31,0x37,0x1f,0xc3,0x39,0xe7,0x29,0xc6, -0x58,0x91,0x4a,0xe7,0xac,0xf7,0x96,0x9e,0x4c,0x08,0x6f,0x0f,0xaf,0x3e,0x8d,0x5d, -0x71,0x5c,0xdb,0xf2,0xb9,0x81,0xdd,0x06,0x73,0xb3,0x0f,0x1a,0x0c,0xa1,0x00,0x9e, -0x9e,0x39,0x11,0x5b,0x02,0x6c,0x98,0xa0,0x00,0x3c,0x7c,0x68,0x1e,0x86,0x3a,0x25, -0x0a,0x9a,0x32,0x35,0xe5,0x63,0xa5,0x18,0x70,0xa2,0x07,0xa4,0x69,0x1d,0xdc,0x9e, -0xc7,0xc3,0xe5,0x32,0xe4,0xb9,0xe7,0x48,0xe8,0x09,0xb4,0x38,0x3f,0xf8,0x70,0x61, -0x3e,0x5e,0x15,0x60,0x54,0x30,0xe5,0x6b,0x94,0x14,0x99,0x89,0x80,0x1d,0x0b,0xa1, -0x61,0xb4,0x7b,0xfd,0x3f,0x45,0x05,0x20,0x7a,0x0a,0x12,0x9e,0x79,0x74,0xe0,0x59, -0xc6,0xb8,0x05,0x22,0x23,0xfe,0x9b,0x5f,0xfe,0x71,0xe7,0xea,0x47,0x88,0x3c,0x95, -0xda,0xde,0x79,0xeb,0x23,0x10,0x0d,0x17,0x62,0xbb,0xff,0xb7,0x77,0x42,0xa7,0x1b, -0xb1,0xd2,0x7e,0xab,0xb7,0x07,0x5e,0x7a,0xfb,0x6e,0x53,0xdc,0xbe,0xdb,0x06,0x74, -0x9d,0xa3,0xf1,0x67,0xb3,0x79,0xe8,0xb3,0xf9,0xcc,0x6c,0x2a,0xfe,0x2b,0x86,0xbe, -0x68,0x3d,0xe5,0x8d,0xba,0x68,0xaf,0xc8,0xb1,0xbd,0x32,0x4e,0xbf,0xc8,0x03,0xfd, -0x22,0xc7,0xf5,0x8b,0x3c,0x99,0x7e,0x91,0x69,0xbf,0x8c,0xd7,0x33,0xec,0x4c,0x25, -0x8f,0x3d,0x3b,0xef,0xbf,0xb2,0xa7,0xdc,0x97,0x77,0xc1,0xfd,0xef,0x7e,0x07,0x7e, -0xd0,0x2d,0xa9,0xa3,0x53,0x04,0xa3,0x37,0xe2,0x8a,0x70,0x6d,0x13,0xb0,0x55,0x78, -0x58,0x56,0xdd,0x34,0xf0,0xf4,0xa1,0xf9,0x54,0x29,0xb5,0xd0,0xff,0xdf,0x77,0xfa, -0x6f,0x9e,0xf5,0x5d,0x26,0xa6,0x7e,0x7c,0x1d,0xd3,0x58,0xa0,0x35,0xf2,0x4e,0x10, -0xe7,0x5c,0x78,0xc8,0xa7,0xe6,0x85,0x5f,0xf0,0x89,0x3d,0x4c,0xd1,0x60,0xa1,0xe4, -0xb0,0x48,0xec,0xe1,0xfd,0x19,0xd0,0xda,0x6d,0xcd,0x5a,0x3a,0x72,0x68,0x19,0x04, -0xc4,0xc5,0x0e,0x68,0x92,0x56,0x7c,0x1f,0x31,0x5b,0x69,0xce,0xf8,0xf2,0xe3,0xd4, -0x52,0x4c,0xc4,0x04,0x1d,0x2e,0x76,0x70,0x2a,0x17,0xd7,0x08,0x96,0x95,0x41,0x86, -0x05,0x9c,0xc3,0xdd,0x62,0xa2,0x6a,0x18,0x02,0xf2,0x93,0xae,0x59,0xe8,0x8d,0xe7, -0x9e,0x0b,0xbd,0xad,0x63,0x96,0x85,0x68,0x60,0x96,0x45,0x08,0xc6,0xfb,0xe8,0x47, -0xf0,0x30,0xe3,0xe2,0x0f,0x25,0x36,0x6c,0x87,0xe2,0x17,0x2c,0x20,0x02,0x3e,0x15, -0x73,0x6a,0x63,0x8d,0xd6,0x02,0x53,0xca,0xbe,0xdf,0x9a,0x18,0x23,0xe0,0xb0,0x41, -0x97,0xa7,0x63,0x1d,0xdd,0xef,0x83,0xcb,0x9a,0xc5,0x35,0x24,0x21,0xcf,0x07,0x53, -0x7c,0xaa,0xfc,0x45,0x54,0x21,0x67,0x7b,0x99,0x2e,0x09,0x91,0xa0,0xed,0x2c,0x57, -0x23,0xef,0x3a,0x71,0x38,0x0c,0x9a,0xff,0x92,0x8c,0x20,0xa0,0x51,0x0e,0xd3,0xc8, -0x48,0xe4,0x8c,0x49,0x6e,0xb5,0x1e,0x7b,0x19,0xb7,0xef,0x8a,0x6e,0x78,0x02,0x2d, -0xf2,0x84,0x4e,0x26,0x41,0x2f,0xe7,0x72,0xe4,0xe6,0x4b,0x9f,0xf6,0x2e,0xfc,0xbe, -0x77,0xfd,0x77,0xbd,0xb3,0xe7,0xd9,0xf1,0x68,0xfd,0xb3,0xa7,0xf0,0xb4,0xa8,0xd7, -0x7f,0x4d,0x0c,0x9d,0xf4,0x9e,0xff,0xd5,0xce,0x3f,0xdf,0x0e,0x34,0xd6,0x01,0x43, -0xe7,0xd2,0x49,0xea,0x86,0x69,0xe3,0x9a,0x92,0x10,0x89,0x25,0x09,0xfc,0x42,0x47, -0xa8,0x8a,0x9d,0x7f,0xfe,0xa9,0x77,0xed,0x35,0x7e,0x09,0xa7,0xa1,0x9d,0xa0,0x18, -0x63,0xe9,0xa7,0xaf,0x59,0x65,0x83,0x18,0x69,0x84,0x85,0xb0,0x80,0x49,0xef,0x95, -0x17,0x09,0x1f,0x99,0x89,0x21,0x9c,0xe6,0xed,0x60,0x03,0xa4,0x35,0x00,0xf1,0x13, -0x68,0x38,0x75,0x7c,0xc0,0xa7,0x26,0x00,0xe2,0x91,0x86,0x9b,0xd5,0x7b,0xe9,0x2d, -0x3e,0x58,0x43,0x67,0x6f,0xa3,0xf1,0x38,0x0b,0x01,0xd0,0xea,0x98,0x9d,0x96,0x91, -0x1c,0x4b,0x67,0x03,0x33,0x28,0x7b,0xed,0xf3,0x9d,0x0f,0x2f,0xed,0x5c,0xfb,0xfd, -0xcd,0x2f,0x5e,0xe6,0xd2,0x5f,0xb4,0x4d,0xb7,0x78,0xc7,0x82,0x21,0x0e,0x7c,0xbd, -0x79,0xf9,0xd3,0x9b,0x5f,0xfc,0xae,0xf7,0xfc,0x7b,0xe0,0xc9,0xe0,0x81,0xae,0x5c, -0x88,0x08,0x7a,0xd4,0xad,0xce,0x6b,0x02,0xaa,0x3d,0x0f,0xc5,0xf7,0xbe,0xe7,0x61, -0x73,0x6b,0x27,0x0f,0x61,0x68,0x46,0xe0,0x07,0x78,0x18,0x00,0x78,0x5d,0x37,0xba, -0x0d,0x30,0x34,0x04,0x22,0x64,0xbc,0x71,0xca,0x65,0x75,0xb0,0x6a,0x6f,0x7c,0x76, -0xfe,0xe6,0xaf,0xae,0xf7,0x5e,0x7c,0xbe,0x77,0xf1,0xaf,0x3b,0x7f,0xb9,0xd2,0x7f, -0xfb,0x9a,0xcf,0xc2,0xb8,0x31,0x3d,0x58,0x0d,0x1b,0xa9,0x0b,0x72,0xd9,0xab,0x22, -0xa9,0x8e,0x9b,0x9f,0x3c,0x7f,0xf3,0xcb,0x33,0x72,0xf9,0xc6,0x67,0x1f,0xf6,0x3e, -0xba,0x34,0xb4,0x16,0xc2,0xf3,0x3b,0x5c,0x1f,0x9f,0xf7,0x42,0x7a,0x17,0x2e,0xdf, -0x3a,0x75,0xf6,0xeb,0x6b,0xaf,0xf7,0xdf,0xf8,0x27,0x70,0x94,0x45,0xc9,0x7c,0x14, -0xb4,0x8f,0x5d,0xf7,0x88,0xd3,0x03,0x03,0xc3,0x9f,0x86,0x5f,0x87,0x0e,0x61,0x8a, -0x69,0x2a,0x45,0x52,0x53,0x51,0x62,0x28,0xc1,0xc1,0xb8,0xf5,0xc5,0x9e,0x45,0x45, -0xc7,0x1c,0xb6,0xcc,0xa6,0xc4,0x03,0x59,0xe6,0x13,0x62,0xb3,0xb3,0xe3,0x49,0x29, -0x85,0x9e,0xb8,0x94,0x82,0xb5,0xd1,0x7b,0xf7,0xcc,0xbe,0x94,0x0e,0x4a,0x29,0xc7, -0xef,0x41,0x29,0x8d,0x91,0xb7,0x20,0x56,0x3e,0x54,0xdc,0x46,0x08,0x59,0xf2,0x6a, -0x4c,0x74,0x86,0xa7,0x8b,0x8f,0xd4,0xfa,0x5a,0xc6,0xbc,0x31,0xb0,0x3d,0x86,0xd9, -0x08,0x83,0x23,0x03,0x9c,0xe7,0x31,0xa7,0x36,0x25,0x61,0x6a,0xdb,0xe6,0x39,0x31, -0x36,0xed,0x9c,0xfd,0x71,0xfb,0x4d,0xa8,0x7b,0xa9,0xa3,0x63,0x36,0x21,0x3f,0xba, -0x09,0xfe,0x52,0x59,0x68,0xf9,0x8c,0x25,0x57,0xf2,0xcb,0x67,0x18,0xbc,0xa3,0x71, -0x55,0x70,0x1f,0xbd,0xe1,0x4f,0x83,0xb1,0xf1,0x44,0xb3,0x84,0x44,0x7d,0xa3,0xc6, -0x42,0xbc,0x4c,0x0b,0x3c,0x1c,0x3c,0x08,0x62,0xbe,0xa1,0x95,0x21,0xaf,0x86,0x1a, -0xae,0x1c,0x63,0x11,0x6a,0x0a,0x1e,0xa3,0x87,0x81,0xa5,0xbc,0x97,0xa9,0x27,0x87, -0x14,0x74,0xe3,0xdb,0x61,0x72,0xa3,0xd0,0x1c,0x0d,0x2e,0x6c,0x22,0x55,0xa8,0x0b, -0x38,0xaa,0x98,0xa7,0x4b,0xd7,0x10,0xf2,0xe1,0x35,0x84,0xa0,0x6d,0x12,0x3b,0x7b, -0x1e,0xb3,0x56,0x30,0xb2,0xc3,0x99,0x58,0x5c,0x2d,0xe3,0x86,0xba,0x79,0x35,0x3f, -0x18,0x66,0x8f,0xab,0x14,0x3f,0x77,0x72,0x67,0x75,0x86,0x98,0xc9,0x5a,0x3c,0xb8, -0x1a,0x1b,0x32,0xec,0x42,0xb1,0xfe,0x04,0xd9,0xe0,0x73,0x2b,0x62,0x25,0x21,0x89, -0x6f,0x1e,0x7c,0xa8,0x3f,0x63,0xdb,0xbb,0x1d,0x44,0xbf,0x62,0x56,0x46,0xee,0x9c, -0xae,0x10,0x6b,0x47,0x90,0xc5,0xb7,0x81,0x63,0x96,0x3f,0x6c,0xbd,0x3c,0x88,0xa0, -0x3b,0xb9,0x81,0x8e,0x38,0x73,0xf8,0x3e,0x79,0xa0,0x33,0xd1,0xb4,0x98,0x2c,0x1e, -0xfe,0x71,0x74,0x41,0xcb,0x5d,0x5e,0xb7,0x59,0x40,0x0c,0x17,0xd7,0xf1,0xd0,0x2e, -0xc0,0x08,0xf5,0x76,0x0d,0x27,0x4b,0xe4,0x7c,0x3e,0x1f,0xca,0x0d,0x8d,0x59,0xcc, -0x0a,0x26,0x14,0x7e,0x9d,0x98,0x9b,0x2d,0xb6,0x07,0x7c,0x39,0x9f,0xda,0x50,0x75, -0xd1,0x66,0xb2,0x45,0xeb,0xdd,0xb4,0xf2,0x21,0x68,0xe5,0xe3,0x87,0x85,0x98,0xd5, -0xd5,0xe1,0x43,0x1f,0xc5,0x37,0x1d,0x5d,0x03,0x4d,0x3f,0x14,0x2a,0x34,0xb0,0x16, -0x18,0x45,0x99,0x94,0xe1,0x35,0xe8,0x5f,0xef,0x4e,0x8b,0xc5,0x10,0xc7,0x12,0x96, -0x9c,0xe8,0x2a,0x7d,0x6c,0x62,0x2f,0x28,0xea,0x23,0x87,0x1f,0x39,0x3c,0x43,0x7e, -0xa8,0x9f,0xa0,0xde,0x2b,0xc1,0xb3,0x4e,0xac,0x48,0x5b,0x43,0xd4,0xc4,0x28,0x2e, -0xaf,0x56,0x37,0xd4,0x29,0x04,0xdf,0x2b,0x8a,0x46,0x7f,0x83,0xef,0x15,0xa5,0xf2, -0xa9,0xf8,0xaf,0x2c,0x1d,0x52,0xdb,0x5d,0xd5,0xa0,0x1f,0x31,0x12,0xc6,0x58,0x2b, -0xbd,0x8d,0x7a,0x87,0x54,0xc1,0xdf,0xc4,0x05,0x48,0x81,0xaf,0x12,0x8e,0x6a,0x7b, -0xc8,0x7a,0x7d,0x98,0x65,0xac,0xff,0xe7,0x83,0x92,0x18,0xda,0x8c,0x16,0x20,0x24, -0x88,0xd7,0x8c,0xd3,0x06,0xcc,0xa5,0x9a,0xc2,0x54,0xaa,0x04,0x1e,0x0a,0x53,0x7c, -0x75,0x53,0x42,0x4c,0x53,0x93,0xf8,0x79,0xfb,0xa4,0x8c,0x59,0x6b,0x22,0xbf,0xbd, -0x24,0xbd,0x50,0x3c,0xc8,0x0d,0x06,0x05,0x50,0xe3,0xc5,0xfb,0x03,0x78,0x3e,0x21, -0x08,0xf0,0x0d,0x2a,0x35,0xa6,0x45,0xb3,0x98,0xde,0x1c,0x56,0x67,0x03,0x1b,0x53, -0x42,0xf4,0xee,0x52,0x3b,0x6e,0xc7,0x85,0xac,0x58,0x72,0x94,0xdd,0x5d,0x6d,0xe9, -0xa3,0x83,0x55,0x91,0x84,0x4f,0x57,0x4d,0x71,0x69,0x69,0x11,0x55,0x10,0x4a,0x05, -0xe5,0xa1,0x59,0xd6,0x59,0x12,0x34,0x5b,0x79,0x0e,0xe7,0x94,0x25,0x62,0xde,0x6c, -0x84,0x10,0x63,0xca,0x58,0x0c,0x2c,0x68,0x20,0xb5,0x85,0xa1,0xfe,0x80,0xf8,0x29, -0x22,0xd0,0x6d,0x13,0x01,0x81,0xa1,0x27,0x48,0x44,0x18,0x84,0x5b,0xda,0xe6,0x26, -0x39,0x7c,0x97,0xab,0x7b,0x3b,0xdc,0x12,0x27,0x80,0xf8,0x49,0x08,0xec,0x5c,0x46, -0x59,0x66,0x36,0xd6,0x20,0xf1,0x97,0xd0,0x77,0xd7,0x43,0x6e,0x6a,0x35,0xcf,0x18, -0x96,0xfe,0x16,0xe1,0x0c,0x48,0xce,0x4f,0xfd,0x15,0xf9,0xb4,0x5b,0x2a,0x13,0xb3, -0xde,0x94,0xcb,0xfd,0xa4,0x6b,0xb2,0x99,0x83,0x1c,0x52,0xad,0xe3,0x76,0x74,0x37, -0x17,0xdb,0x8d,0xf3,0x93,0x43,0x69,0xdb,0xb1,0x22,0xfb,0xb8,0xe0,0x09,0x9d,0xdd, -0x43,0x47,0x6c,0x3e,0xf7,0x1c,0x81,0xe7,0x2c,0xec,0x74,0x78,0x2d,0x2d,0xa4,0x40, -0x9b,0x2f,0x80,0x8a,0x1b,0x02,0x83,0xb3,0xc5,0x48,0x18,0x92,0x0c,0xc3,0xb4,0x25, -0x59,0x20,0x85,0x70,0x2a,0xa7,0x9b,0x2a,0x1d,0xb2,0x8a,0xb6,0xa3,0x79,0xd4,0xbc, -0x19,0xc4,0x67,0xe5,0x3e,0xd3,0xaa,0xe1,0xfe,0x24,0xd4,0xfc,0x2b,0xa6,0x65,0x6d, -0x81,0xdf,0xa2,0xb6,0x53,0x0e,0xc1,0xa3,0xfe,0x53,0x04,0xb4,0xf7,0x2f,0x04,0xfc, -0xa5,0x5f,0x1d,0xc0,0x0b,0x0d,0xfc,0xf8,0x2d,0xe9,0x17,0xed,0x5f,0xb4,0x0f,0x1a, -0xb6,0x99,0x25,0x2e,0x51,0x73,0xf3,0x40,0x95,0x24,0x04,0x78,0x0d,0x2d,0x8a,0xd7, -0x83,0x24,0x15,0x84,0x8b,0xba,0x33,0xbb,0x1a,0xbf,0x34,0x0d,0x27,0xde,0xba,0xec, -0x58,0x66,0x27,0x2d,0xb8,0xee,0x96,0x80,0xcb,0x1a,0x32,0xb8,0x5b,0xf9,0x70,0xe2, -0x5b,0x82,0xc3,0x11,0x3b,0xec,0x6c,0x7b,0x33,0x02,0x1c,0x24,0xc7,0x46,0x0a,0xa0, -0xb0,0x70,0x82,0x84,0x39,0x31,0xd8,0x77,0xc1,0x23,0x86,0x2d,0x13,0xea,0x3d,0xd5, -0xd0,0x2c,0x27,0xed,0x76,0xc3,0x38,0x3b,0xfa,0xb0,0x16,0x86,0x48,0x0a,0x58,0x1a, -0x83,0xd2,0xed,0x81,0x71,0x50,0x86,0x15,0x0c,0x72,0xd7,0x53,0x1c,0x94,0x55,0xde, -0x0d,0xab,0x75,0x36,0xc9,0x50,0x9e,0xac,0x0e,0x09,0x79,0xc0,0x21,0xaf,0xb8,0xf7, -0xc6,0x17,0x37,0xdf,0xf9,0x60,0x20,0x23,0xde,0xa9,0x79,0x3b,0xef,0x40,0x2d,0x58, -0xba,0x66,0xcf,0x90,0x63,0xe4,0xd8,0x93,0xe4,0x49,0x7f,0x0b,0x86,0x0b,0x46,0xb3, -0xb8,0x31,0xbf,0x4e,0xdb,0xc4,0x5d,0x9c,0x96,0x03,0xee,0xbf,0xb4,0xac,0xb7,0xb5, -0x74,0x4a,0xf2,0x52,0xe6,0x53,0x59,0x0f,0x61,0x96,0x3c,0x8b,0xd9,0xe5,0x07,0x2d, -0x4d,0x9d,0xa1,0x63,0x2c,0x4b,0xd4,0x13,0xba,0xfd,0xef,0x33,0xe4,0xd9,0x8e,0x69, -0xeb,0xd8,0xce,0x19,0x92,0x02,0x02,0x53,0xdb,0xdb,0x7c,0x88,0xb8,0x83,0x3b,0x58, -0xc1,0xd8,0x3b,0x41,0x0d,0x9f,0x68,0xe6,0xfe,0x26,0x74,0x5b,0xf8,0x79,0x67,0x58, -0x32,0x6c,0x27,0x14,0x7d,0xde,0x1c,0x06,0xba,0x19,0x06,0xad,0x0d,0xcd,0xd7,0x87, -0xd7,0x11,0xf0,0xad,0xe1,0xe0,0x5b,0xc2,0x40,0x1b,0x71,0xea,0xb6,0x1e,0x6b,0xcc, -0xc6,0xb9,0x1e,0x74,0x1b,0xef,0x4f,0x41,0x2d,0x5b,0x8d,0x04,0x17,0x8b,0xa2,0x18, -0x26,0x33,0xe8,0x5a,0x91,0x58,0xcb,0x3b,0xb2,0x27,0x95,0x62,0x4a,0x4e,0xab,0x25, -0xa1,0x1e,0xa1,0xd7,0x12,0x5e,0x4f,0x11,0x39,0x14,0x48,0x42,0x54,0x08,0x11,0x9b, -0xeb,0x4f,0x44,0xee,0xb9,0xb9,0xb6,0x06,0xf3,0xcf,0xe0,0x73,0x06,0xbf,0xac,0xad, -0x39,0x21,0xc4,0xac,0x4a,0xfa,0x6b,0x4b,0x60,0x17,0x3f,0x8a,0xdb,0x71,0x35,0xc6, -0x5e,0x32,0xbf,0x30,0xe8,0x51,0xd5,0xbb,0x96,0x55,0x43,0xb1,0x70,0x81,0x72,0x72, -0x3e,0x64,0x59,0x75,0x42,0x46,0x1e,0x83,0x96,0x1c,0x13,0xbc,0x10,0xad,0x91,0x56, -0x06,0xfd,0x19,0x83,0x3a,0xc4,0xae,0x58,0x4b,0x6c,0x8c,0xd0,0x6c,0x3f,0x4c,0x43, -0x62,0xc5,0x63,0xb2,0x54,0x71,0xeb,0x04,0xb3,0xc3,0x60,0x60,0xe1,0xde,0xb1,0x53, -0xbd,0x77,0x5f,0xc7,0xfb,0xfe,0x7f,0xe1,0x07,0x1f,0xfb,0xe7,0x3f,0x0e,0xdb,0xa6, -0x83,0xf8,0xed,0xa6,0xbe,0xe6,0x0c,0xc9,0xb4,0xe4,0xdf,0x04,0xa3,0x63,0x6a,0x3e, -0xcc,0x31,0xd7,0x57,0x88,0x64,0x2e,0xba,0xc3,0x15,0x54,0xf1,0x26,0xf6,0x43,0x3a, -0x28,0xff,0x6f,0x40,0x74,0x08,0xb3,0x3b,0xf0,0xa5,0x6e,0x07,0x77,0xe2,0xa4,0x5d, -0x3a,0x43,0x59,0x8b,0xa8,0x59,0x07,0xeb,0x44,0xa7,0x37,0x8f,0x11,0xe8,0x13,0xa0, -0x69,0xe5,0x7c,0x74,0xa1,0x78,0x97,0xfb,0x44,0x62,0x38,0x30,0x98,0x91,0xc7,0xa8, -0x88,0x49,0xc8,0xf3,0x86,0xe9,0x06,0xe6,0x01,0xd0,0xa3,0x04,0xff,0xcd,0x63,0x53, -0xad,0x6e,0x76,0xdb,0x4e,0x86,0xe4,0x68,0x6f,0xc1,0x9f,0x42,0x19,0xfe,0x72,0x35, -0x6e,0x86,0xe4,0x05,0x70,0xf8,0xc2,0x52,0x88,0x8e,0x25,0x78,0x49,0x15,0x87,0x57, -0x45,0x3a,0x54,0x07,0x48,0x7b,0xe8,0xbe,0x26,0x03,0x2b,0xb7,0x6a,0xea,0xba,0x99, -0x19,0x56,0xbd,0x8b,0x93,0xfd,0xc5,0xec,0x84,0xef,0xc3,0x7f,0x33,0xec,0x3e,0x04, -0xe7,0x44,0x09,0x85,0x27,0x43,0x49,0xdd,0x4a,0x24,0x35,0x20,0x6d,0x80,0x68,0x05, -0xdf,0xd8,0xe3,0x50,0xbd,0xe5,0x52,0xb1,0x15,0xa1,0x7a,0x2b,0x04,0xb7,0x35,0x40, -0xf5,0x56,0x3c,0xd5,0x81,0x98,0xd1,0x40,0x72,0x0d,0xa3,0xd1,0x35,0xad,0x8d,0x89, -0xca,0x8d,0xc1,0xec,0xe2,0xc1,0x5c,0xe6,0xfc,0x64,0x52,0xa2,0xf3,0xe3,0x27,0x44, -0x07,0x14,0x03,0x89,0xbb,0x21,0x55,0x9e,0x0c,0xa9,0xf2,0xee,0x72,0xb7,0xa3,0x6c, -0x76,0xf0,0x48,0x88,0x9a,0x8b,0x12,0xa6,0x98,0x31,0x08,0x57,0x26,0x43,0xb8,0xb2, -0x3b,0xc2,0x07,0xb6,0x7e,0x30,0xfa,0x87,0xec,0xfc,0x08,0xef,0xfd,0xe0,0xc1,0x13, -0xb7,0x7e,0xec,0xd9,0xe6,0x8f,0xe1,0xdb,0x3f,0x18,0x6d,0x71,0xbb,0x3f,0x06,0xf6, -0x7f,0x44,0x41,0x39,0xc8,0xdb,0xde,0x00,0x72,0xfb,0x5b,0x17,0xf6,0xb7,0x8e,0x4c, -0x62,0xeb,0xc8,0xbd,0xb8,0x01,0x84,0xb3,0xdb,0x5c,0x23,0x77,0x3e,0x21,0x66,0xc5, -0xd9,0xb9,0x59,0x52,0x08,0x07,0xad,0xb2,0x81,0xe1,0x09,0x9a,0x68,0xc5,0xb1,0xf4, -0xf6,0x7a,0x90,0x6d,0xb0,0x3d,0xfa,0x00,0x0f,0xbf,0x5d,0x51,0x83,0xda,0x77,0x97, -0x22,0x9e,0x51,0xd8,0x5b,0xe2,0x4e,0x1e,0x8a,0xae,0x24,0xd2,0xac,0xab,0x4d,0x4d, -0x3b,0xde,0xa0,0xdb,0x06,0x46,0xae,0x26,0x62,0x27,0x46,0xe2,0xe8,0x3c,0x0a,0x77, -0x45,0xd0,0x5d,0x9c,0x7b,0x68,0x30,0xc6,0xed,0xd7,0xc9,0xf6,0x42,0x27,0x2f,0xea, -0xc4,0xef,0x64,0x49,0x2a,0x1a,0x5e,0xa7,0xda,0x8e,0x38,0x91,0xbc,0x3f,0xc2,0x65, -0x25,0xc7,0xad,0x84,0x38,0xec,0xc4,0xa6,0x44,0x5f,0x24,0x9c,0x8d,0x1c,0xca,0xdd, -0x63,0xe9,0xc2,0x98,0x28,0xf8,0x0b,0x5e,0xa0,0x68,0x8e,0xb1,0xf7,0x2d,0xce,0x66, -0xcc,0x3b,0x3a,0x1e,0xe3,0xdf,0xb1,0x63,0x6f,0x12,0xde,0x7d,0xf1,0xe1,0xce,0x4b, -0x97,0x13,0x70,0x06,0x39,0xcd,0xe1,0xec,0x42,0x6b,0xc1,0x4b,0x6b,0x0e,0x51,0xee, -0x27,0x1d,0xfa,0x16,0xad,0xd9,0xb6,0x4d,0x43,0x93,0x0c,0x73,0x3d,0xe2,0x42,0x51, -0x06,0x00,0x93,0xec,0x61,0x7e,0x16,0x4a,0x09,0x05,0xf2,0xec,0xe7,0xdb,0xce,0xae, -0xe4,0x65,0x77,0x64,0x52,0x65,0xdc,0xd4,0xc0,0x93,0x11,0x37,0x2b,0xf0,0x64,0x44, -0xf8,0x18,0xe9,0x48,0x96,0x8f,0x8a,0x51,0x10,0x8a,0x13,0xe7,0x90,0x8e,0xc5,0x3e, -0x1f,0x8f,0xf1,0x11,0x4a,0x5d,0x42,0x81,0x48,0x26,0xad,0x5f,0xde,0x4f,0xa9,0x1d, -0xb1,0xa5,0x60,0x14,0xfe,0x74,0x7a,0x10,0xe5,0xfc,0xbc,0x2c,0x3f,0xf7,0xdc,0xe0, -0xf3,0xb9,0x4a,0xe6,0xfb,0x1c,0x38,0xb3,0x85,0xbe,0x2f,0x80,0xa8,0x09,0x33,0x78, -0x98,0x97,0x90,0x99,0x11,0x44,0x61,0x64,0x95,0xeb,0x9a,0xb3,0x6c,0x9a,0x1d,0x9c, -0xc1,0x02,0x6c,0xae,0x16,0x18,0x5a,0x38,0x2e,0xa1,0xf7,0x11,0xcd,0x08,0xc6,0x65, -0x88,0xc3,0x34,0xad,0xd7,0x51,0x5b,0x1d,0x44,0x19,0x93,0xdb,0x1b,0xee,0xb2,0x21, -0xb2,0x31,0x32,0xdf,0x76,0x64,0x12,0x09,0x92,0xd2,0xa8,0x51,0x0d,0x34,0x24,0xdf, -0x76,0xc4,0xe9,0x3d,0x3c,0xdb,0x74,0x4f,0xaf,0xb3,0x79,0x2a,0xb8,0xaf,0xab,0xa0, -0xf9,0xf2,0x33,0x7c,0x76,0x10,0x49,0xdd,0xf8,0xec,0x3c,0x1b,0xf2,0xa9,0x59,0x0e, -0x4a,0x8e,0x40,0xf5,0x2f,0x5f,0xe8,0xbd,0xfc,0xc1,0x8d,0xcf,0x4e,0x85,0xa0,0x94, -0x78,0xa8,0x2b,0x2f,0x86,0xa0,0x0a,0x09,0xb8,0xce,0x86,0xa0,0x8a,0xb1,0x50,0xbd, -0x37,0xde,0x08,0x41,0x95,0x12,0x6a,0x7c,0x35,0x04,0x55,0x8e,0xc7,0xf5,0xfc,0x47, -0x21,0xa8,0xe9,0x58,0xa8,0xfe,0xa5,0xf7,0x52,0xbc,0xc6,0x42,0xc8,0x4a,0x0c,0xe4, -0xbb,0x7f,0x49,0x85,0xfb,0x22,0x14,0xfc,0xf6,0x27,0x94,0x61,0x41,0x2f,0x6e,0xd6, -0x99,0x8d,0x14,0xa5,0xa3,0x7f,0x54,0x51,0xe6,0xd7,0xfb,0x11,0x4d,0x1f,0x9d,0x97, -0xc3,0x42,0x04,0xfa,0x3d,0x5a,0xfc,0xc6,0x83,0x6f,0x79,0xba,0x60,0x58,0x34,0x00, -0x93,0xf3,0x33,0x78,0x08,0x51,0xde,0x03,0x1a,0xc4,0x34,0xf2,0x58,0x11,0xbe,0x64, -0x08,0x79,0x6c,0x49,0xef,0x38,0x24,0x61,0x60,0x2a,0x3d,0xd8,0x68,0xc4,0x4e,0xa5, -0xee,0xf9,0x67,0x38,0x26,0xc2,0xc4,0x85,0x82,0xea,0x50,0xb3,0x07,0x11,0x10,0x11, -0x82,0x60,0x41,0xba,0xe1,0x7c,0xb5,0x8f,0x3b,0x68,0x53,0xb1,0x28,0x7c,0xa4,0x3c, -0x41,0xcd,0x36,0xa2,0x3c,0xdb,0xa6,0xcb,0xfc,0x80,0x70,0x12,0xd3,0xf1,0x98,0x7c, -0x81,0x44,0x3b,0x87,0x0b,0xce,0x60,0x3c,0xc9,0x13,0x09,0x95,0xae,0xc6,0x1d,0xa1, -0xea,0x4c,0x6f,0x51,0xab,0x39,0xe8,0x88,0x23,0x4b,0x4b,0x8c,0xb3,0xa1,0x00,0xbc, -0x37,0x9d,0xcc,0xb3,0x23,0x8a,0x2c,0xb3,0xdb,0x6e,0x04,0xfd,0xe2,0x21,0xf7,0x62, -0x15,0x7c,0xba,0x2a,0x57,0x94,0x9b,0x94,0xe8,0xdc,0xfc,0x58,0xdb,0xc1,0x75,0xb1, -0x00,0x9a,0x72,0x06,0x7e,0xb8,0x4c,0xb4,0x70,0x52,0x56,0xab,0x11,0x46,0xc3,0x62, -0xff,0x2c,0x54,0xca,0xae,0xa1,0xb4,0x77,0x09,0xbc,0x8a,0x4f,0x48,0x1c,0x65,0x4a, -0x71,0xf9,0x24,0x83,0x59,0x33,0x6c,0x01,0x23,0x6c,0x55,0x0c,0x5f,0x49,0x8e,0xdd, -0x71,0xc6,0xd2,0xf0,0x5a,0x8d,0xd0,0xb2,0xf1,0x08,0x4b,0xfb,0x40,0x3a,0xd5,0x35, -0x8e,0xd1,0x2f,0xee,0xb2,0xa3,0x61,0x6a,0x78,0x22,0x97,0xf0,0x24,0x3b,0x3c,0x86, -0xdf,0x83,0x87,0xe6,0x72,0x8a,0x2e,0x55,0xa5,0xb2,0x51,0x14,0x0f,0x73,0x65,0x53, -0x34,0x61,0x76,0x7d,0x5d,0x03,0xc7,0x8e,0x59,0xd7,0xd4,0xa3,0xdb,0xf6,0x7f,0xfc, -0x7d,0x82,0xa1,0x32,0x14,0x3b,0x03,0x1f,0x34,0xc6,0xfd,0x2d,0x41,0x5c,0x8a,0x7d, -0xb0,0x16,0x85,0xc8,0xd8,0x0e,0x11,0x3a,0x81,0xd6,0x3a,0xf8,0x61,0x59,0x7a,0xcd, -0xbe,0x28,0x9c,0x72,0x5d,0x72,0x3f,0x89,0x2e,0x95,0x4f,0x7d,0x1f,0x77,0x4d,0xf5, -0xce,0x5c,0xed,0xff,0x0d,0xa3,0xba,0xa9,0x99,0x94,0xfb,0x35,0xf4,0xf7,0x5f,0xc1, -0x5b,0x8e,0xd6,0x03,0x03,0x47,0x0b,0x86,0xf6,0x81,0xca,0xd4,0xf0,0x9a,0x07,0x27, -0x68,0x70,0xd7,0x67,0x02,0x4d,0xdf,0xcc,0xa6,0x48,0x3d,0xba,0x09,0x72,0xdc,0xb4, -0x08,0x77,0x5d,0x99,0x9f,0xd4,0x43,0xbb,0x17,0x51,0x04,0x02,0x97,0x62,0x95,0x7b, -0x15,0x37,0x1e,0xe2,0x37,0x55,0x86,0x6d,0x6b,0x3e,0x00,0xcc,0xc4,0xc6,0xbd,0xf7, -0xb1,0x01,0x53,0xf8,0x0d,0x51,0x2e,0x66,0x2e,0x7e,0x61,0xb6,0xd7,0x9f,0xb0,0xd8, -0x7a,0x6c,0xa2,0x56,0xe4,0xe5,0x3d,0x4e,0xa9,0xd2,0xed,0x46,0xc3,0x10,0xb8,0x9b, -0x5c,0x13,0x11,0xb0,0x9e,0x37,0xad,0x5a,0xb0,0xbc,0x9f,0x7c,0x76,0x55,0xac,0xac, -0x70,0x68,0x71,0xf3,0x56,0xfa,0x21,0x4a,0xd3,0x73,0xcf,0x3d,0x14,0x45,0x8d,0x9d, -0xc0,0xe5,0x61,0xdf,0xbc,0xfc,0x29,0x3b,0xbc,0xf2,0xd6,0xa9,0xb3,0xb7,0xde,0xf9, -0x9c,0xf6,0xa3,0xaf,0x4e,0xe2,0xb6,0xef,0x8c,0xea,0xb6,0x31,0x92,0xff,0xf8,0x34, -0xf0,0x4f,0xff,0xb7,0xff,0x29,0x38,0x31,0x6f,0xb3,0x5d,0x62,0x37,0xae,0xfc,0xf6, -0xc6,0xd5,0x4f,0x42,0x21,0xb9,0x01,0x21,0x8a,0x4d,0xf3,0xa3,0xbb,0x99,0xa3,0x4d, -0xdd,0x26,0x07,0x9e,0xa5,0x6c,0xc0,0x0b,0xbf,0xa3,0x07,0x36,0xd7,0xfb,0x4d,0x18, -0xdc,0x3f,0x37,0xd0,0x2f,0x59,0x1f,0x8d,0x67,0x94,0xee,0x25,0x6b,0x98,0x51,0xbf, -0x37,0xac,0x11,0xe5,0x44,0xa6,0xf8,0x84,0xb3,0xb1,0x7d,0xd8,0x73,0x91,0xd2,0x74, -0x8b,0xae,0xbb,0x35,0x23,0x1b,0xec,0x9f,0x44,0xab,0x9d,0xb6,0x82,0xe5,0x16,0x82, -0xcd,0x8e,0xf3,0xa4,0x37,0xc7,0xd2,0x42,0x6e,0xb8,0x35,0x25,0xa6,0x32,0xb8,0x27, -0x73,0x96,0x6d,0x30,0x74,0xf7,0x0a,0x01,0x23,0xc4,0x20,0xec,0x9c,0x24,0xf8,0xd0, -0x0a,0x8a,0x6a,0x5b,0xa4,0xd6,0xc7,0x53,0x19,0xdf,0x44,0xe3,0xb6,0x67,0xce,0x8e, -0x8b,0x83,0x96,0xe5,0x70,0x88,0x32,0xd3,0x76,0x5c,0x78,0x65,0xf7,0x84,0x84,0x38, -0x32,0x3b,0x1e,0x8e,0x28,0x21,0x94,0x27,0x9e,0xe6,0xe5,0x77,0x07,0xe0,0xf6,0x46, -0xba,0x91,0x9c,0xf6,0xf6,0x78,0xc9,0x04,0x28,0x44,0x8c,0x33,0x6c,0x5f,0xda,0x80, -0x10,0x31,0xe9,0xa0,0x7d,0x86,0x83,0x84,0x56,0xce,0x64,0x61,0x30,0x61,0x36,0xe4, -0x8d,0xfa,0x0e,0x68,0x24,0x5c,0x84,0x07,0x99,0x32,0x1b,0x27,0x27,0x4c,0xf9,0x40, -0xe3,0x11,0xfb,0x08,0x1d,0x7f,0x54,0x19,0x36,0xa8,0x11,0x4c,0x0e,0xff,0xf8,0xa1, -0x90,0xc4,0x27,0x1b,0x33,0x01,0x3d,0x03,0x27,0x02,0xf3,0x61,0xbe,0x50,0x00,0xf0, -0xf0,0x91,0x83,0xb1,0x67,0xf3,0x1e,0x76,0xd4,0x15,0x7c,0x1c,0xb5,0xdf,0xf1,0x63, -0xdf,0x5d,0x6b,0xe8,0xd9,0x5c,0x2e,0x48,0xac,0x92,0xa7,0xa7,0x98,0xe2,0xb7,0xa5, -0xfd,0x3c,0x41,0xc3,0xac,0x53,0x71,0x91,0xbc,0x57,0x21,0xf8,0x55,0x70,0xdd,0x7e, -0x46,0xab,0xf3,0x5e,0x4f,0x09,0x39,0xe0,0x6a,0xb4,0x70,0x13,0x04,0x24,0xde,0xd4, -0x04,0x6a,0x86,0xc9,0x09,0x6b,0xa7,0xd3,0xb5,0xc3,0xac,0x74,0xdb,0x90,0x9c,0x39, -0x1d,0xf9,0x52,0x78,0xb0,0x13,0x92,0x59,0xa7,0x42,0xef,0xf4,0x99,0x9d,0xd7,0x7f, -0xcd,0x7e,0xfb,0x7f,0xb8,0xcc,0x2e,0x30,0x1a,0xfe,0xe5,0xf5,0x9d,0xd7,0xde,0xe3, -0x3c,0xbe,0x90,0xdd,0x8a,0x4d,0xc6,0x4f,0xa9,0x3f,0x46,0xbf,0xca,0x3e,0x82,0xc7, -0xf4,0x9b,0xeb,0xfc,0x76,0x28,0xbf,0xa4,0x84,0x57,0x5c,0x80,0x2d,0x1a,0x61,0x73, -0x69,0x84,0x79,0x0f,0x66,0xbc,0xfe,0x6f,0xff,0x72,0xf3,0xcf,0xa7,0xd9,0x37,0xc8, -0x71,0xb7,0x66,0xf0,0x19,0xf2,0xe4,0x23,0xc4,0x81,0x1f,0xa1,0x33,0xe1,0xf8,0x28, -0x78,0x86,0xee,0x2c,0x0e,0x62,0x84,0x11,0xaa,0xe8,0x9a,0xbf,0x7e,0x12,0xac,0x77, -0xb6,0x37,0xec,0xca,0xab,0xfd,0x3f,0x7c,0xb1,0xf3,0xee,0x15,0x52,0x2e,0x4e,0xcb, -0xe5,0x0a,0xe9,0x7d,0xfa,0xe7,0xde,0x85,0x7f,0x80,0x02,0xd6,0x30,0xee,0x41,0xfb, -0x2f,0xb7,0xe6,0x73,0x1a,0xba,0x92,0xb6,0xa3,0xa5,0x39,0x4d,0xb3,0x31,0xe3,0x9d, -0x2d,0x8c,0x8f,0x30,0x74,0xa9,0x59,0x78,0x50,0x3e,0x3d,0x92,0x1f,0xd7,0x24,0xc4, -0x23,0x68,0x6c,0x00,0x14,0x58,0x8e,0xa0,0x35,0xa8,0xa8,0xe4,0xcc,0xba,0x43,0x0f, -0x9d,0x03,0xf3,0xbe,0x25,0xb8,0xa7,0x2d,0x63,0xa4,0x67,0x86,0x0c,0x52,0x8a,0xf6, -0x9c,0xe4,0x34,0x35,0x50,0xfb,0x98,0x84,0x61,0xb9,0x7b,0xdc,0xdc,0x67,0x94,0x8d, -0xe0,0x25,0xaa,0x48,0x29,0xbb,0x89,0x4b,0xa2,0xc3,0xbe,0xf2,0x8f,0x75,0x4b,0x3c, -0x59,0x3c,0x80,0xf2,0x97,0x74,0x82,0x47,0x83,0x9b,0x91,0xa8,0x7d,0xeb,0x6f,0xe0, -0x76,0x37,0x6e,0x37,0x52,0xf1,0x91,0x79,0xba,0x69,0xda,0x5b,0xde,0x78,0xc2,0x32, -0xd7,0x71,0xba,0xc3,0x45,0x0a,0xef,0x3a,0x9d,0x1f,0xc8,0xae,0x8a,0x68,0x02,0x3a, -0x42,0xc2,0xaa,0xe0,0x2e,0x8e,0x65,0x66,0x2d,0x8f,0x18,0xca,0x94,0x26,0xcd,0xaa, -0x33,0x3b,0x34,0x98,0x7b,0x43,0x8e,0x62,0x2e,0x17,0x8e,0x5f,0x73,0xe9,0x6b,0x01, -0x3c,0x5f,0x80,0xeb,0x84,0xa1,0x1c,0x74,0x6b,0x1e,0x58,0xca,0x77,0x09,0x9a,0x1b, -0x08,0x72,0xfb,0xed,0xb5,0x34,0xa6,0x43,0xc6,0xcd,0x82,0xf6,0x3b,0x64,0x58,0x06, -0x74,0xa0,0xdd,0x43,0xea,0x9e,0x7d,0xbc,0x61,0xe0,0xc8,0x45,0xf6,0xf5,0xfa,0xa1, -0x07,0x2e,0xba,0x1f,0xb8,0xe7,0xa3,0x5c,0x70,0x5f,0xc3,0xcf,0x93,0xc7,0x16,0x0b, -0x9f,0x8d,0x08,0xc5,0x45,0x5a,0x3c,0xd8,0xb6,0x15,0xda,0x84,0xe2,0x7e,0xa8,0x3e, -0x6e,0xd9,0xc5,0x30,0x87,0x66,0x0d,0xba,0x84,0x85,0x42,0xae,0x16,0xbf,0x28,0xec, -0x52,0x19,0xe4,0xdf,0xe4,0xb3,0x91,0x67,0x4b,0x9a,0xbe,0xde,0x74,0x92,0xf9,0xc8, -0x11,0x38,0x1b,0x61,0x64,0x88,0xb9,0xa0,0x43,0x7b,0x6f,0xff,0xcf,0xad,0xb7,0xaf, -0xee,0xbc,0x74,0x66,0xb0,0x8d,0x5c,0x2a,0x72,0x6c,0x3b,0x69,0xa6,0x35,0x3b,0x41, -0x2c,0x47,0xd3,0x99,0x87,0x9e,0x13,0xc9,0x9f,0x3e,0x96,0xd8,0x69,0x5c,0x6a,0x74, -0xc0,0x10,0xff,0x61,0x12,0xcb,0x62,0x9a,0xcf,0xd3,0x3e,0x1b,0x73,0x4a,0x0f,0x7e, -0x1d,0xd6,0x5f,0x8a,0xa4,0xbb,0x63,0xe6,0x69,0xbe,0xa7,0xd5,0x4a,0x0b,0x3b,0xef, -0x7c,0x0c,0xe6,0x07,0x4c,0x31,0xec,0x28,0xab,0xde,0xc5,0x4b,0x5f,0x5f,0x7b,0x2b, -0x34,0x6f,0x59,0xf3,0xf3,0xb8,0xbe,0xe7,0xba,0xdc,0x7c,0xdf,0x62,0xcd,0x88,0x9b, -0x7d,0x8b,0x24,0x9d,0x49,0x88,0xd6,0x72,0xc6,0x7a,0xa4,0x40,0x6c,0x56,0xa1,0xfb, -0x35,0xdb,0xb1,0xad,0x47,0x46,0x78,0xd8,0x62,0x14,0x60,0xe4,0x09,0xc9,0xe6,0x41, -0x7c,0xea,0x39,0xb7,0x1d,0xf9,0x21,0xf7,0xd9,0x73,0xcf,0xb9,0x17,0xf3,0xf3,0xf9, -0x60,0x2d,0xd7,0x7b,0x26,0x47,0x77,0xfe,0x46,0x33,0xf3,0xc7,0x92,0x97,0x78,0x6b, -0x18,0xa4,0xb5,0x7f,0xee,0xbd,0x5b,0x7f,0x7a,0x19,0xa4,0x35,0x74,0xb2,0x18,0x1e, -0x3e,0xe1,0x12,0x1c,0x54,0xcf,0x7f,0x6c,0x27,0xe7,0x9e,0x78,0x34,0x97,0xc3,0x85, -0x0d,0xb8,0xf8,0xff,0x22,0x17,0x26,0xb0,0x19,0x18,0x01,0x00}; +const unsigned char web_index_html[0x36ba] = { +0x1f,0x8b,0x08,0x00,0xcb,0x44,0x06,0x68,0x02,0xff,0xed,0x7d,0xfb,0x97,0x1b,0xc5, +0x95,0xf0,0xef,0x39,0x67,0xff,0x87,0xa2,0xf1,0xb7,0x92,0x76,0xd4,0x92,0xba,0xf5, +0x18,0x69,0x5e,0x39,0xce,0x40,0x76,0xf8,0x76,0x8c,0x09,0xe3,0x38,0xbb,0xeb,0x70, +0x44,0x8f,0xba,0x67,0xd4,0xb8,0xa5,0x16,0xdd,0xad,0x19,0x8f,0x61,0xce,0xb1,0x93, +0x10,0x63,0x07,0x63,0x43,0x20,0xce,0x02,0x1b,0x20,0x0b,0x81,0x90,0x80,0x93,0x4d, +0xc2,0xc3,0x0f,0x38,0xe7,0xfb,0x57,0xb0,0x34,0xe3,0x9f,0xf8,0x17,0xbe,0x7b,0xab, +0xfa,0x51,0xdd,0xea,0x96,0x34,0xb6,0xc6,0xd8,0xd8,0x4e,0xd0,0xf4,0xe3,0xd6,0xad, +0x5b,0xb7,0x6e,0xdd,0xba,0xf7,0xd6,0xad,0xea,0x6f,0xae,0x7e,0x35,0xf7,0x90,0x6a, +0x36,0x9c,0xad,0x8e,0x46,0x9a,0x4e,0xcb,0x58,0xf8,0xa7,0xef,0xcd,0xe1,0x5f,0x62, +0x28,0xed,0xf5,0x79,0x41,0x6b,0x0b,0xf4,0x89,0xa6,0xa8,0xf0,0x97,0xc0,0xbf,0xb9, +0x96,0xe6,0x28,0xa4,0xd1,0x54,0x2c,0x5b,0x73,0xe6,0x85,0xae,0xb3,0x26,0x56,0x85, +0xd0,0xbb,0xa6,0xe3,0x74,0x44,0xed,0xd9,0xae,0xbe,0x31,0x2f,0xfc,0xbb,0xf8,0xe3, +0x83,0xe2,0xa2,0xd9,0xea,0x28,0x8e,0xbe,0x6a,0x68,0x02,0x69,0x98,0x6d,0x47,0x6b, +0x43,0xc1,0xc7,0x1e,0x9d,0xd7,0xd4,0x75,0x2d,0x5c,0xb4,0xad,0xb4,0xb4,0x79,0x41, +0xd5,0xec,0x86,0xa5,0x77,0x1c,0xdd,0x6c,0x0b,0xec,0x2d,0xfb,0xe7,0x97,0x3d,0x48, +0xd6,0x2c,0xb8,0x16,0xb5,0xb6,0x4a,0x1c,0xad,0xd5,0x31,0x14,0x47,0x23,0x4e,0x53, +0x71,0x48,0x53,0x33,0x3a,0x36,0xd9,0x32,0xbb,0x64,0xb5,0xab,0x1b,0x2a,0x59,0x53, +0x6c,0x27,0x4b,0x5a,0xa6,0xaa,0x59,0x6d,0xf8,0xb3,0xaa,0x1b,0x1a,0xd9,0xd4,0x56, +0x89,0xd2,0xe9,0xd8,0xb9,0xb8,0xba,0x37,0x74,0x6d,0xb3,0x63,0x5a,0x0e,0x47,0xe9, +0xa6,0xae,0x3a,0xcd,0x79,0x55,0xdb,0xd0,0x1b,0x9a,0x48,0x6f,0xb2,0x44,0x6f,0xeb, +0x8e,0xae,0x18,0xa2,0xdd,0x50,0x0c,0x6d,0x5e,0xca,0x15,0xa0,0x12,0x78,0xd6,0xea, +0xb6,0x82,0x47,0x3e,0x7a,0x47,0x77,0x0c,0x6d,0xe1,0xc8,0xa2,0xd4,0xff,0xaf,0x2b, +0xbb,0x3f,0xbf,0xde,0xbf,0xf0,0x6a,0xef,0xca,0x07,0x73,0x79,0xf6,0x78,0x90,0x04, +0x46,0xa6,0x08,0x64,0x8a,0x40,0xa6,0xd8,0x50,0x3a,0x4a,0x98,0x75,0x5b,0x9a,0xed, +0xe3,0x36,0xf4,0xf6,0x71,0x62,0x69,0xc6,0xbc,0xa0,0xc3,0x7b,0x81,0xd8,0xfa,0x49, +0xcd,0x9e,0x17,0xa4,0x9a,0x7c,0x02,0xfe,0x13,0x48,0xd3,0xd2,0xd6,0xe6,0x05,0xec, +0x92,0x99,0x7c,0x7e,0xab,0xdb,0x76,0xcc,0xf6,0x7a,0x4e,0x6f,0x74,0xf3,0x4e,0x43, +0xca,0xeb,0x2d,0x65,0x5d,0xb3,0xf3,0x4a,0x5b,0xb5,0x4c,0x5d,0x15,0x81,0xef,0xc7, +0x1d,0xb3,0x93,0xeb,0xb4,0xd7,0x7d,0xfc,0x0f,0x89,0x22,0x39,0xa8,0x02,0x9b,0x4d, +0xd2,0x34,0x5b,0xd8,0x31,0x9a,0xd6,0x26,0x6b,0xa6,0x45,0x56,0x94,0x35,0xc5,0xd2, +0x89,0xd9,0x26,0xfa,0xe1,0x15,0x22,0x8a,0x31,0x2d,0x01,0xf2,0xa1,0x21,0x7b,0x6a, +0xcf,0xa8,0xd2,0xb6,0xa3,0x38,0x5d,0x5b,0x5c,0x55,0x2c,0xb8,0xdc,0x0a,0xa1,0x59, +0x35,0x94,0xc6,0xf1,0xb1,0x11,0x51,0xee,0x73,0xa5,0x0f,0x81,0x0c,0x59,0xd0,0xa5, +0xe4,0x11,0xcd,0xd6,0xd7,0xdb,0x64,0x59,0x77,0xb4,0x18,0x2e,0x33,0x5c,0x8e,0xd9, +0x6d,0x34,0x45,0xe4,0xb8,0xd8,0xb1,0xb4,0x06,0xc8,0xb7,0x69,0x6b,0xea,0x78,0xdc, +0xd6,0x4d,0x3b,0x91,0xd3,0x47,0x50,0x3e,0x11,0x2d,0xe5,0xf0,0x4f,0xf4,0x76,0x95, +0xa4,0xa5,0x52,0xe9,0x04,0xfc,0x47,0xa6,0x88,0x83,0x6f,0x1b,0xa6,0x61,0x5a,0x99, +0x78,0x7e,0xb7,0x6c,0x24,0x4f,0x6f,0x28,0x38,0x74,0x44,0x44,0xf6,0x18,0xd6,0x19, +0x3f,0x88,0x86,0x53,0x49,0x5b,0x98,0x6f,0xd9,0x7c,0x53,0x5d,0x4a,0xf8,0x26,0x87, +0x5a,0x30,0x94,0x92,0x45,0xa4,0x9b,0xe3,0xf7,0xc3,0xc5,0xe2,0xb4,0xfc,0xc8,0x0f, +0x63,0x58,0x6c,0x37,0x61,0xfc,0x35,0xba,0x0e,0x61,0x12,0x3d,0x0e,0x4f,0xd7,0x94, +0x0d,0x04,0x0e,0x51,0xc3,0x21,0x44,0x41,0xb1,0x9b,0x9a,0xe6,0x78,0xd8,0x14,0x1b, +0x94,0x97,0x9d,0x6f,0xd8,0x76,0xbd,0x03,0x42,0x93,0x83,0x0b,0xbf,0x1c,0x85,0x5e, +0x08,0x58,0x96,0x6b,0xa9,0x86,0xd8,0xd2,0xda,0x5d,0xf2,0x1c,0xcf,0x47,0x42,0x5a, +0xca,0x09,0xb1,0xa9,0xe9,0xeb,0x4d,0x67,0x86,0x14,0x0b,0x85,0xce,0x09,0xf2,0x90, +0xde,0x42,0xdd,0xa1,0xb4,0x9d,0xd9,0x30,0xa8,0xb9,0xa1,0x59,0x6b,0x86,0xb9,0x29, +0x6e,0xcd,0x10,0xa5,0x0b,0x63,0x29,0x16,0x72,0xdb,0xa5,0x20,0xef,0x91,0x30,0x97, +0x77,0x15,0xef,0xdc,0xaa,0xa9,0x6e,0xe1,0x5f,0x55,0xdf,0x20,0x0d,0x03,0xc8,0x47, +0x2d,0xd9,0x32,0x45,0x43,0x01,0x5d,0xe7,0x10,0x24,0x91,0xbb,0x7c,0xc6,0x1e,0x7c, +0x21,0x8a,0x6b,0xfa,0x09,0x0d,0x06,0xb9,0xa5,0x6c,0x6a,0x56,0xcc,0x0b,0xac,0x4a, +0xb3,0x7c,0x36,0xb0,0xdb,0x50,0x65,0xee,0xa3,0xa0,0x68,0xbd,0x1e,0x2e,0x44,0x0b, +0x72,0x24,0x0e,0x42,0x8a,0x96,0xb9,0xc9,0x43,0xd3,0x12,0xab,0x5d,0x07,0x3a,0x95, +0x2f,0xe4,0x3e,0x21,0xc1,0xb5,0x48,0x45,0x90,0x68,0xaa,0xee,0x88,0xae,0x2a,0x46, +0x49,0x8b,0xe2,0xa2,0xf8,0x74,0x1f,0x95,0x3b,0xa6,0x69,0x59,0x3b,0x0e,0x96,0xf5, +0xf8,0xc6,0x7a,0xc2,0x2b,0xfa,0xba,0x6b,0x6b,0xe4,0x04,0x4a,0xd3,0x0c,0x13,0x9e, +0x87,0xe9,0x60,0x40,0x4a,0x84,0x7c,0x12,0xca,0x7c,0x3c,0xce,0xb9,0xbc,0x1e,0x6d, +0x7c,0x9e,0xb5,0x2f,0xfa,0xd8,0xee,0x28,0xed,0x41,0x36,0xba,0x5a,0x6b,0x70,0x2e, +0x41,0xf0,0x28,0x8a,0xd8,0x8e,0x10,0x01,0xb2,0x81,0x3d,0x36,0x97,0x87,0xf7,0xd1, +0x22,0xa8,0x83,0xf6,0xda,0x33,0xff,0xfc,0x70,0xa9,0x3c,0x4b,0x7f,0xe8,0x78,0xf5, +0x15,0x53,0x12,0x52,0xef,0x9f,0xae,0xc2,0xa8,0x56,0xad,0x55,0x07,0x4c,0x8c,0xb1, +0x0a,0x25,0xf7,0xeb,0xd8,0x75,0xd2,0xae,0x1e,0x1b,0x7a,0x48,0xef,0x3b,0x96,0xd2, +0xb6,0xd1,0xec,0x00,0x11,0x18,0xbf,0xf6,0xfc,0xd8,0xd5,0xa3,0xa0,0x8c,0x04,0xf4, +0x65,0x67,0x34,0x64,0xd7,0xe0,0x3b,0x91,0x6a,0x33,0x57,0x51,0xf0,0xd7,0x60,0x74, +0xe1,0xec,0xa6,0xad,0xad,0x69,0x0d,0xa6,0x3b,0xf0,0x6d,0xd0,0xc1,0xab,0x26,0x54, +0xd7,0x02,0x30,0xd0,0x79,0xe3,0x75,0x34,0x4c,0x63,0x7b,0xed,0x65,0x43,0x8f,0x92, +0x5a,0xaf,0xc3,0x5c,0xdc,0x12,0xc0,0xd4,0x68,0xc0,0x94,0x72,0x7c,0x5e,0x58,0x6c, +0x82,0x71,0xaa,0x2d,0xc3,0x4f,0x17,0xd4,0x7f,0x3a,0xa5,0xb5,0x53,0x19,0x61,0xe1, +0xd1,0xf6,0xba,0xa1,0xdb,0xcd,0xb9,0xbc,0xa1,0xef,0x5f,0x55,0x0d,0x5a,0xd5,0x8d, +0xcf,0x3f,0xee,0xff,0xe6,0xcc,0xfe,0xd6,0xf4,0x4c,0x07,0x6b,0xea,0x5f,0x7a,0xbf, +0xff,0xd6,0x9f,0x77,0x3f,0xfa,0xdd,0x78,0x95,0xcd,0xe5,0xbb,0x46,0x0c,0x94,0x3b, +0x6a,0xfd,0xba,0x2c,0x6d,0xd5,0x34,0x9d,0x74,0x46,0x88,0x57,0x5f,0x63,0x68,0xe2, +0x84,0x92,0x38,0xa8,0x19,0x72,0xda,0xe3,0xdf,0x96,0x72,0x66,0x24,0xec,0x8f,0x7a, +0xe6,0x15,0x27,0x9b,0xa0,0x35,0xcb,0xbb,0x8d,0x4e,0xcf,0x03,0x93,0x6d,0xbd,0xce, +0x3d,0xa2,0xa6,0x9c,0x28,0xae,0x1a,0x5d,0x4d,0x5c,0xb7,0xb4,0x2d,0xb1,0x56,0x28, +0x70,0x2f,0x1c,0xed,0x84,0xc3,0xbf,0x2d,0x17,0x42,0xf3,0x6c,0x5b,0x09,0xd7,0x05, +0xf7,0xfa,0x3a,0xb5,0xb7,0x28,0x8e,0xc8,0xed,0x40,0x5d,0xd5,0x42,0x61,0x60,0x22, +0x56,0xf8,0x9e,0x0f,0x10,0xd4,0xeb,0xd4,0x96,0x72,0x1f,0x8a,0x4a,0xc3,0xd1,0x37, +0x34,0xcf,0x94,0x7a,0x46,0xd9,0x50,0x98,0xbb,0x36,0xb3,0xd2,0x34,0x37,0x9f,0x40, +0xd9,0x95,0x32,0xb3,0x23,0xfa,0x3e,0xb1,0x91,0x25,0x64,0x41,0x58,0x32,0x88,0x65, +0x82,0x43,0x25,0x80,0xd5,0x69,0x83,0xe5,0x48,0x29,0x9a,0xac,0xb4,0xa0,0x63,0x33, +0x01,0x59,0x19,0x98,0xb7,0xd1,0x85,0x16,0xa8,0x23,0xfd,0x6f,0xda,0xd6,0xbc,0xb0, +0x84,0xd5,0x80,0xea,0xb8,0x7a,0xf3,0xdd,0x7f,0xc4,0xcf,0xd8,0x79,0x65,0x4f,0x3d, +0x32,0xac,0x0b,0xe4,0x7b,0xab,0x0b,0xc0,0x1c,0x77,0xf4,0xf6,0xba,0x7d,0x07,0xba, +0x61,0xd1,0x6c,0xaf,0xe9,0xe0,0x26,0xec,0x7e,0xf2,0xe5,0xce,0xf5,0x4f,0xf6,0xbd, +0x23,0x8a,0xf7,0x56,0x47,0x28,0x8d,0x86,0x06,0x5e,0x91,0x62,0x28,0x56,0xeb,0x0e, +0x74,0xc6,0x11,0xbd,0xa5,0xa9,0x47,0x14,0x1b,0xfc,0xf6,0xde,0x27,0x6f,0xf4,0x2f, +0x7d,0x7a,0xe3,0xea,0xd5,0xde,0xb9,0x77,0xf7,0xbd,0x57,0x4a,0xf7,0x56,0xaf,0xd0, +0x69,0xfb,0xce,0x76,0x47,0xff,0xa5,0xb3,0x37,0x5f,0xfb,0x64,0xf7,0xcc,0x47,0xd0, +0x2f,0x37,0xbe,0x38,0xbb,0xef,0x3d,0x52,0xbe,0xb7,0x7a,0x44,0x6f,0xaf,0x99,0x77, +0xa0,0x43,0x56,0xb6,0x6c,0xb0,0x12,0x57,0x68,0xd0,0x4b,0x58,0xd8,0xf9,0xdb,0xd5, +0x9d,0xab,0x6f,0xef,0x9c,0xfb,0xb4,0x7f,0xea,0xf4,0xbe,0x77,0x48,0xe5,0x5e,0x1b, +0x22,0x66,0x57,0xad,0xab,0xe6,0x66,0xdb,0x30,0x15,0xf5,0x0e,0x74,0xcd,0xe1,0x23, +0x07,0x41,0x69,0xbd,0x79,0xe5,0xc6,0xd5,0x4f,0x7b,0xe7,0xcf,0xec,0x24,0x79,0xe1, +0x13,0xec,0x91,0xe9,0x7b,0xab,0x47,0xda,0xa6,0xa3,0xd9,0x77,0x6c,0x8c,0x2c,0x9b, +0xeb,0xde,0x00,0x01,0x9f,0xa9,0xf7,0xd5,0xa5,0x31,0xba,0x63,0x2e,0x0f,0xec,0xf7, +0x4d,0x79,0xce,0xac,0x6f,0x29,0x7a,0x3b,0x2e,0x88,0xe5,0x46,0x2f,0x87,0xc5,0xbb, +0xd6,0x2d,0x5d,0x25,0xd4,0x20,0xe7,0x80,0xd9,0xff,0x92,0xa2,0x33,0x1d,0xe8,0x5c, +0x82,0x3f,0x12,0x33,0xd5,0x35,0xc3,0xf0,0x2f,0x44,0xb1,0x84,0x5d,0xca,0xdd,0x57, +0xf1,0x5e,0x74,0x30,0x86,0xce,0x7c,0x74,0x5a,0xa3,0x77,0x21,0x02,0xdb,0x69,0x8c, +0x47,0x0f,0x42,0xa1,0x49,0xf5,0x52,0x2a,0x4d,0xba,0xce,0x62,0xb3,0x0a,0x14,0x8b, +0x61,0xb2,0x9b,0x0a,0x8c,0x24,0x51,0x94,0xd5,0xce,0x38,0x24,0x15,0xa3,0x24,0xb1, +0xc7,0x92,0x4c,0x9f,0xbb,0xc1,0xee,0x44,0xe1,0x8a,0x30,0x10,0x89,0xa8,0xd7,0xed, +0x6e,0x07,0x03,0xa4,0xd0,0x0a,0x2a,0xcb,0x8c,0x89,0x89,0x02,0x18,0x8b,0x82,0xc6, +0xca,0xfc,0x76,0x89,0xa2,0x76,0x02,0xe4,0x41,0x15,0x86,0x08,0x32,0x0b,0x7c,0xca, +0x09,0xa8,0x5c,0x42,0x58,0xc8,0xad,0xff,0xf2,0x07,0xbd,0x17,0x3f,0x05,0xff,0x4f, +0x1e,0x36,0x30,0x62,0x62,0x6c,0xd1,0xb0,0x0c,0x7a,0xcc,0xb6,0xd9,0x38,0xae,0x39, +0xf5,0xae,0x21,0x84,0x83,0xbb,0xba,0xed,0x50,0x29,0xb2,0x5c,0x6e,0xe3,0x83,0x91, +0xf4,0x87,0x43,0x0d,0x58,0xc4,0x0d,0x35,0x24,0x0e,0xee,0x68,0xa8,0xd1,0x2f,0x22, +0x76,0x2c,0xbd,0xa5,0x58,0x5b,0x62,0x8c,0xdc,0xef,0xc1,0xe0,0x6e,0xea,0x86,0xba, +0x6c,0xe2,0xda,0x4c,0xef,0xe2,0xe5,0x9d,0xd7,0x3e,0xdc,0xf9,0xd3,0xfb,0x37,0x5f, +0x8b,0x9f,0xc0,0x38,0xed,0x90,0xfc,0x72,0x5c,0xea,0x6d,0x0d,0xe8,0x56,0x91,0x7e, +0x74,0x59,0x93,0xd5,0x1b,0x32,0x4d,0x59,0xd5,0x42,0x21,0x32,0x7b,0x53,0x77,0x1a, +0x4d,0x2f,0x30,0x16,0xbe,0x0b,0x85,0xc9,0x84,0x11,0x34,0xd2,0x08,0x18,0xed,0x49, +0x86,0x44,0x6c,0x20,0x3b,0x44,0xc3,0x0c,0xd6,0xaa,0x62,0x29,0xd2,0xdb,0x9d,0xae, +0x43,0x70,0x5d,0x76,0x5e,0x68,0x34,0xb5,0xc6,0xf1,0x55,0xf3,0x84,0x40,0xa5,0x25, +0x01,0xd9,0x20,0xf5,0xc0,0x06,0x44,0x22,0x8c,0xe4,0x22,0xc5,0xaf,0xa9,0xf9,0x64, +0xfe,0xe4,0x29,0x83,0x6e,0xa7,0xb3,0x68,0xfc,0xea,0x5e,0x13,0xdd,0x65,0x0d,0xf4, +0xc5,0xce,0x6b,0xff,0xe8,0x5f,0xb9,0xd8,0x7f,0xe9,0xcc,0xce,0x7b,0x57,0x76,0x4e, +0x5f,0xbe,0x5f,0xe5,0xb6,0x30,0x01,0x71,0x2d,0x3c,0x90,0xd2,0x7d,0x90,0xd2,0x15, +0x3a,0x7d,0x1c,0x34,0x0c,0x98,0x9c,0x4e,0x5d,0xed,0x5d,0x3b,0xd5,0x7b,0xe1,0x6f, +0xf7,0xab,0x94,0x2a,0xc8,0x85,0xdb,0x96,0x53,0xc4,0xf2,0x40,0x52,0x6f,0x4d,0x52, +0x6f,0x61,0x41,0x97,0xd9,0x3f,0xdf,0xe9,0x05,0xdd,0xbd,0x8c,0x64,0xcf,0xc6,0x74, +0xe5,0x20,0x54,0xc0,0x65,0x95,0xde,0x56,0xb5,0x13,0xc2,0x82,0x28,0xdd,0xaf,0xe3, +0x5c,0x9a,0xc0,0x28,0x97,0x1e,0x8c,0xf1,0x07,0x63,0xfc,0xee,0x1f,0xe3,0xf2,0xfd, +0x3a,0xc6,0xe5,0x09,0x8c,0x71,0xf9,0xc1,0x18,0x7f,0x30,0xc6,0xef,0xfe,0x31,0x5e, +0xbc,0x5f,0xc7,0x78,0x71,0x02,0x63,0xbc,0xf8,0x60,0x8c,0x3f,0x18,0xe3,0x77,0xff, +0x18,0x2f,0xdd,0xaf,0x63,0xbc,0x34,0x81,0x31,0x5e,0x7a,0x30,0xc6,0x1f,0x8c,0xf1, +0xbb,0x7f,0x8c,0x97,0xef,0xd7,0x31,0x5e,0x9e,0xc0,0x18,0x2f,0x3f,0x18,0xe3,0x0f, +0xc6,0xf8,0xdd,0x3f,0xc6,0x2b,0xf7,0xeb,0x18,0xaf,0x4c,0x60,0x8c,0x57,0xee,0xf1, +0x31,0x4e,0x13,0xec,0x93,0xd0,0xc7,0xaf,0xf6,0xc7,0xee,0xb4,0x71,0x9f,0x3d,0x48, +0x0a,0xb9,0xcd,0xa4,0x90,0xbb,0x22,0x25,0xa4,0x77,0xee,0xed,0x9d,0x97,0xcf,0xf4, +0xde,0xfc,0x72,0xcc,0x7c,0x90,0x11,0x64,0xe3,0x98,0x69,0x38,0x22,0xee,0xb1,0x76, +0xc4,0x8e,0x62,0x8d,0x1a,0x18,0x09,0x12,0x13,0xc7,0xb2,0x68,0x47,0x8e,0x42,0x4d, +0x77,0x22,0xce,0x0b,0xee,0x36,0xc7,0xa2,0x54,0xee,0x9c,0x98,0xf5,0x37,0x33,0x9e, +0x98,0xb1,0x1b,0x96,0x69,0x18,0xb3,0xdc,0xf6,0xc6,0xa6,0xae,0xaa,0x5a,0x7b,0x76, +0x24,0x4b,0xa9,0x5c,0xf8,0x94,0x6f,0x0a,0xe3,0x28,0x4c,0xc7,0x1a,0x03,0x8a,0x41, +0xaa,0x0b,0xbd,0xeb,0xbf,0xee,0x9d,0x3d,0xcf,0x7a,0x66,0xc6,0x55,0xb6,0xc8,0xd8, +0x8e,0xaf,0x80,0xec,0x2e,0xcd,0x75,0x16,0x16,0x0a,0xae,0x62,0x20,0x3f,0x99,0xcb, +0x3b,0xea,0x1e,0xea,0xb8,0x71,0xf5,0x5c,0xff,0xd2,0xfb,0x3b,0xaf,0xfd,0xe3,0xe6, +0x99,0x0b,0x7c,0x1d,0x9b,0x75,0xc7,0xaf,0x45,0xb3,0x2c,0xd3,0xe2,0xea,0x38,0xfe, +0x93,0xff,0xf7,0x59,0x73,0x8f,0xf5,0xf4,0x7f,0xfb,0x61,0x42,0x3d,0x5b,0x93,0xad, +0xe7,0xd4,0xd5,0x98,0x4a,0x26,0x52,0x05,0x80,0x59,0x23,0x35,0x2f,0x15,0x8a,0x51, +0x50,0xd1,0x11,0xe2,0x93,0xe7,0x3d,0x20,0x70,0xd1,0x01,0x81,0x84,0x29,0x4e,0x5c, +0x33,0xbb,0x96,0xd3,0x14,0xc6,0x60,0x41,0x58,0xd2,0xe5,0x6a,0x01,0x24,0x1d,0x8c, +0xaf,0x75,0xbd,0x2d,0x82,0x9e,0x9a,0x29,0xe1,0x7d,0xfc,0xae,0xc9,0x71,0x33,0xbe, +0xf6,0x69,0x7e,0x90,0xe3,0x94,0x71,0x99,0x2a,0x63,0x96,0x86,0x88,0x9a,0xce,0x7e, +0xb6,0xab,0x58,0x5a,0xa2,0x3e,0x8f,0x63,0x90,0xcb,0x10,0x6f,0x6c,0xcf,0x90,0x6e, +0xdb,0xd6,0x9c,0xd9,0x51,0xf3,0xc7,0xad,0x2a,0xdb,0x91,0x4a,0x76,0xe7,0xfa,0x2b, +0x3b,0x57,0xdf,0xf2,0x76,0x6d,0xc4,0xea,0xd9,0x44,0x0e,0x8f,0x35,0x9b,0xec,0xa5, +0xc5,0x14,0x2b,0x18,0x48,0x2d,0xc2,0x0c,0x34,0x30,0x68,0x47,0xce,0x46,0x28,0xb4, +0xf0,0xb7,0xbe,0xa9,0xaf,0xe9,0x75,0x5b,0x33,0xc6,0x54,0xeb,0x48,0x30,0xd2,0xb7, +0xa6,0x6b,0x86,0xea,0x19,0x72,0xe1,0x07,0xfe,0x9d,0x28,0x02,0xe1,0x0a,0x6d,0x12, +0xb3,0x0b,0xd7,0x35,0x87,0x76,0xb5,0x66,0xe0,0x8e,0xce,0xd0,0x5d,0xbd,0xbe,0xa6, +0x7b,0x1b,0xd8,0x47,0xaa,0x6b,0x66,0xdc,0x51,0x75,0xe0,0x51,0xef,0x9a,0x7a,0x8c, +0x75,0x1b,0x8a,0xd1,0x85,0x1b,0x21,0x96,0xe8,0xb1,0xed,0x3b,0xfc,0x67,0x69,0x20, +0x95,0x6d,0x63,0x6b,0x3c,0x8a,0x18,0x0d,0x6c,0xd2,0xe1,0xa8,0x60,0x87,0x10,0xf8, +0xa4,0x8e,0xc4,0xc5,0x93,0xcd,0xf6,0xf7,0x9a,0xeb,0xeb,0x86,0x56,0xaf,0x33,0x2e, +0x8e,0xe7,0x02,0xed,0xc1,0x1d,0x1a,0xc3,0x35,0x3a,0xae,0x6d,0xad,0x9a,0x28,0xa7, +0x0a,0x68,0xdd,0x4d,0x9a,0xd8,0x2e,0xe4,0xc7,0x52,0xb4,0xa3,0xab,0x8e,0xcf,0xb1, +0x8e,0x71,0x2b,0xa8,0x0b,0x10,0xf4,0x78,0x7c,0xe7,0x52,0x50,0x61,0x61,0x65,0xe5, +0xb1,0x47,0x86,0xdb,0xdf,0x41,0x8b,0xdd,0xb4,0x57,0x5b,0x57,0x11,0x71,0x9d,0xe6, +0xb5,0x46,0x2a,0x1b,0xdd,0xd2,0xb8,0x0d,0xcd,0x78,0x21,0x8a,0xee,0x3e,0x65,0x43, +0x5b,0x73,0xf8,0x6d,0xce,0x23,0xe5,0x20,0xd9,0xb6,0x1f,0xa5,0xdb,0x07,0x06,0x79, +0xa3,0x6b,0x03,0x09,0x75,0x6c,0xe2,0x1d,0x18,0xe7,0xa3,0xaa,0x60,0x03,0x64,0xfc, +0x41,0xce,0x53,0x3f,0x74,0x48,0xf3,0x4a,0x60,0x3c,0x91,0x1a,0x26,0x43,0x4c,0x04, +0xf8,0xca,0xc7,0x94,0xaa,0xb1,0xba,0x66,0x12,0x7c,0xde,0x33,0x0b,0x3b,0x50,0xe7, +0xa6,0x69,0xa9,0x13,0xd0,0x8c,0x8c,0xd5,0x3e,0xc2,0x09,0xb3,0x3b,0xc0,0xdb,0xbb, +0xfc,0xcb,0x9d,0x77,0x4e,0x4f,0x86,0xe9,0x7b,0x26,0xd2,0x52,0x54,0xdd,0xf4,0xc3, +0x15,0xa1,0x9b,0xbd,0xc4,0x2e,0xb8,0x08,0x86,0xdb,0x3e,0xa5,0x33,0x96,0xde,0xe6, +0xa7,0x15,0x5a,0xbd,0xc0,0xf7,0xa6,0xd2,0x11,0x06,0x88,0xad,0xd7,0x59,0xf0,0x69, +0x3c,0x92,0xf0,0x1f,0x9b,0x9d,0x5c,0x1f,0xdb,0x9f,0xb5,0x24,0xe1,0x56,0x82,0x46, +0x2e,0x09,0xae,0x74,0xf6,0xae,0x9d,0xda,0xf9,0xf9,0xc7,0x3b,0x3f,0xfb,0x62,0xdc, +0x50,0xc7,0x38,0xda,0x3a,0xd4,0x47,0x36,0xdb,0x29,0xc4,0x75,0xcd,0xbe,0xf5,0x98, +0x3d,0x7c,0x53,0xd2,0x1e,0xba,0xcd,0xc3,0xb4,0x6f,0x7d,0x87,0x59,0x26,0x2c,0x36, +0x75,0xfb,0x7d,0xb8,0xfb,0xd5,0xef,0x7e,0x02,0x93,0xe0,0x84,0x7a,0x70,0xb8,0x43, +0x82,0x16,0xec,0x6d,0xdb,0xd1,0xcc,0x02,0xb6,0x39,0x4b,0x7f,0x15,0xf4,0x48,0xf8, +0x54,0xa0,0xb8,0x50,0x35,0xeb,0x2d,0xb7,0x03,0x38,0xdb,0xb2,0xbb,0xda,0xd2,0x87, +0x88,0xcb,0x60,0x84,0x9b,0x0f,0x70,0xd3,0xed,0x6f,0x9a,0x4a,0x86,0x49,0x4d,0xff, +0xc2,0xc5,0x1b,0x57,0xde,0x4b,0xe2,0x49,0x62,0x28,0xf9,0xee,0xf6,0xd3,0x4e,0xb2, +0xf8,0xf4,0xb7,0xee,0xa6,0x1d,0xfa,0xd1,0x91,0x23,0x64,0x1f,0xbd,0xb4,0x09,0x39, +0x63,0x77,0xce,0x18,0x18,0xd7,0x7c,0xa2,0x23,0xa0,0xf5,0xac,0xe3,0xd4,0x15,0x55, +0xb5,0x26,0x36,0xbd,0x73,0x18,0x7b,0x6f,0xfd,0xa5,0xf7,0xdf,0xa7,0xee,0x39,0x6b, +0x6a,0xef,0x0c,0xa4,0x07,0x38,0x4e,0x94,0x81,0x0c,0xe3,0xce,0x9f,0x2e,0xf7,0x2e, +0xfc,0xcf,0x7d,0xc0,0xc0,0xae,0x3d,0x61,0x01,0xa4,0x08,0x77,0x5e,0xfb,0xb0,0xff, +0xe2,0x67,0xbd,0x8b,0xe7,0xef,0x07,0x11,0xdc,0x54,0x27,0x2c,0x81,0x9b,0x13,0x32, +0xcd,0xef,0xba,0x59,0x9f,0x36,0xef,0xc1,0xac,0x7f,0xef,0xcf,0xfa,0x6c,0xb1,0xe5, +0xc6,0xe7,0xe7,0xfa,0xe7,0xde,0x7f,0x60,0x01,0xdc,0x8e,0xf6,0x58,0xb3,0xb4,0x67, +0x27,0xab,0x3e,0x18,0x46,0xd6,0x37,0x37,0x7f,0xff,0x0a,0xf4,0xd3,0x37,0xd7,0x5e, +0xdc,0xf9,0xe0,0xd5,0x6f,0xae,0x9d,0xfd,0x2e,0xaa,0x13,0x6c,0xee,0x77,0x56,0xa7, +0x14,0xc7,0xd1,0x29,0xda,0x86,0xd6,0x76,0x92,0x55,0x4a,0x1c,0x55,0x6c,0x4d,0x16, +0x79,0xe8,0xe0,0x39,0x40,0x75,0x47,0xb1,0x8f,0xd7,0x9d,0xd5,0x90,0xdb,0xac,0x2a, +0x8e,0xc2,0x16,0xf5,0xbd,0xb1,0x12,0x3c,0x49,0xec,0xab,0xa1,0x4b,0x7f,0x73,0x4e, +0x73,0xa1,0x7f,0xe9,0xd3,0x9b,0x97,0xfe,0x3e,0x97,0x87,0xcb,0x11,0x80,0xde,0xd9, +0xd9,0xa3,0x00,0xbd,0x5d,0xb0,0xa3,0x01,0xbf,0xfc,0x68,0xe7,0xe5,0xcb,0xe3,0x54, +0xfd,0xeb,0xf3,0x37,0xae,0xbf,0x35,0x04,0x70,0xc8,0x12,0xe7,0x28,0x0e,0xa8,0x0b, +0x05,0x59,0x94,0xca,0xa4,0x30,0x3d,0x23,0x49,0x23,0x56,0x54,0x11,0x7a,0x1c,0x98, +0xc2,0x84,0x60,0xe6,0x94,0x85,0xde,0x8b,0xef,0xdc,0xfc,0xaf,0xf7,0xf0,0xec,0x94, +0x21,0xf0,0xb7,0xd5,0x7c,0xb9,0x20,0x17,0x44,0xca,0x83,0xb9,0x55,0x6b,0x81,0xb2, +0x61,0xa6,0x50,0xbd,0x83,0x9c,0xa8,0xec,0x3f,0x27,0xe2,0xd7,0xb7,0xf7,0x34,0xee, +0x71,0x69,0x52,0xa4,0x53,0xfd,0xfd,0x61,0x56,0xf4,0x3f,0xbb,0xda,0x3b,0xf7,0x8e, +0x77,0x26,0xdc,0x2d,0xdb,0x12,0x51,0xb6,0x7d,0xfb,0x66,0x45,0x68,0x25,0x56,0xd8, +0xcb,0x5a,0x67,0x60,0x29,0x50,0xf5,0xbc,0xa9,0x69,0xc7,0x55,0x65,0x2b,0x58,0xfb, +0x1c,0x2b,0x92,0x39,0xd4,0x22,0x99,0xc0,0x0a,0x6c,0xc1,0x5b,0x82,0x0d,0xd1,0xf8, +0x60,0x19,0xf6,0x76,0x96,0x61,0xc3,0xdd,0x3d,0x74,0x29,0xb6,0xff,0xdb,0xcb,0xbd, +0x8b,0x7f,0xf0,0x66,0xb6,0x71,0x97,0x64,0x07,0x6b,0xf9,0x16,0xd6,0x60,0x59,0xab, +0x13,0x4f,0x4b,0xa6,0xc6,0x06,0x08,0x19,0x15,0x31,0x7a,0xc3,0x86,0x90,0xa6,0xce, +0xa7,0x1c,0xab,0xab,0xa5,0xc6,0xec,0xed,0xfe,0xa5,0x77,0x18,0x7b,0xc6,0xe9,0xc9, +0x91,0x49,0xdf,0x63,0x13,0x5d,0x85,0xbe,0xb9,0x7c,0xa1,0xf7,0xde,0x1f,0x27,0x89, +0x54,0xc2,0x0e,0x7f,0xbb,0xff,0xd6,0xdb,0x37,0x3e,0x3f,0x35,0x49,0xbc,0xb2,0x8f, +0xf7,0xca,0x4b,0x93,0xc4,0x5b,0x0c,0xe8,0x3d,0x3b,0x49,0xbc,0x25,0x0f,0x6f,0xef, +0xcd,0x37,0x27,0x89,0xb7,0x1c,0xf0,0xe1,0xb5,0x49,0xe2,0xad,0xf8,0xf4,0xbe,0xf0, +0xf1,0x24,0xf1,0x4e,0x7b,0x78,0xfb,0x97,0xde,0x1f,0x67,0xc7,0xc2,0x04,0xb2,0x1e, +0xee,0xcc,0xa4,0x37,0x56,0x92,0xd1,0x64,0x12,0x88,0xfc,0xf9,0xd5,0x3e,0xee,0xd4, +0x75,0xf5,0x44,0x68,0x3e,0xf3,0x9e,0x3d,0x98,0xcf,0x6e,0x7b,0x3e,0xf3,0xd9,0x3b, +0x7c,0x3e,0x73,0x5d,0xaf,0xbd,0xcf,0x64,0x1e,0xfe,0xfd,0x98,0xc9,0xa8,0x90,0x98, +0x1d,0xcd,0xa2,0x8b,0xcb,0x76,0x7d,0xac,0xd3,0xf9,0xee,0xd4,0x60,0x9b,0x5c,0x68, +0x4a,0xc5,0xaf,0x5c,0x04,0x03,0x82,0xde,0x4e,0x2a,0x34,0x65,0x2b,0xad,0x8e,0xa1, +0x49,0x98,0x57,0x7b,0xe7,0x56,0x04,0x26,0x18,0xb5,0xd3,0x5b,0x1a,0xa6,0x8d,0x6a, +0x1d,0x9c,0x85,0x03,0x1e,0xd1,0xe7,0xdf,0x6d,0x1e,0xd1,0xe4,0x04,0x16,0x64,0x99, +0x19,0x73,0x63,0x0d,0x9f,0xf6,0x00,0x9a,0xc8,0x5c,0x5b,0x23,0xb7,0xb8,0xed,0xe9, +0x76,0x36,0x3d,0x71,0xca,0x61,0xe8,0xbe,0xaa,0xe4,0xed,0x4c,0x5e,0xd9,0xe4,0x8d, +0x4c,0xa3,0x36,0x2a,0x0d,0xeb,0xc9,0x91,0xbc,0xbc,0x67,0x82,0xb1,0xfe,0xd7,0x46, +0x0e,0xaa,0xaa,0x7f,0xb0,0x78,0x3a,0x33,0x7b,0xcf,0x05,0x64,0xc7,0x08,0xcd,0x94, +0xee,0xbf,0xd0,0x4c,0xf4,0x7c,0xf8,0xbd,0x45,0x67,0x82,0x58,0x33,0xfd,0xdc,0x5b, +0x9d,0x8a,0x4a,0x9d,0x06,0xad,0xed,0x3b,0x14,0x73,0xa6,0x0d,0xd8,0xf9,0xeb,0xd5, +0xde,0xef,0x7e,0x35,0x4e,0xf8,0xf7,0xec,0x07,0xbb,0xef,0xbe,0x34,0x32,0x08,0x7c, +0xbb,0xd1,0xe2,0xdb,0x0e,0x12,0x96,0xee,0xd3,0x20,0x21,0xeb,0x4e,0x8f,0xed,0x0f, +0x42,0x85,0xbe,0xd7,0x74,0x97,0x46,0x06,0x99,0x2e,0xae,0x23,0x10,0x9b,0x56,0xf9, +0x07,0x0f,0x3c,0xab,0xdb,0xf1,0xac,0x42,0xac,0x1d,0xee,0x58,0xc1,0xa0,0x79,0xf5, +0x93,0xdd,0x0f,0xfe,0xd0,0xbb,0xf0,0x4a,0xff,0x37,0x5f,0xf4,0xae,0x5d,0xd8,0xa3, +0x93,0xc5,0x57,0xf5,0xdd,0x8d,0x16,0xf6,0xce,0xbf,0x9e,0xef,0xbd,0xf7,0x46,0xef, +0xcc,0xd5,0x3b,0x1b,0x2e,0x04,0xa3,0xff,0xe6,0xeb,0x5f,0x41,0x27,0x7d,0xa7,0xc2, +0x38,0x77,0x97,0x42,0x92,0x3c,0x85,0xc4,0x2c,0x10,0x74,0xdd,0xec,0x3a,0x7e,0x14, +0xc3,0x66,0x6e,0x1c,0xcb,0x23,0x8f,0x7f,0xf7,0x40,0x4d,0xdd,0x8e,0x9a,0x4a,0x62, +0xf8,0x50,0x97,0x38,0xb9,0x37,0xb8,0xfc,0x79,0x18,0xa8,0xfd,0x3f,0xbf,0xdb,0x7f, +0xfd,0x2f,0x7b,0xd4,0x66,0x09,0x14,0xed,0x5b,0xf0,0x28,0xa1,0x21,0x6c,0x64,0xe1, +0xd7,0x92,0x5d,0x4b,0x4b,0x78,0x30,0xf6,0xf7,0x65,0xec,0x8b,0xfe,0xe0,0x67,0x46, +0x1b,0x67,0x8d,0xf0,0x0f,0x1e,0x0c,0xf3,0xdb,0x19,0xe6,0x21,0xd6,0x0e,0xb7,0x46, +0xa8,0x8b,0xb5,0xf3,0xc6,0x2f,0x6e,0x29,0xde,0xcb,0xd7,0xb3,0x6f,0x23,0x76,0xd5, +0x69,0xbb,0xd1,0x91,0x60,0x94,0x4e,0x66,0x70,0xde,0x4b,0x01,0x1d,0x45,0x55,0x7f, +0x40,0x9f,0x3d,0x8a,0xfe,0xfa,0x7e,0x87,0x74,0xa8,0x7b,0x77,0xe7,0x43,0x3a,0xe5, +0x38,0xef,0x99,0x9d,0x5e,0x33,0x89,0x34,0xbb,0x7d,0x8f,0x6f,0xec,0x9c,0x7d,0xb1, +0xff,0xd6,0x9f,0x47,0x87,0x2a,0xa8,0x5c,0xe3,0xe7,0xec,0xea,0xe0,0xfa,0xda,0x34, +0xea,0xba,0x21,0xe5,0x0a,0xb9,0x62,0x71,0xbf,0x72,0xdd,0x1e,0x7b,0x62,0x74,0xb2, +0x55,0x40,0x95,0x0e,0x5c,0x94,0x6a,0x72,0x4e,0xaa,0x54,0x81,0xa6,0x9c,0x2c,0xcb, +0xfb,0x95,0x84,0xd6,0xfb,0xf8,0xe2,0xce,0xf5,0x57,0xfa,0x2f,0xff,0x91,0xe6,0xd8, +0x8f,0x4f,0x61,0x8b,0x7e,0x30,0x51,0x2e,0x97,0x73,0xde,0x7f,0x85,0xfd,0x22,0x11, +0xe8,0x63,0x69,0x8d,0x63,0x13,0xb7,0x0e,0x93,0xcf,0x26,0x26,0xdf,0x70,0x3c,0x94, +0xf6,0x8d,0x83,0x17,0x2f,0xf7,0xce,0x7d,0xe8,0x67,0x73,0x8e,0x43,0x64,0xb7,0xc3, +0x4c,0x69,0xa9,0x30,0x23,0x15,0x67,0x4a,0xc5,0x49,0xe5,0xd5,0xdd,0x82,0x32,0xf4, +0xcc,0x2d,0x55,0xb7,0x3b,0x86,0xb2,0x35,0x43,0xd6,0x0c,0xed,0xc4,0x2c,0x51,0x0c, +0x7d,0xbd,0x2d,0xa2,0x6f,0x66,0xcf,0x90,0x06,0x0c,0x77,0xcd,0x9a,0xa5,0xaf,0xc4, +0x4d,0x4b,0xe9,0xcc,0x10,0xfc,0x9d,0x1d,0x7e,0xbc,0x9f,0x8b,0x78,0xcd,0x6c,0x3b, +0xa2,0xad,0x9f,0xd4,0x66,0x0a,0xb9,0xaa,0xd6,0x9a,0xc5,0x43,0xe7,0x2e,0xee,0xbc, +0x77,0xe5,0x9b,0x6b,0x6f,0x30,0x3f,0xcf,0xfb,0xd4,0x10,0x7a,0xe5,0x65,0xfb,0x9b, +0x6b,0x2f,0xf9,0x5f,0x1d,0xba,0x79,0xe9,0xa3,0x9d,0x9f,0x9f,0x2e,0x82,0x59,0xdb, +0xbb,0x70,0x19,0xd7,0x5d,0x2e,0x5e,0x66,0x3b,0x7d,0x6f,0x9e,0x39,0xdf,0xff,0xcd, +0x5f,0x6e,0xbe,0x70,0x1e,0x44,0x03,0x0a,0x48,0x05,0xdb,0x2f,0x73,0xe3,0xab,0xff, +0xee,0xbf,0x74,0x9a,0x95,0xec,0x9f,0xfe,0x7d,0xef,0xbd,0xf3,0xbd,0x33,0x57,0x7a, +0x2f,0xff,0x6c,0xc8,0x97,0x6f,0x93,0x38,0xc7,0x3e,0x80,0x47,0xcf,0x10,0xc3,0x59, +0x63,0xe8,0x1a,0xc4,0x1e,0x4f,0x0e,0x1c,0xd3,0xde,0x49,0x3a,0x41,0x10,0xf5,0xef, +0x50,0xcb,0x66,0x98,0x45,0x93,0x6c,0xc9,0xd0,0x0f,0xab,0xb3,0x55,0x2e,0x2f,0x37, +0x55,0xf6,0x0e,0xe2,0x27,0x03,0x1f,0x58,0xf7,0x4b,0x29,0x83,0x13,0x1e,0x33,0x1c, +0x6c,0x47,0x64,0x2b,0xa7,0x3c,0x36,0x65,0xf2,0xb9,0xe1,0x95,0xb1,0x66,0xad,0x51, +0x41,0xdf,0x6f,0x2b,0x94,0xdb,0x7b,0xeb,0xc3,0x9d,0x2b,0x5f,0x79,0x9f,0xd3,0x7c, +0xb0,0x77,0x64,0x8f,0x7b,0x47,0x4c,0x47,0xa9,0x77,0x2d,0x23,0xc8,0x63,0x99,0xd4, +0x1a,0xb4,0x87,0x78,0xe1,0xf0,0x91,0x83,0x64,0x12,0xdb,0x48,0xef,0x4e,0xbb,0xf6, +0xb0,0xa3,0xac,0x38,0x8a,0x45,0x2d,0x5a,0x36,0x6a,0xe9,0x0e,0x12,0x11,0x9a,0x2f, +0xd2,0x8f,0xb3,0xde,0x1b,0x2b,0x97,0x3e,0xbf,0x3c,0x99,0xb0,0xd9,0xf7,0x83,0x79, +0x2a,0x3b,0x96,0xb9,0x8e,0x11,0x07,0x4f,0x6a,0xbd,0xfb,0x78,0xdd,0x7e,0xdf,0x28, +0x20,0xb0,0x98,0x51,0xbc,0xbf,0x25,0x05,0xe4,0xf6,0xd7,0x0f,0xe1,0x5a,0xf0,0xb5, +0x51,0x1e,0x9e,0xe4,0xd7,0x74,0x43,0xfb,0x71,0x87,0x7e,0xd9,0x98,0xb4,0x34,0xa7, +0x69,0xe2,0x49,0x86,0x26,0x9e,0x9a,0xa4,0xb5,0x1b,0x4c,0x9a,0x5b,0x5d,0xc3,0xd1, +0x3b,0x20,0xbd,0x74,0x68,0x51,0x17,0xe2,0xde,0xd2,0x63,0xd8,0xc6,0x40,0x8f,0xb1, +0x3b,0xf7,0xb8,0x0d,0xef,0xfe,0xbb,0xa6,0x6d,0x7e,0xe8,0x77,0x2b,0x55,0x39,0x63, +0x6a,0x91,0xa8,0x6a,0x1a,0xc5,0x9a,0x1b,0x9f,0x9f,0xbb,0x71,0xed,0x1d,0x82,0xba, +0xbb,0xff,0x9b,0x33,0x37,0xae,0x7e,0x3a,0x79,0x2d,0xd3,0xa5,0x8d,0xb8,0xa3,0x8a, +0x66,0xfa,0x9e,0x56,0x34,0xe1,0x2f,0x55,0xdf,0xb2,0xa2,0xb1,0xb7,0x6c,0xd1,0x30, +0xd7,0x6f,0x61,0xad,0xba,0x63,0xb9,0xe9,0x17,0x5b,0x76,0xdd,0xc0,0x6f,0x67,0xcf, +0xe5,0xe1,0xd1,0xdd,0x36,0x46,0xfe,0x55,0x73,0x56,0xb6,0xec,0x65,0x73,0x7d,0x9f, +0x83,0x4c,0xbd,0x17,0x3f,0x03,0x2f,0x6a,0x9f,0x36,0x72,0x86,0x3e,0x2d,0x9e,0xc7, +0x6f,0x8b,0xc3,0x4d,0x00,0xc6,0x5c,0x0d,0x97,0x70,0x7a,0x7e,0x1c,0x4a,0xaf,0xdd, +0x04,0x11,0x75,0x4c,0xc5,0x76,0x92,0xf4,0x02,0x0c,0xa6,0x98,0xd6,0x5a,0x8a,0x6e, +0x6b,0xaa,0x10,0x66,0xe8,0x02,0x7e,0x43,0x9e,0x1c,0x41,0x6c,0x7e,0x6b,0x98,0x17, +0x13,0x1c,0x5a,0x87,0x95,0xd2,0xfa,0x40,0xb4,0x69,0xca,0x61,0xa8,0x5e,0xcc,0xaa, +0x6b,0x2b,0x8d,0xe3,0xab,0x8a,0xc5,0xc6,0x90,0x7b,0xe3,0x31,0x35,0x2a,0x0d,0xde, +0x7b,0x90,0x7a,0x2a,0x85,0x21,0x1e,0x0c,0x9e,0x55,0x1f,0x80,0xbb,0x99,0x7f,0x11, +0xfa,0xb9,0x3e,0xe0,0x18,0x17,0x38,0x76,0x73,0xaa,0xb6,0x66,0xf3,0x5f,0x65,0x5f, +0x67,0x11,0x10,0x74,0x11,0x15,0x7a,0xcc,0x6f,0x5d,0x31,0x14,0x6b,0xe0,0x14,0xfe, +0xb9,0x8e,0xe2,0x34,0x09,0x40,0x1e,0x2a,0x90,0x42,0x53,0x2e,0x6d,0xc8,0xa5,0xa5, +0xc2,0x49,0xb0,0x7a,0x75,0xc3,0x98,0x17,0xda,0x66,0x5b,0x1b,0xf0,0x2d,0x83,0x22, +0xb2,0x4c,0xca,0xb9,0x69,0xd9,0x10,0x4b,0xb9,0x8a,0x58,0xcc,0x55,0x2b,0xa2,0x94, +0x93,0x6b,0x44,0xca,0x95,0x8b,0x04,0x1e,0x11,0x7c,0xb4,0xec,0x02,0x9d,0x3c,0x34, +0x9d,0xab,0x56,0xe1,0x51,0xb1,0xb6,0x5c,0x81,0x77,0x12,0xbc,0x23,0xf4,0x95,0x64, +0xf0,0xa5,0xca,0x35,0xc4,0x54,0x3e,0x79,0x48,0x92,0x73,0x65,0x52,0x5d,0x92,0xa4, +0x8d,0x8a,0x51,0xca,0x4d,0x97,0x89,0x0c,0x8f,0xe1,0x2f,0xd6,0x51,0x14,0x4b,0xa2, +0x9c,0x2b,0x4e,0x1f,0xad,0x22,0x1c,0x29,0x35,0x80,0x82,0xda,0x34,0x29,0x88,0x35, +0xc0,0x50,0x28,0xc2,0x9f,0x9a,0x0d,0x17,0x32,0xa9,0xe1,0xff,0x1a,0xec,0x25,0xa9, +0x89,0xf8,0x12,0xfe,0xd4,0x6c,0x91,0x81,0xe1,0xff,0x4e,0xb6,0x0a,0x44,0xaa,0x34, +0xb0,0x56,0xc4,0x30,0x0d,0x17,0x52,0x11,0xfe,0x4c,0xdb,0xec,0x82,0x4c,0xe3,0x7f, +0x04,0x6f,0x08,0xde,0xb0,0x0b,0x7c,0x76,0x32,0xc4,0x9a,0xb9,0xfc,0x7a,0x12,0xff, +0x55,0x35,0x99,0xed,0x12,0xb4,0xbc,0xd8,0x14,0x2b,0x1b,0x95,0xa6,0x28,0x6f,0x88, +0x95,0xa5,0xf2,0x86,0x28,0x37,0x2b,0x47,0xcb,0x4d,0x19,0x1e,0x55,0x36,0xe4,0x93, +0x43,0x3a,0x60,0xac,0x3e,0x4b,0x26,0x8c,0x7e,0x7d,0x20,0x11,0x79,0x39,0x5b,0x5c, +0x04,0xa6,0xd4,0xb2,0x45,0x52,0xcc,0xe2,0x05,0xfc,0x29,0x1f,0x95,0x6a,0x07,0xe5, +0xac,0x0c,0xdc,0x2c,0x64,0x0b,0xa4,0x9c,0x95,0xa5,0xa5,0xd0,0x13,0x59,0xca,0x4a, +0xb5,0xa3,0x92,0xbc,0x84,0xbf,0xb5,0xa5,0xf2,0xd1,0xf2,0x92,0x24,0x1f,0x2d,0x2e, +0x95,0x0f,0x49,0xd3,0xb9,0xe9,0x6a,0xb6,0xb4,0x08,0x7f,0x2b,0x52,0xb6,0x44,0xe0, +0x6f,0xa9,0x98,0x85,0x7e,0x98,0xc6,0x4b,0xbc,0x92,0x97,0xa5,0x4a,0xae,0x50,0xcd, +0x96,0x73,0x25,0x69,0x59,0xaa,0xe6,0xca,0xd5,0xec,0x74,0xae,0x06,0x97,0xb5,0x5c, +0x35,0x5b,0xc9,0x4d,0x2f,0xca,0x85,0x5c,0xa1,0x02,0x57,0xa5,0x12,0x71,0x2f,0x09, +0x7d,0x87,0x62,0x81,0x05,0xe4,0x32,0x62,0x59,0x84,0x2b,0x49,0xf6,0x31,0xd7,0xca, +0xac,0x32,0xac,0xfc,0x90,0x54,0x06,0xa9,0x01,0x0c,0x92,0xbc,0x5c,0xcd,0x4a,0xc5, +0x1c,0xb4,0xa7,0xb2,0x24,0x15,0x72,0x50,0x1c,0xc4,0x73,0x3a,0x5b,0xcd,0x55,0x80, +0x0a,0x1f,0xe8,0x3f,0x05,0x32,0x79,0xe6,0x13,0x97,0xfb,0x54,0xc3,0x4f,0x74,0x3c, +0x82,0x60,0x96,0x17,0x81,0x7a,0x59,0x22,0x65,0x68,0x32,0x01,0x9e,0xd5,0xf0,0x6f, +0x0d,0x98,0x4e,0xb0,0x95,0x20,0xe8,0x39,0x99,0x48,0x52,0x6e,0x1a,0xee,0xe1,0x4e, +0xce,0x95,0x2a,0x47,0xe1,0x56,0x2e,0x61,0xb1,0x8a,0x84,0x40,0x15,0x28,0x52,0x21, +0x35,0xec,0x6f,0xfc,0xbb,0x08,0x3f,0xd0,0x3d,0xc0,0x42,0x18,0xd1,0x15,0x02,0x1c, +0x2f,0x92,0xca,0x8a,0x54,0x70,0x1f,0x16,0x10,0xa2,0xe0,0x82,0x17,0x60,0x70,0x7b, +0x28,0x24,0x42,0xf1,0x1e,0xa5,0x75,0x2c,0xc2,0x7b,0xb7,0xda,0x1a,0x23,0x04,0x86, +0xe5,0x62,0xcd,0x25,0xb0,0x80,0xbf,0x65,0x44,0x5c,0x3e,0x24,0x17,0xb0,0x6b,0xa1, +0x15,0x35,0x1c,0xb3,0xb2,0x94,0x2b,0xca,0xd8,0xc7,0xf0,0x0b,0xd7,0xf0,0x04,0xc5, +0x82,0xc8,0x20,0x5e,0xc5,0x45,0xc0,0x5c,0x81,0xc7,0x32,0x36,0x43,0xae,0xe0,0xfb, +0x2a,0x36,0x09,0x2f,0xca,0xd3,0xcb,0x55,0x2a,0x55,0xf0,0x37,0x37,0x5d,0xc2,0x66, +0x57,0x16,0xab,0xb9,0x5a,0x11,0xaf,0x80,0xc6,0x1a,0x72,0x01,0x58,0x51,0x85,0x2b, +0xc6,0x94,0xea,0x52,0x2d,0x37,0xbd,0x0c,0xa5,0xa5,0xea,0x51,0x68,0x91,0x4c,0xaa, +0xb9,0x12,0x63,0x10,0x28,0x21,0x24,0xad,0xba,0x22,0x95,0xdc,0x87,0x25,0x02,0xb2, +0x5d,0xcc,0x95,0xa6,0x97,0x19,0xaf,0xe1,0xba,0x82,0x42,0x8a,0x1c,0x05,0x51,0xac, +0x21,0xf1,0x95,0x2a,0xa2,0x05,0x6d,0x23,0xa3,0x76,0xc9,0x95,0x2b,0xf4,0x62,0x3a, +0x27,0x95,0x8e,0x62,0xfb,0x68,0x3b,0x97,0x4a,0x8b,0x72,0xae,0x06,0x4a,0x10,0xfe, +0x47,0xff,0x22,0xb7,0x16,0x65,0xc4,0x07,0xec,0xc3,0x47,0x50,0x15,0x32,0x7e,0xa9, +0x0a,0x2f,0x96,0xe1,0x0a,0x7f,0x4a,0x4b,0x72,0x61,0x19,0x91,0x01,0x13,0xe0,0x39, +0xde,0x22,0x35,0x35,0xd0,0xb4,0x30,0x26,0x10,0x7c,0x11,0x38,0x00,0x14,0x43,0x61, +0x99,0x22,0x2b,0xd4,0x18,0x97,0x8e,0xc2,0x1b,0xb7,0x2a,0x89,0xd6,0x80,0x34,0x45, +0x65,0x3c,0x59,0x5b,0x38,0x96,0xd2,0xb6,0x8d,0x98,0xdd,0x0f,0xb7,0x27,0xb3,0x32, +0xea,0x5d,0xe0,0x5b,0x61,0xda,0x00,0x9d,0x5e,0x46,0xc5,0x5e,0x96,0x50,0x3b,0xc3, +0x7f,0x0d,0x10,0x99,0x12,0x28,0xfc,0x5a,0x09,0xc9,0xae,0x82,0xd6,0x96,0x50,0x13, +0x4f,0x4b,0x22,0xb0,0xb4,0xb8,0x24,0x4d,0x1f,0x2d,0x35,0xc5,0xe9,0xa3,0xf2,0x52, +0x75,0x03,0xb8,0xb1,0x01,0x80,0xb5,0x26,0x88,0x99,0x34,0xbd,0x08,0xbf,0x65,0x10, +0xd1,0x9a,0x8c,0xe2,0x05,0xfa,0xa2,0x86,0x33,0x08,0x8a,0x65,0xae,0x08,0x1d,0x4a, +0x55,0x43,0x01,0xa5,0x0a,0x64,0x04,0xde,0x49,0x28,0x8a,0x20,0xb5,0x55,0xd0,0xc1, +0x8d,0xdc,0x34,0xf0,0x2e,0x57,0xc1,0x1f,0xb8,0x2a,0x62,0x95,0x58,0x39,0xce,0x4d, +0x15,0x43,0x2c,0x23,0x3b,0xe1,0x87,0xf6,0x47,0xcd,0x28,0x8b,0x65,0x42,0xbb,0x0b, +0x7f,0x72,0xd3,0x15,0xa0,0xbe,0x50,0x82,0x49,0x09,0xc5,0x54,0x2a,0x00,0x3a,0x94, +0x29,0x59,0x6e,0xca,0x30,0xc9,0x81,0x6d,0x5e,0x6c,0xe2,0x54,0xb6,0x0c,0x42,0x43, +0x9f,0x41,0x83,0x60,0x3e,0x93,0x4f,0xb6,0x44,0x2a,0xcb,0xd3,0x00,0x54,0x91,0xe1, +0x61,0xb1,0x48,0xe5,0x09,0x88,0x9f,0x6e,0xc2,0x84,0x23,0x97,0xc6,0x9d,0x6a,0x2c, +0x6d,0xd5,0x34,0x9d,0x09,0x77,0x10,0x2a,0x6d,0xe0,0x7c,0x96,0x8e,0x23,0xf8,0x93, +0xa3,0x63,0x0b,0x15,0x71,0x11,0x55,0xf2,0x74,0xb6,0x96,0xa3,0x0a,0x79,0x3a,0x0b, +0x60,0x65,0xf6,0x0e,0x7f,0x50,0xa7,0x80,0x96,0xa5,0x43,0x0c,0xe6,0xfd,0x2c,0x80, +0xd0,0xee,0xa8,0xe1,0xb3,0xda,0x32,0xf0,0xab,0x84,0x70,0x30,0x5e,0x80,0x79,0x59, +0xd4,0xda,0xa8,0x64,0x6a,0xf8,0x8c,0x0d,0xca,0x2c,0xfe,0xa0,0x3a,0x2f,0xa3,0xae, +0xae,0x11,0x76,0x55,0x40,0x38,0x7c,0x0b,0x3a,0x1d,0xab,0x90,0xb2,0xd4,0x9e,0x00, +0x65,0x8e,0xf3,0x81,0x9c,0x05,0x8d,0x06,0x2a,0x68,0x79,0x1a,0xa6,0x05,0x18,0x96, +0x72,0x16,0x6e,0x8e,0x96,0x0e,0x01,0xb1,0x8c,0xa8,0x22,0xd2,0x89,0x9d,0x06,0xf7, +0xa0,0x27,0xa1,0x38,0x90,0x80,0x26,0x09,0x36,0x63,0xb1,0x8c,0x35,0x40,0x2f,0xc0, +0x8b,0x1a,0x36,0xa7,0x04,0x12,0x52,0x65,0x74,0x54,0xb1,0x04,0x68,0x2c,0x10,0x1f, +0x4a,0xa3,0x04,0x82,0x43,0x1b,0x5a,0x5a,0xa6,0x2d,0x2a,0x2d,0x62,0x63,0x01,0x9e, +0xb6,0xa5,0x44,0xbc,0x1a,0xff,0x73,0x5c,0x33,0x81,0x25,0x2a,0x58,0x66,0x87,0x65, +0x2b,0x24,0xf6,0x08,0xca,0xae,0x51,0x06,0x8d,0x09,0xc2,0xb7,0x8f,0xd6,0x41,0xc3, +0x30,0xbb,0x2a,0x25,0x85,0x86,0x5d,0x26,0x2a,0x53,0x35,0x1c,0x86,0x12,0xea,0x2b, +0xec,0xde,0x0a,0x4e,0x55,0xe5,0x1a,0x6a,0x81,0x0a,0xd5,0x78,0xa0,0x0a,0x71,0x54, +0x4a,0x04,0xb9,0x88,0x7d,0x01,0x8f,0xcb,0xee,0xc8,0x45,0x55,0x50,0x44,0x55,0x5c, +0xac,0x80,0xcd,0x81,0xe2,0x24,0xe1,0xdf,0x52,0xa3,0x80,0x7d,0x8a,0x7a,0x13,0x06, +0x32,0x4e,0x54,0x95,0xa6,0x54,0x6c,0xc8,0x30,0x26,0xe1,0x75,0x19,0x06,0x98,0x5c, +0x42,0x86,0x81,0x89,0x07,0x10,0xa8,0x65,0x0a,0x65,0x18,0x69,0xd3,0xa8,0x54,0x2a, +0x78,0x55,0xab,0xc0,0xb0,0x05,0xd6,0x16,0x61,0x8c,0x23,0xa0,0x58,0x6e,0x16,0x8f, +0xd6,0x9a,0xa5,0x8d,0x52,0xb3,0x38,0xee,0xf0,0x63,0x8b,0x31,0xc9,0xcd,0x06,0xf4, +0x72,0x53,0x2c,0x6f,0x94,0x9b,0x60,0xe5,0xa1,0x8d,0x0b,0x02,0x0b,0x9a,0x0b,0xd4, +0xf8,0x12,0x58,0x7a,0x4b,0xe5,0x86,0x48,0x15,0x73,0x01,0x55,0x1e,0x0c,0x11,0xfa, +0x87,0xc8,0xcb,0xa0,0x8a,0x6a,0xd0,0x3c,0x78,0x87,0xd3,0x2c,0x9d,0x2f,0x9a,0xd0, +0x60,0xb8,0x87,0xa6,0xc9,0x22,0x2a,0x74,0x51,0x3e,0x5a,0x6e,0x60,0x39,0x09,0x6e, +0x45,0x19,0xff,0xd7,0x14,0xa5,0xa3,0x12,0x68,0xa0,0x93,0x2d,0x28,0x5f,0x05,0x53, +0xac,0x0a,0x85,0x36,0x24,0x69,0x1f,0x45,0xa6,0xa9,0x19,0x9d,0x09,0x2b,0x1f,0x22, +0x2f,0x82,0xc1,0x57,0xa5,0xad,0x76,0x2f,0x24,0x19,0x8c,0x7b,0xb8,0x92,0x0a,0xfe, +0xff,0x45,0xf7,0x81,0x28,0x15,0x56,0x50,0x7d,0xc8,0x14,0x8c,0x40,0xdb,0x25,0xaa, +0x43,0x65,0x34,0xaa,0x65,0x30,0xa6,0x5b,0xd0,0xef,0x60,0xbc,0x83,0x12,0x36,0x80, +0x51,0x30,0x3f,0xa0,0xf2,0x61,0x33,0x3d,0x1a,0xe2,0x54,0x8d,0xd0,0xbf,0x65,0x5a, +0x28,0xe7,0x32,0x15,0x40,0x40,0x62,0x24,0xec,0x82,0x69,0xb8,0xa8,0x16,0xd1,0x67, +0xc1,0x99,0x49,0xae,0x34,0xc0,0xca,0x10,0x41,0x18,0xd1,0x73,0x01,0x9f,0x06,0xff, +0x00,0x38,0xeb,0xc4,0xa0,0x33,0x6c,0x51,0x26,0x78,0x0d,0xb3,0x7e,0xb5,0x81,0x22, +0x88,0x76,0x03,0xd8,0x0a,0x22,0xc8,0xbb,0x58,0xb2,0x4b,0xf4,0x06,0xc4,0x1d,0xc5, +0x18,0xfc,0x24,0x44,0x88,0x93,0x10,0x5c,0x80,0xd1,0x02,0xd0,0xe5,0x71,0x45,0xb0, +0x69,0xb6,0x86,0x4c,0xd0,0x12,0x9a,0x57,0xe0,0x65,0x80,0x58,0x57,0x50,0x06,0xab, +0xcd,0x22,0x4e,0x50,0x45,0xca,0xae,0x66,0x71,0xa3,0xba,0x8f,0xc2,0x81,0xab,0xf1, +0x77,0x9f,0x70,0xb0,0x7e,0xae,0xa0,0xb7,0x05,0x9e,0xa0,0x88,0x16,0xc0,0xd1,0x69, +0x2a,0x2a,0x63,0x36,0x2b,0x2e,0xd1,0x2c,0x59,0x75,0xa3,0x64,0xc0,0x2c,0x56,0xa3, +0xa6,0x26,0xda,0x16,0x06,0x75,0x79,0xe1,0xa7,0x0a,0x1e,0x0c,0x2a,0x76,0x11,0x34, +0x97,0x08,0xff,0x23,0x28,0x45,0x54,0x94,0xc6,0xec,0x93,0xa3,0xb7,0xd4,0x2b,0x71, +0x59,0xe6,0xb7,0xd5,0x2b,0xa8,0x6c,0x9a,0x52,0x15,0x06,0xdc,0x52,0x11,0x07,0x5c, +0x01,0x14,0x69,0xe8,0x76,0x7a,0x03,0xb4,0x57,0xf5,0x68,0x65,0x69,0x6c,0xb5,0xda, +0x32,0x2d,0x0d,0x93,0x73,0x26,0x6d,0xd8,0x90,0x6a,0x44,0x87,0xda,0xfe,0x78,0xf5, +0x87,0x2b,0xf1,0x2c,0x74,0x8c,0x13,0xc8,0x54,0x41,0xe3,0x14,0xe2,0xbe,0xb5,0xbd, +0xb7,0x3e,0x0a,0x1f,0x03,0xc2,0x57,0xf6,0x02,0x3f,0x26,0x33,0xda,0xa6,0xa3,0xd9, +0xc2,0x08,0xf6,0xcb,0x1e,0xbf,0xe1,0xbe,0x12,0xf0,0x1b,0x48,0x9a,0xe6,0x3a,0x63, +0x3f,0xe5,0xca,0xd6,0x14,0xab,0xd1,0x1c,0xa2,0x89,0xca,0xa8,0x68,0xc1,0x7c,0x07, +0xbd,0x07,0xaa,0x58,0x06,0x4d,0x27,0x53,0x73,0x0e,0x06,0x08,0x86,0x7e,0xa8,0xf7, +0x29,0xd1,0xe9,0x90,0xba,0xa3,0x68,0x11,0xa2,0x51,0x26,0xb9,0x1e,0x4d,0x91,0x3e, +0x2b,0xae,0x14,0xd9,0x43,0x76,0xcb,0xde,0x7b,0xe0,0xd0,0xb9,0x15,0xec,0x5d,0x84, +0x17,0x11,0x63,0x09,0x23,0x47,0xe8,0x1d,0x1a,0x50,0x17,0x54,0xb9,0x81,0x75,0x97, +0xe1,0x71,0xad,0x86,0xce,0x53,0xa9,0x86,0x16,0x3d,0x9a,0x02,0x35,0x98,0x9c,0x5b, +0x30,0x04,0x0b,0x8b,0xd3,0xb9,0x02,0x5a,0xa5,0xe8,0x9e,0xd2,0xc9,0xb8,0x8c,0xb8, +0x57,0xe8,0xd3,0x32,0xab,0x12,0xdf,0x7a,0x50,0xb4,0x5e,0x0a,0xe7,0xdd,0x94,0xf6, +0x51,0xa1,0xda,0x9a,0x83,0x61,0xee,0x21,0xc2,0x50,0xc8,0x8e,0xd5,0x8b,0x03,0xc6, +0x99,0x04,0x86,0x39,0x4c,0x88,0x30,0x19,0x81,0xbd,0x25,0x82,0xa3,0x94,0xc5,0x70, +0x0b,0x5c,0x54,0x24,0xef,0x0a,0x5f,0xe2,0x1b,0x19,0x7e,0x0a,0xf8,0x53,0x41,0x40, +0x98,0x5b,0xf1,0x95,0x21,0xa3,0x03,0x07,0x9c,0x86,0xb9,0x2e,0x27,0x55,0xe1,0x19, +0x60,0x2c,0x20,0xf7,0x81,0xcb,0x88,0x42,0xa2,0x25,0x24,0x62,0xa0,0x89,0x03,0x6e, +0x11,0xe0,0x69,0x88,0xee,0x63,0x19,0x7f,0x8a,0x88,0x48,0xae,0xc1,0x4f,0xb9,0x46, +0x9f,0xa1,0x73,0x58,0xac,0x41,0xd1,0x5a,0x05,0x21,0xcb,0x08,0x53,0x15,0xa9,0xa3, +0x08,0x9e,0x87,0x48,0x1d,0x27,0xac,0x7a,0x19,0x8d,0xf6,0x2c,0x4c,0xd1,0x12,0x82, +0x51,0xea,0x65,0xff,0x07,0x14,0x2a,0xfc,0x54,0xe9,0x15,0x41,0xcf,0xaa,0x5a,0x6a, +0xd0,0x77,0x59,0x6c,0x4b,0x09,0x9b,0x29,0x61,0xc5,0xa5,0xe9,0x2c,0x82,0x2c,0xd7, +0x30,0xa4,0x84,0x86,0x27,0x18,0xff,0x95,0x0a,0x5c,0x95,0x6b,0x59,0x1a,0x5c,0x02, +0x41,0x43,0xff,0xa3,0x52,0x04,0xdf,0x43,0xae,0x2d,0x97,0x11,0x05,0xc0,0x15,0x1b, +0x1e,0xfd,0x85,0xaa,0x8b,0x86,0xb6,0x00,0xdb,0x2e,0x2f,0x83,0x2d,0x5a,0x82,0xe2, +0xe0,0xee,0x2e,0xa2,0xbb,0x07,0xfe,0x46,0xa1,0x0a,0x94,0x56,0xd0,0xf3,0x28,0x52, +0x9a,0xa9,0x0f,0x52,0xa5,0xdc,0xcb,0x22,0xf7,0x16,0xc1,0xd7,0x2a,0xa1,0x3f,0x52, +0xac,0xa0,0xdb,0x45,0x3d,0x93,0x1a,0xbb,0x92,0x6d,0xe4,0x3b,0x3a,0x37,0xc8,0xd9, +0x02,0x12,0x0c,0x7c,0x17,0xfd,0xa2,0x84,0xf2,0xb3,0x8a,0x2d,0xa2,0xcd,0x2f,0x66, +0xdd,0xe6,0x33,0x8f,0x08,0x83,0xae,0xd0,0x04,0xca,0x78,0xf7,0x99,0x8c,0x3f,0x45, +0x44,0x24,0x23,0xc1,0x2e,0xd5,0x06,0xb2,0x5d,0xa4,0x6c,0x87,0x67,0x08,0x01,0x95, +0x63,0x25,0xd4,0xdf,0xc3,0x66,0xd0,0x8a,0x0b,0x48,0x22,0xba,0xef,0x04,0x65,0x06, +0xe1,0xe4,0x92,0xf7,0x43,0x7b,0xbc,0x54,0xa5,0x57,0x4d,0xca,0x73,0xf6,0x02,0x1f, +0x20,0x6d,0x12,0xe5,0x36,0xe5,0xbb,0x44,0x11,0xd1,0x38,0x40,0xc3,0xeb,0x7a,0x60, +0x00,0x06,0x62,0xe1,0xb6,0x92,0xf5,0xbb,0xd9,0xf0,0xa5,0x01,0x2b,0xa4,0xa4,0x17, +0x68,0x0d,0xd3,0x14,0xaf,0x27,0x34,0x81,0x74,0xf9,0xc2,0x95,0x75,0xa5,0x94,0x56, +0xe8,0xca,0xe1,0x32,0x27,0xf3,0x27,0x09,0xba,0xbc,0xe8,0x8a,0xa0,0xf2,0xae,0x01, +0x52,0x40,0x50,0x61,0x02,0x56,0xa4,0x71,0xee,0x0a,0xb1,0xbd,0xbb,0xac,0xfb,0xc4, +0xc6,0x6b,0xca,0x0d,0xf7,0xe1,0x0a,0x3a,0xac,0x55,0x8a,0x26,0xeb,0xa2,0x4b,0x52, +0xf0,0x73,0x79,0x37,0x76,0xef,0x25,0x6a,0x61,0x60,0xbf,0x61,0xe9,0x1d,0xc7,0x05, +0xd8,0x50,0x2c,0x82,0x03,0xbe,0x4e,0x13,0xb5,0xe7,0x89,0x40,0xe3,0xfe,0xde,0x80, +0x4d,0x85,0xd4,0x48,0x8a,0x8d,0xf1,0x14,0x8e,0xf1,0x54,0x9e,0x03,0xda,0xcb,0xb4, +0x8c,0x05,0x29,0x2d,0xc2,0x2c,0xa5,0xca,0x23,0xc6,0x25,0x8b,0x4b,0xbb,0xc9,0x3f, +0xa3,0x6c,0x28,0xec,0xa9,0x40,0x6c,0xab,0x31,0x2f,0x28,0x36,0xa8,0x25,0x3b,0xff, +0x8c,0x5d,0xef,0x28,0x8d,0xe3,0xb9,0x67,0xe8,0x3a,0x67,0x14,0x83,0xdb,0xb0,0x7c, +0x7e,0xf7,0xf2,0xc7,0xbb,0x1f,0x9e,0x0a,0x9a,0xb9,0xac,0xb4,0xd7,0x17,0xcd,0xf6, +0x9a,0xbe,0x0e,0xed,0x7c,0xce,0xe3,0x16,0xc0,0x5d,0x78,0xab,0x77,0xfe,0x75,0xef, +0x7e,0x09,0x6c,0xdc,0x19,0xf2,0x9c,0xd6,0x9e,0x21,0x02,0x5e,0x0b,0x59,0xd2,0xc0, +0xeb,0x1b,0x9f,0x5f,0xbd,0xf9,0xee,0x3f,0x84,0xed,0xac,0x07,0xc8,0x50,0x79,0xa0, +0xec,0xce,0x03,0x66,0x49,0x80,0x1c,0xb0,0xbf,0x45,0xdf,0x83,0xa7,0x0f,0x08,0x3e, +0xf1,0xca,0xf4,0x3e,0x79,0xa3,0x7f,0xe9,0x53,0x76,0x1c,0x1f,0x57,0x72,0x65,0xcb, +0x76,0xb4,0xd6,0x0a,0x5d,0xfb,0xf5,0x0a,0xb3,0x67,0x84,0x3d,0xf4,0xca,0xb3,0x45, +0xcf,0x9d,0x73,0x9f,0xf6,0x4f,0x9d,0xe6,0xca,0x1f,0x3e,0x72,0xd0,0x2b,0x06,0x97, +0x7e,0x65,0x6f,0x5e,0xb9,0x71,0xf5,0x53,0x96,0x8a,0x31,0x50,0xd9,0xb2,0xb9,0x1e, +0xa9,0x09,0x9e,0x84,0xab,0x61,0x6b,0xab,0x5c,0xc9,0x83,0xab,0x66,0xd7,0xf1,0x4a, +0xd1,0x1b,0xbf,0xaa,0x17,0xfe,0x76,0xe3,0xca,0xcb,0x1c,0x68,0x3e,0xcf,0x78,0xe9, +0x57,0x4a,0xbf,0x00,0xec,0xd7,0xc8,0xbe,0x18,0xec,0x16,0x66,0x47,0x92,0x72,0x85, +0x97,0x35,0x75,0x86,0x01,0x3e,0x61,0x6e,0x6a,0x16,0xdc,0xfa,0x84,0xb9,0xe9,0x9d, +0x6e,0x7e,0x26,0xdf,0x2a,0x8a,0xf2,0xa0,0x61,0xb8,0x25,0x8f,0x98,0x8e,0x62,0x90, +0x15,0x7a,0xaa,0x84,0x5f,0xd1,0xa9,0xab,0xec,0xc0,0x0d,0xbe,0x87,0x9b,0xba,0xa1, +0x2e,0x43,0x61,0xb7,0x1c,0xbd,0x27,0xf8,0xc0,0xaf,0xf3,0x4f,0xef,0xdf,0x7c,0x0d, +0xb8,0xcd,0x4a,0xb8,0x7f,0xd6,0xba,0x6d,0xba,0xcc,0x06,0xe5,0x41,0xe2,0x34,0x14, +0xbb,0xae,0xb2,0xae,0xa5,0xf1,0xa3,0xc8,0x99,0x40,0xf0,0xf4,0x35,0x42,0x1f,0x91, +0x79,0x18,0x75,0xcf,0x74,0x04,0xee,0x15,0x90,0xdc,0x34,0x37,0xe9,0x8a,0x62,0x1a, +0xda,0xf5,0xb7,0xaf,0x4f,0x5f,0xda,0xfd,0x10,0x7e,0x7f,0xf6,0xf5,0xcf,0xce,0x7d, +0x7d,0xfa,0xcb,0xaf,0x4f,0xbf,0xf9,0xf5,0xcf,0x7e,0xfd,0xf5,0xe9,0x97,0xbe,0x3e, +0x75,0x1a,0x3a,0xa2,0xff,0xd6,0x9f,0x77,0x3f,0xfa,0xdd,0xd7,0xa7,0x2f,0x47,0x01, +0x4e,0xfd,0x4c,0xc8,0xcc,0x06,0x38,0x2d,0xcd,0xe9,0x5a,0x6d,0xff,0xc1,0xb6,0x77, +0x71,0x20,0x2d,0xe4,0xe8,0x67,0x9b,0x33,0x39,0x4d,0x69,0x34,0xd3,0x1e,0xfd,0xe9, +0x10,0x45,0x38,0x82,0xc0,0x1d,0x81,0xa1,0x73,0x20,0xed,0x34,0x75,0x3b,0x93,0x53, +0x1c,0xc7,0x4a,0x0b,0xee,0xa7,0x9e,0x43,0x35,0x21,0xec,0x06,0xb0,0x78,0x9e,0x1b, +0x73,0xc7,0xa0,0xf0,0x53,0xc7,0x10,0xfa,0x29,0x0e,0xd2,0xc3,0xd5,0x74,0x5a,0x46, +0x1a,0x8a,0x04,0x58,0xb6,0xbd,0xcb,0xed,0x60,0x04,0xff,0xe0,0xc8,0xe3,0xf5,0xc3, +0x4f,0x3c,0xfa,0xe4,0xc1,0x23,0x8f,0x1d,0x7e,0x7c,0x65,0xfe,0x98,0xd0,0x7b,0xf1, +0x4c,0xff,0xfc,0xef,0x83,0xbe,0xf3,0x50,0x23,0x30,0x66,0xb7,0xd8,0xe8,0x38,0x01, +0x19,0xc7,0xbc,0x17,0xf9,0x7c,0xef,0xda,0x17,0xfd,0x77,0x7f,0x29,0xda,0x98,0x8a, +0x16,0x00,0x7b,0x4b,0xa4,0x40,0xab,0xa3,0xe8,0x6d,0x0d,0x0b,0xa9,0x66,0xa3,0x0b, +0x5a,0xd1,0xc9,0x3d,0xdb,0xd5,0xac,0xad,0x15,0x77,0x47,0x4a,0x3a,0xf5,0xf0,0xe0, +0x6a,0x6e,0xca,0x23,0xd6,0xef,0xfb,0xa0,0x03,0x81,0x0a,0x9b,0xe3,0x24,0xd6,0x86, +0xe9,0x43,0xa8,0x83,0xf0,0x15,0x48,0xc6,0x0c,0xc1,0x8b,0x6d,0xbf,0xe9,0x03,0xc4, +0xe4,0x0e,0xb9,0xc9,0xbe,0x2b,0xee,0x9b,0x1c,0x2e,0x60,0x7b,0x37,0x69,0x44,0x17, +0xe1,0x96,0xdf,0x4e,0xad,0xad,0xb2,0x27,0x07,0xd2,0x5e,0x7b,0x32,0x39,0xdc,0xdd, +0xb5,0x15,0xdb,0xcf,0x0d,0xb3,0xd5,0x01,0xed,0xde,0x76,0x96,0x94,0xb6,0x6a,0x40, +0xcd,0xdd,0xce,0xba,0xa5,0xa8,0x1a,0x0c,0x9e,0x27,0xb5,0x75,0x1d,0x94,0x81,0xa5, +0x61,0x3a,0x4d,0x30,0x96,0x3d,0xd2,0x7a,0xe7,0xde,0xd9,0xbd,0x7e,0xbd,0xf7,0xc9, +0x4b,0xfd,0x17,0x2f,0xba,0xa4,0x20,0x98,0x47,0xce,0xc1,0x67,0x94,0x13,0x3c,0xd3, +0x7d,0x46,0xe1,0x8b,0x47,0x2d,0x2b,0x6d,0x69,0x1c,0x19,0x9c,0xf8,0xe3,0x7b,0xa2, +0x59,0x16,0x8c,0x36,0x32,0x05,0x32,0x9c,0x63,0x69,0x30,0x91,0xf6,0x86,0xd0,0xa5, +0xbb,0x96,0x91,0x25,0x66,0xdb,0xfd,0x06,0x6d,0x96,0xce,0x29,0x59,0xca,0x75,0xae, +0x8e,0x03,0x39,0x05,0x61,0x39,0x11,0x87,0x62,0x33,0xf8,0x93,0x0d,0x1e,0x61,0xc9, +0x19,0x56,0x3e,0x78,0x88,0x88,0x66,0xe8,0x2f,0xf7,0xd0,0xad,0x6c,0xc6,0x27,0x25, +0xdc,0x22,0xfc,0xe7,0x53,0x04,0xaf,0xa0,0x0f,0x3a,0x86,0xd2,0xd0,0xd2,0xf9,0x54, +0x7e,0x3d,0x4b,0x52,0x42,0x2a,0xc3,0x8f,0xa0,0x6d,0x0e,0x33,0xfd,0x32,0xec,0x8c, +0xc7,0xa8,0xa4,0xf1,0xe1,0x73,0x60,0xc9,0x71,0x3a,0xff,0xaa,0x39,0x11,0x26,0x70, +0xa4,0xc4,0xb2,0x48,0xf8,0xd7,0x47,0x8f,0x80,0x56,0x6b,0x77,0x0d,0x63,0x18,0xe2, +0x27,0x4c,0xdb,0x19,0x28,0x1b,0x61,0x6c,0x3c,0xfe,0x27,0x0e,0xaf,0x60,0x05,0x31, +0xb2,0x1a,0xaa,0xe0,0x11,0xcd,0xb8,0x35,0xfc,0x8f,0x3c,0xba,0xfc,0xe8,0x91,0x47, +0xe3,0x6b,0x70,0xc5,0x8f,0x8e,0x05,0xef,0xc9,0x23,0x20,0xb7,0x47,0x4c,0xd3,0xe0, +0x85,0x32,0x9f,0x27,0xe9,0xb6,0xb6,0x49,0xf0,0x5d,0x3a,0x93,0xc9,0x61,0xae,0xa0, +0x02,0x32,0xb8,0x05,0xff,0xc4,0x43,0x87,0x44,0x55,0x25,0xcd,0xe6,0x4c,0xab,0x35, +0x63,0xdb,0xb9,0x15,0x50,0xd8,0xf3,0xf3,0x0b,0x44,0x2e,0xa0,0xcb,0x02,0xf6,0x9e, +0x4c,0x0a,0xd5,0x99,0x42,0x6d,0xa6,0x00,0x3e,0x82,0x5c,0x1c,0x07,0xa1,0x08,0xe8, +0x66,0x00,0x19,0xc5,0x45,0xff,0xf9,0x08,0xa7,0xc1,0xa1,0xaf,0xce,0xd4,0x66,0x4a, +0x60,0x66,0x33,0x54,0x88,0x22,0xd7,0xb1,0x4c,0xc7,0x44,0x69,0x74,0x31,0x81,0x12, +0xf1,0xc5,0x6d,0xad,0xe5,0x44,0xd4,0x8c,0xc9,0xdb,0x39,0x84,0x08,0x87,0xa6,0x04, +0x02,0xc2,0x0c,0x0a,0x37,0xb7,0xae,0x39,0x87,0x40,0xbb,0x34,0xd3,0x99,0x29,0x29, +0x3b,0x90,0x94,0x93,0xcf,0xf7,0xdf,0x7a,0xf1,0xc6,0xd5,0xeb,0x5c,0x59,0x35,0x54, +0x96,0xb5,0x27,0x1b,0x97,0xd0,0x03,0x65,0x2f,0xbd,0xcf,0x15,0x6c,0x86,0x0a,0x2e, +0x99,0x5d,0xcb,0x8e,0x2f,0x09,0x2a,0xeb,0x2f,0x17,0xc0,0x02,0xe2,0xca,0xb6,0xc2, +0x04,0xeb,0xed,0xae,0xa3,0xc5,0x96,0x86,0xb2,0x2f,0xfe,0x92,0x2b,0x68,0x87,0x0a, +0xae,0xd0,0x93,0xaf,0x12,0x0a,0xee,0x7c,0xf0,0x2a,0x57,0xf0,0x59,0x5a,0x10,0x74, +0x5a,0x33,0xb7,0x66,0x98,0xa0,0xed,0xd3,0x51,0x76,0x15,0x33,0xf9,0x22,0x20,0x82, +0x1a,0x3f,0xfe,0x9f,0xde,0x95,0x3f,0x70,0x65,0x57,0x04,0x12,0xa2,0xd6,0x30,0x74, +0xdb,0xab,0x39,0xca,0xa2,0xcb,0x7f,0xe2,0xea,0x0d,0x34,0xbf,0xbe,0x96,0xce,0xa7, +0xb7,0xa6,0x32,0xf9,0x1c,0x34,0xd4,0xa1,0x5d,0x9a,0x09,0x6a,0x80,0xdb,0x79,0xf8, +0xcf,0x57,0x1d,0xa0,0x91,0x1f,0x3d,0xd1,0xc9,0x1d,0x80,0x1e,0xf4,0xc9,0xfc,0x21, +0x0c,0xe0,0xff,0xd0,0x60,0x52,0xc8,0x4c,0x09,0x30,0xa1,0xdb,0xdd,0x55,0x1b,0x66, +0xe9,0x12,0x11,0x89,0x0f,0x9d,0x33,0xb4,0xf6,0xba,0xd3,0xe4,0xf4,0xcd,0x1a,0x34, +0x94,0xce,0xef,0x44,0x6f,0x13,0x93,0xab,0x11,0xe8,0x41,0xf1,0x65,0x45,0xd3,0x42, +0x5a,0x98,0x02,0x98,0x29,0x21,0x03,0x98,0x07,0x09,0x84,0x1b,0x94,0xc7,0x04,0x02, +0xa3,0xd5,0xcf,0xcf,0x4b,0x19,0xf2,0x7d,0x92,0x36,0x8f,0x1d,0x7f,0x2a,0x03,0x7c, +0x4b,0xa7,0x85,0x42,0x01,0xf0,0xd3,0x7b,0x8f,0xee,0xb4,0xe0,0x3f,0xf1,0x88,0x0e, +0xa8,0x66,0xf6,0x0c,0x56,0x18,0x1d,0xed,0xfe,0xd8,0xe6,0x46,0x3c,0x75,0x74,0x70, +0xcf,0x96,0xfb,0xbd,0xba,0x3a,0xda,0x07,0xb3,0x91,0x77,0xf4,0x1b,0x69,0xde,0xc7, +0x1a,0xb9,0x97,0xfe,0x77,0x9e,0xa2,0xcf,0x30,0x1b,0x30,0xfa,0xac,0x6b,0x0f,0x82, +0x6d,0x0e,0x60,0xc3,0x8f,0x28,0xf8,0xf3,0x23,0x98,0x60,0x0f,0x7b,0x9b,0x58,0x5c, +0x63,0x68,0x84,0x22,0x12,0x32,0xfc,0xec,0x7a,0x08,0x37,0xd7,0x46,0x4c,0x1a,0xfa, +0xb9,0x6e,0x68,0x4c,0xc8,0x94,0x01,0x09,0x79,0xd4,0xd0,0xf0,0xf2,0x07,0x5b,0x8f, +0xa9,0x69,0xff,0xb3,0xde,0x22,0xc0,0xf9,0x26,0x9c,0x5f,0x32,0xc7,0x3e,0x41,0x7f, +0xc4,0x4c,0x47,0x1f,0xfd,0x44,0x57,0x9d,0x66,0x96,0x14,0x02,0x22,0xa8,0x15,0x45, +0xbf,0x39,0x6b,0x38,0xc3,0x6a,0x0c,0x7f,0x97,0x36,0x5c,0xde,0xd2,0xec,0x86,0xd2, +0xa6,0xfb,0xf4,0x2d,0xff,0x45,0xc8,0xa4,0x7a,0x02,0x0d,0x69,0x5d,0xe5,0xa7,0x71, +0xb0,0x5e,0x31,0x63,0x15,0xf9,0xa6,0xab,0x1a,0x67,0x9b,0xf8,0x6f,0xa6,0xa0,0x00, +0xb5,0x98,0x22,0x2f,0x75,0x5b,0xb4,0x5b,0x8a,0x01,0x53,0x40,0xc3,0xd2,0xb4,0x36, +0x59,0x58,0x20,0xb9,0x60,0x3f,0x56,0xbd,0xae,0x5a,0x0a,0xb8,0x18,0xde,0x4e,0xa3, +0x4c,0x8e,0x26,0xd5,0xa4,0x33,0x41,0xf6,0xe1,0x2d,0x31,0x8a,0xd5,0x8d,0xf5,0xb4, +0x95,0x0d,0x7d,0x9d,0x09,0x63,0x9d,0xee,0x80,0x40,0xcb,0xac,0x65,0x6e,0x68,0x8b, +0x98,0xbb,0x97,0x16,0x5c,0x18,0x7a,0x5e,0xdf,0x86,0x26,0x84,0x89,0x8f,0x43,0x30, +0xa3,0x3d,0x0b,0x43,0x14,0xf8,0x23,0x4a,0x19,0x36,0x4a,0x41,0x66,0x93,0x91,0x71, +0x5a,0x07,0x33,0x87,0xe6,0x89,0x1c,0x32,0x58,0x9e,0xa4,0xbd,0x91,0xce,0x84,0xcc, +0x75,0xe1,0xe1,0xe8,0x27,0x4d,0x33,0xc7,0x0a,0x4f,0x01,0x9f,0x2d,0xe8,0x61,0xb7, +0xa3,0x7d,0x73,0xf5,0x88,0x97,0x8c,0x9e,0x6b,0x50,0x57,0x28,0x3d,0x38,0xc8,0xa2, +0xd8,0x83,0x2f,0xaa,0xed,0x05,0xaf,0x5f,0x2a,0x16,0x1d,0xfd,0xbe,0xd8,0x9e,0xd1, +0x61,0xa9,0x58,0x74,0xf8,0xb9,0xad,0x3d,0x63,0x83,0x42,0xf1,0xb4,0x6d,0xaa,0xb7, +0x40,0xda,0x66,0x3c,0xdf,0xe8,0x77,0x68,0xf6,0x8c,0x0d,0x4b,0x71,0x7e,0x17,0xd1, +0x0c,0x5b,0xe3,0xe5,0x60,0x53,0x6f,0xab,0xe6,0x26,0x48,0x3f,0x4c,0x2b,0x18,0xb6, +0x80,0xb1,0x91,0xe6,0x47,0x6a,0x26,0xea,0x52,0xba,0x7f,0xfc,0xf1,0x2a,0x65,0x66, +0x43,0x8a,0x2a,0x64,0x87,0x31,0xe7,0x7c,0xc0,0x1f,0xa3,0x4f,0xeb,0x5d,0x63,0xa8, +0x2a,0xf1,0x80,0xfc,0xa1,0xc1,0xf4,0x1e,0x3b,0x4f,0xd2,0x86,0xa2,0x3e,0x04,0x57, +0xd6,0xfe,0xc1,0x16,0x1d,0x12,0x8f,0x83,0xfe,0x4f,0xc7,0x9c,0x2f,0xc9,0xe3,0x72, +0xdf,0x18,0xb8,0x05,0x76,0xaf,0xf8,0xdc,0x21,0xc6,0x90,0x79,0x46,0xb9,0x90,0xb7, +0xbd,0xa0,0x8d,0xaf,0xd7,0xc2,0x8e,0x02,0xad,0x96,0xc2,0x40,0x7d,0xff,0x77,0xe5, +0xf0,0xe3,0xd8,0x97,0xb6,0x86,0x40,0xb3,0x83,0x30,0xae,0x7f,0xcb,0x6e,0x72,0x8c, +0x3c,0xf8,0xdb,0x31,0x74,0xa8,0x2b,0xcb,0xa9,0x0c,0xde,0x1b,0x0e,0x41,0x23,0xd9, +0xb1,0x25,0x82,0xf6,0xa3,0xd8,0xd8,0x89,0x0e,0x31,0xb8,0x86,0xe9,0x54,0x2e,0x72, +0xd8,0x68,0xc7,0xd2,0x5b,0x78,0xd4,0x28,0x98,0x3f,0x0e,0x94,0x48,0x0d,0xea,0x2e, +0x77,0xd3,0x2b,0x4d,0xdb,0xa7,0xe6,0xc4,0x09,0x27,0xed,0x12,0xa6,0x6a,0x1b,0x7a, +0x43,0x43,0xc2,0x82,0x62,0x7e,0xdd,0xb4,0xc0,0xfc,0x00,0x24,0x6f,0xcb,0x10,0x6a, +0xcc,0xe8,0x40,0x71,0x61,0x16,0xfe,0xcc,0x71,0xbc,0x72,0xcd,0x08,0x78,0x3c,0x35, +0x15,0xf1,0xce,0xb0,0x0c,0x86,0x27,0x56,0x70,0x4f,0xf1,0x3c,0xdf,0xf4,0x63,0xfa, +0x54,0xf1,0xa9,0x68,0x14,0x80,0x86,0x4c,0x52,0xfc,0x30,0xf4,0xec,0x08,0x55,0x3b, +0x31,0x2e,0x0e,0xd6,0x05,0xec,0xa8,0xbf,0x08,0x2e,0x2f,0x3c,0x84,0xa8,0x32,0x3e, +0x61,0x94,0x4f,0x8b,0x8c,0xa9,0x50,0x81,0xdf,0xab,0xc7,0xf4,0xa7,0x66,0x99,0xbf, +0x71,0xe3,0xab,0x4f,0xfa,0xaf,0x7d,0xc1,0xe2,0x66,0xbd,0x8b,0xe7,0x77,0x3e,0xf8, +0x4b,0x14,0xab,0x4f,0x61,0x26,0x20,0x36,0x82,0x57,0x10,0x66,0x03,0x5c,0xbd,0x2b, +0x17,0x7a,0x17,0x3e,0xfb,0xe6,0xda,0x4b,0xbd,0x0b,0x97,0xfd,0x23,0x29,0x77,0xff, +0xf1,0x59,0xef,0x83,0x5f,0xf5,0x5f,0xff,0x4b,0xef,0xe3,0x4b,0x7c,0x05,0xf9,0xbc, +0x3f,0xfe,0x80,0xa6,0x9c,0x7b,0x56,0xab,0x2f,0x74,0x2e,0xad,0x34,0xe6,0x25,0x09, +0x03,0x0d,0x8e,0x03,0x8a,0x74,0x13,0x09,0x0f,0x4a,0xc6,0x57,0x3f,0x3e,0x42,0x5f, +0xe5,0xcc,0xf0,0xac,0x15,0xa7,0xd4,0xc6,0x44,0xb4,0xb6,0x16,0xc5,0xc4,0xf9,0xe8, +0xa1,0x19,0xd4,0x95,0xc8,0x96,0xa9,0x6a,0x48,0xb8,0x14,0x22,0x9b,0x9b,0x37,0xbd, +0xcf,0x25,0xfb,0xe6,0x04,0x87,0x7e,0xc0,0x3e,0xe5,0x06,0xab,0xfb,0x14,0xcd,0xa7, +0x68,0x89,0xd0,0x84,0x3a,0x58,0x24,0x30,0x3e,0xe3,0x18,0xc1,0x91,0xa6,0x74,0x62, +0xa9,0xe2,0x89,0xc7,0xcf,0xc6,0xef,0x65,0x82,0x71,0x49,0x51,0x3a,0xb4,0x68,0x66, +0x4c,0xca,0x01,0x3c,0x44,0x74,0xc0,0x68,0x7f,0xa2,0x0f,0x80,0xa3,0xb6,0x39,0x09, +0x2c,0xf3,0x08,0x10,0x67,0xac,0x13,0xdf,0x54,0x8f,0xc0,0x04,0xc6,0x3b,0xf1,0x4d, +0xf7,0x28,0x1a,0x8e,0x34,0x7f,0x02,0x0d,0x60,0xc0,0xf9,0x81,0x7a,0x7e,0xc8,0xcc, +0xfb,0x80,0x83,0xa1,0x43,0x40,0x5c,0x1b,0xdf,0x2d,0xe1,0x3e,0xcd,0x0c,0xc2,0xeb, +0x9d,0x08,0xa8,0xde,0x89,0x81,0xa2,0x47,0x64,0x84,0xe1,0xf0,0x51,0x0c,0xa4,0x77, +0x5e,0x45,0x18,0xd8,0x7d,0x1a,0x86,0x77,0x8f,0x8e,0x08,0x43,0x76,0x3b,0x74,0xca, +0xe7,0x8d,0xc7,0x38,0x7d,0xeb,0xab,0xa5,0x04,0x75,0x1b,0x8e,0xe3,0xe6,0x3a,0x5d, +0xbb,0x99,0x7e,0x9a,0xc5,0x72,0x0f,0x3c,0xc7,0xeb,0xb4,0xed,0xa7,0x23,0x91,0x9c, +0xb8,0x92,0x6e,0x14,0x38,0x12,0xff,0xc7,0x33,0x1c,0x5e,0xfb,0xd0,0x9f,0xcf,0x62, +0x0b,0xde,0x3c,0x73,0x1e,0xc1,0xe8,0x8a,0xc6,0x48,0x48,0xff,0x20,0x88,0x91,0x90, +0x3b,0xd7,0x3f,0x19,0x07,0xa7,0x4b,0x36,0x5b,0x42,0x18,0x87,0xce,0xeb,0xaf,0xe0, +0x0a,0x54,0xd8,0x93,0x48,0x3d,0x1c,0x73,0x6a,0x52,0x0a,0x0c,0xff,0x4e,0x07,0xcc, +0xac,0x34,0x07,0x38,0x67,0xe8,0x0b,0x29,0xce,0xb7,0x0f,0x7c,0x83,0x54,0xf8,0x90, +0xc4,0x30,0x10,0x06,0xf9,0x53,0xde,0xa9,0x89,0xa9,0x2c,0x01,0xd7,0x82,0x7b,0x4d, +0xa7,0x6d,0xa1,0xff,0xd6,0x47,0xee,0x8a,0x97,0xfb,0xce,0x0f,0x87,0xa3,0x70,0x18, +0x9a,0xc3,0x0b,0x47,0xa4,0x85,0x71,0x12,0x82,0xcd,0x8a,0x9c,0xfd,0xbf,0x9f,0x4d, +0x7a,0xfa,0xc0,0x73,0x3a,0x48,0x5a,0x3c,0x88,0x77,0xa8,0x25,0xc2,0xad,0x29,0xa0, +0x3c,0x9f,0x1e,0x68,0x7f,0xb8,0x45,0x38,0xed,0xb9,0x01,0x10,0x6a,0x1a,0xb1,0x6e, +0x4e,0x65,0x53,0x8c,0x45,0xa9,0x4c,0x84,0x47,0xdf,0x42,0x1f,0xea,0xa3,0x9b,0x10, +0x22,0x12,0x06,0x1f,0x3b,0x9b,0x8e,0x99,0x2e,0x39,0xbd,0x8d,0xc6,0x62,0x2e,0x7c, +0x5e,0x1d,0x93,0x4b,0x4b,0x03,0x6d,0x68,0x37,0xb9,0x13,0xac,0x6c,0x4f,0x79,0x40, +0x23,0x17,0x71,0x72,0xa1,0xb1,0x7b,0x30,0x86,0xf9,0x63,0xcb,0x43,0x2b,0x06,0x11, +0xbf,0x3f,0x0e,0xa5,0xbb,0x13,0x32,0x03,0x02,0x83,0xba,0xc7,0x59,0xad,0xa3,0x9a, +0x02,0x21,0x7b,0xfa,0x9f,0xbe,0x37,0xe7,0x34,0x35,0x85,0x1d,0x73,0x13,0x1c,0xaa, +0x33,0xe4,0x50,0xea,0xe0,0x00,0xea,0xde,0xb9,0x0f,0xc3,0xe7,0x4a,0xc7,0x1c,0x36, +0xed,0x9f,0x93,0x83,0x4f,0x82,0x7a,0x56,0x4d,0x15,0x0f,0xcb,0x7b,0x9a,0x36,0x80, +0xba,0x21,0x6d,0x67,0xbe,0x00,0x77,0x71,0xfa,0xd1,0xa5,0x3e,0x46,0xf6,0x69,0x14, +0xc4,0xdc,0x7c,0x0c,0xe7,0x9c,0xa7,0x19,0x63,0x45,0x2a,0x9d,0xb3,0xde,0x5b,0x7a, +0xa0,0x21,0xbc,0x3d,0xbc,0xfa,0x0c,0x76,0xc5,0x71,0x6d,0xcb,0xe7,0x06,0x76,0x1b, +0xcc,0xcd,0x3e,0x68,0x30,0x84,0x02,0x78,0x7a,0x78,0x45,0x6c,0x09,0xb0,0x61,0x82, +0x02,0xf0,0xf0,0xa1,0x79,0x18,0xea,0x94,0x28,0x68,0xca,0xd4,0x94,0x8f,0x95,0x62, +0xc0,0x89,0x1e,0x90,0xa6,0x75,0x70,0x7b,0x1e,0x0f,0x97,0xcb,0x90,0xe7,0x9f,0x27, +0xa1,0x27,0xd0,0xe2,0xc2,0xe0,0xc3,0x85,0xf9,0x78,0x55,0x80,0x51,0xc1,0x94,0xaf, +0x51,0x52,0x64,0x26,0x02,0x76,0x2c,0x84,0x86,0xd1,0xee,0xf5,0xff,0x14,0x15,0x80, +0xe8,0x71,0x4a,0x78,0x78,0xd2,0x81,0xe7,0x18,0xe3,0x16,0x88,0x84,0xf8,0x77,0xbf, +0xfa,0xdd,0xce,0xd5,0x8f,0x11,0x79,0x2a,0xb5,0xbd,0xf3,0xf6,0xc7,0x20,0x1a,0x2e, +0xc4,0x76,0xff,0xcf,0xef,0x86,0x8e,0x49,0x62,0xa5,0xfd,0x56,0x6f,0x0f,0xbc,0x9c, +0x53,0x08,0x3d,0x34,0x27,0x15,0xe4,0x2b,0xcc,0xa8,0xd0,0x75,0x8e,0xc6,0x9f,0xe3, +0xe6,0xa1,0xcf,0x16,0x32,0xb3,0xa9,0xf8,0x4f,0x1d,0xfa,0xa2,0xf5,0xb4,0x37,0xea, +0xa2,0xbd,0x22,0xc5,0xf6,0xca,0x38,0xfd,0x22,0x0d,0xf4,0x8b,0x14,0xd7,0x2f,0xd2, +0x64,0xfa,0x45,0xa2,0xfd,0x32,0x5e,0xcf,0xb0,0xc3,0x99,0x3c,0xf6,0xec,0x7c,0xf0, +0xea,0xbe,0x72,0x5f,0xda,0x03,0xf7,0xff,0xe9,0x7b,0xf0,0x83,0x6e,0x49,0x03,0x9d, +0x22,0x18,0xbd,0x11,0x57,0x84,0x6b,0x9b,0x80,0xad,0xc2,0x53,0xb7,0x1a,0xa6,0x81, +0xc7,0x18,0xcd,0xa7,0xca,0xa9,0x85,0xfe,0xff,0xbe,0xdb,0x7f,0xeb,0xac,0xef,0x32, +0x31,0xf5,0xe3,0xeb,0x18,0x75,0x81,0xd6,0xc8,0x3b,0x41,0x9c,0x73,0xe1,0x21,0x9f, +0x9a,0x17,0x7e,0xca,0x27,0xf6,0x30,0x45,0x83,0x85,0x92,0xc3,0x22,0xb1,0x67,0xfe, +0x67,0x40,0x6b,0xb7,0x35,0x6b,0xe9,0xc8,0xa1,0x65,0x10,0x10,0x17,0x3b,0xa0,0x49, +0x5a,0xf1,0x7d,0xc4,0x6c,0xa5,0x39,0xe3,0xcb,0x8f,0x53,0xe7,0x62,0x22,0x26,0xe8, +0x70,0xb1,0xf3,0x56,0xb9,0xb8,0x46,0xb0,0xac,0x0c,0x32,0x2c,0xe0,0x1c,0xee,0x16, +0x13,0x15,0xc3,0x10,0x90,0x9f,0x74,0xcd,0x42,0x57,0x9f,0x7f,0x3e,0xf4,0xb6,0x81, +0x59,0x16,0xa2,0x81,0x59,0x16,0x21,0x18,0xef,0xcb,0x20,0xc1,0xc3,0x8c,0x8b,0x3f, +0x94,0xd8,0xb0,0x1d,0x8a,0x5f,0xb0,0x80,0x08,0xf8,0x54,0xcc,0xa9,0x8d,0x35,0x5a, +0x8b,0x4c,0x29,0xfb,0x7e,0x6b,0x62,0x8c,0x80,0xc3,0x06,0x5d,0x9e,0x8e,0x75,0x74, +0xbf,0x0f,0x2e,0x6b,0x16,0xd7,0x90,0x84,0x02,0x1f,0x4c,0xf1,0xa9,0xf2,0x17,0x51, +0x85,0xbc,0xed,0x65,0xba,0x24,0x44,0x82,0xb6,0xb3,0x5c,0x8d,0xbc,0xeb,0xc4,0xe1, +0x30,0x68,0xfe,0x4b,0x32,0x82,0x80,0x46,0x29,0x4c,0x23,0x23,0x91,0x33,0x26,0xb9, +0xd5,0x7a,0xec,0x65,0xdc,0xbe,0x2b,0xba,0xe1,0x09,0xb4,0xc8,0x13,0x3a,0x99,0x04, +0xbd,0x9c,0xcf,0x93,0xdd,0x97,0x3f,0xeb,0x5d,0xf8,0x4d,0xef,0xfa,0xaf,0x7b,0x67, +0xcf,0xb3,0x73,0xd6,0xfa,0x67,0x4f,0xe1,0xb1,0x53,0x6f,0xfc,0x82,0x18,0x3a,0xe9, +0xbd,0xf0,0xf3,0x9d,0xbf,0xbf,0x13,0x68,0xac,0x03,0x86,0xce,0xa5,0x93,0x34,0x0c, +0xd3,0xc6,0x35,0x25,0x21,0x12,0x4b,0x12,0xf8,0x85,0x8e,0x50,0x15,0x3b,0x7f,0xff, +0x7d,0xef,0xda,0xeb,0xfc,0x12,0x8e,0xaa,0x9d,0xa0,0x18,0x63,0xe9,0xa7,0xaf,0x59, +0x65,0x83,0x18,0x69,0x84,0x85,0xb0,0x80,0x49,0xef,0xd5,0x97,0x08,0x1f,0x99,0x89, +0x21,0x9c,0xe6,0xed,0x60,0x03,0x72,0x6b,0x00,0xe2,0x27,0xd0,0x70,0xea,0xf8,0x80, +0x4f,0x4d,0x00,0xc4,0x23,0x0d,0x37,0xab,0xf7,0xf2,0xdb,0x7c,0xb0,0x86,0xce,0xde, +0x86,0xfa,0x38,0x0b,0x01,0xd0,0xea,0x98,0x9d,0x96,0xc9,0x39,0x96,0xce,0x06,0x66, +0x50,0xf6,0xda,0x17,0x3b,0x1f,0x5d,0xda,0xb9,0xf6,0x9b,0xdd,0x2f,0x5f,0xe1,0xd2, +0x5f,0xb4,0x4d,0xb7,0x78,0xc7,0x82,0x21,0x0e,0x7c,0xdd,0xbd,0xfc,0xd9,0xee,0x97, +0xbf,0xee,0xbd,0xf0,0x3e,0x78,0x32,0x78,0x0e,0x2c,0x17,0x22,0x82,0x1e,0x75,0xab, +0xf3,0x9a,0x80,0x6a,0xcf,0x43,0xf1,0xcf,0xff,0xec,0x61,0x73,0x6b,0x27,0x0f,0x61, +0x68,0x46,0xe0,0x07,0x78,0x18,0x00,0x78,0xdd,0x30,0xba,0x2a,0x18,0x1a,0x02,0x11, +0x32,0xde,0x38,0xe5,0xb2,0x3a,0x58,0xb5,0x37,0x3e,0x3f,0xbf,0xfb,0xf3,0xeb,0xbd, +0x97,0x5e,0xe8,0x5d,0xfc,0xd3,0xce,0x1f,0xaf,0xf4,0xdf,0xb9,0xe6,0xb3,0x30,0x6e, +0x4c,0x0f,0x56,0xc3,0x46,0xea,0x82,0x54,0xf1,0xaa,0x48,0xaa,0x63,0xf7,0xd3,0x17, +0x76,0xbf,0x3a,0x23,0x55,0x6e,0x7c,0xfe,0x51,0xef,0xe3,0x4b,0x43,0x6b,0x21,0x3c, +0xbf,0xc3,0xf5,0xf1,0x79,0x2f,0xa4,0x77,0xe1,0xf2,0xcd,0x53,0x67,0xbf,0xb9,0xf6, +0x46,0xff,0xcd,0xbf,0x03,0x47,0x59,0x94,0xcc,0x47,0x41,0xfb,0xd8,0x75,0x8f,0x38, +0x3d,0x30,0x30,0xfc,0x69,0xf8,0x75,0xe8,0x10,0xa6,0x98,0xa6,0x52,0x24,0x35,0x15, +0x25,0x86,0x12,0x1c,0x8c,0x5b,0x5f,0xec,0x59,0x54,0x74,0xcc,0x61,0xcb,0x6c,0x4a, +0x3c,0x7e,0x65,0x3e,0x21,0x36,0x3b,0x3b,0x9e,0x94,0x52,0xe8,0x89,0x4b,0x29,0x58, +0x1b,0xbd,0xf7,0xce,0x3c,0x90,0xd2,0x41,0x29,0xe5,0xf8,0x3d,0x28,0xa5,0x31,0xf2, +0x16,0xc4,0xca,0x87,0x8a,0xdb,0x08,0x21,0x4b,0x5e,0x8d,0x89,0xce,0xf0,0x74,0xf1, +0x91,0x5a,0x5f,0xcb,0x98,0x37,0x06,0xb6,0xc7,0x30,0x1b,0x61,0x70,0x64,0x80,0xf3, +0x3c,0xe6,0xd4,0x26,0x27,0x4c,0x6d,0xdb,0x3c,0x27,0xc6,0xa6,0x9d,0xb3,0x3f,0x6e, +0xbd,0x09,0x0d,0x2f,0x75,0x74,0xcc,0x26,0x14,0x46,0x37,0xc1,0x5f,0x2a,0x0b,0x2d, +0x9f,0xb1,0xe4,0x4a,0x7e,0xf9,0x0c,0x83,0x77,0x34,0xae,0x0a,0xee,0xa3,0x37,0xfc, +0x69,0x30,0x36,0x9e,0x68,0x96,0x90,0xa8,0x6f,0xd4,0x59,0x88,0x97,0x69,0x81,0x87, +0x83,0x07,0x41,0xcc,0x37,0xb4,0x32,0xe4,0xd5,0x50,0xc7,0x95,0x63,0x2c,0x42,0x4d, +0xc1,0x63,0xf4,0x48,0xb1,0x94,0xf7,0x32,0xf5,0xd4,0x90,0x82,0x6e,0x7c,0x3b,0x4c, +0x6e,0x14,0x9a,0xa3,0xc1,0x85,0x4d,0xa4,0x0a,0x75,0x01,0x47,0x15,0xf3,0x74,0xe9, +0x1a,0x42,0x21,0xbc,0x86,0x10,0xb4,0x2d,0xc7,0x8e,0xac,0xc7,0xac,0x15,0x8c,0xec, +0x70,0x26,0x16,0x57,0xcb,0xb8,0xa1,0x6e,0x5e,0xcd,0x0f,0x86,0xd9,0xe3,0x2a,0xc5, +0xaf,0xa4,0xdc,0x5e,0x9d,0x21,0x66,0xb2,0x16,0x0f,0xae,0xc6,0x86,0x0c,0xbb,0x50, +0xac,0x3f,0x41,0x36,0xf8,0xdc,0x8a,0x58,0x49,0x48,0xe2,0x9b,0x07,0x1f,0xea,0xcf, +0xd8,0xf6,0x6e,0x07,0xd1,0xaf,0x98,0x95,0x91,0xdb,0xa7,0x2b,0xc4,0xda,0x11,0x64, +0xf1,0x6d,0xe0,0x98,0xe5,0x0f,0x5b,0x2f,0x0f,0x22,0xe8,0x4e,0x6e,0xa0,0x23,0xce, +0x3c,0xbe,0x4f,0x1e,0xe8,0x4c,0x34,0x2d,0x26,0x8b,0x87,0xff,0x2d,0xba,0xa0,0xe5, +0x2e,0xaf,0xdb,0x2c,0x20,0x86,0x8b,0xeb,0x78,0x2e,0x17,0x60,0x84,0x7a,0xbb,0x86, +0x93,0x25,0x52,0xa1,0x50,0x08,0xe5,0x86,0xc6,0x2c,0x66,0x05,0x13,0x0a,0xbf,0x4e, +0xcc,0xcd,0x16,0xdb,0x03,0xbe,0x9c,0x4f,0x6d,0xa8,0xba,0x68,0x33,0xd9,0xa2,0xf5, +0x5e,0x5a,0xf9,0x10,0xb4,0xf2,0xf1,0xc3,0x42,0xcc,0xea,0xea,0xf0,0xa1,0x8f,0xe2, +0x9b,0x8e,0xae,0x81,0xa6,0x1f,0x0a,0x15,0x1a,0x58,0x0b,0x8c,0xa2,0x4c,0xca,0xf0, +0x1a,0xf4,0xaf,0xf7,0xa6,0xc5,0x62,0x88,0x63,0x09,0x4b,0x4e,0x74,0x95,0x3e,0x36, +0xb1,0x17,0x14,0xf5,0x91,0xc3,0x8f,0x1c,0x9e,0x21,0x3f,0xd4,0x4f,0x50,0xef,0x95, +0xe0,0x59,0x27,0x56,0xa4,0xad,0x21,0x6a,0x62,0x14,0x97,0x57,0xab,0x1b,0xea,0x14, +0x82,0xcf,0x1c,0x45,0xa3,0xbf,0xc1,0x67,0x8e,0x52,0x85,0x54,0xfc,0xc7,0x99,0x0e, +0x29,0xed,0xae,0x62,0xd0,0x6f,0x1f,0x09,0x63,0xac,0x95,0xde,0x42,0xbd,0x43,0xaa, +0xe0,0x6f,0xe2,0x02,0xa4,0xc0,0xd7,0x1c,0x8e,0x6a,0x7b,0xc8,0x7a,0x7d,0x98,0x65, +0xac,0xff,0xe7,0x83,0x92,0x18,0xda,0x8c,0x16,0x20,0x24,0x88,0xd7,0x8c,0xd3,0x06, +0xcc,0xa5,0x9a,0xc2,0x54,0xaa,0x04,0x1e,0x0a,0x53,0x7c,0x75,0x53,0x42,0x4c,0x53, +0x93,0xf8,0x79,0xeb,0xa4,0x8c,0x59,0x6b,0x22,0xbf,0xbd,0x24,0xbd,0x50,0x3c,0xc8, +0x0d,0x06,0x05,0x50,0xe3,0xc5,0xfb,0x03,0x78,0x3e,0x21,0x08,0xf0,0x0d,0x2a,0x35, +0xa6,0x45,0xb3,0x98,0xde,0x1c,0x56,0x67,0x03,0x1b,0x53,0x42,0xf4,0xee,0x51,0x3b, +0x6e,0xc7,0x85,0xac,0x58,0x72,0x14,0x3b,0xd3,0x73,0x64,0xb0,0x2a,0x92,0xf0,0xe9, +0xaa,0x29,0x2e,0x2d,0x2d,0xa2,0x0a,0x42,0xa9,0xa0,0x3c,0x34,0xcb,0x3a,0x4b,0x82, +0x66,0x2b,0xcf,0xe1,0x9c,0xb2,0x44,0xcc,0x9b,0x6a,0x08,0x31,0xa6,0x8c,0xc5,0xc0, +0x82,0x06,0x52,0x5a,0x18,0xea,0x0f,0x88,0x9f,0x22,0x02,0xdd,0x36,0x11,0x10,0x18, +0x7a,0x82,0x44,0x84,0x41,0xb8,0xa5,0x6d,0x6e,0x92,0xc3,0x77,0xf9,0x86,0xb7,0xc3, +0x2d,0x71,0x02,0x88,0x9f,0x84,0xc0,0xce,0x65,0x94,0x65,0x66,0x63,0x0d,0x12,0x7f, +0x09,0x7d,0x6f,0x3d,0xe4,0xa6,0x56,0xf3,0x8c,0x61,0xe9,0x6f,0x11,0xce,0x80,0xe4, +0x3c,0xe9,0xaf,0xc8,0xa7,0xdd,0x52,0x99,0x98,0xf5,0xa6,0x7c,0xfe,0x47,0x5d,0x93, +0xcd,0x1c,0xe4,0x90,0x62,0x1d,0xb7,0xa3,0xbb,0xb9,0xd8,0x6e,0x9c,0x1f,0x1d,0x4a, +0xdb,0x8e,0x15,0xd9,0xc7,0x05,0x4f,0xe8,0xec,0x1e,0x3a,0x45,0xf3,0xf9,0xe7,0x09, +0x3c,0x67,0x61,0xa7,0xc3,0x6b,0x69,0x21,0x05,0xda,0x7c,0x01,0x54,0xdc,0x10,0x18, +0x9c,0x2d,0x46,0xc2,0x90,0x64,0x18,0xa6,0x2d,0xc9,0x02,0x29,0x86,0x53,0x39,0xdd, +0x54,0xe9,0x90,0x55,0xb4,0x1d,0xcd,0xa3,0xe6,0xcd,0x20,0x3e,0x2b,0xf7,0xd9,0x56, +0x1d,0xf7,0x27,0xa1,0xe6,0x5f,0x31,0x2d,0x6b,0x0b,0xfc,0x16,0xa5,0x9d,0x72,0x08, +0x7e,0x33,0x20,0x45,0x40,0x7b,0xff,0x54,0xc0,0x5f,0xfa,0xf9,0x02,0xbc,0xd0,0xc0, +0x8f,0xdf,0xca,0xfd,0xb4,0xfd,0xd3,0xf6,0x41,0xc3,0x36,0xb3,0xc4,0x25,0x6a,0x6e, +0x1e,0xa8,0xca,0x09,0x01,0x5e,0x43,0x8b,0xe2,0xf5,0x20,0x49,0x15,0xe1,0xa2,0xee, +0xcc,0x9e,0xc6,0x2f,0x4d,0xc3,0x89,0xb7,0x2e,0x3b,0x96,0xd9,0x49,0x0b,0xae,0xbb, +0x25,0xe0,0xb2,0x86,0x04,0xee,0x56,0x21,0x9c,0xf8,0x96,0xe0,0x70,0xc4,0x0e,0x3b, +0xdb,0xde,0x8c,0x00,0x07,0xc9,0xb1,0x91,0x02,0xf9,0x3c,0x8a,0x0b,0x27,0x4a,0x98, +0x15,0x83,0xbd,0x17,0x3c,0x62,0xf8,0x32,0x19,0x7e,0x8b,0x2a,0x21,0x8a,0xa1,0x59, +0x4e,0xda,0xed,0x8a,0x50,0x1c,0x2a,0xaa,0x3e,0xf3,0xf9,0x6d,0x5e,0x34,0x19,0xba, +0x5c,0xc0,0xda,0x90,0x60,0x30,0xb4,0x6e,0x4f,0x8c,0xb3,0x59,0x30,0xac,0x68,0x90, +0xcb,0x9e,0x02,0xd1,0xda,0x0d,0xb8,0xfd,0xf1,0x93,0x8f,0x2d,0x7a,0x2b,0x0a,0x6e, +0xeb,0x86,0x00,0xb8,0x6d,0x9d,0x4d,0x32,0xac,0x27,0xab,0x73,0x42,0x1e,0x73,0xc8, +0x8b,0xee,0xbd,0xf9,0xe5,0xee,0xbb,0x1f,0x0e,0x64,0xd0,0x3b,0x75,0x6f,0xa7,0x1e, +0xa8,0x11,0x4b,0xd7,0xec,0x19,0x72,0x8c,0x1c,0x7b,0x8a,0x3c,0xe5,0x6f,0xd9,0x70, +0xc1,0x68,0xd6,0x37,0xe6,0xe3,0x69,0x9b,0xb8,0xeb,0xd3,0x72,0x74,0xdb,0xc9,0x2d, +0xeb,0x6d,0x2d,0x9d,0xca,0x79,0x29,0xf6,0xa9,0xac,0x87,0x30,0x4b,0x9e,0xc3,0x6c, +0xf4,0x83,0x96,0xa6,0xcc,0xd0,0x31,0x99,0x25,0xca,0x09,0xdd,0xfe,0x8f,0x19,0xf2, +0x5c,0xc7,0xb4,0x75,0x6c,0xe7,0x0c,0x49,0x01,0x81,0xa9,0xed,0x6d,0x3e,0xa4,0xdc, +0xc1,0x1d,0xaf,0x60,0x1c,0x9e,0xa0,0x86,0x52,0x34,0xd3,0x7f,0x13,0xba,0x37,0xfc, +0xbc,0x33,0x2c,0x79,0xb6,0x13,0x8a,0x56,0x6f,0x0e,0x03,0xdd,0x0c,0x83,0xd6,0x87, +0xe6,0xf7,0xc3,0xeb,0x08,0xf8,0xd6,0x70,0xf0,0x2d,0x61,0xa0,0x8d,0x38,0xd5,0x5b, +0x8f,0xa9,0xb3,0x71,0xae,0x0a,0xdd,0xf6,0xfb,0x24,0xa8,0x71,0x4b,0x4d,0x70,0xc9, +0x28,0x8a,0x61,0x32,0x83,0xae,0x18,0x89,0xb5,0xd4,0x23,0x7b,0x58,0x29,0xa6,0xe4, +0x34,0x5c,0x12,0xea,0x11,0x7a,0x9d,0xc3,0xeb,0x29,0x22,0x85,0x02,0x4f,0x88,0x0a, +0x21,0x62,0xf7,0x06,0x10,0x91,0x7b,0x6e,0xae,0xad,0xc1,0x7c,0x35,0xf8,0x9c,0xc1, +0x2f,0x6b,0x6b,0x4e,0x08,0x31,0xab,0x92,0xfe,0xda,0x39,0xb0,0xa3,0x1f,0xc5,0xed, +0xbb,0x1a,0x63,0x2f,0x99,0x5f,0x18,0xf4,0xc0,0x1a,0x5d,0xcb,0xaa,0xa3,0x58,0xb8, +0x40,0x79,0xa9,0x10,0xb2,0xc4,0x3a,0x21,0xa3,0x90,0x41,0xe7,0x1c,0x13,0xbc,0x16, +0x4d,0x4d,0xcb,0x83,0xfe,0x8f,0x41,0x1d,0x68,0x57,0xac,0x73,0x6c,0x8c,0xd0,0xec, +0x40,0x4c,0x5b,0x62,0xc5,0x63,0xb2,0x5a,0x71,0xab,0x05,0xb3,0xdb,0x60,0x60,0xe1, +0x5e,0xb3,0x53,0xbd,0xf7,0xde,0xc0,0xfb,0xfe,0x7f,0xe3,0x77,0x25,0xfb,0xe7,0x3f, +0x09,0xdb,0xb2,0x83,0xf8,0xed,0xa6,0xbe,0xe6,0x0c,0xc9,0xcc,0xe4,0xdf,0x04,0xa3, +0x63,0x6a,0x3e,0xcc,0x31,0xd7,0xb7,0x88,0x64,0x3a,0xba,0xc3,0x15,0x54,0xf7,0x26, +0xf6,0x43,0x3a,0x28,0xff,0x2f,0x40,0x74,0x08,0xb3,0x3b,0xf0,0x73,0xdd,0x0e,0xee, +0xdc,0x49,0xbb,0x74,0x86,0xb2,0x1c,0x51,0x03,0x0f,0xd6,0x89,0x4e,0x72,0x01,0x23, +0xd6,0x27,0x40,0x23,0x4b,0x85,0xe8,0xc2,0xf2,0x1e,0xf7,0x95,0xc4,0x70,0x60,0x30, +0x83,0x8f,0x51,0x11,0x93,0xc0,0xe7,0x0d,0xd3,0x0d,0xcc,0x1b,0xa0,0x47,0x0f,0xfe, +0x8b,0xc7,0xa6,0x7a,0xc3,0xec,0xb6,0x9d,0x0c,0xc9,0xd3,0xde,0x82,0x3f,0xc5,0x0a, +0xfc,0xe5,0x6a,0xdc,0x0c,0xc9,0x0b,0xe0,0xf0,0x85,0xa5,0x18,0x1d,0x4b,0xf0,0x92, +0x2a,0x0e,0xaf,0x8a,0x74,0xa8,0x0e,0x90,0xf6,0xd0,0x7d,0x5d,0x02,0x56,0x6e,0xd5, +0x95,0x75,0x33,0x33,0xac,0x7a,0x17,0x27,0xfb,0x8b,0xd9,0x0c,0xdf,0x87,0xff,0x66, +0xd8,0x7d,0x08,0xce,0x89,0x12,0x0a,0x4f,0x86,0x92,0xba,0x95,0x48,0x6a,0x40,0xda, +0x00,0xd1,0x32,0xbe,0xb1,0xc7,0xa1,0x7a,0xcb,0xa5,0x62,0x2b,0x42,0xf5,0x56,0x08, +0x6e,0x6b,0x80,0xea,0xad,0x78,0xaa,0x03,0x31,0xa3,0x81,0xe7,0x3a,0x46,0xaf,0xeb, +0x5a,0x1b,0x13,0x9b,0xd5,0xc1,0x6c,0xe4,0xc1,0xdc,0xe7,0xc2,0x64,0x52,0xa8,0x0b, +0xe3,0x27,0x50,0x07,0x14,0x03,0x89,0x7b,0x21,0x55,0x9a,0x0c,0xa9,0xd2,0xde,0x72, +0xbd,0xa3,0x6c,0x76,0xf0,0x08,0x89,0xba,0x8b,0x12,0xa6,0x98,0x31,0x08,0x97,0x27, +0x43,0xb8,0xbc,0x37,0xc2,0x07,0xb6,0x8a,0x30,0xfa,0x87,0xec,0x14,0x09,0xef,0x15, +0xe1,0xc1,0x13,0xb7,0x8a,0xec,0xdb,0x66,0x91,0xe1,0xdb,0x45,0x18,0x6d,0x71,0xbb, +0x45,0x06,0xf6,0x8b,0x44,0x41,0x39,0xc8,0x5b,0xde,0x30,0x72,0xeb,0x5b,0x1d,0x1e, +0x6c,0x35,0x99,0xc4,0x56,0x93,0x7b,0x71,0xc3,0x08,0x67,0xb7,0xb9,0x46,0xee,0x7c, +0x42,0x8c,0x8b,0xb3,0x73,0xb3,0xa4,0x18,0x0e,0x72,0x65,0x03,0xc3,0x13,0x34,0xd1, +0x8a,0x63,0xe9,0xed,0xf5,0x20,0x3b,0x61,0x7b,0xf4,0x81,0x1f,0x7e,0xbb,0xa2,0x06, +0xb5,0xef,0x2e,0x45,0x3c,0xa3,0xb0,0xb7,0xc4,0x9d,0x54,0x14,0x5d,0x79,0xa4,0x59, +0x5a,0x9b,0x9a,0x76,0x5c,0xa5,0xdb,0x0c,0x46,0xae,0x3e,0x62,0x27,0x46,0xe2,0xee, +0x3c,0x0a,0x77,0x05,0xd1,0x5d,0xcc,0x7b,0x68,0x30,0x26,0xee,0xd7,0xc9,0xf6,0x4e, +0x27,0x2f,0x02,0xc5,0xef,0x7c,0x49,0x2a,0x1a,0x5e,0xd7,0xda,0x8e,0x38,0x91,0xbc, +0x3f,0xc2,0x65,0x31,0xc7,0xad,0x9c,0x38,0xec,0x84,0xa7,0x44,0x5f,0x24,0x9c,0xbd, +0x1c,0xca,0xf5,0x63,0xe9,0xc5,0x98,0x58,0xf8,0x53,0x5e,0xa0,0x68,0x4e,0xb2,0xf7, +0x11,0xd0,0x66,0xcc,0x3b,0x3a,0x1e,0xe3,0xdf,0xb1,0x63,0x72,0x12,0xde,0x7d,0xf9, +0xd1,0xce,0xcb,0x97,0x13,0x70,0x06,0x39,0xd0,0xe1,0x6c,0x44,0x6b,0xc1,0x4b,0x83, +0x0e,0x51,0xee,0x27,0x29,0xfa,0x16,0xad,0xd9,0xb6,0x4d,0x43,0xcb,0x19,0xe6,0x7a, +0xc4,0x85,0xa2,0x0c,0x00,0x26,0xd9,0xc3,0xfc,0x2c,0x94,0x12,0x0a,0xe4,0xd9,0xcf, +0xb7,0x9c,0x8d,0xc9,0xcb,0xee,0xc8,0x24,0xcc,0xb8,0xa9,0x81,0x27,0x23,0x6e,0x56, +0xe0,0xc9,0x88,0xf0,0x31,0xd2,0x91,0x2c,0x7f,0x15,0x23,0x23,0x14,0x27,0xce,0x21, +0x1d,0x8b,0x7d,0xa5,0x1e,0x63,0x26,0x94,0xba,0x84,0x02,0x91,0xcc,0x5b,0xbf,0xbc, +0x9f,0x82,0x3b,0x62,0x0b,0xc2,0x28,0xfc,0xe9,0xf4,0x20,0xca,0xf9,0x79,0x49,0x7a, +0xfe,0xf9,0xc1,0xe7,0x73,0xd5,0xcc,0xf7,0x39,0x70,0x66,0x0b,0x7d,0x5f,0x00,0x51, +0x13,0x66,0xf0,0xf0,0x2f,0x21,0x33,0x23,0x88,0xc2,0xc8,0x2a,0xd7,0x35,0x67,0xd9, +0x34,0x3b,0x38,0x83,0x05,0xd8,0x5c,0x2d,0x30,0xb4,0x70,0x5c,0x02,0xf0,0x23,0x9a, +0x11,0x8c,0xcb,0x10,0x87,0x69,0x1a,0xb0,0xa3,0xb4,0x3a,0x88,0x32,0x26,0x17,0x38, +0xdc,0x65,0x43,0x64,0x63,0x64,0x7e,0xee,0xc8,0xa4,0x13,0x24,0x45,0xad,0x53,0x0d, +0x34,0x24,0x3f,0x77,0xc4,0x69,0x3f,0x3c,0xdb,0x74,0x4f,0xaf,0xb3,0x79,0x2a,0xb8, +0x6f,0x28,0xa0,0xf9,0x0a,0x33,0x7c,0x36,0x11,0x49,0xdd,0xf8,0xfc,0x3c,0x1b,0xf2, +0xa9,0x59,0x0e,0x4a,0x8a,0x40,0xf5,0x2f,0x5f,0xe8,0xbd,0xf2,0xe1,0x8d,0xcf,0x4f, +0x85,0xa0,0xe4,0x78,0xa8,0x2b,0x2f,0x85,0xa0,0x8a,0x09,0xb8,0xce,0x86,0xa0,0x4a, +0xb1,0x50,0xbd,0x37,0xdf,0x0c,0x41,0x95,0x13,0x6a,0x7c,0x2d,0x04,0x55,0x89,0xc7, +0xf5,0xc2,0xc7,0x21,0xa8,0xe9,0x58,0xa8,0xfe,0xa5,0xf7,0x53,0xbc,0xc6,0x42,0xc8, +0x6a,0x0c,0xe4,0x7b,0x7f,0x4c,0x85,0xfb,0x22,0x14,0x2c,0xf7,0x27,0x94,0x61,0x41, +0x2f,0x6e,0xd6,0x99,0x8d,0x14,0xa5,0xa3,0x7f,0x54,0x51,0xe6,0xd7,0xfb,0x11,0x4d, +0x1f,0x9d,0x97,0xf3,0x42,0x04,0xfa,0x21,0x5c,0xfc,0x26,0x84,0x6f,0x79,0xba,0x60, +0x58,0x34,0x00,0x93,0x0a,0x33,0x78,0x68,0x51,0xc1,0x03,0x1a,0xc4,0x34,0xf2,0x18, +0x12,0xbe,0x64,0x08,0x79,0x6c,0x49,0xef,0xf8,0x24,0x61,0x60,0x2a,0x3d,0xa8,0xaa, +0xb1,0x53,0xa9,0x7b,0x5e,0x1a,0x8e,0x89,0x30,0x71,0xa1,0x20,0x3c,0xd4,0xec,0x41, +0x04,0x44,0x84,0x20,0x58,0x90,0x6e,0x38,0x5f,0xed,0xe3,0x0e,0xda,0x54,0x2c,0x6a, +0x1f,0x29,0x4f,0x50,0xb3,0x8d,0x28,0xcf,0xb6,0xf5,0x32,0x3f,0x20,0x9c,0xf4,0x74, +0x3c,0x26,0xbf,0x20,0xd1,0xce,0xe1,0x82,0x33,0x18,0x4f,0xf2,0x44,0x42,0xa1,0xab, +0x77,0x47,0xa8,0x3a,0xd3,0x5b,0xd4,0x6a,0x0e,0x3a,0xe2,0xc8,0xd2,0x12,0xe3,0x6c, +0x28,0x50,0xef,0x4d,0x27,0xf3,0xec,0x48,0x23,0xcb,0xec,0xb6,0xd5,0xa0,0x5f,0x3c, +0xe4,0x5e,0xac,0x82,0x5f,0x56,0xe0,0x8a,0x72,0x93,0x12,0x9d,0x9b,0x1f,0xc3,0xc8, +0xbe,0xd6,0x08,0xa0,0x29,0x67,0xe0,0x87,0xcb,0x5c,0x0b,0x27,0x71,0xb5,0xd4,0x30, +0x1a,0xb6,0x1e,0xc0,0x42,0xa5,0xec,0x1a,0x4a,0x7b,0x97,0xc0,0xab,0xf8,0x04,0xc6, +0x51,0xa6,0x14,0x97,0x7f,0x32,0x98,0x65,0xc3,0x16,0x3a,0xc2,0x56,0xc5,0xf0,0x95, +0xe7,0xd8,0x1d,0x6a,0x2c,0x6d,0xaf,0xa5,0x86,0x96,0x99,0x47,0x58,0xda,0x07,0xd2, +0xa9,0xae,0x71,0x8c,0x7e,0xea,0x97,0x1d,0x25,0x53,0xc7,0x13,0xbc,0x84,0xa7,0xd8, +0x61,0x33,0xfc,0x9e,0x3d,0x34,0x97,0x53,0x74,0x69,0x2b,0x95,0x8d,0xa2,0x78,0x98, +0x2b,0x9b,0xa2,0x09,0xb6,0xeb,0xeb,0x1a,0x38,0x76,0xcc,0xba,0xa6,0x1e,0xdd,0xb6, +0xff,0xe3,0xef,0x2b,0x0c,0x95,0xa1,0xd8,0x19,0xf8,0xa0,0x31,0xee,0x6f,0x21,0xe2, +0x52,0xf2,0x83,0xb5,0x2b,0x44,0xc6,0x76,0x94,0xd0,0x09,0xb4,0xde,0xc1,0xaf,0x4c, +0xd2,0x6b,0xf6,0x29,0xe3,0x94,0xeb,0x92,0xfb,0x49,0x77,0xa9,0x42,0xea,0xfb,0xb8, +0xcb,0xaa,0x77,0xe6,0x6a,0xff,0xcf,0x18,0xd5,0x4d,0xcd,0xa4,0xdc,0xcf,0xb0,0x7f, +0xf0,0x2a,0xde,0x72,0xb4,0x1e,0x18,0x38,0x8a,0x30,0xb4,0x6f,0x54,0xa2,0x86,0xd7, +0x3c,0x38,0x41,0x83,0xbb,0x44,0x13,0x68,0xfa,0x76,0x36,0x51,0xea,0xd1,0x4d,0x93, +0xe3,0xa6,0x51,0xb8,0xeb,0xd0,0xfc,0xa4,0x1e,0xda,0xed,0x88,0x22,0x10,0xb8,0x14, +0xab,0xdc,0xab,0xb8,0xf1,0x10,0xbf,0x09,0x33,0x6c,0x5b,0xf3,0x01,0x60,0x26,0x36, +0xee,0xbd,0x8f,0x0d,0x98,0xc2,0x6f,0xa0,0x72,0x31,0x73,0xf1,0x0b,0xb3,0xbd,0xfe, +0x84,0xc5,0xd6,0x6f,0x13,0xb5,0x22,0x2f,0xef,0x71,0x4a,0x95,0x6e,0x4f,0x1a,0x86, +0xc0,0xdd,0x14,0x9b,0x88,0x80,0xf5,0xbc,0x69,0xd5,0x83,0x74,0x80,0xe4,0xb3,0xae, +0x62,0x65,0x85,0x43,0x8b,0x9b,0xbd,0xd2,0x0f,0x51,0x9a,0x9e,0x7f,0xfe,0xa1,0x28, +0x6a,0xec,0x04,0x2e,0x6f,0x7b,0xf7,0xf2,0x67,0xec,0xb0,0xcb,0x9b,0xa7,0xce,0xde, +0x7c,0xf7,0x0b,0xda,0x8f,0xbe,0x3a,0x89,0xdb,0xee,0x33,0xaa,0xdb,0xc6,0x48,0x16, +0xe4,0xd3,0xc6,0x3f,0xfb,0xdf,0xfe,0x67,0xe0,0xc4,0xbc,0xc3,0x76,0x95,0xdd,0xb8, +0xf2,0xab,0x1b,0x57,0x3f,0x0d,0x85,0xe4,0x06,0x84,0x28,0x36,0x2d,0x90,0xee,0x7e, +0x8e,0x36,0x75,0x9b,0x1c,0x78,0x8e,0xb2,0x01,0x2f,0xfc,0x8e,0x1e,0xd8,0x8c,0xef, +0x37,0x61,0x70,0xbf,0xdd,0x40,0xbf,0x64,0x7d,0x34,0x9e,0x51,0xba,0x9f,0xac,0x61, +0x46,0xfd,0xfe,0xb0,0x46,0x94,0x12,0x99,0xe2,0x13,0xce,0xc6,0xf6,0x61,0xcf,0x45, +0x4a,0xd3,0x2d,0xbd,0xee,0x56,0x8e,0x6c,0xb0,0xdf,0x12,0xad,0x76,0xda,0x0a,0x96, +0x8b,0x08,0x36,0x3b,0xce,0x93,0xde,0x1c,0x4b,0x0b,0xb9,0xe1,0xd6,0x94,0x98,0xca, +0xe0,0x1e,0xce,0x59,0xb6,0x21,0xd1,0xdd,0x5b,0x04,0x8c,0x10,0x83,0xb0,0x73,0x92, +0xe0,0x43,0x2b,0x28,0xaa,0x6d,0x91,0x5a,0x1f,0x4f,0x67,0x7c,0x13,0x8d,0xdb,0xce, +0x39,0x3b,0x2e,0x0e,0x5a,0x96,0xc3,0x21,0x4a,0x4c,0xdb,0x71,0xe1,0x95,0xbd,0x13, +0x12,0xe2,0xc8,0xec,0x78,0x38,0xa2,0x84,0x50,0x9e,0x78,0x9a,0x97,0xdf,0x4d,0x80, +0xdb,0x21,0xe9,0xc6,0x73,0xda,0xdb,0xe3,0x25,0x13,0xa0,0x10,0x31,0xce,0xb0,0x7d, +0x6c,0x03,0x42,0xc4,0xa4,0x83,0xf6,0x19,0x0e,0x12,0x5a,0x39,0x93,0x85,0xc1,0x04, +0xdb,0x90,0x37,0xea,0x3b,0xa0,0x91,0x70,0x11,0x1e,0x7c,0xca,0x6c,0x9c,0xbc,0x30, +0xe5,0x03,0x8d,0x47,0xec,0x23,0x74,0xfc,0x51,0x65,0xa8,0x52,0x23,0x98,0x1c,0xfe, +0xb7,0x87,0x42,0x12,0x9f,0x6c,0xcc,0x04,0xf4,0x0c,0x9c,0x20,0xcc,0x87,0xf9,0x42, +0x01,0xc0,0xc3,0x47,0x0e,0xc6,0x9e,0xe5,0x7b,0xd8,0x51,0x56,0xf0,0x71,0xd4,0x7e, +0xc7,0x4f,0x8c,0x77,0xad,0xa1,0x67,0x79,0xb9,0x20,0xb1,0x4a,0x9e,0x9e,0x7a,0x8a, +0x5f,0x9e,0xf6,0xf3,0x0a,0x0d,0xb3,0x41,0xc5,0x25,0xe7,0xbd,0x0a,0xc1,0xaf,0x82, +0xeb,0xf6,0x63,0x5a,0x9d,0xf7,0x7a,0x4a,0xc8,0x03,0x57,0xa3,0x85,0x9b,0x20,0x20, +0x43,0x37,0xd2,0x06,0x5f,0x01,0x77,0x8f,0xe7,0x53,0x75,0xdb,0x5d,0xa8,0x0a,0x07, +0x17,0x39,0x71,0x03,0xe8,0x61,0x22,0xc6,0x58,0xe4,0x74,0xed,0x70,0x2f,0xb8,0xcd, +0x8f,0x39,0xf3,0x3a,0xf4,0xf1,0xef,0x61,0xa7,0x52,0x87,0x00,0xfd,0x08,0x7f,0xe8, +0xe9,0xe0,0x76,0x16,0x6a,0xf1,0xf8,0x5b,0x80,0xdd,0xad,0xbf,0x6a,0x2a,0x3e,0x56, +0x4b,0xb7,0xdd,0x7a,0x01,0xef,0x27,0xdc,0x4f,0x8d,0x63,0xd8,0xda,0xbb,0x4e,0x17, +0x06,0xf2,0x6d,0x78,0xd9,0xe0,0x3f,0xc8,0x1e,0xec,0x1a,0x65,0x96,0xb9,0xd0,0x3b, +0x7d,0x66,0xe7,0x8d,0x5f,0xb0,0xdf,0xfe,0x6f,0x2f,0xb3,0x0b,0x5c,0x09,0xf8,0xea, +0xfa,0xce,0xeb,0xef,0x73,0xde,0x6e,0xc8,0x66,0x47,0x0e,0xe1,0x17,0xda,0x1f,0x43, +0x85,0x32,0x4a,0xbe,0xe8,0xa7,0xdc,0xf9,0xad,0x63,0x7e,0xc9,0x1c,0x5e,0x71,0xc1, +0xc5,0x68,0x74,0x31,0x98,0xf3,0x61,0xb6,0xef,0xff,0xea,0x8f,0xbb,0x7f,0x38,0xcd, +0xbe,0xfb,0x8e,0x3b,0x5b,0x83,0x4f,0xbf,0x27,0x1f,0xb7,0x0e,0x1d,0x1a,0x3a,0x3f, +0x8f,0x5f,0x01,0xc8,0xd0,0x5d,0xd8,0x41,0x7c,0x34,0x42,0x15,0xcd,0x77,0xd0,0x4f, +0x82,0xe7,0xc2,0xf6,0xd1,0x5d,0x79,0xad,0xff,0xdb,0x2f,0x77,0xde,0xbb,0x42,0x2a, +0xa5,0x69,0xa9,0x52,0x25,0xbd,0xcf,0xfe,0xd0,0xbb,0xf0,0xb7,0xf1,0xc4,0x98,0x71, +0x20,0x46,0x8c,0xb1,0x7e,0x87,0x9c,0x68,0x5a,0x6e,0x12,0xd3,0xbf,0x1f,0x5a,0x46, +0x99,0x7e,0x52,0x03,0x29,0xb3,0x59,0xa6,0x05,0xbc,0xc4,0xa0,0x5f,0x3b,0xed,0x1d, +0xe5,0x4c,0x65,0x3d,0xbf,0xe6,0x77,0xaa,0xbb,0xa3,0x15,0xe1,0x98,0xd4,0x81,0xc3, +0xe1,0x7f,0xa0,0x7e,0x9e,0x1b,0x12,0xde,0x88,0xc0,0x2e,0xd0,0x5c,0xa6,0x63,0x4e, +0x58,0xd7,0x41,0xaa,0x7c,0xc6,0xa3,0xfd,0x0f,0xf3,0x42,0x83,0x99,0x88,0x08,0x69, +0xa2,0x70,0x82,0xb3,0xaa,0xb1,0xf5,0x57,0x9a,0x90,0x51,0xc8,0xf8,0x4b,0xe2,0x52, +0xbc,0xd0,0x0f,0x95,0x58,0xb7,0x02,0xff,0xe8,0x53,0xae,0x1f,0x9e,0x66,0x5d,0xbc, +0xfb,0xd5,0x9b,0xbd,0x2b,0x7f,0xf8,0xe6,0xda,0x1b,0x07,0x9e,0x73,0x81,0xb7,0xff, +0xcf,0xd3,0xbe,0x89,0xbf,0xed,0xb7,0xd9,0xa4,0x9f,0x32,0x0c,0x35,0xd4,0x6d,0x8a, +0x2b,0xe1,0x0c,0x1d,0x33,0x1a,0x01,0x1d,0xfa,0xba,0x58,0x0e,0xc8,0x80,0xd1,0x67, +0xd3,0xe3,0x0d,0x32,0x43,0xe7,0xbe,0xe1,0x3d,0xe9,0x2d,0x59,0xf0,0x14,0xd1,0xa3, +0xc3,0x47,0x93,0xf4,0xde,0x5f,0x77,0xff,0xee,0x0d,0xb1,0x49,0x55,0x4e,0xf3,0x6e, +0xa9,0xf4,0x2c,0x81,0x4b,0x8c,0x3b,0xe7,0xdc,0x35,0x3f,0xf1,0x08,0x1a,0xf3,0x20, +0x3e,0xe0,0x99,0xc1,0xac,0x4c,0x55,0x71,0xde,0x6c,0x38,0xf4,0x10,0x48,0x70,0x9f, +0xd9,0x86,0x6f,0x86,0x02,0x1c,0xb7,0xc1,0xd1,0x40,0xe9,0x0c,0x05,0xdd,0x70,0x70, +0x8f,0x56,0x90,0x01,0x94,0xaf,0x1d,0x83,0x47,0xdf,0xb2,0x6a,0xf4,0xe6,0x84,0xf0, +0xbc,0xb9,0xcf,0x13,0xdf,0xe0,0x6a,0xd5,0x88,0xc9,0x8b,0xd2,0xe4,0x8f,0xc8,0xc0, +0x50,0x0d,0x45,0x55,0xf2,0xf9,0xf0,0x62,0x8f,0x1f,0xd8,0xe1,0xe1,0xf9,0x02,0x5c, +0x27,0xec,0x65,0xa8,0xfa,0x09,0x19,0x2e,0x41,0x73,0x03,0x2b,0x42,0x7e,0x7b,0x2d, +0x8d,0x4d,0x3a,0xe3,0x6e,0x31,0xf0,0x3b,0x64,0xd8,0xf6,0x82,0xc0,0x14,0x0a,0xd9, +0x46,0xec,0xcb,0x28,0x03,0xe7,0x99,0x6e,0xd9,0x75,0x60,0xc7,0xd0,0xd3,0x4c,0x19, +0x48,0x28,0x24,0x0c,0xf7,0x75,0x55,0xdf,0x88,0x2f,0x16,0x3e,0x78,0x14,0x8a,0x8b, +0xb4,0x78,0xb0,0x27,0x32,0xb4,0xc3,0x6b,0xcb,0x5e,0x86,0xee,0x88,0x5d,0xa3,0x34, +0xcc,0xa1,0x29,0xb6,0x2e,0x61,0xa1,0xf5,0x09,0x8b,0xcf,0xa0,0x70,0xa9,0x0c,0x92, +0xd5,0x0a,0xd9,0xc8,0xb3,0x25,0x4d,0x5f,0x6f,0x3a,0xc9,0x7c,0xe4,0x08,0x9c,0x8d, +0x30,0x32,0xc4,0x5c,0xd0,0x57,0xbd,0x77,0xfe,0x7a,0xf3,0x9d,0xab,0x3b,0x2f,0x9f, +0x19,0x6c,0x23,0x97,0xe7,0x1f,0xdb,0x4e,0xba,0x8d,0x81,0x1d,0xcf,0x97,0xa7,0x7b, +0x05,0x86,0x1e,0xc2,0xca,0x1f,0xed,0x97,0xd8,0x69,0xdc,0xbe,0x83,0x80,0x21,0xfe, +0xc3,0x24,0x96,0xc5,0x34,0x9f,0xa7,0x7d,0x36,0xe6,0x08,0x2c,0xfc,0xf4,0xb2,0xbf, +0x6e,0x4f,0xb7,0x9e,0xcd,0xd3,0xe4,0x68,0xab,0x95,0x16,0x76,0xde,0xfd,0x04,0x6c, +0x75,0xb0,0x49,0xd8,0x39,0x71,0xbd,0x8b,0x97,0xbe,0xb9,0xf6,0x76,0xc8,0xd0,0xb1, +0xe6,0xe7,0x71,0xa2,0x77,0xe3,0x53,0x7c,0xdf,0x62,0xcd,0x88,0x9b,0x7d,0xe8,0x27, +0x9d,0x49,0x58,0xda,0xe0,0x3c,0xdb,0x48,0x81,0xd8,0x14,0x5c,0xf7,0x53,0xd1,0x63, +0xbb,0x5a,0x8c,0xf0,0xb0,0x7b,0x25,0xc0,0xc8,0x13,0x92,0x77,0x2d,0xc6,0xef,0xeb, +0xe0,0xf6,0xfa,0x3f,0xe4,0x3e,0x7b,0xfe,0x79,0xf7,0x62,0x7e,0xbe,0x10,0x24,0x3e, +0x78,0xcf,0xa4,0xe8,0xb6,0xfa,0xe8,0xb6,0x97,0xb1,0xe4,0x25,0xde,0x75,0x04,0x69, +0xed,0x9f,0x7b,0xff,0xe6,0xef,0x5f,0x01,0x69,0x0d,0x1d,0xdb,0x87,0x27,0xbb,0xb8, +0x04,0x07,0xd5,0xf3,0x5f,0xb2,0xca,0xbb,0xc7,0x89,0xcd,0xe5,0x71,0x15,0x10,0x2e, +0xfe,0x3f,0xb3,0xfb,0x5c,0x67,0x4b,0x1a,0x01,0x00}; diff --git a/TC1/http_server/web_log.c b/TC1/http_server/web_log.c index 2987ae7..27c9131 100644 --- a/TC1/http_server/web_log.c +++ b/TC1/http_server/web_log.c @@ -2,6 +2,8 @@ #include #include #include +#include "mico.h" + #include"http_server/web_log.h" @@ -36,6 +38,9 @@ char* GetLogRecord() tmp += strlen(tmp); if (!log_record.logs[i%LOG_NUM]) continue; sprintf(tmp, "%s\n", log_record.logs[i%LOG_NUM]); + if(i == log_record.idx){ + sprintf(tmp, "FreeMem %d bytes\n", MicoGetMemoryInfo()->free_memory); + } } return log_record_str; } diff --git a/TC1/mqtt_server/user_mqtt_client.c b/TC1/mqtt_server/user_mqtt_client.c index 8b099ea..27531b2 100644 --- a/TC1/mqtt_server/user_mqtt_client.c +++ b/TC1/mqtt_server/user_mqtt_client.c @@ -443,7 +443,7 @@ void ProcessHaCmd(char *cmd) { OSStatus UserMqttSendTopic(char *topic, char *arg, char retained) { OSStatus err = kUnknownErr; p_mqtt_send_msg_t p_send_msg = NULL; - if(mqtt_msg_send_queue == NULL){ + if(mqtt_msg_send_queue == NULL|| !isconnect){ return err; } From eece61e38097ad2307965c06c40bfe88a2cb8603 Mon Sep 17 00:00:00 2001 From: Your Name Date: Mon, 21 Apr 2025 21:29:15 +0800 Subject: [PATCH 15/19] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E4=BA=86MQTT=E6=9B=BE?= =?UTF-8?q?=E7=BB=8F=E8=BF=9E=E4=B8=8A=EF=BC=8C=E4=BD=86=E4=B8=AD=E9=80=94?= =?UTF-8?q?=E9=95=BF=E6=97=B6=E9=97=B4=E6=96=AD=E5=BC=80=EF=BC=8C=E5=AF=BC?= =?UTF-8?q?=E8=87=B4=E6=B6=88=E6=81=AF=E9=98=9F=E5=88=97=E4=B8=80=E7=9B=B4?= =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E7=88=86=E5=86=85=E5=AD=98=EF=BC=8C=E8=BF=9B?= =?UTF-8?q?=E8=80=8C=E5=AF=BC=E8=87=B4=E6=AD=BB=E6=9C=BA=E7=9A=84=E9=97=AE?= =?UTF-8?q?=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- TC1/http_server/web/index.html | 2 +- TC1/http_server/web_data.c | 94 +++++++++++++++++----------------- TC1/http_server/web_log.c | 2 +- 3 files changed, 49 insertions(+), 49 deletions(-) diff --git a/TC1/http_server/web/index.html b/TC1/http_server/web/index.html index 50f688f..56c8c2f 100644 --- a/TC1/http_server/web/index.html +++ b/TC1/http_server/web/index.html @@ -1519,7 +1519,7 @@ document.getElementById("submit-ota-link").disabled = true; //return; var fileInput = document.getElementById("ota_file"); if (fileInput.files.length === 0) { - Toast("请选择要上传的 OTA 文件"); + ShowToast("请选择要上传的 OTA 文件"); return; } clearTimeout(powerTimerId); diff --git a/TC1/http_server/web_data.c b/TC1/http_server/web_data.c index 9e38127..8fcc73b 100644 --- a/TC1/http_server/web_data.c +++ b/TC1/http_server/web_data.c @@ -1,5 +1,5 @@ const unsigned char js_pack[0xd2be] = { -0x1f,0x8b,0x08,0x00,0xcb,0x44,0x06,0x68,0x02,0xff,0xd4,0xbd,0xfb,0x72,0xdb,0x46, +0x1f,0x8b,0x08,0x00,0x1c,0x48,0x06,0x68,0x02,0xff,0xd4,0xbd,0xfb,0x72,0xdb,0x46, 0xd2,0x38,0xfa,0xff,0x56,0xed,0x3b,0x88,0x48,0x96,0x01,0xc4,0x21,0x45,0xca,0xb1, 0x13,0x83,0x1e,0xb1,0x1c,0xdb,0x49,0xbc,0x5f,0x9c,0x64,0xe3,0x5c,0x97,0x62,0x52, 0xb8,0x92,0xa0,0x48,0x82,0xe2,0xc5,0x12,0x23,0x72,0xdf,0xe7,0xf7,0x1a,0xe7,0xc9, @@ -3372,7 +3372,7 @@ const unsigned char js_pack[0xd2be] = { 0x02,0x0f,0xb7,0x98,0x0c,0x59,0x7f,0x97,0xf2,0x25,0x55,0x7c,0x45,0xad,0x25,0x8e, 0x0f,0x58,0x4f,0xcc,0x9f,0x00,0x32,0xd2,0xf4,0xa5,0xf0,0xee,0x02,0x00}; const unsigned char css_pack[0x6217] = { -0x1f,0x8b,0x08,0x00,0xcb,0x44,0x06,0x68,0x02,0xff,0xed,0xbd,0x79,0x73,0xdb,0xc8, +0x1f,0x8b,0x08,0x00,0x1d,0x48,0x06,0x68,0x02,0xff,0xed,0xbd,0x79,0x73,0xdb,0xc8, 0xf5,0x28,0xfa,0x7f,0xaa,0xf2,0x1d,0x70,0x9d,0x9a,0x1a,0x6b,0x42,0xc8,0xd8,0x49, 0x4a,0x95,0x54,0xbc,0x8f,0x26,0x96,0x9c,0x78,0x19,0x8f,0x9d,0x5f,0x9e,0x0b,0x04, 0x9a,0x24,0x24,0x90,0x60,0x00,0x50,0x1b,0x4b,0xb7,0xee,0x07,0xb9,0xef,0xcb,0xbd, @@ -4943,7 +4943,7 @@ const unsigned char css_pack[0x6217] = { 0xe6,0x54,0x09,0x49,0xbc,0xd0,0xc2,0x1c,0x55,0x23,0x76,0x55,0x21,0xff,0x3f,0x3f, 0xef,0x85,0xce,0x3d,0xbc,0x02,0x00}; const unsigned char web_index_html[0x36ba] = { -0x1f,0x8b,0x08,0x00,0xcb,0x44,0x06,0x68,0x02,0xff,0xed,0x7d,0xfb,0x97,0x1b,0xc5, +0x1f,0x8b,0x08,0x00,0x1d,0x48,0x06,0x68,0x02,0xff,0xed,0x7d,0xfb,0x97,0x1b,0xc5, 0x95,0xf0,0xef,0x39,0x67,0xff,0x87,0xa2,0xf1,0xb7,0x92,0x76,0xd4,0x92,0xba,0xf5, 0x18,0x69,0x5e,0x39,0xce,0x40,0x76,0xf8,0x76,0x8c,0x09,0xe3,0x38,0xbb,0xeb,0x70, 0x44,0x8f,0xba,0x67,0xd4,0xb8,0xa5,0x16,0xdd,0xad,0x19,0x8f,0x61,0xce,0xb1,0x93, @@ -5775,47 +5775,47 @@ const unsigned char web_index_html[0x36ba] = { 0x7d,0x66,0xe7,0x8d,0x5f,0xb0,0xdf,0xfe,0x6f,0x2f,0xb3,0x0b,0x5c,0x09,0xf8,0xea, 0xfa,0xce,0xeb,0xef,0x73,0xde,0x6e,0xc8,0x66,0x47,0x0e,0xe1,0x17,0xda,0x1f,0x43, 0x85,0x32,0x4a,0xbe,0xe8,0xa7,0xdc,0xf9,0xad,0x63,0x7e,0xc9,0x1c,0x5e,0x71,0xc1, -0xc5,0x68,0x74,0x31,0x98,0xf3,0x61,0xb6,0xef,0xff,0xea,0x8f,0xbb,0x7f,0x38,0xcd, -0xbe,0xfb,0x8e,0x3b,0x5b,0x83,0x4f,0xbf,0x27,0x1f,0xb7,0x0e,0x1d,0x1a,0x3a,0x3f, -0x8f,0x5f,0x01,0xc8,0xd0,0x5d,0xd8,0x41,0x7c,0x34,0x42,0x15,0xcd,0x77,0xd0,0x4f, -0x82,0xe7,0xc2,0xf6,0xd1,0x5d,0x79,0xad,0xff,0xdb,0x2f,0x77,0xde,0xbb,0x42,0x2a, -0xa5,0x69,0xa9,0x52,0x25,0xbd,0xcf,0xfe,0xd0,0xbb,0xf0,0xb7,0xf1,0xc4,0x98,0x71, -0x20,0x46,0x8c,0xb1,0x7e,0x87,0x9c,0x68,0x5a,0x6e,0x12,0xd3,0xbf,0x1f,0x5a,0x46, -0x99,0x7e,0x52,0x03,0x29,0xb3,0x59,0xa6,0x05,0xbc,0xc4,0xa0,0x5f,0x3b,0xed,0x1d, -0xe5,0x4c,0x65,0x3d,0xbf,0xe6,0x77,0xaa,0xbb,0xa3,0x15,0xe1,0x98,0xd4,0x81,0xc3, -0xe1,0x7f,0xa0,0x7e,0x9e,0x1b,0x12,0xde,0x88,0xc0,0x2e,0xd0,0x5c,0xa6,0x63,0x4e, -0x58,0xd7,0x41,0xaa,0x7c,0xc6,0xa3,0xfd,0x0f,0xf3,0x42,0x83,0x99,0x88,0x08,0x69, -0xa2,0x70,0x82,0xb3,0xaa,0xb1,0xf5,0x57,0x9a,0x90,0x51,0xc8,0xf8,0x4b,0xe2,0x52, -0xbc,0xd0,0x0f,0x95,0x58,0xb7,0x02,0xff,0xe8,0x53,0xae,0x1f,0x9e,0x66,0x5d,0xbc, -0xfb,0xd5,0x9b,0xbd,0x2b,0x7f,0xf8,0xe6,0xda,0x1b,0x07,0x9e,0x73,0x81,0xb7,0xff, -0xcf,0xd3,0xbe,0x89,0xbf,0xed,0xb7,0xd9,0xa4,0x9f,0x32,0x0c,0x35,0xd4,0x6d,0x8a, -0x2b,0xe1,0x0c,0x1d,0x33,0x1a,0x01,0x1d,0xfa,0xba,0x58,0x0e,0xc8,0x80,0xd1,0x67, -0xd3,0xe3,0x0d,0x32,0x43,0xe7,0xbe,0xe1,0x3d,0xe9,0x2d,0x59,0xf0,0x14,0xd1,0xa3, -0xc3,0x47,0x93,0xf4,0xde,0x5f,0x77,0xff,0xee,0x0d,0xb1,0x49,0x55,0x4e,0xf3,0x6e, -0xa9,0xf4,0x2c,0x81,0x4b,0x8c,0x3b,0xe7,0xdc,0x35,0x3f,0xf1,0x08,0x1a,0xf3,0x20, -0x3e,0xe0,0x99,0xc1,0xac,0x4c,0x55,0x71,0xde,0x6c,0x38,0xf4,0x10,0x48,0x70,0x9f, -0xd9,0x86,0x6f,0x86,0x02,0x1c,0xb7,0xc1,0xd1,0x40,0xe9,0x0c,0x05,0xdd,0x70,0x70, -0x8f,0x56,0x90,0x01,0x94,0xaf,0x1d,0x83,0x47,0xdf,0xb2,0x6a,0xf4,0xe6,0x84,0xf0, -0xbc,0xb9,0xcf,0x13,0xdf,0xe0,0x6a,0xd5,0x88,0xc9,0x8b,0xd2,0xe4,0x8f,0xc8,0xc0, -0x50,0x0d,0x45,0x55,0xf2,0xf9,0xf0,0x62,0x8f,0x1f,0xd8,0xe1,0xe1,0xf9,0x02,0x5c, -0x27,0xec,0x65,0xa8,0xfa,0x09,0x19,0x2e,0x41,0x73,0x03,0x2b,0x42,0x7e,0x7b,0x2d, -0x8d,0x4d,0x3a,0xe3,0x6e,0x31,0xf0,0x3b,0x64,0xd8,0xf6,0x82,0xc0,0x14,0x0a,0xd9, -0x46,0xec,0xcb,0x28,0x03,0xe7,0x99,0x6e,0xd9,0x75,0x60,0xc7,0xd0,0xd3,0x4c,0x19, -0x48,0x28,0x24,0x0c,0xf7,0x75,0x55,0xdf,0x88,0x2f,0x16,0x3e,0x78,0x14,0x8a,0x8b, -0xb4,0x78,0xb0,0x27,0x32,0xb4,0xc3,0x6b,0xcb,0x5e,0x86,0xee,0x88,0x5d,0xa3,0x34, -0xcc,0xa1,0x29,0xb6,0x2e,0x61,0xa1,0xf5,0x09,0x8b,0xcf,0xa0,0x70,0xa9,0x0c,0x92, -0xd5,0x0a,0xd9,0xc8,0xb3,0x25,0x4d,0x5f,0x6f,0x3a,0xc9,0x7c,0xe4,0x08,0x9c,0x8d, -0x30,0x32,0xc4,0x5c,0xd0,0x57,0xbd,0x77,0xfe,0x7a,0xf3,0x9d,0xab,0x3b,0x2f,0x9f, -0x19,0x6c,0x23,0x97,0xe7,0x1f,0xdb,0x4e,0xba,0x8d,0x81,0x1d,0xcf,0x97,0xa7,0x7b, -0x05,0x86,0x1e,0xc2,0xca,0x1f,0xed,0x97,0xd8,0x69,0xdc,0xbe,0x83,0x80,0x21,0xfe, -0xc3,0x24,0x96,0xc5,0x34,0x9f,0xa7,0x7d,0x36,0xe6,0x08,0x2c,0xfc,0xf4,0xb2,0xbf, -0x6e,0x4f,0xb7,0x9e,0xcd,0xd3,0xe4,0x68,0xab,0x95,0x16,0x76,0xde,0xfd,0x04,0x6c, -0x75,0xb0,0x49,0xd8,0x39,0x71,0xbd,0x8b,0x97,0xbe,0xb9,0xf6,0x76,0xc8,0xd0,0xb1, -0xe6,0xe7,0x71,0xa2,0x77,0xe3,0x53,0x7c,0xdf,0x62,0xcd,0x88,0x9b,0x7d,0xe8,0x27, -0x9d,0x49,0x58,0xda,0xe0,0x3c,0xdb,0x48,0x81,0xd8,0x14,0x5c,0xf7,0x53,0xd1,0x63, -0xbb,0x5a,0x8c,0xf0,0xb0,0x7b,0x25,0xc0,0xc8,0x13,0x92,0x77,0x2d,0xc6,0xef,0xeb, -0xe0,0xf6,0xfa,0x3f,0xe4,0x3e,0x7b,0xfe,0x79,0xf7,0x62,0x7e,0xbe,0x10,0x24,0x3e, -0x78,0xcf,0xa4,0xe8,0xb6,0xfa,0xe8,0xb6,0x97,0xb1,0xe4,0x25,0xde,0x75,0x04,0x69, -0xed,0x9f,0x7b,0xff,0xe6,0xef,0x5f,0x01,0x69,0x0d,0x1d,0xdb,0x87,0x27,0xbb,0xb8, -0x04,0x07,0xd5,0xf3,0x5f,0xb2,0xca,0xbb,0xc7,0x89,0xcd,0xe5,0x71,0x15,0x10,0x2e, -0xfe,0x3f,0xb3,0xfb,0x5c,0x67,0x4b,0x1a,0x01,0x00}; +0xc5,0x68,0x74,0x31,0x3c,0xef,0xc3,0x8c,0xdf,0xff,0xd5,0x1f,0x77,0xff,0x70,0x9a, +0x7d,0xfb,0x1d,0x77,0xb7,0x06,0x9f,0x7f,0x4f,0x3e,0x72,0x1d,0x3a,0x35,0x74,0x86, +0x1e,0xbf,0x0a,0x90,0xa1,0x3b,0xb1,0x83,0x18,0x69,0x84,0x32,0x9a,0xf3,0xa0,0x9f, +0x04,0xef,0x85,0xed,0xa5,0xbb,0xf2,0x5a,0xff,0xb7,0x5f,0xee,0xbc,0x77,0x85,0x54, +0x4a,0xd3,0x52,0xa5,0x4a,0x7a,0x9f,0xfd,0xa1,0x77,0xe1,0x6f,0xe3,0x89,0x32,0xe3, +0x42,0x8c,0x28,0x63,0xfd,0x0e,0x39,0xd1,0xb4,0xdc,0x44,0xa6,0x7f,0x3f,0xb4,0x8c, +0x72,0xfd,0xa4,0x06,0x92,0x66,0xb3,0x6c,0x0b,0x78,0x89,0x81,0xbf,0x76,0xda,0x3b, +0xce,0x99,0xca,0x7b,0x7e,0xcd,0xef,0x58,0x77,0x57,0x2b,0xc2,0x31,0xc9,0x03,0xa7, +0xc3,0xff,0x48,0xfd,0x3c,0x37,0x2c,0xbc,0x51,0x81,0xdd,0xa0,0xb9,0x8c,0xc7,0xbc, +0xb0,0xae,0x83,0x54,0xf9,0xcc,0x47,0x1f,0x00,0xe6,0x86,0x06,0x33,0x13,0x11,0xd2, +0x44,0x01,0x05,0x87,0x55,0x63,0x6b,0xb0,0x34,0x29,0xa3,0x90,0xf1,0x97,0xc5,0xa5, +0x78,0xc1,0x1f,0x2a,0xb5,0x6e,0x05,0xfe,0xf1,0xa7,0x5c,0x3f,0x3c,0xcd,0xba,0x78, +0xf7,0xab,0x37,0x7b,0x57,0xfe,0xf0,0xcd,0xb5,0x37,0x0e,0x3c,0xe7,0x02,0x6f,0xff, +0x9f,0xa7,0x7d,0x33,0x7f,0xdb,0x6f,0xb3,0x49,0x3f,0x67,0x18,0x6a,0xa8,0xdb,0x14, +0x57,0xca,0x19,0x3a,0x66,0x38,0x02,0x3a,0xf4,0x77,0xb1,0x1c,0x90,0x01,0x23,0xd0, +0xa6,0x47,0x1c,0x64,0x86,0xce,0x7f,0xc3,0x7b,0xd2,0x5b,0xb6,0xe0,0x29,0xa2,0xc7, +0x87,0x8f,0x26,0xe9,0xbd,0xbf,0xee,0xfe,0xdd,0x1b,0x66,0x93,0xaa,0x9c,0xe6,0xde, +0x52,0xe9,0x59,0x02,0xb7,0x18,0x77,0xcf,0xb9,0xeb,0x7e,0xe2,0x11,0x34,0xe8,0x41, +0x7c,0xc0,0x3b,0x83,0x99,0x99,0xaa,0xe3,0xbc,0xd9,0x70,0xe8,0x41,0x90,0xe0,0x42, +0xb3,0x4d,0xdf,0x0c,0x05,0x38,0x6f,0x83,0xa3,0x81,0xd2,0x19,0x0a,0xbc,0xe1,0x00, +0x1f,0xad,0x24,0x03,0x28,0x5f,0x43,0x06,0x8f,0xbe,0x65,0xf5,0xe8,0xcd,0x0b,0xe1, +0xb9,0x73,0x9f,0x27,0xbf,0xc1,0x15,0xab,0x11,0x13,0x18,0xa5,0xc9,0x1f,0x91,0x81, +0xb1,0x1a,0x8a,0xac,0xe4,0xf3,0xe1,0x05,0x1f,0x3f,0xb8,0xc3,0xc3,0xf3,0x05,0xb8, +0x4e,0xd8,0xcb,0x50,0xf5,0x93,0x32,0x5c,0x82,0xe6,0x06,0x56,0x85,0xfc,0xf6,0x5a, +0x1a,0x9b,0x78,0xc6,0xdd,0x66,0xe0,0x77,0xc8,0xb0,0x2d,0x06,0x81,0x39,0x14,0xb2, +0x8f,0xd8,0xd7,0x51,0x06,0xce,0x34,0xdd,0xb2,0xeb,0xc0,0x8e,0xa1,0x27,0x9a,0x32, +0x90,0x50,0x58,0x18,0xee,0xeb,0xaa,0xbe,0x11,0x5f,0x2c,0x7c,0xf8,0x28,0x14,0x17, +0x69,0xf1,0x60,0x5f,0x64,0x68,0x97,0xd7,0x96,0xbd,0x0c,0xdd,0x11,0xbb,0x4e,0x69, +0x98,0x43,0xd3,0x6c,0x5d,0xc2,0x42,0x6b,0x14,0x16,0x9f,0x45,0xe1,0x52,0x19,0x24, +0xac,0x15,0xb2,0x91,0x67,0x4b,0x9a,0xbe,0xde,0x74,0x92,0xf9,0xc8,0x11,0x38,0x1b, +0x61,0x64,0x88,0xb9,0xa0,0xaf,0x7a,0xef,0xfc,0xf5,0xe6,0x3b,0x57,0x77,0x5e,0x3e, +0x33,0xd8,0x46,0x2e,0xd7,0x3f,0xb6,0x9d,0x74,0x2b,0x03,0x3b,0xa2,0x2f,0x4f,0xf7, +0x0b,0x0c,0x3d,0x88,0x95,0x3f,0xde,0x2f,0xb1,0xd3,0xb8,0xbd,0x07,0x01,0x43,0xfc, +0x87,0x49,0x2c,0x8b,0x69,0x3e,0x4f,0xfb,0x6c,0xcc,0x31,0x58,0xf8,0xf9,0x65,0x7f, +0xed,0x9e,0x6e,0x3f,0x9b,0xa7,0x09,0xd2,0x56,0x2b,0x2d,0xec,0xbc,0xfb,0x09,0xd8, +0xeb,0x60,0x93,0xb0,0xb3,0xe2,0x7a,0x17,0x2f,0x7d,0x73,0xed,0xed,0x90,0xb1,0x63, +0xcd,0xcf,0xe3,0x44,0xef,0xc6,0xa8,0xf8,0xbe,0xc5,0x9a,0x11,0x37,0xfb,0xd8,0x4f, +0x3a,0x93,0xb0,0xbc,0xc1,0x79,0xb7,0x91,0x02,0xb1,0x69,0xb8,0xee,0xe7,0xa2,0xc7, +0x76,0xb7,0x18,0xe1,0x61,0x17,0x4b,0x80,0x91,0x27,0x24,0xef,0x5c,0x8c,0xdf,0xdb, +0xc1,0xed,0xf7,0x7f,0xc8,0x7d,0xf6,0xfc,0xf3,0xee,0xc5,0xfc,0x7c,0x21,0x48,0x7e, +0xf0,0x9e,0x49,0xd1,0xad,0xf5,0xd1,0xad,0x2f,0x63,0xc9,0x4b,0xbc,0xfb,0x08,0xd2, +0xda,0x3f,0xf7,0xfe,0xcd,0xdf,0xbf,0x02,0xd2,0x1a,0x3a,0xba,0x0f,0x4f,0x77,0x71, +0x09,0x0e,0xaa,0xe7,0xbf,0x66,0x95,0x77,0x8f,0x14,0x9b,0xcb,0xe3,0x4a,0x20,0x5c, +0xfc,0x7f,0xbd,0x44,0x19,0x8e,0x4f,0x1a,0x01,0x00}; diff --git a/TC1/http_server/web_log.c b/TC1/http_server/web_log.c index 27c9131..fc5a4c1 100644 --- a/TC1/http_server/web_log.c +++ b/TC1/http_server/web_log.c @@ -39,7 +39,7 @@ char* GetLogRecord() if (!log_record.logs[i%LOG_NUM]) continue; sprintf(tmp, "%s\n", log_record.logs[i%LOG_NUM]); if(i == log_record.idx){ - sprintf(tmp, "FreeMem %d bytes\n", MicoGetMemoryInfo()->free_memory); + sprintf(tmp, "%s\nFreeMem %d bytes\n",log_record.logs[i%LOG_NUM],MicoGetMemoryInfo()->free_memory); } } return log_record_str; From 982e82c2bb6942e6cf327d1536401234d5d61fc7 Mon Sep 17 00:00:00 2001 From: Your Name Date: Mon, 21 Apr 2025 21:30:17 +0800 Subject: [PATCH 16/19] v2.2.0 --- TC1/main.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TC1/main.h b/TC1/main.h index df14094..dda723c 100644 --- a/TC1/main.h +++ b/TC1/main.h @@ -16,7 +16,7 @@ #define wifi_log(M, ...) custom_log("WIFI", M, ##__VA_ARGS__); web_log("WIFI", M, ##__VA_ARGS__); #define power_log(M, ...) custom_log("POWER", M, ##__VA_ARGS__); web_log("POWER", M, ##__VA_ARGS__); -#define VERSION "v2.1.8" +#define VERSION "v2.2.0" #define TYPE 1 #define TYPE_NAME "TC1" From 0c675c6f03470f24ab36b1c34fa1c4f015b0547e Mon Sep 17 00:00:00 2001 From: Your Name Date: Fri, 25 Apr 2025 10:02:25 +0800 Subject: [PATCH 17/19] =?UTF-8?q?=E5=B0=9D=E8=AF=95=E4=BF=AE=E5=A4=8D?= =?UTF-8?q?=E6=97=A5=E5=BF=97=E4=B8=AD=E7=9A=84=E5=AE=9A=E6=97=B6=E5=99=A8?= =?UTF-8?q?=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- TC1/mqtt_server/user_mqtt_client.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/TC1/mqtt_server/user_mqtt_client.c b/TC1/mqtt_server/user_mqtt_client.c index 27531b2..1dd8490 100644 --- a/TC1/mqtt_server/user_mqtt_client.c +++ b/TC1/mqtt_server/user_mqtt_client.c @@ -187,6 +187,9 @@ static OSStatus MqttMsgPublish(Client *c, const char *topic, char qos, char reta } void registerMqttEvents(void) { +if(timer_status ! =0){ + mico_stop_timer(&timer_handle); + } timer_status = 0; mico_start_timer(&timer_handle); } @@ -212,6 +215,8 @@ void MqttClientThread(mico_thread_arg_t arg) { /* create msg send queue event fd */ msg_send_event_fd = mico_create_event_fd(mqtt_msg_send_queue); + mico_init_timer(&timer_handle, 150, UserMqttTimerFunc, &arg); + require_action(msg_send_event_fd >= 0, exit, mqtt_log("ERROR: create msg send queue event fd failed!!!")); mqtt_thread_should_exit = false; @@ -279,7 +284,6 @@ void MqttClientThread(mico_thread_arg_t arg) { UserMqttSendTotalSocketState(); UserMqttSendChildLockState(); - mico_init_timer(&timer_handle, 150, UserMqttTimerFunc, &arg); registerMqttEvents(); /* 5. client loop for recv msg && keepalive */ while (!mqtt_thread_should_exit) { From 5eecfefc74a0405cc4c4c5c94679b1f4de974e47 Mon Sep 17 00:00:00 2001 From: Your Name Date: Fri, 25 Apr 2025 11:30:43 +0800 Subject: [PATCH 18/19] =?UTF-8?q?=E5=B0=9D=E8=AF=95=E4=BF=AE=E5=A4=8Dmqtt?= =?UTF-8?q?=E9=87=8D=E8=BF=9E=E6=97=B6=E5=86=85=E5=AD=98=E6=B3=84=E6=BC=8F?= =?UTF-8?q?=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- TC1/mqtt_server/user_mqtt_client.c | 54 ++++++++++++++++++++++++------ 1 file changed, 43 insertions(+), 11 deletions(-) diff --git a/TC1/mqtt_server/user_mqtt_client.c b/TC1/mqtt_server/user_mqtt_client.c index 1dd8490..e9e4c9a 100644 --- a/TC1/mqtt_server/user_mqtt_client.c +++ b/TC1/mqtt_server/user_mqtt_client.c @@ -108,10 +108,23 @@ OSStatus UserMqttDeInit(void) { return err; } +void clear_mqtt_msg_send_queue(void) { +if(mqtt_msg_send_queue == NULL){ +return; +} + void *msg = NULL; + while (mico_rtos_is_queue_empty(&mqtt_msg_send_queue) == false) { + if (mico_rtos_pop_from_queue(&mqtt_msg_send_queue, &msg, 0) == kNoErr) { + if (msg) free(msg); // 释放消息内存,避免泄漏 + } + } +} + /* Application entrance */ OSStatus UserMqttInit(void) { OSStatus err = kNoErr; - +if(mqtt_msg_send_queue != NULL) + return err; sprintf(topic_set, MQTT_CLIENT_SUB_TOPIC1); sprintf(topic_state, MQTT_CLIENT_PUB_TOPIC, str_mac); //TODO size:0x800 @@ -146,13 +159,32 @@ OSStatus UserMqttInit(void) { static OSStatus UserMqttClientRelease(Client *c, Network *n) { OSStatus err = kNoErr; - if (c->isconnected) MQTTDisconnect(c); + if (c == NULL || n == NULL) return kParamErr; - n->disconnect(n); // close connection + if (c->isconnected) { + MQTTDisconnect(c); + c->isconnected = 0; + } - if (MQTT_SUCCESS != MQTTClientDeinit(c)) { mqtt_log("MQTTClientDeinit failed!"); + if (c->buf) { + free(c->buf); + c->buf = NULL; + } + + if (c->readbuf) { + free(c->readbuf); + c->readbuf = NULL; + } + + if (n->disconnect) { + n->disconnect(n); + } + + if (MQTT_SUCCESS != MQTTClientDeinit(c)) { + mqtt_log("MQTTClientDeinit failed!"); err = kDeletedErr; } + return err; } @@ -187,7 +219,7 @@ static OSStatus MqttMsgPublish(Client *c, const char *topic, char qos, char reta } void registerMqttEvents(void) { -if(timer_status ! =0){ +if(timer_status !=0){ mico_stop_timer(&timer_handle); } timer_status = 0; @@ -243,7 +275,8 @@ void MqttClientThread(mico_thread_arg_t arg) { if (rc == MQTT_SUCCESS) break; //mqtt_log("ERROR: MQTT network connect err=%d, reconnect after 3s...", rc); - }mqtt_log("MQTT network connect success!"); + } + mqtt_log("MQTT network connect success!"); /* 2. init mqtt client */ //c.heartbeat_retry_max = 2; @@ -264,7 +297,7 @@ void MqttClientThread(mico_thread_arg_t arg) { rc = MQTTConnect(&c, &connectData); require_noerr_string(rc, MQTT_reconnect, "ERROR: MQTT client connect err."); - mqtt_log("MQTT client connect success!"); + mqtt_log("MQTT client connect success, result: %d ", rc); UserLedSet(RelayOut() && user_config->power_led_enabled); @@ -312,13 +345,12 @@ void MqttClientThread(mico_thread_arg_t arg) { err = MqttMsgPublish(&c, p_send_msg->topic, p_send_msg->qos, p_send_msg->retained, (const unsigned char *) p_send_msg->data, p_send_msg->datalen); - + free(p_send_msg); + p_send_msg = NULL; require_noerr_string(err, MQTT_reconnect, "ERROR: MQTT publish data err"); //mqtt_log("MQTT publish data success! send_topic=[%s], msg=[%ld].", p_send_msg->topic, p_send_msg->datalen); no_mqtt_msg_exchange = false; - free(p_send_msg); - p_send_msg = NULL; } } @@ -334,7 +366,7 @@ void MqttClientThread(mico_thread_arg_t arg) { mqtt_log("Disconnect MQTT client, and reconnect after 5s, reason: mqtt_rc = %d, err = %d", rc, err); timer_status = 100; - + clear_mqtt_msg_send_queue(); UserMqttClientRelease(&c, &n); isconnect = false; UserLedSet(-1); From eaf8f5bf60d9dabbaa963aff25f05a8b4f567a3c Mon Sep 17 00:00:00 2001 From: nhkefus Date: Mon, 28 Apr 2025 16:11:35 +0800 Subject: [PATCH 19/19] =?UTF-8?q?=E5=8E=BB=E9=99=A4web=E5=90=8E=E5=8F=B0?= =?UTF-8?q?=E6=B2=A1=E6=95=B0=E6=8D=AE=E6=97=B6=E7=9A=84=E9=BB=98=E8=AE=A4?= =?UTF-8?q?=E5=80=BC=EF=BC=8C=E4=BF=AE=E5=A4=8Dhass=E4=B8=AD=E9=87=8D?= =?UTF-8?q?=E5=90=AF=E6=8C=89=E9=92=AE=E6=8C=89=E4=BA=86=E4=BB=A5=E5=90=8E?= =?UTF-8?q?=20=E5=90=8C=E4=B8=80mqtt=E6=9C=8D=E5=8A=A1=E4=B8=AD=E7=9A=84?= =?UTF-8?q?=E6=89=80=E6=9C=89=E6=8F=92=E5=BA=A7=E9=83=BD=E9=87=8D=E5=90=AF?= =?UTF-8?q?=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- TC1/http_server/web/index.html | 26 ++++++-------------------- TC1/mqtt_server/user_mqtt_client.c | 8 +++++--- 2 files changed, 11 insertions(+), 23 deletions(-) diff --git a/TC1/http_server/web/index.html b/TC1/http_server/web/index.html index 56c8c2f..3255f2b 100644 --- a/TC1/http_server/web/index.html +++ b/TC1/http_server/web/index.html @@ -438,20 +438,6 @@ 循环 操作 - - 02-15 07:11 - 1 - 0 - 0 - 删除 - - - 2020-02-15
07:11:08 - 1 - 0 - 6 - 删除 - @@ -610,23 +596,23 @@ - + - + - + - + - +
版本v1.0.33
IP192.168.33.222
子网掩码255.255.255.0
网关192.168.33.1
启动时间10:13:43
@@ -638,7 +624,7 @@ - 2020-02-22 +
diff --git a/TC1/mqtt_server/user_mqtt_client.c b/TC1/mqtt_server/user_mqtt_client.c index e9e4c9a..63e5200 100644 --- a/TC1/mqtt_server/user_mqtt_client.c +++ b/TC1/mqtt_server/user_mqtt_client.c @@ -471,7 +471,9 @@ void ProcessHaCmd(char *cmd) { childLockEnabled = on; UserMqttSendChildLockState(); mico_system_context_update(sys_config); - }else if (strcmp(cmd, "reboot") == 0) { + }else if (strcmp(cmd, "reboot") == ' ') { + sscanf(cmd, "reboot %s", mac); + if (strcmp(mac, str_mac)) return; MicoSystemReboot(); // 立即重启设备 } } @@ -626,13 +628,13 @@ void UserMqttHassAutoRebootButton(void) { "\"uniq_id\":\"tc1_%s_reboot\"," "\"object_id\":\"tc1_%s_reboot\"," "\"cmd_t\":\"device/ztc1/set\"," - "\"pl_prs\":\"reboot\"," + "\"pl_prs\":\"reboot %s\"," "\"device\":{" "\"identifiers\":[\"tc1_%s\"]," "\"name\":\"%s\"," "\"model\":\"TC1\"," "\"manufacturer\":\"PHICOMM\"}}", - str_mac,str_mac,str_mac, sys_config->micoSystemConfig.name); + str_mac,str_mac,str_mac,str_mac, sys_config->micoSystemConfig.name); UserMqttSendTopic(topic_buf, send_buf, 1); } if (send_buf) free(send_buf);