diff --git a/CHANGELOG.md b/CHANGELOG.md index a2c76b91..920922ee 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,11 +10,13 @@ All notable changes to this project will be documented in this file. - [webui] available flash space calculation - [webui] #143 duplicate records on User Data backup - [firmware] #140 MQTT Heartbeat +- [webui] official board's hardware settings did not populate #### Changed - [firmware] do not initialize serial output unless we are debugging - [build] slice main.cpp to multiple parts for better readability - [webui] Access Type Active to Always +- [firmware] more reliable activation of relay ## [0.8.0] #### Breaking Changes diff --git a/src/main.cpp b/src/main.cpp index fa4612f4..f57710bb 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -83,9 +83,13 @@ const char *http_username = "admin"; char *http_pass = NULL; unsigned long previousMillis = 0; unsigned long previousLoopMillis = 0; +unsigned long currentMillis = 0; unsigned long cooldown = 0; +unsigned long deltaTime = 0; +unsigned long uptime = 0; bool shouldReboot = false; bool activateRelay = false; +bool deactivateRelay = false; bool inAPMode = false; bool isWifiConnected = false; unsigned long autoRestartIntervalSeconds = 0; @@ -173,14 +177,40 @@ void ICACHE_FLASH_ATTR setup() { } void ICACHE_RAM_ATTR loop() { - unsigned long currentMillis = millis(); - unsigned long deltaTime = currentMillis - previousLoopMillis; - unsigned long uptime = NTP.getUptimeSec(); + currentMillis = millis(); + deltaTime = currentMillis - previousLoopMillis; + uptime = NTP.getUptimeSec(); previousLoopMillis = currentMillis; if (currentMillis >= cooldown) { rfidloop(); } + + if (activateRelay) { + #ifdef DEBUG + Serial.print("mili : "); + Serial.println(millis()); + Serial.println("activating relay now"); + #endif + digitalWrite(relayPin, !relayType); + previousMillis = millis(); + activateRelay = false; + deactivateRelay = true; + writeEvent("INFO", "sys", "Activated Relay", ""); + } else if((currentMillis - previousMillis >= activateTime) && (deactivateRelay)) { + #ifdef DEBUG + Serial.println(currentMillis); + Serial.println(previousMillis); + Serial.println(activateTime); + Serial.println(activateRelay); + Serial.println("deactivate relay after this"); + Serial.print("mili : "); + Serial.println(millis()); + #endif + digitalWrite(relayPin, relayType); + deactivateRelay = false; + writeEvent("INFO", "sys", "De-Activated Relay", ""); + } if (formatreq) { #ifdef DEBUG @@ -213,16 +243,6 @@ void ICACHE_RAM_ATTR loop() { ESP.restart(); } - if (currentMillis - previousMillis >= activateTime && activateRelay) { - activateRelay = false; - digitalWrite(relayPin, relayType); - } - - if (activateRelay) { - digitalWrite(relayPin, !relayType); - - } - if (isWifiConnected) { wiFiUptimeMillis += deltaTime; } @@ -244,10 +264,10 @@ void ICACHE_RAM_ATTR loop() { enableWifi(); } } - - if (mqttClient.connected()) { - if (mqttenabled == 1) { - if ((unsigned)now() > nextbeat) { + + if (mqttenabled == 1) { + if (mqttClient.connected()) { + if ((unsigned)now() > nextbeat) { mqtt_publish_heartbeat(now()); nextbeat = (unsigned)now() + interval; #ifdef DEBUG @@ -257,4 +277,5 @@ void ICACHE_RAM_ATTR loop() { } } } + } diff --git a/src/rfid.esp b/src/rfid.esp index d4bb5648..1c492f0d 100644 --- a/src/rfid.esp +++ b/src/rfid.esp @@ -101,7 +101,6 @@ void ICACHE_FLASH_ATTR rfidloop() { #endif if (AccType == 1) { activateRelay = true; - previousMillis = millis(); ws.textAll("{\"command\":\"giveAccess\"}"); #ifdef DEBUG Serial.println(" have access"); @@ -110,7 +109,6 @@ void ICACHE_FLASH_ATTR rfidloop() { mqtt_publish_access(now(), "true", "Always", username, uid); } } else if (AccType == 99) { - previousMillis = millis(); doEnableWifi = true; activateRelay = true; ws.textAll("{\"command\":\"giveAccess\"}"); diff --git a/src/webh/esprfid.js.gz.h b/src/webh/esprfid.js.gz.h index 04cebe0c..ae2d21fc 100644 --- a/src/webh/esprfid.js.gz.h +++ b/src/webh/esprfid.js.gz.h @@ -1,11 +1,11 @@ -#define esprfid_js_gz_len 7388 +#define esprfid_js_gz_len 7372 const uint8_t esprfid_js_gz[] PROGMEM = { -0x1f,0x8b,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x0a,0xed,0x3d,0xfd,0x77,0xdb,0x36,0x92,0xff,0x0a,0x8d,0x66,0x13,0xb1,0x86,0x69,0x29,0x5f,0xaf,0xa1,0xc2,0xf8,0xa5,0xf9,0xd8,0x66,0x5f,0x9a,0xf6,0x62,0xe7,0xba,0xfb,0x7c,0xbe,0x3c,0x4a,0x84,0x24,0x36,0x14,0xa9,0x25,0xa1,0x28,0xae,0xa3,0xff,0xfd,0x66,0x06,0x00,0x09,0x52,0x24,0x25,0xb7,0xdd,0xbd,0x77,0xef,0xdd,0x2f,0x96,0x04,0x60,0x06,0x03,0x60,0x66,0x30,0x33,0x18,0xc0,0x9f,0xc3,0xdc,0x59,0xcb,0xe9,0xb9,0x98,0x66,0x69,0x54,0x70,0x19,0x2f,0xc5,0x6f,0x59,0x2a,0x78,0xf8,0x6b,0xf8,0x25,0x9b,0xfc,0xca,0x17,0x61,0xb1,0x0a,0xe7,0xa2,0xe0,0x49,0x36,0x8f,0x42,0x19,0x72,0x51,0xac,0xf2,0x59,0x1c,0x41,0x73,0x29,0x52,0xc9,0x3f,0x8b,0xbc,0x88,0xb3,0x34,0x60,0x43,0xef,0x3b,0x6f,0xc4,0xf8,0x46,0x4c,0x8a,0x6c,0xfa,0x29,0x48,0xd7,0x49,0xc2,0x37,0xc5,0x87,0x3c,0x0e,0xd8,0xa6,0xf0,0x4f,0x4f,0xd9,0xf1,0x26,0x4e,0xa3,0x6c,0xe3,0x25,0xd9,0x34,0x94,0x00,0xe2,0x2d,0xb2,0x42,0xa6,0xe1,0x52,0x1c,0xb3,0xd3,0x4d,0xc1,0x38,0x62,0x0f,0x2e,0xaf,0x78,0x5c,0xfc,0x34,0x9b,0xc5,0xd3,0x38,0x4c,0xbe,0xcf,0xc2,0x3c,0x0a,0x8e,0x46,0x1c,0x3a,0x9b,0xc5,0xf3,0xe0,0x66,0x9a,0x2d,0x97,0x61,0x1a,0xf9,0x4c,0x15,0xcc,0xe2,0x44,0x30,0x9e,0x0a,0xb9,0xc9,0xf2,0x4f,0xfe,0xcd,0xa4,0x28,0x62,0xa8,0x63,0xdc,0x7c,0x6e,0x96,0x59,0x24,0xfc,0x11,0x5f,0xc4,0xf0,0x31,0xe4,0xab,0x62,0x43,0xc5,0xd9,0x6c,0x86,0xc3,0x84,0x92,0x68,0x31,0x5d,0x41,0x7d,0xbc,0x22,0xa8,0xf5,0x04,0x50,0xe1,0xb7,0x79,0x28,0xc5,0x26,0xbc,0xc6,0xaf,0x51,0x5a,0xc0,0xc7,0x16,0xa6,0x21,0x8f,0x36,0x61,0x2e,0xfc,0x9b,0x5c,0x84,0x91,0xc8,0x2f,0xae,0x57,0x88,0x79,0x33,0x8f,0x86,0xab,0x38,0xf5,0x1f,0xe2,0xb7,0x11,0x7e,0x7b,0x04,0xbd,0xe3,0xe7,0x90,0xe3,0x2c,0xcd,0x43,0xf8,0xfa,0xe0,0x3e,0xcf,0xa5,0x6a,0x9f,0xab,0xc6,0x39,0xf5,0xff,0x70,0x38,0xdc,0xf2,0xb9,0x48,0x45,0x1e,0x26,0xfe,0x0d,0xcd,0xc6,0xd2,0x67,0x30,0xbf,0x27,0x08,0xca,0x78,0x2e,0x0a,0x19,0xe6,0xb2,0xa4,0x3c,0x8c,0x96,0x71,0x0a,0xb4,0x2c,0xff,0x29,0xa5,0x7f,0x23,0xd2,0x70,0x92,0x88,0x08,0x6a,0x11,0x12,0x69,0x5d,0x65,0xd0,0x78,0xf4,0xdd,0x77,0x0f,0xb8,0xcc,0x56,0xf1,0x14,0x8b,0xd6,0x85,0xc8,0xa9,0x4a,0x0d,0x7d,0xcb,0x53,0xb9,0xf2,0x6f,0xa0,0xf0,0x33,0x96,0xaf,0xb2,0x2c,0xf1,0xa0,0xc4,0xcb,0xf2,0x39,0xe3,0x31,0x2c,0x68,0xfe,0x19,0x48,0x79,0x30,0x2c,0xd9,0xc0,0x1f,0x6e,0xb7,0x1c,0xd7,0x3f,0x00,0xda,0x81,0x45,0xf2,0xa8,0x90,0x19,0xd2,0x05,0x7f,0x82,0x21,0x2f,0x92,0x4c,0xc2,0x07,0x2c,0xcb,0x2a,0x11,0x52,0xd0,0x5a,0xe1,0xa2,0x04,0x37,0x5b,0x3e,0x09,0xa7,0x9f,0xd6,0x2b,0x1a,0x81,0xaa,0xd0,0x60,0x55,0xc9,0x78,0xb6,0x4e,0xa7,0xc8,0x09,0xce,0x24,0xcf,0x36,0x40,0xd4,0x05,0xf4,0x3a,0x70,0x6f,0x3e,0x03,0x4b,0x8a,0x20,0x15,0x1b,0xe7,0x25,0x2c,0xc4,0x60,0xe8,0x72,0x59,0xfe,0xe2,0x69,0xf0,0x63,0x28,0x17,0xde,0x2c,0xc9,0xb2,0x7c,0x20,0xbd,0xb9,0x90,0x0a,0xea,0x74,0x24,0x1e,0x1c,0x3f,0x1e,0x7e,0x5b,0x16,0x21,0xf9,0xc0,0x48,0x85,0x90,0x03,0xf7,0xdb,0x93,0x91,0x3b,0x16,0x1e,0x7c,0xff,0x70,0xf1,0x42,0xb3,0xfa,0x20,0x75,0x79,0x94,0x4d,0xd7,0x4b,0xe0,0x62,0x84,0x79,0x95,0x08,0xfc,0xfa,0xfd,0xf5,0x9b,0x68,0xc0,0x72,0x39,0x65,0xae,0x17,0xa7,0xb0,0x36,0x3f,0x5c,0xfc,0xf8,0x36,0x10,0x9e,0xcc,0x10,0x54,0xe6,0x71,0x3a,0x1f,0xb8,0x5e,0x91,0xc4,0x53,0xa0,0x8c,0x9f,0x3c,0x70,0xb7,0xe5,0x28,0x22,0xf1,0x19,0x4a,0x7b,0x06,0x61,0x51,0x5e,0x89,0x1c,0x12,0x2d,0x0e,0x26,0x5a,0xf6,0x10,0xbd,0xfe,0x3d,0x44,0x17,0xd7,0xe9,0xf4,0xfb,0x9e,0xe9,0xaf,0x93,0x2d,0xea,0x13,0xee,0xc2,0x72,0x54,0x42,0x09,0x94,0x22,0xdf,0xb0,0xed,0x38,0xf5,0xc4,0x2a,0x9b,0x2e,0x02,0x69,0xd4,0x01,0x8c,0x22,0x8d,0x06,0x7f,0x3b,0xff,0xe9,0x9d,0x57,0x10,0x39,0xf1,0xec,0x1a,0x16,0xc0,0xe5,0x77,0x06,0xec,0x1b,0xe0,0x40,0xa0,0x7b,0x0a,0xd4,0x7d,0x1a,0x58,0x94,0x2d,0x00,0x69,0x22,0xde,0x93,0xb8,0x01,0x59,0xc3,0x20,0x08,0x56,0x61,0x5e,0x88,0x37,0xa9,0x1c,0x74,0x2f,0x5c,0x29,0x9d,0x80,0x12,0x98,0x79,0x2d,0xdc,0xb3,0xee,0xd6,0x9b,0x58,0xcc,0xa1,0x97,0xd7,0x59,0xbe,0x84,0xe6,0x85,0xbc,0x4e,0x84,0x17,0xc5,0xc5,0x2a,0x09,0xaf,0x03,0x96,0xc2,0x5a,0xb0,0xee,0xd9,0x5e,0xce,0xf2,0xe9,0xa3,0xfb,0xf7,0xdb,0x61,0x27,0xa0,0xe4,0x3e,0xf5,0x00,0x13,0x28,0x2a,0x87,0x2e,0x50,0xd7,0x1f,0xfd,0xbb,0xc7,0xbb,0x8f,0xe6,0xde,0x01,0xd3,0x64,0xb9,0xfe,0xfd,0xdf,0x4b,0xf4,0xdd,0xbb,0xff,0xb7,0x56,0x49,0x8d,0xb7,0xc9,0xac,0x2f,0x7f,0x78,0xf1,0x33,0xb0,0x2a,0x1b,0x31,0x98,0x87,0x12,0xed,0x3f,0xd7,0x22,0xbf,0x3e,0x17,0x89,0x98,0x82,0xfe,0x1b,0xdc,0x8b,0xd3,0xd5,0x5a,0x5e,0xe2,0xc6,0x17,0x30,0xdc,0x80,0xb4,0x22,0x67,0x57,0xfe,0x74,0x21,0xa6,0x9f,0x44,0x74,0x4f,0x4f,0xca,0x19,0x0a,0x07,0xa8,0x4b,0x09,0x9b,0x21,0x4a,0x08,0xc8,0x6f,0x24,0x3e,0xac,0x06,0xae,0x3f,0x68,0xab,0x79,0x99,0x6d,0xd2,0x81,0x92,0x28,0xbb,0x6a,0x91,0x6d,0x06,0xae,0x45,0x69,0x12,0x17,0xd2,0xec,0x66,0x40,0x6b,0x63,0xb7,0xed,0x61,0x9e,0xdd,0x55,0x83,0x4d,0xa1,0x7b,0xd1,0xe6,0xb8,0x31,0x96,0x2d,0x1f,0xf5,0xb5,0x1c,0xd9,0x2d,0x1f,0x76,0xb7,0x9c,0xaf,0xe2,0x2c,0x4f,0xae,0xab,0xee,0x1f,0x1c,0xd0,0x3f,0x2c,0x19,0xcd,0x6f,0x70,0x34,0x3c,0x80,0x86,0x83,0x5a,0x57,0x74,0x1c,0xd4,0xbc,0x36,0x71,0x16,0x04,0xac,0xe3,0x6d,0x26,0x5b,0xd9,0x3c,0x9e,0x59,0x3b,0xaf,0x6a,0x72,0xf0,0x2a,0x34,0x51,0x68,0xf3,0xe5,0xe0,0xb5,0x69,0x81,0x1f,0xf5,0xc2,0xe3,0x4c,0x15, -0x45,0x27,0x3c,0x99,0x4a,0x3d,0xd0,0x61,0x4f,0xdf,0xc6,0xbc,0xea,0x06,0x47,0x9b,0xcb,0x66,0x97,0x1d,0x0c,0xb2,0x77,0xee,0x9a,0xdc,0xb6,0x03,0xde,0x4b,0x7b,0x24,0x40,0x4f,0xf4,0x74,0x0d,0x1b,0xa5,0xcb,0xeb,0x5b,0x5c,0x5d,0x46,0xc1,0xde,0x06,0xf1,0xac,0xed,0x9f,0xf7,0x6e,0x98,0xde,0x6c,0x99,0xcf,0xa0,0xc3,0x04,0xf6,0x67,0x6a,0xc8,0xb8,0xc3,0xd0,0x4a,0x63,0xfe,0xbd,0x63,0xfc,0x3c,0x66,0x5b,0xd6,0x40,0x07,0x9b,0xec,0x3e,0x74,0x6a,0xf3,0xbe,0xd7,0x63,0x61,0x00,0x12,0x65,0x3b,0x36,0x07,0x86,0x46,0xa4,0xaa,0xe9,0x06,0x36,0xf6,0xe5,0x0e,0x3b,0x20,0xb0,0xa9,0xec,0x06,0x7f,0x99,0x67,0x2b,0x54,0x71,0xc6,0x4c,0x6a,0xc3,0x52,0x7a,0x2f,0x35,0x83,0x92,0xdb,0x86,0x59,0x35,0x2b,0xb9,0xf8,0x8c,0xc3,0x8f,0xc1,0xd4,0xba,0xe9,0xec,0xf5,0xd7,0x22,0x4b,0x17,0x59,0x12,0xd1,0x90,0xc9,0xb4,0xba,0x10,0x5f,0x64,0xd0,0xb0,0x64,0x14,0x09,0x9c,0x7c,0x9e,0xfb,0x4a,0x05,0x97,0xd8,0x01,0x0e,0xdc,0x90,0x30,0x19,0x30,0x54,0xc5,0xf6,0xb2,0xc0,0x27,0xb5,0x10,0x11,0x50,0x80,0x30,0x25,0xc0,0x0c,0x18,0xe2,0xa7,0xb5,0x1c,0xdc,0x1f,0x0e,0xb9,0x69,0x4e,0x6d,0xe4,0x22,0x2e,0xc0,0x54,0x2a,0x8a,0x01,0x43,0xfb,0x7a,0x9e,0x67,0x6b,0x58,0x3d,0xce,0xe6,0x40,0xa2,0x86,0x7b,0x93,0x0e,0xd0,0x32,0xdb,0xf6,0x2c,0x63,0xd9,0x4f,0x65,0x2b,0xb2,0xa7,0x8b,0xc7,0xcf,0xfe,0x91,0xad,0x61,0x23,0xfb,0x2c,0x2c,0xca,0x9c,0x29,0xf0,0x28,0xba,0x7f,0x0e,0x58,0xf8,0x61,0x21,0x1c,0x32,0xd3,0x9c,0x85,0xc8,0x85,0x23,0x33,0x47,0x35,0x73,0x80,0x85,0x60,0x3a,0x27,0x59,0x26,0x9d,0xc1,0x35,0x20,0xd9,0xc4,0x49,0xe2,0x84,0x0a,0x17,0x22,0x98,0x52,0x63,0x98,0x92,0x18,0xac,0x4a,0x8d,0xd1,0xf5,0x9e,0x9e,0x42,0x9f,0x8c,0xd7,0x46,0xae,0xac,0x40,0x6b,0xcc,0xb9,0x90,0xeb,0xbc,0xb6,0x58,0xfc,0x68,0xb4,0xb5,0x0d,0x58,0xe8,0xc4,0xda,0xcf,0xba,0xb5,0xe4,0xef,0x33,0x4c,0x78,0x87,0xce,0x3c,0x00,0x5b,0x5d,0xf9,0xb6,0x62,0x1a,0x1d,0x8a,0x69,0xd4,0x8b,0x89,0xf4,0xe8,0x01,0x78,0xea,0xea,0x78,0x17,0x8f,0xd1,0xa9,0x87,0xa0,0x0a,0xfb,0x08,0x22,0xd5,0x7a,0x00,0x96,0x86,0x8a,0x6e,0x41,0x74,0xf8,0xc0,0xfa,0xf1,0xa0,0x6a,0x38,0x00,0x51,0x4d,0x6d,0xbb,0xdc,0x16,0xd1,0x3a,0xcb,0x29,0x7d,0xba,0xa3,0xfe,0x82,0xc3,0x75,0x27,0x6f,0x51,0x7f,0x07,0x50,0xb8,0xa3,0x46,0x5d,0xde,0xa2,0x01,0x0f,0x40,0xd4,0xa5,0x50,0xfb,0x46,0xad,0xa3,0x15,0xa5,0x97,0xd8,0x89,0x9c,0x62,0x15,0xab,0x4d,0x64,0x90,0x8e,0x51,0x37,0x1e,0x05,0x81,0xb8,0x7b,0x97,0x31,0xfc,0x3c,0xd3,0x4a,0xd3,0xd3,0x28,0x3d,0x0c,0x51,0x04,0xe5,0xa4,0x98,0x52,0x15,0x15,0xe9,0xee,0xc7,0xc4,0x90,0x9a,0x93,0x6a,0xe0,0x75,0xbc,0xe1,0x80,0xe9,0x08,0xd7,0x65,0x74,0xa2,0x7d,0x26,0x5c,0x3f,0x4c,0x44,0x2e,0x07,0xec,0x39,0x8e,0x0d,0xb6,0xd4,0x3c,0x04,0x08,0xe7,0xe7,0xb0,0x28,0x36,0x59,0x0e,0x9a,0x32,0x4c,0x53,0x50,0x80,0x13,0xe1,0x88,0xe5,0x4a,0x5e,0xb3,0xc6,0xd4,0x61,0xd4,0xa6,0xe2,0x18,0xfc,0xe5,0x69,0xcb,0x3f,0x18,0xf2,0x9a,0xb3,0x77,0xa7,0xee,0x23,0x60,0xd3,0x0e,0x1f,0x01,0x88,0x02,0xc7,0xa9,0x0d,0xe5,0xa8,0xe4,0x0a,0x2a,0xc6,0x69,0xea,0x9e,0x44,0x6c,0x82,0x2d,0x9a,0x93,0x48,0xa0,0x18,0x55,0x3a,0x60,0xfa,0xb0,0x2d,0x36,0xdd,0xe1,0x4a,0x42,0x42,0x01,0xa9,0x7e,0x02,0xa8,0x49,0x2b,0x05,0x18,0xc4,0xea,0x87,0xc5,0x16,0xed,0xc4,0x23,0x53,0xf5,0xd3,0x5c,0xf1,0x68,0x07,0xdf,0xd3,0x8c,0xff,0x34,0x95,0xe0,0xbe,0x15,0x03,0xa1,0x38,0xbf,0x7b,0x32,0x85,0x3b,0x56,0x5b,0xd6,0xd1,0x91,0x54,0x68,0xbd,0x65,0x28,0xa7,0x8b,0xc1,0xe9,0x7f,0x0f,0xee,0x3f,0xba,0x1c,0x9e,0x3c,0xba,0xfa,0x7a,0x1f,0x3e,0x1e,0x5e,0xc1,0x9f,0x27,0x57,0x5f,0x2f,0x87,0xa3,0xab,0x33,0xfa,0x4a,0x7f,0xce,0xdc,0xff,0xf2,0xfe,0x77,0xda,0xdd,0x39,0x75,0xbf,0x7e,0x1d,0x68,0x16,0x2f,0x2d,0x01,0x81,0xda,0x06,0xcc,0x80,0x30,0x75,0xe2,0x14,0x86,0x13,0xc3,0xd7,0x28,0x02,0x39,0x29,0x1c,0x98,0x1a,0x76,0x0c,0xeb,0x2c,0xbd,0x19,0xcc,0x45,0x41,0x1b,0x73,0x53,0x49,0xaa,0xd0,0x6c,0xa9,0x2e,0x86,0xe3,0x78,0x66,0xd8,0x55,0xd7,0x79,0xe8,0x02,0x53,0x0c,0xb1,0x56,0x8a,0x21,0x5b,0x28,0x55,0x7e,0xb6,0xed,0x4c,0xef,0xaa,0x43,0x90,0x14,0x99,0x61,0xfb,0xa6,0x97,0xbe,0x6f,0xa9,0x18,0xc6,0x89,0x99,0x3b,0x6e,0x74,0x8d,0xa5,0x81,0xf4,0xb2,0x15,0x0e,0xa3,0xb8,0x94,0xa0,0xd9,0xd1,0x75,0x17,0xd1,0x9b,0x34,0x12,0x5f,0xae,0xd4,0xa2,0x6e,0x45,0x82,0xc6,0x50,0x0b,0xe4,0x81,0x94,0x2a,0xad,0x08,0xd3,0xd1,0xbd,0xe9,0x63,0xf4,0x3a,0xa4,0xd0,0x98,0x92,0x79,0x17,0x1d,0xee,0x46,0x97,0x14,0xf3,0x6e,0x2a,0x90,0x43,0x22,0x0f,0x48,0x46,0xa8,0x63,0x0f,0xbb,0xa1,0x07,0xf7,0xac,0x6d,0x3d,0x46,0x7e,0xeb,0x2a,0x8d,0x69,0x2e,0x76,0x57,0x76,0xd2,0x3f,0x1f,0x9b,0x78,0x16,0x4f,0xd4,0x12,0x68,0xf9,0xbb,0xf5,0x20,0x7a,0xc3,0x27,0xae,0xdb,0xc6,0x69,0x23,0xa2,0xf6,0xa6,0x93,0x0f,0x8f,0x6a,0xe2,0xce,0xe2,0x95,0x66,0x77,0xe6,0xba,0x4a,0xae,0x71,0xcd,0x1a,0x8d,0xd4,0xc9,0x41,0x5f,0x8b,0x28,0x2d,0x00,0x4f,0x5f,0x0b,0x7d,0xe6,0x50,0x35,0x69,0x90,0x17,0xaf,0x7a,0x38,0xab,0x22,0xb2,0x61,0x5a,0x98,0xb1,0xa5,0x45,0x37,0xb4,0xa1,0xad,0x1d,0x54,0x8d,0xad,0x47,0x86,0xf4,0xd8,0xdb,0xa1,0xf5,0xa8,0xba,0xc1,0xcb,0x61,0x6b,0xb1,0x6a,0xc0,0x93,0x0c,0x04,0x3b,0x68,0xfb,0xd5,0x3a,0x32,0xd6,0x2a,0xec,0x9e,0x0d,0x7d,0xfe,0x73,0x88,0x35,0xa8,0x82,0x35,0x1f,0x11,0xe3,0xc7,0x70,0x06,0xaa,0xf0,0x63,0xa1,0x02,0xf1,0x1d,0xc6,0x12,0x2a,0x9c,0x59,0x96,0x2f,0x5f,0xe2,0x59,0x16,0x86,0xd0,0x5f,0xeb,0x1f,0xd5,0x59, -0x47,0x9c,0xfe,0x9c,0x67,0x73,0x5c,0x2d,0xdc,0x4c,0xc0,0xf9,0x99,0x64,0x11,0x8e,0x3f,0xc9,0x42,0xe8,0x51,0x9f,0xae,0x79,0x0b,0xb9,0x74,0xbe,0x59,0xe9,0x86,0xfa,0xac,0x8d,0x55,0xbe,0xa0,0xe4,0x29,0x0f,0x5d,0xe4,0x62,0x58,0x80,0xe9,0x14,0x97,0x1e,0x64,0x27,0x25,0x7c,0x9e,0x01,0x63,0xda,0x53,0x5c,0x88,0x78,0xbe,0x00,0x68,0xf6,0x70,0xc8,0xc8,0x39,0xdd,0x69,0x31,0x83,0x0e,0x4e,0x8a,0xf8,0x37,0x01,0x8d,0xbe,0x7c,0x39,0x49,0xc2,0x7c,0x0e,0x3a,0x6a,0x8c,0xa3,0xc9,0xf0,0x98,0x27,0x28,0x84,0x7c,0xa3,0xed,0x4e,0xdb,0x39,0x83,0xfe,0x6d,0x74,0x27,0x93,0x30,0x37,0x28,0x37,0x71,0x24,0x17,0x8c,0x67,0xc7,0xec,0x2f,0x50,0x14,0x4a,0x99,0x83,0x89,0x95,0xc7,0xe1,0x09,0x4d,0x5b,0x0a,0x9e,0x30,0xcf,0x5c,0x1c,0x66,0x32,0x50,0x6d,0xf8,0x68,0x88,0xf2,0x7f,0x7c,0x9c,0x81,0x91,0x04,0xbe,0x66,0x5e,0x76,0x58,0x28,0x4a,0x2c,0x6b,0x73,0x0a,0x8e,0x9a,0x14,0x7a,0xa9,0x00,0x2f,0xc3,0x83,0x92,0x45,0x2e,0x66,0xa0,0xd7,0x60,0x4b,0xa7,0xd3,0xc6,0x56,0x43,0xf2,0x98,0xd1,0xf1,0x63,0xc2,0xb8,0xb0,0xbc,0x79,0x76,0x91,0x5f,0x2b,0x07,0x15,0x80,0x52,0x90,0x47,0xe7,0xd5,0xf9,0xcf,0x7d,0x71,0x61,0xd3,0x0e,0x47,0xb6,0x02,0x0d,0x14,0xbd,0x58,0xc4,0x09,0xee,0xfd,0x87,0xc1,0xdc,0x32,0x0c,0xbd,0x5e,0x45,0x30,0x5a,0x9c,0x64,0x72,0x90,0x81,0xb3,0xdf,0x91,0xf6,0xb3,0xa7,0xdd,0xb1,0x7f,0x9c,0x18,0x9e,0x38,0x10,0xa7,0x15,0x06,0x78,0x61,0x8e,0xf2,0xd8,0x76,0xcb,0x1f,0x0d,0x87,0xee,0xb8,0xd8,0xc4,0x68,0xbe,0x00,0xaf,0x4e,0xc1,0xff,0x07,0x40,0x64,0x54,0xe6,0xdf,0xf1,0xf0,0x84,0x78,0x70,0xb3,0xce,0x13,0x9f,0x9d,0x2a,0x74,0x8c,0xd3,0x31,0x27,0xfb,0xf9,0xa7,0xf3,0x0b,0x75,0x9e,0xeb,0x1b,0x61,0xe0,0xd0,0x15,0x92,0x84,0xdf,0x7d,0x75,0xa2,0x8b,0x2c,0x4d,0xc7,0xa8,0xe8,0xcf,0x8f,0x27,0xb0,0xa4,0x9f,0xc6,0xd4,0x85,0x0e,0x06,0xf8,0x7d,0x67,0x47,0x6a,0x75,0xdd,0x1a,0x5c,0x04,0xd6,0x7b,0x9e,0x5d,0x37,0x00,0x6b,0x51,0x2e,0xd3,0x64,0x7b,0xaf,0x06,0x69,0xec,0xfe,0x1e,0x48,0xd3,0x04,0x20,0xb7,0xdb,0xad,0x4b,0x5b,0xdf,0xa0,0x8c,0xb8,0xd8,0xe6,0xa2,0x89,0x29,0x59,0x82,0x5e,0x46,0x5c,0x9a,0x07,0x06,0xcf,0x7f,0xee,0x0b,0x3e,0xa9,0x3d,0xfa,0xf6,0x0c,0x83,0x70,0xdf,0x9f,0x9f,0xbf,0x79,0x79,0xeb,0xe3,0x92,0x02,0x9c,0x98,0xc9,0xed,0xa1,0xd4,0x26,0x7e,0x3b,0x20,0xdc,0x6f,0x6f,0xdf,0x93,0x75,0xb0,0x71,0x2b,0xc0,0x1e,0x33,0xd1,0xcc,0x67,0x73,0x6d,0xce,0x2f,0x9e,0xff,0x9e,0xc5,0xd9,0x43,0x48,0xcf,0xda,0xec,0x5b,0xd6,0x8e,0xc5,0xd9,0x07,0xd6,0x3e,0xd1,0xcd,0x31,0x53,0x8c,0xb8,0x34,0xd7,0x6f,0x63,0xc4,0x06,0x2d,0x56,0x70,0xcf,0x89,0x42,0x63,0x73,0x6e,0x42,0xe3,0xd6,0x4e,0x86,0x60,0x9b,0x25,0xd0,0x77,0xb4,0xd9,0xb4,0x96,0xf1,0x48,0xa6,0x05,0x0f,0x52,0x7e,0xf7,0xee,0x9d,0x3e,0x63,0xf8,0x52,0x11,0xc6,0x46,0xec,0x0a,0x6c,0x49,0x50,0x5c,0x2b,0x10,0x60,0x85,0x94,0xf1,0xa3,0xa1,0x09,0xdb,0xa3,0xec,0xf6,0x1d,0xe1,0x10,0x45,0xc0,0xb0,0x75,0x92,0x0e,0x37,0x87,0x9b,0x94,0x53,0x25,0x1f,0xee,0x0e,0x09,0x17,0xf8,0xee,0xdd,0x66,0xd8,0xa0,0x66,0x1b,0x9b,0x21,0x0d,0xfb,0x87,0xa4,0xce,0x2f,0x7b,0x76,0xb1,0x1d,0x4b,0xb3,0x49,0x4b,0xbc,0xea,0xe1,0xdf,0x9a,0xa9,0xb8,0xc3,0x36,0x54,0xdb,0xc3,0xc6,0x35,0x33,0x75,0x67,0x0e,0xd2,0xa2,0xef,0x1c,0xa9,0x66,0x64,0x36,0x61,0x75,0x35,0xb7,0xc4,0xbe,0x67,0x0a,0xf6,0xdb,0x84,0x4d,0xfc,0xda,0xde,0xac,0xcb,0x5a,0x15,0x49,0x3b,0x38,0x86,0x16,0x34,0x4c,0x1a,0x12,0x95,0x83,0x23,0x63,0x4d,0x68,0x65,0x10,0x75,0xc3,0xb7,0xc4,0xc3,0x9a,0x28,0x74,0x75,0x7d,0x60,0x3a,0xce,0x65,0x89,0x9e,0x1d,0x98,0xda,0x11,0xbd,0x5a,0x74,0x6b,0xaf,0xe4,0x1d,0x1c,0xc2,0xaa,0xf5,0x8d,0x15,0xfd,0xa0,0x76,0xe4,0xaa,0x06,0x8a,0x15,0xfd,0xa0,0xb5,0xb8,0x55,0x0d,0x96,0x6a,0xfa,0x81,0xed,0xc0,0x55,0x0d,0x16,0x2b,0xf6,0x90,0xbc,0xcb,0x18,0x65,0xc8,0xab,0xbe,0x22,0xb4,0xdd,0xec,0x0f,0xd9,0xea,0x68,0xc8,0x2d,0x14,0x94,0x28,0x83,0x24,0xa2,0x19,0x24,0xa1,0x86,0xca,0xa5,0xab,0xd1,0x42,0xa4,0x80,0x2d,0x09,0x76,0xe1,0xe0,0xa0,0xe8,0x0c,0x4f,0x83,0xe1,0x38,0x7d,0x2a,0x3c,0x84,0xf6,0x12,0x91,0xce,0xe5,0x62,0x9c,0x1e,0x1f,0xab,0xe1,0x84,0x95,0x13,0xa7,0x5a,0x5c,0xa6,0x57,0x5e,0x0e,0x90,0x2e,0xcf,0x54,0xde,0x12,0x88,0xd0,0x40,0x7d,0x01,0x6b,0xf5,0xfe,0xb7,0x83,0xf0,0x78,0x04,0x56,0x2d,0x1f,0xa2,0xbf,0x01,0x7f,0x8a,0x4e,0xa7,0x42,0x0d,0x0d,0x26,0xa4,0x28,0x47,0x6b,0x3a,0x20,0x45,0x5c,0x58,0x63,0xb4,0xea,0x26,0xba,0xd2,0xb2,0xa9,0x69,0xfe,0x7d,0x0c,0x96,0xd5,0x5b,0x1d,0x33,0xee,0x9c,0xc7,0xf3,0x34,0x4c,0x9c,0x73,0x99,0xd3,0xc8,0x7c,0xe7,0x2f,0xec,0x38,0xc3,0x8a,0x77,0x3a,0xab,0xb1,0x06,0x46,0xb8,0x65,0xcd,0xe7,0x28,0xdc,0xed,0x5e,0x83,0xc1,0xa2,0xe5,0xbd,0x38,0x39,0x87,0x52,0xc6,0x2d,0xc6,0xb0,0x62,0x76,0x50,0xf5,0x0b,0x2c,0x73,0xef,0x49,0x31,0x36,0xea,0x3f,0x26,0x6e,0xe9,0xd7,0xf3,0xbc,0xdf,0x6b,0x9d,0x91,0x41,0xd5,0xf4,0x00,0x3b,0x98,0x77,0x46,0x39,0x6a,0x0d,0x04,0x71,0x9a,0xc4,0x88,0x02,0x5c,0xc4,0xb0,0xa0,0x59,0x7b,0x87,0x3b,0xf3,0xc0,0x1d,0xbb,0x78,0x3e,0xb8,0xcc,0x3e,0x0b,0xed,0xbf,0x79,0xe0,0x5c,0x49,0xfa,0x6e,0x4d,0x0a,0x74,0xf5,0x01,0xa4,0xb1,0xe8,0x9d,0x14,0x94,0x57,0x9c,0xd2,0x3d,0x27,0xf1,0x48,0x36,0x9e,0x1d,0xf5,0x23,0x83,0x56,0x02,0x5b,0x1d,0x76,0xb2,0x7f,0xfe,0xe2,0xf9,0x3b,0x14,0x29,0xd4,0xb8,0xc2,0xfb,0x04,0xae,0x75,0x7a,0x46,0x6e,0xf9,0x2c,0xcb,0x62,0xd0,0x0c,0x27,0x6a,0x88,0x55,0x8a,0x5d,0xb5,0x0e,0xf5,0xd0, -0x9a,0x5a,0x06,0x0f,0x5d,0xb6,0x13,0xf4,0xcf,0xf2,0x2c,0xb9,0xa4,0x73,0x3c,0x09,0x4e,0xf2,0x95,0x25,0xf5,0x6b,0xe0,0x42,0xbb,0x83,0x02,0xbc,0xf5,0xe9,0xa2,0xea,0x40,0x25,0x28,0x61,0xb5,0x44,0xc5,0x7e,0xa2,0xf6,0xed,0x9d,0xde,0x77,0x7c,0xd2,0x9a,0x6a,0x59,0xf7,0x59,0x91,0xa0,0x58,0xa7,0xd2,0x4e,0x8e,0x11,0x5e,0x7f,0x32,0x07,0xae,0x4f,0x6d,0x37,0x14,0x7b,0x54,0x6c,0xb8,0xd3,0x81,0x2e,0xa9,0xaf,0x66,0x0a,0x53,0x83,0xeb,0x82,0x0b,0x10,0xcf,0x06,0xb5,0xa4,0xd7,0xaf,0x5f,0xbb,0x8d,0x43,0x74,0xa2,0x29,0xaf,0xba,0x2e,0x26,0x6f,0xa1,0x18,0x3c,0x5c,0x10,0x7a,0xb5,0xd8,0xa7,0xec,0xd8,0x24,0x60,0xbb,0x94,0x87,0xfb,0xb4,0xfc,0x79,0x43,0x2d,0x82,0xd1,0x58,0xa9,0xd1,0x9b,0xed,0x18,0x54,0x98,0x62,0xa1,0x40,0x80,0x92,0xa0,0xac,0x5d,0xfc,0xd3,0x9b,0x83,0x29,0x5d,0x70,0x67,0xab,0x3c,0xdc,0x35,0xb0,0x3e,0xfa,0xed,0x38,0x1c,0xca,0xc7,0xc6,0x3f,0x80,0x36,0x9d,0x86,0x46,0xc3,0x5a,0xe3,0xc7,0xec,0x93,0xf7,0x78,0x60,0xda,0xcb,0xcd,0xd8,0x2a,0xa7,0x63,0x55,0xf4,0x9d,0x2d,0x3f,0x39,0xc9,0xf2,0x73,0xf0,0xe7,0xd6,0xc5,0x24,0xcc,0xab,0x83,0x15,0x23,0xbe,0x14,0x40,0xaa,0x72,0x56,0x47,0xee,0x58,0x3e,0x7b,0x34,0x3c,0x13,0xb7,0x8b,0x80,0xf8,0xf2,0xd9,0xfd,0x47,0x87,0x02,0x6d,0xc2,0x3c,0x85,0x79,0x61,0xbe,0x6e,0xdf,0xd7,0x36,0xc2,0x24,0x86,0xbc,0xe1,0x40,0xe1,0x70,0x8a,0x3e,0x93,0x6e,0xba,0x20,0xdf,0xb5,0x5a,0x71,0x9d,0x66,0xef,0x61,0x45,0x1f,0xc3,0x4f,0x57,0xeb,0x76,0xb8,0xd5,0xfa,0x98,0x39,0x3f,0x2e,0x7e,0xeb,0x8d,0xf5,0x50,0x66,0x4f,0x1b,0xb8,0xaa,0xea,0x31,0x22,0x95,0x4b,0xb5,0x0b,0x88,0x15,0xd0,0xf1,0xf7,0xd7,0xb0,0xba,0x7d,0xde,0xae,0xed,0x22,0xd3,0x8a,0x06,0xb0,0xed,0x7e,0x6b,0x63,0x39,0x7d,0x38,0x7c,0xf2,0x78,0x88,0x21,0x40,0xde,0x60,0x89,0x3d,0x58,0x7b,0x34,0xc9,0x0c,0x56,0x6f,0xd1,0x4a,0x77,0xf8,0x39,0x8c,0x13,0x8c,0x74,0x1e,0x40,0xbc,0xc1,0xd2,0x45,0x7d,0x89,0xeb,0x74,0x34,0x7c,0xf8,0xf0,0xe1,0xe3,0x87,0xb7,0x1a,0x84,0xc6,0xde,0xb7,0x8d,0xae,0xe2,0xd9,0xac,0xe8,0x19,0x06,0xd5,0x1f,0x30,0x90,0x12,0x51,0xff,0x48,0xa8,0xd5,0xa9,0x29,0x53,0x3f,0xd5,0x54,0xdd,0x62,0x58,0xa6,0xaf,0xbe,0x71,0xc1,0x5e,0x8d,0x81,0x9c,0xd6,0x91,0xf5,0x47,0x0f,0x3a,0xa4,0xa7,0xcf,0xeb,0x44,0xef,0xae,0x15,0xc8,0xb8,0x7d,0xdd,0x56,0x76,0x58,0x7c,0x6a,0x85,0x04,0xc7,0x0e,0xeb,0x7a,0x7d,0xd5,0x56,0xc0,0x5e,0x2f,0x75,0x19,0x4e,0x5b,0x81,0xa0,0xbc,0x67,0x2e,0x3f,0x37,0x32,0xd3,0xf4,0x7d,0x1c,0xca,0xaa,0x5a,0x86,0x71,0xaa,0xea,0x71,0x07,0x1f,0xe8,0xaa,0xfa,0x06,0xf6,0x42,0x05,0x62,0xf5,0x59,0xc4,0x37,0x60,0x34,0x2d,0x63,0x75,0x30,0xa0,0xb7,0x6b,0xdc,0xc9,0xc1,0x7c,0xc8,0x55,0x5e,0x8c,0xc9,0x4c,0x23,0xef,0x0c,0x5a,0x62,0x0c,0x34,0x02,0x03,0xcd,0x3e,0x15,0x50,0x7a,0xfc,0x0e,0xa0,0x54,0xf1,0x7d,0x77,0x8c,0x98,0x71,0x38,0xe6,0x20,0x43,0x57,0xc8,0x3e,0x2c,0x8d,0xb8,0x33,0xe5,0x34,0xaf,0xcb,0xa3,0x10,0xdf,0x52,0xb7,0x76,0x24,0xf7,0x1b,0xb5,0x03,0x97,0xcd,0xec,0xaa,0x54,0xae,0x6a,0xe0,0x94,0xc2,0x53,0x03,0x46,0x07,0xaa,0xd6,0x44,0x39,0xb3,0xb5,0x36,0xda,0xf9,0xad,0x35,0x2b,0x9d,0xf9,0x5a,0x4b,0x93,0x7c,0x54,0x6b,0x5a,0xa5,0xaa,0xd5,0xda,0xea,0x58,0x41,0x9d,0x3e,0x13,0x8e,0xab,0xb5,0x04,0xa3,0xb0,0x6c,0xa5,0x6f,0xe6,0x98,0x9b,0x53,0x65,0xda,0x68,0x0d,0x00,0xed,0x9c,0xa2,0x0b,0xa4,0x32,0x6e,0x6b,0x30,0x64,0x7e,0xf6,0xc0,0x18,0x23,0x76,0x0b,0xde,0xfc,0x25,0x96,0x9f,0xc8,0x6c,0x3e,0x4f,0x70,0x77,0xcd,0x56,0xc8,0x2d,0xca,0x81,0x57,0xdf,0x07,0x98,0xf4,0x22,0x81,0x17,0xf1,0xce,0x11,0x9d,0x76,0x6d,0x91,0xad,0x54,0x2e,0x63,0x33,0x8e,0xee,0xda,0xb9,0x7d,0x6a,0x31,0x71,0x00,0xc0,0x10,0x8d,0x0b,0x45,0x43,0x43,0x8f,0x76,0x0d,0xaa,0x7b,0x28,0xa5,0x2d,0xbe,0x05,0x93,0xff,0x30,0x33,0x48,0xb8,0x3b,0xbd,0xd2,0x1d,0x1c,0xed,0x33,0x33,0x3a,0xcb,0x40,0x21,0x3a,0xc5,0x84,0xd0,0xf1,0x74,0x81,0x5e,0xa7,0x0c,0xd6,0x72,0x76,0xf2,0x1d,0x07,0x0f,0x2d,0x9d,0x82,0x47,0xf1,0xe1,0xfd,0x1b,0x3c,0x3e,0x01,0x3e,0x06,0x79,0xea,0xcd,0x10,0xc5,0xcb,0x40,0xdd,0xca,0x03,0x0c,0x78,0x34,0x0f,0xcf,0x31,0x56,0x36,0xc6,0xf4,0x03,0xf9,0x5c,0x02,0xa2,0xc9,0x5a,0x0a,0xd8,0xfb,0x72,0x31,0x63,0x9c,0xd2,0x2e,0xea,0x15,0x06,0x8c,0xf1,0xf2,0x0a,0xd9,0x09,0xdd,0xc8,0x49,0xe7,0x85,0x87,0x54,0x33,0x84,0xd9,0xb9,0x65,0x83,0x96,0xf4,0xf7,0x34,0xe0,0xca,0x04,0xfb,0xe3,0xc3,0x15,0xd5,0x48,0xd3,0xfd,0x23,0xfd,0x40,0x51,0x90,0x71,0xda,0x3a,0x54,0x09,0x28,0x0e,0x18,0x2a,0x71,0xb9,0x19,0x67,0x5a,0x6a,0xaf,0xe6,0x2d,0x34,0x3b,0xfd,0x97,0xae,0xa3,0x9d,0x5b,0xcb,0xdc,0x73,0x78,0x67,0xda,0x32,0x73,0x19,0xed,0x75,0x6c,0x12,0xb7,0xc7,0x0c,0xaf,0xbc,0x15,0xe0,0x3d,0x39,0xe2,0xee,0xdd,0xc1,0x90,0xdc,0x30,0x2a,0xd2,0xe1,0x8a,0x33,0x2b,0xa9,0x26,0x8a,0x23,0x07,0xb3,0xc4,0x54,0xb8,0xc4,0xc1,0x66,0xea,0xe4,0x91,0x3a,0x38,0x62,0xe0,0x3a,0x49,0x2f,0xa3,0xd1,0x05,0x0d,0x95,0x2a,0xc6,0x32,0xbf,0xbe,0x11,0x2a,0xf7,0x98,0xc2,0x1e,0xd0,0x14,0x00,0xd7,0x09,0xd8,0xe4,0xd3,0x50,0x2b,0x4b,0x9d,0x2f,0xfb,0x39,0xc3,0x4c,0x1d,0xd5,0xef,0x3b,0xe8,0x2f,0x74,0x54,0xf2,0x8e,0x9a,0x0f,0xea,0x17,0x3a,0xdb,0xda,0x17,0x29,0x89,0x6e,0x2d,0x44,0x26,0xab,0x2c,0x5f,0x0e,0x18,0x8e,0x14,0xe8,0x15,0xcb,0x02,0x29,0x9d,0x08,0x85,0x89,0x3b,0x51,0xe6,0xa8,0x5c,0xdf,0x62,0xa1,0x52,0x81,0x53,0xe0,0xb5,0xb5,0x38,0x63,0x55,0x4e,0x5a,0x50,0xcf,0xa9,0x02,0x21,0xe3,0x92,0x32,0x72,0x9f, -0x17,0xb8,0x59,0x0d,0xf4,0x3c,0x5d,0x0e,0xaf,0x5c,0xd7,0xdd,0x59,0x9a,0xd1,0xe4,0x7a,0x04,0x9c,0x24,0x79,0xaa,0x83,0x3d,0x3c,0xe3,0x05,0x8f,0x79,0x84,0xb6,0xcb,0xa9,0xec,0x8e,0x54,0x45,0xd7,0xe0,0xea,0x51,0x50,0xce,0x36,0x78,0xa2,0x6f,0x07,0xe2,0x78,0xe4,0xa2,0x35,0x43,0x2a,0x63,0x8a,0x3e,0x53,0x18,0xa4,0x97,0xe2,0x8a,0x9c,0xcd,0x4c,0x7f,0xd5,0x9e,0x22,0x2f,0xd4,0x6f,0xed,0xf6,0xf1,0x58,0xfd,0xa4,0xc1,0xaf,0x61,0xa8,0x09,0x9f,0x96,0xfe,0x16,0xa9,0x1c,0x75,0x1b,0x75,0x8a,0xb8,0x82,0x10,0x3f,0x31,0x6d,0x2d,0x83,0x2f,0x1a,0x43,0x50,0xc0,0xf7,0x0a,0x3c,0x88,0x7b,0x35,0xd2,0x14,0x44,0xe7,0xf8,0x98,0x2e,0x58,0x06,0x81,0xec,0xbb,0x1e,0x55,0x8d,0xf6,0x4f,0x3a,0x1b,0xae,0x10,0xb6,0x1e,0x0c,0x1f,0x02,0x68,0xcf,0x3b,0x83,0xd5,0xfa,0x0b,0xdb,0xbd,0xfe,0x69,0x5f,0x1b,0xed,0xbd,0x3d,0x43,0x70,0xd3,0x24,0x2b,0x3a,0x8f,0xee,0x76,0x79,0xe7,0x83,0xda,0x33,0x0e,0x93,0x6b,0xa5,0x7f,0xfe,0x54,0xc1,0x0e,0xd3,0xeb,0xa6,0x70,0xff,0x3b,0x65,0x1b,0x45,0xbb,0xa6,0x1a,0x55,0x9d,0x92,0x71,0x64,0xc6,0x3f,0x2c,0xe0,0x3b,0xb7,0x81,0x6b,0x11,0x5a,0xb5,0x37,0xab,0xa2,0x9d,0x95,0x1f,0xea,0x0b,0x12,0x54,0x4a,0x77,0x23,0xca,0x3b,0x12,0xb4,0xc9,0x47,0x79,0xb6,0xf2,0xf5,0x51,0x2f,0xe3,0x9f,0xc4,0xf5,0x04,0x6f,0xa6,0x51,0x9a,0x00,0xb7,0x55,0x03,0x0a,0xc7,0xce,0xad,0x64,0xea,0xf9,0x60,0x4d,0x03,0x06,0xd6,0xcb,0x78,0x1e,0xab,0xc4,0x4e,0x3d,0xbd,0xe2,0xe9,0x68,0x78,0xc6,0x86,0xb0,0xcd,0xf9,0x56,0xf0,0x3a,0x4e,0x63,0x65,0xf5,0x5c,0x60,0x48,0x6b,0x50,0x45,0xb0,0x05,0x9a,0x44,0x32,0x18,0x8e,0xe5,0x53,0x0a,0x96,0xe8,0x10,0xb5,0x34,0x21,0xea,0xd4,0x5e,0x54,0x6c,0x71,0x29,0xaf,0xca,0xac,0x8a,0x94,0xb4,0x85,0xe4,0x02,0x0a,0xf1,0xd2,0x34,0x7e,0x9a,0xa0,0x7a,0xf9,0x5b,0x05,0xa0,0xea,0xbf,0x52,0xd8,0xe3,0x28,0x1a,0xa5,0xac,0xe3,0x5f,0x9e,0xbf,0x7f,0xc7,0x7c,0x1b,0x5a,0x29,0x03,0x51,0x04,0xcc,0x44,0x35,0x6c,0x03,0xef,0xcd,0xbb,0xd7,0x3f,0x75,0xb5,0x8f,0xd3,0x59,0x56,0x6b,0xfc,0xea,0xfd,0xfb,0xce,0xc6,0x26,0x0c,0xb2,0xfd,0xf5,0x3f,0x30,0x96,0x58,0x19,0xf0,0xd2,0xbd,0xd1,0xf7,0xfd,0x5f,0x67,0x19,0xcd,0x99,0x87,0x53,0x38,0xd0,0xb6,0x25,0x05,0x06,0x19,0x07,0xa3,0x2d,0x59,0x2f,0xd3,0xc2,0xbf,0xbc,0x41,0x9d,0xeb,0x53,0x0c,0x90,0xcb,0x58,0x26,0xf0,0xfd,0xcd,0x4b,0x93,0x50,0x82,0xa6,0x08,0xe3,0x45,0x86,0xfc,0xe3,0xa3,0xb2,0x88,0x61,0xd9,0xb1,0x1b,0x9f,0xbd,0x7c,0x75,0xfe,0x82,0x6d,0xb9,0x06,0xa7,0x90,0x9d,0x81,0xa7,0xe5,0x72,0x2e,0x54,0x51,0x85,0xa7,0x6c,0x5c,0xe4,0xd3,0xb2,0xed,0x79,0xb6,0xce,0xa7,0xa2,0xaa,0x8b,0x44,0x51,0x55,0xbe,0x84,0x1f,0x79,0xac,0xce,0x03,0xaa,0x16,0xb0,0x94,0x65,0x8b,0xe7,0x51,0x14,0x63,0x75,0x98,0xe0,0xa5,0x69,0x28,0xa7,0xe9,0x5b,0x65,0x31,0x58,0xc9,0x3e,0xfb,0x52,0x38,0xc5,0xd2,0x22,0x12,0xa3,0x31,0x25,0x6e,0xca,0x9b,0x21,0xee,0xc8,0xfd,0x72,0xf6,0x54,0x34,0x11,0x38,0xf1,0xd1,0xfd,0xe1,0xe3,0xc7,0x8f,0x46,0xc3,0x91,0x6b,0xb8,0x53,0xc7,0xfb,0xcc,0xfd,0xec,0xb1,0xa8,0xdd,0xcf,0xee,0xbf,0x02,0xaf,0xf8,0xb1,0xbc,0x94,0x3e,0x12,0x0f,0xbe,0x2d,0xf3,0x95,0x9d,0x14,0xc1,0x3e,0x5c,0xbc,0x78,0x0d,0x96,0xdb,0x3f,0x04,0xf8,0xf8,0xb0,0x55,0x9e,0xb0,0xe3,0x4a,0x44,0x4c,0x83,0x1f,0x41,0x11,0x2c,0xa0,0x76,0xd4,0xd5,0x80,0x90,0xbb,0x5d,0xb5,0x3f,0xc0,0x54,0x17,0x54,0xed,0xb7,0x62,0x07,0x1d,0x23,0x45,0x4f,0x03,0x73,0x15,0x1e,0x65,0xbc,0x6d,0x9a,0xaf,0x38,0x5e,0xfe,0x02,0xd9,0xad,0xb9,0x12,0xc8,0x7c,0x6f,0xe9,0xbe,0xdc,0xdb,0x6c,0xfe,0xa7,0xca,0xf0,0xef,0x92,0x5d,0x13,0x4c,0x26,0xf1,0x75,0x46,0x1d,0xd2,0x65,0xf6,0x6a,0x4b,0x1a,0x9d,0x27,0x4f,0x0e,0x94,0x5b,0x67,0x78,0xb8,0x42,0x70,0x9e,0x7c,0xf7,0xe7,0x09,0x78,0x79,0x2d,0xb1,0x4b,0xc8,0x51,0x00,0x40,0xbd,0x2f,0x57,0xfb,0xa5,0xe0,0xff,0x99,0xbd,0x62,0xf6,0x03,0xf4,0x9f,0xad,0x3e,0x3f,0x34,0xf4,0x67,0xd5,0xc8,0x9c,0x85,0x94,0x2d,0xa1,0xc0,0x41,0xbb,0xd1,0xc9,0x72,0xe7,0x6d,0x38,0x11,0x49,0xd5,0xd8,0x9c,0x83,0x94,0x9a,0x4e,0x5b,0x8f,0x2d,0x92,0xd7,0xb6,0x7e,0x7a,0xba,0xe9,0x6c,0xea,0x8c,0xfd,0x35,0x0f,0x53,0x34,0x21,0xfd,0x27,0x4f,0x54,0x01,0x5d,0xa5,0x61,0xfe,0x50,0xfd,0x7a,0xa9,0xef,0x46,0x43,0xfd,0x77,0xaa,0xe4,0x43,0x4a,0xe7,0x59,0xcc,0x27,0x9b,0x67,0xb8,0xed,0x11,0x6e,0x1c,0x84,0x91,0xeb,0x26,0xaf,0x56,0x87,0x0b,0xb8,0xff,0x80,0xaa,0xce,0xf2,0x13,0x6d,0x78,0x80,0x7f,0x5a,0x15,0xc2,0xcf,0xd0,0x6e,0x43,0x63,0x66,0x78,0x96,0xdc,0xc1,0xea,0x38,0x95,0x87,0x6c,0x65,0xff,0xca,0xb5,0xd0,0x3b,0x5c,0x63,0x41,0x0e,0x58,0x8d,0xe7,0xc9,0x26,0xbc,0x2e,0xf6,0x2f,0x86,0xd8,0x96,0x14,0x54,0xee,0x4b,0x49,0xc4,0x7f,0x92,0xed,0xf9,0x41,0x95,0x1d,0xc8,0x15,0xff,0x52,0xa9,0xee,0x17,0xe9,0x7e,0x79,0xd6,0xc2,0x5c,0xf2,0x99,0x7a,0xf1,0x08,0xf7,0xf6,0x74,0xee,0xdf,0xe0,0x05,0x5e,0xb4,0x26,0xfd,0x7b,0x4f,0x8b,0x55,0x98,0x3a,0xfa,0x90,0x48,0x1f,0x83,0x3a,0xe6,0x38,0x74,0x25,0xd2,0x29,0x4c,0x86,0x43,0xe9,0xce,0x8b,0x38,0x8a,0x44,0x1a,0x30,0x99,0xaf,0x05,0x7b,0xf6,0xf4,0x14,0x01,0x9f,0x39,0xaf,0x00,0xa5,0x43,0x81,0xb7,0x7b,0x3c,0x8c,0x22,0x42,0xca,0xde,0xc1,0xa0,0xc8,0x15,0xc1,0xa2,0xf7,0xd9,0xc6,0xb7,0x9c,0x84,0x14,0x2c,0x57,0x74,0x08,0x70,0x1e,0x78,0xa8,0xe2,0xb9,0x68,0x75,0x80,0xf1,0x9f,0x1a,0x30,0x8c,0xef,0xd4,0xaf,0x1a,0x13,0xe9,0x35,0x4c,0x7a,0xf2,0xc1,0x91,0x06,0xeb,0x9c,0x6e,0x90,0x8d,0x0d,0x1f,0xc0,0xb2,0x17,0x66,0x5f,0x3a,0xcb, -0x82,0x91,0xaf,0x19,0xa2,0x51,0x0e,0xfb,0x4f,0xc5,0x1b,0x76,0x1d,0x38,0x05,0x59,0x30,0xc4,0xe0,0xcb,0x0c,0x84,0x05,0x85,0xc3,0x9c,0xe7,0x0e,0x0a,0x34,0x73,0xed,0x9a,0xda,0x69,0x2c,0x56,0xeb,0x02,0xab,0x4d,0xed,0x00,0x76,0x90,0x59,0x35,0x16,0x13,0x1a,0xf8,0xaa,0x08,0x27,0x81,0x4e,0x30,0x59,0x8e,0x39,0xe6,0xa2,0x9a,0xad,0x72,0xce,0x9d,0x6f,0x1c,0x76,0x6c,0xf7,0xb9,0x33,0x6d,0x91,0x40,0xbf,0xb4,0x6d,0xe2,0xa4,0x9a,0xb6,0xb5,0x3a,0x9f,0x4e,0xab,0x5f,0x1a,0x59,0x79,0xc1,0x09,0x1d,0xab,0x8b,0x45,0x5c,0xa8,0xbb,0xd0,0xea,0x08,0x1e,0xba,0x95,0xc7,0xcc,0xc1,0x9c,0x8e,0x14,0x3e,0x67,0x79,0xb6,0x74,0x90,0xd6,0x09,0xec,0xc0,0x9e,0xf3,0x3c,0x17,0xe4,0x6f,0x15,0xeb,0x1c,0x7d,0x2c,0x93,0xe0,0x72,0xef,0x86,0x34,0x89,0xcf,0xee,0x01,0xf0,0x3d,0xc6,0x6b,0x39,0xc9,0x74,0xb0,0xbf,0xbd,0x37,0xae,0x45,0x12,0x42,0x97,0x83,0x87,0x4c,0x43,0x18,0x60,0xb2,0x32,0x39,0xda,0x14,0xa6,0x2b,0xfc,0x1b,0x70,0x83,0xa4,0xc0,0x20,0x83,0xdf,0x54,0x69,0x3f,0x5e,0xbf,0x36,0x75,0xdb,0x2d,0x66,0xc6,0x80,0xdf,0x3e,0x1c,0x8d,0x53,0x70,0x59,0x29,0x77,0x0f,0x13,0x98,0x79,0xc3,0x42,0x3d,0xc2,0x20,0xae,0x4a,0x6f,0x24,0x3d,0x10,0xcb,0xeb,0xaf,0x5f,0x77,0xcb,0x40,0xa4,0x6e,0x84,0xb7,0xca,0xc9,0xf4,0x7f,0x29,0x66,0x21,0xf8,0xb5,0x03,0x25,0xcb,0x61,0x60,0xaf,0x97,0xcb,0xe3,0xe0,0x06,0x86,0xeb,0xb7,0x30,0x91,0xcb,0xcd,0x24,0xfb,0x5d,0x8c,0x04,0x8b,0xad,0xb8,0xc6,0x2f,0xd3,0x82,0x3a,0xf8,0xc9,0x75,0x79,0xc5,0x33,0x7e,0xa9,0x4e,0xba,0x79,0xcc,0x75,0x8d,0x4a,0x52,0x4f,0x1f,0x6d,0xc7,0x21,0x6c,0x3b,0x60,0xc5,0xa4,0x53,0x91,0xcd,0x9c,0xe6,0x64,0x02,0xef,0x9c,0x0d,0xc2,0x72,0x15,0x78,0xec,0x81,0x9f,0x57,0x1c,0x1f,0xf3,0xcc,0x43,0xc5,0xe2,0x81,0x84,0x0f,0x62,0x4c,0x94,0xe8,0xa8,0xa0,0xb9,0x89,0x1a,0x41,0x6d,0xf2,0xec,0xb7,0xe3,0x88,0x9c,0xc6,0xd6,0x19,0x8a,0x54,0xd4,0xa9,0x7b,0x7e,0xa2,0x32,0x1a,0xb5,0x7f,0x86,0x74,0x94,0xac,0x67,0x4e,0x78,0x52,0x69,0xe2,0x69,0x63,0x82,0x80,0x4c,0x2b,0xd8,0x95,0xf4,0x06,0xbb,0x22,0xd7,0x12,0x42,0x95,0x05,0xb4,0xad,0xef,0xf0,0x3a,0x7c,0xf0,0xea,0xfc,0xe7,0x46,0x66,0x7d,0x99,0xa2,0x48,0x77,0x6f,0x30,0x1d,0xe3,0x4d,0xf1,0x2e,0x93,0x7f,0x2b,0xb2,0xb4,0xf6,0xc4,0x18,0xf6,0x0d,0xda,0x1f,0x60,0xc2,0xb9,0x78,0x1b,0x17,0x12,0x8f,0x6c,0x2a,0xa9,0xb6,0xec,0x7b,0x41,0xfc,0xe8,0xa2,0x24,0x4b,0xcc,0x18,0xfa,0x69,0x83,0xdd,0xad,0x60,0xa3,0xbf,0x1e,0x94,0xc2,0xe7,0xba,0xda,0xfa,0x2f,0x93,0x2e,0xb4,0x27,0xae,0x8e,0xa9,0x98,0xbf,0x0b,0x4a,0x51,0x0c,0x8a,0x9d,0xec,0xbc,0x70,0x07,0x5a,0x53,0x9f,0xf6,0x05,0x92,0x5b,0x87,0x72,0xcd,0x53,0xaf,0xda,0x21,0x4d,0x79,0xcc,0xe1,0x03,0xa5,0xb8,0x69,0x0f,0x4c,0x6e,0x48,0x40,0x9d,0xab,0x34,0x91,0xc6,0xb9,0xc9,0xbe,0x9c,0x14,0x58,0x90,0x93,0x78,0x39,0xef,0x4a,0x6b,0x6f,0x18,0x5a,0x26,0x0b,0x48,0xa5,0xf9,0x28,0xed,0x59,0x3b,0x38,0xec,0x4a,0x41,0xd2,0x03,0xd9,0x56,0x09,0x27,0xb2,0x36,0x36,0x95,0xfe,0x74,0xc0,0xe0,0xfe,0xe8,0x60,0xec,0x90,0xce,0x1e,0x9a,0xb4,0x5b,0xf3,0x6f,0x20,0xaa,0xe9,0xa7,0xee,0x21,0x6c,0xae,0x9f,0x6e,0xf1,0xab,0x47,0xe5,0x80,0x1e,0x7a,0x81,0xad,0x7c,0xc8,0x0f,0x0a,0xca,0xc7,0x51,0xec,0xe7,0x50,0x6c,0x3c,0x78,0x14,0x44,0xc9,0x7d,0x7e,0x99,0x56,0x56,0xef,0x08,0xcf,0xe6,0xd5,0xf8,0xcb,0x54,0x4e,0xd9,0xb8,0xb9,0x53,0x9e,0x26,0xe8,0xab,0xa2,0x81,0xdc,0xb6,0xca,0x91,0x8a,0x6d,0x66,0x33,0x5b,0x90,0x4c,0x99,0x96,0xa4,0xea,0x75,0x1b,0xff,0x08,0x2d,0x56,0xd3,0x00,0x04,0x48,0xbf,0x45,0x49,0xaf,0x45,0xb6,0xcc,0x57,0x77,0x30,0x79,0xff,0x02,0x74,0x8b,0x58,0x2d,0xfd,0xea,0xee,0xdd,0xa3,0xa1,0x45,0x93,0x6b,0xa7,0x82,0x55,0x60,0x6e,0x79,0x35,0x96,0x8e,0x21,0x83,0xa0,0xca,0xde,0xaa,0x49,0xe5,0xd9,0x00,0xe7,0x8c,0x02,0x7a,0x41,0x6b,0xdc,0x96,0x5e,0x55,0xf4,0xca,0xb7,0x36,0x3f,0x0f,0xbd,0xc7,0xba,0x0c,0xfb,0xa1,0x2c,0x2d,0x6e,0x9d,0xe4,0x61,0x0d,0x6d,0x2e,0x0d,0x71,0xfd,0x23,0x8c,0xf9,0x87,0x45,0xbd,0x55,0xba,0xfb,0x26,0xf5,0xac,0x36,0xa9,0x76,0x52,0xa4,0xeb,0x37,0xe6,0x13,0x95,0x6a,0x43,0x9a,0xff,0x34,0x26,0xb0,0xe5,0xfe,0x56,0xe4,0x56,0x0c,0xdc,0x45,0xef,0xbf,0x94,0x71,0x95,0x18,0xd6,0x83,0xef,0x14,0xf6,0xd7,0xa7,0x2e,0x5f,0xbf,0x1e,0x0d,0x8f,0x2a,0xf2,0xbf,0x7e,0x3d,0x34,0xb6,0x6e,0x25,0x0c,0xd2,0x45,0x4d,0x5a,0x96,0xde,0x14,0xc0,0xaa,0x19,0x25,0x0e,0xdf,0x31,0x51,0xe0,0x44,0x5f,0x69,0x6c,0x9c,0x49,0x53,0x73,0x35,0x7b,0xfb,0xd1,0xaa,0x76,0x25,0x5e,0x6b,0xd2,0x5b,0x10,0xc3,0xd8,0x81,0x90,0x97,0xea,0x16,0x60,0xf5,0x1a,0x47,0xe3,0xb5,0x91,0x9e,0xe7,0x06,0x34,0x06,0x93,0x16,0x4a,0x4f,0xf4,0xe9,0x4b,0x85,0x13,0x89,0x0f,0xe2,0xa8,0x4b,0x0b,0xe6,0x95,0x37,0x86,0x6f,0x22,0xf8,0xfb,0x1b,0x0d,0x6b,0xcf,0x88,0x1a,0xea,0x6c,0x3b,0xc7,0xdc,0x5c,0xc4,0x94,0x8b,0x32,0x4d,0x87,0x3b,0x56,0x6a,0x0e,0x9a,0xe9,0x34,0x62,0x56,0x7f,0x33,0x0a,0x8c,0x08,0xb0,0xa8,0xd4,0xd5,0x5c,0x9d,0xed,0x8c,0x7e,0x2b,0xa6,0xb8,0xca,0x18,0x25,0xb5,0x2b,0xc5,0x67,0xab,0x1f,0x13,0x54,0xd0,0x2f,0xb2,0x24,0x09,0x57,0x74,0x06,0x77,0x48,0x4f,0x60,0xc7,0xee,0xef,0xe6,0x8d,0x7e,0xb0,0x10,0x6c,0x28,0x85,0xdc,0xa3,0x47,0x85,0x54,0x2e,0x89,0x06,0xc7,0x12,0x6c,0x13,0x5e,0x92,0x3f,0x2d,0xbe,0x80,0x03,0x1d,0x89,0x28,0x40,0x87,0xfa,0xaa,0x7e,0xb5,0xd8,0xd4,0x81,0x93,0x34,0x0b,0x13,0x24,0x75,0x5b,0xbd,0x87,0xb8,0xae,0x92,0x9a,0x76,0x9f,0x97,0xea,0xc9,0x76,0x57,0xa0,0xc8, -0x5e,0x74,0x00,0x85,0xe8,0x74,0x62,0x4e,0xe7,0x4c,0x68,0xa4,0x35,0x43,0xae,0x91,0xe0,0x63,0x61,0x33,0x19,0x41,0x3d,0xe4,0xd5,0x30,0x35,0xd3,0x8a,0x2c,0x54,0x9a,0x8f,0x0f,0xc5,0xd4,0x48,0x65,0xb2,0x10,0x61,0xde,0xd3,0xa1,0x58,0xec,0xa4,0x29,0x7b,0x92,0xac,0x57,0x5d,0xf7,0xcd,0x4d,0x95,0x98,0x65,0x21,0xa0,0x8c,0x8e,0x36,0x14,0x35,0xd8,0x5a,0x76,0x93,0x59,0xef,0x5d,0x25,0xb0,0x87,0x02,0x2b,0xa9,0xca,0xa2,0x40,0x6f,0xbe,0x07,0xe2,0xa8,0x67,0x9e,0x59,0x68,0x28,0x6c,0xd3,0x83,0xc5,0x52,0x0f,0xac,0xf1,0x58,0x5c,0x85,0x64,0x47,0x5f,0xee,0xa1,0xa6,0x96,0xc1,0x55,0xe1,0xf1,0xd2,0x2c,0x5e,0xae,0x7a,0x65,0xd8,0xb4,0xa8,0xc7,0x44,0x5c,0xde,0x13,0x2f,0xd8,0x09,0x8f,0x96,0x35,0x1e,0x6c,0x88,0x28,0x53,0xa8,0x69,0x61,0x84,0xeb,0xa9,0xac,0x85,0x54,0x28,0x54,0xf0,0xb1,0x58,0xaf,0xc8,0x17,0xe3,0xf4,0x53,0xbb,0xa1,0x45,0x70,0xc9,0x46,0x20,0xc9,0x4f,0x9e,0xc0,0x9f,0x21,0xbb,0xaa,0x57,0x02,0x2e,0xa8,0xd7,0x91,0x2b,0xae,0x23,0x55,0xbc,0x0a,0x4c,0xe9,0xe6,0x11,0x3e,0x09,0x50,0x0b,0x93,0x52,0xf1,0x1d,0xe3,0x04,0x63,0x96,0xd2,0x96,0xdf,0x51,0x57,0x7f,0xec,0x78,0x9b,0x4d,0x98,0x79,0x7e,0x00,0xcb,0x38,0x26,0x36,0xb2,0xa7,0x51,0xfc,0xf9,0xf4,0x19,0xc6,0x7c,0x51,0x47,0xf9,0x8c,0xae,0x4c,0xe0,0x63,0x7c,0x2b,0xb6,0x35,0x4f,0x02,0xe0,0x15,0x88,0xa7,0x09,0x06,0x70,0xed,0x96,0x45,0x7e,0x92,0xa5,0xc9,0x35,0xd0,0x41,0x21,0xbf,0x73,0xad,0x5d,0x5c,0xdc,0x13,0x04,0x82,0x5d,0x64,0xe0,0x80,0xde,0x41,0x84,0xf8,0xa6,0x41,0x49,0x28,0x22,0x53,0xa9,0x05,0x3b,0xfd,0xea,0xab,0x1a,0xd8,0x33,0x2d,0x2a,0x3d,0xaf,0x07,0x6d,0xa0,0xf9,0xcc,0x17,0x5b,0x2e,0xbc,0x8f,0x59,0xaa,0x3a,0xc2,0x27,0xbf,0x30,0x79,0xea,0x05,0xb5,0x89,0x6a,0xa4,0xaa,0x93,0x1f,0xc2,0x4e,0xb4,0x61,0x08,0x69,0x86,0x84,0xa9,0x36,0x40,0x97,0x04,0x0e,0xf2,0x44,0x88,0x47,0x5e,0xe5,0x3a,0xd4,0x9e,0xa4,0xc0,0x20,0x8f,0xa1,0xb8,0x15,0xb5,0x4e,0x44,0x15,0xf6,0x32,0xe2,0x51,0x1a,0x45,0x13,0xaa,0x52,0x2c,0x42,0xef,0x9f,0x77,0x11,0xde,0x1a,0x96,0xa3,0x93,0x3b,0x1c,0x34,0x4f,0x03,0x93,0x5d,0xa8,0x22,0x9c,0x29,0x99,0x39,0x30,0x9c,0x33,0x89,0xfb,0x92,0x62,0xce,0xea,0x8a,0x07,0x4f,0xf9,0x65,0xf9,0xe3,0xca,0xf5,0xa5,0xde,0x26,0x9b,0xed,0xe8,0xa9,0x23,0x55,0x86,0x31,0xc2,0x3c,0xdc,0x1c,0xc2,0x31,0x3a,0x7a,0x52,0x22,0x19,0x8b,0xbe,0xb8,0x91,0xea,0xf3,0xac,0xc6,0xa5,0x7a,0x76,0xe8,0xb2,0x8e,0x0e,0xcd,0xf8,0xbb,0x0d,0x0c,0xbf,0x63,0xe4,0x84,0xba,0xff,0x82,0x8f,0xbb,0xa9,0x77,0xf8,0xaf,0xcb,0xaf,0x55,0x40,0x44,0xdd,0x76,0xbd,0xc8,0xd6,0xd3,0xc5,0x39,0x1a,0x87,0x38,0x95,0x0a,0x04,0xdf,0x0d,0x87,0x52,0xca,0x96,0x40,0x65,0x03,0x1a,0xe4,0xef,0x1a,0x45,0x4b,0xd5,0x3f,0x9a,0xf7,0xe6,0x09,0xe5,0x8f,0x30,0x7f,0x3a,0x46,0x48,0x48,0xef,0xde,0x25,0x04,0xd5,0x6a,0xb5,0x74,0xd1,0x8e,0x9e,0x87,0x01,0x61,0x38,0x91,0x3c,0x0b,0x08,0xc9,0x49,0x3a,0xa6,0xf3,0x82,0x70,0x52,0x0c,0x42,0xf7,0x59,0xf9,0x3d,0xc3,0xd8,0x4a,0xf8,0x6c,0x78,0xd6,0x9a,0xc8,0xec,0xb7,0xdb,0x32,0xc6,0x4b,0xe1,0xad,0xd3,0x65,0x99,0xba,0xa0,0x7b,0x33,0xb4,0x8a,0x8c,0xb6,0x55,0x67,0x4c,0xfa,0x15,0x0c,0x75,0xb4,0xf3,0xd7,0x57,0x17,0x8c,0xab,0x07,0x31,0xa0,0x35,0x2a,0xa4,0x10,0x9f,0x57,0xc7,0xf7,0x2e,0xca,0xd0,0x25,0x58,0xf2,0xf3,0xa5,0x00,0x4c,0x78,0x30,0xa2,0x5e,0x8e,0xb3,0xca,0xb6,0xbb,0x79,0xd0,0x5b,0x34,0x95,0xe2,0xda,0xb3,0x2b,0xa5,0x75,0x6a,0xfe,0x95,0x02,0x1e,0xfe,0x46,0xe2,0x0b,0x65,0x55,0x63,0x72,0xad,0x9d,0xe7,0xa8,0x9f,0x1d,0xf9,0xe5,0x1c,0x1f,0xa6,0xc6,0xd7,0x51,0x40,0x6f,0x80,0x85,0xdb,0xfc,0x67,0x0c,0x60,0x92,0xca,0x0c,0xcc,0xb0,0xb3,0xf2,0x7f,0x36,0x1c,0xf2,0x4f,0x1b,0x7c,0x4a,0x91,0xea,0x45,0x08,0x6b,0x62,0xff,0x1b,0x08,0x7a,0x7e,0x05,0x91,0x20,0xb8,0xcb,0x07,0xe5,0xff,0x8b,0x10,0x1b,0xe7,0x17,0x31,0x39,0xa7,0x30,0x9d,0x82,0x70,0xc9,0x8a,0x24,0x9f,0xae,0x0c,0xd8,0xb1,0xa5,0x8a,0xe0,0x61,0x36,0x48,0x4b,0x40,0xcf,0x2d,0xc3,0x8c,0x59,0x9a,0x81,0xfe,0x09,0x6c,0x45,0xd1,0x7b,0xe1,0x0e,0x3d,0x01,0xb2,0xf2,0x0e,0x31,0x05,0x2d,0xb6,0x50,0xef,0xa1,0xa8,0x5c,0x02,0x7a,0xe9,0xc4,0x28,0x3e,0x36,0x41,0x06,0x20,0x33,0x02,0x4f,0xe6,0xf1,0xfd,0x71,0xe4,0xea,0x32,0x0d,0x89,0xdb,0xd6,0xbd,0x7e,0x55,0xc5,0xad,0xb1,0x5b,0xac,0x9f,0xd8,0x61,0xa9,0xc8,0x7a,0xdf,0x40,0x33,0x8c,0x64,0xbc,0x12,0x57,0xb1,0xfa,0x3c,0x25,0x6b,0xba,0x16,0x56,0xe5,0x16,0x3b,0xa8,0x97,0xb0,0xf6,0xa4,0xc8,0x35,0x71,0xeb,0x2c,0xb9,0xbf,0xff,0xf8,0xf6,0x07,0xe0,0xa5,0xf7,0x02,0xb4,0x52,0x21,0xc7,0xf8,0x5c,0x9a,0x48,0xc9,0xeb,0x85,0x5d,0xd8,0x70,0xff,0xd1,0x90,0xeb,0x7f,0x5a,0xa1,0x12,0x96,0x9b,0xb9,0x6f,0xb0,0x26,0x0f,0xb5,0x03,0x1d,0x46,0xd7,0xa8,0xe9,0xf1,0x10,0xe9,0xfe,0x50,0x79,0xd5,0x6a,0xba,0xcf,0x06,0x87,0x0d,0xa6,0x7c,0x9d,0xf1,0x4d,0x0a,0x4e,0x2b,0x1e,0x8f,0x3b,0x86,0xf4,0x23,0xa6,0xd2,0xc1,0x68,0x45,0x51,0xaa,0xed,0xf5,0x03,0x8a,0x95,0x17,0xfe,0x5e,0xd0,0x03,0xb7,0x6f,0x60,0xad,0xd0,0x10,0xc2,0x89,0xc0,0xa0,0xf0,0x40,0xcb,0xcc,0xe9,0x69,0xb8,0x8a,0xbd,0x79,0x2c,0x17,0xeb,0x09,0x86,0x7c,0x4f,0x61,0xbb,0xce,0x8a,0xd3,0x6c,0x89,0x31,0x99,0x30,0x3f,0x35,0x51,0x1b,0x28,0x27,0x3c,0xc5,0xa9,0x76,0x4c,0x9b,0x12,0x5d,0xbb,0xfc,0x0c,0x7b,0x5e,0x01,0xc6,0x21,0x32,0x04,0x5e,0x74,0x06,0x5d,0x37,0x1c,0x87,0x4f,0x4d,0xa9,0xc9,0x43,0x09,0x8f,0x8f,0xdd,0xf4,0xb8,0x6a,0x1c,0x5e,0x79,0x26,0x05,0xfa,0xe3,0x34, -0x5b,0xa7,0x72,0x6c,0xce,0xf4,0x4c,0x34,0xfe,0xa4,0x0c,0xcb,0x0b,0x6f,0xb5,0x9e,0x24,0x71,0xb1,0x10,0xd1,0xc7,0x50,0xba,0xe3,0x2c,0x28,0x9e,0x7e,0xf7,0xf8,0xa1,0x78,0x74,0x36,0x28,0x4e,0x1f,0x3c,0x16,0x8f,0xd0,0xdd,0x7a,0x1d,0x7f,0x11,0xd1,0x00,0x8f,0x44,0x9d,0x05,0x26,0x2c,0x38,0xe1,0x3c,0x63,0x3e,0x34,0xa0,0x96,0x8d,0x16,0x11,0x98,0x5c,0xd4,0x80,0x7a,0x8d,0x81,0x2c,0xa5,0x0f,0x9c,0x4d,0x58,0x38,0xea,0x21,0xa0,0xc8,0xa1,0x5b,0xcc,0xf4,0x2e,0xb0,0xa1,0x94,0x0a,0x53,0x40,0xf5,0x16,0x35,0x80,0x30,0xff,0x95,0x02,0x5a,0x51,0x3a,0x88,0xc7,0xe8,0x96,0x88,0x69,0xad,0x1f,0x14,0x32,0xee,0x9d,0x4e,0x05,0xf7,0xf4,0xbb,0xce,0x1f,0xcb,0xe1,0x83,0xb6,0x35,0x46,0x36,0x4d,0xfb,0x42,0xa0,0x18,0x29,0x33,0x23,0xae,0xd5,0xe8,0x67,0xb6,0xb4,0x01,0x82,0xbf,0x6a,0xd5,0x94,0x3d,0x53,0x7a,0xa5,0xac,0x48,0xc8,0xfc,0xc6,0x06,0x3a,0xea,0x66,0x63,0x2e,0x6f,0xd2,0xb8,0x9e,0xc8,0x73,0x58,0xcd,0x86,0x09,0x9d,0xd1,0x8d,0xe3,0x72,0x0c,0x74,0xd9,0x85,0x3d,0x5d,0x3c,0x7a,0xf6,0x22,0x5b,0x27,0x51,0x7a,0x4f,0x22,0xdb,0x39,0xba,0x67,0x07,0xbb,0xae,0x8e,0xff,0x34,0x4f,0xc3,0x74,0xc9,0xcc,0x91,0x0b,0xe1,0xd0,0x3b,0x58,0xe0,0x3e,0x9e,0x3d,0x3d,0x05,0x0c,0xac,0x76,0x2c,0x12,0x26,0x40,0xe7,0x07,0xa3,0x82,0xc8,0x6b,0x5a,0x75,0xc6,0x21,0xac,0x7b,0xde,0xb4,0xe1,0xbb,0x37,0x83,0xfa,0x3f,0xf3,0xe9,0xbc,0x0b,0x0f,0xe6,0x2e,0xc8,0x10,0x9e,0x54,0xe1,0xa5,0x28,0x20,0xa7,0x7c,0x91,0xac,0x8e,0x60,0xcf,0x5b,0x38,0x38,0xe9,0xf5,0x07,0xb3,0x6a,0xd0,0x26,0xdc,0xa0,0x45,0x9d,0x8e,0x1d,0xc1,0xf9,0x48,0xbd,0x49,0xa1,0xe4,0x7e,0xc7,0x55,0xb1,0x94,0x93,0x7e,0x83,0x52,0xbf,0x43,0x50,0x06,0x2f,0xea,0xe4,0xb6,0xbc,0xb2,0x66,0x1f,0x69,0xaa,0x54,0x73,0xfb,0x45,0x35,0x49,0xef,0xaa,0xec,0xe8,0x9f,0xbd,0x69,0xaa,0xbf,0xf7,0x5a,0x0c,0x2e,0xae,0x5a,0x45,0xcd,0x3a,0xbd,0x93,0x20,0xc8,0x17,0x6e,0x51,0x5f,0xf6,0xe3,0xdf,0xbb,0x5b,0x28,0xd9,0x58,0xea,0xd4,0x8c,0x37,0xad,0x40,0xe4,0x93,0xbd,0xb0,0x14,0xe0,0xe5,0x0d,0x6b,0x0f,0x21,0xc7,0xff,0x03,0xad,0x98,0x43,0xc8,0x4e,0x6a,0x00,0x00 +0x1f,0x8b,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x0a,0xed,0x3d,0x6b,0x73,0xdb,0x38,0x92,0x7f,0x85,0xc6,0x64,0x13,0x71,0x0c,0xd3,0x52,0x5e,0x35,0xa1,0xc2,0xb8,0x32,0x79,0xec,0x64,0x2b,0x93,0x99,0x8b,0x9d,0x9b,0xdd,0xf2,0xf9,0x52,0x94,0x08,0x49,0x9c,0x50,0xa4,0x96,0x84,0xa2,0x78,0x1d,0xfd,0xf7,0xeb,0x6e,0x00,0x24,0x48,0x91,0x94,0x3c,0x8f,0xbd,0xba,0xaa,0xfb,0x62,0x49,0x00,0xba,0xd1,0x00,0xba,0x1b,0xdd,0x8d,0x06,0xfc,0x39,0xcc,0x9d,0xb5,0x9c,0x9e,0x8b,0x69,0x96,0x46,0x05,0x97,0xf1,0x52,0xfc,0x2b,0x4b,0x05,0x0f,0x7f,0x0d,0xbf,0x64,0x93,0x5f,0xf9,0x22,0x2c,0x56,0xe1,0x5c,0x14,0x3c,0xc9,0xe6,0x51,0x28,0x43,0x2e,0x8a,0x55,0x3e,0x8b,0x23,0x68,0x2e,0x45,0x2a,0xf9,0x67,0x91,0x17,0x71,0x96,0x06,0x6c,0xe8,0x7d,0xe7,0x8d,0x18,0xdf,0x88,0x49,0x91,0x4d,0x3f,0x05,0xe9,0x3a,0x49,0xf8,0xa6,0xf8,0x90,0xc7,0x01,0xdb,0x14,0xfe,0xe9,0x29,0x3b,0xde,0xc4,0x69,0x94,0x6d,0xbc,0x24,0x9b,0x86,0x12,0x40,0xbc,0x45,0x56,0xc8,0x34,0x5c,0x8a,0x63,0x76,0xba,0x29,0x18,0x47,0xec,0xc1,0xe5,0x15,0x8f,0x8b,0x9f,0x66,0xb3,0x78,0x1a,0x87,0xc9,0xf7,0x59,0x98,0x47,0xc1,0xd1,0x88,0x43,0x67,0xb3,0x78,0x1e,0xdc,0x4c,0xb3,0xe5,0x32,0x4c,0x23,0x9f,0xa9,0x82,0x59,0x9c,0x08,0xc6,0x53,0x21,0x37,0x59,0xfe,0xc9,0xbf,0x99,0x14,0x45,0x0c,0x75,0x8c,0x9b,0xcf,0xcd,0x32,0x8b,0x84,0x3f,0xe2,0x8b,0x18,0x3e,0x86,0x7c,0x55,0x6c,0xa8,0x38,0x9b,0xcd,0x70,0x98,0x50,0x12,0x2d,0xa6,0x2b,0xa8,0x8f,0x57,0x04,0xb5,0x9e,0x00,0x2a,0xfc,0x36,0x0f,0xa5,0xd8,0x84,0xd7,0xf8,0x35,0x4a,0x0b,0xf8,0xd8,0xc2,0x34,0xe4,0xd1,0x26,0xcc,0x85,0x7f,0x93,0x8b,0x30,0x12,0xf9,0xc5,0xf5,0x0a,0x31,0x6f,0xe6,0xd1,0x70,0x15,0xa7,0xfe,0x43,0xfc,0x36,0xc2,0x6f,0x8f,0xa0,0x77,0xfc,0x1c,0x72,0x9c,0xa5,0x79,0x08,0x5f,0x1f,0xdc,0xe7,0xb9,0x54,0xed,0x73,0xd5,0x38,0xa7,0xfe,0x1f,0x0e,0x87,0x5b,0x3e,0x17,0xa9,0xc8,0xc3,0xc4,0xbf,0xa1,0xd9,0x58,0xfa,0x0c,0xe6,0xf7,0x04,0x41,0x19,0xcf,0x45,0x21,0xc3,0x5c,0x96,0x94,0x87,0xd1,0x32,0x4e,0x81,0x96,0xe5,0x3f,0xa5,0xf4,0x6f,0x44,0x1a,0x4e,0x12,0x11,0x41,0x2d,0x42,0x22,0xad,0xab,0x0c,0x1a,0x8f,0xbe,0xfb,0xee,0x01,0x97,0xd9,0x2a,0x9e,0x62,0xd1,0xba,0x10,0x39,0x55,0xa9,0xa1,0x6f,0x79,0x2a,0x57,0xfe,0x0d,0x14,0x7e,0xc6,0xf2,0x55,0x96,0x25,0x1e,0x94,0x78,0x59,0x3e,0x67,0x3c,0x86,0x05,0xcd,0x3f,0x03,0x29,0x0f,0x86,0x25,0x1b,0xf8,0xc3,0xed,0x96,0xe3,0xfa,0x07,0x40,0x3b,0xb0,0x48,0x1e,0x15,0x32,0x43,0xba,0xe0,0x4f,0x30,0xe4,0x45,0x92,0x49,0xf8,0x80,0x65,0x59,0x25,0x42,0x0a,0x5a,0x2b,0x5c,0x94,0xe0,0x66,0xcb,0x27,0xe1,0xf4,0xd3,0x7a,0x45,0x23,0x50,0x15,0x1a,0xac,0x2a,0x19,0xcf,0xd6,0xe9,0x14,0x39,0xc1,0x99,0xe4,0xd9,0x06,0x88,0xba,0x80,0x5e,0x07,0xee,0xcd,0x67,0x60,0x49,0x11,0xa4,0x62,0xe3,0xbc,0x84,0x85,0x18,0x0c,0x5d,0x2e,0xcb,0x5f,0x3c,0x0d,0x7e,0x0c,0xe5,0xc2,0x9b,0x25,0x59,0x96,0x0f,0xa4,0x37,0x17,0x52,0x41,0x9d,0x8e,0xc4,0x83,0xe3,0xc7,0xc3,0x6f,0xcb,0x22,0x24,0x1f,0x18,0xa9,0x10,0x72,0xe0,0x7e,0x7b,0x32,0x72,0xc7,0xc2,0x83,0xef,0x1f,0x2e,0x5e,0x68,0x56,0x1f,0xa4,0x2e,0x8f,0xb2,0xe9,0x7a,0x09,0x5c,0x8c,0x30,0xaf,0x12,0x81,0x5f,0xbf,0xbf,0x7e,0x13,0x0d,0x58,0x2e,0xa7,0xcc,0xf5,0xe2,0x14,0xd6,0xe6,0x87,0x8b,0x1f,0xdf,0x06,0xc2,0x93,0x19,0x82,0xca,0x3c,0x4e,0xe7,0x03,0xd7,0x2b,0x92,0x78,0x0a,0x94,0xf1,0x93,0x07,0xee,0xb6,0x1c,0x45,0x24,0x3e,0x43,0x69,0xcf,0x20,0x2c,0xca,0x2b,0x91,0x43,0xa2,0xc5,0xc1,0x44,0xcb,0x1e,0xa2,0xd7,0xbf,0x85,0xe8,0xe2,0x3a,0x9d,0x7e,0xdf,0x33,0xfd,0x75,0xb2,0x45,0x7d,0xc2,0x5d,0x58,0x8e,0x4a,0x28,0x81,0x52,0xe4,0x1b,0xb6,0x1d,0xa7,0x9e,0x58,0x65,0xd3,0x45,0x20,0x8d,0x3a,0x80,0x51,0xa4,0xd1,0xe0,0x6f,0xe7,0x3f,0xbd,0xf3,0x0a,0x22,0x27,0x9e,0x5d,0xc3,0x02,0xb8,0xfc,0xce,0x80,0x7d,0x03,0x1c,0x08,0x74,0x4f,0x81,0xba,0x4f,0x03,0x8b,0xb2,0x05,0x20,0x4d,0xc4,0x7b,0x12,0x37,0x20,0x6b,0x18,0x04,0xc1,0x2a,0xcc,0x0b,0xf1,0x26,0x95,0x83,0xee,0x85,0x2b,0xa5,0x13,0x50,0x02,0x33,0xaf,0x85,0x7b,0xd6,0xdd,0x7a,0x13,0x8b,0x39,0xf4,0xf2,0x3a,0xcb,0x97,0xd0,0xbc,0x90,0xd7,0x89,0xf0,0xa2,0xb8,0x58,0x25,0xe1,0x75,0xc0,0x52,0x58,0x0b,0xd6,0x3d,0xdb,0xcb,0x59,0x3e,0x7d,0x74,0xff,0x7e,0x3b,0xec,0x04,0x94,0xdc,0xa7,0x1e,0x60,0x02,0x45,0xe5,0xd0,0x05,0xea,0xfa,0xa3,0x7f,0xf7,0x78,0xf7,0xd1,0xdc,0x3b,0x60,0x9a,0x2c,0xd7,0xbf,0xff,0x5b,0x89,0xbe,0x7b,0xf7,0xff,0xd6,0x2a,0xa9,0xf1,0x36,0x99,0xf5,0xe5,0x0f,0x2f,0x7e,0x06,0x56,0x65,0x23,0x06,0xf3,0x50,0xa2,0xfd,0xe7,0x5a,0xe4,0xd7,0xe7,0x22,0x11,0x53,0xd0,0x7f,0x83,0x7b,0x71,0xba,0x5a,0xcb,0x4b,0xdc,0xf8,0x02,0x86,0x1b,0x90,0x56,0xe4,0xec,0xca,0x9f,0x2e,0xc4,0xf4,0x93,0x88,0xee,0xe9,0x49,0x39,0x43,0xe1,0x00,0x75,0x29,0x61,0x33,0x44,0x09,0x01,0xf9,0x8d,0xc4,0x87,0xd5,0xc0,0xf5,0x07,0x6d,0x35,0x2f,0xb3,0x4d,0x3a,0x50,0x12,0x65,0x57,0x2d,0xb2,0xcd,0xc0,0xb5,0x28,0x4d,0xe2,0x42,0x9a,0xdd,0x0c,0x68,0x6d,0xec,0xb6,0x3d,0xcc,0xb3,0xbb,0x6a,0xb0,0x29,0x74,0x2f,0xda,0x1c,0x37,0xc6,0xb2,0xe5,0xa3,0xbe,0x96,0x23,0xbb,0xe5,0xc3,0xee,0x96,0xf3,0x55,0x9c,0xe5,0xc9,0x75,0xd5,0xfd,0x83,0x03,0xfa,0x87,0x25,0xa3,0xf9,0x0d,0x8e,0x86,0x07,0xd0,0x70,0x50,0xeb,0x8a,0x8e,0x83,0x9a,0xd7,0x26,0xee,0x20,0x08,0xb4,0x16,0xec,0x81,0x2a,0x73,0xc7,0x33,0xcb,0xe6,0x91,0x39,0xd1,0x0d,0x1e,0x09,0xe0,0xd1,0x1e,0x60,0x50,0xd2,0xc0,0x43,0xb7,0x59,0xe8,0x1d,0x1c,0x65, +0x93,0x83,0x39,0xa0,0x89,0x42,0x9b,0x4e,0x07,0xf3,0x45,0x0b,0xfc,0xa8,0x17,0x1e,0x57,0xa9,0x28,0x3a,0xe1,0xc9,0x4c,0xeb,0x81,0x0e,0x7b,0xfa,0x36,0xa6,0xdd,0x9f,0xb6,0x82,0x4d,0x4e,0xdf,0x01,0xef,0xa5,0xfd,0x90,0xf5,0xe7,0xf5,0xed,0xb5,0xae,0x1f,0xc0,0xd6,0x07,0xd5,0x50,0xdb,0xbb,0xef,0xdd,0x30,0xbd,0xd1,0x33,0x9f,0x41,0x87,0x09,0xd8,0x06,0xd4,0x90,0x71,0x87,0xa1,0x85,0xc8,0xfc,0x7b,0xc7,0xf8,0x79,0xcc,0xb6,0xac,0x81,0x0e,0x36,0xf8,0x7d,0xe8,0x94,0xe1,0x70,0xaf,0xc7,0xba,0x01,0x24,0xca,0x6e,0x6d,0x0e,0x0c,0x0d,0x58,0x55,0xd3,0x0d,0x6c,0x6c,0xdb,0x1d,0x76,0x40,0x60,0x53,0xd9,0x0d,0xfe,0x32,0xcf,0x56,0xa8,0x5e,0x8d,0x89,0xd6,0x86,0xa5,0xf4,0x9c,0x6a,0xc6,0x2c,0xb7,0x8d,0xc2,0x6a,0x56,0x72,0xf1,0x19,0x87,0x1f,0x83,0x99,0x77,0xd3,0xd9,0xeb,0xaf,0x45,0x96,0x2e,0xb2,0x24,0xa2,0x21,0x93,0x59,0x77,0x21,0xbe,0xc8,0xa0,0x61,0x45,0x29,0x12,0x38,0xf9,0x5b,0xf7,0x95,0xfa,0x2f,0xb1,0x03,0x1c,0xb8,0x40,0x61,0x32,0x60,0xb8,0x0d,0xd8,0xcb,0x02,0x9f,0xd4,0x42,0x44,0x40,0x01,0xc2,0x94,0x00,0x33,0x60,0x88,0x9f,0xd6,0x72,0x70,0x7f,0x38,0xe4,0xa6,0x39,0xb5,0x91,0x8b,0xb8,0x00,0x33,0xad,0x28,0x06,0x0c,0x6d,0xfb,0x79,0x9e,0xad,0x61,0xf5,0x38,0x9b,0x03,0x89,0x1a,0xee,0x4d,0x3a,0x40,0xab,0x70,0xdb,0xb3,0x8c,0x65,0x3f,0x95,0x9d,0xca,0x9e,0x2e,0x1e,0x3f,0xfb,0x47,0xb6,0x86,0x4d,0xf4,0xb3,0xb0,0x28,0x73,0xa6,0xc0,0xa3,0xe8,0x7a,0x3a,0xe0,0x5d,0x84,0x85,0x70,0xc8,0x44,0x74,0x16,0x22,0x17,0x8e,0xcc,0x70,0x0e,0x63,0x30,0x52,0x81,0x85,0x1c,0x05,0xe1,0x3d,0x3d,0x05,0x44,0x8c,0xd7,0x86,0xa3,0xcc,0x4a,0x6b,0x20,0xb9,0x90,0xeb,0xbc,0xb6,0x02,0xfc,0x68,0xb4,0xb5,0x2d,0x62,0xa0,0xc2,0xda,0x20,0xbb,0x55,0xdf,0x6f,0xb3,0x74,0x78,0x87,0x22,0x3c,0x00,0x5b,0x5d,0xa3,0xb6,0x62,0x1a,0x1d,0x8a,0x69,0xd4,0x8b,0x89,0x94,0xe3,0x01,0x78,0xea,0x3a,0x76,0x17,0x8f,0x51,0x94,0x87,0xa0,0x0a,0xfb,0x08,0x22,0x7d,0x79,0x00,0x96,0x86,0xde,0x6d,0x41,0x74,0xf8,0xc0,0xfa,0xf1,0xa0,0xbc,0x1f,0x80,0xa8,0xa6,0x8b,0x5d,0x6e,0xcb,0x5d,0x9d,0xe5,0x94,0x92,0xdc,0xd1,0x69,0xc1,0xe1,0x0a,0x91,0xb7,0xe8,0xb4,0x03,0x28,0xdc,0xd1,0x8d,0x2e,0x6f,0x51,0x6b,0x07,0x20,0xea,0xd2,0x92,0x7d,0xa3,0xd6,0xe1,0x8f,0xd2,0xed,0xec,0x44,0x4e,0xc1,0x8f,0xd5,0x26,0x32,0x48,0xc7,0xa8,0xf0,0x8e,0x82,0x40,0xdc,0xbd,0xcb,0x18,0x7e,0x9e,0x69,0x4d,0xe8,0x69,0x94,0x1e,0xc6,0x3c,0x82,0x72,0x52,0x4c,0xa9,0x0a,0xb3,0x74,0xf7,0x63,0x82,0x52,0xcd,0x49,0x35,0xf0,0x3a,0x80,0x71,0xc0,0x74,0x84,0xeb,0x32,0xdc,0xd1,0x3e,0x13,0xae,0x1f,0x26,0x22,0x97,0x03,0xf6,0x1c,0xc7,0x06,0xfb,0x64,0x1e,0x02,0x84,0xf3,0x73,0x58,0x14,0x9b,0x2c,0x07,0xad,0x16,0xa6,0x69,0x26,0x9d,0x89,0x70,0xc4,0x72,0x25,0xaf,0x59,0x63,0xea,0x30,0x0c,0x54,0x71,0x0c,0xfe,0xf2,0xb4,0x2b,0x11,0x0c,0x79,0xcd,0x7b,0xbc,0x53,0x77,0x3a,0xb0,0x69,0x87,0xd3,0x01,0x44,0x81,0x27,0xd6,0x86,0x72,0x54,0x72,0x05,0x15,0xe3,0x34,0x75,0x4f,0x22,0x36,0xc1,0x16,0xcd,0x49,0x24,0x50,0x0c,0x53,0x1d,0x30,0x7d,0xd8,0x16,0x9b,0xee,0x70,0x25,0x21,0xa1,0x08,0x57,0x3f,0x01,0xd4,0xa4,0x95,0x02,0x8c,0x8a,0xf5,0xc3,0x62,0x8b,0x76,0xe2,0x91,0xa9,0xfa,0x69,0xae,0x78,0xb4,0x83,0xef,0x69,0xc6,0x7f,0x9a,0x4a,0xf0,0x07,0x8b,0x81,0x50,0x9c,0xdf,0x3d,0x99,0xc2,0x1d,0xab,0x2d,0xeb,0xe8,0x48,0x2a,0xb4,0xde,0x32,0x94,0xd3,0xc5,0xe0,0xf4,0xbf,0x07,0xf7,0x1f,0x5d,0x0e,0x4f,0x1e,0x5d,0x7d,0xbd,0x0f,0x1f,0x0f,0xaf,0xe0,0xcf,0x93,0xab,0xaf,0x97,0xc3,0xd1,0xd5,0x19,0x7d,0xa5,0x3f,0x67,0xee,0x7f,0x79,0xff,0x3b,0xed,0xee,0x9c,0xba,0x5f,0xbf,0x0e,0x34,0x8b,0x97,0xdb,0xbb,0x40,0x6d,0x03,0x7b,0x7b,0x98,0x3a,0x71,0x0a,0xc3,0x89,0xe1,0x6b,0x14,0x81,0x9c,0x14,0x0e,0x4c,0x0d,0x3b,0x86,0x75,0x96,0xde,0x0c,0xe6,0xa2,0xa0,0x8d,0xb9,0xa9,0x24,0x55,0xac,0xb7,0x54,0x17,0xc3,0x71,0x3c,0x33,0xec,0xaa,0xeb,0x3c,0xf4,0xa9,0x29,0x28,0x59,0x2b,0xc5,0x18,0x30,0x94,0x2a,0xc7,0xdd,0xf6,0xce,0x77,0xd5,0x21,0x48,0x8a,0xcc,0xb0,0x7d,0xd3,0xed,0xdf,0xb7,0x54,0x0c,0x03,0xcf,0xcc,0x1d,0x37,0xba,0xc6,0xd2,0x40,0x7a,0xd9,0x0a,0x87,0x51,0x5c,0x4a,0xd0,0xec,0x18,0x0b,0x10,0xd1,0x9b,0x34,0x12,0x5f,0xae,0xd4,0xa2,0x6e,0x45,0x82,0x16,0x4e,0x0b,0xe4,0x81,0x94,0x2a,0xad,0x08,0xd3,0xd1,0xbd,0xe9,0x63,0x38,0x3c,0xa4,0x58,0x9b,0x92,0x79,0x17,0x3d,0xf8,0x46,0x97,0x14,0x44,0x6f,0x2a,0x90,0x43,0x42,0x19,0x48,0x46,0xa8,0x83,0x19,0xbb,0xb1,0x0c,0xf7,0xac,0x6d,0x3d,0x46,0x7e,0xeb,0x2a,0x8d,0x69,0x2e,0x76,0x57,0x76,0xd2,0x3f,0x1f,0x9b,0x78,0x16,0x4f,0xd4,0x12,0x68,0xf9,0xbb,0xf5,0x20,0x7a,0xe3,0x31,0xae,0xdb,0xc6,0x69,0x23,0xa2,0xf6,0xa6,0x93,0x0f,0x8f,0x6a,0xe2,0xce,0xe2,0x95,0x66,0x77,0xe6,0xba,0x4a,0xae,0x71,0xcd,0x1a,0x8d,0xd4,0x51,0x44,0x5f,0x8b,0x28,0x2d,0x00,0x4f,0x5f,0x0b,0x7d,0x88,0x51,0x35,0x69,0x90,0x17,0xaf,0x7a,0x38,0xab,0x22,0xb2,0x61,0x5a,0x98,0xb1,0xa5,0x45,0x37,0xb4,0xa1,0xad,0x1d,0x54,0x8d,0xad,0x47,0x86,0xf4,0xd8,0xdb,0xa1,0xf5,0xa8,0xba,0xc1,0xcb,0x61,0x6b,0xb1,0x6a,0xc0,0x93,0x0c,0x04,0x3b,0x68,0xfb,0xd5,0x3a,0x32,0xd6,0x2a,0xec,0x9e,0x0d,0x7d,0xa0,0x74,0x88,0x35,0xa8,0xa2,0x3f,0x1f,0x11,0xe3,0xc7,0x70,0x06,0xaa,0xf0,0x63,0xa1,0x22,0xfb,0x1d,0xc6,0x12,0x2a,0x9c,0x59,0x96,0x2f,0x5f,0xe2,0xe1,0x18,0xc6,0xe4,0x5f,0xeb,0x1f,0xd5,0xe1,0x49,0x9c,0xfe,0x9c,0x67,0x73,0x5c,0x2d,0xdc,0x4c,0xc0,0xf9,0x99,0x64,0x11,0x8e,0x3f,0xc9,0x42, +0xe8,0x51,0x1f,0xd7,0x79,0x0b,0xb9,0x74,0xbe,0x59,0xe9,0x86,0xfa,0xf0,0x8e,0x55,0x0e,0x9e,0xe4,0x29,0x0f,0x5d,0xe4,0x62,0x58,0x80,0xe9,0x14,0x97,0x1e,0x64,0x27,0x25,0x7c,0x9e,0x01,0x63,0xda,0xfd,0x5b,0x88,0x78,0xbe,0x00,0x68,0xf6,0x70,0xc8,0xc8,0xe3,0xdc,0x69,0x31,0x83,0x0e,0x4e,0x8a,0xf8,0x5f,0x02,0x1a,0x7d,0xf9,0x72,0x92,0x84,0xf9,0x1c,0x74,0xd4,0x18,0x47,0x93,0xe1,0xb9,0x51,0x50,0x08,0xf9,0x46,0xdb,0x9d,0xb6,0x73,0x06,0xfd,0xdb,0xe8,0x4e,0x26,0x61,0x6e,0x50,0x6e,0xe2,0x48,0x2e,0x18,0xcf,0x8e,0xd9,0x5f,0xa0,0x28,0x94,0x32,0x07,0x13,0x2b,0x8f,0xc3,0x13,0x9a,0xb6,0x14,0xdc,0x5b,0x9e,0xb9,0x38,0xcc,0x64,0xa0,0xda,0xf0,0xd1,0x10,0xe5,0xff,0xf8,0x38,0x03,0x23,0x09,0x1c,0xc8,0xbc,0xec,0xb0,0x50,0x94,0x58,0xd6,0xe6,0x14,0x1c,0x35,0x29,0xf4,0x52,0x01,0x5e,0x86,0x27,0x2f,0x8b,0x5c,0xcc,0x40,0xaf,0xc1,0x96,0x4e,0xc7,0x97,0xad,0x86,0xe4,0x31,0xa3,0xf3,0xcc,0x84,0x71,0x61,0xb9,0xe8,0xec,0x22,0xbf,0x56,0x2e,0x2a,0x00,0xa5,0x20,0x8f,0xce,0xab,0xf3,0x9f,0xfb,0x02,0xcd,0xa6,0x1d,0x8e,0x6c,0x05,0x1a,0x28,0x7a,0xb1,0x88,0x13,0xdc,0xfb,0x0f,0x83,0xb9,0x65,0x5c,0x7b,0xbd,0x8a,0x60,0xb4,0x38,0xc9,0xe4,0x20,0x03,0x67,0xbf,0x23,0xed,0x67,0x4f,0xbb,0x63,0xff,0x38,0x31,0x3c,0x71,0x20,0x4e,0xcb,0xb7,0x7f,0x61,0xce,0x06,0xd9,0x76,0xcb,0x1f,0x0d,0x87,0xee,0xb8,0xd8,0xc4,0x68,0xbe,0x00,0xaf,0x4e,0xc1,0xa9,0x07,0x40,0x64,0x54,0xe6,0xdf,0xf1,0xf0,0xc8,0x79,0x70,0xb3,0xce,0x13,0x9f,0x9d,0x2a,0x74,0x8c,0xd3,0xb9,0x29,0xfb,0xf9,0xa7,0xf3,0x0b,0x75,0x40,0xec,0x1b,0x61,0xe0,0xd0,0x15,0x92,0x84,0xdf,0x7d,0x75,0x44,0x8c,0x2c,0x4d,0xe7,0xb2,0xe8,0xcf,0x8f,0x27,0xb0,0xa4,0x9f,0xc6,0xd4,0x85,0x0e,0x06,0xf8,0x7d,0x87,0x51,0x6a,0x75,0xdd,0x1a,0x5c,0x04,0xd6,0x7b,0x9e,0x5d,0x37,0x00,0x6b,0xa1,0x2b,0xd3,0x64,0x7b,0xaf,0x06,0x69,0xec,0xfe,0x1e,0x48,0xd3,0x04,0x20,0xb7,0xdb,0xad,0x4b,0x5b,0xdf,0xa0,0x0c,0xa3,0xd8,0xe6,0xa2,0x09,0x14,0x59,0x82,0x5e,0x86,0x51,0x9a,0x27,0x10,0xcf,0x7f,0xee,0x8b,0x28,0xa9,0x3d,0xfa,0xf6,0x0c,0x83,0x70,0xdf,0x9f,0x9f,0xbf,0x79,0x79,0xeb,0xf3,0x97,0x02,0x9c,0x98,0xc9,0xed,0xa1,0xd4,0x26,0x7e,0x3b,0x20,0xdc,0x6f,0x6f,0xdf,0x93,0x75,0x52,0x72,0x2b,0xc0,0x1e,0x33,0xd1,0xcc,0x67,0x73,0x6d,0xce,0x2f,0x9e,0xff,0x96,0xc5,0xd9,0x43,0x48,0xcf,0xda,0xec,0x5b,0xd6,0x8e,0xc5,0xd9,0x07,0xd6,0x3e,0xd1,0xcd,0x31,0x53,0xe0,0xb7,0x34,0xd7,0x6f,0x63,0xc4,0x06,0x2d,0x56,0x70,0xcf,0x31,0x41,0x63,0x73,0x6e,0x42,0xe3,0xd6,0x4e,0x86,0x60,0x9b,0x25,0xd0,0x77,0x56,0xda,0xb4,0x96,0xf1,0xc4,0xa6,0x05,0x0f,0x52,0x7e,0xf7,0xee,0x9d,0x3e,0x63,0xf8,0x52,0x11,0xc6,0x46,0xec,0x0a,0x6c,0x49,0x50,0x5c,0x2b,0x10,0x60,0x85,0x94,0xf1,0xa3,0xa1,0x89,0xc5,0xa3,0xec,0xf6,0x9d,0xcb,0x10,0x45,0xc0,0xb0,0x75,0x92,0x0e,0x37,0x87,0x9b,0x94,0x53,0x25,0x1f,0xee,0x0e,0x09,0x17,0xf8,0xee,0xdd,0x66,0xd8,0xa0,0x66,0x1b,0x9b,0x21,0x0d,0xfb,0x87,0xa4,0x0e,0x44,0x7b,0x76,0xb1,0x1d,0x4b,0xb3,0x49,0x4b,0xbc,0xea,0xe1,0xdf,0x9a,0xa9,0xb8,0xc3,0x36,0x54,0xdb,0xc3,0xc6,0x35,0x33,0x75,0x67,0x0e,0xd2,0xa2,0xef,0x70,0xa8,0x66,0x64,0x36,0x61,0x75,0x35,0xb7,0xc4,0xbe,0x67,0x0a,0xf6,0xdb,0x84,0x4d,0xfc,0xda,0xde,0xac,0xcb,0x5a,0x15,0x49,0x3b,0x38,0x86,0x16,0x34,0x4c,0x1a,0x12,0x95,0x83,0x23,0x63,0x4d,0x68,0x65,0x10,0x75,0xc3,0xb7,0xc4,0xc3,0x9a,0x28,0x74,0x75,0x7d,0x60,0x3a,0xce,0x65,0x89,0x9e,0x1d,0x98,0xda,0x11,0xbd,0x5a,0x74,0x6b,0xaf,0xe4,0x1d,0x1c,0xc2,0xaa,0xf5,0x8d,0x15,0xfd,0xa0,0x76,0xe4,0xaa,0x06,0x8a,0x15,0xfd,0xa0,0xb5,0xb8,0x55,0x0d,0x96,0x6a,0xfa,0x81,0xed,0xc0,0x55,0x0d,0x16,0x2b,0xf6,0x90,0xbc,0xcb,0x18,0x65,0xc8,0xab,0xbe,0x22,0xb4,0xdd,0xec,0x0f,0xd9,0xea,0x68,0xc8,0x2d,0x14,0x94,0x28,0x83,0x24,0xa2,0x19,0x24,0xa1,0x86,0xca,0xa5,0xab,0xd1,0x42,0xa4,0x80,0x2d,0x09,0x76,0xe1,0xe0,0xa0,0xe8,0x0c,0x4f,0x83,0xe1,0x38,0x7d,0x2a,0x3c,0x84,0xf6,0x12,0x91,0xce,0xe5,0x62,0x9c,0x1e,0x1f,0xab,0xe1,0x84,0x95,0x13,0xa7,0x5a,0x5c,0xa6,0x57,0x5e,0x0e,0x90,0x2e,0xcf,0x54,0x22,0x14,0x88,0xd0,0x40,0x7d,0x01,0x6b,0xf5,0xfe,0xb7,0x83,0xf0,0x78,0x04,0x56,0x2d,0x1f,0xa2,0xbf,0x01,0x7f,0x8a,0x4e,0xa7,0x42,0x0d,0x0d,0x26,0xa4,0x28,0x47,0x6b,0x3a,0x20,0x45,0x5c,0x58,0x63,0xb4,0xea,0x26,0xba,0xd2,0xb2,0xa9,0x69,0xfe,0x7d,0x0c,0x96,0xd5,0x5b,0x1d,0x33,0xee,0x9c,0xc7,0xf3,0x34,0x4c,0x9c,0x73,0x99,0xd3,0xc8,0x7c,0xe7,0x2f,0xec,0x38,0xc3,0x8a,0x77,0x3a,0x4d,0xb2,0x06,0x46,0xb8,0x65,0xcd,0xe7,0x28,0xdc,0xed,0x5e,0x83,0xc1,0xa2,0xe5,0xbd,0x38,0x39,0x87,0x52,0xc6,0x2d,0xc6,0xb0,0x62,0x76,0x50,0xf5,0x0b,0x2c,0x73,0xef,0xf1,0x2f,0x36,0xea,0x3f,0xfb,0x6d,0xe9,0xd7,0xf3,0xbc,0xdf,0x6a,0x9d,0x91,0x41,0xd5,0xf4,0x00,0x3b,0x98,0x77,0x46,0x49,0x6f,0x0d,0x04,0x71,0x9a,0xc4,0x88,0x02,0x5c,0xc4,0xb0,0xa0,0x59,0x7b,0x87,0x3b,0xf3,0xc0,0x1d,0xbb,0x78,0x3e,0xb8,0xcc,0x3e,0x0b,0xed,0xbf,0x79,0xe0,0x5c,0x49,0xfa,0x6e,0x4d,0x0a,0x74,0xf5,0x01,0xa4,0xb1,0xe8,0x9d,0x14,0x94,0x57,0x9c,0xd2,0x3d,0xc7,0xeb,0x48,0x36,0x9e,0x1d,0xf5,0x23,0x83,0x56,0x02,0x5b,0x1d,0x76,0x5c,0x7f,0xfe,0xe2,0xf9,0x3b,0x14,0x29,0xd4,0xb8,0xc2,0xfb,0x04,0xae,0x75,0x7a,0x46,0x6e,0xf9,0x2c,0xcb,0x62,0xd0,0x0c,0x27,0x6a,0x88,0x55,0xce,0x5e,0xb5,0x0e,0xf5,0xd0,0x9a,0x5a,0x06,0x0f,0x5d,0xb6,0x13,0xf4,0xcf,0xf2,0x2c,0xb9,0xa4,0x73,0x3c,0x09,0x4e,0xf2,0x95, +0x25,0xf5,0x6b,0xe0,0x42,0xbb,0x83,0x02,0xbc,0xf5,0xe9,0xa2,0xea,0x40,0x65,0x3c,0x61,0xb5,0x44,0xc5,0x7e,0xa2,0xf6,0xed,0x9d,0xde,0x77,0x7c,0xd2,0x9a,0x6a,0x59,0xf7,0x59,0x91,0xa0,0x58,0xa7,0xd2,0xce,0x78,0x11,0x5e,0x7f,0x86,0x06,0xae,0x4f,0x6d,0x37,0x14,0x7b,0x54,0x6c,0xb8,0xd3,0x81,0x2e,0xa9,0xaf,0x66,0x0a,0x53,0x83,0xeb,0x82,0x0b,0x10,0xcf,0x06,0xb5,0x2c,0xda,0xaf,0x5f,0xbb,0x8d,0x43,0x74,0xa2,0x29,0x51,0xbb,0x2e,0x26,0x6f,0xa1,0x18,0x3c,0x5c,0x10,0x7a,0xb5,0xd8,0xa7,0xec,0xd8,0x64,0x74,0xbb,0x94,0xd8,0xfb,0xb4,0xfc,0x79,0x43,0x2d,0x82,0xd1,0x58,0xa9,0xd1,0x9b,0xed,0x18,0x54,0x98,0x62,0xa1,0x40,0x80,0x92,0xa0,0x34,0x60,0xfc,0xd3,0x9b,0xd4,0x29,0x5d,0x70,0x67,0xab,0xc4,0xde,0x35,0xb0,0x3e,0xfa,0xed,0x38,0x1c,0x4a,0xf0,0xc6,0x3f,0x80,0x36,0x9d,0x86,0x46,0xc3,0x5a,0xe3,0xc7,0x94,0x92,0xf7,0x78,0x60,0xda,0xcb,0xcd,0xd8,0x2a,0xa7,0x63,0x55,0xf4,0x9d,0x2d,0x3f,0x39,0xc9,0xf2,0x73,0xf0,0xe7,0xd6,0xc5,0x24,0xcc,0xab,0x83,0x15,0x23,0xbe,0x14,0x40,0xaa,0x92,0x60,0x47,0xee,0x58,0x3e,0x7b,0x34,0x3c,0x13,0xb7,0x8b,0x80,0xf8,0xf2,0xd9,0xfd,0x47,0x87,0x02,0x6d,0xc2,0x3c,0x85,0x79,0x61,0xbe,0x6e,0xdf,0xd7,0x36,0xc2,0x5c,0x87,0xbc,0xe1,0x40,0xe1,0x70,0x8a,0x3e,0x93,0x6e,0xba,0x20,0xdf,0xb5,0x5a,0x71,0x9d,0xb7,0xef,0x61,0x45,0x1f,0xc3,0x4f,0x57,0xeb,0x76,0xb8,0xd5,0xfa,0x98,0x39,0x3f,0x2e,0xfe,0xd5,0x1b,0xeb,0xa1,0x74,0x9d,0x36,0x70,0x55,0xd5,0x63,0x44,0x2a,0x97,0x6a,0x17,0x10,0x2b,0xa0,0xe3,0xef,0xaf,0x61,0x75,0xfb,0xbc,0x5d,0xdb,0x45,0xa6,0x15,0x0d,0x60,0xdb,0xfd,0xd6,0xc6,0x72,0xfa,0x70,0xf8,0xe4,0xf1,0x10,0x43,0x80,0xbc,0xc1,0x12,0x7b,0xb0,0xf6,0x68,0x92,0x19,0xac,0xde,0xa2,0x95,0xee,0xf0,0x73,0x18,0x27,0x18,0xe9,0x3c,0x80,0x78,0x83,0xa5,0x8b,0xfa,0x12,0xd7,0xe9,0x68,0xf8,0xf0,0xe1,0xc3,0xc7,0x0f,0x6f,0x35,0x08,0x8d,0xbd,0x6f,0x1b,0x5d,0xc5,0xb3,0x59,0xd1,0x33,0x0c,0xaa,0x3f,0x60,0x20,0x25,0xa2,0xfe,0x91,0x50,0xab,0x53,0x53,0xa6,0x7e,0xaa,0xa9,0xba,0xc5,0xb0,0x4c,0x5f,0x7d,0xe3,0x82,0xbd,0x1a,0x03,0x39,0xad,0x23,0xeb,0x8f,0x1e,0x74,0x48,0x4f,0x9f,0xd7,0x89,0xde,0x5d,0x2b,0x90,0x71,0xfb,0xba,0xad,0xec,0xb0,0xf8,0xd4,0x0a,0x09,0x8e,0x1d,0xd6,0xf5,0xfa,0xaa,0xad,0x80,0xbd,0x5e,0xea,0x32,0x9c,0xb6,0x02,0x41,0x79,0xcf,0x5c,0x7e,0x6e,0xa4,0x9b,0xe9,0x0b,0x3e,0x94,0x55,0xb5,0x0c,0xe3,0x54,0xd5,0xe3,0x0e,0x3e,0xd0,0x55,0xf5,0x0d,0xec,0x85,0x0a,0xc4,0xea,0xb3,0x88,0x6f,0xc0,0x68,0x5a,0xc6,0xea,0x60,0x40,0x6f,0xd7,0xb8,0x93,0x83,0xf9,0x90,0xab,0xbc,0x18,0x93,0x6e,0x46,0xde,0x19,0xb4,0xc4,0x18,0x68,0x04,0x06,0x9a,0x7d,0x2a,0xa0,0xf4,0xf8,0x1d,0x40,0xa9,0xe2,0xfb,0xee,0x18,0x31,0xe3,0x70,0xcc,0x41,0x86,0xae,0x90,0x7d,0x58,0x1a,0x71,0x67,0x4a,0x92,0x5e,0x97,0x47,0x21,0xbe,0xa5,0x6e,0xed,0x48,0xee,0x37,0x6a,0x07,0x2e,0x9b,0xd9,0x55,0xa9,0x5c,0xd5,0xc0,0x29,0x85,0xa7,0x06,0x8c,0x0e,0x54,0xad,0x89,0x72,0x66,0x6b,0x6d,0xb4,0xf3,0x5b,0x6b,0x56,0x3a,0xf3,0xb5,0x96,0x26,0xf9,0xa8,0xd6,0xb4,0x4a,0x55,0xab,0xb5,0xd5,0xb1,0x82,0x3a,0x7d,0x26,0x1c,0x57,0x6b,0x09,0x46,0x61,0xd9,0x4a,0x5f,0xf5,0x31,0x57,0xb1,0xca,0x5c,0xd0,0x1a,0x00,0xda,0x39,0x45,0x17,0x48,0x65,0xdc,0xd6,0x60,0xc8,0xfc,0xec,0x81,0x31,0x46,0xec,0x16,0xbc,0xf9,0x4b,0x2c,0x3f,0x91,0xd9,0x7c,0x9e,0xe0,0xee,0x9a,0xad,0x90,0x5b,0x94,0x03,0xaf,0xbe,0x0f,0x30,0xe9,0x45,0x02,0x2f,0xe2,0x25,0x26,0x3a,0xed,0xda,0x22,0x5b,0xa9,0x04,0xc5,0x66,0x1c,0xdd,0xb5,0x73,0xfb,0xd4,0x62,0xe2,0x00,0x80,0x21,0x1a,0x37,0x94,0x86,0x86,0x1e,0xed,0x1a,0x54,0x17,0x5b,0x4a,0x5b,0x7c,0x0b,0x26,0xff,0x61,0x66,0x90,0x70,0x77,0x7a,0xa5,0x4b,0x3d,0xda,0x67,0x66,0x74,0x96,0x81,0x42,0x74,0x8a,0x59,0x9e,0xe3,0xe9,0x02,0xbd,0x4e,0x19,0xac,0xe5,0xec,0xe4,0x3b,0x0e,0x1e,0x5a,0x3a,0x05,0x8f,0xe2,0xc3,0xfb,0x37,0x78,0x7c,0x02,0x7c,0x0c,0xf2,0xd4,0x9b,0xf6,0x89,0xb7,0x8b,0xba,0x95,0x07,0x18,0xf0,0x68,0x1e,0x9e,0x63,0xac,0x6c,0x8c,0xe9,0x07,0xf2,0xb9,0x04,0x44,0x93,0xb5,0x14,0xb0,0xf7,0xe5,0x62,0xc6,0x38,0xa5,0x5d,0xd4,0x2b,0x0c,0x18,0xe3,0xe5,0x9d,0xb4,0x13,0xba,0xe2,0x93,0xce,0x0b,0x0f,0xa9,0x66,0x08,0xb3,0x73,0x6d,0x07,0x2d,0xe9,0xef,0x69,0xc0,0x95,0x09,0xf6,0xfb,0x87,0x2b,0xaa,0x91,0xa6,0xfb,0x47,0xfa,0x81,0xa2,0x20,0xe3,0xb4,0x75,0xa8,0x12,0x50,0x1c,0x30,0x54,0xe2,0x72,0x33,0xce,0xb4,0xd4,0x5e,0xcd,0x6b,0x6d,0x76,0x4e,0x2f,0xdd,0x6f,0x3b,0xb7,0x96,0xb9,0xe7,0xf0,0xce,0xb4,0x65,0xe6,0x76,0xdb,0xeb,0xd8,0x64,0x63,0x8f,0x19,0xde,0xa1,0x2b,0xc0,0x7b,0x72,0xc4,0xdd,0xbb,0x83,0x21,0xb9,0x61,0x54,0xa4,0xc3,0x15,0x67,0x56,0x52,0x4d,0x14,0x47,0x0e,0x66,0x89,0xa9,0x70,0x89,0x83,0xcd,0xd4,0xc9,0x23,0x75,0x70,0xc4,0xc0,0x75,0x92,0x5e,0x46,0xa3,0x0b,0x1a,0x2a,0x55,0x8c,0x65,0x7e,0x7d,0x23,0x54,0x42,0x31,0x85,0x3d,0xa0,0x29,0x00,0xae,0x13,0xb0,0xc9,0xa7,0xa1,0x56,0x96,0x3a,0x5f,0xf6,0x73,0x86,0x99,0x3a,0xaa,0xdf,0x77,0xd0,0x5f,0xe8,0xa8,0xe4,0x1d,0x35,0x1f,0xd4,0x2f,0x74,0xb6,0xb5,0x6f,0x66,0x12,0xdd,0x5a,0x88,0x4c,0x56,0x59,0xbe,0x1c,0x30,0x1c,0x29,0xd0,0x2b,0x96,0x05,0x52,0x3a,0x11,0x0a,0x13,0x77,0xa2,0xcc,0xb9,0x86,0x11,0x6d,0xe2,0x62,0x81,0x15,0x28,0xe3,0x71,0xba,0x16,0x67,0xac,0xca,0x49,0x0b,0xea,0x39,0x55,0x20,0x64,0x5c,0x52,0x46,0xee,0xf3,0x02,0x37,0xab,0x81,0x9e,0xa7,0xcb,0xe1,0x95,0xeb,0xba,0x3b,0x4b,0x33,0x9a,0x5c,0x8f, +0x80,0x93,0x24,0x4f,0x75,0xb0,0x87,0x67,0xbc,0xe0,0x31,0x8f,0xd0,0x76,0x39,0x95,0xdd,0x91,0xaa,0xe8,0x1a,0x5c,0x3d,0x0a,0xca,0xd9,0x06,0x4f,0xf4,0xed,0x40,0x1c,0x8f,0x5c,0xb4,0x66,0x48,0x65,0x4c,0xd1,0x67,0x0a,0x83,0xf4,0x52,0x5c,0x91,0xb3,0x99,0xe9,0xaf,0xda,0x53,0xe4,0x85,0xfa,0xad,0xdd,0x3e,0x1e,0xab,0x9f,0x34,0xf8,0x35,0x0c,0x35,0xe1,0xd3,0xd2,0xdf,0x22,0x95,0xa3,0xae,0xb7,0x4e,0x11,0x57,0x10,0xe2,0x27,0xa6,0xad,0x65,0xf0,0x45,0x63,0x08,0x0a,0xf8,0x5e,0x81,0x07,0x71,0xaf,0x46,0x9a,0x82,0xe8,0x1c,0x1f,0xd3,0x8d,0xcd,0x20,0x90,0x7d,0xf7,0xad,0xaa,0xd1,0xfe,0x41,0x67,0xc3,0x15,0xc2,0xd6,0x83,0xe1,0x43,0x00,0xed,0x79,0x67,0xb0,0x5a,0x7f,0x61,0xbb,0xf7,0x49,0xed,0x7b,0xa8,0xbd,0xd7,0x71,0x08,0x6e,0x9a,0x64,0x45,0xe7,0xd1,0xdd,0x2e,0xef,0x7c,0x50,0x7b,0xc6,0x61,0x72,0xad,0xf4,0xcf,0x1f,0x2a,0xd8,0x61,0x7a,0xdd,0x14,0xee,0x7f,0xa7,0x6c,0xa3,0x68,0xd7,0x54,0xa3,0xaa,0x53,0x32,0x8e,0xcc,0xf8,0xbb,0x05,0x7c,0xe7,0x7a,0x71,0x2d,0x42,0xab,0xf6,0x66,0x55,0xb4,0xb3,0xf2,0x43,0x7d,0xeb,0x81,0x4a,0xe9,0xc2,0x43,0x79,0xf1,0x81,0x36,0xf9,0x28,0xcf,0x56,0xbe,0x3e,0xea,0x65,0xfc,0x93,0xb8,0x9e,0xe0,0x55,0x37,0x4a,0x13,0xe0,0xb6,0x6a,0x40,0xe1,0xd8,0xb9,0xe6,0x4c,0x3d,0x1f,0xac,0x69,0xc0,0xc0,0x7a,0x19,0xcf,0x63,0x95,0xd8,0xa9,0xa7,0x57,0x3c,0x1d,0x0d,0xcf,0xd8,0x10,0xb6,0x39,0xdf,0x0a,0x5e,0xc7,0x69,0xac,0xac,0x9e,0x0b,0x0c,0x69,0x0d,0xaa,0x08,0xb6,0x40,0x93,0x48,0x06,0xc3,0xb1,0x7c,0x4a,0xc1,0x12,0x1d,0xa2,0x96,0x26,0x44,0x9d,0xda,0x8b,0x8a,0x2d,0x2e,0xe5,0x55,0x99,0x55,0x91,0x92,0xb6,0x90,0x5c,0x40,0x21,0xde,0xc2,0xc6,0x4f,0x13,0x54,0x2f,0x7f,0xab,0x00,0x54,0xfd,0x57,0x0a,0x7b,0x1c,0x45,0xa3,0x94,0x75,0xfc,0xcb,0xf3,0xf7,0xef,0x98,0x6f,0x43,0x2b,0x65,0x20,0x8a,0x80,0x99,0xa8,0x86,0x6d,0xe0,0xbd,0x79,0xf7,0xfa,0xa7,0xae,0xf6,0x71,0x3a,0xcb,0x6a,0x8d,0x5f,0xbd,0x7f,0xdf,0xd9,0xd8,0x84,0x41,0xb6,0xbf,0xfe,0x07,0xc6,0x12,0x2b,0x03,0x5e,0xba,0x37,0xfa,0x01,0x81,0xd7,0x59,0x46,0x73,0xe6,0xe1,0x14,0x0e,0xb4,0x6d,0x49,0x81,0x41,0xc6,0xc1,0x68,0x4b,0xd6,0xcb,0xb4,0xf0,0x2f,0x6f,0x50,0xe7,0xfa,0x14,0x03,0xe4,0x32,0x96,0x09,0x7c,0x7f,0xf3,0xd2,0x24,0x94,0xa0,0x29,0xc2,0x78,0x91,0x21,0xff,0xf8,0xa8,0x2c,0x62,0x58,0x76,0xec,0xc6,0x67,0x2f,0x5f,0x9d,0xbf,0x60,0x5b,0xae,0xc1,0x29,0x64,0x67,0xe0,0x69,0xb9,0x9c,0x0b,0x55,0x54,0xe1,0x29,0x1b,0x17,0xf9,0xb4,0x6c,0x7b,0x9e,0xad,0xf3,0xa9,0xa8,0xea,0x22,0x51,0x54,0x95,0x2f,0xe1,0x47,0x1e,0xab,0xf3,0x80,0xaa,0x05,0x2c,0x65,0xd9,0xe2,0x79,0x14,0xc5,0x58,0x1d,0x26,0x78,0x0b,0x1b,0xca,0x69,0xfa,0x56,0x59,0x0c,0x56,0xb2,0xcf,0xbe,0x14,0x4e,0xb1,0xb4,0x88,0xc4,0x68,0x4c,0x89,0x9b,0xf2,0x66,0x88,0x3b,0x72,0xbf,0x9c,0x3d,0x15,0x4d,0x04,0x4e,0x7c,0x74,0x7f,0xf8,0xf8,0xf1,0xa3,0xd1,0x70,0xe4,0x1a,0xee,0xd4,0xf1,0x3e,0x73,0xe1,0x7b,0x2c,0x6a,0x17,0xbe,0xfb,0xef,0xd4,0x2b,0x7e,0x2c,0x6f,0xb9,0x8f,0xc4,0x83,0x6f,0xcb,0x7c,0x65,0x27,0x45,0xb0,0x0f,0x17,0x2f,0x5e,0x83,0xe5,0xf6,0x0f,0x01,0x3e,0x3e,0x6c,0x95,0x27,0xec,0xb8,0x12,0x11,0xd3,0xe0,0x47,0x50,0x04,0x0b,0xa8,0x1d,0x75,0x35,0x20,0xe4,0x6e,0x57,0xed,0x0f,0x30,0xd5,0x05,0x55,0xfb,0xad,0xd8,0x41,0xc7,0x48,0xd1,0xd3,0xc0,0xdc,0xad,0x47,0x19,0x6f,0x9b,0xe6,0x2b,0x8e,0x37,0xba,0x40,0x76,0x6b,0xae,0x04,0x32,0xdf,0x5b,0xba,0x04,0xf7,0x36,0x9b,0xff,0xa1,0x32,0xfc,0x9b,0x64,0xd7,0x04,0x93,0x49,0x7c,0x9d,0x51,0x87,0x74,0x99,0xbd,0xda,0x92,0x46,0xe7,0xc9,0x93,0x03,0xe5,0xd6,0x19,0x1e,0xae,0x10,0x9c,0x27,0xdf,0xfd,0x71,0x02,0x5e,0xde,0x35,0xec,0x12,0x72,0x14,0x00,0x50,0xef,0xcb,0xd5,0x7e,0x29,0xf8,0x7f,0x66,0xaf,0x98,0xfd,0x00,0xfd,0x67,0xab,0xcf,0x0f,0x0d,0xfd,0x59,0x35,0x32,0x67,0x21,0x65,0x4b,0x28,0x70,0xd0,0x6e,0x74,0xb2,0xdc,0x79,0x1b,0x4e,0x44,0x52,0x35,0x36,0xe7,0x20,0xa5,0xa6,0xd3,0xd6,0x63,0x8b,0xe4,0xb5,0xad,0x9f,0x9e,0x6e,0x3a,0x9b,0x3a,0x63,0x7f,0xcd,0xc3,0x14,0x4d,0x48,0xff,0xc9,0x13,0x55,0x40,0x57,0x69,0x98,0x3f,0x54,0xbf,0x5e,0xea,0xcb,0xd6,0x50,0xff,0x9d,0x2a,0xf9,0x90,0xd2,0x79,0x16,0xf3,0xc9,0xe6,0x19,0x6e,0x7b,0x84,0x1b,0x07,0x61,0xe4,0xba,0xc9,0xab,0xd5,0xe1,0x02,0xee,0x3f,0xa0,0xaa,0xb3,0xfc,0x44,0x1b,0x1e,0xe0,0x9f,0x56,0x85,0xf0,0x33,0xb4,0xdb,0xd0,0x98,0x19,0x9e,0x25,0x77,0xb0,0x3a,0x4e,0xe5,0x21,0x5b,0xd9,0x9f,0xb9,0x16,0x7a,0x87,0x6b,0x2c,0xc8,0x01,0xab,0xf1,0x3c,0xd9,0x84,0xd7,0xc5,0xfe,0xc5,0x10,0xdb,0x92,0x82,0xca,0x7d,0x29,0x89,0xf8,0x4f,0xb2,0x3d,0x3f,0xa8,0xb2,0x03,0xb9,0xe2,0x4f,0x95,0xea,0x7e,0x91,0xee,0x97,0x67,0x2d,0xcc,0x25,0x9f,0xa9,0x27,0x94,0x70,0x6f,0x4f,0xe7,0xfe,0x0d,0xde,0xca,0x45,0x6b,0xd2,0xbf,0xf7,0xb4,0x58,0x85,0xa9,0xa3,0x0f,0x89,0xf4,0x31,0xa8,0x63,0x8e,0x43,0x57,0x22,0x9d,0xc2,0x64,0x38,0x94,0xee,0xbc,0x88,0xa3,0x48,0xa4,0x01,0x93,0xf9,0x5a,0xb0,0x67,0x4f,0x4f,0x11,0xf0,0x99,0xf3,0x0a,0x50,0x3a,0x14,0x78,0xbb,0xc7,0xc3,0x28,0x22,0xa4,0xec,0x1d,0x0c,0x8a,0x5c,0x11,0x2c,0x7a,0x9f,0x6d,0x7c,0xcb,0x49,0x48,0xc1,0x72,0x45,0x87,0x00,0xe7,0x81,0x87,0x2a,0x9e,0x8b,0x56,0x07,0x18,0xff,0xa9,0x01,0xc3,0xf8,0x4e,0xfd,0xfe,0x30,0x91,0x5e,0xc3,0xa4,0x27,0x1f,0x1c,0x69,0xb0,0xce,0xe9,0x06,0xd9,0xd8,0xf0,0x01,0x2c,0x7b,0x61,0xf6,0xa5,0xb3,0x2c,0x18,0xf9,0x9a,0x21,0x1a,0xe5,0xb0,0xff,0x54,0xbc,0x61,0xd7,0x81,0x53,0x90,0x05,0x43, +0x0c,0xbe,0xcc,0x40,0x58,0x50,0x38,0xcc,0x79,0xee,0xa0,0x40,0x33,0xd7,0xae,0xa9,0x9d,0xc6,0x62,0xb5,0x2e,0xb0,0xda,0xd4,0x0e,0x60,0x07,0x99,0x55,0x63,0x31,0xa1,0x81,0xaf,0x8a,0x70,0x12,0xe8,0x04,0x93,0xe5,0x98,0x63,0x2e,0xaa,0xd9,0x2a,0xe7,0xdc,0xf9,0xc6,0x61,0xc7,0x76,0x9f,0x3b,0xd3,0x16,0x09,0xf4,0x4b,0xdb,0x26,0x4e,0xaa,0x69,0x5b,0xab,0xf3,0xe9,0xb4,0xfa,0xa5,0x91,0x95,0x17,0x9c,0xd0,0xb1,0xba,0x58,0xc4,0x05,0xb8,0x4f,0x49,0xe2,0xa8,0x23,0x78,0xe8,0x56,0x1e,0x33,0x07,0x73,0x3a,0x52,0xf8,0x9c,0xe5,0xd9,0xd2,0x41,0x5a,0x27,0xb0,0x03,0x7b,0xce,0xf3,0x5c,0x90,0xbf,0x55,0xac,0x73,0xf4,0xb1,0x4c,0x82,0xcb,0xbd,0x1b,0xd2,0x24,0x3e,0xbb,0x07,0xc0,0xf7,0x18,0xaf,0xe5,0x24,0xd3,0xc1,0xfe,0xf6,0xde,0xb8,0x16,0x49,0x08,0x5d,0x0e,0x1e,0x32,0x0d,0x61,0x80,0xc9,0xca,0xe4,0x68,0x53,0x98,0xae,0xf0,0x6f,0xc0,0x0d,0x92,0x02,0x83,0x0c,0x7e,0x53,0xa5,0xfd,0x78,0xfd,0xda,0xd4,0x6d,0xb7,0x98,0x19,0x03,0x7e,0xfb,0x70,0x34,0x4e,0xc1,0x65,0xa5,0xdc,0x3d,0x4c,0x60,0xe6,0x0d,0x0b,0xf5,0x08,0x83,0xb8,0x2a,0xbd,0x91,0xf4,0x40,0x2c,0xaf,0xbf,0x7e,0xdd,0x2d,0x03,0x91,0xba,0x11,0xde,0x2a,0x27,0xd3,0xff,0xa5,0x98,0x85,0xe0,0xd7,0x0e,0x94,0x2c,0x87,0x81,0xbd,0x5e,0x2e,0x8f,0x83,0x1b,0x18,0xae,0xdf,0xc2,0x44,0x2e,0x37,0x93,0xec,0x77,0x31,0x12,0x2c,0xb6,0xe2,0x1a,0xbf,0x4c,0x0b,0xea,0xe0,0x27,0xd7,0xe5,0x15,0xcf,0xf8,0xa5,0x3a,0xe9,0xe6,0x31,0xd7,0x35,0x2a,0x49,0xbd,0xa5,0xb4,0x1d,0x87,0xb0,0xed,0x80,0x15,0x93,0x4e,0x45,0x36,0x73,0x9a,0x93,0x09,0xbc,0x73,0x36,0x08,0xcb,0x55,0xe0,0xb1,0x07,0x7e,0x5e,0x71,0x7c,0xcc,0x33,0x0f,0x15,0x8b,0x07,0x12,0x3e,0x88,0x31,0x51,0xa2,0xa3,0x82,0xe6,0x26,0x6a,0x04,0xb5,0xc9,0xb3,0xdf,0x8e,0x23,0x72,0x1a,0x5b,0x67,0x28,0x52,0x51,0xa7,0xee,0xf9,0x89,0xca,0x68,0xd4,0xfe,0x19,0xd2,0x51,0xb2,0x9e,0x39,0xe1,0x79,0xa5,0x89,0xa7,0x8d,0x09,0x02,0x32,0xad,0x60,0x57,0xde,0x1b,0xec,0x8a,0x5c,0x4b,0x08,0x55,0x16,0xd0,0xb6,0xbe,0xc3,0xeb,0xf0,0xc1,0xab,0xf3,0x9f,0x1b,0x99,0xf5,0x65,0x8a,0x22,0xdd,0xbd,0xc1,0x74,0x8c,0x37,0xc5,0xbb,0x4c,0xfe,0xad,0xc8,0xd2,0xda,0x9b,0x65,0xd8,0x37,0x68,0x7f,0x80,0x09,0xe7,0xe2,0x6d,0x5c,0x48,0x3c,0xb2,0xa9,0xa4,0xda,0xb2,0xef,0x05,0xf1,0xa3,0x8b,0x92,0x2c,0x31,0x63,0xe8,0xa7,0x0d,0x76,0xb7,0x82,0x8d,0xfe,0x7a,0x50,0x0a,0x9f,0xeb,0x6a,0xeb,0xbf,0x4c,0xba,0xd0,0x9e,0xb8,0x3a,0xa6,0x62,0xfe,0x2e,0x28,0x45,0x31,0x28,0x76,0xb2,0xf3,0x64,0x1e,0x68,0x4d,0x7d,0xda,0x17,0x48,0x6e,0x1d,0xca,0x35,0x4f,0xbd,0x6a,0x87,0x34,0xe5,0x31,0x87,0x0f,0x94,0xe2,0xa6,0x3d,0x30,0xb9,0x21,0x01,0x75,0xae,0xd2,0x44,0x1a,0xe7,0x26,0xfb,0x72,0x52,0x60,0x41,0x4e,0xe2,0xe5,0xbc,0x2b,0xad,0xbd,0x61,0x68,0x99,0x2c,0x20,0x95,0xe6,0xa3,0xb4,0x67,0xed,0xe0,0xb0,0x2b,0x05,0x49,0x0f,0x64,0x5b,0x25,0x9c,0xc8,0xda,0xd8,0x54,0xfa,0xd3,0x01,0x83,0xfb,0xbd,0x83,0xb1,0x43,0x3a,0x7b,0x68,0xd2,0x6e,0xcd,0xbf,0x81,0xa8,0xa6,0x9f,0xba,0x87,0xb0,0xb9,0x7e,0x8f,0xc5,0xaf,0x5e,0xa9,0x03,0x7a,0xe8,0x49,0xb7,0xf2,0x65,0x40,0x28,0x28,0x5f,0x3c,0xb1,0xdf,0x38,0xb1,0xf1,0xe0,0x51,0x10,0x25,0xf7,0xf9,0x65,0x5a,0x59,0xbd,0x23,0x3c,0x9b,0x57,0xe3,0x2f,0x53,0x39,0x65,0xe3,0xe6,0x4e,0x79,0x9a,0xa0,0xaf,0x8a,0x06,0x72,0xdb,0x2a,0x47,0x2a,0xb6,0x99,0xcd,0x6c,0x41,0x32,0x65,0x5a,0x92,0xaa,0x27,0x6b,0xfc,0x23,0xb4,0x58,0x4d,0x03,0x10,0x20,0xfd,0xb8,0x25,0x3d,0x3f,0xd9,0x32,0x5f,0xdd,0xc1,0xe4,0xfd,0x0b,0xd0,0x2d,0x62,0xb5,0xf4,0xab,0xbb,0x77,0x8f,0x86,0x16,0x4d,0xae,0x9d,0x0a,0x56,0x81,0xb9,0xe5,0xd5,0x58,0x3a,0x86,0x0c,0x82,0x2a,0x7b,0xab,0x26,0x95,0x67,0x03,0x9c,0x33,0x0a,0xe8,0x05,0xad,0x71,0x5b,0x7a,0xa6,0xd1,0x2b,0x1f,0xef,0xfc,0x3c,0xf4,0x1e,0xeb,0x32,0xec,0x87,0xb2,0xb4,0xb8,0x75,0x92,0x87,0x35,0xb4,0xb9,0x34,0xc4,0xf5,0xf7,0x30,0xe6,0xef,0x16,0xf5,0x56,0xe9,0xee,0x9b,0xd4,0xb3,0xda,0xa4,0xda,0x49,0x91,0xae,0xdf,0x98,0x4f,0x54,0xaa,0x0d,0x69,0xfe,0xc3,0x98,0xc0,0x96,0xfb,0x5b,0x91,0x5b,0x31,0x70,0x17,0xbd,0x7f,0x2a,0xe3,0x2a,0x31,0xac,0x07,0xdf,0x29,0xec,0xaf,0x4f,0x5d,0xbe,0x7e,0x3d,0x1a,0x1e,0x55,0xe4,0x7f,0xfd,0x7a,0x68,0x6c,0xdd,0x4a,0x18,0xa4,0x8b,0x9a,0xb4,0x2c,0xbd,0x29,0x80,0x55,0x33,0x4a,0x1c,0xbe,0x63,0xa2,0xc0,0x89,0xbe,0xd2,0xd8,0x38,0x93,0xa6,0xe6,0x6a,0xf6,0xf6,0xa3,0x55,0xed,0x4a,0xbc,0xd6,0xa4,0xb7,0x20,0x86,0xb1,0x03,0x21,0x2f,0xd5,0x2d,0xc0,0xea,0x35,0x8e,0xc6,0x6b,0x23,0x3d,0xcf,0x0d,0x68,0x0c,0x26,0x2d,0x94,0xde,0xfc,0xd3,0x97,0x0a,0x27,0x12,0x1f,0xc4,0x51,0x97,0x16,0xcc,0xb3,0x71,0x0c,0xdf,0x44,0xf0,0xf7,0x37,0x1a,0xd6,0xde,0x25,0x35,0xd4,0xd9,0x76,0x8e,0xb9,0xb9,0x88,0x29,0x17,0x65,0x9a,0x0e,0x77,0xac,0xd4,0x1c,0x34,0xd3,0x69,0xc4,0xac,0xfe,0x10,0x14,0x18,0x11,0x60,0x51,0xa9,0xab,0xb9,0x3a,0xdb,0x19,0xfd,0x56,0x4c,0x71,0x95,0x31,0x4a,0x6a,0x57,0x8a,0xcf,0x56,0xbf,0x4e,0xa8,0xa0,0x5f,0x64,0x49,0x12,0xae,0xe8,0x0c,0xee,0x90,0x9e,0xc0,0x8e,0xdd,0xdf,0xcd,0x1b,0xfd,0x02,0x22,0xd8,0x50,0x0a,0xb9,0x47,0x8f,0x0a,0xa9,0x5c,0x12,0x0d,0x8e,0x25,0xd8,0x26,0xbc,0x24,0x7f,0x5a,0x7c,0x01,0x07,0x3a,0x12,0x51,0x80,0x0e,0xf5,0x55,0xfd,0x6a,0xb1,0xa9,0x03,0x27,0x69,0x16,0x26,0x48,0xea,0xb6,0x7a,0x60,0x71,0x5d,0x25,0x35,0xed,0x3e,0x2f,0xd5,0x93,0xed,0xae,0x40,0x91,0xbd,0xe8,0x00,0x0a,0xd1,0xe9,0xc4,0x9c,0xce,0x99,0xd0,0x48,0x6b,0x86,0x5c,0x23, +0xc1,0xc7,0xc2,0x66,0x32,0x82,0x7a,0xc8,0xab,0x61,0x6a,0xa6,0x15,0x59,0xa8,0x34,0x1f,0x1f,0x8a,0xa9,0x91,0xca,0x64,0x21,0xc2,0xbc,0xa7,0x43,0xb1,0xd8,0x49,0x53,0xf6,0x24,0x59,0xcf,0xc4,0xee,0x9b,0x9b,0x2a,0x31,0xcb,0x42,0x40,0x19,0x1d,0x6d,0x28,0x6a,0xb0,0xb5,0xec,0x26,0xb3,0xde,0xbb,0x4a,0x60,0x0f,0x05,0x56,0x52,0x95,0x45,0x81,0xde,0x7c,0x0f,0xc4,0x51,0xcf,0x3c,0xb3,0xd0,0x50,0xd8,0xa6,0x07,0x8b,0xa5,0x1e,0x58,0xe3,0x05,0xb8,0x0a,0xc9,0x8e,0xbe,0xdc,0x43,0x4d,0x2d,0x83,0xab,0xc2,0xe3,0xa5,0x59,0xbc,0x5c,0xf5,0xca,0xb0,0x69,0x51,0x8f,0x89,0xb8,0xbc,0x27,0x5e,0xb0,0x13,0x1e,0x2d,0x6b,0x3c,0xd8,0x10,0x51,0xa6,0x50,0xd3,0xc2,0x08,0xd7,0x53,0x59,0x0b,0xa9,0x50,0xa8,0xe0,0x63,0xb1,0x5e,0x91,0x2f,0xc6,0xe9,0xa7,0x76,0x43,0x8b,0xe0,0x92,0x8d,0x40,0x92,0x9f,0x3c,0x81,0x3f,0x43,0x76,0x55,0xaf,0x04,0x5c,0x50,0xaf,0x23,0x57,0x5c,0x47,0xaa,0x78,0x15,0x98,0xd2,0xcd,0x23,0x7c,0x12,0xa0,0x16,0x26,0xa5,0xe2,0x3b,0xc6,0x09,0xc6,0x2c,0xa5,0x2d,0xbf,0xa3,0xae,0xfe,0xd8,0xf1,0x36,0x9b,0x30,0xf3,0xfc,0x00,0x96,0x71,0x4c,0x6c,0x64,0x4f,0xa3,0xf8,0xf3,0xe9,0x33,0x8c,0xf9,0xa2,0x8e,0xf2,0x19,0x5d,0x99,0xc0,0x17,0xf6,0x56,0x6c,0x6b,0x9e,0x04,0xc0,0x2b,0x10,0x4f,0x13,0x0c,0xe0,0xda,0x2d,0x8b,0xfc,0x24,0x4b,0x93,0x6b,0xa0,0x83,0x42,0x7e,0xe7,0x5a,0xbb,0xb8,0xb8,0x27,0x08,0x04,0xbb,0xc8,0xc0,0x01,0xbd,0x83,0x08,0xf1,0x4d,0x83,0x92,0x50,0x44,0xa6,0x52,0x0b,0x76,0xfa,0xd5,0x57,0x35,0xb0,0x67,0x5a,0x54,0x7a,0x85,0x0f,0xda,0x40,0xf3,0x99,0x2f,0xb6,0x5c,0x78,0x1f,0xb3,0x54,0x75,0x84,0x4f,0x7e,0x61,0xf2,0xd4,0x0b,0x6a,0x13,0xd5,0x48,0x55,0x27,0x3f,0x84,0x9d,0x68,0xc3,0x10,0xd2,0x0c,0x09,0x53,0x6d,0x80,0x2e,0x09,0x1c,0xe4,0x89,0x10,0x8f,0xbc,0xca,0x75,0xa8,0x3d,0x49,0x81,0x41,0x1e,0x43,0x71,0x2b,0x6a,0x9d,0x88,0x2a,0xec,0x65,0xc4,0xa3,0x34,0x8a,0x26,0x54,0xa5,0x58,0x84,0xde,0x3f,0xef,0x22,0xbc,0x35,0x2c,0x47,0x27,0x77,0x38,0x68,0x9e,0x06,0x26,0xbb,0x50,0x45,0x38,0x53,0x32,0x73,0x60,0x38,0x67,0x12,0xf7,0x25,0xc5,0x9c,0xd5,0x15,0x0f,0x9e,0xf2,0xcb,0xf2,0xc7,0x95,0xeb,0x4b,0xbd,0x4d,0x36,0xdb,0xd1,0x53,0x47,0xaa,0x0c,0x63,0x84,0x79,0xb8,0x39,0x84,0x63,0x74,0xf4,0xa4,0x44,0x32,0x16,0x7d,0x71,0x23,0xd5,0xe7,0x59,0x8d,0x4b,0xf5,0xec,0xd0,0x65,0x1d,0x1d,0x9a,0xf1,0x77,0x1b,0x18,0x7e,0xc7,0xc8,0x09,0x75,0xff,0x05,0x1f,0x77,0x53,0x0f,0xfb,0x5f,0x97,0x5f,0xab,0x80,0x88,0xba,0xed,0x7a,0x91,0xad,0xa7,0x8b,0x73,0x34,0x0e,0x71,0x2a,0x15,0x08,0x3e,0x44,0x0e,0xa5,0x94,0x2d,0x81,0xca,0x06,0x34,0xc8,0xdf,0x35,0x8a,0x96,0xaa,0x7f,0x34,0xef,0xcd,0x13,0xca,0x1f,0x61,0xfe,0x74,0x8c,0x90,0x90,0xde,0xbd,0x4b,0x08,0xaa,0xd5,0x6a,0xe9,0xa2,0x1d,0x3d,0x0f,0x03,0xc2,0x70,0x22,0x79,0x16,0x10,0x92,0x93,0x74,0x4c,0xe7,0x05,0xe1,0xa4,0x18,0x84,0xee,0xb3,0xf2,0x7b,0x86,0xb1,0x95,0xf0,0xd9,0xf0,0xac,0x35,0x91,0xd9,0x6f,0xb7,0x65,0x8c,0x97,0xc2,0x5b,0xa7,0xcb,0x32,0x75,0x41,0xf7,0x66,0x68,0x15,0x19,0x6d,0xab,0xce,0x98,0xf4,0x2b,0x18,0xea,0x68,0xe7,0xaf,0xaf,0x2e,0x18,0x57,0x0f,0x62,0x40,0x6b,0x54,0x48,0x21,0xbe,0xd7,0x8e,0xef,0x5d,0x94,0xa1,0x4b,0xb0,0xe4,0xe7,0x4b,0x01,0x98,0xf0,0x60,0x44,0xbd,0x1c,0x67,0x95,0x6d,0x77,0xf3,0xa0,0xb7,0x68,0x2a,0xc5,0xb5,0x67,0x57,0x4a,0xeb,0xd4,0xfc,0x6f,0x06,0x3c,0xfc,0x8d,0xc4,0x17,0xca,0xaa,0xc6,0xe4,0x5a,0x3b,0xcf,0x51,0x3f,0x3b,0xf2,0xcb,0x39,0xbe,0x74,0x8d,0xaf,0xa3,0x80,0xde,0x00,0x0b,0xb7,0xf9,0xdf,0x1d,0xc0,0x24,0x95,0x19,0x98,0x61,0x67,0xe5,0x3f,0x81,0x38,0xe4,0xbf,0x40,0xf8,0x94,0x22,0xd5,0x8b,0x10,0xd6,0xc4,0xfe,0xbf,0x12,0xf4,0xfc,0x0a,0x22,0x41,0x70,0x97,0x0f,0xca,0x7f,0x40,0x21,0x36,0xce,0x2f,0x62,0x72,0x4e,0x61,0x3a,0x05,0xe1,0x92,0x15,0x49,0x3e,0x5d,0x19,0xb0,0x63,0x4b,0x15,0xc1,0xc3,0x6c,0x90,0x96,0x80,0x9e,0x5b,0x86,0x19,0xb3,0x34,0x03,0xfd,0x13,0xd8,0x8a,0xa2,0xf7,0xc2,0x1d,0x7a,0x02,0x64,0xe5,0x1d,0x62,0x0a,0x5a,0x6c,0xa1,0xde,0x43,0x51,0xb9,0x04,0xf4,0xd2,0x89,0x51,0x7c,0x6c,0x82,0x0c,0x40,0x66,0x04,0x9e,0xcc,0xe3,0x83,0xe6,0xc8,0xd5,0x65,0x1a,0x12,0xb7,0xad,0x7b,0xfd,0xaa,0x8a,0x5b,0x63,0xb7,0x58,0x3f,0xb1,0xc3,0x52,0x91,0xf5,0xbe,0x81,0x66,0x18,0xc9,0x78,0x25,0xae,0x62,0xf5,0x79,0x4a,0xd6,0x74,0x2d,0xac,0xca,0x2d,0x76,0x50,0x2f,0x61,0xed,0x49,0x91,0x6b,0xe2,0xd6,0x59,0x72,0x7f,0xff,0xf1,0xed,0x0f,0xc0,0x4b,0xef,0x05,0x68,0xa5,0x42,0x8e,0xf1,0xb9,0x34,0x91,0x92,0xd7,0x0b,0xbb,0xb0,0xe1,0xfe,0xa3,0x21,0xd7,0xff,0x05,0x43,0x25,0x2c,0x37,0x73,0xdf,0x60,0x4d,0x1e,0x6a,0x07,0x3a,0x8c,0xae,0x51,0xd3,0xe3,0x21,0xd2,0xfd,0xa1,0xf2,0xaa,0xd5,0x74,0x9f,0x0d,0x0e,0x1b,0x4c,0xf9,0x3a,0xe3,0x9b,0x14,0x9c,0x56,0x3c,0x1e,0x77,0x0c,0xe9,0x47,0x4c,0xa5,0x83,0xd1,0x8a,0xa2,0x54,0xdb,0xeb,0x07,0x14,0x2b,0x2f,0xfc,0xbd,0xa0,0x57,0x6b,0xdf,0xc0,0x5a,0xa1,0x21,0x84,0x13,0x81,0x41,0xe1,0x81,0x96,0x99,0xd3,0xd3,0x70,0x15,0x7b,0xf3,0x58,0x2e,0xd6,0x13,0x0c,0xf9,0x9e,0xc2,0x76,0x9d,0x15,0xa7,0xd9,0x12,0x63,0x32,0x61,0x7e,0x6a,0xa2,0x36,0x50,0x4e,0x78,0x8a,0x53,0xed,0x98,0x36,0x25,0xba,0x76,0xf9,0x19,0xf6,0xbc,0x02,0x8c,0x43,0x64,0x08,0xbc,0xe8,0x0c,0xba,0x6e,0x38,0x0e,0x9f,0x9a,0x52,0x93,0x87,0x12,0x1e,0x1f,0xbb,0xe9,0x71,0xd5,0x38,0xbc,0xf2,0x4c,0x0a,0xf4,0xc7,0x69,0xb6,0x4e,0xe5,0xd8,0x9c,0xe9,0x99,0x68,0xfc,0x49,0x19,0x96,0x17,0xde,0x6a,0x3d, +0x49,0xe2,0x62,0x21,0xa2,0x8f,0xa1,0x74,0xc7,0x59,0x50,0x3c,0xfd,0xee,0xf1,0x43,0xf1,0xe8,0x6c,0x50,0x9c,0x3e,0x78,0x2c,0x1e,0xa1,0xbb,0xf5,0x3a,0xfe,0x22,0xa2,0x01,0x1e,0x89,0x3a,0x0b,0x4c,0x58,0x70,0xc2,0x79,0xc6,0x7c,0x68,0x40,0x2d,0x1b,0x2d,0x22,0x30,0xb9,0xa8,0x01,0xf5,0x1a,0x03,0x59,0x4a,0x1f,0x38,0x9b,0xb0,0x70,0xd4,0x43,0x40,0x91,0x43,0xb7,0x98,0xe9,0xb1,0x5f,0x43,0x29,0x15,0xa6,0x80,0xea,0x2d,0x6a,0x00,0x61,0xfe,0xcd,0x05,0xb4,0xa2,0x74,0x10,0x8f,0xd1,0x2d,0x11,0xd3,0x5a,0x3f,0x28,0x64,0xdc,0x3b,0x9d,0x0a,0xee,0xe9,0xc7,0x9a,0x3f,0x96,0xc3,0x07,0x6d,0x6b,0x8c,0x6c,0x9a,0xf6,0x85,0x40,0x31,0x52,0x66,0x46,0x5c,0xab,0xd1,0xcf,0x6c,0x69,0x03,0x04,0x7f,0xd5,0xaa,0x29,0x7b,0xa6,0xf4,0x4a,0x59,0x91,0x90,0xf9,0x8d,0x0d,0x74,0xd4,0xcd,0xc6,0x5c,0xde,0xa4,0x71,0x3d,0x91,0xe7,0xb0,0x9a,0x0d,0x13,0x3a,0xa3,0x1b,0xc7,0xe5,0x18,0xe8,0xb2,0x0b,0x7b,0xba,0x78,0xf4,0xec,0x45,0xb6,0x4e,0xa2,0xf4,0x9e,0x44,0xb6,0x73,0x74,0xcf,0x0e,0x76,0x5d,0x1d,0xff,0x69,0x9e,0x86,0xe9,0x92,0x99,0x23,0x17,0xc2,0xa1,0x77,0xb0,0xc0,0x7d,0x3c,0x7b,0x7a,0x0a,0x18,0x58,0xed,0x58,0x24,0x4c,0x80,0xce,0x0f,0x46,0x05,0x91,0xd7,0xb4,0xea,0x8c,0x43,0x58,0xf7,0xbc,0x69,0xc3,0x77,0x6f,0x06,0xf5,0xff,0x0e,0xd4,0x79,0x17,0x1e,0xcc,0x5d,0x90,0x21,0x3c,0xa9,0xc2,0x4b,0x51,0x40,0x4e,0xf9,0x22,0x59,0x1d,0xc1,0x9e,0xb7,0x70,0x70,0xd2,0xeb,0x0f,0x66,0xd5,0xa0,0x4d,0xb8,0x41,0x8b,0x3a,0x1d,0x3b,0x82,0xf3,0x91,0x7a,0x93,0x42,0xc9,0xfd,0x8e,0xab,0x62,0x29,0x27,0xfd,0x06,0xa5,0x7e,0x87,0xa0,0x0c,0x5e,0xd4,0xc9,0x6d,0x79,0x65,0xcd,0x3e,0xd2,0x54,0xa9,0xe6,0xf6,0x8b,0x6a,0x92,0xde,0x55,0xd9,0xd1,0x3f,0x7b,0xd3,0x54,0x7f,0xeb,0xb5,0x18,0x5c,0x5c,0xb5,0x8a,0x9a,0x75,0x7a,0x27,0x41,0x90,0x2f,0xdc,0xa2,0xbe,0xec,0x17,0xbd,0x77,0xb7,0x50,0xb2,0xb1,0xd4,0xa9,0x19,0x6f,0x5a,0x81,0xc8,0x27,0x7b,0x61,0x29,0xc0,0xcb,0x1b,0xd6,0x1e,0x42,0x8e,0xff,0x07,0xfe,0x8b,0x3f,0xf3,0x9f,0x6a,0x00,0x00 }; \ No newline at end of file diff --git a/src/websrc/js/esprfid.js b/src/websrc/js/esprfid.js index 57c45b3a..c77d0010 100644 --- a/src/websrc/js/esprfid.js +++ b/src/websrc/js/esprfid.js @@ -124,6 +124,8 @@ function listhardware() { document.getElementById("wg1pin").disabled = true; document.getElementById("gpiorly").disabled = true; document.getElementById("readerType").disabled = true; + document.getElementById("typerly").value = config.hardware.rtype; + document.getElementById("delay").value = config.hardware.rtime; } else { document.getElementById("readerType").value = config.hardware.readerType; @@ -163,7 +165,7 @@ function uncommited() { $("#commit").fadeOut(200, function() { $(this).css("background", "gold").fadeIn(1000); }); - document.getElementById("commit").innerHTML = "
You have uncommited changes, please click here to commit and reboot (you will a have chance to review changes).
"; + document.getElementById("commit").innerHTML = "
You have uncommited changes, please click here to review and commit.
"; $("#commit").click(function() { revcommit(); return false;