Show analog pins in pin dropdown and show only if analog signal

- shorten oappend MM function names
- add aOpt: analog options only
- add pin 17 for esp8266 (analog pin)
- add a.pins array to show analog pins in pin dropdown
This commit is contained in:
Ewoud
2023-01-23 20:44:12 +01:00
parent fb3e5cf3e8
commit 15d753aa4a
10 changed files with 274 additions and 248 deletions

View File

@@ -235,9 +235,9 @@ public:
oappend(SET_F("addHB('BH1750');"));
// WLEDMM this usermod can ONLY use HW_I2C - so always use globals
//oappend(SET_F("addInfo('BH1750:pin[]',0,'','I2C SCL');"));
//oappend(SET_F("rOption('BH1750:pin[]',0,'use global (")); oappendi(i2c_scl); oappend(")',-1);");
//oappend(SET_F("rOpt('BH1750:pin[]',0,'use global (")); oappendi(i2c_scl); oappend(")',-1);");
//oappend(SET_F("addInfo('BH1750:pin[]',1,'','I2C SDA');"));
//oappend(SET_F("rOption('BH1750:pin[]',1,'use global (")); oappendi(i2c_sda); oappend(")',-1);");
//oappend(SET_F("rOpt('BH1750:pin[]',1,'use global (")); oappendi(i2c_sda); oappend(")',-1);");
}
// (called from set.cpp) stores persistent properties to cfg.json

View File

@@ -408,11 +408,11 @@ public:
oappend(SET_F("addHB('BME280/BMP280');"));
oappend(SET_F("addInfo('BME280/BMP280:pin[]',0,'','I2C/SPI CLK');"));
oappend(SET_F("disableRO('BME280/BMP280:pin[]',0);"));
oappend(SET_F("rOption('BME280/BMP280:pin[]',0,'use global (")); oappendi(i2c_scl); oappend(")',-1);");
oappend(SET_F("dRO('BME280/BMP280:pin[]',0);"));
oappend(SET_F("rOpt('BME280/BMP280:pin[]',0,'use global (")); oappendi(i2c_scl); oappend(")',-1);");
oappend(SET_F("addInfo('BME280/BMP280:pin[]',1,'','I2C/SPI DTA');"));
oappend(SET_F("rOption('BME280/BMP280:pin[]',1,'use global (")); oappendi(i2c_sda); oappend(")',-1);");
oappend(SET_F("rOpt('BME280/BMP280:pin[]',1,'use global (")); oappendi(i2c_sda); oappend(")',-1);");
}

View File

@@ -2032,8 +2032,9 @@ class AudioReactive : public Usermod {
//WLEDMM: add defaults
#ifdef AUDIOPIN
oappend(SET_F("xOption('AudioReactive:analogmic:pin',1,' ⎌',")); oappendi(AUDIOPIN); oappend(");");
oappend(SET_F("xOpt('AudioReactive:analogmic:pin',1,' ⎌',")); oappendi(AUDIOPIN); oappend(");");
#endif
oappend(SET_F("aOpt('AudioReactive:analogmic:pin',1);")); //only analog options
oappend(SET_F("dd=addDropdown('AudioReactive','digitalmic:type');"));
#if !defined(CONFIG_IDF_TARGET_ESP32S2) && !defined(CONFIG_IDF_TARGET_ESP32C3) && !defined(CONFIG_IDF_TARGET_ESP32S3)
@@ -2162,29 +2163,29 @@ class AudioReactive : public Usermod {
oappend(SET_F("addInfo('AudioReactive:digitalmic:type',1,'<i>requires reboot!</i>');")); // 0 is field type, 1 is actual field
oappend(SET_F("addInfo('AudioReactive:digitalmic:pin[]',0,'<i>sd/data/dout</i>','I2S SD');"));
#ifdef I2S_SDPIN
oappend(SET_F("xOption('AudioReactive:digitalmic:pin[]',0,' ⎌',")); oappendi(I2S_SDPIN); oappend(");");
oappend(SET_F("xOpt('AudioReactive:digitalmic:pin[]',0,' ⎌',")); oappendi(I2S_SDPIN); oappend(");");
#endif
oappend(SET_F("addInfo('AudioReactive:digitalmic:pin[]',1,'<i>ws/clk/lrck</i>','I2S WS');"));
oappend(SET_F("disableRO('AudioReactive:digitalmic:pin[]',1);"));
oappend(SET_F("dRO('AudioReactive:digitalmic:pin[]',1);"));
#ifdef I2S_WSPIN
oappend(SET_F("xOption('AudioReactive:digitalmic:pin[]',1,' ⎌',")); oappendi(I2S_WSPIN); oappend(");");
oappend(SET_F("xOpt('AudioReactive:digitalmic:pin[]',1,' ⎌',")); oappendi(I2S_WSPIN); oappend(");");
#endif
oappend(SET_F("addInfo('AudioReactive:digitalmic:pin[]',2,'<i>sck/bclk</i>','I2S SCK');"));
oappend(SET_F("disableRO('AudioReactive:digitalmic:pin[]',2);"));
oappend(SET_F("dRO('AudioReactive:digitalmic:pin[]',2);"));
#ifdef I2S_CKPIN
oappend(SET_F("xOption('AudioReactive:digitalmic:pin[]',2,' ⎌',")); oappendi(I2S_CKPIN); oappend(");");
oappend(SET_F("xOpt('AudioReactive:digitalmic:pin[]',2,' ⎌',")); oappendi(I2S_CKPIN); oappend(");");
#endif
oappend(SET_F("addInfo('AudioReactive:digitalmic:pin[]',3,'<i>master clock</i>','I2S MCLK');"));
oappend(SET_F("disableRO('AudioReactive:digitalmic:pin[]',3);"));
oappend(SET_F("dRO('AudioReactive:digitalmic:pin[]',3);"));
#if !defined(CONFIG_IDF_TARGET_ESP32S2) && !defined(CONFIG_IDF_TARGET_ESP32C3) && !defined(CONFIG_IDF_TARGET_ESP32S3)
oappend(SET_F("dOptions('AudioReactive:digitalmic:pin[]',3,2,2);")); //only use -1, 0, 1 or 3
oappend(SET_F("dOptions('AudioReactive:digitalmic:pin[]',3,4,39);")); //only use -1, 0, 1 or 3
oappend(SET_F("dOpt('AudioReactive:digitalmic:pin[]',3,2,2);")); //only use -1, 0, 1 or 3
oappend(SET_F("dOpt('AudioReactive:digitalmic:pin[]',3,4,39);")); //only use -1, 0, 1 or 3
#endif
oappend(SET_F("addInfo('AudioReactive:digitalmic:pin[]',4,'','I2C SDA');"));
oappend(SET_F("rOption('AudioReactive:digitalmic:pin[]',4,'use global (")); oappendi(i2c_sda); oappend(")',-1);");
oappend(SET_F("rOpt('AudioReactive:digitalmic:pin[]',4,'use global (")); oappendi(i2c_sda); oappend(")',-1);");
oappend(SET_F("addInfo('AudioReactive:digitalmic:pin[]',5,'','I2C SCL');"));
oappend(SET_F("rOption('AudioReactive:digitalmic:pin[]',5,'use global (")); oappendi(i2c_scl); oappend(")',-1);");
oappend(SET_F("disableRO('AudioReactive:digitalmic:pin[]',5);"));
oappend(SET_F("rOpt('AudioReactive:digitalmic:pin[]',5,'use global (")); oappendi(i2c_scl); oappend(")',-1);");
oappend(SET_F("dRO('AudioReactive:digitalmic:pin[]',5);"));
}

View File

@@ -1064,23 +1064,23 @@ class FourLineDisplayUsermod : public Usermod {
bool isSPI = (type == SSD1306_SPI || type == SSD1306_SPI64);
// WLEDMM add defaults
oappend(SET_F("addInfo('4LineDisplay:pin[]',0,'','I2C/SPI CLK');"));
oappend(SET_F("disableRO('4LineDisplay:pin[]',0);"));
oappend(SET_F("dRO('4LineDisplay:pin[]',0);"));
#ifdef FLD_PIN_SCL
oappend(SET_F("xOption('4LineDisplay:pin[]',0,' ⎌',")); oappendi(FLD_PIN_SCL); oappend(");");
oappend(SET_F("xOpt('4LineDisplay:pin[]',0,' ⎌',")); oappendi(FLD_PIN_SCL); oappend(");");
#endif
if (isSPI) {
oappend(SET_F("rOption('4LineDisplay:pin[]',0,'use global (")); oappendi(spi_sclk); oappend(")',-1);");
oappend(SET_F("rOpt('4LineDisplay:pin[]',0,'use global (")); oappendi(spi_sclk); oappend(")',-1);");
} else {
oappend(SET_F("rOption('4LineDisplay:pin[]',0,'use global (")); oappendi(i2c_scl); oappend(")',-1);");
oappend(SET_F("rOpt('4LineDisplay:pin[]',0,'use global (")); oappendi(i2c_scl); oappend(")',-1);");
}
oappend(SET_F("addInfo('4LineDisplay:pin[]',1,'','I2C/SPI DTA');"));
#ifdef FLD_PIN_SDA
oappend(SET_F("xOption('4LineDisplay:pin[]',1,' ⎌',")); oappendi(FLD_PIN_SDA); oappend(");");
oappend(SET_F("xOpt('4LineDisplay:pin[]',1,' ⎌',")); oappendi(FLD_PIN_SDA); oappend(");");
#endif
if (isSPI) {
oappend(SET_F("rOption('4LineDisplay:pin[]',1,'use global (")); oappendi(spi_mosi); oappend(")',-1);");
oappend(SET_F("rOpt('4LineDisplay:pin[]',1,'use global (")); oappendi(spi_mosi); oappend(")',-1);");
} else {
oappend(SET_F("rOption('4LineDisplay:pin[]',1,'use global (")); oappendi(i2c_sda); oappend(")',-1);");
oappend(SET_F("rOpt('4LineDisplay:pin[]',1,'use global (")); oappendi(i2c_sda); oappend(")',-1);");
}
oappend(SET_F("addInfo('4LineDisplay:pin[]',2,'','SPI CS');"));
oappend(SET_F("addInfo('4LineDisplay:pin[]',3,'','SPI DC');"));

View File

@@ -875,13 +875,13 @@ public:
oappend(SET_F("addHB('Rotary-Encoder');"));
#ifdef ENCODER_DT_PIN
oappend(SET_F("xOption('Rotary-Encoder:DT-pin',1,' ⎌',")); oappendi(ENCODER_DT_PIN); oappend(");");
oappend(SET_F("xOpt('Rotary-Encoder:DT-pin',1,' ⎌',")); oappendi(ENCODER_DT_PIN); oappend(");");
#endif
#ifdef ENCODER_CLK_PIN
oappend(SET_F("xOption('Rotary-Encoder:CLK-pin',1,' ⎌',")); oappendi(ENCODER_CLK_PIN); oappend(");");
oappend(SET_F("xOpt('Rotary-Encoder:CLK-pin',1,' ⎌',")); oappendi(ENCODER_CLK_PIN); oappend(");");
#endif
#ifdef ENCODER_SW_PIN
oappend(SET_F("xOption('Rotary-Encoder:SW-pin',1,' ⎌',")); oappendi(ENCODER_SW_PIN); oappend(");");
oappend(SET_F("xOpt('Rotary-Encoder:SW-pin',1,' ⎌',")); oappendi(ENCODER_SW_PIN); oappend(");");
#endif
}

View File

@@ -183,7 +183,7 @@
}
}
//WLEDMM: replace Option to set globals
function rOption(name,el,txt,val) {
function rOpt(name,el,txt,val) {
let obj = d.getElementsByName(name);
var select = obj;
if (obj[el]) select = obj[el];
@@ -193,7 +193,7 @@
}
}
//WLEDMM: extend Option to set build flag defaults
function xOption(name,el,txt,val) {
function xOpt(name,el,txt,val) {
let obj = d.getElementsByName(name);
var select = obj;
if (obj[el]) select = obj[el];
@@ -203,7 +203,7 @@
}
}
//WLEDMM: delete Options to remove options e.g. mclk
function dOptions(name,el,valFrom,valTo) {
function dOpt(name,el,valFrom,valTo) {
let obj = d.getElementsByName(name);
var select = obj;
if (obj[el]) select = obj[el];
@@ -217,23 +217,40 @@
//https://www.javascripttutorial.net/javascript-dom/javascript-remove-items-from-a-select-conditionally/
}
}
//WLEDMM
function disableRO(name,el) {
//WLEDMM: analog options only
function aOpt(name,el) {
let obj = d.getElementsByName(name);
var select = obj;
if (obj[el]) select = obj[el];
// console.log("disableRO", name, el, obj, "s", select, d.ro_gpio);
for (let i=0; i<select.options.length; i++) {
let c = select.options[i];
// console.log("disableRO option", c, c.value, d.ro_gpio.includes(c.value));
found = false;
for (let jj=0; jj<d.a_pins.length; jj++) if (d.a_pins[jj] == c.value) found = true; //value -1 or analog pins
if (c.value != -1 && !found) {
select.removeChild(c);
i--; //decrease i by one because the index has been adjusted
}
//https://www.javascripttutorial.net/javascript-dom/javascript-add-remove-options/
//https://www.javascripttutorial.net/javascript-dom/javascript-remove-items-from-a-select-conditionally/
}
}
//WLEDMM disable read only pins
function dRO(name,el) {
let obj = d.getElementsByName(name);
var select = obj;
if (obj[el]) select = obj[el];
// console.log("dRO", name, el, obj, "s", select, d.ro_gpio);
for (let i=0; i<select.options.length; i++) {
let c = select.options[i];
// console.log("dRO option", c, c.value, d.ro_gpio.includes(c.value));
for (let j=0; j<d.ro_gpio.length; j++) if (d.ro_gpio[j] == c.value) c.disabled=true; //if (d.ro_gpio.includes(c.value))
}
}
//WLEDMM read only pins 🟠, reserved pins 🟣 and disabled, and remove pins > max_gpio
function pinDropdownsPost() {
// console.log('pinDropdownsPost', d.max_gpio, d.ro_gpio, d.rsvd);
function pinPost() {
// console.log('pinPost', d.max_gpio, d.ro_gpio, d.rsvd);
var elements = gId("form_s").elements;
for (var i = 0, select; select = elements[i++];) {
@@ -241,7 +258,7 @@
// console.log(element);
for (let i=0; i<select.options.length; i++) {
let c = select.options[i];
// console.log("pinDropdownsPost option", c, c.value, d.ro_gpio.includes(c.value));
// console.log("pinPost option", c, c.value, d.ro_gpio.includes(c.value));
for (let j=0; j<d.ro_gpio.length; j++) if (d.ro_gpio[j] == c.value) c.text += " read only 🟠"; //if (d.ro_gpio.includes(c.value)) not working ???
for (let j=0; j<d.rsvd.length; j++) if (d.rsvd[j] == c.value) {c.text += " reserved 🟣"; c.disabled=true;} //now always disabled as post is done last if (d.rsvd.includes(c.value))
//remove pins > max_gpio
@@ -253,6 +270,7 @@
//https://www.javascripttutorial.net/javascript-dom/javascript-remove-items-from-a-select-conditionally/
if (c.text.length <= 4) c.text += " 🟢"; //2 digit number space and ⍼/⎌. If no reserved/read only/other um, then pin can be freely used (green)
for (let jj=0; jj<d.dt_pins.length; jj++) if (d.dt_pins[jj] == c.value) c.text += ((jj<9)?` D${jj}`:((jj==9)?` RX`:` TX`)); //WLEDMM: Add D0-D8, RX/TX to name
for (let jj=0; jj<d.a_pins.length; jj++) if (d.a_pins[jj] == c.value) c.text += ` A${jj}`; //WLEDMM: Add A0-A10
}
}
}

View File

@@ -1679,200 +1679,203 @@ const uint8_t PAGE_settings_sec[] PROGMEM = {
// Autogenerated from wled00/data/settings_um.htm, do not edit!!
const uint16_t PAGE_settings_um_length = 3063;
const uint16_t PAGE_settings_um_length = 3107;
const uint8_t PAGE_settings_um[] PROGMEM = {
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x13, 0xcd, 0x59, 0xef, 0x72, 0xdb, 0xc6,
0x11, 0xff, 0xae, 0xa7, 0x80, 0x2e, 0x1a, 0x09, 0x18, 0x42, 0x20, 0x15, 0x27, 0x33, 0x36, 0xc1,
0x83, 0x6a, 0xcb, 0x4e, 0xac, 0xd6, 0x8e, 0x34, 0x91, 0x9d, 0xa4, 0xa3, 0xa8, 0x16, 0x08, 0x1c,
0x11, 0xff, 0xae, 0xa7, 0x80, 0x2e, 0x1a, 0x09, 0x18, 0x42, 0x20, 0x15, 0x27, 0x33, 0x36, 0xc9,
0x83, 0x6a, 0xc9, 0x4e, 0xac, 0xd6, 0x8e, 0x34, 0x91, 0x9d, 0xa4, 0x23, 0xab, 0x16, 0x08, 0x1c,
0xc9, 0xb3, 0xc0, 0x3b, 0x04, 0x38, 0xe8, 0x4f, 0x29, 0xbe, 0x45, 0xbf, 0xa7, 0xd3, 0xbe, 0x42,
0x1f, 0xac, 0x8f, 0xd0, 0xdf, 0xdd, 0x01, 0x20, 0x28, 0x4b, 0x72, 0xda, 0x69, 0x67, 0xfa, 0x45,
0x02, 0x0e, 0x7b, 0x7b, 0xfb, 0xe7, 0xb7, 0x7b, 0xbb, 0xcb, 0xd1, 0xe6, 0xcb, 0xa3, 0x83, 0x77,
0x7f, 0x3c, 0x7e, 0xe5, 0xcc, 0xd4, 0x3c, 0x8b, 0x46, 0xf5, 0x5f, 0x16, 0xa7, 0x4e, 0x16, 0x8b,
0x29, 0x25, 0x4c, 0x90, 0x68, 0x34, 0x67, 0x2a, 0x76, 0x92, 0x59, 0x5c, 0x94, 0x4c, 0x51, 0x52,
0xa9, 0xc9, 0xee, 0xd3, 0x66, 0x75, 0x43, 0xc4, 0x73, 0x46, 0xc9, 0x25, 0x67, 0x57, 0xb9, 0x2c,
0x14, 0x71, 0x12, 0x29, 0x14, 0x13, 0x20, 0xbb, 0xe2, 0xa9, 0x9a, 0xd1, 0xaf, 0x07, 0x83, 0x96,
0xf4, 0xce, 0xa7, 0x94, 0x5d, 0xf2, 0x84, 0xed, 0x9a, 0x17, 0x9f, 0x0b, 0xae, 0x78, 0x9c, 0xed,
0x96, 0x49, 0x9c, 0x31, 0xba, 0xe7, 0xcf, 0xe3, 0x6b, 0x3e, 0xaf, 0xe6, 0xed, 0x7b, 0x55, 0xb2,
0xc2, 0xbc, 0xc4, 0x63, 0xbc, 0x0b, 0x49, 0x3e, 0x39, 0x39, 0x1a, 0x29, 0xae, 0x32, 0x16, 0xbd,
0x07, 0xe5, 0x5c, 0xa6, 0xce, 0x09, 0x53, 0x8a, 0x8b, 0x69, 0x39, 0xea, 0xdb, 0xf5, 0x51, 0x99,
0x14, 0x3c, 0x57, 0xd1, 0xc6, 0x65, 0x5c, 0x38, 0x29, 0x4d, 0x65, 0x52, 0xcd, 0x21, 0x4d, 0x98,
0x06, 0x38, 0xeb, 0xc3, 0x34, 0xe7, 0x92, 0x3e, 0x79, 0xe6, 0xa7, 0x41, 0x35, 0xff, 0x90, 0xd3,
0xd3, 0x33, 0x3c, 0x15, 0xe5, 0x65, 0x5a, 0x3f, 0x49, 0x4b, 0x70, 0x7a, 0x16, 0xea, 0xdd, 0xf2,
0x4a, 0xb0, 0xc2, 0xcf, 0x64, 0xc2, 0x73, 0xbf, 0x2a, 0xe4, 0x55, 0xe9, 0x57, 0xf3, 0x83, 0xc9,
0x94, 0x2e, 0x96, 0x7e, 0xce, 0x45, 0xa9, 0xf7, 0xe0, 0xff, 0x91, 0xfe, 0x0f, 0x22, 0xba, 0xb9,
0x17, 0x4e, 0x2a, 0x91, 0x28, 0x2e, 0x85, 0x33, 0x3d, 0x4c, 0x5d, 0xe6, 0x2d, 0x0a, 0xa6, 0xaa,
0x42, 0x38, 0x69, 0x30, 0x65, 0xea, 0x55, 0xc6, 0xb4, 0x20, 0x2f, 0x6e, 0xcc, 0xa7, 0x65, 0x4b,
0xca, 0xcb, 0xa3, 0x0e, 0x29, 0xdb, 0xde, 0x26, 0x72, 0xfc, 0x91, 0x25, 0x8a, 0x50, 0xaa, 0x6e,
0x72, 0x26, 0x27, 0x7a, 0x6d, 0xf3, 0x79, 0x51, 0xc4, 0x37, 0x01, 0x2f, 0xcd, 0xff, 0xb5, 0xfd,
0xaf, 0x5d, 0x6f, 0x71, 0xc5, 0x45, 0x2a, 0xaf, 0x02, 0x99, 0x33, 0xe1, 0x92, 0x99, 0x52, 0x79,
0x39, 0xec, 0xf7, 0xa7, 0x5c, 0xcd, 0xaa, 0x71, 0x90, 0xc8, 0x79, 0xff, 0x39, 0x2f, 0x12, 0x29,
0xe5, 0x05, 0x67, 0xfd, 0x1f, 0xdf, 0xbc, 0x7a, 0xd9, 0xbf, 0xe2, 0x17, 0xbc, 0xdf, 0x58, 0xee,
0x8b, 0xca, 0x9a, 0x72, 0xb7, 0xac, 0x17, 0x48, 0x87, 0xfb, 0x8b, 0xbb, 0xdc, 0xfb, 0x2d, 0x95,
0x4f, 0x3e, 0x94, 0x2c, 0x9b, 0x74, 0xa9, 0x33, 0x19, 0xa7, 0xbf, 0x3f, 0x71, 0x99, 0xaf, 0xe8,
0xe6, 0xc0, 0x5b, 0x64, 0x4c, 0x39, 0x82, 0xa6, 0x41, 0x52, 0xb0, 0x58, 0xb1, 0xda, 0x00, 0x2e,
0xb1, 0x1e, 0x22, 0x5e, 0x28, 0x02, 0x30, 0x7b, 0xae, 0x54, 0xc1, 0xc7, 0x95, 0x62, 0xf8, 0x50,
0x24, 0xc4, 0x67, 0x9e, 0x7f, 0x77, 0x5d, 0xdb, 0x01, 0xc7, 0x29, 0x76, 0xad, 0xfa, 0x1f, 0xe3,
0xcb, 0xb8, 0x61, 0xf0, 0x09, 0x61, 0x5c, 0xde, 0x08, 0xb0, 0x50, 0x1e, 0x9c, 0x39, 0x96, 0xe9,
0x4d, 0x10, 0xe7, 0x10, 0x3a, 0x3d, 0x98, 0xf1, 0x2c, 0x75, 0x85, 0xa6, 0x8f, 0xd3, 0xf4, 0xd5,
0x25, 0xa4, 0x78, 0xc3, 0x4b, 0x80, 0x94, 0x15, 0x2e, 0xd1, 0x32, 0x13, 0xdf, 0xf5, 0x68, 0xb4,
0xf8, 0x96, 0xa9, 0x1f, 0x5c, 0x2f, 0x9c, 0xc8, 0xc2, 0xd5, 0xa2, 0x33, 0x3a, 0x08, 0xd9, 0xc8,
0x02, 0x24, 0xc8, 0x98, 0x98, 0xaa, 0x59, 0xc8, 0x7a, 0x3d, 0x4f, 0x3b, 0x3f, 0xc8, 0xab, 0x72,
0xe6, 0xda, 0x6f, 0xa7, 0xec, 0xcc, 0x33, 0x48, 0xb0, 0x8b, 0x44, 0xaf, 0x41, 0xbb, 0xdd, 0x3d,
0x4a, 0x2d, 0xce, 0x4e, 0x07, 0x67, 0xdb, 0xdb, 0xf6, 0x31, 0x28, 0x67, 0x7c, 0xa2, 0x5c, 0x6f,
0x79, 0xbf, 0x30, 0xac, 0x28, 0x64, 0x01, 0x1b, 0x40, 0x18, 0x84, 0x51, 0x29, 0x33, 0x16, 0x64,
0x72, 0xea, 0x92, 0x57, 0x7a, 0xdd, 0xa9, 0x2d, 0x0c, 0xeb, 0x3b, 0x13, 0x9e, 0x31, 0x63, 0x2b,
0xc4, 0x4d, 0x01, 0x9b, 0xbe, 0xa9, 0xd7, 0x01, 0x17, 0x6c, 0x9c, 0xf0, 0x69, 0x55, 0xc4, 0xc6,
0x25, 0xd6, 0x56, 0xce, 0x24, 0xc6, 0x86, 0x34, 0xf8, 0x59, 0x1c, 0x0a, 0x00, 0x22, 0x87, 0x7a,
0xcc, 0xc9, 0xe3, 0x29, 0x73, 0xd2, 0x58, 0xc5, 0x9b, 0xf0, 0x61, 0xc7, 0x8b, 0x27, 0xf0, 0x39,
0xd1, 0x07, 0x0c, 0x81, 0xc1, 0xda, 0xf9, 0x00, 0xb8, 0xe1, 0x17, 0xe4, 0x85, 0x54, 0x32, 0x91,
0xd9, 0xf6, 0xb6, 0x6b, 0x40, 0x3f, 0xf0, 0x5d, 0x13, 0x21, 0x54, 0x53, 0x64, 0x27, 0x4a, 0x16,
0xe0, 0xaa, 0xf1, 0x7e, 0xa8, 0xd8, 0x5c, 0x5b, 0x37, 0x39, 0xcc, 0x89, 0xe7, 0xdd, 0xde, 0xd6,
0x64, 0xd8, 0x3f, 0xcf, 0x21, 0xf0, 0x37, 0xe0, 0xef, 0xbc, 0x95, 0x29, 0x0b, 0x9c, 0xe3, 0x8c,
0xc5, 0x25, 0x73, 0x60, 0x08, 0x56, 0x38, 0x1a, 0x9f, 0xce, 0xe1, 0x31, 0x44, 0xf2, 0xd7, 0x38,
0x96, 0xeb, 0x1c, 0x6d, 0x58, 0x7a, 0x1e, 0xa8, 0x52, 0xc8, 0xdb, 0x0d, 0xa7, 0x6f, 0xba, 0xe1,
0x44, 0x29, 0xed, 0x21, 0x7e, 0xd8, 0x26, 0xa5, 0xee, 0xe0, 0x76, 0x3d, 0xee, 0x0e, 0xef, 0x23,
0xa4, 0x9f, 0x10, 0x42, 0x97, 0x63, 0x78, 0x5c, 0x13, 0xf3, 0x89, 0x6b, 0xc3, 0xd5, 0xd3, 0x18,
0xd1, 0x1e, 0x52, 0xa7, 0xc2, 0x97, 0x67, 0xb0, 0xfa, 0x91, 0x09, 0xda, 0x00, 0x4a, 0x14, 0x9c,
0x69, 0x62, 0xaf, 0x26, 0x96, 0x9e, 0x67, 0x12, 0x09, 0x15, 0x7e, 0xc3, 0x49, 0x7a, 0x21, 0xcb,
0xa0, 0x31, 0x28, 0x08, 0x70, 0x03, 0x2b, 0x8b, 0xa0, 0x60, 0x79, 0x16, 0x27, 0xc0, 0xf0, 0xe9,
0x19, 0xa0, 0x4e, 0xbc, 0xa0, 0xac, 0xc6, 0xa5, 0x2a, 0xdc, 0xdd, 0x27, 0x86, 0xd3, 0x7a, 0xfc,
0x4b, 0x2b, 0x80, 0x4e, 0x52, 0x0a, 0x20, 0x55, 0x23, 0xd9, 0xe0, 0x53, 0x01, 0x9f, 0xf2, 0x54,
0x9d, 0x45, 0x74, 0x00, 0x0f, 0xad, 0x90, 0xaa, 0xd7, 0xba, 0x20, 0x35, 0x22, 0x79, 0xb5, 0x1c,
0xf2, 0x13, 0xea, 0x07, 0x49, 0x1f, 0x12, 0xe5, 0x1e, 0x31, 0x5a, 0x6d, 0xf5, 0xd1, 0x1d, 0xbb,
0xe3, 0x0a, 0x38, 0x88, 0xf3, 0x95, 0xed, 0x09, 0xd4, 0x04, 0x74, 0xc9, 0x66, 0x9b, 0xef, 0xf6,
0x09, 0x19, 0xb2, 0xd6, 0x22, 0xfd, 0xd3, 0x9f, 0x7f, 0xfc, 0x70, 0xd6, 0x9f, 0xfa, 0xc4, 0x81,
0x59, 0xda, 0x55, 0xf7, 0x4f, 0x3f, 0x5f, 0x2d, 0xf6, 0x96, 0xde, 0xad, 0xfb, 0x73, 0xd9, 0xb3,
0x8f, 0xa0, 0x41, 0xe4, 0xb0, 0x40, 0xc9, 0xf7, 0x88, 0xfb, 0xe2, 0x00, 0xa8, 0x72, 0xbd, 0xce,
0xd1, 0x88, 0xb7, 0x6f, 0x38, 0x43, 0x2a, 0x40, 0x82, 0xf2, 0xe1, 0x37, 0xa4, 0xec, 0xd6, 0xa7,
0xc2, 0xf3, 0x16, 0x26, 0xc9, 0xf7, 0xe8, 0xce, 0x68, 0x56, 0x38, 0x49, 0x16, 0x97, 0x25, 0x25,
0xe5, 0x3c, 0x23, 0xd1, 0x8e, 0x4f, 0x2a, 0x71, 0x21, 0x60, 0x08, 0xb8, 0x8a, 0xaa, 0xdb, 0x5b,
0x16, 0x70, 0x91, 0x64, 0x55, 0x0a, 0x47, 0x93, 0x21, 0xd1, 0xe0, 0xae, 0xb7, 0x9e, 0x8f, 0xf2,
0x68, 0x54, 0x45, 0x5b, 0x8b, 0x46, 0x4b, 0xe5, 0x2d, 0x47, 0xfd, 0x2a, 0x1a, 0xf5, 0xf3, 0xe8,
0xdc, 0x66, 0x16, 0x8b, 0x1a, 0xe9, 0xf3, 0x7b, 0x50, 0x03, 0x21, 0x1e, 0x3f, 0x69, 0xbf, 0xa3,
0x02, 0x58, 0x78, 0xc3, 0xd5, 0x7b, 0x0f, 0xdf, 0x7b, 0xca, 0xac, 0x2e, 0xef, 0x77, 0x95, 0x58,
0xa1, 0x86, 0xc3, 0x5d, 0x7c, 0x24, 0x1a, 0x77, 0x71, 0xb8, 0x6b, 0xdd, 0x38, 0xa7, 0xfc, 0xcc,
0x47, 0x0a, 0x37, 0x4e, 0x5f, 0xe8, 0x1d, 0x99, 0x5f, 0x36, 0xfe, 0x11, 0x61, 0x79, 0xc5, 0x55,
0x32, 0x73, 0x4b, 0x6f, 0x91, 0xc0, 0xc6, 0x64, 0x2c, 0x91, 0xa8, 0x62, 0x41, 0x86, 0x30, 0x58,
0x32, 0x63, 0xc9, 0xc5, 0x58, 0x5e, 0x23, 0x42, 0xe9, 0xce, 0x65, 0x9c, 0x55, 0xb8, 0xbc, 0x55,
0x51, 0x31, 0xb2, 0xd3, 0x73, 0xc5, 0x3e, 0x0a, 0x07, 0xfd, 0x9d, 0xa5, 0x10, 0x16, 0x29, 0x72,
0x8c, 0x8b, 0xe1, 0x22, 0x34, 0x3c, 0x44, 0x35, 0x1f, 0xb3, 0x82, 0x0c, 0x33, 0x7a, 0x5e, 0xef,
0xda, 0x5a, 0x88, 0x25, 0x39, 0xf7, 0xeb, 0x08, 0xa1, 0xaa, 0x13, 0x11, 0xfb, 0x6e, 0x06, 0x37,
0x39, 0xb8, 0xd1, 0x29, 0xf9, 0x7a, 0x40, 0x9c, 0x39, 0x17, 0x94, 0xec, 0xee, 0x91, 0xd6, 0x6b,
0x64, 0x07, 0xe2, 0x12, 0x2e, 0x70, 0x49, 0x0c, 0x0d, 0x29, 0x12, 0x6c, 0x4e, 0x49, 0x2c, 0x6e,
0x5a, 0x9a, 0xeb, 0xeb, 0x8c, 0xec, 0xd4, 0x12, 0xa4, 0x6c, 0x12, 0x57, 0x99, 0xd2, 0xf2, 0xeb,
0x4b, 0x46, 0xcb, 0xbe, 0x26, 0x05, 0xb6, 0xdf, 0xa0, 0x1e, 0xb1, 0x15, 0xcd, 0xf0, 0xcb, 0xaf,
0x07, 0xf9, 0x75, 0x48, 0xce, 0x97, 0xb0, 0x70, 0xe3, 0x77, 0x67, 0xcd, 0xe5, 0x0e, 0xc4, 0x6e,
0x0d, 0x41, 0x69, 0xb9, 0xdf, 0xc2, 0x83, 0x8b, 0xbc, 0x52, 0x8e, 0x36, 0x24, 0x25, 0x33, 0x9e,
0xa6, 0x28, 0xbc, 0x1c, 0x5b, 0xe1, 0x6c, 0x2d, 0xd8, 0x72, 0xb8, 0xb5, 0x50, 0xcb, 0xad, 0x85,
0xdc, 0xd7, 0x59, 0x00, 0x16, 0xc2, 0xc9, 0xb5, 0x18, 0x93, 0x18, 0x8e, 0x20, 0xd1, 0xf9, 0x50,
0x76, 0xc1, 0xf6, 0x9f, 0x72, 0xdb, 0x5a, 0x94, 0x4b, 0x30, 0xf3, 0x7c, 0xd5, 0x81, 0x97, 0xb6,
0x33, 0x82, 0x40, 0xcd, 0x78, 0x19, 0x68, 0x26, 0x8f, 0xa5, 0xa4, 0xb0, 0x15, 0x01, 0x25, 0x00,
0x10, 0xfc, 0xe8, 0xa9, 0xd1, 0xb9, 0x01, 0x3e, 0xa7, 0xbb, 0x7b, 0x00, 0x1d, 0x6a, 0x45, 0x83,
0x37, 0x53, 0x1d, 0x28, 0xbd, 0xd6, 0x80, 0xb2, 0x00, 0x28, 0x8b, 0x91, 0xc9, 0x42, 0x35, 0x2e,
0x8b, 0xfa, 0xb6, 0x3d, 0x2d, 0xce, 0x28, 0xe5, 0x48, 0x51, 0x8a, 0x16, 0x9d, 0xb3, 0x65, 0x6e,
0xc2, 0xba, 0x55, 0x8a, 0x6b, 0xbc, 0x70, 0x64, 0x53, 0x50, 0xd6, 0x44, 0x70, 0x9d, 0x11, 0x10,
0x88, 0x83, 0xb6, 0x36, 0xcf, 0x75, 0x62, 0x4a, 0x67, 0x39, 0x9d, 0x9e, 0x56, 0x46, 0x25, 0x4e,
0xca, 0x4b, 0x5d, 0x7d, 0x62, 0x83, 0xe7, 0xd7, 0x8b, 0xfa, 0x2a, 0xe7, 0xfb, 0x24, 0xaa, 0x04,
0x90, 0xc2, 0x85, 0x81, 0x6f, 0x44, 0x7a, 0xbc, 0xe1, 0xd8, 0xee, 0x25, 0x3d, 0x97, 0xf0, 0x09,
0x5c, 0x5e, 0x33, 0xde, 0x27, 0xd3, 0x4c, 0x8e, 0xe3, 0x8c, 0x0c, 0x9b, 0x93, 0xfc, 0x7b, 0x4e,
0xdf, 0x6f, 0xf7, 0xff, 0xf3, 0xd7, 0x5f, 0xff, 0x46, 0x86, 0x9d, 0xd7, 0xbf, 0xfc, 0x83, 0xb4,
0x52, 0x90, 0x51, 0xdf, 0x6a, 0x1c, 0x91, 0xe5, 0x6a, 0xc9, 0xea, 0x87, 0x25, 0x13, 0xf4, 0xf7,
0x42, 0x63, 0x6b, 0x61, 0x42, 0x81, 0x6a, 0x24, 0xb6, 0x81, 0x06, 0x04, 0x3c, 0x8e, 0x95, 0xad,
0x45, 0xb6, 0x84, 0xeb, 0xda, 0x93, 0xc6, 0x05, 0x0e, 0x59, 0x4b, 0xa6, 0x2f, 0x0b, 0x99, 0xa3,
0x38, 0x10, 0x3a, 0x65, 0x3c, 0x5c, 0xed, 0x19, 0xf9, 0xa0, 0x85, 0xa4, 0xdd, 0x3a, 0xb8, 0x7c,
0x71, 0xf3, 0x1d, 0x4e, 0x6f, 0xf2, 0x96, 0x77, 0xba, 0x77, 0x16, 0x22, 0x9e, 0x24, 0xea, 0xdf,
0xc3, 0xef, 0x8e, 0xdf, 0xbf, 0xd3, 0xd2, 0xca, 0x40, 0xc5, 0x53, 0x4d, 0x05, 0x13, 0xdb, 0xc0,
0xb4, 0x8b, 0x50, 0xea, 0xf6, 0xb6, 0x51, 0xa4, 0x5d, 0xf2, 0xac, 0x08, 0x0c, 0xaf, 0x06, 0x11,
0xa1, 0x34, 0x30, 0x0e, 0xd7, 0x73, 0x9e, 0x0c, 0xe2, 0xa6, 0x5e, 0x6c, 0x61, 0xd6, 0xeb, 0x71,
0xcf, 0x26, 0x39, 0xda, 0xfd, 0x8c, 0x1c, 0x18, 0xda, 0xda, 0x73, 0x93, 0x66, 0x86, 0x17, 0x84,
0x33, 0xac, 0xbb, 0x0b, 0x26, 0x9d, 0x74, 0x17, 0x4c, 0xae, 0xe8, 0x2c, 0xdc, 0x29, 0x52, 0xed,
0xb2, 0x9f, 0x59, 0x21, 0xbd, 0x65, 0x5d, 0x80, 0xdc, 0x2d, 0x65, 0x75, 0x5d, 0xb6, 0x0b, 0x12,
0x53, 0xe4, 0xc9, 0x20, 0x8f, 0x0b, 0x18, 0xad, 0xb6, 0x5d, 0x13, 0x99, 0x75, 0x5d, 0xeb, 0xe3,
0xba, 0x16, 0x2d, 0x9f, 0x2a, 0xcb, 0xd6, 0x9c, 0x74, 0x64, 0x20, 0x63, 0xb3, 0xba, 0xb9, 0xed,
0x34, 0x05, 0x8c, 0xc6, 0x3c, 0xbb, 0x23, 0xd4, 0x46, 0x93, 0x9f, 0xfa, 0xcd, 0x42, 0x0d, 0x49,
0xba, 0x36, 0x27, 0xea, 0x17, 0xd8, 0x19, 0x4e, 0xa0, 0x0a, 0x18, 0xee, 0x16, 0xd6, 0x72, 0x55,
0x32, 0xdb, 0x32, 0x80, 0x05, 0x89, 0xfe, 0xf0, 0x1d, 0xaa, 0xbb, 0xb2, 0x5b, 0x11, 0x2c, 0xba,
0x1f, 0x00, 0xfc, 0x9a, 0x31, 0x65, 0x81, 0xd6, 0x16, 0xfa, 0xeb, 0x05, 0x13, 0xa0, 0x4d, 0xd0,
0x1e, 0x22, 0xe0, 0xae, 0x29, 0x32, 0xea, 0x4a, 0xa5, 0xa2, 0xab, 0x10, 0x54, 0x37, 0x4e, 0xe7,
0xf7, 0x63, 0xcb, 0x0b, 0xad, 0x57, 0x79, 0xc8, 0x71, 0x9c, 0x2e, 0x59, 0xa9, 0x7e, 0xb8, 0x5b,
0xe2, 0x67, 0xf7, 0xc8, 0xcb, 0x56, 0x29, 0xaa, 0xfb, 0x19, 0xb5, 0x7e, 0xa8, 0x1a, 0xb9, 0xa5,
0xce, 0x48, 0xd6, 0x26, 0xa2, 0x2b, 0xe2, 0xf5, 0xff, 0xa3, 0x88, 0xbd, 0x75, 0x19, 0x6b, 0x5c,
0x94, 0xff, 0x5d, 0x21, 0x2d, 0x68, 0xee, 0x97, 0xb0, 0xfe, 0xd6, 0x11, 0x2f, 0xd2, 0x99, 0xba,
0x7e, 0x1e, 0x19, 0x51, 0x33, 0x40, 0x7b, 0x2e, 0x2f, 0x6b, 0x64, 0xa3, 0x8f, 0x63, 0xbb, 0xbb,
0x6b, 0x52, 0xdb, 0xdc, 0xfc, 0xfd, 0xd1, 0x7a, 0xca, 0x79, 0x50, 0x64, 0x49, 0x45, 0x28, 0xac,
0xc8, 0x78, 0xbc, 0x47, 0x64, 0xf9, 0x88, 0xc8, 0xb2, 0x2b, 0xf2, 0x27, 0x4d, 0xa1, 0x9d, 0x15,
0x74, 0xb7, 0xb5, 0x8b, 0xa0, 0xd7, 0xf5, 0x8a, 0xd1, 0xcb, 0xd8, 0xbf, 0xb9, 0x52, 0x74, 0x57,
0xdc, 0xd1, 0x06, 0xf9, 0xbf, 0x49, 0xa1, 0xe5, 0xb1, 0x2c, 0xd1, 0x16, 0x2e, 0x9a, 0x64, 0xa5,
0x5b, 0x68, 0x3d, 0x44, 0x20, 0x58, 0x98, 0x7f, 0x40, 0x4b, 0x1e, 0xb0, 0x5a, 0x41, 0x5f, 0x68,
0x09, 0x28, 0x1a, 0x8f, 0x5e, 0xef, 0x2c, 0xd4, 0xbd, 0x01, 0xb3, 0xd7, 0xf5, 0x9d, 0x9b, 0x1c,
0x89, 0x07, 0x81, 0xbe, 0x89, 0xe0, 0xaa, 0xb5, 0xf0, 0xee, 0x06, 0xe9, 0x1d, 0xcd, 0x55, 0xa3,
0xb9, 0x58, 0xed, 0x81, 0xc5, 0xfe, 0x7d, 0xcd, 0x45, 0xab, 0xb9, 0xa8, 0x91, 0x47, 0x9c, 0x42,
0xcf, 0x9a, 0xa4, 0xc8, 0x6e, 0xf4, 0x15, 0xf7, 0x57, 0xf2, 0xf9, 0x26, 0xbb, 0x6d, 0xad, 0x1f,
0xe2, 0x57, 0xb2, 0xe2, 0x92, 0xa5, 0x9a, 0xdd, 0xdf, 0x09, 0x7a, 0xe9, 0xae, 0x89, 0xc3, 0x7a,
0x47, 0xb4, 0x1a, 0xfa, 0x98, 0xac, 0xd2, 0xc5, 0x96, 0x40, 0x39, 0x00, 0x6c, 0xf9, 0x96, 0x65,
0x7d, 0xf2, 0x88, 0x7e, 0xb5, 0x76, 0x8a, 0xb9, 0x8e, 0x3f, 0x95, 0x35, 0x55, 0x1f, 0xba, 0x55,
0x8a, 0x15, 0xb7, 0x5e, 0x7c, 0x40, 0x62, 0x36, 0x7a, 0x86, 0xe2, 0xf7, 0x25, 0xe9, 0xb1, 0xe1,
0x33, 0x24, 0x3c, 0x3c, 0x7f, 0xff, 0x13, 0x2e, 0x3e, 0xe7, 0xdd, 0x4f, 0xc4, 0x5b, 0xbf, 0x54,
0x0f, 0xc5, 0x44, 0xb6, 0x0d, 0x0a, 0xaa, 0xae, 0xc7, 0xe3, 0x92, 0xd7, 0x42, 0xe8, 0x1b, 0xb2,
0xee, 0xa3, 0xda, 0xb9, 0x91, 0xda, 0xde, 0xe6, 0xa7, 0x83, 0xb3, 0x7d, 0xfd, 0x27, 0x30, 0x17,
0xc6, 0x4c, 0x66, 0x29, 0x3a, 0x51, 0x35, 0xac, 0xc3, 0x98, 0xe0, 0x9a, 0x12, 0x9a, 0x0a, 0xb9,
0x18, 0xb2, 0xb3, 0x42, 0x3d, 0x4f, 0x3f, 0x82, 0x4e, 0xa8, 0xd7, 0xef, 0xde, 0xbe, 0x71, 0x49,
0x3c, 0x41, 0x4b, 0x8e, 0x3c, 0x8f, 0xf2, 0x6f, 0x5b, 0x8c, 0xcb, 0x3c, 0x24, 0x3d, 0xd8, 0x4d,
0xef, 0x92, 0x8f, 0xec, 0x1a, 0x33, 0x18, 0x8c, 0x8d, 0xd9, 0x14, 0x30, 0xf4, 0x65, 0xaf, 0xd9,
0xea, 0xdd, 0x69, 0xc5, 0x5e, 0xbf, 0xd0, 0x3d, 0x60, 0xab, 0x31, 0xea, 0x80, 0x19, 0xcb, 0xd0,
0xd9, 0x0f, 0xfc, 0x9d, 0x11, 0xee, 0x40, 0x05, 0x2a, 0x09, 0x48, 0xf3, 0xe4, 0x82, 0x92, 0x76,
0xfc, 0x30, 0x2b, 0xd8, 0x84, 0x6e, 0xff, 0x52, 0x49, 0x15, 0x36, 0x73, 0xae, 0xf9, 0x3c, 0x40,
0xc7, 0x14, 0x5c, 0xe9, 0xf9, 0xc6, 0x94, 0xf5, 0xeb, 0x69, 0x56, 0xd9, 0xdf, 0xe9, 0xb1, 0xde,
0x8e, 0x25, 0x25, 0x75, 0x21, 0x64, 0xd9, 0x92, 0x68, 0x7f, 0xd4, 0xb7, 0x8f, 0xd1, 0x4e, 0x77,
0x7a, 0xa5, 0x27, 0x09, 0x8b, 0x09, 0xd3, 0xad, 0x8d, 0x9e, 0x56, 0xec, 0x9b, 0x51, 0x1a, 0x4e,
0x20, 0x3d, 0x33, 0x6d, 0xd0, 0x2d, 0x4b, 0x8f, 0xf4, 0x93, 0xc9, 0x34, 0xf8, 0x58, 0x82, 0x8d,
0xbf, 0x98, 0x33, 0x35, 0x93, 0xe9, 0x90, 0xc0, 0x35, 0x64, 0xe9, 0x05, 0x6a, 0xc6, 0x90, 0xf4,
0x69, 0x04, 0xa8, 0xc9, 0x0b, 0x94, 0x94, 0x26, 0x80, 0x51, 0x95, 0x15, 0x85, 0x2e, 0x9e, 0x75,
0x59, 0xa0, 0x61, 0x0a, 0x4f, 0xdc, 0xe8, 0xde, 0x24, 0x43, 0x21, 0x49, 0x74, 0x3d, 0xa8, 0x99,
0xa1, 0x4f, 0x5d, 0xed, 0x5f, 0xd8, 0x39, 0x23, 0x0b, 0xaa, 0xb9, 0xbf, 0x9a, 0x3e, 0xd8, 0x32,
0x10, 0x90, 0x08, 0x4d, 0x0b, 0x89, 0x30, 0xbe, 0x3b, 0x9b, 0x29, 0x59, 0x5c, 0x24, 0x33, 0x24,
0x08, 0xc1, 0xae, 0x9c, 0xf7, 0xdf, 0xbf, 0x39, 0x31, 0xef, 0xc7, 0x71, 0x11, 0xcf, 0x4b, 0x24,
0x53, 0x8d, 0x20, 0x97, 0x54, 0x73, 0x20, 0xba, 0x2d, 0x03, 0xba, 0xa5, 0xf2, 0x68, 0xf6, 0x65,
0x33, 0x56, 0x2d, 0x1d, 0x17, 0xa7, 0x3a, 0x6f, 0x63, 0x11, 0x4f, 0xd1, 0xfc, 0x8f, 0xfa, 0xf8,
0x44, 0xfc, 0xb6, 0x3f, 0x7e, 0xdc, 0x3d, 0xe4, 0x73, 0x9e, 0x41, 0x9c, 0xcc, 0x2d, 0xe7, 0x47,
0x1c, 0xe3, 0x3f, 0xdc, 0x8d, 0xb7, 0x5f, 0x78, 0xd3, 0x98, 0x25, 0x32, 0x93, 0xc5, 0x50, 0x16,
0xb1, 0x98, 0xa2, 0x4b, 0x72, 0x93, 0x99, 0x7e, 0x40, 0x92, 0xf8, 0xa5, 0xe2, 0xc8, 0x14, 0x78,
0x40, 0x8b, 0xaa, 0x36, 0xa1, 0x07, 0xff, 0x2d, 0x8c, 0x89, 0xed, 0xe2, 0xbf, 0x35, 0xa5, 0xbb,
0x73, 0xf8, 0xe5, 0x81, 0xf3, 0xed, 0xf1, 0xe1, 0x11, 0x6c, 0xf2, 0xfa, 0x47, 0xaf, 0xe9, 0xe6,
0x89, 0xdf, 0x36, 0xcc, 0xa8, 0xf8, 0x87, 0x27, 0x2f, 0x9f, 0x13, 0xdb, 0xaa, 0xfa, 0xbb, 0x7b,
0xfe, 0xe6, 0x9e, 0x77, 0xe7, 0xf3, 0xc1, 0x9b, 0x3b, 0x9f, 0xff, 0x4d, 0x21, 0x4e, 0x8e, 0x0f,
0x3f, 0x2f, 0xc4, 0xdb, 0xa3, 0x93, 0xc3, 0xc7, 0xa4, 0x78, 0x7b, 0x78, 0x72, 0xf4, 0x19, 0x29,
0xff, 0xb0, 0xfe, 0xdd, 0xf3, 0xf5, 0x6c, 0xc4, 0xc0, 0xd1, 0xb3, 0x97, 0x93, 0x1d, 0x5f, 0x20,
0x3f, 0xdd, 0x33, 0xbe, 0xa8, 0xe9, 0x04, 0x12, 0xdc, 0x0a, 0x56, 0xe7, 0xd0, 0x30, 0x1a, 0xcd,
0x9e, 0x44, 0xba, 0xcd, 0x00, 0x90, 0x9e, 0x44, 0xa3, 0x94, 0x5f, 0x76, 0x5b, 0x0f, 0x13, 0xf6,
0xd0, 0x07, 0xcb, 0xd1, 0xb9, 0xdf, 0x99, 0x43, 0xb4, 0xb3, 0x10, 0xdc, 0xf5, 0x48, 0xea, 0xe6,
0x3a, 0x03, 0x60, 0x89, 0xae, 0xf9, 0x0d, 0xf7, 0xe6, 0x14, 0x4a, 0x5a, 0xdc, 0xae, 0x4f, 0x3f,
0x85, 0x54, 0xce, 0x44, 0xa2, 0x6d, 0x0b, 0x74, 0xfb, 0x72, 0x0c, 0x2c, 0x94, 0xce, 0x88, 0x47,
0x27, 0xf1, 0x25, 0xd3, 0x58, 0x70, 0x94, 0x74, 0xea, 0x9f, 0x24, 0xf8, 0x9f, 0x99, 0x53, 0x8f,
0x01, 0xca, 0x00, 0x39, 0xd9, 0xc4, 0xae, 0x8e, 0x15, 0xa4, 0x38, 0xc1, 0x0a, 0x9d, 0xd9, 0xec,
0x99, 0x75, 0x5d, 0xf1, 0x48, 0x82, 0x68, 0x26, 0xe4, 0xfd, 0x12, 0xa1, 0xbd, 0x9f, 0xd3, 0xa7,
0x64, 0x25, 0xbb, 0x2b, 0xe1, 0xd9, 0xed, 0x6a, 0x4e, 0x4d, 0x26, 0xad, 0xe7, 0xe5, 0x52, 0x9b,
0x1a, 0xf9, 0x03, 0x41, 0x84, 0xd4, 0xa3, 0x13, 0xc0, 0x6f, 0xc8, 0x1c, 0x7e, 0x77, 0x40, 0xcc,
0xd6, 0x06, 0xb8, 0xe5, 0xe5, 0x89, 0x4e, 0xad, 0x2c, 0xc8, 0x0b, 0xa6, 0xe7, 0xcb, 0x2f, 0xad,
0x5e, 0xae, 0x1e, 0x8b, 0x9f, 0x4c, 0x02, 0x33, 0x99, 0xf8, 0x01, 0x2a, 0xa7, 0x5c, 0xdd, 0xb8,
0x9e, 0x1e, 0x4d, 0x63, 0x15, 0xcd, 0xfd, 0x9c, 0xeb, 0xc9, 0xf4, 0x06, 0x7a, 0x4a, 0xfb, 0x1b,
0xca, 0xc8, 0x9c, 0x1c, 0xfd, 0x8e, 0xcf, 0xf5, 0x4f, 0x2f, 0xe8, 0x2d, 0x33, 0xd7, 0x76, 0x37,
0x41, 0x82, 0x96, 0xc7, 0x0b, 0x41, 0x68, 0x08, 0xe0, 0x55, 0x5c, 0xef, 0xd1, 0x48, 0x8f, 0xdc,
0xf5, 0x25, 0x0f, 0xad, 0x28, 0x41, 0x2e, 0x85, 0x53, 0x75, 0xf9, 0xb2, 0xe1, 0x70, 0xbc, 0xd7,
0x85, 0x4c, 0xed, 0xf8, 0x93, 0x09, 0x71, 0x6c, 0xf6, 0xa4, 0x24, 0x47, 0xe9, 0x43, 0xb0, 0xcf,
0x4a, 0x80, 0x38, 0xd0, 0xe2, 0x6b, 0xb9, 0x35, 0x03, 0x8d, 0x95, 0x3a, 0x3e, 0x94, 0xcc, 0xe1,
0x00, 0x12, 0x6d, 0x74, 0x17, 0x35, 0x78, 0x5e, 0x80, 0xae, 0x4e, 0x49, 0x6b, 0xe9, 0x64, 0x95,
0xa0, 0x5e, 0x6b, 0x61, 0x56, 0xc9, 0xc5, 0x62, 0xad, 0xd9, 0xb3, 0xf1, 0xc0, 0xa6, 0x17, 0x7a,
0xd3, 0x8b, 0x38, 0xb9, 0x58, 0xed, 0x5b, 0x3b, 0xc5, 0xca, 0x4b, 0x6a, 0x34, 0xb5, 0x24, 0x05,
0x04, 0x2c, 0xf3, 0x58, 0x18, 0xad, 0xb3, 0xb2, 0xac, 0x12, 0xb2, 0x9e, 0xa6, 0xa6, 0x05, 0x63,
0x22, 0xac, 0xfd, 0x39, 0x14, 0x12, 0xce, 0x8c, 0xb6, 0xbf, 0xd8, 0x1b, 0x0c, 0x06, 0x5f, 0x85,
0xce, 0xc1, 0xfa, 0xf4, 0x1e, 0xac, 0xd3, 0x4d, 0xed, 0x11, 0x30, 0x8c, 0x9c, 0x2e, 0x5f, 0x8d,
0x8d, 0x75, 0xbe, 0x05, 0x4b, 0xef, 0x70, 0xdd, 0xd8, 0xfe, 0xe2, 0xd9, 0xd3, 0xa7, 0x4f, 0x35,
0xd7, 0x2a, 0x4b, 0x4d, 0x34, 0x68, 0xe7, 0xac, 0x07, 0x49, 0x50, 0x73, 0xaf, 0x8d, 0xa2, 0x6d,
0xab, 0x4f, 0x00, 0xf6, 0xa3, 0x8d, 0xe6, 0x67, 0x85, 0x06, 0xd2, 0x41, 0x10, 0x74, 0xc8, 0xac,
0x2b, 0xcd, 0x6f, 0x16, 0x6f, 0x11, 0x59, 0xb1, 0xce, 0xbd, 0xf5, 0x67, 0x1d, 0xf3, 0xff, 0x0b,
0xf3, 0xc2, 0x14, 0x1a, 0x48, 0x38, 0x46, 0x83, 0x4d, 0x23, 0x4f, 0xff, 0x94, 0xf9, 0x2f, 0xe6,
0x32, 0x45, 0x3a, 0xe0, 0x1c, 0x00, 0x00
0x1f, 0xac, 0x8f, 0xd0, 0xdf, 0xdd, 0x01, 0x20, 0x48, 0x4b, 0x72, 0xd2, 0x69, 0xa7, 0xfd, 0x22,
0x81, 0x87, 0xbd, 0xbd, 0xfd, 0xf3, 0xdb, 0xbd, 0xdd, 0xc5, 0x70, 0xf3, 0xc5, 0xf1, 0xe1, 0xdb,
0x3f, 0x9e, 0xbc, 0x74, 0xa6, 0x6a, 0x96, 0x86, 0xc3, 0xea, 0x2f, 0x8b, 0x12, 0x27, 0x8d, 0xc4,
0x84, 0x12, 0x26, 0x48, 0x38, 0x9c, 0x31, 0x15, 0x39, 0xf1, 0x34, 0xca, 0x0b, 0xa6, 0x28, 0x29,
0xd5, 0x78, 0xf7, 0x69, 0xbd, 0xba, 0x21, 0xa2, 0x19, 0xa3, 0xe4, 0x8a, 0xb3, 0xeb, 0x4c, 0xe6,
0x8a, 0x38, 0xb1, 0x14, 0x8a, 0x09, 0x90, 0x5d, 0xf3, 0x44, 0x4d, 0xe9, 0xd7, 0xbd, 0x5e, 0x43,
0xba, 0xf6, 0x2a, 0x61, 0x57, 0x3c, 0x66, 0xbb, 0xe6, 0x87, 0xcf, 0x05, 0x57, 0x3c, 0x4a, 0x77,
0x8b, 0x38, 0x4a, 0x19, 0xdd, 0xf3, 0x67, 0xd1, 0x0d, 0x9f, 0x95, 0xb3, 0xe6, 0x77, 0x59, 0xb0,
0xdc, 0xfc, 0x88, 0x46, 0xf8, 0x2d, 0x24, 0xf9, 0xe4, 0xe4, 0x70, 0xa8, 0xb8, 0x4a, 0x59, 0xf8,
0x0e, 0x94, 0x33, 0x99, 0x38, 0xa7, 0x4c, 0x29, 0x2e, 0x26, 0xc5, 0xb0, 0x6b, 0xd7, 0x87, 0x45,
0x9c, 0xf3, 0x4c, 0x85, 0x1b, 0x57, 0x51, 0xee, 0x24, 0x34, 0x91, 0x71, 0x39, 0x83, 0x34, 0x83,
0x24, 0xc0, 0x59, 0x1f, 0x26, 0x19, 0x97, 0xf4, 0xc9, 0x33, 0x3f, 0x09, 0xca, 0xd9, 0x87, 0x8c,
0x9e, 0x9d, 0xe3, 0x29, 0x2f, 0xae, 0x92, 0xea, 0x49, 0x5a, 0x82, 0xb3, 0xf3, 0x81, 0xde, 0x2d,
0xaf, 0x05, 0xcb, 0xfd, 0x54, 0xc6, 0x3c, 0xf3, 0xcb, 0x5c, 0x5e, 0x17, 0x7e, 0x39, 0x3b, 0x1c,
0x4f, 0xe8, 0x7c, 0xe1, 0x67, 0x5c, 0x14, 0x7a, 0x0f, 0xfe, 0x1f, 0xeb, 0xff, 0x20, 0xa2, 0x9b,
0x7b, 0x83, 0x71, 0x29, 0x62, 0xc5, 0xa5, 0x70, 0x26, 0x47, 0x89, 0xcb, 0xbc, 0x79, 0xce, 0x54,
0x99, 0x0b, 0x27, 0x09, 0x26, 0x4c, 0xbd, 0x4c, 0x99, 0x16, 0xe4, 0xe0, 0xd6, 0xbc, 0x5a, 0x34,
0xa4, 0xbc, 0x38, 0x6e, 0x91, 0xb2, 0xed, 0x6d, 0x22, 0x47, 0x1f, 0x59, 0xac, 0x08, 0xa5, 0xea,
0x36, 0x63, 0x72, 0xac, 0xd7, 0x36, 0x9f, 0xe7, 0x79, 0x74, 0x1b, 0xf0, 0xc2, 0xfc, 0x5f, 0xd9,
0xff, 0xca, 0xf5, 0xe6, 0xd7, 0x5c, 0x24, 0xf2, 0x3a, 0x90, 0x19, 0x13, 0x2e, 0x99, 0x2a, 0x95,
0x15, 0xfd, 0x6e, 0x77, 0xc2, 0xd5, 0xb4, 0x1c, 0x05, 0xb1, 0x9c, 0x75, 0x9f, 0xf3, 0x3c, 0x96,
0x52, 0x5e, 0x72, 0xd6, 0xfd, 0xf1, 0xf5, 0xcb, 0x17, 0xdd, 0x6b, 0x7e, 0xc9, 0xbb, 0xb5, 0xe5,
0xbe, 0x28, 0xad, 0x29, 0x77, 0x8b, 0x6a, 0x81, 0xb4, 0xb8, 0x1f, 0xac, 0x73, 0xef, 0x36, 0x54,
0x3e, 0xf9, 0x50, 0xb0, 0x74, 0xdc, 0xa6, 0x4e, 0x65, 0x94, 0xfc, 0xfe, 0xd4, 0x65, 0xbe, 0xa2,
0x9b, 0x3d, 0x6f, 0x9e, 0x32, 0xe5, 0x08, 0x9a, 0x04, 0x71, 0xce, 0x22, 0xc5, 0x2a, 0x03, 0xb8,
0xc4, 0x7a, 0x88, 0x78, 0x03, 0x11, 0x80, 0xd9, 0x73, 0xa5, 0x72, 0x3e, 0x2a, 0x15, 0xc3, 0x8b,
0x3c, 0x26, 0x3e, 0xf3, 0xfc, 0xf5, 0x75, 0x6d, 0x07, 0x1c, 0xa7, 0xd8, 0x8d, 0xea, 0x7e, 0x8c,
0xae, 0xa2, 0x9a, 0xc1, 0x27, 0x84, 0x51, 0x71, 0x2b, 0xc0, 0x42, 0x79, 0x70, 0xe6, 0x48, 0x26,
0xb7, 0x41, 0x94, 0x41, 0xe8, 0xe4, 0x70, 0xca, 0xd3, 0xc4, 0x15, 0x9a, 0x3e, 0x4a, 0x92, 0x97,
0x57, 0x90, 0xe2, 0x35, 0x2f, 0x00, 0x52, 0x96, 0xbb, 0x44, 0xcb, 0x4c, 0x7c, 0xd7, 0xa3, 0xe1,
0xfc, 0x5b, 0xa6, 0x7e, 0x70, 0xbd, 0xc1, 0x58, 0xe6, 0xae, 0x16, 0x9d, 0xd1, 0xde, 0x80, 0x0d,
0x2d, 0x40, 0x82, 0x94, 0x89, 0x89, 0x9a, 0x0e, 0x58, 0xa7, 0xe3, 0x69, 0xe7, 0x07, 0x59, 0x59,
0x4c, 0x5d, 0xfb, 0xee, 0x8c, 0x9d, 0x7b, 0x06, 0x09, 0x76, 0x91, 0xe8, 0x35, 0x68, 0xb7, 0xbb,
0x47, 0xa9, 0xc5, 0xd9, 0x59, 0xef, 0x7c, 0x7b, 0xdb, 0x3e, 0x06, 0xc5, 0x94, 0x8f, 0x95, 0xeb,
0x2d, 0xee, 0x17, 0x86, 0xe5, 0xb9, 0xcc, 0x61, 0x03, 0x08, 0x83, 0x30, 0x2a, 0x64, 0xca, 0x82,
0x54, 0x4e, 0x5c, 0xf2, 0x52, 0xaf, 0x3b, 0x95, 0x85, 0x61, 0x7d, 0x67, 0xcc, 0x53, 0x66, 0x6c,
0x85, 0xb8, 0xc9, 0x61, 0xd3, 0xd7, 0xd5, 0x3a, 0xe0, 0x82, 0x8d, 0x63, 0x3e, 0x29, 0xf3, 0xc8,
0xb8, 0xc4, 0xda, 0xca, 0x19, 0x47, 0xd8, 0x90, 0x04, 0xef, 0xc5, 0x91, 0x00, 0x20, 0x32, 0xa8,
0xc7, 0x9c, 0x2c, 0x9a, 0x30, 0x27, 0x89, 0x54, 0xb4, 0x09, 0x1f, 0xb6, 0xbc, 0x78, 0x0a, 0x9f,
0x13, 0x7d, 0x40, 0x1f, 0x18, 0xac, 0x9c, 0x0f, 0x80, 0x1b, 0x7e, 0x41, 0x96, 0x4b, 0x25, 0x63,
0x99, 0x6e, 0x6f, 0xbb, 0x06, 0xf4, 0x3d, 0xdf, 0x35, 0x11, 0x42, 0x35, 0x45, 0x7a, 0xaa, 0x64,
0x0e, 0xae, 0x1a, 0xef, 0x47, 0x8a, 0xcd, 0xb4, 0x75, 0xe3, 0xa3, 0x8c, 0x78, 0xde, 0xdd, 0x5d,
0x45, 0x86, 0xfd, 0xb3, 0x0c, 0x02, 0x7f, 0x03, 0xfe, 0xce, 0x1b, 0x99, 0xb0, 0xc0, 0x39, 0x49,
0x59, 0x54, 0x30, 0x07, 0x86, 0x60, 0xb9, 0xa3, 0xf1, 0xe9, 0x1c, 0x9d, 0x40, 0x24, 0x7f, 0x85,
0x63, 0xb1, 0xca, 0xd1, 0x86, 0xa5, 0xe7, 0x81, 0x2a, 0x81, 0xbc, 0xed, 0x70, 0xfa, 0xa6, 0x1d,
0x4e, 0x94, 0xd2, 0x0e, 0xe2, 0x87, 0x6d, 0x52, 0xea, 0xf6, 0xee, 0x56, 0xe3, 0xee, 0xe8, 0x3e,
0x42, 0xfa, 0x09, 0x21, 0x74, 0x39, 0x81, 0xc7, 0x35, 0x31, 0x1f, 0xbb, 0x36, 0x5c, 0x3d, 0x8d,
0x11, 0xed, 0x21, 0x75, 0x26, 0x7c, 0x79, 0x0e, 0xab, 0x1f, 0x9b, 0xa0, 0x0d, 0xa0, 0x44, 0xce,
0x99, 0x26, 0xf6, 0x2a, 0x62, 0xe9, 0x79, 0x26, 0x91, 0x50, 0xe1, 0xd7, 0x9c, 0xa4, 0x37, 0x60,
0x29, 0x34, 0x06, 0x05, 0x01, 0x6e, 0x60, 0x65, 0x11, 0xe4, 0x2c, 0x4b, 0xa3, 0x18, 0x18, 0x3e,
0x3b, 0x07, 0xd4, 0x89, 0x17, 0x14, 0xe5, 0xa8, 0x50, 0xb9, 0xbb, 0xfb, 0xc4, 0x70, 0x5a, 0x8d,
0x7f, 0x69, 0x05, 0xd0, 0x49, 0x4a, 0x01, 0xa4, 0x6a, 0x28, 0x6b, 0x7c, 0x2a, 0xe0, 0x53, 0x9e,
0xa9, 0xf3, 0x90, 0xf6, 0xe0, 0xa1, 0x25, 0x52, 0xf5, 0x5a, 0x1b, 0xa4, 0x46, 0x24, 0xaf, 0x92,
0x43, 0x7e, 0x42, 0xfd, 0x20, 0xe9, 0x43, 0xa2, 0xdc, 0x23, 0x46, 0xa3, 0xad, 0x3e, 0xba, 0x65,
0x77, 0x5c, 0x01, 0x87, 0x51, 0xb6, 0xb4, 0x3d, 0x81, 0x9a, 0x80, 0x2e, 0xd9, 0x6c, 0xf2, 0xdd,
0x3e, 0x21, 0x7d, 0xd6, 0x58, 0xa4, 0x7b, 0xf6, 0xfe, 0xc7, 0x0f, 0xe7, 0xdd, 0x89, 0x4f, 0x1c,
0x98, 0xa5, 0x59, 0x75, 0xff, 0xf4, 0xfe, 0x7a, 0xbe, 0xb7, 0xf0, 0xee, 0xdc, 0xf7, 0x45, 0xc7,
0x3e, 0x82, 0x06, 0x91, 0xc3, 0x02, 0x25, 0xdf, 0x21, 0xee, 0xf3, 0x43, 0xa0, 0xca, 0xf5, 0x5a,
0x47, 0x23, 0xde, 0xbe, 0xe1, 0x0c, 0xa9, 0x00, 0x09, 0xca, 0x87, 0xdf, 0x90, 0xb2, 0x1b, 0x9f,
0x0a, 0xcf, 0x9b, 0x9b, 0x24, 0xdf, 0xa1, 0x3b, 0xc3, 0x69, 0xee, 0xc4, 0x69, 0x54, 0x14, 0x94,
0x14, 0xb3, 0x94, 0x84, 0x3b, 0x3e, 0x29, 0xc5, 0xa5, 0x80, 0x21, 0xe0, 0x2a, 0xaa, 0xee, 0xee,
0x58, 0xc0, 0x45, 0x9c, 0x96, 0x09, 0x1c, 0x4d, 0xfa, 0x44, 0x83, 0xbb, 0xda, 0x7a, 0x31, 0xcc,
0xc2, 0x61, 0x19, 0x6e, 0xcd, 0x6b, 0x2d, 0x95, 0xb7, 0x18, 0x76, 0xcb, 0x70, 0xd8, 0xcd, 0xc2,
0x0b, 0x9b, 0x59, 0x2c, 0x6a, 0xa4, 0xcf, 0xef, 0x41, 0x0d, 0x84, 0x78, 0xfc, 0xa4, 0xfd, 0x96,
0x0a, 0x60, 0xe1, 0xf5, 0x97, 0xbf, 0x3b, 0x78, 0xdf, 0x51, 0x66, 0x75, 0x71, 0xbf, 0xab, 0xc4,
0x12, 0x35, 0x1c, 0xee, 0xe2, 0x43, 0x51, 0xbb, 0x8b, 0xc3, 0x5d, 0xab, 0xc6, 0x39, 0xe3, 0xe7,
0x3e, 0x52, 0xb8, 0x71, 0xfa, 0x5c, 0xef, 0x48, 0xfd, 0xa2, 0xf6, 0x8f, 0x18, 0x14, 0xd7, 0x5c,
0xc5, 0x53, 0xb7, 0xf0, 0xe6, 0x31, 0x6c, 0x4c, 0x46, 0x12, 0x89, 0x2a, 0x12, 0xa4, 0x0f, 0x83,
0xc5, 0x53, 0x16, 0x5f, 0x8e, 0xe4, 0x0d, 0x22, 0x94, 0xee, 0x5c, 0x45, 0x69, 0x89, 0xcb, 0x5b,
0xe5, 0x25, 0x23, 0x3b, 0x1d, 0x57, 0xec, 0xa3, 0x70, 0xd0, 0xef, 0x59, 0x02, 0x61, 0x91, 0x22,
0x47, 0xb8, 0x18, 0x2e, 0x07, 0x86, 0x87, 0x28, 0x67, 0x23, 0x96, 0x93, 0x7e, 0x4a, 0x2f, 0xaa,
0x5d, 0x5b, 0x73, 0xb1, 0x20, 0x17, 0x7e, 0x15, 0x21, 0x54, 0xb5, 0x22, 0x62, 0xdf, 0x4d, 0xe1,
0x26, 0x07, 0x37, 0x3a, 0x25, 0x5f, 0xf7, 0x88, 0x33, 0xe3, 0x82, 0x92, 0xdd, 0x3d, 0xd2, 0x78,
0x8d, 0xec, 0x40, 0x5c, 0xc2, 0x05, 0x2e, 0x89, 0xbe, 0x21, 0x45, 0x82, 0xcd, 0x28, 0x89, 0xc4,
0x6d, 0x43, 0x73, 0x73, 0x93, 0x92, 0x9d, 0x4a, 0x82, 0x84, 0x8d, 0xa3, 0x32, 0x55, 0x5a, 0x7e,
0x7d, 0xc9, 0x68, 0xd9, 0x57, 0xa4, 0xc0, 0xf6, 0x5b, 0xd4, 0x23, 0xb6, 0xa2, 0xe9, 0x7f, 0xf9,
0x75, 0x2f, 0xbb, 0x19, 0x90, 0x8b, 0x05, 0x2c, 0x5c, 0xfb, 0xdd, 0x59, 0x71, 0xb9, 0x03, 0xb1,
0x1b, 0x43, 0x50, 0x5a, 0xec, 0x37, 0xf0, 0xe0, 0x22, 0x2b, 0x95, 0xa3, 0x0d, 0x49, 0xc9, 0x94,
0x27, 0x09, 0x0a, 0x2f, 0xc7, 0x56, 0x38, 0x5b, 0x73, 0xb6, 0xe8, 0x6f, 0xcd, 0xd5, 0x62, 0x6b,
0x2e, 0xf7, 0x75, 0x16, 0x80, 0x85, 0x70, 0x72, 0x25, 0xc6, 0x38, 0x82, 0x23, 0x48, 0x78, 0xd1,
0x97, 0x6d, 0xb0, 0xfd, 0xbb, 0xdc, 0xb6, 0xe6, 0xc5, 0x02, 0xcc, 0x3c, 0x5f, 0xb5, 0xe0, 0xa5,
0xed, 0x8c, 0x20, 0x50, 0x53, 0x5e, 0x04, 0x9a, 0xc9, 0x63, 0x29, 0x69, 0xd0, 0x88, 0x80, 0x12,
0x00, 0x08, 0x7e, 0xf4, 0xd4, 0xf0, 0xc2, 0x00, 0x9f, 0xd3, 0xdd, 0x3d, 0x80, 0x0e, 0xb5, 0xa2,
0xc1, 0x9b, 0xa9, 0x0e, 0x94, 0x5e, 0xab, 0x41, 0x99, 0x03, 0x94, 0xf9, 0xd0, 0x64, 0xa1, 0x0a,
0x97, 0x79, 0x75, 0xdb, 0x9e, 0xe5, 0xe7, 0x94, 0x72, 0xa4, 0x28, 0x45, 0xf3, 0xd6, 0xd9, 0x32,
0x33, 0x61, 0xdd, 0x28, 0xc5, 0x35, 0x5e, 0x38, 0xb2, 0x29, 0x28, 0x2b, 0x22, 0xb8, 0xce, 0x08,
0x08, 0xc4, 0x41, 0x5b, 0x9b, 0xe7, 0x5a, 0x31, 0xa5, 0xb3, 0x9c, 0x4e, 0x4f, 0x4b, 0xa3, 0x12,
0x27, 0xe1, 0x85, 0xae, 0x3e, 0xb1, 0xc1, 0xf3, 0xab, 0x45, 0x7d, 0x95, 0xf3, 0x7d, 0x12, 0x96,
0x02, 0x48, 0xe1, 0xc2, 0xc0, 0x37, 0x24, 0x1d, 0x5e, 0x73, 0x6c, 0xf6, 0x92, 0x8e, 0x4b, 0xf8,
0x18, 0x2e, 0xaf, 0x18, 0xef, 0x93, 0x49, 0x2a, 0x47, 0x51, 0x4a, 0xfa, 0xf5, 0x49, 0xfe, 0x3d,
0xa7, 0xef, 0x37, 0xfb, 0xff, 0xf9, 0xcb, 0x2f, 0x7f, 0x23, 0xfd, 0xd6, 0xcf, 0xbf, 0xfc, 0x83,
0x34, 0x52, 0x90, 0x61, 0xd7, 0x6a, 0x1c, 0x92, 0xc5, 0x72, 0xc9, 0xea, 0x87, 0x25, 0x13, 0xf4,
0xf7, 0x42, 0x63, 0x6b, 0x6e, 0x42, 0x81, 0x6a, 0x24, 0x36, 0x81, 0x06, 0x04, 0x3c, 0x8e, 0x95,
0xad, 0x79, 0xba, 0x80, 0xeb, 0x9a, 0x93, 0x46, 0x39, 0x0e, 0x59, 0x49, 0xa6, 0x2f, 0x72, 0x99,
0xa1, 0x38, 0x10, 0x3a, 0x65, 0x3c, 0x5c, 0xed, 0x19, 0xf9, 0xa0, 0x85, 0xa4, 0xed, 0x3a, 0xb8,
0x38, 0xb8, 0xfd, 0x0e, 0xa7, 0xd7, 0x79, 0xcb, 0x3b, 0xdb, 0x3b, 0x1f, 0x20, 0x9e, 0x24, 0xea,
0xdf, 0xa3, 0xef, 0x4e, 0xde, 0xbd, 0xd5, 0xd2, 0xca, 0x40, 0x45, 0x13, 0x4d, 0x05, 0x13, 0xdb,
0xc0, 0xb4, 0x8b, 0x50, 0xea, 0xee, 0xae, 0x56, 0xa4, 0x59, 0xf2, 0xac, 0x08, 0x0c, 0x3f, 0x0d,
0x22, 0x06, 0xd2, 0xc0, 0x78, 0xb0, 0x9a, 0xf3, 0x64, 0x10, 0xd5, 0xf5, 0x62, 0x03, 0xb3, 0x4e,
0x87, 0x7b, 0x36, 0xc9, 0xd1, 0xf6, 0x6b, 0xe4, 0xc0, 0x81, 0xad, 0x3d, 0x37, 0x69, 0x6a, 0x78,
0x41, 0x38, 0xc3, 0xba, 0xbd, 0x60, 0xd2, 0x49, 0x7b, 0xc1, 0xe4, 0x8a, 0xd6, 0xc2, 0x5a, 0x91,
0x6a, 0x97, 0xfd, 0xd4, 0x0a, 0xe9, 0x2d, 0xaa, 0x02, 0x64, 0xbd, 0x94, 0xd5, 0x75, 0xd9, 0x2e,
0x48, 0x4c, 0x91, 0x27, 0x83, 0x2c, 0xca, 0x61, 0xb4, 0xca, 0x76, 0x75, 0x64, 0x56, 0x75, 0xad,
0x8f, 0xeb, 0x5a, 0x34, 0x7c, 0xca, 0x34, 0x5d, 0x71, 0xd2, 0xb1, 0x81, 0x8c, 0xcd, 0xea, 0xe6,
0xb6, 0xd3, 0x14, 0x30, 0x1a, 0xf3, 0xec, 0x8e, 0x81, 0x36, 0x9a, 0xfc, 0xd4, 0x6f, 0x16, 0x6a,
0x48, 0xd2, 0x95, 0x39, 0x51, 0xbf, 0xc0, 0xce, 0x70, 0x02, 0x55, 0xc0, 0x70, 0xbb, 0xb0, 0x96,
0xcb, 0x92, 0xd9, 0x96, 0x01, 0x2c, 0x88, 0xf5, 0x8b, 0xef, 0x50, 0xdd, 0x15, 0xed, 0x8a, 0x60,
0xde, 0x7e, 0x01, 0xe0, 0x57, 0x8c, 0x29, 0x0b, 0xb4, 0xb6, 0xd0, 0x5f, 0x2f, 0x98, 0x00, 0xad,
0x83, 0xf6, 0x08, 0x01, 0x77, 0x43, 0x91, 0x51, 0x97, 0x2a, 0xe5, 0x50, 0xa8, 0xbe, 0xc0, 0xad,
0xc7, 0xf9, 0xfd, 0xc0, 0xf2, 0x06, 0xd6, 0xa5, 0x7c, 0xc0, 0x71, 0x96, 0xae, 0x57, 0xa9, 0x7e,
0x58, 0xaf, 0xef, 0xd3, 0x7b, 0x84, 0x65, 0xcb, 0xfc, 0xd4, 0x7e, 0x8d, 0x42, 0x7f, 0xa0, 0x6a,
0xa1, 0xa5, 0x4e, 0x47, 0xd6, 0x20, 0xa2, 0x2d, 0xdf, 0xcd, 0xff, 0x9d, 0x7c, 0x9d, 0x55, 0x01,
0x93, 0xff, 0xb8, 0x80, 0x16, 0x2a, 0xf7, 0x4b, 0x57, 0xbd, 0x6b, 0x89, 0x16, 0xea, 0xfc, 0x5c,
0x3d, 0x0f, 0x8d, 0x98, 0x29, 0x00, 0x3d, 0x93, 0x57, 0x15, 0x9e, 0xd1, 0xbd, 0xb1, 0xdd, 0xdd,
0xb6, 0xc4, 0x51, 0x25, 0xf1, 0x32, 0xc7, 0x3c, 0x28, 0xad, 0xa4, 0x62, 0x20, 0xac, 0xb4, 0x78,
0xbc, 0x47, 0x5a, 0xf9, 0x88, 0xb4, 0xb2, 0x2d, 0xed, 0x58, 0x22, 0xdb, 0x9b, 0xa6, 0x7e, 0xad,
0x1d, 0x8c, 0x3e, 0xb4, 0xaf, 0x28, 0xbd, 0xbd, 0x5e, 0xc3, 0x36, 0x5d, 0xa7, 0x18, 0xcd, 0x20,
0x40, 0xc5, 0xa1, 0x67, 0x5b, 0xc1, 0x6a, 0xfd, 0xee, 0xce, 0x2c, 0xe3, 0xc2, 0x91, 0x9f, 0xd1,
0x3a, 0xf9, 0xfe, 0xf8, 0x7f, 0xa0, 0xf4, 0x5a, 0xeb, 0x6b, 0x27, 0x22, 0xab, 0xca, 0x56, 0x8b,
0x6b, 0xda, 0xaa, 0xa0, 0xbe, 0x38, 0xb5, 0xca, 0x2d, 0x3d, 0x60, 0x99, 0x13, 0x59, 0xa0, 0xe7,
0x9d, 0xd7, 0x99, 0x58, 0xcf, 0x07, 0xf4, 0x84, 0x84, 0x60, 0x61, 0xf6, 0xa1, 0x40, 0x65, 0xc1,
0x2a, 0xbd, 0x7c, 0xa1, 0x0f, 0xa6, 0xe8, 0xaa, 0x3a, 0x9d, 0xf3, 0x81, 0x6e, 0x7c, 0x98, 0xad,
0x45, 0xd6, 0xca, 0x14, 0x64, 0x55, 0x64, 0xb1, 0x4d, 0x64, 0x8e, 0x4a, 0x78, 0x6f, 0x3d, 0x03,
0xad, 0x29, 0xac, 0x6a, 0x85, 0xc5, 0x72, 0x0f, 0x0c, 0xf5, 0xdb, 0x15, 0x16, 0x8d, 0xc2, 0xa2,
0x0a, 0x2e, 0xe2, 0xe4, 0x7a, 0x90, 0x26, 0x45, 0x7a, 0xab, 0xef, 0xef, 0xbf, 0x92, 0xcf, 0x4f,
0x10, 0x9a, 0xb9, 0xc1, 0x43, 0xfc, 0x0a, 0x96, 0x5f, 0xb1, 0x44, 0xb3, 0xfb, 0x3b, 0xf1, 0xc5,
0x8a, 0x65, 0x07, 0xd5, 0x8e, 0x70, 0x39, 0xd1, 0x32, 0x29, 0xb3, 0x0d, 0x26, 0x81, 0x5a, 0x07,
0x60, 0xf2, 0x2d, 0xcb, 0xea, 0xe4, 0x21, 0xfd, 0x6a, 0xe5, 0x14, 0x53, 0x6b, 0x7c, 0x2a, 0x6b,
0xa2, 0xee, 0xc1, 0x77, 0xb5, 0xf8, 0x80, 0xc4, 0x6c, 0xf8, 0x0c, 0x95, 0xfd, 0x0b, 0xd2, 0x61,
0xfd, 0x67, 0xc8, 0xe6, 0x78, 0xfe, 0xfe, 0x27, 0xdc, 0xea, 0xce, 0xdb, 0x9f, 0xee, 0xe1, 0xff,
0x99, 0xf0, 0xb9, 0xcf, 0x1e, 0xcf, 0xc1, 0xd9, 0x5b, 0x2d, 0x3d, 0x8e, 0xc4, 0x58, 0x36, 0x6d,
0x1c, 0x6a, 0xd3, 0xc7, 0xf3, 0x18, 0xaf, 0x8e, 0xd3, 0x75, 0x44, 0xd5, 0x6d, 0x36, 0xd3, 0x35,
0xb5, 0xbd, 0xcd, 0xcf, 0x7a, 0xe7, 0xfb, 0xfa, 0x4f, 0x60, 0xae, 0xd5, 0xa9, 0x4c, 0x13, 0xf4,
0xeb, 0xaa, 0x5f, 0xa5, 0x3d, 0x82, 0xcb, 0x5c, 0x68, 0x2a, 0xdc, 0x58, 0x10, 0x93, 0xe5, 0xea,
0x79, 0xf2, 0x11, 0x74, 0x42, 0xbd, 0x7a, 0xfb, 0xe6, 0xb5, 0x4b, 0xa2, 0xb1, 0x62, 0xb8, 0x9d,
0x13, 0x14, 0xc9, 0xdb, 0x62, 0x54, 0x64, 0x03, 0xd2, 0x81, 0x03, 0xf4, 0x2e, 0xf9, 0xc8, 0xae,
0x11, 0x83, 0x65, 0xd8, 0x88, 0x4d, 0x80, 0x67, 0x5f, 0x76, 0xea, 0xad, 0xde, 0x5a, 0xc3, 0xfa,
0xea, 0x40, 0x77, 0xca, 0x8d, 0xc6, 0xa8, 0x96, 0xa6, 0x2c, 0xcd, 0x88, 0xdf, 0xf3, 0x77, 0x86,
0xa8, 0x14, 0x14, 0xa8, 0x24, 0x62, 0x83, 0xc7, 0x97, 0x94, 0x34, 0x43, 0x9a, 0x69, 0xce, 0xc6,
0x74, 0xfb, 0xe7, 0x52, 0xaa, 0x41, 0x3d, 0x0d, 0x9c, 0xcd, 0x02, 0xf4, 0x95, 0xc1, 0xb5, 0x9e,
0x02, 0x4d, 0x58, 0xb7, 0x9a, 0xf9, 0x15, 0xdd, 0x9d, 0x0e, 0xeb, 0xec, 0x58, 0x52, 0x52, 0x95,
0x8b, 0x96, 0x2d, 0x09, 0xf7, 0x87, 0x5d, 0xfb, 0x18, 0xee, 0xb4, 0x67, 0x7c, 0x7a, 0xde, 0x32,
0x1f, 0x33, 0xdd, 0x00, 0xea, 0x99, 0xce, 0xbe, 0x19, 0x38, 0xe2, 0x04, 0xd2, 0x31, 0x33, 0x19,
0xdd, 0xd8, 0x75, 0x48, 0x37, 0x1e, 0x4f, 0x82, 0x8f, 0x05, 0xd8, 0xf8, 0xf3, 0x19, 0x53, 0x53,
0x99, 0xf4, 0x09, 0x5c, 0x43, 0x16, 0x5e, 0xa0, 0xa6, 0x0c, 0xe5, 0x08, 0x0d, 0x81, 0x59, 0x79,
0x89, 0x3c, 0x68, 0x32, 0x01, 0x6a, 0xd7, 0x3c, 0xd7, 0x2d, 0x86, 0x2e, 0x9e, 0x34, 0xde, 0xe1,
0x89, 0x5b, 0xdd, 0xc1, 0xa5, 0x28, 0xb7, 0x89, 0xae, 0x9a, 0x35, 0x33, 0x74, 0xf3, 0xcb, 0xfd,
0x73, 0x3b, 0x8d, 0x65, 0x41, 0x39, 0xf3, 0x97, 0x33, 0x1a, 0x5b, 0x2c, 0x03, 0x12, 0x03, 0xd3,
0x68, 0x23, 0x1f, 0xac, 0x4f, 0xb0, 0x0a, 0x16, 0xe5, 0xf1, 0x14, 0x99, 0x46, 0xb0, 0x6b, 0xe7,
0xdd, 0xf7, 0xaf, 0x4f, 0xcd, 0xef, 0x93, 0x28, 0x8f, 0x66, 0x05, 0xd2, 0xb0, 0x46, 0x90, 0x4b,
0xca, 0x19, 0xa0, 0xdb, 0x14, 0x4b, 0xed, 0x86, 0x62, 0x38, 0xfd, 0xb2, 0x1e, 0x3e, 0x17, 0x8e,
0x8b, 0x53, 0x9d, 0x37, 0x91, 0x88, 0x26, 0x2c, 0xf7, 0x86, 0x5d, 0xbc, 0x22, 0x7e, 0x33, 0x45,
0x78, 0xdc, 0x3d, 0xe4, 0x73, 0x9e, 0x41, 0x48, 0xcc, 0x2c, 0xe7, 0x47, 0x1c, 0xe3, 0x3f, 0x3c,
0xb3, 0x68, 0xde, 0xf0, 0xba, 0x7d, 0x8d, 0x65, 0x2a, 0xf3, 0xbe, 0xcc, 0x23, 0x31, 0x41, 0x2f,
0xe9, 0xc6, 0x53, 0xfd, 0x80, 0x6c, 0xf3, 0x73, 0xc9, 0x91, 0x72, 0xf0, 0x80, 0x46, 0x5e, 0x6d,
0x42, 0x0f, 0xfe, 0x6b, 0x18, 0x13, 0x3b, 0xeb, 0xf8, 0xd6, 0x34, 0x38, 0xce, 0xd1, 0x97, 0x87,
0xce, 0xb7, 0x27, 0x47, 0xc7, 0xb0, 0xc9, 0xab, 0x1f, 0xbd, 0x7a, 0xe6, 0x41, 0xfc, 0x66, 0xac,
0x80, 0xbe, 0xa8, 0x7f, 0xfa, 0xe2, 0x39, 0xb1, 0x0d, 0xbd, 0xbf, 0xbb, 0xe7, 0x6f, 0xee, 0x79,
0x6b, 0xaf, 0x0f, 0x5f, 0xaf, 0xbd, 0xfe, 0x8d, 0x42, 0x9c, 0x9e, 0x1c, 0x7d, 0x5e, 0x88, 0x37,
0xc7, 0xa7, 0x47, 0x8f, 0x49, 0xf1, 0xe6, 0xe8, 0xf4, 0xf8, 0x33, 0x52, 0xfe, 0x61, 0xf5, 0xbd,
0xe7, 0xeb, 0x09, 0x92, 0x81, 0xa3, 0x67, 0x6f, 0x39, 0x3b, 0xe4, 0x41, 0x7e, 0xba, 0x67, 0xc8,
0x53, 0xd1, 0x09, 0x64, 0xca, 0x25, 0xac, 0x2e, 0xa0, 0x61, 0x38, 0x9c, 0x3e, 0x09, 0x75, 0x33,
0x06, 0x20, 0x3d, 0x09, 0x87, 0x09, 0xbf, 0x6a, 0x37, 0x68, 0x26, 0xec, 0xa1, 0x0f, 0x96, 0xc3,
0x0b, 0xbf, 0x35, 0xad, 0x69, 0x26, 0x46, 0xa8, 0x15, 0x70, 0x3b, 0x98, 0x7b, 0x11, 0x80, 0x25,
0xba, 0x33, 0x32, 0xdc, 0xeb, 0x53, 0x28, 0x69, 0x70, 0xbb, 0x3a, 0x23, 0x16, 0x52, 0x39, 0xa6,
0x2a, 0x09, 0x74, 0x93, 0x77, 0x02, 0x2c, 0x14, 0xce, 0x90, 0x87, 0xa7, 0xd1, 0x15, 0xd3, 0x58,
0x70, 0x94, 0x74, 0xaa, 0x0f, 0x37, 0xfc, 0xcf, 0xcc, 0xa9, 0x86, 0x25, 0x45, 0x40, 0xbc, 0x85,
0x89, 0x5d, 0x1d, 0x2b, 0x48, 0x71, 0x82, 0xe5, 0x3a, 0xb3, 0xd9, 0x33, 0xab, 0xba, 0xe4, 0x91,
0x04, 0x51, 0x7f, 0x47, 0xe8, 0x16, 0x08, 0xed, 0xfd, 0x8c, 0x3e, 0x25, 0x4b, 0xd9, 0x5d, 0x09,
0xcf, 0x6e, 0x97, 0x33, 0x6a, 0x32, 0x69, 0xf5, 0x55, 0x41, 0x6a, 0x53, 0x23, 0x7f, 0x20, 0x88,
0x90, 0x7a, 0x74, 0x02, 0xf8, 0x15, 0x99, 0xc3, 0x6f, 0x8f, 0xd1, 0xd9, 0xca, 0x98, 0xbb, 0xb8,
0x3a, 0xd5, 0xa9, 0x95, 0x05, 0x59, 0xce, 0xf4, 0x14, 0xfe, 0x85, 0xd5, 0xcb, 0xd5, 0x1f, 0x0f,
0x4e, 0xc7, 0x81, 0x99, 0xdf, 0xfc, 0x00, 0x95, 0x13, 0xae, 0x6e, 0x5d, 0x4f, 0x0f, 0xf0, 0xb1,
0x5a, 0x94, 0xa3, 0x19, 0xd7, 0xf3, 0xfb, 0x0d, 0x74, 0xde, 0xf6, 0x4b, 0xd3, 0xd0, 0x9c, 0x1c,
0xfe, 0x8e, 0xcf, 0xf4, 0x07, 0x2a, 0x74, 0xe0, 0xa9, 0x6b, 0x7b, 0xc0, 0x20, 0x46, 0x63, 0xe8,
0x0d, 0x40, 0x68, 0x08, 0xe0, 0x55, 0xd4, 0x09, 0xe1, 0x50, 0x7f, 0x98, 0xd0, 0xd5, 0x02, 0xb4,
0xa2, 0x04, 0xb9, 0x14, 0x4e, 0xd5, 0x75, 0xd0, 0x86, 0xc3, 0xf1, 0xbb, 0xaa, 0x88, 0x2a, 0xc7,
0x9f, 0x8e, 0x89, 0x63, 0xb3, 0x27, 0x25, 0x19, 0x6a, 0x28, 0x82, 0x7d, 0x56, 0x02, 0xc4, 0x81,
0x16, 0x5f, 0xcb, 0xad, 0x19, 0x68, 0xac, 0x54, 0xf1, 0xa1, 0x64, 0x06, 0x07, 0x90, 0x70, 0xa3,
0xbd, 0xa8, 0xc1, 0x73, 0x00, 0xba, 0x2a, 0x25, 0xad, 0xa4, 0x93, 0x65, 0x82, 0x7a, 0xa5, 0x85,
0x59, 0x26, 0x17, 0x8b, 0xb5, 0x7a, 0xcf, 0xc6, 0x03, 0x9b, 0x0e, 0xf4, 0xa6, 0x83, 0x28, 0xbe,
0x5c, 0xee, 0x5b, 0x39, 0xc5, 0xca, 0x4b, 0x2a, 0x34, 0x35, 0x24, 0x39, 0x04, 0x2c, 0xb2, 0x48,
0x18, 0xad, 0xd3, 0xa2, 0x28, 0x63, 0xb2, 0x9a, 0xa6, 0x26, 0x39, 0x63, 0x62, 0x50, 0xf9, 0xb3,
0x2f, 0x24, 0x9c, 0x19, 0x6e, 0x7f, 0xb1, 0xd7, 0xeb, 0xf5, 0xbe, 0x1a, 0x38, 0x87, 0xab, 0xdf,
0x38, 0xc0, 0x3a, 0xd9, 0xd4, 0x1e, 0x01, 0xc3, 0xd0, 0x69, 0xf3, 0xd5, 0xd8, 0x58, 0xe5, 0x9b,
0xb3, 0x64, 0x8d, 0xeb, 0xc6, 0xf6, 0x17, 0xcf, 0x9e, 0x3e, 0x7d, 0xaa, 0xb9, 0x96, 0x69, 0x62,
0xa2, 0x41, 0x3b, 0x67, 0x35, 0x48, 0x82, 0x8a, 0x7b, 0x65, 0x14, 0x6d, 0x5b, 0x7d, 0x02, 0xb0,
0x1f, 0x6e, 0xd4, 0x1f, 0x5f, 0x6a, 0x48, 0x07, 0x41, 0xd0, 0x22, 0xb3, 0xae, 0x34, 0x5f, 0x76,
0xde, 0x20, 0xb2, 0x22, 0x9d, 0x7b, 0xab, 0xd7, 0x3a, 0xe6, 0xff, 0x1b, 0xe6, 0x85, 0x29, 0x34,
0x90, 0x70, 0x8c, 0x06, 0x9b, 0x46, 0x9e, 0xfe, 0xe0, 0xfb, 0x2f, 0xa7, 0xa0, 0x8d, 0x0b, 0x06,
0x1e, 0x00, 0x00
};

View File

@@ -721,10 +721,10 @@ bool PinManagerClass::isPinOk(byte gpio, bool output)
if (output) return digitalPinCanOutput(gpio);
else return true;
}
#else
#else //8266
if (gpio < 6) return true;
if (gpio < 12) return false; //SPI flash pins
if (gpio < 17) return true;
if (gpio <= NUM_DIGITAL_PINS) return true; //WLEDMM: include pin 17 / A0 / Audio in
#endif
return false;
}

View File

@@ -8,7 +8,7 @@
*/
// version code in format yymmddb (b = daily build)
#define VERSION 2301203
#define VERSION 2301230
//uncomment this if you have a "my_config.h" file you'd like to use
//#define WLED_USE_MY_CONFIG

View File

@@ -269,8 +269,8 @@ void appendGPIOinfo() {
oappendi(21);
#elif defined(ESP32)
oappendi(39);
#else
oappendi(16);
#else //8266
oappendi(NUM_DIGITAL_PINS); //WLEDMM include pin 17 for Analog
#endif
oappend(SET_F(";"));
@@ -278,9 +278,13 @@ void appendGPIOinfo() {
#if defined(ESP8266) && !defined(ARDUINO_ESP8266_ESP01)
sprintf(dt_pins, "d.dt_pins=[%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d];", D0, D1, D2, D3, D4, D5, D6, D7, D8, hardwareRX, hardwareTX);
#else
sprintf(dt_pins, "d.dt_pins=[%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d];", 99, 99, 99, 99, 99, 99, 99, 99, 99, hardwareRX, hardwareTX);
sprintf(dt_pins, "d.dt_pins=[%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d];", PM_NO_PIN, PM_NO_PIN, PM_NO_PIN, PM_NO_PIN, PM_NO_PIN, PM_NO_PIN, PM_NO_PIN, PM_NO_PIN, PM_NO_PIN, hardwareRX, hardwareTX);
#endif
oappend(dt_pins);
char a_pins[48]; // fix warning: output 45 bytes into a destination of size 30
sprintf(a_pins, "d.a_pins=[%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d];", pinManager.getADCPin(PM_ADC1, 0), pinManager.getADCPin(PM_ADC1, 1), pinManager.getADCPin(PM_ADC1, 2), pinManager.getADCPin(PM_ADC1, 3), pinManager.getADCPin(PM_ADC1, 4), pinManager.getADCPin(PM_ADC1, 5), pinManager.getADCPin(PM_ADC1, 6), pinManager.getADCPin(PM_ADC1, 7), pinManager.getADCPin(PM_ADC1, 8), pinManager.getADCPin(PM_ADC1, 9), pinManager.getADCPin(PM_ADC1, 10));
oappend(a_pins);
}
//get values for settings form in javascript
@@ -724,31 +728,31 @@ void getSettingsJS(AsyncWebServerRequest* request, byte subPage, char* dest) //W
oappend(SET_F("d.getElementsByName(\"if:SCLK:pin\")[1].value=")); oappendi(spi_sclk); oappend(";");
//WLEDMM: add help info showing defaults
oappend(SET_F("addInfo('if:SDA:pin',0,'', 'SDA');"));
oappend(SET_F("xOption('if:SDA:pin',1,' ⍼',")); oappendi(SDA); oappend(");");
oappend(SET_F("xOpt('if:SDA:pin',1,' ⍼',")); oappendi(SDA); oappend(");");
#ifdef HW_PIN_SDA
oappend(SET_F("xOption('if:SDA:pin',1,' ⎌',")); oappendi(HW_PIN_SDA); oappend(");");
oappend(SET_F("xOpt('if:SDA:pin',1,' ⎌',")); oappendi(HW_PIN_SDA); oappend(");");
#endif
oappend(SET_F("addInfo('if:SCL:pin',0,'', 'SCL');"));
oappend(SET_F("xOption('if:SCL:pin',1,' ⍼',")); oappendi(SCL); oappend(");");
oappend(SET_F("disableRO('if:SCL:pin',1);"));
oappend(SET_F("xOpt('if:SCL:pin',1,' ⍼',")); oappendi(SCL); oappend(");");
oappend(SET_F("dRO('if:SCL:pin',1);"));
#ifdef HW_PIN_SCL
oappend(SET_F("xOption('if:SCL:pin',1,' ⎌',")); oappendi(HW_PIN_SCL); oappend(");");
oappend(SET_F("xOpt('if:SCL:pin',1,' ⎌',")); oappendi(HW_PIN_SCL); oappend(");");
#endif
oappend(SET_F("addInfo('if:MOSI:pin',0,'', 'MOSI');"));
oappend(SET_F("xOption('if:MOSI:pin',1,' ⍼',")); oappendi(MOSI); oappend(");");
oappend(SET_F("xOpt('if:MOSI:pin',1,' ⍼',")); oappendi(MOSI); oappend(");");
#ifdef HW_PIN_MOSISPI //WLEDMM renamed from HW_PIN_DATASPI
oappend(SET_F("xOption('if:MOSI:pin',1,' ⎌',")); oappendi(HW_PIN_MOSISPI); oappend(");");
oappend(SET_F("xOpt('if:MOSI:pin',1,' ⎌',")); oappendi(HW_PIN_MOSISPI); oappend(");");
#endif
oappend(SET_F("addInfo('if:MISO:pin',0,'', 'MISO');"));
oappend(SET_F("xOption('if:MISO:pin',1,' ⍼',")); oappendi(MISO); oappend(");");
oappend(SET_F("xOpt('if:MISO:pin',1,' ⍼',")); oappendi(MISO); oappend(");");
#ifdef HW_PIN_MISOSPI
oappend(SET_F("xOption('if:MISO:pin',1,' ⎌',")); oappendi(HW_PIN_MISOSPI); oappend(");");
oappend(SET_F("xOpt('if:MISO:pin',1,' ⎌',")); oappendi(HW_PIN_MISOSPI); oappend(");");
#endif
oappend(SET_F("addInfo('if:SCLK:pin',0,'', 'SCLK');"));
oappend(SET_F("xOption('if:SCLK:pin',1,' ⍼',")); oappendi(SCK); oappend(");");
oappend(SET_F("disableRO('if:SCLK:pin',1);"));
oappend(SET_F("xOpt('if:SCLK:pin',1,' ⍼',")); oappendi(SCK); oappend(");");
oappend(SET_F("dRO('if:SCLK:pin',1);"));
#ifdef HW_PIN_CLOCKSPI
oappend(SET_F("xOption('if:SCLK:pin',1,' ⎌',")); oappendi(HW_PIN_CLOCKSPI); oappend(");");
oappend(SET_F("xOpt('if:SCLK:pin',1,' ⎌',")); oappendi(HW_PIN_CLOCKSPI); oappend(");");
#endif
}
else {
@@ -757,7 +761,7 @@ void getSettingsJS(AsyncWebServerRequest* request, byte subPage, char* dest) //W
}
// oappend(SET_F("console.log('getSettingsJS fix ro pins', d.max_gpio, d.ro_gpio);"));
oappend(SET_F("pinDropdownsPost();"));
oappend(SET_F("pinPost();"));
}
if (subPage == 9) // update