Flash Filesystem
diff --git a/esp3d/command.cpp b/esp3d/command.cpp
index 63808ac7..cd7295cf 100644
--- a/esp3d/command.cpp
+++ b/esp3d/command.cpp
@@ -43,6 +43,11 @@ int ChannelAttached2Pin[16]={-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1};
#include "DHTesp.h"
extern DHTesp dht;
#endif
+
+#ifdef NOTIFICATION_FEATURE
+#include "notifications_service.h"
+#endif
+
String COMMAND::buffer_serial;
String COMMAND::buffer_tcp;
@@ -441,6 +446,7 @@ bool COMMAND::execute_command (int cmd, String cmd_params, tpipe output, level_a
//restart time client
case 114: {
CONFIG::init_time_client();
+ ESPCOM::println (OK_CMD_MSG, output, espresponse);
LOG ("restart time client\r\n")
}
break;
@@ -462,7 +468,7 @@ bool COMMAND::execute_command (int cmd, String cmd_params, tpipe output, level_a
stmp += String(tmstruct.tm_min) + ":";
if (tmstruct.tm_sec < 10) stmp +="0";
stmp += String(tmstruct.tm_sec);
- ESPCOM::println(stmp.c_str(), output);
+ ESPCOM::println(stmp.c_str(), output, espresponse);
}
break;
#endif
@@ -694,6 +700,13 @@ bool COMMAND::execute_command (int cmd, String cmd_params, tpipe output, level_a
}
break;
#endif
+ //display ESP3D EEPROM version detected
+ case 300:
+ {
+ uint8_t v = CONFIG::get_EEPROM_version();
+ ESPCOM::println (String(v).c_str(), output, espresponse);
+ }
+ break;
//Get full EEPROM settings content
//[ESP400]
case 400: {
@@ -1077,7 +1090,6 @@ bool COMMAND::execute_command (int cmd, String cmd_params, tpipe output, level_a
ESPCOM::print (F ("\",\"H\":\"AP Static Gateway\"}"), output, espresponse);
#if defined(TIMESTAMP_FEATURE)
ESPCOM::println (F (","), output, espresponse);
-
//26-Time zone
ESPCOM::print (F ("{\"F\":\"network\",\"P\":\""), output, espresponse);
ESPCOM::print ( (const char *) CONFIG::intTostr (EP_TIMEZONE), output, espresponse);
@@ -1160,6 +1172,71 @@ bool COMMAND::execute_command (int cmd, String cmd_params, tpipe output, level_a
ESPCOM::print ( (const char *) CONFIG::intTostr (MIN_DATA_LENGTH), output, espresponse);
ESPCOM::print (F ("\"}"), output, espresponse);
#endif
+
+#ifdef NOTIFICATION_FEATURE
+ ESPCOM::println (F (","), output, espresponse);
+ //Notification type
+ ESPCOM::print (F ("{\"F\":\"network\",\"P\":\""), output, espresponse);
+ ESPCOM::print ( (const char *) CONFIG::intTostr (ESP_NOTIFICATION_TYPE), output, espresponse);
+ ESPCOM::print (F("\",\"T\":\"B\",\"V\":\""), output, espresponse);
+ if (!CONFIG::read_byte (ESP_NOTIFICATION_TYPE, &bbuf ) ) {
+ ESPCOM::print ("???", output, espresponse);
+ } else {
+ ESPCOM::print ( (const char *) CONFIG::intTostr (bbuf), output, espresponse);
+ }
+ ESPCOM::print (F("\",\"H\":\"Notification\",\"O\":[{\"None\":\"0\"},{\"Pushover\":\""), output, espresponse);
+ ESPCOM::print ( (const char *) CONFIG::intTostr (ESP_PUSHOVER_NOTIFICATION), output, espresponse);
+ ESPCOM::print (F("\"},{\"Email\":\""), output, espresponse);
+ ESPCOM::print ( (const char *) CONFIG::intTostr (ESP_EMAIL_NOTIFICATION), output, espresponse);
+ ESPCOM::print (F("\"},{\"Line\":\""), output, espresponse);
+ ESPCOM::print ( (const char *) CONFIG::intTostr (ESP_LINE_NOTIFICATION), output, espresponse);
+ ESPCOM::print (F("\"}]}"), output, espresponse);
+ ESPCOM::println (F (","), output, espresponse);
+ //Token 1
+ ESPCOM::print (F("{\"F\":\"network\",\"P\":\""), output, espresponse);
+ ESPCOM::print ( (const char *) CONFIG::intTostr (ESP_NOTIFICATION_TOKEN1), output, espresponse);
+ ESPCOM::print ( F("\",\"T\":\"S\",\"V\":\""), output, espresponse);
+ if (!CONFIG::read_string (ESP_NOTIFICATION_TOKEN1, sbuf, MAX_NOTIFICATION_TOKEN_LENGTH) ) {
+ ESPCOM::print ("???", output, espresponse);
+ } else {
+ ESPCOM::print ("********", output, espresponse);
+ }
+ ESPCOM::print ( F("\",\"S\":\""), output, espresponse);
+ ESPCOM::print ( (const char *) CONFIG::intTostr (MAX_NOTIFICATION_TOKEN_LENGTH), output, espresponse);
+ ESPCOM::print ( F ("\",\"H\":\"Token 1\",\"M\":\""), output, espresponse);
+ ESPCOM::print ( (const char *) CONFIG::intTostr (MIN_NOTIFICATION_TOKEN_LENGTH), output, espresponse);
+ ESPCOM::print ( F("\"}"), output, espresponse);
+ ESPCOM::println (F (","), output, espresponse);
+ //Token 2
+ ESPCOM::print (F("{\"F\":\"network\",\"P\":\""), output, espresponse);
+ ESPCOM::print ( (const char *) CONFIG::intTostr (ESP_NOTIFICATION_TOKEN2), output, espresponse);
+ ESPCOM::print ( F("\",\"T\":\"S\",\"V\":\""), output, espresponse);
+ if (!CONFIG::read_string (ESP_NOTIFICATION_TOKEN2, sbuf, MAX_NOTIFICATION_TOKEN_LENGTH) ) {
+ ESPCOM::print ("???", output, espresponse);
+ } else {
+ ESPCOM::print ("********", output, espresponse);
+ }
+ ESPCOM::print ( F("\",\"S\":\""), output, espresponse);
+ ESPCOM::print ( (const char *) CONFIG::intTostr (MAX_NOTIFICATION_TOKEN_LENGTH), output, espresponse);
+ ESPCOM::print ( F ("\",\"H\":\"Token 2\",\"M\":\""), output, espresponse);
+ ESPCOM::print ( (const char *) CONFIG::intTostr (MIN_NOTIFICATION_TOKEN_LENGTH), output, espresponse);
+ ESPCOM::print ( F("\"}"), output, espresponse);
+ ESPCOM::println (F (","), output, espresponse);
+ //Notifications Settings
+ ESPCOM::print (F("{\"F\":\"network\",\"P\":\""), output, espresponse);
+ ESPCOM::print ( (const char *) CONFIG::intTostr (ESP_NOTIFICATION_SETTINGS), output, espresponse);
+ ESPCOM::print ( F("\",\"T\":\"S\",\"V\":\""), output, espresponse);
+ if (!CONFIG::read_string (ESP_NOTIFICATION_SETTINGS, sbuf, MAX_NOTIFICATION_TOKEN_LENGTH) ) {
+ ESPCOM::print ("???", output, espresponse);
+ } else {
+ ESPCOM::print (sbuf, output, espresponse);
+ }
+ ESPCOM::print ( F("\",\"S\":\""), output, espresponse);
+ ESPCOM::print ( (const char *) CONFIG::intTostr (MAX_NOTIFICATION_SETTINGS_LENGTH), output, espresponse);
+ ESPCOM::print ( F ("\",\"H\":\"Notifications Settings\",\"M\":\""), output, espresponse);
+ ESPCOM::print ( (const char *) CONFIG::intTostr (MIN_NOTIFICATION_SETTINGS_LENGTH), output, espresponse);
+ ESPCOM::print ( F("\"}"), output, espresponse);
+#endif //NOTIFICATION_FEATURE
}
if (cmd_params == "printer" || cmd_params == "") {
@@ -1470,6 +1547,46 @@ bool COMMAND::execute_command (int cmd, String cmd_params, tpipe output, level_a
}
}
break;
+ //[ESP500]
+ case 500: { //send GCode with check sum caching right line numbering
+ //be sure serial is locked
+ if ( (web_interface->blockserial) ) {
+ break;
+ }
+ int32_t linenb = 1;
+ cmd_params.trim() ;
+ if (sendLine2Serial (cmd_params, linenb, &linenb))ESPCOM::println (OK_CMD_MSG, output, espresponse);
+ else { //it may failed because of skip if repetier so let's reset numbering first
+ if ( ( CONFIG::GetFirmwareTarget() == REPETIER4DV) || (CONFIG::GetFirmwareTarget() == REPETIER) ) {
+ //reset numbering
+ String cmd = "M110 N0";
+ if (sendLine2Serial (cmd, -1, NULL)){
+ linenb = 1;
+ //if success let's try again to send the command
+ if (sendLine2Serial (cmd_params, linenb, &linenb))ESPCOM::println (OK_CMD_MSG, output, espresponse);
+ else {
+ ESPCOM::println (ERROR_CMD_MSG, output, espresponse);
+ response = false;
+ }
+ } else {
+ ESPCOM::println (ERROR_CMD_MSG, output, espresponse);
+ response = false;
+ }
+ } else {
+
+ ESPCOM::println (ERROR_CMD_MSG, output, espresponse);
+ response = false;
+ }
+ }
+ }
+ break;
+ //[ESP501]
+ case 501: { //send line checksum
+ cmd_params.trim();
+ int8_t chk = Checksum(cmd_params.c_str(),cmd_params.length());
+ String schecksum = "Checksum: " + String(chk);
+ ESPCOM::println (schecksum, output, espresponse);
+ }
#ifdef AUTHENTICATION_FEATURE
//Change / Reset user password
//[ESP555]pwd=
@@ -1503,47 +1620,119 @@ bool COMMAND::execute_command (int cmd, String cmd_params, tpipe output, level_a
break;
}
#endif
- //[ESP600]
- case 600: { //send GCode with check sum caching right line numbering
- //be sure serial is locked
- if ( (web_interface->blockserial) ) {
- break;
+#ifdef NOTIFICATION_FEATURE
+ //Send Notification
+ //[ESP600]msg [pwd=]
+ case 600:
+#ifdef AUTHENTICATION_FEATURE
+ if (auth_type == LEVEL_GUEST) {
+ ESPCOM::println (INCORRECT_CMD_MSG, output, espresponse);
+ return false;
}
- int32_t linenb = 1;
- cmd_params.trim() ;
- if (sendLine2Serial (cmd_params, linenb, &linenb))ESPCOM::println (OK_CMD_MSG, output, espresponse);
- else { //it may failed because of skip if repetier so let's reset numbering first
- if ( ( CONFIG::GetFirmwareTarget() == REPETIER4DV) || (CONFIG::GetFirmwareTarget() == REPETIER) ) {
- //reset numbering
- String cmd = "M110 N0";
- if (sendLine2Serial (cmd, -1, NULL)){
- linenb = 1;
- //if success let's try again to send the command
- if (sendLine2Serial (cmd_params, linenb, &linenb))ESPCOM::println (OK_CMD_MSG, output, espresponse);
- else {
- ESPCOM::println (ERROR_CMD_MSG, output, espresponse);
- response = false;
- }
- } else {
- ESPCOM::println (ERROR_CMD_MSG, output, espresponse);
- response = false;
+#endif
+ parameter = get_param (cmd_params, "", true);
+ if (parameter.length() == 0) {
+ ESPCOM::println (INCORRECT_CMD_MSG, output, espresponse);
+ return false;
+ }
+ if (notificationsservice.sendMSG("ESP3D Notification", parameter.c_str())) {
+ ESPCOM::println (OK_CMD_MSG, output, espresponse);
+ } else {
+ ESPCOM::println (ERROR_CMD_MSG, output, espresponse);
+ response = false;
+ }
+ break;
+ //Set/Get Notification settings
+ //[ESP610]type= T1= T2= TS= [pwd=]
+ //Get will give type and settings only not the protected T1/T2
+ case 610:
+#ifdef AUTHENTICATION_FEATURE
+ if (auth_type == LEVEL_GUEST) {
+ ESPCOM::println (INCORRECT_CMD_MSG, output, espresponse);
+ return false;
+ }
+#endif
+ parameter = get_param (cmd_params, "", false);
+ //get
+ if (parameter.length() == 0) {
+ uint8_t Ntype = 0;
+ if (!CONFIG::read_byte (ESP_NOTIFICATION_TYPE, &Ntype ) ){
+ Ntype =0;
+ }
+ char sbuf[MAX_DATA_LENGTH + 1];
+ static String tmp;
+ tmp = (Ntype == ESP_PUSHOVER_NOTIFICATION)?"PUSHOVER":(Ntype == ESP_EMAIL_NOTIFICATION)?"EMAIL":(Ntype == ESP_LINE_NOTIFICATION)?"LINE":"NONE";
+ if (CONFIG::read_string (ESP_NOTIFICATION_SETTINGS, sbuf, MAX_NOTIFICATION_SETTINGS_LENGTH) ) {
+ tmp+= " ";
+ tmp += sbuf;
}
+ ESPCOM::println (tmp.c_str(), output, espresponse);
+ } else {
+ response = false;
+ //type
+ parameter = get_param (cmd_params, "type=");
+ if (parameter.length() > 0) {
+ uint8_t Ntype;
+ parameter.toUpperCase();
+ if (parameter == "NONE") {
+ Ntype = 0;
+ } else if (parameter == "PUSHOVER") {
+ Ntype = ESP_PUSHOVER_NOTIFICATION;
+ } else if (parameter == "EMAIL") {
+ Ntype = ESP_EMAIL_NOTIFICATION;
+ } else if (parameter == "LINE") {
+ Ntype = ESP_LINE_NOTIFICATION;
+ } else {
+ ESPCOM::println (INCORRECT_CMD_MSG, output, espresponse);
+ return false;
+ }
+ if (!CONFIG::write_byte (ESP_NOTIFICATION_TYPE, Ntype) ) {
+ ESPCOM::println (ERROR_CMD_MSG, output, espresponse);
+ return false;
+ } else {
+ response = true;
+ }
+ }
+ //Settings
+ parameter = get_param (cmd_params, "TS=");
+ if (parameter.length() > 0) {
+ if (!CONFIG::write_string (ESP_NOTIFICATION_SETTINGS, parameter.c_str() ) ) {
+ ESPCOM::println (ERROR_CMD_MSG, output, espresponse);
+ return false;
+ } else {
+ response = true;
+ }
+ }
+ //Token1
+ parameter = get_param (cmd_params, "T1=");
+ if (parameter.length() > 0) {
+ if (!CONFIG::write_string (ESP_NOTIFICATION_TOKEN1, parameter.c_str() ) ) {
+ ESPCOM::println (ERROR_CMD_MSG, output, espresponse);
+ return false;
+ } else {
+ response = true;
+ }
+ }
+ //Token2
+ parameter = get_param (cmd_params, "T2=");
+ if (parameter.length() > 0) {
+ if (!CONFIG::write_string (ESP_NOTIFICATION_TOKEN2, parameter.c_str() ) ) {
+ ESPCOM::println (ERROR_CMD_MSG, output, espresponse);
+ return false;
+ } else {
+ response = true;
+ }
+ }
+ if (response) {
+ //Restart service
+ notificationsservice.begin();
+ ESPCOM::println (OK_CMD_MSG, output, espresponse);
} else {
-
ESPCOM::println (ERROR_CMD_MSG, output, espresponse);
- response = false;
}
}
- }
- break;
- //[ESP601]
- case 601: { //send line checksum
- cmd_params.trim();
- int8_t chk = Checksum(cmd_params.c_str(),cmd_params.length());
- String schecksum = "Checksum: " + String(chk);
- ESPCOM::println (schecksum, output, espresponse);
- }
break;
+#endif
//[ESP700]
case 700: { //read local file
//be sure serial is locked
@@ -1747,6 +1936,9 @@ bool COMMAND::check_command (String buffer, tpipe output, bool handlelockserial,
if (executecmd) {
String ESP_Command;
int ESPpos = buffer.indexOf ("[ESP");
+ if (ESPpos == -1 && (CONFIG::GetFirmwareTarget() == SMOOTHIEWARE)){
+ ESPpos = buffer.indexOf ("[esp");
+ }
if (ESPpos > -1) {
//is there the second part?
int ESPpos2 = buffer.indexOf ("]", ESPpos);
diff --git a/esp3d/config.cpp b/esp3d/config.cpp
index de836500..4ee44399 100644
--- a/esp3d/config.cpp
+++ b/esp3d/config.cpp
@@ -43,6 +43,10 @@ extern "C" {
extern DHTesp dht;
#endif
+#ifdef NOTIFICATION_FEATURE
+#include "notifications_service.h"
+#endif
+
uint8_t CONFIG::FirmwareTarget = UNKNOWN_FW;
byte CONFIG::output_flag = DEFAULT_OUTPUT_FLAG;
@@ -206,7 +210,7 @@ bool CONFIG::InitBaudrate(long value)
#endif
wifi_config.baud_rate = baud_rate;
- delay (1000);
+ delay (100);
return true;
}
@@ -228,8 +232,9 @@ void CONFIG::esp_restart (bool async)
{
LOG ("Restarting\r\n")
ESPCOM::flush (DEFAULT_PRINTER_PIPE);
+ SPIFFS.end();
if (!async) {
- delay (100);
+ delay (1000);
}
#ifdef ARDUINO_ARCH_ESP8266
//ESP8266 has only serial
@@ -435,16 +440,16 @@ char * CONFIG::intTostr (int value)
return result;
}
-String CONFIG::formatBytes (uint32_t bytes)
+String CONFIG::formatBytes (uint64_t bytes)
{
if (bytes < 1024) {
- return String (bytes) + " B";
+ return String ((uint16_t)bytes) + " B";
} else if (bytes < (1024 * 1024) ) {
- return String (bytes / 1024.0) + " KB";
+ return String ((float)(bytes / 1024.0)) + " KB";
} else if (bytes < (1024 * 1024 * 1024) ) {
- return String (bytes / 1024.0 / 1024.0) + " MB";
+ return String ((float)(bytes / 1024.0 / 1024.0)) + " MB";
} else {
- return String (bytes / 1024.0 / 1024.0 / 1024.0) + " GB";
+ return String ((float)(bytes / 1024.0 / 1024.0 / 1024.0)) + " GB";
}
}
@@ -497,6 +502,64 @@ char * CONFIG::mac2str (uint8_t mac [WL_MAC_ADDR_LENGTH])
}
+bool CONFIG::set_EEPROM_version(uint8_t v){
+ byte byte_buffer[6];
+ byte_buffer[0]='E';
+ byte_buffer[1]='S';
+ byte_buffer[2]='P';
+ byte_buffer[3]='3';
+ byte_buffer[4]='D';
+ byte_buffer[5]=v;
+ return CONFIG::write_buffer (EP_EEPROM_VERSION, byte_buffer, 6);
+}
+
+uint8_t CONFIG::get_EEPROM_version(){
+ byte byte_buffer[6];
+ long baud_rate;
+ if (!CONFIG::read_buffer (EP_EEPROM_VERSION, byte_buffer, 6)) return EEPROM_V0;
+ if ((byte_buffer[0]=='E') && (byte_buffer[1]=='S') && (byte_buffer[2]=='P')&& (byte_buffer[3]=='3') && (byte_buffer[4]=='D')){
+ return byte_buffer[5];
+ }
+
+ if ( !CONFIG::read_buffer (EP_BAUD_RATE, (byte *) &baud_rate, INTEGER_LENGTH) ) {
+ return EEPROM_V0;
+ }
+ if ((baud_rate == 9600 || baud_rate == 19200 || baud_rate == 38400 || baud_rate == 57600 || baud_rate == 115200 || baud_rate == 230400 || baud_rate == 250000 || baud_rate == 500000 || baud_rate == 921600 ) ) {
+ return EEPROM_V1;
+ }
+ return EEPROM_V0;
+}
+
+bool CONFIG::adjust_EEPROM_settings(){
+ uint8_t v = get_EEPROM_version();
+ bool bdone =false;
+ if (v == EEPROM_CURRENT_VERSION) return true;
+ if (v == 1) {
+ bdone =true;
+#ifdef SDCARD_FEATURE
+ if (!CONFIG::write_byte (EP_SD_SPEED_DIV, DEFAULT_SDREADER_SPEED) ) {
+ bdone =false;
+ }
+#endif
+#ifdef DHT_FEATURE
+ if (!CONFIG::write_buffer (EP_DHT_INTERVAL, (const byte *) &DEFAULT_DHT_INTERVAL, INTEGER_LENGTH) ) {
+ bdone =false;
+ }
+
+ if (!CONFIG::write_byte (EP_DHT_TYPE, DEFAULT_DHT_TYPE) ) {
+ bdone =false;
+ }
+#endif
+ if (!CONFIG::write_byte (EP_OUTPUT_FLAG, DEFAULT_OUTPUT_FLAG) ) {
+ bdone =false;
+ }
+ }
+ if (bdone){
+ set_EEPROM_version(EEPROM_CURRENT_VERSION);
+ }
+ return bdone;
+}
+
//read a string
//a string is multibyte + \0, this is won't work if 1 char is multibyte like chinese char
bool CONFIG::read_string (int pos, char byte_buffer[], int size_max)
@@ -618,6 +681,13 @@ bool CONFIG::write_string (int pos, const char * byte_buffer)
case EP_TIME_SERVER3:
maxsize = MAX_DATA_LENGTH;
break;
+ case ESP_NOTIFICATION_TOKEN1:
+ case ESP_NOTIFICATION_TOKEN2:
+ maxsize = MAX_NOTIFICATION_TOKEN_LENGTH;
+ break;
+ case ESP_NOTIFICATION_SETTINGS:
+ maxsize = MAX_NOTIFICATION_SETTINGS_LENGTH;
+ break;
default:
maxsize = EEPROM_SIZE;
break;
@@ -789,7 +859,23 @@ bool CONFIG::reset_config()
return false;
}
#endif
- return true;
+
+#ifdef NOTIFICATION_FEATURE
+ if (!CONFIG::write_byte (ESP_NOTIFICATION_TYPE, DEFAULT_NOTIFICATION_TYPE) ) {
+ return false;
+ }
+ if (!CONFIG::write_string (ESP_NOTIFICATION_TOKEN1, DEFAULT_NOTIFICATION_TOKEN1 ) ) {
+ return false;
+ }
+ if (!CONFIG::write_string (ESP_NOTIFICATION_TOKEN2, DEFAULT_NOTIFICATION_TOKEN2 ) ) {
+ return false;
+ }
+ if (!CONFIG::write_string (ESP_NOTIFICATION_SETTINGS, DEFAULT_NOTIFICATION_SETTINGS ) ) {
+ return false;
+ }
+#endif
+
+ return set_EEPROM_version(EEPROM_CURRENT_VERSION);
}
void CONFIG::print_config (tpipe output, bool plaintext, ESPResponseStream *espresponse)
@@ -1678,6 +1764,30 @@ void CONFIG::print_config (tpipe output, bool plaintext, ESPResponseStream *esp
{
ESPCOM::print (F ("\n"), output, espresponse);
}
+#ifdef NOTIFICATION_FEATURE
+if (!plaintext)
+ {
+ ESPCOM::print (F ("\"Notifications\":\""), output, espresponse);
+ } else
+ {
+ ESPCOM::print (F ("Notifications: "), output, espresponse);
+ }
+ if (notificationsservice.started())
+ {
+ ESPCOM::print (notificationsservice.getTypeString(), output, espresponse);
+ } else
+ {
+ ESPCOM::print (F ("Disabled"), output, espresponse);
+ }
+
+ if (!plaintext)
+ {
+ ESPCOM::print (F ("\","), output, espresponse);
+ } else
+ {
+ ESPCOM::print (F ("\n"), output, espresponse);
+ }
+#endif
//Flag Oled
#ifdef ESP_OLED_FEATURE
diff --git a/esp3d/config.h b/esp3d/config.h
index 02e040e8..d4478a59 100644
--- a/esp3d/config.h
+++ b/esp3d/config.h
@@ -19,7 +19,7 @@
*/
//version and sources location
-#define FW_VERSION "2.1.0.c26"
+#define FW_VERSION "2.1.0.b27"
#define REPOSITORY "https://github.com/luc-github/ESP3D"
//Customize ESP3D ////////////////////////////////////////////////////////////////////////
@@ -27,7 +27,7 @@
#define ESP8266_MODEL_URL "http://espressif.com/en/products/esp8266/"
#define ESP32_MODEL_NAME "ESP32"
#define ESP32_MODEL_URL "https://www.espressif.com/en/products/hardware/esp-wroom-32/overview"
-#define ESP_MODEL_NUMBER "ESP3D 2.0"
+#define ESP_MODEL_NUMBER "ESP3D 2.1"
#define ESP_MANUFACTURER_NAME "Espressif Systems"
#define ESP_MANUFACTURER_URL "http://espressif.com"
//default name if no mac address is valid
@@ -48,6 +48,9 @@
//TCP_IP_DATA_FEATURE: allow to connect serial from TCP/IP
#define TCP_IP_DATA_FEATURE
+//NOTIFICATION_FEATURE : allow to push notifications
+#define NOTIFICATION_FEATURE
+
//MDNS_FEATURE: this feature allow type the name defined
//in web browser by default: http:\\esp8266.local and connect
#define MDNS_FEATURE
@@ -111,10 +114,10 @@
#endif
#ifdef DHT_FEATURE
-#define ESP_DHT_PIN 15
+#define ESP_DHT_PIN 2
#endif
-//Pins where the screen is connected
+//Pins where the screen is connected
#ifdef ESP_OLED_FEATURE
#define OLED_DISPLAY_SSD1306 // OLED Display Type: SSD1306(OLED_DISPLAY_SSD1306) / SH1106(OLED_DISPLAY_SH1106), comment this line out to disable oled
#define OLED_PIN_SDA 4 //5 //SDA; // i2c SDA Pin
@@ -306,7 +309,8 @@ typedef enum {
#define EP_OUTPUT_FLAG 129 //1 bytes = flag
#define EP_HOSTNAME 130//33 bytes 32+1 = string ; warning does not support multibyte char like chinese
#define EP_DHT_INTERVAL 164//4 bytes = int
-#define EP_FREE_INT2 168//4 bytes = int
+#define ESP_NOTIFICATION_TYPE 168 //1 byte = flag
+#define EP_FREE_INT2 169//3 bytes = int
#define EP_FREE_INT3 172//4 bytes = int
#define EP_ADMIN_PWD 176//21 bytes 20+1 = string ; warning does not support multibyte char like chinese
#define EP_USER_PWD 197//21 bytes 20+1 = string ; warning does not support multibyte char like chinese
@@ -318,7 +322,8 @@ typedef enum {
#define EP_AP_IP_MODE 329 //1 byte = flag
#define EP_AP_PHY_MODE 330 //1 byte = flag
#define EP_SD_SPEED_DIV 331 //1 byte = flag
-#define EP_FREE_STRING1 332 //128 bytes 127+1 = string ; warning does not support multibyte char like chinese
+#define ESP_NOTIFICATION_TOKEN1 332 //64 bytes 63+1 = string ; warning does not support multibyte char like chinese
+#define ESP_NOTIFICATION_TOKEN2 396 //64 bytes 63+1 = string ; warning does not support multibyte char like chinese
#define EP_DHT_TYPE 460 //1 bytes = flag
#define EP_TARGET_FW 461 //1 bytes = flag
#define EP_TIMEZONE 462//1 bytes = flag
@@ -331,14 +336,11 @@ typedef enum {
#define EP_SECONDARY_SD 852//1 bytes = flag
#define EP_DIRECT_SD_CHECK 853//1 bytes = flag
#define EP_SD_CHECK_UPDATE_AT_BOOT 854//1 bytes = flag
+#define ESP_NOTIFICATION_SETTINGS 855//128 bytes 127+1 = string ; warning does not support multibyte char like chinese
-#define LAST_EEPROM_ADDRESS 855
-//next available is 855
-//space left 1024 - 855 = 169
-//extra fre
-//#define EP_FREE_INT2 168//4 bytes = int
-//#define EP_FREE_INT3 172//4 bytes = int
-//#define EP_FREE_STRING1 331 //129 bytes 128+1 = string ; warning does not support multibyte char like chinese
+#define EP_EEPROM_VERSION 1017// 6 bytes = ESP3D
+
+#define LAST_EEPROM_ADDRESS 983
//default values
#define DEFAULT_WIFI_MODE AP_MODE
@@ -365,9 +367,9 @@ const char DEFAULT_ADMIN_PWD [] PROGMEM = "admin";
const char DEFAULT_USER_PWD [] PROGMEM = "user";
const char DEFAULT_ADMIN_LOGIN [] PROGMEM = "admin";
const char DEFAULT_USER_LOGIN [] PROGMEM = "user";
-const char DEFAULT_TIME_SERVER1 [] PROGMEM = "time.nist.gov";
-const char DEFAULT_TIME_SERVER2 [] PROGMEM = "0.pool.ntp.org";
-const char DEFAULT_TIME_SERVER3 [] PROGMEM = "1.pool.ntp.org";
+const char DEFAULT_TIME_SERVER1 [] PROGMEM = "1.pool.ntp.org";
+const char DEFAULT_TIME_SERVER2 [] PROGMEM = "2.pool.ntp.org";
+const char DEFAULT_TIME_SERVER3 [] PROGMEM = "0.pool.ntp.org";
#define DEFAULT_TIME_ZONE 0
#define DEFAULT_TIME_DST 0
#define DEFAULT_PRIMARY_SD 2
@@ -376,9 +378,29 @@ const char DEFAULT_TIME_SERVER3 [] PROGMEM = "1.pool.ntp.org";
#define DEFAULT_SD_CHECK_UPDATE_AT_BOOT 1
#define DEFAULT_OUTPUT_FLAG 0
#define DEFAULT_DHT_TYPE 255
-const int DEFAULT_DHT_INTERVAL = 30;
+const int DEFAULT_DHT_INTERVAL = 30;
+
+#define MIN_NOTIFICATION_TOKEN_LENGTH 0
+#define MIN_NOTIFICATION_SETTINGS_LENGTH 0
+#define MAX_NOTIFICATION_TOKEN_LENGTH 63
+#define MAX_NOTIFICATION_SETTINGS_LENGTH 127
+
+#define DEFAULT_NOTIFICATION_TYPE 0
+#define DEFAULT_NOTIFICATION_TOKEN1 ""
+#define DEFAULT_NOTIFICATION_TOKEN2 ""
+#define DEFAULT_NOTIFICATION_SETTINGS ""
+
+//Notifications
+#define ESP_PUSHOVER_NOTIFICATION 1
+#define ESP_EMAIL_NOTIFICATION 2
+#define ESP_LINE_NOTIFICATION 3
+
+#ifdef SDCARD_FEATURE
+#define DEFAULT_IS_DIRECT_SD 1
+#else
#define DEFAULT_IS_DIRECT_SD 0
+#endif
//SD Card reader speed
//possible values are :SPI_FULL_SPEED, SPI_DIV3_SPEED,
@@ -386,7 +408,7 @@ const int DEFAULT_DHT_INTERVAL = 30;
//SPI_EIGHTH_SPEED, SPI_SIXTEENTH_SPEED
//Decrease if reader give error
#ifdef ARDUINO_ARCH_ESP8266
-#define DEFAULT_SDREADER_SPEED SPI_HALF_SPEED
+#define DEFAULT_SDREADER_SPEED 2
#else
#define DEFAULT_SDREADER_SPEED 4
#endif
@@ -467,6 +489,14 @@ const uint16_t Setting[][2] = {
#define MIN_HOSTNAME_LENGTH 1
#define WL_MAC_ADDR_LENGTH 6
+//EEPROM Version
+#define EEPROM_V0 0
+#define EEPROM_V1 1
+#define EEPROM_V2 2
+
+#define EEPROM_CURRENT_VERSION EEPROM_V2
+
+
#if defined(ASYNCWEBSERVER)
class AsyncResponseStream;
typedef AsyncResponseStream ESPResponseStream;
@@ -512,13 +542,16 @@ public:
static uint8_t GetFirmwareTarget();
static const char* GetFirmwareTargetName();
static const char* GetFirmwareTargetShortName();
+ static uint8_t get_EEPROM_version();
+ static bool set_EEPROM_version(uint8_t v);
+ static bool adjust_EEPROM_settings();
static bool isHostnameValid (const char * hostname);
static bool isSSIDValid (const char * ssid);
static bool isPasswordValid (const char * password);
static bool isLocalPasswordValid (const char * password);
static bool isIPValid (const char * IP);
static char * intTostr (int value);
- static String formatBytes (uint32_t bytes);
+ static String formatBytes (uint64_t bytes);
static char * mac2str (uint8_t mac [WL_MAC_ADDR_LENGTH]);
static byte split_ip (const char * ptr, byte * part);
static void esp_restart (bool async = false);
diff --git a/esp3d/esp3d.cpp b/esp3d/esp3d.cpp
index 2229f639..ebe50305 100644
--- a/esp3d/esp3d.cpp
+++ b/esp3d/esp3d.cpp
@@ -94,15 +94,20 @@ Esp3D::Esp3D() {
void Esp3D::begin(uint16_t startdelayms, uint16_t recoverydelayms)
{
// init:
+ //WiFi.disconnect();
+ WiFi.mode (WIFI_OFF);
+ wifi_config.WiFi_on = false;
+ //check EEPROM Version
#if defined( DEBUG_ESP3D) && defined(DEBUG_OUTPUT_SERIAL)
CONFIG::InitBaudrate(DEFAULT_BAUD_RATE);
delay (2000);
LOG ("\r\nDebug Serial set\r\n")
#endif
-CONFIG::InitOutput();
+ CONFIG::adjust_EEPROM_settings();
+ CONFIG::InitOutput();
#ifdef ESP_OLED_FEATURE
-OLED_DISPLAY::begin();
-OLED_DISPLAY::splash();
+ OLED_DISPLAY::begin();
+ OLED_DISPLAY::splash();
#endif
#ifdef ARDUINO_ARCH_ESP8266
struct rst_info *rtc_info = system_get_rst_info();
@@ -116,9 +121,6 @@ OLED_DISPLAY::splash();
data_server = NULL;
#endif
- //WiFi.disconnect();
- WiFi.mode (WIFI_OFF);
- wifi_config.WiFi_on = false;
#ifdef ESP_OLED_FEATURE
uint32_t start_display_time = millis();
uint32_t now = millis();
@@ -132,7 +134,6 @@ OLED_DISPLAY::splash();
#else
delay (startdelayms);
#endif
-
CONFIG::InitDirectSD();
CONFIG::InitPins();
#ifdef RECOVERY_FEATURE
@@ -147,7 +148,6 @@ OLED_DISPLAY::splash();
breset_config = true; //cannot access to config settings=> reset settings
LOG ("Error no EEPROM access\r\n")
}
-
//reset is requested
if (breset_config) {
//update EEPROM with default settings
@@ -180,13 +180,27 @@ OLED_DISPLAY::splash();
#endif
//get target FW
CONFIG::InitFirmwareTarget();
+ delay(100);
//Update is done if any so should be Ok
#ifdef ARDUINO_ARCH_ESP32
SPIFFS.begin (true);
#else
SPIFFS.begin();
#endif
-
+//basic autostart
+ if(SPIFFS.exists("/autostart.g")){
+ FS_FILE file = SPIFFS.open("/autostart.g", SPIFFS_FILE_READ);
+ if (file){
+ String autoscript = file.readString();
+ if (autoscript.length() > 0){
+ //clean line
+ autoscript.replace("\n","");
+ autoscript.replace("\r","");
+ ESPCOM::println (autoscript.c_str(), DEFAULT_PRINTER_PIPE);
+ }
+ file.close();
+ }
+ }
//setup wifi according settings
if (!wifi_config.Setup() ) {
ESPCOM::println (F ("Safe mode 1"), PRINTER_PIPE);
@@ -196,7 +210,7 @@ OLED_DISPLAY::splash();
wifi_config.Safe_Setup();
}
}
- delay (1000);
+ delay (100);
//setup servers
if (!wifi_config.Enable_servers() ) {
ESPCOM::println (F ("Error enabling servers"), PRINTER_PIPE);
diff --git a/esp3d/nofile.h b/esp3d/nofile.h
index da8f3356..12ccbfa1 100644
--- a/esp3d/nofile.h
+++ b/esp3d/nofile.h
@@ -20,314 +20,387 @@
//data generated by https://github.com/AraHaan/bin2c
//bin2c Conversion Tool v0.14.0 - Windows - [FINAL].
-#define PAGE_NOFILES_SIZE 4862
-#if defined(ASYNCWEBSERVER)
-const uint8_t PAGE_NOFILES [] PROGMEM = {
-#else
-const char PAGE_NOFILES [] PROGMEM = {
-#endif
- 0x1F, 0x8B, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0A, 0xED, 0x5C, 0x7D, 0x93, 0xDA, 0x46,
- 0x93, 0xFF, 0x2A, 0xB2, 0x52, 0x36, 0x70, 0x2B, 0x40, 0x12, 0xAF, 0x8B, 0x16, 0xF2, 0x24, 0xB1,
- 0x7D, 0xF1, 0x95, 0x13, 0xBB, 0xBC, 0xEB, 0x7B, 0xAE, 0x2A, 0x4E, 0xB9, 0x84, 0x34, 0x80, 0xCE,
- 0x42, 0xD2, 0x49, 0xC3, 0xEE, 0x62, 0xC2, 0x77, 0xBF, 0xEE, 0x79, 0x91, 0x46, 0x42, 0xB0, 0xEC,
- 0x26, 0x79, 0xF2, 0xFC, 0x91, 0x60, 0x23, 0x98, 0x99, 0xEE, 0xE9, 0xE9, 0xE9, 0xFE, 0x75, 0x4F,
- 0x0F, 0xCE, 0xD5, 0x8A, 0xAE, 0xC3, 0xD9, 0xD5, 0x8A, 0xB8, 0xFE, 0xEC, 0x2A, 0xA3, 0xDB, 0x90,
- 0xCC, 0xB0, 0x65, 0xB7, 0x88, 0x23, 0xDA, 0x5E, 0xB8, 0xEB, 0x20, 0xDC, 0x4E, 0x32, 0x37, 0xCA,
- 0xDA, 0x19, 0x49, 0x83, 0x85, 0xD3, 0x5E, 0x67, 0x6D, 0x4A, 0xEE, 0x69, 0x3B, 0x0B, 0xBE, 0x92,
- 0xB6, 0xEB, 0xFF, 0xEF, 0x26, 0xA3, 0x13, 0xCB, 0x34, 0x9F, 0x3B, 0xED, 0x3B, 0x32, 0xFF, 0x12,
- 0xD0, 0x23, 0xBD, 0x8C, 0x1D, 0xB6, 0xC2, 0xD7, 0xE4, 0x7E, 0x3F, 0x8F, 0xFD, 0x6D, 0x69, 0x0A,
- 0xFD, 0x47, 0x12, 0xDE, 0x12, 0x1A, 0x78, 0xAE, 0xF6, 0x33, 0xD9, 0x10, 0xDD, 0xC8, 0xBF, 0x1B,
- 0xDF, 0xA5, 0x81, 0x1B, 0x1A, 0x8A, 0x0C, 0x0A, 0xAF, 0x7E, 0x72, 0xEF, 0x84, 0x41, 0x44, 0xDA,
- 0x2B, 0x12, 0x2C, 0x57, 0x30, 0x57, 0xA7, 0x6F, 0x8F, 0x07, 0x23, 0xAB, 0xDF, 0x73, 0xBC, 0x38,
- 0x8C, 0xD3, 0xC9, 0x37, 0xBD, 0x5E, 0xCF, 0x99, 0xBB, 0xDE, 0x97, 0x65, 0x1A, 0x6F, 0x22, 0xBF,
- 0x2D, 0x5A, 0x17, 0x8B, 0xC5, 0xBE, 0xE3, 0x01, 0x1F, 0x17, 0x88, 0xD3, 0xDD, 0xDA, 0x4D, 0x97,
- 0x41, 0xD4, 0x4E, 0x19, 0x0F, 0x77, 0x43, 0x63, 0x47, 0xB4, 0x84, 0x64, 0x21, 0x1A, 0x12, 0xD7,
- 0xF7, 0x83, 0x68, 0xC9, 0x5B, 0xAC, 0x01, 0xCC, 0x2B, 0x5B, 0x38, 0x15, 0x36, 0xED, 0xA9, 0x3B,
- 0x0F, 0xC9, 0x6E, 0x1E, 0xA7, 0x3E, 0x49, 0x27, 0xA6, 0xC3, 0x3F, 0xB4, 0xB3, 0xC4, 0xF5, 0x60,
- 0x20, 0x34, 0xAC, 0xDD, 0xFB, 0xF6, 0x5D, 0xE0, 0xD3, 0x15, 0x53, 0xCA, 0xBE, 0xC3, 0xC6, 0xB7,
- 0xF9, 0x30, 0xE2, 0xEF, 0x8A, 0x2E, 0x41, 0x3A, 0xB1, 0x92, 0x7B, 0x2D, 0x8B, 0xC3, 0xC0, 0xD7,
- 0xBE, 0xF1, 0x7D, 0x5F, 0x4A, 0x35, 0x8F, 0x29, 0x8D, 0xD7, 0x13, 0x1B, 0x35, 0x49, 0x81, 0x6C,
- 0x15, 0x50, 0xC2, 0x66, 0x21, 0x93, 0x28, 0xBE, 0x4B, 0xDD, 0x44, 0xCA, 0x36, 0xB1, 0xD7, 0xEB,
- 0x3D, 0x5D, 0xED, 0xD8, 0x9E, 0xB8, 0x61, 0xB0, 0x8C, 0x26, 0x28, 0xBF, 0x98, 0x78, 0x46, 0x71,
- 0x1B, 0x66, 0x34, 0x9D, 0x51, 0xDF, 0x38, 0x68, 0x5A, 0xE5, 0x4D, 0xCC, 0x36, 0xCA, 0xA3, 0xF2,
- 0xA6, 0xD5, 0x4E, 0x4E, 0x35, 0x3E, 0xBE, 0x15, 0xB7, 0x24, 0xC5, 0x9D, 0x0C, 0x85, 0x08, 0x34,
- 0x4E, 0xA4, 0x6A, 0xE0, 0x63, 0x65, 0x8D, 0x55, 0xA5, 0xD4, 0x08, 0x59, 0xD7, 0xB7, 0x3A, 0xEC,
- 0x3B, 0x10, 0xBB, 0xAE, 0x6F, 0xB5, 0xAB, 0xD5, 0xF4, 0xA1, 0x14, 0x8F, 0xE2, 0x26, 0x76, 0x48,
- 0xEC, 0xB5, 0x0D, 0xDB, 0x24, 0x68, 0x32, 0x9A, 0x06, 0x89, 0x22, 0xF8, 0x24, 0xA2, 0xAB, 0x76,
- 0xBC, 0x68, 0xD3, 0x6D, 0x42, 0x9A, 0xB1, 0xEF, 0xB7, 0x76, 0x35, 0xB6, 0x7A, 0x89, 0xAF, 0xFD,
- 0x3F, 0xD6, 0xC4, 0x0F, 0x5C, 0xAD, 0xB9, 0x06, 0x03, 0xE0, 0x7C, 0x47, 0x43, 0xD0, 0x79, 0x6B,
- 0xA7, 0xD8, 0xB1, 0x68, 0x1F, 0xA0, 0x61, 0xD4, 0x10, 0x5C, 0x5E, 0xDA, 0xB5, 0x04, 0x97, 0xA3,
- 0x23, 0x04, 0x96, 0x6D, 0x9A, 0xB5, 0x14, 0x96, 0xC5, 0x49, 0x3A, 0x91, 0x7B, 0xAB, 0x9A, 0xAD,
- 0x10, 0xD9, 0xF3, 0xBC, 0x8A, 0xC3, 0x98, 0x55, 0x77, 0x31, 0xC1, 0x58, 0x32, 0x70, 0x63, 0x44,
- 0x1C, 0xB0, 0xDA, 0x88, 0xD4, 0x78, 0x29, 0xF3, 0x5D, 0xAE, 0xD0, 0xD4, 0xF5, 0x83, 0x4D, 0x36,
- 0x19, 0x82, 0x91, 0xD5, 0x38, 0x81, 0xBB, 0x4B, 0xE2, 0x2C, 0xA0, 0x41, 0x1C, 0x4D, 0x52, 0x12,
- 0xBA, 0x34, 0xB8, 0x25, 0x8E, 0x1F, 0x64, 0x49, 0xE8, 0x6E, 0x27, 0xF3, 0x30, 0xF6, 0xBE, 0xE4,
- 0x0E, 0x81, 0xE8, 0xA3, 0x31, 0xF7, 0x65, 0x3E, 0xE1, 0x13, 0x2F, 0x4E, 0x5D, 0x46, 0xC8, 0x64,
- 0x28, 0xE4, 0xDF, 0x77, 0x5C, 0x0F, 0xF9, 0xEC, 0x0A, 0xC4, 0xA8, 0x91, 0xD0, 0x34, 0x4D, 0x39,
- 0x50, 0x73, 0x0D, 0x77, 0xB2, 0x88, 0xBD, 0x4D, 0x06, 0xCF, 0x55, 0x0C, 0x36, 0xBF, 0x53, 0xC1,
- 0x26, 0x71, 0x23, 0x12, 0xEE, 0x0E, 0x65, 0xAF, 0x07, 0xA7, 0x23, 0xFE, 0x5F, 0x56, 0x06, 0x82,
- 0x9F, 0x44, 0xDD, 0x79, 0x7C, 0xDF, 0xCE, 0x56, 0xAE, 0x1F, 0xDF, 0x4D, 0x4C, 0x0D, 0xA9, 0xF0,
- 0x6F, 0xBA, 0x9C, 0xBB, 0x4D, 0xD3, 0xC0, 0x57, 0xC7, 0x1C, 0xB4, 0x9C, 0x73, 0x06, 0x09, 0x49,
- 0xDB, 0x0C, 0xA1, 0x73, 0xAD, 0x21, 0xB8, 0x89, 0x0E, 0x34, 0x76, 0x68, 0xDB, 0x1D, 0x6A, 0xF4,
- 0x34, 0xE2, 0x0E, 0xF0, 0x25, 0x57, 0x20, 0x1A, 0x95, 0x35, 0x01, 0x12, 0x70, 0xD3, 0x90, 0xAB,
- 0xEB, 0xA1, 0x6E, 0x8A, 0x3E, 0x34, 0xA3, 0x9A, 0x2E, 0xA1, 0xC9, 0x8A, 0xF7, 0x86, 0xEE, 0x1C,
- 0x94, 0x2D, 0x2D, 0x20, 0x88, 0x18, 0x2E, 0x71, 0x43, 0x28, 0x43, 0x70, 0xC5, 0x98, 0x70, 0x15,
- 0x2C, 0xBA, 0xDC, 0x71, 0x0C, 0x1B, 0xE1, 0xF6, 0x32, 0x43, 0x09, 0xA2, 0x45, 0x2C, 0xF7, 0xB3,
- 0x07, 0xC6, 0x3F, 0x86, 0x2D, 0x5D, 0xC4, 0xE9, 0xBA, 0x8D, 0x9E, 0x91, 0xC6, 0xC5, 0x64, 0x7C,
- 0x16, 0x3E, 0x03, 0x0B, 0x1C, 0x02, 0x0E, 0x7B, 0xFD, 0x22, 0x64, 0xA0, 0x19, 0x6B, 0x96, 0x2D,
- 0x27, 0x3B, 0x37, 0x94, 0x0D, 0x06, 0x83, 0x63, 0xD6, 0x52, 0xB4, 0x06, 0x6B, 0x77, 0x29, 0x1D,
- 0xEA, 0xC0, 0x86, 0xD0, 0x2F, 0xCF, 0xB2, 0xA1, 0x20, 0xCA, 0x08, 0xD5, 0x8E, 0x18, 0xC9, 0xA8,
- 0x6C, 0x4A, 0x0F, 0x8E, 0x6D, 0xC7, 0x6D, 0x9A, 0x42, 0xF8, 0xE6, 0x0E, 0xAA, 0x5A, 0x80, 0x46,
- 0xDC, 0x8C, 0x80, 0x6E, 0xDB, 0xF1, 0x86, 0x6A, 0x1D, 0x6B, 0x90, 0x19, 0x05, 0xDF, 0x83, 0xBE,
- 0xB2, 0xC2, 0xB9, 0xAB, 0xED, 0xCA, 0xF6, 0x34, 0x1C, 0xBA, 0x0B, 0x72, 0xE9, 0x00, 0x05, 0x6A,
- 0x12, 0x02, 0xEE, 0x13, 0x96, 0x66, 0x98, 0xD0, 0x39, 0x96, 0x1D, 0x96, 0x69, 0x1B, 0xD6, 0x68,
- 0x60, 0xD8, 0xBD, 0x9E, 0xD1, 0x19, 0xB6, 0x84, 0x0C, 0xA8, 0xEB, 0xA4, 0xE2, 0xCC, 0xDC, 0x47,
- 0xE6, 0x34, 0x3A, 0x66, 0x77, 0xEA, 0x60, 0xB3, 0x64, 0x66, 0x7D, 0xD3, 0x74, 0x94, 0x10, 0xED,
- 0x91, 0x88, 0x92, 0xB4, 0x1A, 0x35, 0xD7, 0x81, 0xEF, 0x87, 0x84, 0x27, 0x60, 0xF1, 0xC6, 0x5B,
- 0xB5, 0x11, 0x76, 0x40, 0x9F, 0x6B, 0x37, 0x0A, 0x92, 0x4D, 0xC8, 0x40, 0xCC, 0x39, 0xDE, 0xE3,
- 0x6D, 0xD2, 0x0C, 0x54, 0x94, 0xC4, 0x01, 0x63, 0x7E, 0xA6, 0xC5, 0xB0, 0x7D, 0x4B, 0xDC, 0x14,
- 0x24, 0x72, 0x4E, 0xA4, 0x19, 0x8F, 0xB4, 0xE7, 0x1A, 0x13, 0x5C, 0xC7, 0x5F, 0xDB, 0x9B, 0x0C,
- 0x93, 0x25, 0x12, 0x12, 0x8F, 0x72, 0x71, 0x70, 0xAD, 0x07, 0x8D, 0xD5, 0x06, 0xA6, 0xF3, 0x76,
- 0x92, 0xC2, 0x32, 0xD2, 0xED, 0x69, 0xB4, 0xEE, 0xF5, 0x46, 0xEE, 0x7C, 0x54, 0xC1, 0x20, 0x9B,
- 0x0C, 0x7D, 0xB7, 0x5F, 0xE2, 0x22, 0x10, 0xDD, 0x28, 0xB5, 0x71, 0x68, 0x2F, 0x35, 0x31, 0x94,
- 0x2F, 0x35, 0x4D, 0x6A, 0x28, 0x27, 0x87, 0x94, 0x07, 0xF1, 0xA1, 0x46, 0x58, 0x7B, 0x3C, 0x34,
- 0x2F, 0xCD, 0x8A, 0xB0, 0x96, 0x6D, 0xCF, 0xFB, 0xE6, 0xDE, 0x73, 0x13, 0xDC, 0x54, 0x89, 0xC1,
- 0x2C, 0x8D, 0x1A, 0x2B, 0x29, 0xA9, 0xB0, 0xB2, 0x71, 0x01, 0xCA, 0xA3, 0xD1, 0xC8, 0x39, 0xC8,
- 0x02, 0xDD, 0x10, 0x4C, 0xAC, 0x04, 0xF2, 0x35, 0xC1, 0xF5, 0xB4, 0x51, 0x1C, 0x6C, 0xA5, 0xE0,
- 0xDA, 0xCE, 0x36, 0x9E, 0x47, 0xB2, 0xAC, 0x26, 0x9F, 0xF1, 0x17, 0x0B, 0xD3, 0x1F, 0x57, 0x23,
- 0xC1, 0x90, 0x5C, 0x7A, 0xC3, 0x3C, 0x84, 0x78, 0xA3, 0x61, 0xCF, 0x97, 0xAC, 0x7C, 0x37, 0x5A,
- 0x82, 0xB6, 0x6A, 0xA0, 0xCF, 0xF6, 0x89, 0x4F, 0x2A, 0x9C, 0xC8, 0xDC, 0xF3, 0x7C, 0x4B, 0x72,
- 0x72, 0x2F, 0xFB, 0xFD, 0xBE, 0xBD, 0xEF, 0xAC, 0xDC, 0xAC, 0x4D, 0xD2, 0x14, 0x20, 0xA7, 0x0C,
- 0xDB, 0x65, 0x5A, 0x3E, 0xFA, 0xCF, 0x06, 0xC4, 0xA3, 0xD2, 0xD4, 0x62, 0xDA, 0xB8, 0xDF, 0x1B,
- 0xF4, 0xFA, 0x4F, 0x46, 0x32, 0x74, 0xCD, 0x6F, 0x3C, 0x32, 0xEE, 0x8F, 0x7B, 0x8F, 0x91, 0xB1,
- 0x4A, 0x5B, 0x92, 0x59, 0x88, 0xDB, 0xE6, 0x61, 0xB6, 0x46, 0xD3, 0x62, 0xF3, 0x4F, 0xEA, 0x9A,
- 0xEF, 0xF1, 0xBF, 0x46, 0xD7, 0xB5, 0xF2, 0xD4, 0x6A, 0xDB, 0x9E, 0x0F, 0xFA, 0xB6, 0xF7, 0xFB,
- 0xB4, 0x3D, 0x1C, 0xCD, 0xAD, 0xE1, 0xF8, 0x69, 0xDA, 0xE6, 0xB4, 0x15, 0xA9, 0x6B, 0xF5, 0x2D,
- 0x7D, 0x04, 0x61, 0x45, 0x78, 0xC8, 0x49, 0x3C, 0xF1, 0x2F, 0xC1, 0x8C, 0x16, 0x55, 0xB7, 0xEB,
- 0xF7, 0x16, 0x3D, 0x57, 0x65, 0x52, 0xC2, 0x3E, 0xD1, 0xA4, 0x00, 0x98, 0x68, 0x51, 0x90, 0x8F,
- 0xB7, 0x4C, 0x0E, 0xC9, 0x26, 0x07, 0x64, 0xE7, 0xC0, 0x9E, 0x77, 0xD9, 0x33, 0x6D, 0xAF, 0x22,
- 0xE6, 0x68, 0x68, 0x79, 0xD6, 0x25, 0x13, 0x33, 0x58, 0x2F, 0x77, 0x22, 0x96, 0xAD, 0xDC, 0xA8,
- 0x9A, 0x12, 0x0F, 0xEB, 0xF0, 0x8A, 0x27, 0xE0, 0x9C, 0x56, 0x88, 0x50, 0x83, 0x25, 0x26, 0xBE,
- 0x2A, 0xF3, 0x9A, 0x20, 0xE2, 0x5F, 0xEE, 0x78, 0x20, 0x38, 0x93, 0xF4, 0xF4, 0xCA, 0x7B, 0xA6,
- 0x48, 0x3F, 0xE4, 0xD8, 0x87, 0x56, 0xFA, 0xD7, 0xAF, 0x2B, 0x04, 0xD1, 0x20, 0x43, 0xF8, 0x22,
- 0x0D, 0x82, 0x1D, 0xA6, 0xF2, 0xD6, 0x89, 0xB0, 0xB1, 0x45, 0x10, 0x12, 0xF6, 0x9D, 0xBB, 0x6B,
- 0x3E, 0xF6, 0xB2, 0x0F, 0xBB, 0x1A, 0x44, 0xC9, 0x86, 0xFE, 0x82, 0xA7, 0xE7, 0x29, 0x8E, 0xFB,
- 0x75, 0x32, 0x91, 0xCB, 0xC2, 0xAF, 0xED, 0x4D, 0x12, 0xC6, 0xAE, 0xDF, 0x9E, 0x6F, 0x20, 0x9A,
- 0xFD, 0x9D, 0x97, 0xFD, 0x6B, 0xF3, 0x32, 0xE7, 0xA4, 0x9B, 0x0F, 0xE6, 0x9E, 0x79, 0x10, 0xBA,
- 0xFB, 0xC3, 0xF9, 0xD8, 0x77, 0x1F, 0xB5, 0xA9, 0xC2, 0x2A, 0xFE, 0xDE, 0xDA, 0x7F, 0x9F, 0xAD,
- 0xED, 0x59, 0x73, 0xD3, 0xAF, 0x9E, 0xF4, 0xAD, 0xF9, 0xD0, 0x1F, 0x0F, 0x1E, 0xB7, 0xB5, 0x1C,
- 0xC0, 0xFE, 0xDE, 0xDA, 0x7F, 0xF3, 0xAD, 0xB5, 0x87, 0x97, 0xEE, 0xDC, 0xDB, 0xE7, 0x40, 0x5D,
- 0x82, 0xF3, 0x32, 0x7A, 0x2B, 0x68, 0x5E, 0x4A, 0x05, 0x04, 0x9A, 0x8B, 0x0A, 0xD3, 0x22, 0x8E,
- 0x41, 0xA9, 0x27, 0x0A, 0x4C, 0xAC, 0xFE, 0xF2, 0xB4, 0x1A, 0xD3, 0x41, 0x9D, 0x17, 0x0D, 0x0E,
- 0xC3, 0x24, 0xDF, 0xAB, 0xBE, 0x92, 0x34, 0xF4, 0xF0, 0xA5, 0x92, 0x2A, 0x9D, 0xBD, 0xFE, 0xE5,
- 0xD8, 0x9F, 0x57, 0x54, 0x3F, 0x30, 0x9F, 0x3B, 0xB2, 0x6E, 0x0A, 0xD2, 0xCA, 0x9D, 0xC2, 0xCF,
- 0x60, 0x3B, 0x6B, 0x5E, 0x66, 0xCC, 0x92, 0x20, 0xD2, 0xEC, 0x4C, 0xC3, 0xCD, 0x74, 0x53, 0x2D,
- 0x88, 0x16, 0x41, 0x04, 0x96, 0xB0, 0xFF, 0xC7, 0x17, 0xB2, 0x5D, 0xA4, 0xEE, 0x9A, 0x64, 0x1A,
- 0x0E, 0xD9, 0x99, 0xCF, 0x77, 0xCC, 0x5C, 0x30, 0x63, 0x9D, 0xA4, 0x31, 0x75, 0x29, 0x69, 0x9A,
- 0xAD, 0x3D, 0x16, 0xAD, 0x0E, 0x3B, 0x7A, 0x43, 0x00, 0xD3, 0x65, 0x6B, 0xFF, 0x97, 0x68, 0x70,
- 0x1D, 0xFB, 0x6E, 0x51, 0xFF, 0x62, 0x46, 0x94, 0x57, 0x63, 0x17, 0xC1, 0x3D, 0xF1, 0x9D, 0xAF,
- 0xED, 0x20, 0xF2, 0xC9, 0x3D, 0x56, 0xDC, 0xCC, 0xA2, 0x10, 0xCC, 0x78, 0x61, 0x7D, 0xD9, 0x61,
- 0x25, 0x62, 0x70, 0x5A, 0x68, 0x30, 0x1D, 0xA5, 0x38, 0x27, 0x35, 0x88, 0x9F, 0xD1, 0x5C, 0x16,
- 0x21, 0x24, 0x1A, 0xAC, 0xA8, 0x56, 0x5B, 0x89, 0x3D, 0x6C, 0x55, 0x93, 0x90, 0x7E, 0x4B, 0x88,
- 0xCA, 0xF2, 0x7F, 0x70, 0xC1, 0x5D, 0xB1, 0xA6, 0x52, 0x75, 0xD1, 0x32, 0xCB, 0x95, 0xC7, 0x52,
- 0x55, 0x52, 0xED, 0x14, 0x45, 0xFE, 0x63, 0xB4, 0xA2, 0xFB, 0x18, 0x39, 0x5E, 0x0B, 0xE4, 0xE6,
- 0x24, 0x0B, 0x13, 0x4A, 0x7D, 0x16, 0x4B, 0x50, 0x16, 0x42, 0x81, 0x59, 0xCA, 0xA5, 0xEC, 0x96,
- 0x73, 0x58, 0xEB, 0xE6, 0x70, 0x58, 0xBA, 0xA8, 0x9A, 0xD4, 0xA8, 0xE3, 0x9B, 0x05, 0xC1, 0x97,
- 0xD4, 0x03, 0x56, 0x72, 0x15, 0x2B, 0xB1, 0xC5, 0x84, 0x4E, 0x9E, 0xFC, 0xE2, 0xAB, 0x8E, 0x8B,
- 0x8D, 0xAF, 0x63, 0xC5, 0xD9, 0x47, 0xAA, 0xAF, 0x54, 0x9E, 0x5C, 0xE0, 0x4B, 0x8A, 0x57, 0xAE,
- 0x40, 0x9B, 0x42, 0x3A, 0xD9, 0x5B, 0x35, 0xF1, 0xA1, 0x94, 0x5E, 0x18, 0x4D, 0xBF, 0x33, 0x20,
- 0xEB, 0xC7, 0x2F, 0xE5, 0x50, 0x9C, 0xDF, 0xB9, 0xDB, 0x27, 0xEE, 0x6D, 0xCA, 0xD6, 0xC8, 0xFB,
- 0x06, 0x63, 0xF5, 0x2A, 0x26, 0xF3, 0x52, 0x42, 0x22, 0x0D, 0xB2, 0x7D, 0xA0, 0xCF, 0x0B, 0xD7,
- 0xA3, 0xE1, 0xE8, 0x28, 0x3D, 0xBB, 0x57, 0xDC, 0x5F, 0x75, 0xF9, 0x4D, 0xEE, 0x55, 0x97, 0xDF,
- 0xEB, 0xB2, 0xDB, 0xA6, 0x2B, 0x3F, 0xB8, 0xD5, 0x58, 0xFB, 0x54, 0xCF, 0x4D, 0xC8, 0x9D, 0xC3,
- 0x62, 0x37, 0x94, 0x08, 0xE7, 0xE3, 0x97, 0x33, 0xA6, 0x3E, 0xFB, 0x6F, 0xAB, 0x63, 0x6B, 0x2F,
- 0xA2, 0x79, 0x96, 0x38, 0xFC, 0xFD, 0xAA, 0x0B, 0xE4, 0xB3, 0x2B, 0x1E, 0x4D, 0x67, 0x57, 0x2B,
- 0x7B, 0xF6, 0x86, 0x6A, 0x19, 0x21, 0xEB, 0x4C, 0xDB, 0xC6, 0x1B, 0xCD, 0x8F, 0xB5, 0x28, 0xA6,
- 0xDA, 0xCA, 0xC5, 0x8B, 0x90, 0x68, 0xAB, 0x31, 0x87, 0xEF, 0xE0, 0x4D, 0xB2, 0x16, 0x91, 0x80,
- 0xAE, 0x48, 0xAA, 0x34, 0x75, 0x96, 0x5F, 0x0D, 0x2D, 0x09, 0xB1, 0xC0, 0xAB, 0xF1, 0x90, 0xAF,
- 0x05, 0x54, 0x8B, 0x53, 0xF8, 0xE2, 0x03, 0x9C, 0x21, 0xC3, 0x54, 0x5B, 0x04, 0xE9, 0xFA, 0x0E,
- 0x62, 0xA5, 0x16, 0x2C, 0x80, 0x05, 0x1E, 0x84, 0xB1, 0xE4, 0x06, 0x2B, 0xB2, 0x67, 0x38, 0xA1,
- 0xE7, 0x46, 0x30, 0x04, 0x14, 0x03, 0x78, 0xA3, 0x01, 0x7B, 0xA2, 0x4D, 0xB4, 0x2B, 0x57, 0xF3,
- 0x42, 0x37, 0xCB, 0xA6, 0x7A, 0x7E, 0x8A, 0xD0, 0xB5, 0x55, 0x4A, 0x16, 0x53, 0x7D, 0x45, 0x69,
- 0x92, 0x4D, 0xBA, 0xDD, 0x25, 0xC8, 0xB2, 0x99, 0xC3, 0x89, 0x7A, 0xDD, 0x0D, 0x37, 0x5E, 0x9B,
- 0x7F, 0xED, 0xBE, 0xBA, 0x7E, 0xDF, 0x7B, 0xD9, 0xFE, 0xE7, 0xAB, 0xEF, 0x3F, 0xBE, 0xD1, 0x67,
- 0x67, 0x0F, 0xBD, 0xEA, 0xBA, 0xA0, 0x61, 0xA9, 0x11, 0xD4, 0xAE, 0x98, 0x9D, 0x81, 0xB0, 0xAE,
- 0x05, 0xFE, 0x54, 0xBF, 0x7E, 0xFF, 0xE6, 0xF5, 0xEB, 0x6B, 0xFD, 0xB0, 0x5B, 0xDE, 0xA3, 0xE8,
- 0xB3, 0xD7, 0xD0, 0xBA, 0xD2, 0x5E, 0x43, 0x60, 0xCC, 0xB6, 0x19, 0x25, 0x6B, 0xA1, 0xE9, 0x03,
- 0x02, 0xDC, 0x44, 0x60, 0xC4, 0x52, 0x28, 0x8D, 0xA5, 0x50, 0x3A, 0x46, 0x53, 0x3E, 0x0F, 0x4B,
- 0x9F, 0x78, 0x1C, 0xD7, 0xB5, 0x08, 0xC2, 0xC8, 0x54, 0x5F, 0x6F, 0xB1, 0x31, 0xFB, 0xE5, 0x57,
- 0x5D, 0x5B, 0x6F, 0x42, 0x1A, 0x24, 0xB8, 0xF1, 0xF2, 0x93, 0x3E, 0xD3, 0x04, 0x27, 0xA9, 0x31,
- 0x1A, 0x69, 0x4A, 0x85, 0x52, 0x17, 0x33, 0xF0, 0x54, 0x8C, 0xCF, 0x51, 0xCA, 0xCE, 0x74, 0x50,
- 0xBC, 0x17, 0x06, 0xDE, 0x17, 0x58, 0x23, 0x89, 0x7C, 0x9C, 0xAA, 0xD9, 0x72, 0x74, 0xED, 0xD6,
- 0x0D, 0x37, 0x40, 0xF7, 0x91, 0x8D, 0xD5, 0x67, 0x25, 0x13, 0x4A, 0xD2, 0x78, 0x99, 0x62, 0x45,
- 0x43, 0x58, 0xE1, 0x6D, 0x90, 0x05, 0xF3, 0x20, 0x0C, 0xE8, 0x76, 0xB2, 0x82, 0x7C, 0x8C, 0x44,
- 0x52, 0xF4, 0x24, 0x5D, 0xF2, 0x29, 0xD9, 0x07, 0xB0, 0xFC, 0xA9, 0x0E, 0x86, 0x0D, 0x8B, 0xEF,
- 0x4A, 0x16, 0x60, 0xD3, 0x29, 0xFF, 0x7B, 0xA0, 0xF7, 0xE3, 0xAA, 0xE3, 0x97, 0xD7, 0x57, 0x14,
- 0xA8, 0xA8, 0xAF, 0x31, 0x87, 0x99, 0xEA, 0xE6, 0xF3, 0x5C, 0xA9, 0xE7, 0xA9, 0xA2, 0xB4, 0xEE,
- 0x1F, 0xE2, 0x35, 0x24, 0x86, 0x7E, 0xB3, 0x81, 0xB7, 0x99, 0x0D, 0xA3, 0xE1, 0x86, 0x61, 0x43,
- 0x51, 0xC3, 0x07, 0xB2, 0x00, 0x69, 0x57, 0x28, 0x39, 0xF5, 0x0F, 0x66, 0x45, 0x39, 0x73, 0x6E,
- 0x3F, 0xA4, 0x04, 0x6C, 0xDF, 0x0F, 0xD2, 0x66, 0x4B, 0x57, 0x24, 0x81, 0x93, 0x3C, 0x8C, 0xCC,
- 0x6E, 0x97, 0x92, 0xB2, 0x6F, 0x82, 0x4D, 0x33, 0x8C, 0xE3, 0x9F, 0x6F, 0x03, 0x72, 0xF7, 0x7D,
- 0x0C, 0x1A, 0xC2, 0x03, 0x76, 0x1F, 0xFF, 0xC0, 0xF8, 0x14, 0xEC, 0x40, 0x83, 0xB6, 0x81, 0xAE,
- 0x6D, 0x51, 0x77, 0xBA, 0xA4, 0xEE, 0x29, 0xD4, 0x36, 0x7C, 0x4E, 0x61, 0x90, 0x0D, 0x8F, 0x2D,
- 0x7B, 0xC0, 0x2E, 0x86, 0x53, 0x5D, 0xA4, 0x79, 0x7A, 0xB7, 0xE0, 0x83, 0x43, 0xB7, 0x8C, 0x9D,
- 0xE0, 0x63, 0x0D, 0x0A, 0x3E, 0xF8, 0xF9, 0x01, 0x3E, 0x98, 0x8F, 0x23, 0x1F, 0x8B, 0x0B, 0x64,
- 0xC3, 0x23, 0x4F, 0x6E, 0xA1, 0x75, 0x2C, 0xBE, 0xDE, 0x09, 0x8E, 0x63, 0xD8, 0x6C, 0xC1, 0x84,
- 0xE5, 0xC9, 0xFA, 0xEC, 0x02, 0x14, 0x08, 0x3C, 0x40, 0x8F, 0xA0, 0x8A, 0x99, 0x70, 0x11, 0xA1,
- 0x53, 0xAE, 0x48, 0x34, 0x17, 0x9E, 0xCC, 0xE5, 0xEA, 0x13, 0x5F, 0x2B, 0xC3, 0xF3, 0x25, 0x98,
- 0xF9, 0x26, 0x30, 0x53, 0x73, 0xE9, 0x2A, 0xA7, 0xC4, 0xEB, 0x3E, 0x69, 0xBC, 0x2A, 0x75, 0x17,
- 0x6D, 0xA7, 0x2B, 0xED, 0x08, 0x1F, 0x92, 0x82, 0x7F, 0x29, 0xDD, 0xF2, 0xEB, 0xD2, 0xCE, 0x8B,
- 0x83, 0x00, 0x1A, 0x21, 0x87, 0x64, 0x66, 0x84, 0x2B, 0xD5, 0x1C, 0x6E, 0xC0, 0xCA, 0x80, 0xF7,
- 0x0A, 0xDB, 0x67, 0x3F, 0x83, 0x1F, 0xE4, 0x5F, 0xAE, 0x41, 0x4B, 0xF2, 0x4B, 0xC9, 0x80, 0x2A,
- 0x6D, 0x62, 0x45, 0xAC, 0x55, 0x48, 0x2A, 0x26, 0x43, 0x07, 0xC8, 0x71, 0xE2, 0x33, 0xDA, 0x2A,
- 0x1B, 0xC7, 0xE3, 0x82, 0x5C, 0xCF, 0x11, 0xDC, 0xE1, 0x91, 0x96, 0xFB, 0x63, 0x06, 0xE9, 0xE6,
- 0x26, 0x2B, 0x34, 0x7A, 0xF0, 0x7E, 0x8E, 0x37, 0x16, 0xC8, 0x27, 0x21, 0xFE, 0x23, 0xC3, 0xFD,
- 0x07, 0x80, 0xAF, 0xE4, 0xBD, 0x47, 0x71, 0xF0, 0xEE, 0x28, 0x0A, 0x2A, 0xF6, 0xF2, 0x34, 0xE4,
- 0x03, 0xDE, 0x07, 0x18, 0xC0, 0x71, 0xEE, 0x10, 0xFD, 0x70, 0x3D, 0xEA, 0x8C, 0x8F, 0x81, 0xBE,
- 0xC5, 0x5D, 0x0E, 0x7E, 0xF8, 0xB1, 0x1E, 0xFE, 0x72, 0xCE, 0x70, 0x84, 0x8C, 0xD8, 0xF0, 0x75,
- 0xB6, 0xD4, 0x8F, 0xB3, 0x9F, 0x7D, 0x20, 0xB0, 0x79, 0x70, 0x06, 0x8E, 0x96, 0x79, 0xEC, 0xBD,
- 0x73, 0x03, 0xDA, 0x81, 0xFF, 0xC0, 0xA9, 0x80, 0x89, 0xC2, 0xCA, 0x83, 0x1C, 0x89, 0x72, 0xCF,
- 0xE1, 0x3D, 0x87, 0xC6, 0x5F, 0xDD, 0x74, 0xEE, 0x7E, 0x90, 0x85, 0x26, 0x70, 0xFE, 0xCD, 0xFD,
- 0x88, 0xA5, 0x28, 0x65, 0x1B, 0x28, 0x65, 0x2D, 0x75, 0x5D, 0x3C, 0x2D, 0x85, 0x9E, 0x55, 0x6F,
- 0xF6, 0x06, 0x44, 0xA7, 0xC1, 0x02, 0x0E, 0xEE, 0x98, 0xAD, 0x40, 0xF0, 0xEF, 0xD5, 0x18, 0x5A,
- 0x91, 0x2E, 0xEA, 0x7C, 0x0D, 0x62, 0x25, 0xA5, 0x6E, 0x44, 0x0F, 0x9D, 0x9F, 0xC0, 0x21, 0x69,
- 0x26, 0xB3, 0x8F, 0x70, 0xF0, 0x9D, 0x88, 0xE5, 0x55, 0x42, 0xA1, 0x7A, 0x49, 0x20, 0xAD, 0x81,
- 0x93, 0xE7, 0x8B, 0xFC, 0x8C, 0xE7, 0xE6, 0xCF, 0xBC, 0x51, 0xA8, 0xBC, 0xB8, 0xF2, 0x2F, 0xD4,
- 0xB6, 0x4A, 0xCF, 0x17, 0xE8, 0x3D, 0xF4, 0xDD, 0x01, 0x50, 0x3C, 0x42, 0xA8, 0x44, 0x90, 0xA8,
- 0x82, 0xC9, 0xB6, 0x87, 0x85, 0xC3, 0xE0, 0x79, 0x44, 0x97, 0xC2, 0xE5, 0xCB, 0x4E, 0x26, 0x6D,
- 0xFF, 0x98, 0xDB, 0x14, 0x71, 0x71, 0x33, 0x5F, 0x07, 0xF4, 0x03, 0xF9, 0xBF, 0x0D, 0x98, 0x1C,
- 0x46, 0x33, 0xE1, 0x15, 0xBC, 0xBD, 0x16, 0x3C, 0x20, 0xD1, 0x0D, 0x12, 0x3A, 0x5B, 0x6C, 0x22,
- 0x56, 0x6C, 0x01, 0x5F, 0xB8, 0x9D, 0xBB, 0x10, 0x09, 0x77, 0xB7, 0x70, 0x46, 0x06, 0x52, 0xC5,
- 0xF9, 0x75, 0x83, 0x4E, 0xBD, 0x4D, 0x8A, 0x45, 0x14, 0x84, 0xEC, 0x0E, 0x1C, 0x3B, 0x03, 0xDA,
- 0xD4, 0xBB, 0x7A, 0xCB, 0x88, 0xA6, 0xF0, 0x30, 0x82, 0xA9, 0xE5, 0x80, 0xB6, 0x9A, 0xE4, 0x02,
- 0xE9, 0x7C, 0x21, 0x6F, 0x83, 0xC7, 0xD2, 0x86, 0x96, 0xCB, 0xF9, 0x49, 0x57, 0xD8, 0x4C, 0x1B,
- 0xDD, 0x86, 0xA3, 0x1D, 0x8F, 0xE8, 0x9F, 0xF4, 0x59, 0x97, 0x79, 0x81, 0xEE, 0x04, 0x57, 0xB4,
- 0x13, 0x92, 0x68, 0x49, 0x57, 0x6D, 0xCB, 0x69, 0x45, 0x17, 0x53, 0xFA, 0x4B, 0xF0, 0xEB, 0x05,
- 0xCE, 0x7C, 0x64, 0xC6, 0x23, 0x13, 0xEA, 0x17, 0xD1, 0x85, 0xFE, 0xD0, 0xA4, 0xFA, 0x05, 0xE7,
- 0x9E, 0xFB, 0xBB, 0x90, 0xC2, 0x08, 0x2E, 0x2E, 0x9C, 0x94, 0xD0, 0x4D, 0x1A, 0x69, 0x6C, 0x5A,
- 0xD5, 0x39, 0xF5, 0x7D, 0xAE, 0x48, 0xB0, 0xAF, 0x6C, 0xF5, 0x39, 0x00, 0xC3, 0x51, 0x94, 0x59,
- 0x64, 0x13, 0x0D, 0xBB, 0xDF, 0x90, 0x71, 0x9C, 0x7D, 0x96, 0xD9, 0x44, 0x03, 0xB3, 0x09, 0xCB,
- 0x1E, 0xE3, 0xDF, 0x06, 0x2C, 0x5A, 0x9D, 0x4A, 0x24, 0x05, 0x8D, 0x81, 0xDD, 0x80, 0x60, 0xDE,
- 0xB0, 0xE0, 0x01, 0xE1, 0xBF, 0x31, 0x6C, 0x60, 0xF8, 0xC7, 0x87, 0xE4, 0x3D, 0x28, 0x78, 0x8F,
- 0x1A, 0xC2, 0x14, 0x1B, 0x18, 0xD6, 0xE1, 0xE4, 0xEA, 0x3B, 0x0D, 0xAD, 0x3B, 0x13, 0x3A, 0xAB,
- 0x72, 0xAC, 0xE7, 0x61, 0x97, 0x79, 0xB0, 0xCC, 0xA0, 0x8E, 0x4B, 0xCF, 0xE4, 0x5C, 0xC6, 0x47,
- 0xE4, 0x1A, 0x8E, 0x0A, 0x9E, 0x80, 0xAB, 0x67, 0x49, 0x66, 0x97, 0x79, 0x5A, 0x26, 0x67, 0x8A,
- 0x4F, 0xC1, 0x75, 0xAC, 0x72, 0xED, 0x3F, 0x86, 0xA9, 0x7D, 0x59, 0xCB, 0xA4, 0x77, 0xE6, 0x72,
- 0xFB, 0x9C, 0x4B, 0xBF, 0xC7, 0x45, 0x1B, 0x71, 0xC9, 0x46, 0x39, 0x4F, 0x85, 0xE5, 0xF0, 0x5C,
- 0x9E, 0xC3, 0x3F, 0x81, 0xE7, 0xF8, 0x8F, 0xE0, 0xC9, 0xF3, 0x3F, 0xC5, 0xC0, 0xF1, 0x4C, 0x2F,
- 0xED, 0x9B, 0x1B, 0xE9, 0xF9, 0xF6, 0x6D, 0xF7, 0xE1, 0x4F, 0x03, 0x82, 0x33, 0xF8, 0xA3, 0xE6,
- 0x4F, 0x1B, 0x3F, 0x8D, 0x8C, 0x9E, 0xF6, 0xD6, 0x36, 0xC6, 0xDA, 0xDB, 0x91, 0x61, 0xF5, 0xD8,
- 0xBB, 0xA9, 0xBD, 0xB5, 0xC4, 0x63, 0x6C, 0x58, 0x16, 0x7F, 0x0C, 0x78, 0xE3, 0x10, 0x1E, 0x26,
- 0x7B, 0x5C, 0x1A, 0xD6, 0x88, 0xBD, 0x5F, 0xB2, 0x26, 0x1B, 0x86, 0xDB, 0xE2, 0x61, 0x1B, 0xD6,
- 0x98, 0x3D, 0xC6, 0xAC, 0x6D, 0x88, 0x5C, 0x87, 0xDA, 0x57, 0x5C, 0x60, 0x1A, 0x7F, 0x81, 0x15,
- 0xB2, 0xB3, 0x6A, 0x83, 0xA7, 0xBB, 0x0D, 0xB6, 0xD2, 0xDA, 0x85, 0xF2, 0xB4, 0xE6, 0x33, 0x1E,
- 0x10, 0x48, 0x6B, 0xA7, 0x20, 0xC9, 0xC5, 0x94, 0x30, 0xF4, 0x51, 0x71, 0x44, 0x67, 0x29, 0x9E,
- 0xA1, 0x03, 0x8E, 0xE8, 0xAD, 0x82, 0x07, 0x9C, 0x65, 0xB1, 0xFC, 0x7C, 0x0D, 0xF9, 0x69, 0xB4,
- 0xCC, 0x9A, 0xC4, 0xA0, 0x52, 0x69, 0x80, 0x0B, 0xA4, 0x43, 0xE3, 0xB7, 0xF1, 0x1D, 0x49, 0x7F,
- 0x80, 0xDC, 0xA0, 0xD9, 0x02, 0x98, 0xA5, 0x95, 0x16, 0x72, 0x45, 0xBF, 0x6D, 0x5B, 0x13, 0x32,
- 0xA3, 0xDF, 0x5A, 0x13, 0xB3, 0x60, 0x8B, 0xB5, 0x3F, 0x97, 0x7A, 0x2B, 0x96, 0x69, 0xB1, 0x0C,
- 0x11, 0x45, 0x44, 0xB4, 0x81, 0x5C, 0x1E, 0x00, 0x73, 0xD1, 0x84, 0xA7, 0x7A, 0x12, 0xBC, 0x66,
- 0x83, 0x26, 0x9A, 0x7E, 0x41, 0x3A, 0x9C, 0xC0, 0xA0, 0x17, 0xE5, 0x21, 0xBF, 0xA9, 0x5F, 0x6E,
- 0x62, 0xEA, 0x86, 0x1A, 0x2F, 0x96, 0x33, 0x22, 0x8A, 0x0D, 0xA7, 0x69, 0x20, 0xC0, 0xFB, 0x2A,
- 0x09, 0x44, 0x6C, 0xFF, 0x34, 0xC5, 0x3B, 0xCF, 0xDB, 0x24, 0xBC, 0x4A, 0xAB, 0xE9, 0x6C, 0xE8,
- 0xD5, 0x9A, 0x40, 0x1C, 0xD4, 0xD6, 0x41, 0x04, 0x06, 0xD3, 0x60, 0x99, 0x18, 0x47, 0x8C, 0x15,
- 0x58, 0xD4, 0xB4, 0x71, 0x09, 0x9F, 0x78, 0x6C, 0x6B, 0xE0, 0x0C, 0x71, 0x4E, 0x0F, 0xB8, 0x0E,
- 0x1B, 0xC8, 0x88, 0xC5, 0x21, 0xA2, 0xDA, 0xFF, 0x5C, 0x37, 0xFC, 0xD8, 0xDB, 0xAC, 0x61, 0x0F,
- 0x3B, 0x4B, 0x42, 0x5F, 0x85, 0x04, 0x3F, 0x7E, 0xBF, 0x7D, 0x03, 0x7B, 0x27, 0x92, 0xEC, 0x56,
- 0x27, 0x88, 0x22, 0x92, 0xFE, 0x78, 0xF3, 0xD3, 0xDB, 0x29, 0x35, 0x50, 0x93, 0x06, 0x6C, 0xF3,
- 0x33, 0x35, 0xF8, 0x71, 0x25, 0x47, 0xA5, 0x78, 0x08, 0xB1, 0x87, 0xBE, 0xC1, 0x52, 0xCB, 0xBB,
- 0x05, 0x46, 0x45, 0xA3, 0xD4, 0xC7, 0xC3, 0x96, 0xDD, 0x72, 0xD8, 0xEA, 0x68, 0x2A, 0xBD, 0x4C,
- 0xBD, 0x57, 0x3E, 0x11, 0xB0, 0x4A, 0x71, 0x17, 0x86, 0x90, 0xA6, 0x69, 0x44, 0x17, 0x56, 0xEB,
- 0xE1, 0x38, 0x86, 0x61, 0x11, 0x82, 0x99, 0xE2, 0xAD, 0x45, 0x4C, 0x03, 0xB3, 0x0C, 0x31, 0x25,
- 0x01, 0x6C, 0x68, 0xCC, 0xE0, 0x2C, 0x80, 0x09, 0xA9, 0xCC, 0x37, 0xF5, 0x3D, 0x61, 0x77, 0x06,
- 0x59, 0x07, 0xE4, 0xA3, 0x4D, 0x69, 0x72, 0x25, 0xD3, 0xAD, 0x5A, 0x75, 0x07, 0x33, 0x69, 0x83,
- 0xB2, 0x47, 0x6B, 0xDF, 0x62, 0xC9, 0x00, 0xEA, 0x29, 0x98, 0x9A, 0x10, 0xBC, 0x25, 0x3F, 0xAE,
- 0x0B, 0x07, 0xE2, 0x68, 0x4B, 0x6F, 0x5B, 0xA0, 0x57, 0x4E, 0xDF, 0x14, 0xFD, 0x10, 0x75, 0x3B,
- 0x78, 0x3A, 0x6D, 0xBD, 0x78, 0xD1, 0x64, 0xCA, 0xBA, 0xF9, 0x30, 0x13, 0x46, 0xC1, 0xB2, 0x6E,
- 0x80, 0x18, 0x15, 0x57, 0x14, 0xB8, 0xA9, 0x81, 0x18, 0x6D, 0xF6, 0x89, 0x16, 0x28, 0x63, 0x19,
- 0x36, 0xA0, 0x84, 0x61, 0x5B, 0x88, 0x35, 0x36, 0x7E, 0x1E, 0xF2, 0xC7, 0x88, 0xB5, 0x59, 0x88,
- 0x0F, 0x6F, 0x2D, 0x5B, 0xBC, 0x5B, 0x1A, 0x0E, 0xB3, 0xCE, 0x40, 0x0C, 0xBC, 0x52, 0xD0, 0xEE,
- 0x2D, 0x1E, 0x91, 0xB7, 0xF8, 0x6C, 0x68, 0xF7, 0x36, 0x3C, 0x00, 0x59, 0xB7, 0x36, 0x8B, 0x80,
- 0x15, 0x0E, 0xFC, 0x6B, 0x5B, 0x08, 0x6F, 0x35, 0xBA, 0x72, 0x89, 0x39, 0xAB, 0x81, 0xE0, 0x64,
- 0x0A, 0x56, 0x3D, 0xCE, 0xCA, 0x32, 0xCF, 0xE0, 0x05, 0x6B, 0x3E, 0xE0, 0xD3, 0xAF, 0xF0, 0xE9,
- 0x3F, 0x91, 0xCF, 0xB8, 0xC2, 0x67, 0x7C, 0x06, 0x1F, 0x59, 0x3B, 0x60, 0xF9, 0x13, 0x2C, 0xB3,
- 0x71, 0x75, 0xF3, 0x52, 0xE4, 0x6A, 0x9F, 0x44, 0xB2, 0xF6, 0xA9, 0x91, 0x57, 0x48, 0x65, 0x19,
- 0x3D, 0xB9, 0x77, 0xC0, 0x7C, 0x5D, 0x51, 0x47, 0x6C, 0x80, 0x1F, 0x33, 0xD0, 0x55, 0xCC, 0x04,
- 0xED, 0xEC, 0xA2, 0x01, 0x49, 0xB9, 0x9B, 0x82, 0x2B, 0x4F, 0x3F, 0x83, 0x00, 0xD1, 0x97, 0x52,
- 0x56, 0x5D, 0x94, 0x23, 0x67, 0x0D, 0x9C, 0xB9, 0x42, 0xCC, 0x75, 0x2E, 0xF2, 0x61, 0xAC, 0x29,
- 0xDE, 0xBC, 0x9C, 0x81, 0x6C, 0x5C, 0xCA, 0x8A, 0x3D, 0x8A, 0xB1, 0x7C, 0x84, 0x34, 0x3B, 0xF3,
- 0x79, 0x43, 0x9D, 0xEF, 0x93, 0x28, 0x1C, 0x7D, 0xD2, 0x15, 0x57, 0x7E, 0x09, 0xF1, 0x83, 0x92,
- 0x26, 0x43, 0xAA, 0xB2, 0xE8, 0x7A, 0xA3, 0x85, 0x99, 0x26, 0x72, 0x56, 0xD3, 0xC5, 0x92, 0x54,
- 0x38, 0x1F, 0xF7, 0x49, 0x7C, 0x43, 0x5F, 0x28, 0xFC, 0x2A, 0x04, 0xBF, 0x0A, 0xAB, 0x7E, 0x15,
- 0x0A, 0xBF, 0x9A, 0x56, 0xFD, 0x2A, 0xFC, 0x43, 0xFD, 0x4A, 0xF1, 0xAA, 0x4B, 0x1E, 0x9E, 0x2F,
- 0x31, 0xD0, 0x42, 0x90, 0x86, 0x78, 0x2C, 0xDE, 0x06, 0x18, 0x72, 0xFB, 0xE8, 0x45, 0x7D, 0xF4,
- 0xBB, 0x01, 0x73, 0x3E, 0x9B, 0x0D, 0xC5, 0x07, 0x06, 0x6A, 0x74, 0xC5, 0x1E, 0xA3, 0x1F, 0xB0,
- 0x77, 0x9B, 0x7B, 0x22, 0xF4, 0x9F, 0x17, 0xA7, 0x0B, 0xA3, 0xD2, 0x71, 0x5B, 0xCA, 0x27, 0x00,
- 0x2D, 0xDF, 0xFE, 0x3C, 0xAB, 0x39, 0xBC, 0x99, 0x53, 0x51, 0x57, 0x09, 0xF5, 0xCA, 0x76, 0x85,
- 0xC5, 0x76, 0x39, 0x72, 0xBF, 0x2A, 0x7D, 0x25, 0xE3, 0x90, 0xF2, 0x3C, 0xD9, 0x56, 0x8E, 0xCF,
- 0xFF, 0x24, 0x73, 0x39, 0x1A, 0xEF, 0x8A, 0x9A, 0x54, 0x39, 0xE4, 0x1D, 0x25, 0x60, 0xA5, 0x3A,
- 0x75, 0xAC, 0x3C, 0x2E, 0x16, 0x29, 0x89, 0xB0, 0x76, 0xCC, 0x94, 0xE2, 0x08, 0xAF, 0x12, 0x9A,
- 0xFA, 0x0F, 0xFC, 0x83, 0xE6, 0x63, 0x17, 0x8E, 0x89, 0x17, 0xB8, 0x99, 0x3C, 0x3D, 0x00, 0x73,
- 0x2C, 0xE5, 0x4F, 0x6C, 0x10, 0x81, 0x0C, 0xF6, 0x80, 0xA7, 0x4C, 0xC0, 0x4E, 0xB1, 0x85, 0x31,
- 0xB0, 0x81, 0x71, 0xBA, 0x3D, 0xC1, 0x1B, 0xC6, 0x94, 0xD9, 0x2B, 0x05, 0x60, 0x71, 0x52, 0x4B,
- 0x52, 0x88, 0x6C, 0x70, 0xB6, 0x7D, 0xCF, 0xCB, 0x35, 0xEC, 0xA2, 0xA1, 0xE0, 0xCD, 0x0A, 0x46,
- 0x90, 0x13, 0x80, 0x6A, 0xA3, 0x4D, 0x18, 0x3E, 0x9B, 0x92, 0xCA, 0x3C, 0x9E, 0x64, 0x08, 0xF3,
- 0x74, 0xC0, 0x09, 0xD7, 0xCD, 0x96, 0x32, 0x9D, 0x3A, 0x94, 0x45, 0x53, 0x9E, 0x4A, 0x44, 0xE4,
- 0x4E, 0xFB, 0x9F, 0x9F, 0xDE, 0xFE, 0x48, 0x69, 0x22, 0x4E, 0xF0, 0x70, 0xA0, 0xD6, 0xBB, 0xCC,
- 0x04, 0xBE, 0xE5, 0x3F, 0x85, 0x98, 0xC2, 0x9A, 0x20, 0x6E, 0x42, 0x26, 0x85, 0xAD, 0xBC, 0x6C,
- 0x75, 0x41, 0x22, 0x2F, 0xF6, 0xC9, 0xC7, 0x0F, 0x6F, 0x9A, 0xB4, 0x65, 0xB0, 0x4E, 0x96, 0x34,
- 0xA8, 0x1D, 0x6A, 0xE2, 0x72, 0x7C, 0x73, 0x45, 0xD1, 0xB6, 0xD5, 0x61, 0xAE, 0xD2, 0x29, 0x2A,
- 0x59, 0xA2, 0xAA, 0x15, 0xC2, 0x9A, 0xA3, 0x4E, 0x1C, 0xC1, 0xE2, 0xFC, 0x2D, 0xA6, 0x4A, 0xC4,
- 0x5B, 0xE1, 0xAF, 0x0B, 0xA7, 0x79, 0x6E, 0xD0, 0xDA, 0x41, 0xC6, 0xD9, 0x9F, 0x4E, 0xA3, 0x0E,
- 0x1B, 0x83, 0xC9, 0x26, 0x69, 0x41, 0x93, 0x6D, 0x9A, 0xD8, 0xC8, 0xD3, 0x2B, 0xA9, 0xE3, 0xFF,
- 0xBA, 0x7E, 0xF7, 0x33, 0x20, 0x7A, 0x0A, 0x09, 0x2E, 0x8E, 0xCF, 0x92, 0x38, 0xCA, 0xC8, 0x0D,
- 0xB9, 0xA7, 0x27, 0x0C, 0xF6, 0x84, 0x88, 0xA2, 0xDA, 0x66, 0xD4, 0xA6, 0xC4, 0x7B, 0x12, 0xC2,
- 0x36, 0x56, 0xCA, 0x23, 0x7B, 0x5C, 0x4D, 0x42, 0xA2, 0xA6, 0xFE, 0x9F, 0xAF, 0x6E, 0xE0, 0x5C,
- 0x6F, 0x3C, 0x33, 0x5B, 0xD0, 0x94, 0xC1, 0xF6, 0x34, 0x2B, 0xDB, 0xC5, 0xCB, 0x8C, 0xBB, 0xBC,
- 0x8D, 0xD9, 0x37, 0x2C, 0x8C, 0x08, 0xD0, 0x85, 0xED, 0x4C, 0x36, 0xAC, 0x04, 0x20, 0xB3, 0x6F,
- 0xC2, 0x7F, 0xDF, 0xE0, 0x77, 0x45, 0xCA, 0xFC, 0x1F, 0x90, 0xBD, 0x1E, 0x5F, 0x17, 0xDE, 0xB6,
- 0xB4, 0x3A, 0x3C, 0xA3, 0x3D, 0xE1, 0x7E, 0xE5, 0x7B, 0x20, 0x49, 0x20, 0x4A, 0xA1, 0x80, 0x6A,
- 0x5A, 0xA7, 0xD3, 0xD1, 0x2F, 0xF0, 0xF0, 0xF0, 0x1A, 0xAF, 0xFF, 0x9B, 0x66, 0x0B, 0xF3, 0xDD,
- 0xFD, 0x9E, 0x8B, 0x74, 0x12, 0x06, 0x64, 0xF1, 0xB6, 0xC5, 0x31, 0x07, 0x8F, 0x0E, 0xE6, 0xB3,
- 0xA9, 0xAC, 0xB7, 0xB4, 0x76, 0x4F, 0x96, 0x09, 0x45, 0x3A, 0x01, 0x28, 0x6C, 0xE1, 0xC7, 0x0D,
- 0xCE, 0x29, 0x7C, 0xE3, 0x75, 0x9C, 0xAE, 0x5F, 0xBA, 0xD4, 0x75, 0xA2, 0x8E, 0x9B, 0x24, 0xB8,
- 0x49, 0x1C, 0x8E, 0xD4, 0x3C, 0xBB, 0x9A, 0x72, 0x52, 0x35, 0xD9, 0xDC, 0xF1, 0x90, 0x89, 0x65,
- 0x1D, 0xC3, 0x57, 0x33, 0xF7, 0x8B, 0x50, 0xE0, 0xEB, 0xB5, 0x5E, 0x30, 0xF7, 0x8D, 0x90, 0x87,
- 0x4B, 0xA3, 0x98, 0xAF, 0x28, 0x69, 0x1B, 0xA1, 0x71, 0xC8, 0xA0, 0xC5, 0x14, 0xED, 0xD6, 0x78,
- 0xB2, 0xE3, 0x0A, 0x4B, 0x7B, 0xFF, 0xEE, 0xFA, 0x06, 0x4F, 0x13, 0x8C, 0x8F, 0xCE, 0x2C, 0xCE,
- 0xED, 0x70, 0x15, 0x76, 0x20, 0x32, 0xBD, 0xBA, 0x05, 0x8E, 0x6F, 0x01, 0x90, 0x09, 0x00, 0x2C,
- 0x6A, 0x87, 0x17, 0x9D, 0x01, 0x46, 0x8C, 0x67, 0x16, 0x0E, 0x8D, 0x23, 0x1C, 0x5A, 0xF1, 0x38,
- 0xE6, 0x5E, 0x53, 0x37, 0xF7, 0xAF, 0xA7, 0xED, 0xD5, 0x13, 0x76, 0x29, 0xF7, 0xB9, 0xF3, 0x2C,
- 0x4B, 0x4C, 0xA7, 0x3B, 0x35, 0x3E, 0xAA, 0xA0, 0x81, 0x5B, 0x46, 0x03, 0xE1, 0xBC, 0xEC, 0x5F,
- 0x24, 0x34, 0xF5, 0xEF, 0xC0, 0xF9, 0xD8, 0x6F, 0xE1, 0xF1, 0x4C, 0x07, 0x1B, 0xE0, 0x3F, 0x83,
- 0x63, 0x36, 0x28, 0x86, 0x79, 0x6D, 0xD4, 0xDA, 0x17, 0x7E, 0xAB, 0x5E, 0x10, 0xFC, 0xA9, 0x9E,
- 0xBB, 0xB8, 0x3B, 0xC7, 0x77, 0xF1, 0x92, 0x40, 0x8D, 0x9C, 0x0F, 0x7B, 0x2D, 0x48, 0x79, 0x10,
- 0xEB, 0x2A, 0x17, 0x37, 0xDA, 0xB7, 0x7A, 0x4B, 0xCA, 0x7D, 0x7C, 0x13, 0xEE, 0x7E, 0xA7, 0x73,
- 0x17, 0xD7, 0x2F, 0x4F, 0x33, 0x02, 0x65, 0xFE, 0x27, 0x90, 0x73, 0xC5, 0x9D, 0x88, 0x49, 0xE7,
- 0xAB, 0xFC, 0xC4, 0x58, 0xF1, 0x73, 0x01, 0x39, 0x91, 0xF8, 0x51, 0xD5, 0x54, 0xC7, 0x5F, 0x55,
- 0x9D, 0xF6, 0x0C, 0xB6, 0xFD, 0x27, 0x10, 0x4C, 0x22, 0x52, 0x19, 0xC5, 0x8C, 0x07, 0x01, 0x4A,
- 0xEF, 0xEA, 0x8F, 0x04, 0x26, 0x8E, 0x4B, 0x05, 0xDD, 0x23, 0xF0, 0x88, 0xFF, 0xFE, 0x03, 0x96,
- 0xF2, 0xD7, 0x40, 0x92, 0x6A, 0x61, 0xE7, 0x82, 0xD2, 0xC1, 0xEE, 0x9E, 0xB8, 0x67, 0x3B, 0xC1,
- 0x46, 0xDE, 0xB8, 0x3D, 0xCD, 0xC4, 0xFE, 0x10, 0x07, 0x39, 0xC6, 0x44, 0x5E, 0x38, 0x27, 0xF7,
- 0x67, 0x7A, 0x97, 0x04, 0xD8, 0x3F, 0xCD, 0x17, 0x0F, 0xC9, 0x15, 0x19, 0x9D, 0x83, 0xBC, 0xAE,
- 0x82, 0xE4, 0x88, 0x3B, 0x3A, 0x16, 0x7C, 0x64, 0xED, 0xF1, 0xC5, 0x0B, 0xBD, 0x5F, 0xFE, 0xAA,
- 0xF6, 0xFE, 0xF6, 0x9B, 0xC0, 0x7C, 0x81, 0x75, 0x0B, 0x17, 0x6C, 0xDC, 0xD7, 0x5B, 0x86, 0x6E,
- 0xC3, 0xE1, 0x56, 0x8E, 0x6A, 0x95, 0x07, 0x79, 0x6E, 0xE4, 0x81, 0x84, 0x18, 0x16, 0x1C, 0x16,
- 0x37, 0x70, 0xCE, 0x9E, 0x3A, 0x9E, 0xC3, 0xA5, 0x11, 0x4D, 0x4D, 0xF0, 0xC1, 0x87, 0x1C, 0xDB,
- 0x09, 0x3A, 0x58, 0x7B, 0xEC, 0x9B, 0x06, 0x9D, 0x66, 0x84, 0xBE, 0x41, 0x53, 0x01, 0x2D, 0x37,
- 0x15, 0x6B, 0x8F, 0x2E, 0xA6, 0xD6, 0xC3, 0x00, 0xC1, 0xB7, 0x26, 0x3A, 0xC7, 0x0E, 0x0B, 0x93,
- 0xEE, 0x5B, 0xED, 0xC8, 0x88, 0x66, 0x7D, 0x13, 0x8E, 0xEC, 0x1E, 0x58, 0x74, 0x9A, 0xCF, 0x0F,
- 0xA9, 0x7E, 0x18, 0xF3, 0xBB, 0x59, 0xD0, 0x31, 0x9A, 0x0F, 0x1E, 0x31, 0x0C, 0x8B, 0xF4, 0xCA,
- 0xE1, 0xB2, 0xA4, 0x3A, 0x0C, 0x95, 0x8F, 0x8A, 0xA5, 0x45, 0x30, 0x15, 0xB8, 0xF1, 0x16, 0x6F,
- 0x3A, 0x9B, 0x27, 0xDC, 0xF9, 0x9C, 0x04, 0xFD, 0x38, 0xAD, 0xBC, 0xC4, 0x3E, 0x40, 0x61, 0xF6,
- 0xDB, 0x73, 0xA5, 0x24, 0x5F, 0xC9, 0xE4, 0x4F, 0xC9, 0x73, 0x94, 0x27, 0x43, 0x76, 0x61, 0xB3,
- 0xA7, 0xE9, 0x95, 0x3B, 0x67, 0xB1, 0x91, 0xE2, 0x50, 0x67, 0x9C, 0x88, 0xBA, 0x75, 0x97, 0xC2,
- 0x15, 0x6A, 0xBC, 0x35, 0x65, 0xC3, 0xBE, 0xFD, 0x78, 0xFD, 0xEA, 0x83, 0x7A, 0x62, 0xC3, 0xAC,
- 0x04, 0xC4, 0x8B, 0x28, 0x64, 0x2B, 0x17, 0xFA, 0x8B, 0xF7, 0xDF, 0x5D, 0x5F, 0xFF, 0xF3, 0xDD,
- 0x87, 0x97, 0xF5, 0x43, 0x28, 0x0E, 0xB9, 0xFE, 0xF8, 0xFD, 0x4F, 0x6F, 0x6E, 0xA6, 0x5B, 0xCC,
- 0x2A, 0x83, 0x3A, 0xC4, 0x0F, 0x1E, 0x38, 0xB9, 0xC1, 0xB1, 0x2D, 0x50, 0x8E, 0x6D, 0x2F, 0x5E,
- 0x00, 0x84, 0x3F, 0x83, 0x26, 0xE9, 0x9A, 0x65, 0x0B, 0xD8, 0x1B, 0x81, 0x7A, 0x76, 0x8A, 0x58,
- 0xD8, 0x08, 0xE4, 0xD9, 0x09, 0x95, 0xAA, 0x16, 0xB0, 0x21, 0x24, 0x39, 0x77, 0x41, 0xE4, 0xC7,
- 0x77, 0x35, 0xD1, 0xE2, 0xF8, 0xED, 0x89, 0x73, 0xD5, 0x15, 0xD7, 0xD3, 0x57, 0x5D, 0xF1, 0x83,
- 0x19, 0xF6, 0xFF, 0xCC, 0xF9, 0x7F, 0xE5, 0xCC, 0x32, 0xCA, 0x3A, 0x47, 0x00, 0x00
+#ifndef __nofile_h
+#define __nofile_h
+/* Generated by bin2c, do not edit manually */
+
+/* Contents of file tool.html.gz */
+#define PAGE_NOFILES_SIZE 5991
+const char PAGE_NOFILES[5991] PROGMEM = {
+ 0x1F, 0x8B, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0A, 0xED, 0x5C, 0x7B, 0x73, 0xDB, 0xC6,
+ 0xAE, 0xFF, 0x2A, 0x2C, 0x3B, 0x8D, 0xA4, 0x6B, 0x52, 0xE6, 0x4B, 0x12, 0x25, 0x59, 0xCA, 0x69,
+ 0x9B, 0xA4, 0xCD, 0x9D, 0xA4, 0xC9, 0xC4, 0xC9, 0xE9, 0x9D, 0x69, 0x3A, 0x19, 0x8A, 0x5C, 0x59,
+ 0x3C, 0xA1, 0x48, 0x89, 0x5C, 0xC5, 0x76, 0x5C, 0x7D, 0xF7, 0x0B, 0x60, 0x97, 0x4F, 0x3D, 0xFC,
+ 0x48, 0x7A, 0xDA, 0x3F, 0x3A, 0x8E, 0x45, 0x6A, 0x77, 0x81, 0xC5, 0x62, 0x81, 0x1F, 0xB0, 0x20,
+ 0x9D, 0xB3, 0x05, 0x5F, 0x46, 0xD3, 0xB3, 0x05, 0xF3, 0x82, 0xE9, 0x59, 0xC6, 0xAF, 0x23, 0x36,
+ 0xC5, 0x96, 0x9B, 0x79, 0x12, 0x73, 0x7D, 0xEE, 0x2D, 0xC3, 0xE8, 0x7A, 0x94, 0x79, 0x71, 0xA6,
+ 0x67, 0x2C, 0x0D, 0xE7, 0x63, 0x7D, 0x99, 0xE9, 0x9C, 0x5D, 0x71, 0x3D, 0x0B, 0x3F, 0x33, 0xDD,
+ 0x0B, 0xFE, 0xB3, 0xC9, 0xF8, 0xC8, 0x34, 0x8C, 0xEF, 0xC6, 0xFA, 0x25, 0x9B, 0x7D, 0x0C, 0xF9,
+ 0x81, 0x5E, 0x62, 0x87, 0xAD, 0xF0, 0x75, 0x75, 0xB5, 0x9D, 0x25, 0xC1, 0x75, 0x6D, 0x0A, 0xF5,
+ 0x67, 0x16, 0x7D, 0x62, 0x3C, 0xF4, 0x3D, 0xE5, 0x17, 0xB6, 0x61, 0xAA, 0x56, 0x7C, 0xD7, 0xBE,
+ 0x4F, 0x43, 0x2F, 0xD2, 0x2A, 0x32, 0x54, 0x78, 0x39, 0xAB, 0xAB, 0x71, 0x14, 0xC6, 0x4C, 0x5F,
+ 0xB0, 0xF0, 0x62, 0x01, 0x73, 0x75, 0x1D, 0xCB, 0xED, 0x0D, 0x4C, 0xC7, 0x1E, 0xFB, 0x49, 0x94,
+ 0xA4, 0xA3, 0x6F, 0x6D, 0xDB, 0x1E, 0xCF, 0x3C, 0xFF, 0xE3, 0x45, 0x9A, 0x6C, 0xE2, 0x40, 0x97,
+ 0xAD, 0xF3, 0xF9, 0x7C, 0xDB, 0xF5, 0x81, 0x8F, 0x07, 0xC4, 0xE9, 0xCD, 0xD2, 0x4B, 0x2F, 0xC2,
+ 0x58, 0x4F, 0x89, 0x87, 0xB7, 0xE1, 0xC9, 0x58, 0xB6, 0x44, 0x6C, 0x2E, 0x1B, 0x56, 0x5E, 0x10,
+ 0x84, 0xF1, 0x85, 0x68, 0x31, 0x7B, 0x30, 0x6F, 0xDE, 0x22, 0xA8, 0xB0, 0x69, 0xCB, 0xBD, 0x59,
+ 0xC4, 0x6E, 0x66, 0x49, 0x1A, 0xB0, 0x74, 0x64, 0x8C, 0xC5, 0x8D, 0x9E, 0xAD, 0x3C, 0x1F, 0x06,
+ 0x42, 0xC3, 0xD2, 0xBB, 0xD2, 0x2F, 0xC3, 0x80, 0x2F, 0x48, 0x29, 0xDB, 0x2E, 0x8D, 0xD7, 0xC5,
+ 0x30, 0x16, 0xDC, 0x94, 0x5D, 0x92, 0x74, 0x64, 0xAE, 0xAE, 0x94, 0x2C, 0x89, 0xC2, 0x40, 0xF9,
+ 0x36, 0x08, 0x82, 0x5C, 0xAA, 0x59, 0xC2, 0x79, 0xB2, 0x1C, 0x59, 0xA8, 0x49, 0x0E, 0x64, 0x8B,
+ 0x90, 0x33, 0x9A, 0x85, 0x8D, 0xE2, 0xE4, 0x32, 0xF5, 0x56, 0xB9, 0x6C, 0x23, 0x6B, 0xB9, 0xDC,
+ 0xF2, 0xC5, 0x0D, 0xED, 0x89, 0x17, 0x85, 0x17, 0xF1, 0x08, 0xE5, 0x97, 0x13, 0x4F, 0x39, 0x6E,
+ 0xC3, 0x94, 0xA7, 0x53, 0x1E, 0x68, 0x3B, 0x4D, 0x8B, 0xA2, 0x89, 0x6C, 0xA3, 0x3E, 0xAA, 0x68,
+ 0x5A, 0xDC, 0xE4, 0x53, 0xB9, 0x87, 0xB7, 0xE2, 0x13, 0x4B, 0x71, 0x27, 0x23, 0x29, 0x02, 0x4F,
+ 0x56, 0xB9, 0x6A, 0xE0, 0xB6, 0xB1, 0xC6, 0xA6, 0x52, 0xF6, 0x08, 0xB9, 0xAF, 0x6F, 0xB1, 0xDB,
+ 0xB7, 0x23, 0xF6, 0xBE, 0xBE, 0xC5, 0xCD, 0x5E, 0x4D, 0xEF, 0x4A, 0x71, 0x2F, 0x6E, 0x72, 0x87,
+ 0xE4, 0x5E, 0x5B, 0xB0, 0x4D, 0x92, 0x26, 0xE3, 0x69, 0xB8, 0xAA, 0x08, 0x3E, 0x8A, 0xF9, 0x42,
+ 0x4F, 0xE6, 0x3A, 0xBF, 0x5E, 0xB1, 0x76, 0x12, 0x04, 0x9D, 0x9B, 0x3D, 0xB6, 0x3A, 0xC4, 0x9F,
+ 0xED, 0xBF, 0x96, 0x2C, 0x08, 0x3D, 0xA5, 0xBD, 0x04, 0x03, 0x10, 0x7C, 0x07, 0x7D, 0xD0, 0x79,
+ 0xE7, 0xA6, 0x62, 0xC7, 0xB2, 0xBD, 0x87, 0x86, 0xB1, 0x87, 0x60, 0x38, 0xB4, 0xF6, 0x12, 0x0C,
+ 0x07, 0x07, 0x08, 0x4C, 0xCB, 0x30, 0xF6, 0x52, 0x98, 0xA6, 0x20, 0xE9, 0xC6, 0xDE, 0xA7, 0xAA,
+ 0xD9, 0x4A, 0x91, 0x7D, 0xDF, 0x6F, 0x38, 0x8C, 0xD1, 0x74, 0x17, 0x03, 0x8C, 0x25, 0x03, 0x37,
+ 0x46, 0xC4, 0x01, 0xAB, 0x8D, 0xD9, 0x1E, 0x2F, 0x25, 0xDF, 0x15, 0x0A, 0x4D, 0xBD, 0x20, 0xDC,
+ 0x64, 0xA3, 0x3E, 0x18, 0xD9, 0x1E, 0x27, 0xF0, 0x6E, 0x56, 0x49, 0x16, 0xF2, 0x30, 0x89, 0x47,
+ 0x29, 0x8B, 0x3C, 0x1E, 0x7E, 0x62, 0xE3, 0x20, 0xCC, 0x56, 0x91, 0x77, 0x3D, 0x9A, 0x45, 0x89,
+ 0xFF, 0xB1, 0x70, 0x08, 0x44, 0x1F, 0x85, 0xDC, 0x97, 0x7C, 0x22, 0x60, 0x7E, 0x92, 0x7A, 0x44,
+ 0x48, 0x32, 0x94, 0xF2, 0x6F, 0xBB, 0x9E, 0x8F, 0x7C, 0x6E, 0x4A, 0xC4, 0xD8, 0x23, 0xA1, 0x61,
+ 0x18, 0xF9, 0x40, 0xC5, 0xD3, 0xBC, 0xD1, 0x3C, 0xF1, 0x37, 0x19, 0x5C, 0x17, 0x09, 0xD8, 0xFC,
+ 0x4D, 0x15, 0x6C, 0x56, 0x5E, 0xCC, 0xA2, 0x9B, 0x5D, 0xD9, 0xF7, 0x83, 0xD3, 0x01, 0xFF, 0xAF,
+ 0x2B, 0x03, 0xC1, 0x2F, 0x47, 0xDD, 0x59, 0x72, 0xA5, 0x67, 0x0B, 0x2F, 0x48, 0x2E, 0x47, 0x86,
+ 0x82, 0x54, 0xF8, 0x9B, 0x5E, 0xCC, 0xBC, 0xB6, 0xA1, 0xE1, 0x4F, 0xD7, 0xE8, 0x75, 0xC6, 0x77,
+ 0x19, 0x24, 0x25, 0xD5, 0x09, 0xA1, 0x0B, 0xAD, 0x21, 0xB8, 0xC9, 0x0E, 0x34, 0x76, 0x68, 0xBB,
+ 0xD9, 0xD5, 0xE8, 0x71, 0xC4, 0xED, 0xE1, 0x4F, 0xBE, 0x02, 0xD9, 0x58, 0x59, 0x13, 0x20, 0x81,
+ 0x30, 0x8D, 0x7C, 0x75, 0x36, 0xEA, 0xA6, 0xEC, 0x43, 0x33, 0xDA, 0xD3, 0x25, 0x35, 0xD9, 0xF0,
+ 0xDE, 0xC8, 0x9B, 0x81, 0xB2, 0x73, 0x0B, 0x08, 0x63, 0xC2, 0x25, 0x61, 0x08, 0x75, 0x08, 0x6E,
+ 0x18, 0x13, 0xAE, 0x82, 0xA2, 0xCB, 0xA5, 0xC0, 0xB0, 0x01, 0x6E, 0x2F, 0x19, 0x4A, 0x18, 0xCF,
+ 0x93, 0x7C, 0x3F, 0x6D, 0x30, 0x7E, 0x17, 0xB6, 0x74, 0x9E, 0xA4, 0x4B, 0x1D, 0x3D, 0x23, 0x4D,
+ 0xCA, 0xC9, 0xC4, 0x2C, 0x62, 0x06, 0x0A, 0x1C, 0x12, 0x0E, 0x6D, 0xA7, 0x0C, 0x19, 0x68, 0xC6,
+ 0x8A, 0x69, 0xE5, 0x93, 0xDD, 0x35, 0x94, 0xF5, 0x7A, 0xBD, 0x43, 0xD6, 0x52, 0xB6, 0x86, 0x4B,
+ 0xEF, 0x22, 0x77, 0xA8, 0x1D, 0x1B, 0x42, 0xBF, 0xBC, 0x93, 0x0D, 0x85, 0x71, 0xC6, 0xB8, 0x72,
+ 0xC0, 0x48, 0x06, 0x75, 0x53, 0xBA, 0x75, 0xAC, 0x9E, 0xE8, 0x3C, 0x85, 0xF0, 0x2D, 0x1C, 0xB4,
+ 0x6A, 0x01, 0x0A, 0xF3, 0x32, 0x06, 0xBA, 0xD5, 0x93, 0x0D, 0x57, 0xBA, 0x66, 0x2F, 0xD3, 0x4A,
+ 0xBE, 0x3B, 0x7D, 0x75, 0x85, 0x0B, 0x57, 0xBB, 0xA9, 0xDB, 0x53, 0xBF, 0xEF, 0xCD, 0xD9, 0x70,
+ 0x0C, 0x14, 0xA8, 0x49, 0x08, 0xB8, 0x0F, 0x58, 0x9A, 0x66, 0x40, 0xA7, 0x9B, 0x77, 0x98, 0x86,
+ 0xA5, 0x99, 0x83, 0x9E, 0x66, 0xD9, 0xB6, 0xD6, 0xED, 0x77, 0xA4, 0x0C, 0xA8, 0xEB, 0x55, 0xC3,
+ 0x99, 0x85, 0x8F, 0xCC, 0x78, 0x7C, 0xC8, 0xEE, 0xAA, 0x83, 0x8D, 0x9A, 0x99, 0x39, 0x86, 0x31,
+ 0xAE, 0x84, 0x68, 0x9F, 0xC5, 0x9C, 0xA5, 0xCD, 0xA8, 0xB9, 0x0C, 0x83, 0x20, 0x62, 0x22, 0x01,
+ 0x4B, 0x36, 0xFE, 0x42, 0x47, 0xD8, 0x01, 0x7D, 0x2E, 0xBD, 0x38, 0x5C, 0x6D, 0x22, 0x02, 0xB1,
+ 0xF1, 0xE1, 0x1E, 0x7F, 0x93, 0x66, 0xA0, 0xA2, 0x55, 0x12, 0x12, 0xF3, 0x3B, 0x5A, 0x0C, 0xED,
+ 0xDB, 0xCA, 0x4B, 0x41, 0xA2, 0xF1, 0x91, 0x34, 0xE3, 0x9E, 0xF6, 0xBC, 0xC7, 0x04, 0x97, 0xC9,
+ 0x67, 0x7D, 0x93, 0x61, 0xB2, 0xC4, 0x22, 0xE6, 0x73, 0x21, 0x0E, 0xAE, 0x75, 0xA7, 0xB1, 0xD9,
+ 0x40, 0x3A, 0xD7, 0x57, 0x29, 0x2C, 0x23, 0xBD, 0x3E, 0x8E, 0xD6, 0xB6, 0x3D, 0xF0, 0x66, 0x83,
+ 0x06, 0x06, 0x59, 0xAC, 0x1F, 0x78, 0x4E, 0x8D, 0x8B, 0x44, 0x74, 0xAD, 0xD6, 0x26, 0xA0, 0xBD,
+ 0xD6, 0x44, 0x28, 0x5F, 0x6B, 0x1A, 0xED, 0xA1, 0x1C, 0xED, 0x52, 0xEE, 0xC4, 0x87, 0x3D, 0xC2,
+ 0x5A, 0x6E, 0xDF, 0x18, 0x1A, 0x0D, 0x61, 0x4D, 0xCB, 0x9A, 0x39, 0xC6, 0xD6, 0xF7, 0x56, 0xB8,
+ 0xA9, 0x39, 0x06, 0x53, 0x1A, 0xE5, 0x56, 0x52, 0x52, 0x69, 0x65, 0x6E, 0x09, 0xCA, 0x83, 0xC1,
+ 0x60, 0xBC, 0x93, 0x05, 0x7A, 0x11, 0x98, 0x58, 0x0D, 0xE4, 0xF7, 0x04, 0xD7, 0xE3, 0x46, 0xB1,
+ 0xB3, 0x95, 0x92, 0xAB, 0x9E, 0x6D, 0x7C, 0x9F, 0x65, 0xD9, 0x9E, 0x7C, 0x26, 0x98, 0xCF, 0x8D,
+ 0xC0, 0x6D, 0x46, 0x82, 0x3E, 0x1B, 0xFA, 0xFD, 0x22, 0x84, 0xF8, 0x83, 0xBE, 0x1D, 0xE4, 0xAC,
+ 0x02, 0x2F, 0xBE, 0x00, 0x6D, 0xED, 0x81, 0x3E, 0x2B, 0x60, 0x01, 0x6B, 0x70, 0x62, 0x33, 0xDF,
+ 0x0F, 0xCC, 0x9C, 0x93, 0x37, 0x74, 0x1C, 0xC7, 0xDA, 0x76, 0x17, 0x5E, 0xA6, 0xB3, 0x34, 0x05,
+ 0xC8, 0xA9, 0xC3, 0x76, 0x9D, 0x56, 0x8C, 0xFE, 0xB3, 0x01, 0xF1, 0xA0, 0x34, 0x7B, 0x31, 0xCD,
+ 0x75, 0xEC, 0x9E, 0xED, 0x3C, 0x18, 0xC9, 0xD0, 0x35, 0xBF, 0xF5, 0x99, 0xEB, 0xB8, 0xF6, 0x7D,
+ 0x64, 0x6C, 0xD2, 0xD6, 0x64, 0x96, 0xE2, 0xEA, 0x22, 0xCC, 0xEE, 0xD1, 0xB4, 0xDC, 0xFC, 0xA3,
+ 0xBA, 0x16, 0x7B, 0xFC, 0xDF, 0xD1, 0xF5, 0x5E, 0x79, 0xF6, 0x6A, 0xDB, 0x9A, 0xF5, 0x1C, 0xCB,
+ 0xFF, 0x32, 0x6D, 0xF7, 0x07, 0x33, 0xB3, 0xEF, 0x3E, 0x4C, 0xDB, 0x82, 0xB6, 0x21, 0xF5, 0x5E,
+ 0x7D, 0xE7, 0x3E, 0x82, 0xB0, 0x22, 0x3D, 0xE4, 0x28, 0x9E, 0x04, 0x43, 0x30, 0xA3, 0x79, 0xD3,
+ 0xED, 0x1C, 0x7B, 0x6E, 0x7B, 0x55, 0x26, 0x35, 0xEC, 0x93, 0x4D, 0x15, 0x00, 0x93, 0x2D, 0x15,
+ 0xE4, 0x13, 0x2D, 0xA3, 0x5D, 0xB2, 0xD1, 0x0E, 0xD9, 0x5D, 0x60, 0xCF, 0x1F, 0xDA, 0x86, 0xE5,
+ 0x37, 0xC4, 0x1C, 0xF4, 0x4D, 0xDF, 0x1C, 0x92, 0x98, 0xE1, 0xF2, 0xE2, 0x46, 0xC6, 0xB2, 0x85,
+ 0x17, 0x37, 0x53, 0xE2, 0xFE, 0x3E, 0xBC, 0x12, 0x09, 0xB8, 0xA0, 0x95, 0x22, 0xEC, 0xC1, 0x12,
+ 0x03, 0x7F, 0x1A, 0xF3, 0x1A, 0x20, 0xE2, 0x5F, 0xEE, 0x78, 0x20, 0x38, 0x49, 0x7A, 0x7C, 0xE5,
+ 0xB6, 0x21, 0xD3, 0x8F, 0x7C, 0xEC, 0x6D, 0x2B, 0xFD, 0xEB, 0xD7, 0x15, 0x81, 0x68, 0x90, 0x21,
+ 0x7C, 0xCC, 0x0D, 0x82, 0x0E, 0x53, 0x45, 0xEB, 0x48, 0xDA, 0xD8, 0x3C, 0x8C, 0x18, 0x7D, 0x17,
+ 0xEE, 0x5A, 0x8C, 0x1D, 0x3A, 0xB0, 0xAB, 0x61, 0xBC, 0xDA, 0xF0, 0xDF, 0xF0, 0xF4, 0x3C, 0xC1,
+ 0x71, 0xBF, 0x8F, 0x46, 0xF9, 0xB2, 0xF0, 0xAB, 0xBE, 0x59, 0x45, 0x89, 0x17, 0xE8, 0xB3, 0x0D,
+ 0x44, 0xB3, 0x7F, 0xF2, 0xB2, 0xFF, 0x6E, 0x5E, 0x36, 0x3E, 0xEA, 0xE6, 0xBD, 0x99, 0x6F, 0xEC,
+ 0x84, 0x6E, 0xA7, 0x3F, 0x73, 0x03, 0xEF, 0x5E, 0x9B, 0x2A, 0xAD, 0xE2, 0x9F, 0xAD, 0xFD, 0xFB,
+ 0x6C, 0xAD, 0x6D, 0xCE, 0x8C, 0xA0, 0x79, 0xD2, 0x37, 0x67, 0xFD, 0xC0, 0xED, 0xDD, 0x6F, 0x6B,
+ 0x05, 0x80, 0xFD, 0xB3, 0xB5, 0x7F, 0xF3, 0xAD, 0xB5, 0xFA, 0x43, 0x6F, 0xE6, 0x6F, 0x0B, 0xA0,
+ 0xAE, 0xC1, 0x79, 0x1D, 0xBD, 0x2B, 0x68, 0x5E, 0x4B, 0x05, 0x24, 0x9A, 0xCB, 0x0A, 0xD3, 0x3C,
+ 0x49, 0x40, 0xA9, 0x47, 0x0A, 0x4C, 0x54, 0x7F, 0x79, 0x58, 0x8D, 0x69, 0xA7, 0xCE, 0x8B, 0x06,
+ 0x87, 0x61, 0x52, 0xEC, 0x95, 0x53, 0x49, 0x1A, 0x6C, 0xFC, 0xA9, 0x92, 0x56, 0x3A, 0x6D, 0x67,
+ 0xE8, 0x06, 0xB3, 0x86, 0xEA, 0x7B, 0xC6, 0x77, 0xE3, 0xBC, 0x6E, 0x0A, 0xD2, 0xE6, 0x3B, 0x85,
+ 0xF7, 0x60, 0x3B, 0x4B, 0x51, 0x66, 0xCC, 0x56, 0x61, 0xAC, 0x58, 0x99, 0x82, 0x9B, 0xE9, 0xA5,
+ 0x4A, 0x18, 0xCF, 0xC3, 0x18, 0x2C, 0x61, 0xFB, 0xAF, 0x8F, 0xEC, 0x7A, 0x9E, 0x7A, 0x4B, 0x96,
+ 0x29, 0x38, 0xE4, 0xC6, 0xF8, 0xEE, 0x86, 0xCC, 0x05, 0x33, 0xD6, 0x51, 0x9A, 0x70, 0x8F, 0xB3,
+ 0xB6, 0xD1, 0xD9, 0x62, 0xD1, 0x6A, 0xB7, 0xC3, 0xEE, 0x03, 0x98, 0x5E, 0x74, 0xB6, 0x7F, 0x89,
+ 0x06, 0x97, 0x49, 0xE0, 0x95, 0xF5, 0x2F, 0x32, 0xA2, 0xA2, 0x1A, 0x3B, 0x0F, 0xAF, 0x58, 0x30,
+ 0xFE, 0xAC, 0x87, 0x71, 0xC0, 0xAE, 0xB0, 0xE2, 0x66, 0x94, 0x85, 0x60, 0xE2, 0x85, 0xF5, 0xE5,
+ 0x31, 0x95, 0x88, 0xC1, 0x69, 0xA1, 0xC1, 0x18, 0x57, 0x8A, 0x73, 0xB9, 0x06, 0xF1, 0x1E, 0xCD,
+ 0x65, 0x1E, 0x41, 0xA2, 0x41, 0x45, 0xB5, 0xBD, 0x95, 0xD8, 0xDD, 0xD6, 0x6A, 0x12, 0xE2, 0x74,
+ 0xA4, 0xA8, 0x94, 0xFF, 0x83, 0x0B, 0xDE, 0x94, 0x6B, 0xAA, 0x55, 0x17, 0x4D, 0xA3, 0x5E, 0x79,
+ 0xAC, 0x55, 0x25, 0xAB, 0x9D, 0xB2, 0xC8, 0x7F, 0x88, 0x56, 0x76, 0x1F, 0x22, 0xC7, 0xC7, 0x02,
+ 0x85, 0x39, 0xE5, 0x85, 0x89, 0x4A, 0x7D, 0x16, 0x4B, 0x50, 0x26, 0x42, 0x81, 0x51, 0xCB, 0xA5,
+ 0xAC, 0xCE, 0x78, 0xB7, 0xD6, 0x2D, 0xE0, 0xB0, 0xF6, 0xA0, 0x6A, 0xB4, 0x47, 0x1D, 0xDF, 0xCE,
+ 0x19, 0xFE, 0xE4, 0x7A, 0xC0, 0x4A, 0x6E, 0xC5, 0x4A, 0x2C, 0x39, 0xE1, 0xB8, 0x48, 0x7E, 0xF1,
+ 0x67, 0x1F, 0x17, 0x0B, 0x7F, 0x0E, 0x15, 0x67, 0xEF, 0xA9, 0xBE, 0x5A, 0x79, 0x72, 0x8E, 0x3F,
+ 0xB9, 0x78, 0xF5, 0x0A, 0xB4, 0x21, 0xA5, 0xCB, 0x7B, 0x9B, 0x26, 0xDE, 0xCF, 0xA5, 0x97, 0x46,
+ 0xE3, 0x74, 0x7B, 0x6C, 0x79, 0xFF, 0xA5, 0xEC, 0x8A, 0xF3, 0x85, 0xBB, 0x7D, 0xE4, 0xB9, 0x4D,
+ 0xDD, 0x1A, 0x45, 0x5F, 0xCF, 0xAD, 0x3E, 0x8A, 0xC9, 0xFC, 0x94, 0xB1, 0x58, 0x81, 0x6C, 0x1F,
+ 0xE8, 0x8B, 0xC2, 0xF5, 0xA0, 0x3F, 0x38, 0x48, 0x4F, 0xCF, 0x15, 0xB7, 0x67, 0xA7, 0xE2, 0x49,
+ 0xEE, 0xD9, 0xA9, 0x78, 0xAE, 0x4B, 0x4F, 0x9B, 0xCE, 0x82, 0xF0, 0x93, 0xE2, 0x47, 0x5E, 0x96,
+ 0x4D, 0x54, 0x82, 0x09, 0x75, 0x7A, 0x46, 0x4F, 0xA5, 0x14, 0x22, 0x9D, 0xA8, 0x48, 0x8B, 0x6D,
+ 0x29, 0xFC, 0x02, 0x91, 0x97, 0x0F, 0x16, 0x27, 0x27, 0x55, 0x59, 0xA4, 0x6C, 0x3E, 0x51, 0x17,
+ 0x9C, 0xAF, 0xB2, 0xD1, 0xE9, 0xE9, 0xE5, 0xE5, 0x65, 0xF7, 0x22, 0xE4, 0x8B, 0xCD, 0x0C, 0xCE,
+ 0xA7, 0xCB, 0xD3, 0x68, 0xE3, 0xEB, 0xE2, 0xEB, 0xE9, 0xD3, 0xF3, 0xD7, 0xF6, 0x93, 0x53, 0x0E,
+ 0xA2, 0x9F, 0x5A, 0x5D, 0x53, 0x55, 0x38, 0x58, 0x27, 0xE3, 0x13, 0xF5, 0x03, 0xE4, 0xF6, 0xF1,
+ 0x47, 0x98, 0x21, 0xFB, 0x74, 0x51, 0xCC, 0xC9, 0x96, 0xC0, 0x98, 0xB6, 0x4C, 0x7E, 0xF9, 0x14,
+ 0xB2, 0xCB, 0x1F, 0x92, 0xAB, 0x89, 0x8A, 0x07, 0x06, 0xD3, 0x36, 0xE0, 0xC3, 0x32, 0x0C, 0xA0,
+ 0xBA, 0x50, 0x0A, 0xDC, 0x9B, 0xA8, 0x74, 0x1B, 0x21, 0xF6, 0xF5, 0x0C, 0x0D, 0x07, 0x74, 0x40,
+ 0x59, 0x5E, 0xC4, 0xDA, 0xA6, 0xA6, 0xE8, 0x66, 0x07, 0x86, 0xAF, 0x3C, 0xBE, 0x50, 0x82, 0x89,
+ 0xFA, 0xB2, 0x8F, 0x2C, 0xCC, 0x81, 0xB3, 0xB6, 0x6D, 0xE0, 0x38, 0x70, 0x14, 0xBD, 0x17, 0xD9,
+ 0x2E, 0x8C, 0xEA, 0x59, 0x51, 0x0F, 0x2E, 0x6B, 0x67, 0x08, 0x9F, 0x8E, 0x32, 0x84, 0x1E, 0x7B,
+ 0x88, 0x4D, 0x56, 0x64, 0xDA, 0x8E, 0xE2, 0x1A, 0xEB, 0xBE, 0xA9, 0xE8, 0x8E, 0xAB, 0x98, 0x06,
+ 0x74, 0x99, 0x46, 0x2F, 0xD2, 0x5D, 0x03, 0x6E, 0x6C, 0x27, 0xB2, 0x81, 0xC9, 0xDA, 0x82, 0xA1,
+ 0x8E, 0xA3, 0xD8, 0x40, 0x3E, 0xB4, 0x23, 0x18, 0xDA, 0x8F, 0x80, 0x27, 0x30, 0x71, 0xD7, 0xD8,
+ 0x63, 0x2B, 0xF0, 0x39, 0xB0, 0xD7, 0x40, 0x62, 0xE3, 0xA4, 0xF0, 0xC5, 0x89, 0x74, 0x39, 0x02,
+ 0x6E, 0x60, 0xFC, 0x1A, 0xBE, 0xC2, 0xC8, 0x21, 0x4E, 0x4C, 0x4C, 0x74, 0x64, 0x1C, 0xC9, 0x59,
+ 0xD6, 0x38, 0xB7, 0x8E, 0x32, 0x94, 0x02, 0x90, 0x60, 0x66, 0x84, 0xDC, 0xEC, 0x35, 0xCE, 0xAE,
+ 0xA3, 0x14, 0x52, 0x74, 0x9D, 0x64, 0xD7, 0xC5, 0xE2, 0x4C, 0x65, 0x8D, 0x32, 0x88, 0x79, 0x51,
+ 0x5C, 0x9D, 0xD6, 0x8F, 0x5F, 0x7A, 0x34, 0x06, 0x86, 0x20, 0x85, 0xB5, 0x46, 0x01, 0x60, 0xFD,
+ 0xC8, 0x45, 0x30, 0xB1, 0xC5, 0x3C, 0xBA, 0x6B, 0xAE, 0xF5, 0xBE, 0xA1, 0xA0, 0x14, 0x28, 0x01,
+ 0x0A, 0xE0, 0xE2, 0x9E, 0x38, 0x28, 0x27, 0x30, 0x84, 0xA9, 0x1D, 0x14, 0xC4, 0x55, 0x50, 0x74,
+ 0x4B, 0xE9, 0x47, 0x34, 0x2F, 0xAC, 0x5F, 0xEF, 0x2B, 0x0E, 0xAC, 0xB3, 0x0F, 0xEA, 0x86, 0xF5,
+ 0xC3, 0xC4, 0x70, 0x07, 0x2A, 0xA2, 0xCE, 0x08, 0x06, 0xAE, 0x4D, 0x1B, 0xD9, 0x0A, 0x4A, 0x5B,
+ 0x11, 0x9A, 0xC5, 0x25, 0x3B, 0x03, 0x05, 0x16, 0x0C, 0x33, 0xD1, 0x6C, 0x26, 0x50, 0x42, 0x4F,
+ 0x84, 0x52, 0xC2, 0x4C, 0x30, 0x9F, 0x90, 0x11, 0x7A, 0x23, 0x5A, 0x01, 0x34, 0xA3, 0x9A, 0x71,
+ 0x4D, 0x9F, 0x69, 0xA3, 0x5D, 0x50, 0xE8, 0x5A, 0x77, 0x87, 0xB8, 0x52, 0x52, 0x75, 0xDF, 0xE6,
+ 0xF0, 0x4B, 0x0A, 0xE9, 0xF6, 0x78, 0x79, 0x97, 0x77, 0xE2, 0x15, 0x2E, 0xD0, 0x21, 0xDA, 0xF5,
+ 0xF2, 0x4E, 0x74, 0x7D, 0x06, 0x5B, 0x3A, 0x45, 0x63, 0x82, 0xCB, 0x05, 0xFC, 0x82, 0xF1, 0x4E,
+ 0x95, 0x33, 0x48, 0xDC, 0xE2, 0xC2, 0x3F, 0xF2, 0x23, 0xAB, 0x3A, 0x7D, 0x16, 0xA6, 0xCB, 0x4B,
+ 0x48, 0xF0, 0x60, 0x18, 0x0C, 0x80, 0xD1, 0x1E, 0xFC, 0xA2, 0x33, 0x7D, 0xB9, 0x43, 0xE9, 0xBF,
+ 0x3E, 0xFD, 0xE1, 0xDD, 0xF3, 0xBF, 0x99, 0x5B, 0x41, 0xDE, 0xB6, 0x76, 0x2D, 0xE4, 0xD8, 0x37,
+ 0xBA, 0x68, 0x7D, 0x16, 0xAA, 0xD6, 0x01, 0xE5, 0xF7, 0x86, 0xDC, 0x34, 0xFB, 0xD8, 0xE6, 0x62,
+ 0xDB, 0xD0, 0xC1, 0xDB, 0x21, 0xEC, 0x80, 0x4B, 0x17, 0xC7, 0x2A, 0xBA, 0xD0, 0xF4, 0x7A, 0x03,
+ 0x52, 0x78, 0x71, 0x87, 0x86, 0x4B, 0x9D, 0x7A, 0xDF, 0x95, 0x84, 0x7A, 0xC1, 0x42, 0xAF, 0x32,
+ 0xD6, 0xF3, 0xD9, 0x60, 0xBB, 0x86, 0x85, 0x08, 0xF2, 0x8B, 0x55, 0x8C, 0xA0, 0x01, 0x44, 0x26,
+ 0xA8, 0x88, 0xD9, 0x30, 0xE7, 0x3F, 0x14, 0x53, 0xE6, 0x0C, 0x15, 0x12, 0x22, 0xBF, 0x92, 0xA8,
+ 0xD4, 0x05, 0xB2, 0x0F, 0x7B, 0x0A, 0xCF, 0x69, 0x2B, 0xFC, 0xE4, 0x14, 0x42, 0x0B, 0x38, 0xEB,
+ 0xE7, 0x97, 0xAE, 0xEB, 0x42, 0xDF, 0x90, 0x5C, 0x1C, 0xBD, 0xDC, 0x04, 0x7B, 0xB5, 0x38, 0x09,
+ 0x48, 0xC8, 0xD1, 0x1B, 0xA0, 0x3D, 0x83, 0x50, 0x43, 0x44, 0x08, 0xD3, 0x42, 0x7F, 0x03, 0xDD,
+ 0x58, 0x30, 0x08, 0x3F, 0xF0, 0x9B, 0xB8, 0xC1, 0x2B, 0xF4, 0xC0, 0xED, 0x1A, 0x27, 0x51, 0x2C,
+ 0x30, 0x50, 0x13, 0xD4, 0xAE, 0x98, 0x43, 0xC5, 0xA1, 0xE9, 0x40, 0xE6, 0x01, 0x2E, 0x1D, 0x46,
+ 0xE8, 0x03, 0x60, 0xD6, 0x47, 0x40, 0xEB, 0x23, 0x57, 0x17, 0x40, 0xC4, 0x44, 0x9B, 0xEF, 0x2B,
+ 0x02, 0x6A, 0x0C, 0xDC, 0x0B, 0xB8, 0x82, 0x88, 0x6B, 0x0B, 0x91, 0x08, 0x1C, 0x75, 0x00, 0xA0,
+ 0x60, 0x72, 0x24, 0x74, 0x2D, 0x3E, 0x14, 0x1B, 0x63, 0xC2, 0xEA, 0x10, 0x3C, 0x5C, 0x5C, 0x9C,
+ 0x6D, 0x93, 0x62, 0x71, 0x32, 0xF9, 0xC5, 0x72, 0xA8, 0x9F, 0xBA, 0x89, 0xC2, 0x45, 0x8F, 0x19,
+ 0x18, 0xE2, 0x0A, 0x1C, 0x07, 0x30, 0xD1, 0xDA, 0x04, 0x4F, 0x06, 0x95, 0x29, 0x4E, 0xAE, 0x57,
+ 0x07, 0x7A, 0xD7, 0xFA, 0x90, 0xF0, 0x18, 0x85, 0x82, 0x95, 0xB8, 0xC3, 0xCF, 0x2F, 0x1D, 0x80,
+ 0x82, 0x81, 0x35, 0x00, 0x54, 0x41, 0x34, 0x91, 0xA8, 0x48, 0xBF, 0xB4, 0xA3, 0x36, 0xCE, 0x42,
+ 0x9B, 0x4F, 0xF4, 0x36, 0x90, 0xE2, 0x4E, 0xE0, 0xB2, 0x4C, 0x40, 0x12, 0x5C, 0x9A, 0xAD, 0xD8,
+ 0x64, 0x27, 0xA6, 0xC9, 0x6D, 0xDC, 0x14, 0x73, 0x10, 0x01, 0x2F, 0xC0, 0x13, 0x98, 0x14, 0xF5,
+ 0x8F, 0x22, 0xA2, 0xE0, 0x20, 0x45, 0x5F, 0xDE, 0x12, 0x7A, 0x22, 0x80, 0x02, 0x58, 0x80, 0x38,
+ 0x30, 0x29, 0x49, 0xAB, 0x5B, 0xA0, 0x6A, 0x83, 0xEB, 0xB6, 0x85, 0xFA, 0xBC, 0x97, 0xF3, 0x3F,
+ 0xC7, 0xB3, 0xE0, 0x1C, 0x0E, 0x74, 0x7F, 0x82, 0xF7, 0x9F, 0x5E, 0x86, 0x1F, 0xC3, 0xBF, 0x87,
+ 0xCF, 0x9B, 0x83, 0xC1, 0x1A, 0xF7, 0xCF, 0x00, 0xCB, 0x03, 0xF5, 0x39, 0x3D, 0x34, 0x11, 0xD7,
+ 0x11, 0x06, 0x08, 0x80, 0x6A, 0xD9, 0x64, 0x78, 0xB8, 0x67, 0x3D, 0xE1, 0x90, 0x0E, 0xD7, 0x2B,
+ 0xB7, 0x95, 0x01, 0x7A, 0x85, 0x4E, 0x2F, 0xB9, 0xD1, 0xAD, 0xB8, 0x13, 0x03, 0xA8, 0x1F, 0xE9,
+ 0x24, 0x19, 0x71, 0x43, 0x66, 0xC5, 0x4D, 0xD9, 0x59, 0x52, 0xE4, 0x5C, 0x3E, 0xBF, 0xEC, 0x81,
+ 0xFF, 0x0C, 0x1D, 0x88, 0x66, 0x16, 0x05, 0x06, 0x70, 0x22, 0xBD, 0x27, 0xB1, 0x5E, 0xB7, 0xD0,
+ 0x25, 0xC0, 0xD0, 0xA5, 0x9D, 0x91, 0x8D, 0x89, 0xB0, 0x21, 0x51, 0x06, 0x6D, 0x10, 0x5D, 0x14,
+ 0xBC, 0xD5, 0xA2, 0xCB, 0xC2, 0xB4, 0xCD, 0xB5, 0x8D, 0x7C, 0x14, 0x30, 0x32, 0xD3, 0x5C, 0xF7,
+ 0xB1, 0xC3, 0x22, 0xD7, 0x77, 0x85, 0x48, 0xEE, 0xDA, 0x42, 0x9D, 0xDB, 0xC4, 0xCB, 0xC4, 0x19,
+ 0x4C, 0xBA, 0xB5, 0x60, 0x0A, 0xE2, 0x05, 0x13, 0x0F, 0x30, 0x2F, 0x80, 0xB5, 0xA2, 0xFD, 0x42,
+ 0xC4, 0x34, 0x29, 0x64, 0x91, 0xA7, 0xA1, 0x92, 0xC8, 0xF2, 0x09, 0x0B, 0x71, 0x52, 0x62, 0xA1,
+ 0xA3, 0xC3, 0x9A, 0x03, 0x54, 0x8A, 0xF0, 0x47, 0x84, 0x39, 0x72, 0x10, 0xE8, 0x03, 0xF9, 0x1D,
+ 0xF4, 0x1C, 0x10, 0x58, 0xA1, 0x46, 0x94, 0x9E, 0x93, 0x50, 0x3A, 0x0C, 0x5F, 0x98, 0x90, 0x89,
+ 0x88, 0x3D, 0x53, 0x5C, 0x6E, 0x93, 0xA4, 0x36, 0x82, 0x86, 0xE3, 0x72, 0x0B, 0xE7, 0x1A, 0xA0,
+ 0x0E, 0x01, 0xD0, 0x0D, 0x10, 0x0F, 0x11, 0x01, 0x36, 0xD8, 0xB5, 0x15, 0x4E, 0x48, 0x01, 0x38,
+ 0x08, 0x1A, 0xC2, 0x51, 0x36, 0xA9, 0xBF, 0x0F, 0x4E, 0xE5, 0x62, 0x0B, 0xE2, 0x0F, 0xC4, 0xDD,
+ 0x01, 0xB0, 0x31, 0x8C, 0x05, 0x48, 0x63, 0x80, 0x04, 0x06, 0x2D, 0x64, 0x50, 0xC8, 0x2F, 0xA0,
+ 0x09, 0x3E, 0x3F, 0xD1, 0x00, 0x5A, 0x8D, 0x52, 0x34, 0xF2, 0x62, 0xE4, 0x02, 0x7B, 0x89, 0x9A,
+ 0x9A, 0xB0, 0x6F, 0x40, 0xAE, 0x0C, 0x94, 0x82, 0xD0, 0x34, 0x68, 0x20, 0x35, 0x49, 0xCC, 0x83,
+ 0xDF, 0x7B, 0xF9, 0xE8, 0xCF, 0x2C, 0x5A, 0xED, 0x71, 0x4F, 0x85, 0xF2, 0xE5, 0x89, 0x5A, 0x39,
+ 0x7C, 0x56, 0x4A, 0x48, 0x94, 0xD4, 0xAB, 0x4A, 0x08, 0x2E, 0xF0, 0xEC, 0xD7, 0x7F, 0x3F, 0x7D,
+ 0x73, 0xFE, 0xFC, 0xD5, 0x2F, 0xEA, 0xF4, 0xDF, 0x66, 0xD7, 0x16, 0xF4, 0xA7, 0x98, 0x32, 0x9F,
+ 0x8A, 0x57, 0xE3, 0xCE, 0x4E, 0x21, 0xCD, 0xDE, 0x9B, 0x6B, 0x8B, 0x42, 0xD4, 0xF4, 0x6C, 0x61,
+ 0x11, 0xA7, 0x97, 0xE7, 0x3F, 0xA1, 0xE0, 0x0B, 0x0B, 0x3E, 0xF2, 0xAE, 0x03, 0xB4, 0x34, 0xFE,
+ 0xFC, 0xF5, 0xF3, 0x67, 0xCF, 0xCE, 0xD5, 0xDD, 0xEE, 0xFC, 0x8D, 0x1C, 0xC8, 0x3E, 0xA0, 0x75,
+ 0xA1, 0x3C, 0x0B, 0x23, 0x96, 0x5D, 0x67, 0x9C, 0x2D, 0x0F, 0xF0, 0xA3, 0x93, 0x15, 0x30, 0xA2,
+ 0x62, 0x9C, 0x42, 0xC5, 0x38, 0x15, 0xEB, 0x32, 0x62, 0x1E, 0x2A, 0xC4, 0x89, 0x8A, 0x90, 0xAA,
+ 0xC4, 0xDE, 0x12, 0x3A, 0x97, 0xD7, 0xD8, 0x98, 0xFD, 0xF6, 0xBB, 0xAA, 0x2C, 0x37, 0x11, 0x0F,
+ 0x57, 0xA8, 0xAA, 0xFC, 0x4E, 0x05, 0x65, 0x0B, 0x4E, 0x25, 0xBE, 0x29, 0x95, 0x67, 0xDD, 0xAA,
+ 0x9C, 0x41, 0x14, 0xF5, 0xC4, 0x1C, 0xB5, 0x3A, 0x9F, 0xAA, 0x24, 0xB1, 0x1F, 0x85, 0xFE, 0x47,
+ 0x58, 0x23, 0x8B, 0x03, 0x9C, 0xAA, 0xDD, 0x19, 0x03, 0x7A, 0x79, 0xD1, 0x06, 0xE8, 0xDE, 0xD1,
+ 0x58, 0x75, 0xFA, 0x28, 0x9E, 0x65, 0xAB, 0xB1, 0xF8, 0x3C, 0x5B, 0xA5, 0xC9, 0x45, 0x8A, 0xCF,
+ 0xC6, 0xE4, 0xBE, 0x7D, 0x0A, 0xB3, 0x70, 0x16, 0x46, 0x21, 0xBF, 0x1E, 0x2D, 0xC2, 0x20, 0x60,
+ 0x71, 0x2E, 0xFA, 0x2A, 0xBD, 0x10, 0x53, 0xD2, 0x0D, 0x9C, 0xA1, 0xE8, 0x98, 0x43, 0x16, 0x23,
+ 0x59, 0xC0, 0xE9, 0x28, 0x15, 0xBF, 0x7B, 0xF6, 0xEC, 0x90, 0xEA, 0xE4, 0x5E, 0x8B, 0xA3, 0x52,
+ 0x0E, 0xC0, 0x74, 0x7A, 0xBA, 0x8F, 0x2A, 0x6A, 0xEB, 0xFE, 0x31, 0x59, 0x2E, 0xE1, 0xA0, 0xD7,
+ 0x6E, 0xE1, 0x7B, 0x71, 0x2D, 0xAD, 0xE5, 0x45, 0x51, 0xAB, 0xA2, 0x86, 0x37, 0x6C, 0x0E, 0xD2,
+ 0x2E, 0xD4, 0xD2, 0x64, 0xAB, 0xB3, 0xA2, 0x9C, 0x05, 0xB7, 0x1F, 0x53, 0x06, 0x68, 0x1E, 0x84,
+ 0x69, 0xBB, 0xA3, 0x36, 0x82, 0x4E, 0x2D, 0x60, 0x38, 0x46, 0x19, 0x2F, 0xF0, 0xBE, 0x16, 0x2E,
+ 0x1C, 0xFC, 0x07, 0xE3, 0x53, 0xB0, 0x03, 0x05, 0xDA, 0x7A, 0xAA, 0x72, 0x8D, 0xBA, 0x53, 0x73,
+ 0x6A, 0xBB, 0x42, 0x6D, 0xC1, 0x7D, 0x0A, 0x83, 0x2C, 0xB8, 0x5C, 0xD3, 0x05, 0x76, 0x31, 0x9A,
+ 0xA8, 0xB2, 0x60, 0xA8, 0x9E, 0x96, 0x7C, 0x70, 0xE8, 0x35, 0xB1, 0xCB, 0xC3, 0x56, 0xAF, 0x12,
+ 0xB5, 0x7A, 0xB7, 0xF2, 0x41, 0xB7, 0x44, 0x3E, 0xA6, 0x10, 0xC8, 0x82, 0x4B, 0x51, 0x26, 0x85,
+ 0x56, 0x57, 0x7E, 0xBD, 0x94, 0x1C, 0x5D, 0xD8, 0x6C, 0xC9, 0x84, 0x2A, 0xAE, 0xEA, 0xF4, 0x04,
+ 0x14, 0x08, 0x3C, 0x24, 0x50, 0x48, 0x17, 0x29, 0xA2, 0x34, 0x2A, 0x12, 0xCD, 0x45, 0x94, 0x05,
+ 0x0B, 0xF5, 0xC9, 0xAF, 0x8D, 0xE1, 0x8D, 0x83, 0x73, 0x4E, 0x8B, 0x58, 0x54, 0x50, 0xE2, 0x8B,
+ 0x63, 0xB9, 0xF1, 0x56, 0xA9, 0x6B, 0x98, 0x21, 0x8E, 0xE1, 0x92, 0x42, 0x7C, 0xA9, 0xBD, 0x2F,
+ 0xAA, 0xE6, 0x76, 0x5E, 0x96, 0x94, 0xD1, 0x08, 0xC5, 0xE1, 0x9E, 0x8C, 0x70, 0x51, 0x35, 0x87,
+ 0xB7, 0x60, 0x65, 0xC0, 0x7B, 0x81, 0xED, 0xD3, 0x5F, 0xC0, 0x0F, 0x8A, 0x2F, 0xE7, 0xA0, 0xA5,
+ 0xFC, 0x4B, 0xCD, 0x80, 0x1A, 0x6D, 0x72, 0x45, 0xD4, 0x2A, 0x25, 0x95, 0x93, 0xA1, 0x03, 0x14,
+ 0x38, 0xF1, 0x01, 0x6D, 0x95, 0xC6, 0x89, 0x0A, 0xC3, 0x71, 0x0C, 0x94, 0x35, 0x1B, 0xE1, 0x8F,
+ 0x19, 0xF7, 0xF8, 0x26, 0x2B, 0x35, 0xBA, 0xF3, 0x79, 0x17, 0x6F, 0x2C, 0x91, 0x4F, 0x9E, 0xBB,
+ 0x94, 0x77, 0xAB, 0x00, 0x6C, 0xFF, 0x16, 0xE0, 0xAB, 0x79, 0xEF, 0x41, 0x1C, 0xBC, 0x3C, 0x88,
+ 0x82, 0x15, 0x7B, 0x79, 0x18, 0xF2, 0x01, 0xEF, 0x1D, 0x0C, 0x10, 0x38, 0xB7, 0x8B, 0x7E, 0xB8,
+ 0x9E, 0xEA, 0x8C, 0xF7, 0x81, 0xBE, 0xF9, 0x65, 0x01, 0x7E, 0x78, 0xBB, 0x1F, 0xFE, 0x0A, 0xCE,
+ 0x14, 0x32, 0x71, 0xB8, 0x9F, 0x6C, 0x30, 0x1E, 0xE1, 0x30, 0x19, 0x29, 0x0F, 0x44, 0xB9, 0x52,
+ 0xCD, 0xC2, 0x67, 0x2E, 0x40, 0x1D, 0xDE, 0x05, 0x2B, 0x8C, 0x9F, 0x2A, 0x54, 0xF5, 0x8D, 0xAB,
+ 0x15, 0xAD, 0xF6, 0x75, 0x89, 0xAA, 0x24, 0xF4, 0x2C, 0xEC, 0xE9, 0x73, 0x58, 0x0E, 0x0F, 0xE7,
+ 0xA1, 0x4F, 0xB5, 0x73, 0x08, 0x96, 0xF6, 0x1E, 0xEB, 0x28, 0xAB, 0x85, 0xAA, 0x58, 0xC3, 0xB4,
+ 0x16, 0xFC, 0x45, 0x37, 0xBA, 0xBC, 0xAA, 0x14, 0xA9, 0xEE, 0xF4, 0x5D, 0x06, 0x6E, 0x24, 0x97,
+ 0xD7, 0x88, 0x5F, 0xD5, 0x77, 0x44, 0xF2, 0x2D, 0x14, 0xE4, 0xC5, 0x22, 0x3F, 0xE0, 0x63, 0x93,
+ 0x0F, 0xA2, 0xB1, 0x96, 0x39, 0x60, 0x05, 0xB6, 0x54, 0xDB, 0x22, 0xBD, 0xBB, 0x40, 0xAF, 0xA1,
+ 0xEF, 0x12, 0xBC, 0xFB, 0x1E, 0x42, 0xAD, 0x24, 0x49, 0x55, 0xB0, 0xBC, 0xED, 0x76, 0xE1, 0x66,
+ 0xFB, 0xF2, 0x8D, 0x6A, 0x6D, 0xB5, 0x91, 0x21, 0xE4, 0x06, 0x7B, 0xC8, 0xD6, 0xCB, 0x60, 0xB6,
+ 0x99, 0x2D, 0x43, 0xFE, 0x86, 0xAD, 0x37, 0x2C, 0xE3, 0x18, 0x82, 0xA4, 0x29, 0x8B, 0xF6, 0xBD,
+ 0x1E, 0x9F, 0xF9, 0x00, 0x73, 0x7C, 0xFA, 0xC9, 0x4B, 0x15, 0x7F, 0x93, 0xE2, 0xF3, 0x31, 0xC4,
+ 0xD0, 0x89, 0x7A, 0xAA, 0x8E, 0xE7, 0x9B, 0x98, 0x9E, 0xBF, 0x81, 0x51, 0x7F, 0x9A, 0x79, 0x10,
+ 0xD2, 0x6E, 0x70, 0x14, 0xB0, 0xAB, 0x78, 0xB1, 0xAA, 0xF1, 0x49, 0x85, 0xAE, 0x9B, 0xAD, 0xC0,
+ 0x1D, 0xDA, 0x40, 0xDD, 0xD1, 0x62, 0x64, 0xA2, 0x85, 0x13, 0x73, 0x0C, 0x1A, 0x6C, 0xB3, 0x13,
+ 0xA4, 0x0B, 0xE4, 0x1A, 0x5A, 0x22, 0x28, 0xB6, 0x94, 0x42, 0xF6, 0xF7, 0x6A, 0x75, 0xFA, 0xD6,
+ 0x69, 0x6B, 0xAC, 0x1C, 0x0E, 0xCD, 0xEF, 0xD5, 0xE9, 0x29, 0x79, 0x86, 0x3A, 0x0E, 0xCF, 0x78,
+ 0x37, 0x62, 0xF1, 0x05, 0x87, 0x1C, 0x78, 0xDC, 0x39, 0x30, 0xCB, 0x81, 0x49, 0xD4, 0x93, 0x76,
+ 0x7C, 0x32, 0xE1, 0xBF, 0x85, 0xBF, 0x9F, 0xA0, 0xC4, 0x27, 0xEA, 0x6D, 0x93, 0xAA, 0x27, 0x62,
+ 0x70, 0xE1, 0xB8, 0x52, 0x0A, 0x2D, 0x3C, 0x39, 0x19, 0xA7, 0x8C, 0x6F, 0xD2, 0x58, 0x21, 0x11,
+ 0xAA, 0x0E, 0xAB, 0x6E, 0x0B, 0x45, 0x82, 0xCD, 0x65, 0x8B, 0x0F, 0x21, 0x18, 0x13, 0x28, 0x53,
+ 0x8C, 0x57, 0xF3, 0xF0, 0xDC, 0xEA, 0x59, 0x2D, 0x08, 0xAB, 0x2D, 0x13, 0x2E, 0x10, 0x88, 0x5B,
+ 0xFD, 0x16, 0x06, 0x62, 0xBC, 0x88, 0xC0, 0xD0, 0xB2, 0x7A, 0xAD, 0x3C, 0x5A, 0xB7, 0x06, 0x2D,
+ 0x69, 0x5F, 0x2D, 0x0C, 0xB0, 0xA3, 0x94, 0x05, 0xE3, 0x96, 0x72, 0x0A, 0x82, 0xEC, 0xB2, 0xDB,
+ 0xCF, 0xC0, 0xAA, 0x33, 0xA0, 0x00, 0xBD, 0xC3, 0xC2, 0x36, 0x04, 0x0B, 0xF7, 0x80, 0x44, 0xFD,
+ 0x41, 0xC9, 0x10, 0xB0, 0xED, 0x76, 0x99, 0xAC, 0x3A, 0x43, 0xD3, 0x10, 0x1C, 0xF1, 0x2A, 0x59,
+ 0xBA, 0x55, 0x96, 0xCE, 0x9D, 0x39, 0x5A, 0xC3, 0xBD, 0x1C, 0xEC, 0xBB, 0xAC, 0xD2, 0x11, 0x2C,
+ 0x1C, 0x5B, 0x08, 0x35, 0x10, 0x32, 0x0D, 0x0A, 0x86, 0x15, 0x7E, 0xFD, 0x3B, 0x31, 0xEC, 0x7F,
+ 0x6D, 0x86, 0xEE, 0xD7, 0x60, 0x28, 0x92, 0x2E, 0x64, 0x5B, 0xE6, 0xA1, 0x2D, 0xCB, 0xA9, 0x98,
+ 0x04, 0xDC, 0xE7, 0x79, 0x68, 0x8B, 0xCE, 0x82, 0x16, 0xD6, 0xCD, 0xDC, 0xD6, 0xF4, 0x6B, 0x9A,
+ 0xE8, 0x97, 0xDA, 0xE7, 0xD7, 0x35, 0xCE, 0xAF, 0x6C, 0x99, 0x5F, 0x6A, 0x96, 0x5F, 0xD7, 0x26,
+ 0xBF, 0xAE, 0x41, 0xFE, 0x29, 0xD6, 0x58, 0x42, 0x23, 0x3E, 0x20, 0x6C, 0x22, 0xE3, 0x5D, 0x0D,
+ 0xD5, 0x72, 0xE0, 0x5F, 0xAB, 0x28, 0x96, 0xB5, 0x5E, 0x0E, 0x34, 0x5B, 0x79, 0x61, 0x69, 0xAE,
+ 0xF2, 0x62, 0xA0, 0x99, 0x36, 0x7D, 0x1A, 0xCA, 0x0B, 0x53, 0x5E, 0x5C, 0xCD, 0x34, 0xC5, 0xA5,
+ 0x27, 0x1A, 0xFB, 0x70, 0x31, 0xE8, 0x32, 0xD4, 0xCC, 0x01, 0x7D, 0x0E, 0xA9, 0xC9, 0x82, 0xE1,
+ 0x96, 0xBC, 0x58, 0x9A, 0xE9, 0xD2, 0xC5, 0xA5, 0xB6, 0x3E, 0x72, 0xED, 0x2B, 0x9F, 0x71, 0x81,
+ 0x69, 0xF2, 0x11, 0x56, 0x48, 0xA5, 0x8E, 0x96, 0x38, 0xF1, 0xB4, 0x68, 0xA5, 0x7B, 0x17, 0x2A,
+ 0x32, 0xDB, 0x0F, 0x78, 0x46, 0x64, 0x9D, 0x9B, 0x4A, 0x3C, 0x3A, 0x99, 0x30, 0x0C, 0x43, 0x5A,
+ 0x35, 0x02, 0xA9, 0x94, 0xE5, 0x6B, 0x2A, 0x44, 0x20, 0xB5, 0x53, 0xF2, 0xF0, 0x93, 0x25, 0xBE,
+ 0xCB, 0x72, 0x0E, 0x47, 0x94, 0xF8, 0x22, 0x6B, 0x33, 0x8D, 0xE7, 0x4A, 0x6B, 0xB3, 0x09, 0xEB,
+ 0xF2, 0xE4, 0x45, 0x72, 0xC9, 0xD2, 0x1F, 0xBD, 0x0C, 0x12, 0xDA, 0xCE, 0x59, 0x9B, 0x4F, 0x78,
+ 0xA3, 0xED, 0xB1, 0x6E, 0x8E, 0xF8, 0x19, 0x7B, 0x6C, 0x8E, 0x8C, 0x92, 0x2B, 0xBE, 0x47, 0xE0,
+ 0x71, 0x7F, 0x41, 0xB9, 0x36, 0x9D, 0x11, 0x50, 0x42, 0x8C, 0xF9, 0x70, 0x9A, 0x53, 0x21, 0x9E,
+ 0x7F, 0x63, 0x8E, 0xC3, 0x39, 0x70, 0x53, 0xAB, 0x05, 0x81, 0x73, 0x1A, 0x39, 0x52, 0xD4, 0x13,
+ 0xD6, 0x15, 0x54, 0x1A, 0x3F, 0xA9, 0x0F, 0xF9, 0xA3, 0xFA, 0xE5, 0x6D, 0xC2, 0xBD, 0x48, 0x11,
+ 0x6F, 0xDF, 0x10, 0x11, 0xC7, 0x86, 0xE3, 0x34, 0x90, 0x32, 0x06, 0x55, 0x12, 0xC8, 0x01, 0x83,
+ 0xE3, 0x14, 0xAF, 0x7C, 0x7F, 0xB3, 0x12, 0xAF, 0x7D, 0x28, 0x2A, 0x0D, 0x3D, 0x5B, 0x32, 0xC8,
+ 0xAC, 0x94, 0x65, 0x18, 0x83, 0xD1, 0xB4, 0x28, 0x21, 0x17, 0xB8, 0xB0, 0x00, 0xAB, 0x9A, 0xB4,
+ 0x86, 0x70, 0x27, 0xB2, 0xA5, 0x16, 0xCE, 0x90, 0x14, 0xF4, 0x90, 0x15, 0xC0, 0x26, 0x12, 0xB1,
+ 0x3C, 0x4B, 0x36, 0xFB, 0xBF, 0x53, 0xB5, 0x20, 0xF1, 0x37, 0x4B, 0xD8, 0xC7, 0xEE, 0x05, 0xE3,
+ 0x4F, 0x23, 0x86, 0xB7, 0x3F, 0x5C, 0x3F, 0x87, 0xFD, 0x93, 0x67, 0xAD, 0x4E, 0x37, 0x8C, 0x63,
+ 0x96, 0xFE, 0xFC, 0xF6, 0xE5, 0x8B, 0x09, 0xD7, 0x48, 0x9D, 0xB0, 0xD5, 0xDF, 0x54, 0x53, 0x27,
+ 0xA1, 0xE9, 0xB0, 0x96, 0x4D, 0x41, 0x16, 0xC3, 0x9F, 0xE3, 0xFB, 0x1B, 0xAF, 0xE6, 0x98, 0x53,
+ 0x69, 0xB5, 0x3E, 0x91, 0xF4, 0x58, 0x9D, 0x31, 0xAD, 0x8E, 0xA7, 0xB9, 0xA7, 0x55, 0x5F, 0x54,
+ 0x3D, 0x92, 0xFA, 0xD4, 0xB2, 0x36, 0x18, 0xC2, 0xDA, 0x06, 0xA4, 0x31, 0xE6, 0x1D, 0xB2, 0x20,
+ 0x4C, 0xB0, 0x20, 0x15, 0xAA, 0x78, 0x6C, 0x99, 0x11, 0x81, 0x69, 0x46, 0x98, 0xE4, 0x02, 0x3E,
+ 0xB4, 0xA6, 0x70, 0x24, 0xEC, 0x76, 0xCB, 0x13, 0x8C, 0xBA, 0x85, 0x35, 0x4C, 0xAA, 0x0B, 0x7C,
+ 0xF4, 0xA8, 0x0D, 0x56, 0x65, 0x74, 0x34, 0x46, 0x6F, 0x27, 0x65, 0x5D, 0x10, 0x9C, 0xB7, 0x73,
+ 0x83, 0xAC, 0xDA, 0xF5, 0x8E, 0xC9, 0x77, 0xF1, 0xA4, 0xA5, 0x71, 0xBA, 0x74, 0xB6, 0x1D, 0xCA,
+ 0x31, 0x51, 0x81, 0xD1, 0xC4, 0x18, 0x47, 0x67, 0x39, 0x3F, 0xA1, 0xA4, 0x71, 0x74, 0x72, 0xD2,
+ 0x51, 0x75, 0x13, 0x14, 0x2E, 0xE8, 0xDB, 0xB2, 0xFF, 0xB7, 0xE8, 0xF7, 0x2E, 0x56, 0x2F, 0x3A,
+ 0x20, 0x08, 0x69, 0xF1, 0xED, 0x9B, 0xA9, 0xB4, 0x16, 0x3A, 0x95, 0x01, 0xFE, 0x54, 0x41, 0xA7,
+ 0x82, 0x45, 0x7B, 0xF0, 0x47, 0x99, 0xBE, 0xE7, 0x25, 0x04, 0x99, 0x9A, 0x05, 0x10, 0xA2, 0x59,
+ 0x26, 0x02, 0x91, 0x85, 0xF7, 0x7D, 0x71, 0x19, 0x50, 0x9B, 0x89, 0xE0, 0xF1, 0xC2, 0xB4, 0xE4,
+ 0xA7, 0xA9, 0xE0, 0x30, 0xF3, 0x0E, 0x70, 0x82, 0x2F, 0x2F, 0x29, 0x57, 0xA6, 0x08, 0xC2, 0xD7,
+ 0x78, 0x6D, 0x29, 0x57, 0x16, 0x5C, 0x00, 0x76, 0xAF, 0x2D, 0x0A, 0x80, 0x0D, 0x0E, 0xE2, 0xAB,
+ 0x2E, 0x85, 0x37, 0x5B, 0xA7, 0xF9, 0x12, 0x0B, 0x56, 0x3D, 0xC9, 0xC9, 0x90, 0xAC, 0x6C, 0xC1,
+ 0xCA, 0x34, 0xEE, 0xC0, 0x0B, 0xD6, 0xBC, 0xC3, 0xC7, 0x69, 0xF0, 0x71, 0x1E, 0xC8, 0xC7, 0x6D,
+ 0xF0, 0x71, 0xEF, 0xC0, 0x27, 0xAF, 0x2D, 0x51, 0x5A, 0x0E, 0xCB, 0x6C, 0x9D, 0xBD, 0x7D, 0x22,
+ 0x8F, 0x03, 0xEF, 0xE5, 0x79, 0xE0, 0x7D, 0x1E, 0x94, 0xD4, 0xE2, 0x85, 0x9D, 0xD5, 0xD5, 0x58,
+ 0xC5, 0xE7, 0x44, 0xE2, 0xC1, 0x50, 0x0B, 0x1C, 0x9C, 0x10, 0xB9, 0x62, 0x26, 0x68, 0x67, 0x27,
+ 0xAD, 0xE2, 0x31, 0x90, 0x78, 0x0A, 0x54, 0x3B, 0xC0, 0x55, 0x4A, 0xDD, 0x2D, 0x9C, 0xB9, 0x41,
+ 0xAC, 0xA9, 0xF4, 0x26, 0x56, 0x17, 0xFF, 0xC4, 0xBF, 0x7B, 0xF1, 0x19, 0x6C, 0xB1, 0x31, 0xE0,
+ 0xD1, 0xA3, 0xCA, 0x88, 0xDD, 0xEE, 0x3F, 0xFE, 0x40, 0x5F, 0x31, 0x3B, 0x62, 0xEF, 0xE4, 0x11,
+ 0x0E, 0xCB, 0xE8, 0x6F, 0x9F, 0x4C, 0x61, 0x8D, 0x62, 0xB5, 0x0D, 0xBB, 0x96, 0x63, 0xC5, 0x88,
+ 0xDC, 0x7C, 0x8D, 0xEF, 0x5A, 0x55, 0xB9, 0xDF, 0xCB, 0x02, 0xE5, 0x7B, 0xB5, 0x82, 0x15, 0x4F,
+ 0x20, 0x48, 0x71, 0xD6, 0x26, 0x28, 0xAC, 0xAB, 0x40, 0x6D, 0x75, 0xF0, 0x20, 0x84, 0x9C, 0xAB,
+ 0xA7, 0x99, 0x9A, 0x54, 0x38, 0x9F, 0x70, 0x7A, 0xFC, 0x40, 0x9F, 0x2A, 0xFD, 0x33, 0x00, 0xFF,
+ 0x0C, 0x9A, 0xFE, 0x19, 0x48, 0xFF, 0x9C, 0x34, 0xFD, 0x33, 0xF8, 0xAA, 0xFE, 0x59, 0xF1, 0xCE,
+ 0xA1, 0xC8, 0x01, 0x86, 0x18, 0xCD, 0x21, 0x13, 0x80, 0xA0, 0x2F, 0x3F, 0x7A, 0x18, 0xD7, 0x1D,
+ 0xF4, 0x46, 0x07, 0xFD, 0xB7, 0x47, 0x4E, 0x6C, 0xD1, 0x50, 0xBC, 0x60, 0x36, 0x80, 0x2E, 0x6D,
+ 0x13, 0x7D, 0x8F, 0x3E, 0x2D, 0xE1, 0xD1, 0xD0, 0x7F, 0xB7, 0x64, 0xA0, 0x34, 0x4E, 0x15, 0xB7,
+ 0xA5, 0x7E, 0x58, 0x55, 0x0A, 0x33, 0x2A, 0x52, 0xA7, 0xDD, 0x77, 0x09, 0xAB, 0xB0, 0x5E, 0xC9,
+ 0x27, 0x2A, 0xDB, 0x15, 0x94, 0xDB, 0x35, 0xCE, 0xF7, 0xAB, 0xD1, 0x57, 0x33, 0x8E, 0x5C, 0x9E,
+ 0x07, 0xDB, 0xCA, 0xE1, 0xF9, 0x1F, 0x64, 0x2E, 0x07, 0x03, 0x2A, 0x3E, 0xBB, 0xA9, 0x46, 0xD3,
+ 0xF8, 0xB1, 0x8A, 0x4F, 0x5D, 0x94, 0x9A, 0x73, 0x29, 0x61, 0x06, 0x81, 0x3E, 0xCB, 0x40, 0x6B,
+ 0x9A, 0xB2, 0x8A, 0xF0, 0xCF, 0x59, 0x15, 0x51, 0xFE, 0x53, 0x42, 0xAE, 0x8E, 0xD4, 0xDC, 0xD3,
+ 0x5B, 0xA7, 0x2D, 0xB9, 0x32, 0xA5, 0xD5, 0xA8, 0xAA, 0xB4, 0xA6, 0x3F, 0x25, 0x0A, 0x4F, 0x14,
+ 0x7A, 0x04, 0xAC, 0x84, 0xE5, 0xF3, 0x65, 0x6F, 0x7A, 0x24, 0xDC, 0x97, 0x95, 0xD9, 0x7A, 0xC4,
+ 0x3F, 0x48, 0x40, 0x05, 0xEB, 0xDA, 0x7A, 0x64, 0xAD, 0xA5, 0x4C, 0xCB, 0xA4, 0x2F, 0x62, 0xB2,
+ 0x98, 0xC4, 0xF3, 0x30, 0x5D, 0xB6, 0xD5, 0x1F, 0xC5, 0x8D, 0x12, 0x60, 0x17, 0x8E, 0x49, 0xE6,
+ 0x68, 0x6A, 0x22, 0x3B, 0x02, 0x67, 0xA9, 0xA5, 0x90, 0x34, 0x88, 0xA9, 0x1A, 0xDB, 0xE1, 0x99,
+ 0xE7, 0xA0, 0xC7, 0xD8, 0xC2, 0x18, 0x30, 0xAF, 0x24, 0xBD, 0x3E, 0xC2, 0x1B, 0xC6, 0xD4, 0xD9,
+ 0x57, 0x1E, 0x83, 0xC8, 0x9A, 0xD1, 0x2A, 0x85, 0xF8, 0xCD, 0xDB, 0xEA, 0x6B, 0xB1, 0x19, 0xF4,
+ 0xD0, 0xAD, 0xE4, 0x4D, 0x65, 0x53, 0x48, 0x89, 0x60, 0xE3, 0xE3, 0x4D, 0x14, 0x01, 0xF6, 0x35,
+ 0xE6, 0xF1, 0x73, 0x86, 0x30, 0x4F, 0x17, 0x20, 0x62, 0x09, 0x39, 0x6C, 0x39, 0x5D, 0x75, 0x28,
+ 0xE5, 0x0C, 0x38, 0x67, 0x3C, 0x89, 0xD9, 0xA5, 0xF2, 0x7F, 0x2F, 0x5F, 0xFC, 0xCC, 0xF9, 0x4A,
+ 0x96, 0xC4, 0xB4, 0x70, 0xA2, 0x9E, 0x92, 0x81, 0x3E, 0x16, 0xAF, 0x96, 0x4F, 0x60, 0x4D, 0xE3,
+ 0x10, 0x13, 0x49, 0x6C, 0x15, 0xC5, 0xDB, 0x13, 0x16, 0xFB, 0x49, 0xC0, 0xDE, 0xBD, 0x79, 0xDE,
+ 0xE6, 0x1D, 0x8D, 0x3A, 0x45, 0x49, 0xAC, 0xD2, 0x51, 0xCD, 0xDB, 0x0E, 0x6F, 0xAE, 0x7C, 0x74,
+ 0xD1, 0xE9, 0x92, 0x23, 0x77, 0xCB, 0x72, 0xB1, 0x2C, 0x1D, 0x47, 0xB0, 0xE6, 0xB8, 0x9B, 0xC4,
+ 0xB0, 0xB8, 0xE0, 0x1A, 0x33, 0x45, 0xE6, 0x2F, 0xF0, 0xAF, 0xB5, 0x26, 0x45, 0x06, 0xD4, 0xB9,
+ 0x81, 0x84, 0xDB, 0x99, 0x4C, 0xE2, 0x2E, 0x8D, 0xC1, 0x5C, 0x9B, 0x75, 0xA0, 0xC9, 0x32, 0x0C,
+ 0x6C, 0x14, 0xD9, 0x65, 0xAE, 0xE3, 0xFF, 0x3D, 0x7F, 0xF5, 0x0B, 0xC4, 0xAD, 0x14, 0x32, 0x7C,
+ 0x1C, 0x9F, 0xAD, 0x92, 0x38, 0x63, 0x6F, 0xD9, 0x15, 0x3F, 0xE2, 0x4E, 0x47, 0x44, 0x94, 0x25,
+ 0x6D, 0x6D, 0xEF, 0xB1, 0x60, 0xCB, 0x22, 0xD8, 0xC6, 0x46, 0xBD, 0x71, 0x8B, 0xAB, 0x59, 0xB1,
+ 0xB8, 0xAD, 0xFE, 0xF4, 0xF4, 0xAD, 0xAA, 0x85, 0x1A, 0xA6, 0x76, 0x20, 0x25, 0x6C, 0x4F, 0xBB,
+ 0xB1, 0x5D, 0xA2, 0xD8, 0x2E, 0x05, 0x3F, 0xEA, 0x4E, 0xF9, 0xA3, 0x80, 0x8E, 0x40, 0x16, 0x3C,
+ 0x81, 0x18, 0x18, 0x1C, 0x45, 0xE8, 0xE8, 0xDC, 0x1C, 0x24, 0xAE, 0x3F, 0xE9, 0xEC, 0x74, 0x6B,
+ 0x0F, 0x35, 0x01, 0x19, 0xBA, 0xDD, 0xEE, 0x11, 0x4F, 0xC6, 0x87, 0x96, 0xC7, 0x36, 0x6E, 0x2C,
+ 0xCE, 0x45, 0x68, 0x63, 0xCF, 0x92, 0x74, 0xF9, 0xC4, 0xE3, 0xDE, 0x98, 0x77, 0xBD, 0xD5, 0x0A,
+ 0x17, 0x2B, 0xDC, 0xBA, 0x9A, 0xAE, 0x97, 0x01, 0x30, 0x86, 0x00, 0x18, 0x9F, 0xE5, 0xF2, 0x8F,
+ 0x63, 0x08, 0x7D, 0x32, 0xF3, 0x67, 0xBF, 0xC5, 0xBF, 0x6B, 0x51, 0x35, 0x3F, 0x3E, 0x09, 0x25,
+ 0x8A, 0x9E, 0xAB, 0x25, 0xF3, 0x48, 0x0B, 0x45, 0x50, 0xD4, 0xCA, 0xF9, 0xCA, 0x07, 0x24, 0xA0,
+ 0xF5, 0x5D, 0x06, 0x9D, 0xAD, 0x08, 0xBD, 0xBB, 0x1E, 0x31, 0x0E, 0xE4, 0x8E, 0xBD, 0x7E, 0x75,
+ 0xFE, 0x16, 0x0F, 0x25, 0xC4, 0x47, 0xA5, 0x9D, 0x0B, 0xBA, 0x42, 0x85, 0x5D, 0x88, 0x3F, 0x4F,
+ 0x3F, 0x01, 0xC7, 0x17, 0x00, 0x6C, 0x0C, 0x80, 0x0A, 0xB5, 0x23, 0x1E, 0x61, 0xA8, 0x5A, 0x99,
+ 0xAC, 0x93, 0xAD, 0xE6, 0xEB, 0x02, 0x77, 0x5C, 0x6D, 0xA8, 0xFE, 0x99, 0x9F, 0x20, 0x99, 0x78,
+ 0xDF, 0x3F, 0x38, 0x95, 0x27, 0xBE, 0xFF, 0x81, 0xC3, 0xD7, 0x61, 0xBB, 0x14, 0xEA, 0x17, 0x5B,
+ 0x76, 0x04, 0x3E, 0x6F, 0xDB, 0x63, 0x05, 0x37, 0xF9, 0x04, 0x4F, 0xBF, 0xCF, 0xF0, 0x75, 0xF8,
+ 0xB6, 0xD1, 0xC1, 0xE3, 0xDA, 0x76, 0xAB, 0x61, 0x22, 0x05, 0x4B, 0x8F, 0x71, 0x5C, 0xD5, 0xDD,
+ 0xC8, 0xB1, 0x26, 0x81, 0xF4, 0xAC, 0xC7, 0xED, 0x87, 0xCD, 0xFC, 0x00, 0xBB, 0x2A, 0xBC, 0xED,
+ 0x6E, 0xBE, 0x20, 0xA7, 0xDB, 0xEB, 0x9D, 0x15, 0x1C, 0x08, 0xEA, 0x38, 0xD0, 0xE9, 0x8C, 0xE8,
+ 0xEF, 0xBA, 0xDB, 0xEA, 0xF7, 0xB1, 0x22, 0xFE, 0xA2, 0x18, 0x0F, 0xB2, 0x60, 0x2E, 0xC1, 0x37,
+ 0x2A, 0xB8, 0x6F, 0x20, 0x7C, 0x95, 0x77, 0xB6, 0xA5, 0xB7, 0x56, 0x1F, 0x8E, 0xE1, 0x0E, 0xEF,
+ 0x44, 0x8B, 0xC6, 0x03, 0x40, 0xE5, 0xB1, 0xDA, 0xB9, 0xDD, 0xB1, 0x2F, 0xBF, 0xD0, 0xAD, 0xCB,
+ 0xC7, 0x78, 0x0F, 0x53, 0x66, 0x65, 0xFE, 0x07, 0x90, 0x37, 0x93, 0x10, 0xF5, 0xC8, 0x58, 0xF9,
+ 0xF2, 0x48, 0x3E, 0x8F, 0xFC, 0x63, 0x8D, 0x89, 0x8A, 0x7F, 0xAD, 0x71, 0xDC, 0x4E, 0xE6, 0x97,
+ 0xC7, 0x11, 0x28, 0x47, 0x94, 0x3A, 0x0A, 0x69, 0xB7, 0x02, 0x0C, 0x9C, 0xC2, 0xEF, 0x09, 0x2C,
+ 0x02, 0x57, 0x4A, 0xBA, 0x7B, 0xE0, 0xC9, 0x86, 0x8C, 0x02, 0x96, 0xF2, 0x77, 0x80, 0x14, 0xD2,
+ 0xE8, 0xAD, 0xA0, 0xB2, 0xB3, 0xBB, 0x0F, 0x87, 0x93, 0x3C, 0x54, 0x17, 0x88, 0x72, 0x2F, 0xC3,
+ 0xBE, 0x2B, 0xA6, 0xEC, 0x08, 0xFC, 0x06, 0xA1, 0x20, 0xE5, 0xD5, 0xF4, 0xF7, 0xD2, 0x0B, 0x79,
+ 0xF7, 0x78, 0xC8, 0xCB, 0x9F, 0x3D, 0x1F, 0xCD, 0x57, 0xFE, 0x5C, 0xBF, 0x3C, 0xC4, 0x24, 0x7F,
+ 0x5F, 0x62, 0x75, 0x75, 0x47, 0xA7, 0x2E, 0xF1, 0xF1, 0x4F, 0x82, 0x80, 0x5D, 0xF2, 0x8A, 0x8C,
+ 0xE3, 0x9D, 0x84, 0xAC, 0x01, 0xC4, 0x08, 0x77, 0xAA, 0x49, 0x87, 0x7C, 0x61, 0x17, 0x70, 0xF8,
+ 0x77, 0xEA, 0x5F, 0xAB, 0xBD, 0x7F, 0xFC, 0x21, 0x61, 0x5B, 0x42, 0xEC, 0xDC, 0x03, 0xA7, 0x0C,
+ 0xD4, 0x8E, 0xA6, 0x5A, 0x70, 0x66, 0xCE, 0x47, 0x75, 0xEA, 0x83, 0x7C, 0x2F, 0xF6, 0x41, 0x42,
+ 0x44, 0xF6, 0x31, 0x65, 0x6B, 0x38, 0xA7, 0x5D, 0x1D, 0x2F, 0xDC, 0x88, 0x00, 0xE3, 0x56, 0xAF,
+ 0xC1, 0x7A, 0xA9, 0x63, 0x68, 0x7C, 0x92, 0x31, 0x4E, 0x6F, 0xDB, 0x82, 0x86, 0xDB, 0x15, 0x4B,
+ 0x8F, 0x4F, 0x26, 0xA6, 0x5C, 0xB6, 0x63, 0xEA, 0x87, 0xE3, 0x66, 0xDD, 0x0B, 0x63, 0x10, 0x0D,
+ 0x12, 0x6C, 0x25, 0x63, 0x10, 0x56, 0x82, 0xEC, 0x4E, 0xC6, 0x59, 0xDA, 0x39, 0xD3, 0x1C, 0xE3,
+ 0x2C, 0x7E, 0xF4, 0xA8, 0xED, 0x83, 0x8D, 0xA7, 0x85, 0x54, 0x90, 0xB5, 0x47, 0x89, 0x78, 0x6F,
+ 0x01, 0xB4, 0x8E, 0x06, 0x85, 0xA7, 0x05, 0xCD, 0x64, 0xB6, 0x4C, 0x5B, 0xF7, 0x29, 0x13, 0xE3,
+ 0x5F, 0xB5, 0xF3, 0xD6, 0x00, 0x59, 0x46, 0x48, 0x09, 0x7D, 0x2F, 0xF0, 0x2D, 0x80, 0xF6, 0x11,
+ 0x07, 0xBF, 0x4B, 0xAE, 0x7D, 0x98, 0x36, 0x7F, 0xC1, 0x63, 0x27, 0x90, 0xD0, 0x9F, 0xE5, 0x56,
+ 0x1E, 0x30, 0x34, 0x92, 0xF2, 0x63, 0xF2, 0x1C, 0xE4, 0x49, 0xC1, 0x69, 0x7C, 0x4B, 0x10, 0x6F,
+ 0xBE, 0x8F, 0x21, 0x37, 0x55, 0x9E, 0xCF, 0xC0, 0x54, 0x6E, 0xA1, 0xAC, 0xBF, 0x30, 0xD1, 0xA0,
+ 0xC6, 0xB7, 0x07, 0x68, 0xD8, 0xE3, 0x77, 0xE7, 0x4F, 0xDF, 0x54, 0x0F, 0x5F, 0x18, 0x07, 0x40,
+ 0xBC, 0x98, 0x43, 0x7C, 0x38, 0x51, 0x1F, 0xBD, 0xFE, 0xFE, 0xFC, 0xFC, 0xD7, 0x57, 0x6F, 0x9E,
+ 0xEC, 0x1F, 0xC2, 0x71, 0xC8, 0xF9, 0xBB, 0x1F, 0x5E, 0x3E, 0x7F, 0x3B, 0xB9, 0xC6, 0xC4, 0x36,
+ 0xDC, 0x17, 0xB4, 0xC2, 0x5B, 0x0E, 0x61, 0x70, 0x02, 0x0B, 0x2B, 0x27, 0xB0, 0x47, 0x8F, 0x00,
+ 0xD4, 0xBF, 0x81, 0xA6, 0xDC, 0x59, 0xEB, 0x16, 0xB0, 0x85, 0x38, 0x5A, 0x39, 0x06, 0xC5, 0x14,
+ 0xF9, 0xC2, 0xFC, 0x18, 0x74, 0x19, 0xC6, 0x41, 0x72, 0xB9, 0x27, 0x56, 0x1C, 0x7E, 0xEE, 0x33,
+ 0x3E, 0x3B, 0x95, 0xAF, 0x69, 0x9C, 0x9D, 0xCA, 0xB7, 0xBD, 0xE8, 0xBF, 0x0E, 0xFD, 0x7F, 0x17,
+ 0x2C, 0x35, 0x10, 0x41, 0x54, 0x00, 0x00
};
+#endif //__nofile_h
diff --git a/esp3d/notifications_service.cpp b/esp3d/notifications_service.cpp
new file mode 100644
index 00000000..f72f1e99
--- /dev/null
+++ b/esp3d/notifications_service.cpp
@@ -0,0 +1,441 @@
+/*
+ notifications_service.cpp - notifications service functions class
+
+ Copyright (c) 2014 Luc Lebosse. All rights reserved.
+
+ This library is free software; you can redistribute it and/or
+ modify it under the terms of the GNU Lesser General Public
+ License as published by the Free Software Foundation; either
+ version 2.1 of the License, or (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ Lesser General Public License for more details.
+
+ You should have received a copy of the GNU Lesser General Public
+ License along with this library; if not, write to the Free Software
+ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+*/
+//Inspired by following sources
+//* Line :
+// - https://github.com/TridentTD/TridentTD_LineNotify
+// - https://notify-bot.line.me/doc/en/
+//* Pushover:
+// - https://github.com/ArduinoHannover/Pushover
+// - https://pushover.net/api
+//* Email:
+// - https://github.com/CosmicBoris/ESP8266SMTP
+// - https://www.electronicshub.org/send-an-email-using-esp8266/
+
+#include "config.h"
+#ifdef NOTIFICATION_FEATURE
+#include "notifications_service.h"
+#include "wificonf.h"
+#if defined( ARDUINO_ARCH_ESP8266)
+#define USING_AXTLS
+#if defined(USING_AXTLS)
+#include "WiFiClientSecureAxTLS.h"
+using namespace axTLS;
+typedef axTLS::WiFiClientSecure TSecureClient;
+#else
+#include
+typedef WiFiClientSecure TSecureClient;
+#endif //USING_AXTLS
+#endif //ARDUINO_ARCH_ESP8266
+
+#if defined(ARDUINO_ARCH_ESP32)
+#include
+typedef WiFiClientSecure TSecureClient;
+#endif //ARDUINO_ARCH_ESP32
+
+#include
+
+#define PUSHOVERTIMEOUT 5000
+#define PUSHOVERSERVER "api.pushover.net"
+#define PUSHOVERPORT 443
+
+#define LINETIMEOUT 5000
+#define LINESERVER "notify-api.line.me"
+#define LINEPORT 443
+
+#define EMAILTIMEOUT 5000
+
+NotificationsService notificationsservice;
+
+bool Wait4Answer(TSecureClient & client, const char * linetrigger, const char * expected_answer, uint32_t timeout)
+{
+ if(client.connected()) {
+ String answer;
+ uint32_t starttimeout = millis();
+ while (client.connected() && ((millis() -starttimeout) < timeout)) {
+ answer = client.readStringUntil('\n');
+ //log_esp3d("Answer: %s", answer.c_str());
+ if ((answer.indexOf(linetrigger) != -1) || (strlen(linetrigger) == 0)) {
+ break;
+ }
+ CONFIG::wait(10);
+ }
+ if (strlen(expected_answer) == 0) {
+ //log_esp3d("Answer ignored as requested");
+ return true;
+ }
+ if(answer.indexOf(expected_answer) == -1) {
+ //log_esp3d("Did not got answer!");
+ return false;
+ } else {
+ //log_esp3d("Got expected answer");
+ return true;
+ }
+ }
+ //log_esp3d("Failed to send message");
+ return false;
+}
+
+NotificationsService::NotificationsService()
+{
+ _started = false;
+ _notificationType = 0;
+ _token1 = "";
+ _token1 = "";
+ _settings = "";
+}
+NotificationsService::~NotificationsService()
+{
+ end();
+}
+
+bool NotificationsService::started()
+{
+ return _started;
+}
+
+const char * NotificationsService::getTypeString()
+{
+ switch(_notificationType) {
+ case ESP_PUSHOVER_NOTIFICATION:
+ return "Pushover";
+ case ESP_EMAIL_NOTIFICATION:
+ return "Email";
+ case ESP_LINE_NOTIFICATION:
+ return "Line";
+ default:
+ break;
+ }
+ return "None";
+}
+
+bool NotificationsService::sendMSG(const char * title, const char * message)
+{
+ if(!_started) {
+ return false;
+ }
+ if (!((strlen(title) == 0) && (strlen(message) == 0))) {
+ switch(_notificationType) {
+ case ESP_PUSHOVER_NOTIFICATION:
+ return sendPushoverMSG(title,message);
+ break;
+ case ESP_EMAIL_NOTIFICATION:
+ return sendEmailMSG(title,message);
+ break;
+ case ESP_LINE_NOTIFICATION :
+ return sendLineMSG(title,message);
+ break;
+ default:
+ break;
+ }
+ }
+ return false;
+}
+//Messages are currently limited to 1024 4-byte UTF-8 characters
+//but we do not do any check
+bool NotificationsService::sendPushoverMSG(const char * title, const char * message)
+{
+ String data;
+ String postcmd;
+ bool res;
+ TSecureClient Notificationclient;
+#if defined(ARDUINO_ARCH_ESP8266) && !defined(USING_AXTLS)
+ Notificationclient.setInsecure();
+#endif //ARDUINO_ARCH_ESP8266 && !USING_AXTLS
+ if (!Notificationclient.connect(_serveraddress.c_str(), _port)) {
+ //log_esp3d("Error connecting server %s:%d", _serveraddress.c_str(), _port);
+ return false;
+ }
+ //build data for post
+ data = "user=";
+ data += _token1;
+ data += "&token=";
+ data += _token2;;
+ data +="&title=";
+ data += title;
+ data += "&message=";
+ data += message;
+ data += "&device=";
+ data += wifi_config.get_hostname();
+ //build post query
+ postcmd = "POST /1/messages.json HTTP/1.1\r\nHost: api.pushover.net\r\nConnection: close\r\nCache-Control: no-cache\r\nUser-Agent: ESP3D\r\nAccept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\r\nContent-Length: ";
+ postcmd += data.length();
+ postcmd +="\r\n\r\n";
+ postcmd +=data;
+ //log_esp3d("Query: %s", postcmd.c_str());
+ //send query
+ Notificationclient.print(postcmd);
+ res = Wait4Answer(Notificationclient, "{", "\"status\":1", PUSHOVERTIMEOUT);
+ Notificationclient.stop();
+ return res;
+}
+bool NotificationsService::sendEmailMSG(const char * title, const char * message)
+{
+ TSecureClient Notificationclient;
+#if defined(ARDUINO_ARCH_ESP8266) && !defined(USING_AXTLS)
+ Notificationclient.setInsecure();
+#endif //ARDUINO_ARCH_ESP8266 && !USING_AXTLS
+ //log_esp3d("Connect to server");
+ if (!Notificationclient.connect(_serveraddress.c_str(), _port)) {
+ //log_esp3d("Error connecting server %s:%d", _serveraddress.c_str(), _port);
+ return false;
+ }
+ //Check answer of connection
+ if(!Wait4Answer(Notificationclient, "220", "220", EMAILTIMEOUT)) {
+ //log_esp3d("Connection failed!");
+ return false;
+ }
+ //Do HELO
+ //log_esp3d("HELO");
+ Notificationclient.print("HELO friend\r\n");
+ if(!Wait4Answer(Notificationclient, "250", "250", EMAILTIMEOUT)) {
+ //log_esp3d("HELO failed!");
+ return false;
+ }
+ //log_esp3d("AUTH LOGIN");
+ //Request AUthentication
+ Notificationclient.print("AUTH LOGIN\r\n");
+ if(!Wait4Answer(Notificationclient, "334", "334", EMAILTIMEOUT)) {
+ //log_esp3d("AUTH LOGIN failed!");
+ return false;
+ }
+ //log_esp3d("Send LOGIN");
+ //sent Login
+ Notificationclient.printf("%s\r\n",_token1.c_str());
+ if(!Wait4Answer(Notificationclient, "334", "334", EMAILTIMEOUT)) {
+ //log_esp3d("Sent login failed!");
+ return false;
+ }
+ //log_esp3d("Send PASSWORD");
+ //Send password
+ Notificationclient.printf("%s\r\n",_token2.c_str());
+ if(!Wait4Answer(Notificationclient, "235", "235", EMAILTIMEOUT)) {
+ //log_esp3d("Sent password failed!");
+ return false;
+ }
+ //log_esp3d("MAIL FROM");
+ //Send From
+ Notificationclient.printf("MAIL FROM: <%s>\r\n",_settings.c_str());
+ if(!Wait4Answer(Notificationclient, "250", "250", EMAILTIMEOUT)) {
+ //log_esp3d("MAIL FROM failed!");
+ return false;
+ }
+ //log_esp3d("RCPT TO");
+ //Send To
+ Notificationclient.printf("RCPT TO: <%s>\r\n",_settings.c_str());
+ if(!Wait4Answer(Notificationclient, "250", "250", EMAILTIMEOUT)) {
+ //log_esp3d("RCPT TO failed!");
+ return false;
+ }
+ //log_esp3d("DATA");
+ //Send Data
+ Notificationclient.print("DATA\r\n");
+ if(!Wait4Answer(Notificationclient, "354", "354", EMAILTIMEOUT)) {
+ //log_esp3d("Preparing DATA failed!");
+ return false;
+ }
+ //log_esp3d("Send message");
+ //Send message
+ Notificationclient.printf("From:ESP3D<%s>\r\n",_settings.c_str());
+ Notificationclient.printf("To: <%s>\r\n",_settings.c_str());
+ Notificationclient.printf("Subject: %s\r\n\r\n",title);
+ Notificationclient.println(message);
+
+ //log_esp3d("Send final dot");
+ //Send Final dot
+ Notificationclient.print(".\r\n");
+ if(!Wait4Answer(Notificationclient, "250", "250", EMAILTIMEOUT)) {
+ //log_esp3d("Sending final dot failed!");
+ return false;
+ }
+ //log_esp3d("QUIT");
+ //Quit
+ Notificationclient.print("QUIT\r\n");
+ if(!Wait4Answer(Notificationclient, "221", "221", EMAILTIMEOUT)) {
+ //log_esp3d("QUIT failed!");
+ return false;
+ }
+
+ Notificationclient.stop();
+ return true;
+}
+bool NotificationsService::sendLineMSG(const char * title, const char * message)
+{
+ String data;
+ String postcmd;
+ bool res;
+ TSecureClient Notificationclient;
+#if defined(ARDUINO_ARCH_ESP8266) && !defined(USING_AXTLS)
+ Notificationclient.setInsecure();
+#endif //ARDUINO_ARCH_ESP8266 && !USING_AXTLS
+ (void)title;
+ if (!Notificationclient.connect(_serveraddress.c_str(), _port)) {
+ //log_esp3d("Error connecting server %s:%d", _serveraddress.c_str(), _port);
+ return false;
+ }
+ //build data for post
+ data = "message=";
+ data += message;
+ //build post query
+ postcmd = "POST /api/notify HTTP/1.1\r\nHost: notify-api.line.me\r\nConnection: close\r\nCache-Control: no-cache\r\nUser-Agent: ESP3D\r\nAccept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\r\nContent-Type: application/x-www-form-urlencoded\r\n";
+ postcmd +="Authorization: Bearer ";
+ postcmd += _token1 + "\r\n";
+ postcmd += "Content-Length: ";
+ postcmd += data.length();
+ postcmd +="\r\n\r\n";
+ postcmd +=data;
+ //log_esp3d("Query: %s", postcmd.c_str());
+ //send query
+ Notificationclient.print(postcmd);
+ res = Wait4Answer(Notificationclient, "{", "\"status\":200", LINETIMEOUT);
+ Notificationclient.stop();
+ return res;
+}
+//Email#serveraddress:port
+bool NotificationsService::getPortFromSettings()
+{
+ String tmp ;
+ char sbuf[MAX_DATA_LENGTH + 1];
+ if (CONFIG::read_string (ESP_NOTIFICATION_SETTINGS, sbuf, MAX_NOTIFICATION_SETTINGS_LENGTH) ) {
+ tmp = sbuf;
+ }
+ int pos = tmp.lastIndexOf(':');
+ if (pos == -1) {
+ return false;
+ }
+ _port= tmp.substring(pos+1).toInt();
+ //log_esp3d("port : %d", _port);
+ if (_port > 0) {
+ return true;
+ } else {
+ return false;
+ }
+}
+//Email#serveraddress:port
+bool NotificationsService::getServerAddressFromSettings()
+{
+ String tmp ;
+ char sbuf[MAX_DATA_LENGTH + 1];
+ if (CONFIG::read_string (ESP_NOTIFICATION_SETTINGS, sbuf, MAX_NOTIFICATION_SETTINGS_LENGTH) ) {
+ tmp = sbuf;
+ }
+ int pos1 = tmp.indexOf('#');
+ int pos2 = tmp.lastIndexOf(':');
+ if ((pos1 == -1) || (pos2 == -1)) {
+ return false;
+ }
+
+ //TODO add a check for valid email ?
+ _serveraddress = tmp.substring(pos1+1, pos2);
+ //log_esp3d("server : %s", _serveraddress.c_str());
+ return true;
+}
+//Email#serveraddress:port
+bool NotificationsService::getEmailFromSettings()
+{
+ String tmp ;
+ char sbuf[MAX_DATA_LENGTH + 1];
+ if (CONFIG::read_string (ESP_NOTIFICATION_SETTINGS, sbuf, MAX_NOTIFICATION_SETTINGS_LENGTH) ) {
+ tmp = sbuf;
+ }
+ int pos = tmp.indexOf('#');
+ if (pos == -1) {
+ return false;
+ }
+ _settings = tmp.substring(0, pos);
+ //log_esp3d("email : %s", _settings.c_str());
+ //TODO add a check for valid email ?
+ return true;
+}
+
+
+bool NotificationsService::begin()
+{
+ bool res = true;
+ end();
+ byte bbuf = 0;
+ char sbuf[MAX_DATA_LENGTH + 1];
+ if (CONFIG::read_byte (ESP_NOTIFICATION_TYPE, &bbuf ) ){
+ _notificationType =bbuf;
+ }
+ switch(_notificationType) {
+ case 0: //no notification = no error but no start
+ return true;
+ case ESP_PUSHOVER_NOTIFICATION:
+ if (CONFIG::read_string (ESP_NOTIFICATION_TOKEN1, sbuf, MAX_NOTIFICATION_TOKEN_LENGTH) ) {
+ _token1 = sbuf;
+ }
+ if (CONFIG::read_string (ESP_NOTIFICATION_TOKEN2, sbuf, MAX_NOTIFICATION_TOKEN_LENGTH) ) {
+ _token2 = sbuf;
+ }
+ _port = PUSHOVERPORT;
+ _serveraddress = PUSHOVERSERVER;
+ break;
+ case ESP_LINE_NOTIFICATION:
+ if (CONFIG::read_string (ESP_NOTIFICATION_TOKEN1, sbuf, MAX_NOTIFICATION_TOKEN_LENGTH) ) {
+ _token1 = sbuf;
+ }
+ _port = LINEPORT;
+ _serveraddress = LINESERVER;
+ break;
+ case ESP_EMAIL_NOTIFICATION:
+ if (CONFIG::read_string (ESP_NOTIFICATION_TOKEN1, sbuf, MAX_NOTIFICATION_TOKEN_LENGTH) ) {
+ _token1 = sbuf;
+ }
+ if (CONFIG::read_string (ESP_NOTIFICATION_TOKEN2, sbuf, MAX_NOTIFICATION_TOKEN_LENGTH) ) {
+ _token2 = sbuf;
+ }
+ //log_esp3d("%s",Settings_ESP3D::read_string(ESP_NOTIFICATION_TOKEN1));
+ //log_esp3d("%s",Settings_ESP3D::read_string(ESP_NOTIFICATION_TOKEN2));
+ if(!getEmailFromSettings() || !getPortFromSettings()|| !getServerAddressFromSettings()) {
+ return false;
+ }
+ break;
+ default:
+ return false;
+ break;
+ }
+
+ if (!res) {
+ end();
+ }
+ _started = res;
+ return _started;
+}
+void NotificationsService::end()
+{
+ if(!_started) {
+ return;
+ }
+ _started = false;
+ _notificationType = 0;
+ _token1 = "";
+ _token1 = "";
+ _settings = "";
+ _serveraddress = "";
+ _port = 0;
+}
+
+void NotificationsService::handle()
+{
+ if (_started) {
+ }
+}
+
+#endif //NOTIFICATION_FEATURE
diff --git a/esp3d/notifications_service.h b/esp3d/notifications_service.h
new file mode 100644
index 00000000..5f6c6b98
--- /dev/null
+++ b/esp3d/notifications_service.h
@@ -0,0 +1,57 @@
+/*
+ notifications_service.h - notifications service functions class
+
+ Copyright (c) 2014 Luc Lebosse. All rights reserved.
+
+ This library is free software; you can redistribute it and/or
+ modify it under the terms of the GNU Lesser General Public
+ License as published by the Free Software Foundation; either
+ version 2.1 of the License, or (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ Lesser General Public License for more details.
+
+ You should have received a copy of the GNU Lesser General Public
+ License along with this library; if not, write to the Free Software
+ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+*/
+
+
+
+#ifndef _NOTIFICATIONS_SERVICE_H
+#define _NOTIFICATIONS_SERVICE_H
+
+
+class NotificationsService
+{
+public:
+ NotificationsService();
+ ~NotificationsService();
+ bool begin();
+ void end();
+ void handle();
+ bool sendMSG(const char * title, const char * message);
+ const char * getTypeString();
+ bool started();
+private:
+ bool _started;
+ uint8_t _notificationType;
+ String _token1;
+ String _token2;
+ String _settings;
+ String _serveraddress;
+ uint16_t _port;
+ bool sendPushoverMSG(const char * title, const char * message);
+ bool sendEmailMSG(const char * title, const char * message);
+ bool sendLineMSG(const char * title, const char * message);
+ bool getPortFromSettings();
+ bool getServerAddressFromSettings();
+ bool getEmailFromSettings();
+};
+
+extern NotificationsService notificationsservice;
+
+#endif //_NOTIFICATIONS_SERVICE_H
+
diff --git a/esp3d/webinterface.cpp b/esp3d/webinterface.cpp
index 88369f95..f595b9ce 100644
--- a/esp3d/webinterface.cpp
+++ b/esp3d/webinterface.cpp
@@ -256,8 +256,6 @@ bool sendLine2Serial (String & line, int32_t linenb, int32_t * newlinenb)
return false;
}
-
-
//send M29 / M30 command to close file on SD////////////////////////////
void CloseSerialUpload (bool iserror, String & filename , int32_t linenb)
{
diff --git a/esp3d/wificonf.cpp b/esp3d/wificonf.cpp
index a24c6b97..25339160 100644
--- a/esp3d/wificonf.cpp
+++ b/esp3d/wificonf.cpp
@@ -67,6 +67,10 @@ extern "C" {
#include "esp_oled.h"
#endif
+#ifdef NOTIFICATION_FEATURE
+#include "notifications_service.h"
+#endif
+
#if defined (ASYNCWEBSERVER)
#include "asyncwebserver.h"
#else
@@ -644,6 +648,10 @@ bool WIFI_CONFIG::Enable_servers()
#endif
}
#endif
+#if defined(NOTIFICATION_FEATURE)
+ notificationsservice.begin();
+#endif
+
return true;
}
@@ -662,6 +670,9 @@ bool WIFI_CONFIG::Disable_servers()
if (WiFi.getMode() != WIFI_AP ) {
NBNS.end();
}
+#endif
+#if defined(NOTIFICATION_FEATURE)
+ notificationsservice.end();
#endif
return true;
}
diff --git a/gpl.txt b/gpl.txt
new file mode 100644
index 00000000..94a9ed02
--- /dev/null
+++ b/gpl.txt
@@ -0,0 +1,674 @@
+ GNU GENERAL PUBLIC LICENSE
+ Version 3, 29 June 2007
+
+ Copyright (C) 2007 Free Software Foundation, Inc.
+ Everyone is permitted to copy and distribute verbatim copies
+ of this license document, but changing it is not allowed.
+
+ Preamble
+
+ The GNU General Public License is a free, copyleft license for
+software and other kinds of works.
+
+ The licenses for most software and other practical works are designed
+to take away your freedom to share and change the works. By contrast,
+the GNU General Public License is intended to guarantee your freedom to
+share and change all versions of a program--to make sure it remains free
+software for all its users. We, the Free Software Foundation, use the
+GNU General Public License for most of our software; it applies also to
+any other work released this way by its authors. You can apply it to
+your programs, too.
+
+ When we speak of free software, we are referring to freedom, not
+price. Our General Public Licenses are designed to make sure that you
+have the freedom to distribute copies of free software (and charge for
+them if you wish), that you receive source code or can get it if you
+want it, that you can change the software or use pieces of it in new
+free programs, and that you know you can do these things.
+
+ To protect your rights, we need to prevent others from denying you
+these rights or asking you to surrender the rights. Therefore, you have
+certain responsibilities if you distribute copies of the software, or if
+you modify it: responsibilities to respect the freedom of others.
+
+ For example, if you distribute copies of such a program, whether
+gratis or for a fee, you must pass on to the recipients the same
+freedoms that you received. You must make sure that they, too, receive
+or can get the source code. And you must show them these terms so they
+know their rights.
+
+ Developers that use the GNU GPL protect your rights with two steps:
+(1) assert copyright on the software, and (2) offer you this License
+giving you legal permission to copy, distribute and/or modify it.
+
+ For the developers' and authors' protection, the GPL clearly explains
+that there is no warranty for this free software. For both users' and
+authors' sake, the GPL requires that modified versions be marked as
+changed, so that their problems will not be attributed erroneously to
+authors of previous versions.
+
+ Some devices are designed to deny users access to install or run
+modified versions of the software inside them, although the manufacturer
+can do so. This is fundamentally incompatible with the aim of
+protecting users' freedom to change the software. The systematic
+pattern of such abuse occurs in the area of products for individuals to
+use, which is precisely where it is most unacceptable. Therefore, we
+have designed this version of the GPL to prohibit the practice for those
+products. If such problems arise substantially in other domains, we
+stand ready to extend this provision to those domains in future versions
+of the GPL, as needed to protect the freedom of users.
+
+ Finally, every program is threatened constantly by software patents.
+States should not allow patents to restrict development and use of
+software on general-purpose computers, but in those that do, we wish to
+avoid the special danger that patents applied to a free program could
+make it effectively proprietary. To prevent this, the GPL assures that
+patents cannot be used to render the program non-free.
+
+ The precise terms and conditions for copying, distribution and
+modification follow.
+
+ TERMS AND CONDITIONS
+
+ 0. Definitions.
+
+ "This License" refers to version 3 of the GNU General Public License.
+
+ "Copyright" also means copyright-like laws that apply to other kinds of
+works, such as semiconductor masks.
+
+ "The Program" refers to any copyrightable work licensed under this
+License. Each licensee is addressed as "you". "Licensees" and
+"recipients" may be individuals or organizations.
+
+ To "modify" a work means to copy from or adapt all or part of the work
+in a fashion requiring copyright permission, other than the making of an
+exact copy. The resulting work is called a "modified version" of the
+earlier work or a work "based on" the earlier work.
+
+ A "covered work" means either the unmodified Program or a work based
+on the Program.
+
+ To "propagate" a work means to do anything with it that, without
+permission, would make you directly or secondarily liable for
+infringement under applicable copyright law, except executing it on a
+computer or modifying a private copy. Propagation includes copying,
+distribution (with or without modification), making available to the
+public, and in some countries other activities as well.
+
+ To "convey" a work means any kind of propagation that enables other
+parties to make or receive copies. Mere interaction with a user through
+a computer network, with no transfer of a copy, is not conveying.
+
+ An interactive user interface displays "Appropriate Legal Notices"
+to the extent that it includes a convenient and prominently visible
+feature that (1) displays an appropriate copyright notice, and (2)
+tells the user that there is no warranty for the work (except to the
+extent that warranties are provided), that licensees may convey the
+work under this License, and how to view a copy of this License. If
+the interface presents a list of user commands or options, such as a
+menu, a prominent item in the list meets this criterion.
+
+ 1. Source Code.
+
+ The "source code" for a work means the preferred form of the work
+for making modifications to it. "Object code" means any non-source
+form of a work.
+
+ A "Standard Interface" means an interface that either is an official
+standard defined by a recognized standards body, or, in the case of
+interfaces specified for a particular programming language, one that
+is widely used among developers working in that language.
+
+ The "System Libraries" of an executable work include anything, other
+than the work as a whole, that (a) is included in the normal form of
+packaging a Major Component, but which is not part of that Major
+Component, and (b) serves only to enable use of the work with that
+Major Component, or to implement a Standard Interface for which an
+implementation is available to the public in source code form. A
+"Major Component", in this context, means a major essential component
+(kernel, window system, and so on) of the specific operating system
+(if any) on which the executable work runs, or a compiler used to
+produce the work, or an object code interpreter used to run it.
+
+ The "Corresponding Source" for a work in object code form means all
+the source code needed to generate, install, and (for an executable
+work) run the object code and to modify the work, including scripts to
+control those activities. However, it does not include the work's
+System Libraries, or general-purpose tools or generally available free
+programs which are used unmodified in performing those activities but
+which are not part of the work. For example, Corresponding Source
+includes interface definition files associated with source files for
+the work, and the source code for shared libraries and dynamically
+linked subprograms that the work is specifically designed to require,
+such as by intimate data communication or control flow between those
+subprograms and other parts of the work.
+
+ The Corresponding Source need not include anything that users
+can regenerate automatically from other parts of the Corresponding
+Source.
+
+ The Corresponding Source for a work in source code form is that
+same work.
+
+ 2. Basic Permissions.
+
+ All rights granted under this License are granted for the term of
+copyright on the Program, and are irrevocable provided the stated
+conditions are met. This License explicitly affirms your unlimited
+permission to run the unmodified Program. The output from running a
+covered work is covered by this License only if the output, given its
+content, constitutes a covered work. This License acknowledges your
+rights of fair use or other equivalent, as provided by copyright law.
+
+ You may make, run and propagate covered works that you do not
+convey, without conditions so long as your license otherwise remains
+in force. You may convey covered works to others for the sole purpose
+of having them make modifications exclusively for you, or provide you
+with facilities for running those works, provided that you comply with
+the terms of this License in conveying all material for which you do
+not control copyright. Those thus making or running the covered works
+for you must do so exclusively on your behalf, under your direction
+and control, on terms that prohibit them from making any copies of
+your copyrighted material outside their relationship with you.
+
+ Conveying under any other circumstances is permitted solely under
+the conditions stated below. Sublicensing is not allowed; section 10
+makes it unnecessary.
+
+ 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
+
+ No covered work shall be deemed part of an effective technological
+measure under any applicable law fulfilling obligations under article
+11 of the WIPO copyright treaty adopted on 20 December 1996, or
+similar laws prohibiting or restricting circumvention of such
+measures.
+
+ When you convey a covered work, you waive any legal power to forbid
+circumvention of technological measures to the extent such circumvention
+is effected by exercising rights under this License with respect to
+the covered work, and you disclaim any intention to limit operation or
+modification of the work as a means of enforcing, against the work's
+users, your or third parties' legal rights to forbid circumvention of
+technological measures.
+
+ 4. Conveying Verbatim Copies.
+
+ You may convey verbatim copies of the Program's source code as you
+receive it, in any medium, provided that you conspicuously and
+appropriately publish on each copy an appropriate copyright notice;
+keep intact all notices stating that this License and any
+non-permissive terms added in accord with section 7 apply to the code;
+keep intact all notices of the absence of any warranty; and give all
+recipients a copy of this License along with the Program.
+
+ You may charge any price or no price for each copy that you convey,
+and you may offer support or warranty protection for a fee.
+
+ 5. Conveying Modified Source Versions.
+
+ You may convey a work based on the Program, or the modifications to
+produce it from the Program, in the form of source code under the
+terms of section 4, provided that you also meet all of these conditions:
+
+ a) The work must carry prominent notices stating that you modified
+ it, and giving a relevant date.
+
+ b) The work must carry prominent notices stating that it is
+ released under this License and any conditions added under section
+ 7. This requirement modifies the requirement in section 4 to
+ "keep intact all notices".
+
+ c) You must license the entire work, as a whole, under this
+ License to anyone who comes into possession of a copy. This
+ License will therefore apply, along with any applicable section 7
+ additional terms, to the whole of the work, and all its parts,
+ regardless of how they are packaged. This License gives no
+ permission to license the work in any other way, but it does not
+ invalidate such permission if you have separately received it.
+
+ d) If the work has interactive user interfaces, each must display
+ Appropriate Legal Notices; however, if the Program has interactive
+ interfaces that do not display Appropriate Legal Notices, your
+ work need not make them do so.
+
+ A compilation of a covered work with other separate and independent
+works, which are not by their nature extensions of the covered work,
+and which are not combined with it such as to form a larger program,
+in or on a volume of a storage or distribution medium, is called an
+"aggregate" if the compilation and its resulting copyright are not
+used to limit the access or legal rights of the compilation's users
+beyond what the individual works permit. Inclusion of a covered work
+in an aggregate does not cause this License to apply to the other
+parts of the aggregate.
+
+ 6. Conveying Non-Source Forms.
+
+ You may convey a covered work in object code form under the terms
+of sections 4 and 5, provided that you also convey the
+machine-readable Corresponding Source under the terms of this License,
+in one of these ways:
+
+ a) Convey the object code in, or embodied in, a physical product
+ (including a physical distribution medium), accompanied by the
+ Corresponding Source fixed on a durable physical medium
+ customarily used for software interchange.
+
+ b) Convey the object code in, or embodied in, a physical product
+ (including a physical distribution medium), accompanied by a
+ written offer, valid for at least three years and valid for as
+ long as you offer spare parts or customer support for that product
+ model, to give anyone who possesses the object code either (1) a
+ copy of the Corresponding Source for all the software in the
+ product that is covered by this License, on a durable physical
+ medium customarily used for software interchange, for a price no
+ more than your reasonable cost of physically performing this
+ conveying of source, or (2) access to copy the
+ Corresponding Source from a network server at no charge.
+
+ c) Convey individual copies of the object code with a copy of the
+ written offer to provide the Corresponding Source. This
+ alternative is allowed only occasionally and noncommercially, and
+ only if you received the object code with such an offer, in accord
+ with subsection 6b.
+
+ d) Convey the object code by offering access from a designated
+ place (gratis or for a charge), and offer equivalent access to the
+ Corresponding Source in the same way through the same place at no
+ further charge. You need not require recipients to copy the
+ Corresponding Source along with the object code. If the place to
+ copy the object code is a network server, the Corresponding Source
+ may be on a different server (operated by you or a third party)
+ that supports equivalent copying facilities, provided you maintain
+ clear directions next to the object code saying where to find the
+ Corresponding Source. Regardless of what server hosts the
+ Corresponding Source, you remain obligated to ensure that it is
+ available for as long as needed to satisfy these requirements.
+
+ e) Convey the object code using peer-to-peer transmission, provided
+ you inform other peers where the object code and Corresponding
+ Source of the work are being offered to the general public at no
+ charge under subsection 6d.
+
+ A separable portion of the object code, whose source code is excluded
+from the Corresponding Source as a System Library, need not be
+included in conveying the object code work.
+
+ A "User Product" is either (1) a "consumer product", which means any
+tangible personal property which is normally used for personal, family,
+or household purposes, or (2) anything designed or sold for incorporation
+into a dwelling. In determining whether a product is a consumer product,
+doubtful cases shall be resolved in favor of coverage. For a particular
+product received by a particular user, "normally used" refers to a
+typical or common use of that class of product, regardless of the status
+of the particular user or of the way in which the particular user
+actually uses, or expects or is expected to use, the product. A product
+is a consumer product regardless of whether the product has substantial
+commercial, industrial or non-consumer uses, unless such uses represent
+the only significant mode of use of the product.
+
+ "Installation Information" for a User Product means any methods,
+procedures, authorization keys, or other information required to install
+and execute modified versions of a covered work in that User Product from
+a modified version of its Corresponding Source. The information must
+suffice to ensure that the continued functioning of the modified object
+code is in no case prevented or interfered with solely because
+modification has been made.
+
+ If you convey an object code work under this section in, or with, or
+specifically for use in, a User Product, and the conveying occurs as
+part of a transaction in which the right of possession and use of the
+User Product is transferred to the recipient in perpetuity or for a
+fixed term (regardless of how the transaction is characterized), the
+Corresponding Source conveyed under this section must be accompanied
+by the Installation Information. But this requirement does not apply
+if neither you nor any third party retains the ability to install
+modified object code on the User Product (for example, the work has
+been installed in ROM).
+
+ The requirement to provide Installation Information does not include a
+requirement to continue to provide support service, warranty, or updates
+for a work that has been modified or installed by the recipient, or for
+the User Product in which it has been modified or installed. Access to a
+network may be denied when the modification itself materially and
+adversely affects the operation of the network or violates the rules and
+protocols for communication across the network.
+
+ Corresponding Source conveyed, and Installation Information provided,
+in accord with this section must be in a format that is publicly
+documented (and with an implementation available to the public in
+source code form), and must require no special password or key for
+unpacking, reading or copying.
+
+ 7. Additional Terms.
+
+ "Additional permissions" are terms that supplement the terms of this
+License by making exceptions from one or more of its conditions.
+Additional permissions that are applicable to the entire Program shall
+be treated as though they were included in this License, to the extent
+that they are valid under applicable law. If additional permissions
+apply only to part of the Program, that part may be used separately
+under those permissions, but the entire Program remains governed by
+this License without regard to the additional permissions.
+
+ When you convey a copy of a covered work, you may at your option
+remove any additional permissions from that copy, or from any part of
+it. (Additional permissions may be written to require their own
+removal in certain cases when you modify the work.) You may place
+additional permissions on material, added by you to a covered work,
+for which you have or can give appropriate copyright permission.
+
+ Notwithstanding any other provision of this License, for material you
+add to a covered work, you may (if authorized by the copyright holders of
+that material) supplement the terms of this License with terms:
+
+ a) Disclaiming warranty or limiting liability differently from the
+ terms of sections 15 and 16 of this License; or
+
+ b) Requiring preservation of specified reasonable legal notices or
+ author attributions in that material or in the Appropriate Legal
+ Notices displayed by works containing it; or
+
+ c) Prohibiting misrepresentation of the origin of that material, or
+ requiring that modified versions of such material be marked in
+ reasonable ways as different from the original version; or
+
+ d) Limiting the use for publicity purposes of names of licensors or
+ authors of the material; or
+
+ e) Declining to grant rights under trademark law for use of some
+ trade names, trademarks, or service marks; or
+
+ f) Requiring indemnification of licensors and authors of that
+ material by anyone who conveys the material (or modified versions of
+ it) with contractual assumptions of liability to the recipient, for
+ any liability that these contractual assumptions directly impose on
+ those licensors and authors.
+
+ All other non-permissive additional terms are considered "further
+restrictions" within the meaning of section 10. If the Program as you
+received it, or any part of it, contains a notice stating that it is
+governed by this License along with a term that is a further
+restriction, you may remove that term. If a license document contains
+a further restriction but permits relicensing or conveying under this
+License, you may add to a covered work material governed by the terms
+of that license document, provided that the further restriction does
+not survive such relicensing or conveying.
+
+ If you add terms to a covered work in accord with this section, you
+must place, in the relevant source files, a statement of the
+additional terms that apply to those files, or a notice indicating
+where to find the applicable terms.
+
+ Additional terms, permissive or non-permissive, may be stated in the
+form of a separately written license, or stated as exceptions;
+the above requirements apply either way.
+
+ 8. Termination.
+
+ You may not propagate or modify a covered work except as expressly
+provided under this License. Any attempt otherwise to propagate or
+modify it is void, and will automatically terminate your rights under
+this License (including any patent licenses granted under the third
+paragraph of section 11).
+
+ However, if you cease all violation of this License, then your
+license from a particular copyright holder is reinstated (a)
+provisionally, unless and until the copyright holder explicitly and
+finally terminates your license, and (b) permanently, if the copyright
+holder fails to notify you of the violation by some reasonable means
+prior to 60 days after the cessation.
+
+ Moreover, your license from a particular copyright holder is
+reinstated permanently if the copyright holder notifies you of the
+violation by some reasonable means, this is the first time you have
+received notice of violation of this License (for any work) from that
+copyright holder, and you cure the violation prior to 30 days after
+your receipt of the notice.
+
+ Termination of your rights under this section does not terminate the
+licenses of parties who have received copies or rights from you under
+this License. If your rights have been terminated and not permanently
+reinstated, you do not qualify to receive new licenses for the same
+material under section 10.
+
+ 9. Acceptance Not Required for Having Copies.
+
+ You are not required to accept this License in order to receive or
+run a copy of the Program. Ancillary propagation of a covered work
+occurring solely as a consequence of using peer-to-peer transmission
+to receive a copy likewise does not require acceptance. However,
+nothing other than this License grants you permission to propagate or
+modify any covered work. These actions infringe copyright if you do
+not accept this License. Therefore, by modifying or propagating a
+covered work, you indicate your acceptance of this License to do so.
+
+ 10. Automatic Licensing of Downstream Recipients.
+
+ Each time you convey a covered work, the recipient automatically
+receives a license from the original licensors, to run, modify and
+propagate that work, subject to this License. You are not responsible
+for enforcing compliance by third parties with this License.
+
+ An "entity transaction" is a transaction transferring control of an
+organization, or substantially all assets of one, or subdividing an
+organization, or merging organizations. If propagation of a covered
+work results from an entity transaction, each party to that
+transaction who receives a copy of the work also receives whatever
+licenses to the work the party's predecessor in interest had or could
+give under the previous paragraph, plus a right to possession of the
+Corresponding Source of the work from the predecessor in interest, if
+the predecessor has it or can get it with reasonable efforts.
+
+ You may not impose any further restrictions on the exercise of the
+rights granted or affirmed under this License. For example, you may
+not impose a license fee, royalty, or other charge for exercise of
+rights granted under this License, and you may not initiate litigation
+(including a cross-claim or counterclaim in a lawsuit) alleging that
+any patent claim is infringed by making, using, selling, offering for
+sale, or importing the Program or any portion of it.
+
+ 11. Patents.
+
+ A "contributor" is a copyright holder who authorizes use under this
+License of the Program or a work on which the Program is based. The
+work thus licensed is called the contributor's "contributor version".
+
+ A contributor's "essential patent claims" are all patent claims
+owned or controlled by the contributor, whether already acquired or
+hereafter acquired, that would be infringed by some manner, permitted
+by this License, of making, using, or selling its contributor version,
+but do not include claims that would be infringed only as a
+consequence of further modification of the contributor version. For
+purposes of this definition, "control" includes the right to grant
+patent sublicenses in a manner consistent with the requirements of
+this License.
+
+ Each contributor grants you a non-exclusive, worldwide, royalty-free
+patent license under the contributor's essential patent claims, to
+make, use, sell, offer for sale, import and otherwise run, modify and
+propagate the contents of its contributor version.
+
+ In the following three paragraphs, a "patent license" is any express
+agreement or commitment, however denominated, not to enforce a patent
+(such as an express permission to practice a patent or covenant not to
+sue for patent infringement). To "grant" such a patent license to a
+party means to make such an agreement or commitment not to enforce a
+patent against the party.
+
+ If you convey a covered work, knowingly relying on a patent license,
+and the Corresponding Source of the work is not available for anyone
+to copy, free of charge and under the terms of this License, through a
+publicly available network server or other readily accessible means,
+then you must either (1) cause the Corresponding Source to be so
+available, or (2) arrange to deprive yourself of the benefit of the
+patent license for this particular work, or (3) arrange, in a manner
+consistent with the requirements of this License, to extend the patent
+license to downstream recipients. "Knowingly relying" means you have
+actual knowledge that, but for the patent license, your conveying the
+covered work in a country, or your recipient's use of the covered work
+in a country, would infringe one or more identifiable patents in that
+country that you have reason to believe are valid.
+
+ If, pursuant to or in connection with a single transaction or
+arrangement, you convey, or propagate by procuring conveyance of, a
+covered work, and grant a patent license to some of the parties
+receiving the covered work authorizing them to use, propagate, modify
+or convey a specific copy of the covered work, then the patent license
+you grant is automatically extended to all recipients of the covered
+work and works based on it.
+
+ A patent license is "discriminatory" if it does not include within
+the scope of its coverage, prohibits the exercise of, or is
+conditioned on the non-exercise of one or more of the rights that are
+specifically granted under this License. You may not convey a covered
+work if you are a party to an arrangement with a third party that is
+in the business of distributing software, under which you make payment
+to the third party based on the extent of your activity of conveying
+the work, and under which the third party grants, to any of the
+parties who would receive the covered work from you, a discriminatory
+patent license (a) in connection with copies of the covered work
+conveyed by you (or copies made from those copies), or (b) primarily
+for and in connection with specific products or compilations that
+contain the covered work, unless you entered into that arrangement,
+or that patent license was granted, prior to 28 March 2007.
+
+ Nothing in this License shall be construed as excluding or limiting
+any implied license or other defenses to infringement that may
+otherwise be available to you under applicable patent law.
+
+ 12. No Surrender of Others' Freedom.
+
+ If conditions are imposed on you (whether by court order, agreement or
+otherwise) that contradict the conditions of this License, they do not
+excuse you from the conditions of this License. If you cannot convey a
+covered work so as to satisfy simultaneously your obligations under this
+License and any other pertinent obligations, then as a consequence you may
+not convey it at all. For example, if you agree to terms that obligate you
+to collect a royalty for further conveying from those to whom you convey
+the Program, the only way you could satisfy both those terms and this
+License would be to refrain entirely from conveying the Program.
+
+ 13. Use with the GNU Affero General Public License.
+
+ Notwithstanding any other provision of this License, you have
+permission to link or combine any covered work with a work licensed
+under version 3 of the GNU Affero General Public License into a single
+combined work, and to convey the resulting work. The terms of this
+License will continue to apply to the part which is the covered work,
+but the special requirements of the GNU Affero General Public License,
+section 13, concerning interaction through a network will apply to the
+combination as such.
+
+ 14. Revised Versions of this License.
+
+ The Free Software Foundation may publish revised and/or new versions of
+the GNU General Public License from time to time. Such new versions will
+be similar in spirit to the present version, but may differ in detail to
+address new problems or concerns.
+
+ Each version is given a distinguishing version number. If the
+Program specifies that a certain numbered version of the GNU General
+Public License "or any later version" applies to it, you have the
+option of following the terms and conditions either of that numbered
+version or of any later version published by the Free Software
+Foundation. If the Program does not specify a version number of the
+GNU General Public License, you may choose any version ever published
+by the Free Software Foundation.
+
+ If the Program specifies that a proxy can decide which future
+versions of the GNU General Public License can be used, that proxy's
+public statement of acceptance of a version permanently authorizes you
+to choose that version for the Program.
+
+ Later license versions may give you additional or different
+permissions. However, no additional obligations are imposed on any
+author or copyright holder as a result of your choosing to follow a
+later version.
+
+ 15. Disclaimer of Warranty.
+
+ THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
+APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
+HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
+OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
+THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
+IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
+ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
+
+ 16. Limitation of Liability.
+
+ IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
+WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
+THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
+GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
+USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
+DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
+PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
+EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
+SUCH DAMAGES.
+
+ 17. Interpretation of Sections 15 and 16.
+
+ If the disclaimer of warranty and limitation of liability provided
+above cannot be given local legal effect according to their terms,
+reviewing courts shall apply local law that most closely approximates
+an absolute waiver of all civil liability in connection with the
+Program, unless a warranty or assumption of liability accompanies a
+copy of the Program in return for a fee.
+
+ END OF TERMS AND CONDITIONS
+
+ How to Apply These Terms to Your New Programs
+
+ If you develop a new program, and you want it to be of the greatest
+possible use to the public, the best way to achieve this is to make it
+free software which everyone can redistribute and change under these terms.
+
+ To do so, attach the following notices to the program. It is safest
+to attach them to the start of each source file to most effectively
+state the exclusion of warranty; and each file should have at least
+the "copyright" line and a pointer to where the full notice is found.
+
+
+ Copyright (C)
+
+ This program is free software: you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program. If not, see .
+
+Also add information on how to contact you by electronic and paper mail.
+
+ If the program does terminal interaction, make it output a short
+notice like this when it starts in an interactive mode:
+
+ Copyright (C)
+ This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
+ This is free software, and you are welcome to redistribute it
+ under certain conditions; type `show c' for details.
+
+The hypothetical commands `show w' and `show c' should show the appropriate
+parts of the General Public License. Of course, your program's commands
+might be different; for a GUI interface, you would use an "about box".
+
+ You should also get your employer (if you work as a programmer) or school,
+if any, to sign a "copyright disclaimer" for the program, if necessary.
+For more information on this, and how to apply and follow the GNU GPL, see
+.
+
+ The GNU General Public License does not permit incorporating your program
+into proprietary programs. If your program is a subroutine library, you
+may consider it more useful to permit linking proprietary applications with
+the library. If this is what you want to do, use the GNU Lesser General
+Public License instead of this License. But first, please read
+.