diff --git a/TC1/http_server/app_httpd.c b/TC1/http_server/app_httpd.c index 9e0fea7..8e8568a 100644 --- a/TC1/http_server/app_httpd.c +++ b/TC1/http_server/app_httpd.c @@ -67,16 +67,20 @@ exit: return err; } -static int http_get_socket_status(httpd_request_t *req) +#define TC1_STATUS_JSON "{'sockets':'%s','station_ssid':'%s','station_pwd':'%s','ap_ssid':'%s','ap_pwd':'%s'}" +static int http_get_tc1_status(httpd_request_t *req) { OSStatus err = kNoErr; - const unsigned char* status = get_socket_status(); + const unsigned char* sockets = get_socket_status(); + char* tc1_status = malloc(256); + sprintf(tc1_status, TC1_STATUS_JSON, sockets, sys_config->micoSystemConfig.ssid, + sys_config->micoSystemConfig.ssid, "TC1-AP", "123456"); - err = httpd_send_all_header(req, HTTP_RES_200, strlen(socket_status), HTTP_CONTENT_HTML_STR); + err = httpd_send_all_header(req, HTTP_RES_200, strlen(tc1_status), HTTP_CONTENT_HTML_STR); require_noerr_action(err, exit, app_httpd_log("ERROR: Unable to send http socket_status headers.")); - err = httpd_send_body(req->sock, status, strlen(socket_status)); + err = httpd_send_body(req->sock, (const unsigned char*)tc1_status, strlen(tc1_status)); require_noerr_action(err, exit, app_httpd_log("ERROR: Unable to send http socket_status body.")); exit: @@ -166,7 +170,8 @@ save_out: struct httpd_wsgi_call g_app_handlers[] = { {"/", HTTPD_HDR_DEFORT, 0, http_get_index_page, NULL, NULL, NULL}, - {"/socket", HTTPD_HDR_DEFORT, 0, http_get_socket_status, http_set_socket_status, NULL, NULL}, + {"/socket", HTTPD_HDR_DEFORT, 0, NULL, http_set_socket_status, NULL, NULL}, + {"/status", HTTPD_HDR_DEFORT, 0, http_get_tc1_status, NULL, NULL, NULL}, {"/wifi/config", HTTPD_HDR_DEFORT, 0, http_get_wifi_config, http_set_wifi_config, NULL, NULL}, }; diff --git a/TC1/http_server/index.html b/TC1/http_server/index.html index 1169acb..d3ee739 100644 --- a/TC1/http_server/index.html +++ b/TC1/http_server/index.html @@ -187,7 +187,7 @@ function Ajax(url, onsuccess, type, data) { xml_http.onreadystatechange = function () { if (xml_http.readyState == 4) { if (xml_http.status == 200) { - onsuccess(xml_http.responseText); + onsuccess(xml_http.responseText.replace(/'/g, '"')); } else { alert("Ajax error: " + xml_http.status); @@ -220,9 +220,9 @@ var pswd_ipt = document.getElementById("pswd"); var mode_rd1 = document.getElementById("mode1"); var mode_rd2 = document.getElementById("mode2"); -HttpGet("/socket", function (re) { - var status = re; - var status_arr = status.split(","); +HttpGet("/status", function (re) { + var status = JSON.parse(re); + var status_arr = status.sockets.split(","); for (var i = 0; i < status_arr.length; i++) { checkboxs[i].checked = status_arr[i] == "1"; } diff --git a/TC1/http_server/web_data.c b/TC1/http_server/web_data.c index b8785c0..fbbd95f 100644 --- a/TC1/http_server/web_data.c +++ b/TC1/http_server/web_data.c @@ -1 +1 @@ -const unsigned char index_html[0x8ee] = {0x1f,0x8b,0x08,0x00,0x09,0x2c,0x87,0x5d,0x02,0xff,0xed,0x5a,0x6d,0x6f,0xe2,0xb8,0x16,0xfe,0x3e,0xd2,0xfc,0x87,0x6c,0x46,0x1a,0x51,0x95,0x97,0x90,0x02,0x65,0x28,0x70,0x35,0xcb,0x8e,0x66,0xaa,0xd9,0x4e,0xab,0x2d,0xd2,0xac,0x74,0x75,0x85,0x4c,0x62,0x20,0xdb,0x90,0x64,0x13,0x53,0x5a,0x55,0xfd,0xef,0x7b,0x8e,0x1d,0x1b,0x07,0x02,0xa5,0x90,0x6a,0xbf,0x5c,0xaa,0x8a,0xd8,0x3e,0xe7,0xf8,0x39,0x3e,0xc7,0x8f,0x5f,0x42,0x77,0xc6,0xe6,0x7e,0xff,0xfd,0xbb,0xee,0x8c,0x12,0x17,0xbf,0xe7,0x94,0x11,0x63,0xc6,0x58,0x54,0xa1,0x7f,0x2f,0xbc,0xfb,0x9e,0xe9,0x84,0x01,0xa3,0x01,0xab,0xb0,0xc7,0x88,0x9a,0x46,0x5a,0xea,0x99,0x8c,0x3e,0xb0,0x1a,0x2a,0x43,0xdd,0x8c,0xc4,0x09,0x85,0xba,0x05,0x9b,0x54,0xda,0xa6,0xb2,0xa2,0x64,0x97,0x9e,0xcb,0x66,0x3d,0x97,0xde,0x7b,0x0e,0xad,0xf0,0x42,0xd9,0x0b,0x3c,0xe6,0x11,0xbf,0x92,0x38,0xc4,0xa7,0xbd,0x7a,0xd5,0x2a,0xcf,0xc9,0x83,0x37,0x5f,0xcc,0xb5,0x9a,0x45,0x42,0x63,0x5e,0x24,0x63,0xa8,0xb1,0x4c,0x23,0x20,0x73,0xda,0x33,0xef,0x3d,0xba,0x8c,0xc2,0x98,0xf1,0x8e,0x98,0xc7,0x7c,0xda,0xff,0x49,0x7d,0x27,0x9c,0x1b,0xc3,0x41,0xbd,0x5b,0x13,0x35,0xd0,0x94,0xb0,0x47,0x9f,0x1a,0x08,0x3b,0x45,0xeb,0x24,0x09,0xea,0x4c,0x3c,0xea,0xbb,0x80,0xf7,0x69,0x4e,0xe2,0xa9,0x17,0x54,0xc6,0x21,0x63,0xe1,0xbc,0x53,0xb7,0xa2,0x87,0x8b,0x71,0x18,0xbb,0x34,0xee,0x7c,0xb0,0x2c,0xcb,0x48,0x42,0xdf,0x73,0x8d,0x3a,0xd4,0x3e,0xbf,0x7f,0xe7,0x05,0xd1,0x82,0x95,0x13,0xea,0x53,0x87,0x95,0xc7,0x0b,0xd0,0x08,0x9e,0x22,0xe2,0xba,0x5e,0x30,0xed,0x34,0x85,0x48,0x5a,0x3b,0x26,0xce,0xdd,0x34,0x0e,0x17,0x81,0xdb,0x09,0xc2,0x80,0x4a,0x93,0x60,0xc7,0xf8,0x70,0x7e,0x7e,0x2e,0xcc,0xae,0xe4,0x3b,0xae,0x97,0xa0,0x7f,0x6e,0x6a,0x7c,0x55,0xe6,0x5d,0xaa,0xa2,0x6e,0xf7,0xc3,0x78,0x82,0x7f,0x68,0x84,0xb9,0xeb,0x30,0xaa,0x49,0xe8,0xdc,0x51,0x66,0x08,0xc4,0xd5,0x79,0xe8,0x52,0xf1,0x2c,0xfd,0x8d,0xbd,0xe9,0x8c,0x75,0x2a,0x0d,0x29,0xbe,0x18,0xcf,0x3d,0x96,0xb1,0x92,0x0a,0xb2,0x30,0x5a,0x19,0x5d,0x38,0x0e,0x4d,0x92,0x27,0x27,0xf4,0x43,0x18,0x9f,0x66,0xdb,0x75,0x9a,0x0e,0x6f,0xa1,0x71,0x1c,0xc6,0xb2,0x7e,0x32,0xb1,0x5d,0x9b,0x7b,0x57,0xf5,0x82,0x49,0x28,0xab,0xe9,0xb9,0x65,0x51,0xc2,0xab,0x03,0xca,0x96,0x61,0x7c,0x67,0xb8,0xde,0xfd,0x06,0x72,0x48,0x98,0x00,0x86,0x20,0xb7,0x8d,0xa3,0x7e,0xc2,0x38,0x56,0x88,0xef,0x4d,0x83,0x0e,0xaf,0xe0,0x4d,0xbe,0x17,0xd0,0xa7,0x19,0xe5,0x6e,0x7d,0x52,0x41,0x54,0x71,0x85,0x81,0x17,0xa1,0xfc,0xe0,0x52,0xfc,0x43,0x9d,0x0f,0x51,0xb8,0xa4,0xf1,0x08,0x3b,0xd2,0x9c,0xd5,0x52,0xa0,0xe2,0xd3,0x09,0xd3,0x75,0x21,0x23,0xb6,0x1b,0xc6,0xc6,0x95,0x55,0x1d,0x4f,0xdd,0x42,0x9b,0x51,0x98,0x40,0xba,0x43,0xb0,0x63,0xea,0x13,0xe6,0xdd,0xd3,0x8b,0xf0,0x9e,0xc6,0x13,0x3f,0x5c,0x76,0x12,0x27,0x0e,0x7d,0x5f,0x1f,0xf2,0x8a,0xd0,0x41,0xcf,0x84,0xbd,0x28,0xa6,0x4f,0xca,0x02,0x19,0x43,0x9f,0x0b,0x86,0x79,0xc5,0x51,0x58,0x17,0x60,0x86,0xb0,0x0e,0xe2,0xbd,0x48,0x3b,0x3d,0x6f,0x81,0x3e,0x9f,0x67,0x1d,0x6b,0x0f,0x7f,0x44,0x42,0x6c,0xba,0xd3,0xad,0xf1,0x29,0x84,0x73,0xa9,0x96,0xd2,0x03,0x3c,0x8e,0x43,0xf7,0x51,0x3c,0xc9,0x89,0x64,0x38,0x3e,0x49,0x92,0x9e,0x29,0x12,0x0f,0xa7,0x98,0x01,0x9f,0xae,0x4f,0xa7,0x34,0x70,0xfb,0x37,0xe8,0x83,0x31,0x00,0x2e,0x40,0x47,0xbb,0xb5,0xb4,0x3a,0x15,0x62,0x98,0xdc,0x86,0xe7,0x4a,0xed,0x11,0x1b,0x4b,0x03,0xa2,0x3d,0xd6,0x4a,0xa2,0xc6,0x5d,0xab,0xe1,0xb5,0x3c,0xc3,0xd3,0xc9,0xee,0xcc,0xa8,0x73,0x37,0x0e,0x1f,0x4c,0xcd,0x6e,0x5d,0xb2,0x47,0x16,0x64,0xc6,0x06,0xf0,0x0c,0xf5,0x8d,0x49,0x18,0xaf,0x94,0xfa,0xb7,0xfc,0xa1,0x02,0xbc,0xc2,0x5b,0xd7,0xc1,0xd4,0x36,0xd0,0x1c,0x88,0xcf,0x3e,0x04,0x9f,0xad,0xf0,0xd9,0x6f,0x8d,0xef,0xec,0x10,0x7c,0x67,0x0a,0xdf,0xd9,0x5e,0xf8,0xa0,0x18,0xbf,0x45,0xf0,0x1b,0x87,0x80,0x6f,0x28,0xf0,0x8d,0xb7,0x1e,0xdc,0xe6,0x21,0xf8,0x9a,0x0a,0x5f,0xf3,0xad,0xf1,0xb5,0x0e,0xc1,0xd7,0x52,0xf8,0x5a,0xaf,0x0d,0x3e,0x3c,0x22,0x2d,0xc8,0x12,0xb0,0xb4,0xa2,0x18,0xbe,0x58,0x65,0x18,0x42,0x2c,0xa3,0x59,0x81,0xd1,0x98,0x99,0x46,0x18,0x38,0xbe,0xe7,0xdc,0xf5,0xcc,0x5b,0xca,0x04,0x92,0xd2,0x09,0x60,0xe2,0x02,0xdd,0x9a,0x50,0xd3,0x0d,0x25,0x11,0x59,0x99,0x61,0x84,0x2d,0x92,0x51,0x12,0x19,0xe9,0xc2,0x67,0xf6,0xaf,0xbf,0x03,0x1f,0x82,0x88,0xc2,0x08,0xb0,0x38,0x35,0x4a,0x1a,0xcc,0x27,0x45,0xdc,0x1c,0x6d,0xe1,0xc4,0x5b,0xde,0xc9,0x3a,0x23,0xa2,0xb7,0x38,0xf4,0x6a,0x85,0xca,0x78,0xab,0x8d,0x05,0x2e,0x33,0x66,0x5f,0xe2,0xf8,0xbf,0xc4,0xdb,0x48,0x64,0x9e,0xb3,0xb1,0x11,0xc2,0xf9,0x86,0xd4,0xca,0x6d,0x1a,0x7c,0x11,0xed,0x99,0x72,0x6d,0xc6,0xb5,0x9d,0x2f,0xc6,0x36,0x3e,0xed,0x86,0xb3,0xdd,0x4a,0x53,0x5a,0x69,0x1c,0x61,0xa5,0xad,0xb0,0xb4,0x8e,0xb1,0xa2,0xb0,0xb4,0x0b,0xc1,0x22,0xb6,0x3f,0x47,0x0f,0x4c,0xfd,0xa8,0xf1,0x5d,0xa1,0x39,0x66,0x80,0x5b,0x2b,0x34,0xad,0x62,0xd0,0xb4,0x0b,0x19,0x1b,0xdb,0x2a,0x24,0x52,0xb6,0x5d,0x48,0xda,0xd8,0xc7,0x0c,0xf1,0xa7,0x15,0x9a,0x62,0x92,0xd8,0x2e,0x26,0x8b,0xcf,0x8e,0xca,0xe2,0xb6,0x32,0x73,0x54,0x16,0xb7,0x94,0x99,0x63,0x86,0xf8,0xdc,0x56,0x66,0x8a,0x19,0xe2,0xb3,0x62,0x86,0xb8,0x51,0x0c,0x51,0x34,0x8a,0x21,0x8a,0x46,0x31,0x44,0xd1,0x28,0x86,0x28,0x1a,0xc5,0x10,0x45,0xb3,0x18,0xa2,0x68,0x16,0x43,0x14,0xcd,0x62,0x88,0xa2,0x59,0x4c,0x16,0x37,0xdb,0x05,0x2d,0xbd,0x85,0x10,0x45,0xab,0x18,0xa2,0x68,0x15,0x43,0x14,0xad,0x62,0x86,0xb8,0x55,0xcc,0x10,0x9f,0xe7,0x0c,0xf1,0xbe,0xfb,0xf7,0xf4,0xbe,0x6a,0x7d,0x07,0xff,0x23,0xbd,0xc6,0x72,0xc2,0x60,0xe2,0x4d,0x73,0x6f,0x35,0x5e,0x3a,0xc9,0xca,0x1e,0xf8,0xf5,0x0b,0x1c,0x4c,0x6e,0x2f,0x7f,0xeb,0xec,0x7f,0x66,0x13,0xb7,0x85,0x7c,0x37,0xba,0xf4,0x26,0x1e,0x3f,0xee,0xcc,0x48,0x30,0xa5,0x78,0xde,0xc1,0xa6,0x9f,0x50,0x8b,0x07,0x9e,0x4d,0x5d,0xae,0x1f,0x46,0x78,0x9d,0x64,0xdc,0x13,0x7f,0x01,0x2a,0x96,0xd9,0xbf,0x22,0xc1,0x82,0xf8,0xdd,0x9a,0x68,0xd8,0x4f,0xad,0x6e,0xf6,0x07,0x57,0x83,0xc1,0xeb,0x94,0x6c,0x50,0x9a,0x79,0x01,0xa9,0xc0,0x18,0xbe,0x4e,0xf3,0x8c,0x77,0x37,0xdc,0xa1,0x04,0x47,0x34,0xee,0x7c,0x5e,0x53,0x7a,0x50,0xc4,0x11,0x8b,0x69,0xe2,0x90,0xc0,0xec,0xff,0xc1,0xbf,0x73,0x0e,0x83,0x07,0x5e,0x4e,0x1c,0x17,0x52,0x71,0x0c,0xe7,0xc7,0xee,0xc4,0x73,0x4d,0xed,0xea,0x5a,0x8f,0xee,0x80,0x7f,0x5f,0xa2,0x6c,0xa9,0x7e,0x62,0xd6,0x0a,0x47,0x7d,0x73,0xfb,0xf3,0x30,0xd4,0x51,0xb2,0x54,0xa8,0x23,0xb0,0x08,0x13,0xc4,0xdd,0x86,0xdc,0x7e,0x0b,0xe4,0x57,0xd7,0xbf,0x7d,0xd9,0x82,0x5c,0x4a,0xe2,0x75,0xb8,0xf9,0xd2,0x1d,0x48,0x4c,0x5c,0x2f,0x14,0x17,0x20,0x28,0xaf,0xee,0x0e,0xb9,0xf2,0x86,0x43,0x57,0x50,0x8b,0x91,0x78,0xe1,0x56,0x44,0x58,0xea,0x7f,0xbe,0xc9,0xbf,0x0d,0x79,0x09,0x84,0xbd,0x07,0x08,0x7b,0x2f,0x10,0x78,0x6b,0x38,0xfc,0x3c,0xbc,0xbc,0xfe,0xf1,0x6f,0xdf,0xcb,0xf0,0xba,0x94,0x49,0xff,0x95,0xbb,0x19,0xf1,0xbe,0x61,0x9d,0xdb,0x07,0xe9,0x6b,0x88,0xfc,0xfb,0x99,0x43,0xb8,0xfd,0xf2,0xe6,0x85,0xb4,0xc4,0x97,0x25,0x66,0xbf,0xfe,0xc9,0xae,0xd6,0x5b,0xed,0xea,0xd9,0x59,0xb5,0x6e,0xb5,0x0b,0x98,0x0f,0x24,0xb9,0xdb,0xab,0x63,0xbb,0xd9,0xac,0xca,0x7f,0xeb,0xf8,0x7e,0xbf,0x12,0x46,0x97,0xe4,0xf1,0xd5,0x3e,0xef,0x93,0x79,0xeb,0x31,0x4d,0x9c,0xd8,0x8b,0x98,0xfe,0x9a,0xef,0x2f,0x72,0x4f,0x44,0xad,0xc9,0x45,0x26,0x8b,0xc0,0xe1,0xab,0xc8,0xe7,0xbf,0xc8,0x43,0x69,0x11,0xfb,0x65,0x48,0xc1,0x34,0x75,0xca,0x5c,0xb1,0x6c,0xb8,0x84,0x91,0x13,0xe3,0x49,0x74,0x76,0x4f,0x62,0xe3,0x61,0xee,0x8f,0xf0,0x2d,0xa8,0xd1,0x33,0x02,0xba,0x34,0xfe,0xbc,0xfa,0xfd,0x1b,0x94,0xfe,0xa0,0x7f,0x2f,0x68,0xc2,0x4a,0x27,0x17,0x42,0x52,0x4a,0x55,0xc3,0x88,0x06,0x25,0x61,0x8a,0x77,0xc0,0xe2,0x05,0xdd,0x10,0x02,0xcc,0xa9,0x81,0x6f,0x94,0xb8,0x34,0x2e,0x99,0x03,0xfd,0xdd,0x6a,0xd9,0x30,0x49,0x14,0xc1,0xd4,0x20,0x88,0xb6,0xf6,0x50,0x59,0x2e,0x97,0x15,0x98,0xb5,0xf3,0x0a,0x98,0xa4,0x81,0x03,0x53,0xd7,0x35,0x37,0x7b,0x0e,0x62,0x30,0xf6,0x88,0x93,0x82,0x0a,0x4a,0x00,0xc8,0xca,0xe5,0x92,0x72,0x0a,0x3f,0xde,0xc4,0x28,0x29,0x45,0xae,0x86,0x29,0x0e,0x0a,0x3d,0xa3,0x91,0x11,0xdc,0x10,0x16,0x73,0x0e,0x05,0x6d,0xcb,0xda,0x10,0xc5,0x8f,0x1a,0x52,0xbd,0x87,0x24,0x82,0x6a,0x3a,0x84,0xa8,0x48,0xdc,0xf2,0xf3,0x9c,0x2d,0x52,0x3f,0xa1,0x79,0x56,0x89,0x4f,0x63,0x56,0x32,0x31,0x72,0x06,0x7f,0xd1,0xd8,0x31,0x4c,0xe3,0xd4,0x58,0xc3,0xb5,0xc3,0x78,0xfa,0xf8,0x9c,0x4a,0xa0,0x53,0x18,0x6b,0xe3,0x17,0x88,0xeb,0xc2,0xf7,0x8d,0x8f,0x1f,0x79,0x06,0xa0,0x67,0xe6,0xcd,0xf5,0xed,0xd0,0xcc,0x38,0xa7,0x85,0x2e,0x70,0xb9,0xa2,0xec,0xea,0x79,0x03,0x72,0x56,0x56,0xc9,0xbd,0x7f,0xf7,0xac,0xa5,0x20,0x26,0xd1,0x57,0xca,0xd6,0xb2,0x50,0xf5,0x99,0x9b,0xa1,0xe6,0xd7,0x2f,0x43,0x48,0x0e,0x84,0x8b,0x56,0xd7,0xcd,0xdd,0x84,0x09,0xdb,0xd0,0xc9,0xe4,0x73,0xbe,0x55,0xee,0x6d,0x2a,0x29,0xcc,0xbe,0x7f,0x87,0x99,0xaf,0x98,0x1a,0xc2,0x6d,0xb8,0xa1,0xb3,0x98,0x43,0x86,0x56,0xa7,0x94,0x7d,0xf1,0x29,0x3e,0x26,0xbf,0x3e,0x0e,0x70,0x02,0xff,0x80,0xd5,0xa8,0xa4,0xf1,0x3a,0x1a,0x41,0x7d,0x9c,0xd6,0x23,0x24,0xe3,0xfd,0xf4,0x25,0x99,0x73,0xfd,0x14,0x81,0x7c,0x13,0x98,0x6f,0xe0,0xd7,0xc7,0x4b,0xb7,0xa4,0xbd,0x2e,0x94,0x1d,0xcb,0x37,0x17,0xd8,0xaf,0x6a,0xcd,0x76,0x3c,0x24,0x53,0xd1,0x2d,0x5f,0x68,0xb5,0x2e,0xc5,0x86,0x10,0xdc,0x08,0x76,0xf5,0x99,0x6e,0x1b,0x65,0x87,0xb8,0x4b,0x1b,0x25,0x3e,0xdb,0xa5,0xc2,0xf7,0xe6,0x19,0x05,0x64,0xab,0x5d,0x7e,0xe1,0xd6,0x4f,0x2a,0xe0,0x8e,0xea,0x25,0x05,0xbe,0xeb,0x92,0x0a,0xb8,0xbe,0x8f,0x62,0xb7,0xbe,0x4b,0x41,0x6c,0x44,0xd6,0x34,0xec,0x97,0x34,0xec,0x74,0xb4,0x64,0x06,0x9b,0xb5,0xf4,0x65,0x50,0x59,0x63,0x9b,0x98,0x66,0x48,0x54,0xb2,0x06,0x0c,0xef,0xc5,0x7a,0xed,0x88,0xc4,0x31,0x06,0x8a,0x17,0xaa,0x09,0xf0,0x1e,0xd8,0x2c,0x2b,0x7e,0x03,0xde,0x33,0x4a,0x3c,0x9d,0x40,0xc8,0xba,0x80,0xaf,0xae,0xa6,0x58,0x05,0x3e,0x9c,0xb2,0x19,0x54,0x9f,0x9e,0x66,0x26,0xac,0xca,0x81,0xff,0x7a,0xff,0xab,0xf2,0x02,0x75,0x55,0x2f,0xa8,0x09,0xf5,0x7c,0xae,0xd7,0x4d,0x6d,0x82,0x0a,0xcf,0x94,0x1b,0xb7,0x94,0x5d,0x7f,0x2f,0x79,0xca,0xf0,0x6a,0x46,0xa0,0x55,0xf9,0x83,0x0c,0xa4,0x59,0x02,0x1c,0x20,0x99,0x45,0xa5,0x3d,0xef,0x5a,0x66,0x38,0x48,0xe5,0x6c,0x58,0x72,0x75,0x3c,0xd8,0x75,0xc4,0xdf,0x86,0x57,0xbf,0xa3,0xce,0xf5,0x77,0x73,0x6d,0xae,0x03,0xaa,0xcb,0x60,0xba,0x0f,0x2c,0x5c,0x7c,0x5e,0x83,0x8a,0x2f,0xc4,0x2f,0x43,0xf2,0x82,0x69,0xb5,0x5a,0x35,0x25,0x57,0xe8,0xc0,0xe4,0xeb,0x35,0x09,0x2d,0xc5,0x6a,0x9d,0xe8,0x61,0xe7,0x32,0xd0,0x21,0x66,0xb3,0x69,0xee,0x88,0xb3,0x0a,0xe2,0xd6,0x30,0x6b,0xb6,0x4e,0x7b,0x46,0x29,0x37,0xea,0xff,0x81,0x20,0x97,0x4d,0x03,0x16,0x0c,0x6b,0x95,0x56,0xe9,0x72,0xa0,0x78,0xf3,0xa5,0x2c,0x4e,0x9d,0x81,0x74,0x50,0xbe,0x3c,0x97,0xb5,0xee,0x4f,0x72,0x46,0x63,0x75,0xf8,0x56,0x91,0x4a,0xe7,0xbd,0x1e,0x24,0x49,0x1e,0x55,0x7e,0xb6,0xc5,0xf5,0x08,0x0e,0xe1,0xc2,0x9a,0x9c,0x96,0x7c,0x44,0x44,0x91,0x44,0xa3,0x20,0x8d,0xdb,0x70,0x50,0xaf,0x7c,0xbe,0x31,0x57,0x0d,0x48,0x00,0xd8,0x50,0xb7,0xcf,0x1a,0xcd,0xd6,0x79,0x5b,0x36,0x61,0x80,0x01,0x91,0x52,0x5c,0xaf,0x97,0x7a,0x58,0xaf,0xe0,0x6b,0xa7,0x89,0xb9,0xc2,0x8f,0xab,0xa6,0x00,0xd4,0x33,0xa0,0x36,0xa6,0x6c,0x11,0x07,0xda,0x8a,0x3a,0xc7,0x86,0x7a,0x36,0x42,0x59,0xf7,0xa4,0x77,0x1b,0xcd,0xf9,0x69,0x8b,0x9f,0x15,0x25,0xef,0x10,0xca,0x1b,0x59,0x7d,0x56,0x66,0x64,0x24,0x94,0x74,0x30,0x35,0x11,0xc9,0xb3,0xba,0x08,0xd6,0x6d,0x5d,0xec,0x0f,0x70,0x6f,0x1d,0x56,0xbe,0x7f,0x5b,0xc1,0xbf,0xc6,0x41,0x3d,0xf2,0xbb,0xbc,0xd4,0x33,0x21,0x3b,0x41,0xd2,0xf4,0x9b,0x8b,0x84,0xcc,0x9c,0x73,0x39,0x57,0xca,0x75,0x46,0xe3,0xd8,0x34,0x32,0x6b,0x99,0x24,0x4e,0xfb,0xb8,0xc5,0xd2,0xb2,0x49,0x25,0x53,0x36,0x67,0x56,0x49,0x9e,0xf5,0xe8,0x22,0x23,0x92,0xa6,0x6d,0xd6,0x99,0xed,0x81,0xca,0x4e,0x82,0xad,0x86,0xd7,0x26,0x45,0xbe,0xf5,0x8d,0xb9,0x9e,0x3d,0xc0,0x6e,0x75,0x70,0x1b,0x38,0xbe,0xc4,0x93,0x98,0xcc,0x13,0x4e,0xc8,0x09,0x9e,0xf5,0x4f,0x75,0xc4,0xa7,0xe6,0xc7,0x3b,0xfa,0xa8,0x55,0x6a,0x91,0x5a,0xe3,0x31,0xdc,0x68,0xd4,0xc4,0x6d,0xe4,0x2e,0x32,0x5b,0x6d,0xaa,0x63,0xaa,0x6f,0x9b,0x81,0xd5,0x04,0x92,0x93,0x35,0x67,0xe1,0x60,0xcd,0xcf,0x52,0xfc,0xe8,0x95,0xfe,0xf6,0xab,0x5b,0x4b,0x7f,0x35,0xfa,0x0f,0x71,0x2f,0xb0,0xd8,0x3e,0x2a,0x00,0x00}; +const unsigned char index_html[0x91d] = {0x1f,0x8b,0x08,0x00,0x7f,0x87,0x8b,0x5d,0x02,0xff,0xed,0x5a,0x6d,0x6f,0xe2,0xb8,0x16,0xfe,0x3e,0xd2,0xfc,0x87,0x6c,0x46,0x9a,0xa1,0x2a,0x2f,0x21,0x05,0xca,0x50,0xe0,0x6a,0x96,0x19,0xcd,0xf4,0xce,0x76,0x5a,0x6d,0x91,0x66,0x57,0x57,0x57,0xc8,0x24,0x86,0x66,0x1b,0x92,0x6c,0x62,0x4a,0xab,0xaa,0xff,0xfd,0x9e,0x63,0xc7,0xc6,0x81,0x40,0x29,0xa4,0xda,0x2f,0x97,0xaa,0x0a,0xb6,0xcf,0x39,0x7e,0x8e,0xcf,0xf1,0xe3,0x97,0xd0,0xfd,0xe5,0xf3,0xe5,0x60,0xf8,0xe7,0xd5,0x17,0xe3,0x86,0xcd,0xfc,0xfe,0xdb,0x37,0x5d,0xf5,0xa4,0xc4,0x85,0xa7,0x01,0x9f,0xee,0x8c,0x32,0x02,0x02,0x2c,0xaa,0xd0,0xbf,0xe7,0xde,0x5d,0xcf,0x74,0xc2,0x80,0xd1,0x80,0x55,0xd8,0x43,0x44,0x4d,0x23,0x2d,0xf5,0x4c,0x46,0xef,0x59,0x0d,0x0d,0x40,0xdd,0x0d,0x89,0x13,0x0a,0x75,0x73,0x36,0xa9,0xb4,0xcd,0x8c,0x25,0x25,0xbf,0xf0,0x5c,0x76,0xd3,0x73,0xe9,0x9d,0xe7,0xd0,0x0a,0x2f,0x94,0xbd,0xc0,0x63,0x1e,0xf1,0x2b,0x89,0x43,0x7c,0xda,0xab,0x57,0xad,0xf2,0x8c,0xdc,0x7b,0xb3,0xf9,0x4c,0xab,0x99,0x27,0x34,0xe6,0x45,0x32,0x86,0x1a,0xcb,0x34,0x02,0x32,0xa3,0x3d,0xf3,0xce,0xa3,0x8b,0x28,0x8c,0x99,0xea,0x8c,0x79,0xcc,0xa7,0xfd,0x9f,0xd4,0x77,0xc2,0x99,0x31,0x1c,0xd4,0xbb,0x35,0x51,0x93,0x36,0x27,0xec,0xc1,0xa7,0x06,0xba,0x90,0x22,0x77,0x92,0x44,0xea,0x4e,0x3c,0xea,0xbb,0x80,0xff,0x71,0x46,0xe2,0xa9,0x17,0x54,0xc6,0x21,0x63,0xe1,0xac,0x53,0xb7,0xa2,0xfb,0xb3,0x71,0x18,0xbb,0x34,0xee,0xbc,0xb3,0x2c,0xcb,0x48,0x42,0xdf,0x73,0x8d,0x3a,0xd4,0x3e,0x09,0x45,0x2f,0x88,0xe6,0xac,0x9c,0x50,0x9f,0x3a,0xac,0x3c,0x9e,0x83,0x56,0xf0,0x18,0x11,0xd7,0xf5,0x82,0x69,0xa7,0xa9,0x29,0x9f,0x9e,0x9e,0xae,0x2b,0xa7,0xf2,0x63,0xe2,0xdc,0x4e,0xe3,0x70,0x1e,0xb8,0x9d,0x20,0x0c,0xa8,0xd4,0x01,0x41,0x63,0xa9,0x97,0xd5,0xe9,0xb8,0x5e,0x82,0xa3,0xe1,0xa6,0x5d,0x2f,0xcb,0x1c,0x90,0x2a,0xea,0xb6,0xdf,0x8d,0x27,0xf8,0x27,0x0d,0x31,0x37,0x03,0x34,0xad,0xad,0x26,0xa1,0x73,0x4b,0x59,0xea,0x57,0x75,0x16,0xba,0x54,0x7c,0x97,0x23,0x13,0x7b,0xd3,0x1b,0xd6,0xa9,0x34,0x74,0x95,0xf9,0x78,0xe6,0xb1,0x8c,0xb5,0x54,0x98,0x85,0x51,0xd6,0xf8,0xdc,0x71,0x68,0x92,0x3c,0x3a,0xa1,0x1f,0xc2,0xa0,0x34,0xdb,0xae,0xd3,0x74,0x54,0x2b,0x8d,0xe3,0x30,0x96,0x6d,0x93,0x89,0xed,0xda,0xca,0xeb,0xaa,0x17,0x4c,0x42,0xd9,0x44,0x4f,0x2d,0x8b,0x12,0xd5,0x14,0x50,0xb6,0x08,0xe3,0x5b,0xc3,0xf5,0xee,0x72,0x3d,0x82,0xf4,0x0b,0x60,0x88,0x36,0xb6,0x73,0x8f,0x1e,0x31,0x23,0x2a,0xc4,0xf7,0xa6,0x41,0x87,0x57,0xa8,0x66,0xdf,0x0b,0xe8,0xe3,0x0d,0xe5,0x6e,0x7f,0x54,0x11,0x55,0x19,0x02,0x41,0x12,0x71,0x7d,0xe7,0x52,0xfc,0x93,0x7a,0xef,0xa2,0x70,0x41,0xe3,0x11,0x76,0xaa,0x0d,0x86,0x96,0x50,0x15,0x9f,0x4e,0x98,0xae,0x0f,0xf9,0xb5,0xd9,0x38,0x36,0x66,0x2d,0xeb,0xb8,0xea,0x16,0xda,0x8d,0xc2,0x04,0x26,0x13,0x24,0x47,0x4c,0x7d,0xc2,0xbc,0x3b,0x7a,0x16,0xde,0xd1,0x78,0xe2,0x87,0x8b,0x4e,0xe2,0xc4,0xa1,0xef,0xeb,0x61,0xa9,0x08,0x1d,0xe9,0xa5,0xb0,0x19,0xc5,0xf4,0x51,0x59,0x21,0x63,0xe8,0x7b,0xce,0x30,0x1f,0x39,0x1a,0xeb,0x0c,0x4c,0x11,0xd6,0x41,0xdc,0x67,0x69,0xc7,0xa7,0x2d,0xb0,0xc1,0x67,0x72,0xc7,0xda,0xc1,0x2f,0x91,0x3c,0xf9,0x6e,0x75,0x6b,0x7c,0x82,0x22,0x17,0xd5,0x52,0x32,0xea,0x8e,0x43,0xf7,0x01,0x9f,0x72,0x7a,0x1a,0x8e,0x4f,0x92,0xa4,0x67,0x8a,0x24,0x55,0x13,0xdf,0xa7,0x53,0x1a,0xb8,0xfd,0x2b,0xf4,0xc1,0x18,0x00,0xdb,0xa0,0xb3,0xdd,0x5a,0x5a,0x2d,0xd9,0x01,0x27,0x84,0xe1,0xb9,0x52,0x7b,0xc4,0xc6,0xd2,0x80,0x68,0x8f,0xb5,0x92,0xa8,0x71,0x57,0x6a,0x78,0x2d,0x9f,0x0d,0x29,0x8d,0x38,0x37,0xd4,0xb9,0x1d,0x87,0xf7,0xa6,0x66,0xb7,0x2e,0xf9,0x29,0x0b,0x32,0x63,0x03,0x98,0x8c,0xfa,0xc6,0x24,0x8c,0x97,0x4a,0xfd,0x6b,0xfe,0xa5,0x02,0xac,0xc5,0x5b,0x57,0xc1,0xd4,0xd6,0xd0,0xec,0x89,0xcf,0xde,0x07,0x9f,0xad,0xf0,0xd9,0xaf,0x8d,0xef,0x64,0x1f,0x7c,0x27,0x0a,0xdf,0xc9,0x4e,0xf8,0xa0,0x18,0xbf,0x46,0xf0,0x1b,0xfb,0x80,0x6f,0x28,0xf0,0x8d,0xd7,0x1e,0xdc,0xe6,0x3e,0xf8,0x9a,0x0a,0x5f,0xf3,0xb5,0xf1,0xb5,0xf6,0xc1,0xd7,0x52,0xf8,0x5a,0x2f,0x0d,0x3e,0x7c,0x45,0x5a,0x90,0x25,0x60,0x6b,0x45,0x31,0x7c,0x51,0xcb,0x30,0x84,0x58,0x7a,0xb3,0x02,0xa3,0x31,0x33,0x8d,0x30,0x70,0x7c,0xcf,0xb9,0xed,0x99,0xd7,0x94,0x09,0x24,0xa5,0x23,0xc0,0xc4,0x05,0xba,0x35,0xa1,0xa6,0x1b,0x4a,0x22,0xb2,0x34,0xc3,0x08,0x9b,0x27,0xa3,0x24,0x32,0xd2,0xc5,0xd1,0xec,0x5f,0x7e,0x07,0x2e,0x04,0x11,0x85,0x11,0x60,0x71,0x5a,0x94,0x34,0x08,0x85,0x1c,0x52,0xc4,0x2d,0xd8,0x06,0x4e,0xbc,0xe6,0x9d,0xac,0x32,0x22,0x7a,0x8b,0x43,0xaf,0x56,0xaa,0x8c,0xb7,0xda,0x58,0xe0,0x52,0x63,0xf6,0x25,0x8e,0xff,0x4b,0xbc,0x8e,0x44,0xe6,0x7b,0x36,0x36,0x42,0x38,0xdf,0x90,0x5a,0xb9,0x4d,0x83,0x2f,0xa0,0x3d,0x53,0xae,0xcd,0xb8,0xbe,0xf3,0xc5,0xd8,0xc6,0x6f,0xdb,0xe1,0x6c,0xb6,0xd2,0x94,0x56,0x1a,0x07,0x58,0x69,0x2b,0x2c,0xad,0x43,0xac,0x28,0x2c,0xed,0x42,0xb0,0x88,0x2d,0xd0,0xc1,0x03,0x53,0x3f,0x68,0x7c,0x97,0x68,0x0e,0x19,0xe0,0xd6,0x12,0x4d,0xab,0x18,0x34,0xed,0x42,0xc6,0xc6,0xb6,0x0a,0x89,0x94,0x6d,0x17,0x92,0x36,0xf6,0x21,0x43,0xfc,0x71,0x89,0xa6,0x98,0x24,0xb6,0x8b,0xc9,0xe2,0x93,0x83,0xb2,0xb8,0xad,0xcc,0x1c,0x94,0xc5,0x2d,0x65,0xe6,0x90,0x21,0x3e,0xb5,0x95,0x99,0x62,0x86,0xf8,0xa4,0x98,0x21,0x6e,0x14,0x43,0x14,0x8d,0x62,0x88,0xa2,0x51,0x0c,0x51,0x34,0x8a,0x21,0x8a,0x46,0x31,0x44,0xd1,0x2c,0x86,0x28,0x9a,0xc5,0x10,0x45,0xb3,0x18,0xa2,0x68,0x16,0x93,0xc5,0xcd,0x76,0x41,0x4b,0x6f,0x21,0x44,0xd1,0x2a,0x86,0x28,0x5a,0xc5,0x10,0x45,0xab,0x98,0x21,0x6e,0x15,0x33,0xc4,0xa7,0x39,0x43,0xbc,0xeb,0xfe,0x3d,0xbd,0xc7,0x5a,0xdd,0xc1,0xff,0x48,0xaf,0xb7,0x9c,0x30,0x98,0x78,0xd3,0xdc,0x5b,0x8d,0xe7,0x4e,0xb2,0xb2,0x07,0x7e,0xfd,0x02,0x07,0x93,0xeb,0xf3,0xcf,0x9d,0xdd,0xcf,0x6c,0xe2,0x86,0x91,0xef,0x46,0x17,0xde,0xc4,0xe3,0xc7,0x9d,0x1b,0x12,0x4c,0x29,0x9e,0x77,0xb0,0xe9,0x27,0xd4,0xe2,0x81,0x67,0x5d,0x97,0xeb,0x87,0x11,0x5e,0x27,0x19,0x77,0xc4,0x9f,0x83,0x8a,0x65,0xf6,0x2f,0x48,0x30,0x27,0x7e,0xb7,0x26,0x1a,0x76,0x53,0xab,0x9b,0xfd,0xc1,0xc5,0x60,0xf0,0x32,0x25,0x1b,0x94,0x6e,0xbc,0x80,0x54,0x60,0x0c,0x5f,0xa6,0x79,0xc2,0xbb,0x1b,0x6e,0x51,0x82,0x23,0x1a,0x77,0x3e,0xaf,0x29,0x3d,0x28,0xe2,0x88,0xc5,0x34,0x71,0x48,0x60,0xf6,0x7f,0xe7,0xcf,0x9c,0xc3,0xe0,0x9e,0x97,0x13,0x87,0x85,0x54,0x1c,0xc3,0xf9,0xb1,0x3b,0xf1,0x5c,0x53,0xbb,0x14,0xd7,0xa3,0x3b,0xe0,0xcf,0x73,0x94,0x2d,0xd5,0x8f,0xcc,0x5a,0xe1,0xa8,0xaf,0xae,0x7f,0xee,0x87,0x3a,0x4a,0x16,0x0a,0x75,0x04,0x16,0x61,0x82,0xb8,0x9b,0x90,0xdb,0xaf,0x81,0xfc,0xe2,0xf2,0xf3,0x97,0x0d,0xc8,0xa5,0x24,0x5e,0x9d,0x9b,0xcf,0xdd,0x81,0xc4,0xc4,0xf5,0x42,0x71,0x01,0x82,0xf2,0xea,0xee,0x90,0x2b,0xaf,0x39,0x74,0x01,0xb5,0x18,0x89,0x67,0x6e,0x45,0x84,0xa5,0xfe,0xa7,0xab,0xfc,0xdb,0x90,0xe7,0x40,0xd8,0x3b,0x80,0xb0,0x77,0x02,0x81,0xb7,0x86,0xc3,0x4f,0xc3,0xf3,0xcb,0x1f,0xff,0xf4,0xbd,0x0c,0xaf,0x4b,0x99,0xf4,0x1f,0xb9,0x9b,0x11,0xef,0x20,0x56,0xb9,0x7d,0x90,0xbe,0x9a,0xc8,0xbf,0x9f,0xd9,0x87,0xdb,0xcf,0xaf,0x9e,0x49,0x4b,0x7c,0x91,0x62,0xf6,0xeb,0x1f,0xed,0x6a,0xbd,0xd5,0xae,0x9e,0x9c,0x54,0xeb,0x56,0xbb,0x80,0xf9,0x40,0x92,0xdb,0x9d,0x3a,0xb6,0x9b,0xcd,0xaa,0xfc,0xb7,0x0e,0xef,0xf7,0x2b,0x61,0x74,0x41,0x1e,0x5e,0xec,0xf3,0x2e,0x99,0xb7,0x1a,0xd3,0xc4,0x89,0xbd,0x88,0xe9,0x2f,0x10,0xff,0x22,0x77,0x44,0xd4,0x9a,0x5c,0x64,0x32,0x0f,0x1c,0xbe,0x8a,0x7c,0xfa,0x8b,0xdc,0x97,0xe6,0xb1,0x5f,0x86,0x14,0x4c,0x53,0xa7,0xcc,0x15,0xcb,0x86,0x4b,0x18,0x39,0x32,0x1e,0x45,0x67,0x77,0x24,0x36,0xee,0x67,0xfe,0x08,0xdf,0xb5,0x1a,0x3d,0x23,0xa0,0x0b,0xe3,0x8f,0x8b,0xdf,0xbe,0x41,0xe9,0x77,0xfa,0xf7,0x9c,0x26,0xac,0x74,0x74,0x26,0x24,0xa5,0x54,0x35,0x8c,0x68,0x50,0x12,0xa6,0x78,0x07,0x2c,0x9e,0xd3,0x35,0x21,0xc0,0x9c,0x1a,0xf8,0x46,0x89,0x4b,0xe3,0x92,0x39,0xd0,0xdf,0xe0,0x96,0x0d,0x93,0x44,0x11,0x4c,0x0d,0x82,0x68,0x6b,0xf7,0x95,0xc5,0x62,0x51,0x81,0x59,0x3b,0xab,0x80,0x49,0x1a,0x38,0x30,0x75,0x5d,0x73,0xbd,0xe7,0x20,0x06,0x63,0x0f,0x38,0x29,0xa8,0xa0,0x04,0x80,0xac,0x5c,0x2e,0x29,0xa7,0xf8,0x6b,0xd1,0x89,0x51,0x52,0x8a,0x5c,0x0d,0x53,0x1c,0x14,0x7a,0x46,0x23,0x23,0xb8,0x26,0x2c,0xe6,0x1c,0x0a,0xda,0x96,0xb5,0x26,0x8a,0x1f,0x35,0xa4,0x7a,0x0f,0x49,0x04,0xd5,0x74,0x08,0x51,0x81,0x42,0xe4,0x13,0x87,0x96,0x6a,0x1f,0x6a,0xd3,0xb2,0xf1,0xc1,0xfc,0x70,0x24,0x5d,0x91,0x9f,0xa7,0x6c,0x91,0xfa,0x09,0xcd,0xeb,0x88,0xf8,0x34,0x66,0x25,0x13,0x83,0x69,0xf0,0x77,0x93,0x1d,0xc3,0x34,0x8e,0x8d,0x15,0xa8,0x5b,0x8c,0xa7,0x5f,0x9f,0x52,0x09,0xf4,0x13,0xc3,0x6f,0xfc,0x02,0xa1,0x9e,0xfb,0xbe,0xf1,0xfe,0x3d,0x4f,0x0a,0x74,0xd6,0xbc,0xba,0xbc,0x1e,0x9a,0x19,0x7f,0xb5,0x68,0x06,0x2e,0x57,0x94,0x5d,0x3d,0xad,0x41,0xce,0xca,0x2a,0xb9,0xb7,0x6f,0x9e,0xb4,0xac,0xc4,0xbc,0xfa,0x4a,0xd9,0x4a,0x62,0xaa,0x3e,0x73,0x93,0xd6,0xfc,0xfa,0x65,0x08,0xf9,0x82,0x70,0xd1,0xea,0xaa,0xb9,0xab,0x30,0x61,0x6b,0x3a,0x99,0x14,0xcf,0xb7,0xca,0xbd,0x4d,0x25,0x85,0xd9,0xb7,0x6f,0x70,0x32,0x28,0xf2,0x86,0x0c,0x30,0xdc,0xd0,0x99,0xcf,0x20,0x69,0xab,0x53,0xca,0xbe,0xf8,0x14,0xbf,0x26,0xbf,0x3e,0x0c,0x70,0x4e,0xff,0x80,0x05,0xaa,0xa4,0x51,0x3d,0x1a,0x41,0x7d,0x9c,0xe9,0x23,0xe4,0xe7,0xdd,0xf4,0x25,0xbf,0x73,0xfd,0x14,0x81,0x7c,0x39,0x98,0x6f,0xe0,0xd7,0x87,0x73,0xb7,0xa4,0xbd,0x41,0x94,0x1d,0xcb,0x97,0x19,0xd8,0xaf,0x6a,0xcd,0x76,0x3c,0x24,0x53,0xd1,0x2d,0x5f,0x7b,0xb5,0x2e,0xc5,0x1e,0x11,0xdc,0x08,0xb6,0xf5,0x99,0xee,0x24,0x65,0x87,0xb8,0x71,0x1b,0x25,0x3e,0xdb,0xa6,0xc2,0xb7,0xeb,0x19,0x05,0x24,0xb0,0x6d,0x7e,0xe1,0x6e,0x50,0x2a,0xe0,0x26,0xeb,0x39,0x05,0xbe,0x11,0x93,0x0a,0xb8,0xe4,0x8f,0x62,0xb7,0xbe,0x4d,0x41,0xec,0x4d,0x56,0x34,0xec,0xe7,0x34,0xec,0x74,0xb4,0x64,0x06,0x9b,0x35,0x11,0x3a,0x48,0xa1,0x25,0x01,0xc5,0x34,0xc3,0xab,0x92,0x48,0x8c,0x7f,0x5f,0x5f,0xfe,0xa8,0x46,0xf8,0xf3,0x14,0x14,0x39,0x5b,0x95,0x18,0x91,0x38,0xc6,0xa0,0xf1,0x42,0xfa,0xf3,0x07,0x78,0x02,0x3d,0x42,0x3f,0x65,0x45,0x83,0x40,0x8f,0x46,0x89,0xa7,0x18,0x08,0x5b,0x67,0xf0,0xe8,0x6a,0x06,0xaa,0x40,0x9b,0x53,0x76,0x03,0xd5,0xc7,0xc7,0x99,0x49,0xac,0xf2,0xe2,0x3f,0xde,0x7f,0xab,0xbc,0x40,0x5d,0xd5,0x1b,0x6a,0x42,0x3d,0x9f,0xff,0x75,0x53,0x9b,0xb4,0xc2,0x5b,0xe5,0xda,0x35,0x65,0x97,0xdf,0x4b,0x9e,0x32,0xbc,0x9c,0x25,0x68,0x55,0xfe,0xd6,0x03,0xd9,0x98,0x00,0x2f,0x48,0xb6,0x51,0x53,0x81,0x77,0x2d,0xb3,0x1e,0xa4,0x72,0xf6,0x35,0xb9,0x3a,0x1e,0x6c,0x4e,0xe2,0x6f,0xc3,0x8b,0xdf,0x50,0xe7,0xf2,0xbb,0xb9,0x32,0xff,0x01,0xd5,0x79,0x30,0xdd,0x05,0x16,0xae,0x51,0x2f,0x41,0xc5,0xd7,0xeb,0xe7,0x21,0x79,0xc1,0xb4,0x5a,0xad,0x9a,0x92,0x3f,0x74,0x60,0xf2,0x2d,0x9c,0x84,0x96,0x62,0xb5,0x32,0xe1,0x17,0xa1,0x1e,0x25,0x98,0xe1,0xa6,0xb9,0x25,0xce,0x2a,0x88,0x1b,0xc3,0xac,0xd9,0x3a,0xee,0x19,0xa5,0xdc,0xa8,0xff,0x0b,0x82,0x5c,0x36,0x0d,0x58,0x44,0xac,0x65,0x5a,0xa5,0x4b,0x84,0xe2,0x52,0xc8,0x6c,0xf1,0xe6,0x73,0x43,0x66,0xa7,0xce,0x40,0x3a,0x28,0x5f,0x9e,0xca,0x5a,0xf7,0x47,0x39,0xa3,0xb1,0x3c,0xa3,0xab,0x48,0xa5,0x5c,0xa0,0x07,0x49,0x12,0x4a,0x95,0x1f,0x81,0x71,0x8d,0x82,0xb3,0xba,0xb0,0x26,0xa7,0x2a,0x1f,0x11,0x51,0x24,0xd1,0x28,0x48,0xe3,0x36,0x1c,0xd4,0x2b,0x9f,0xae,0xcc,0x65,0x03,0x92,0x02,0x36,0xd4,0xed,0x93,0x46,0xb3,0x75,0xda,0x96,0x4d,0x18,0x60,0x40,0xa4,0x14,0x57,0xeb,0xa5,0x1e,0xd6,0x2b,0xf8,0xda,0xa1,0x63,0xa6,0xf0,0xe3,0x4a,0x2a,0x00,0xf5,0x0c,0xa8,0x8d,0x29,0x9b,0xc7,0x81,0xb6,0xca,0xce,0xb0,0xa1,0x9e,0x8d,0x50,0xd6,0x3d,0xe9,0xdd,0x5a,0x73,0x7e,0xda,0xe2,0x67,0x49,0xd3,0x5b,0x84,0xf2,0x46,0x56,0x9f,0x95,0x19,0x19,0x09,0x25,0x1d,0x4c,0x4d,0x44,0x72,0xaf,0x2e,0x82,0x75,0x1b,0x37,0x00,0x7b,0xb8,0xb7,0x0a,0x2b,0xdf,0xbf,0x8d,0xe0,0x5f,0xe2,0xa0,0x1e,0xf9,0x6d,0x5e,0xea,0x99,0x90,0x9d,0x20,0x69,0xfa,0xcd,0x44,0x42,0x66,0x8e,0xc3,0x9c,0x2b,0xe5,0xda,0xa3,0x71,0x6c,0x1a,0x99,0x95,0x4c,0x12,0x97,0x02,0xb8,0xed,0xd2,0xb2,0x49,0x25,0x53,0x36,0x67,0x96,0x49,0x9e,0xf5,0xe8,0x2c,0x23,0x92,0xa6,0x6d,0xd6,0x99,0xcd,0x81,0xca,0x4e,0x82,0x8d,0x86,0x57,0x26,0x45,0xbe,0xf5,0xb5,0xb9,0x9e,0x3d,0xe7,0x6e,0x74,0x70,0x13,0x38,0xbe,0xec,0x93,0x98,0xcc,0x12,0x4e,0xc8,0x09,0x5e,0x09,0x1c,0xeb,0x88,0x8f,0xcd,0xf7,0xb7,0xf4,0x41,0xab,0xd4,0x22,0xb5,0xc2,0x63,0xb8,0xf9,0xa8,0x89,0x4b,0xcb,0x6d,0x64,0xb6,0xdc,0x68,0x2f,0x17,0xe7,0x94,0xd5,0x04,0x92,0xa3,0x15,0x67,0xe1,0xfc,0xcd,0x8f,0x5c,0xfc,0x84,0x26,0x7f,0x20,0x56,0x4b,0x7f,0xc6,0xfa,0x3f,0xb7,0x40,0xdc,0x43,0xe0,0x2a,0x00,0x00};