Merge remote-tracking branch 'upstream/main' into mdev

This commit is contained in:
Ewoud
2023-01-04 13:28:46 +01:00
10 changed files with 336 additions and 326 deletions

View File

@@ -36,7 +36,7 @@ define `USERMOD_BATTERY` in `wled00/my_config.h`
| Name | Unit | Description |
| ----------------------------------------------- | ----------- |-------------------------------------------------------------------------------------- |
| `USERMOD_BATTERY` | | define this (in `my_config.h`) to have this usermod included wled00\usermods_list.cpp |
| `USERMOD_BATTERY_MEASUREMENT_PIN` | | defaults to A0 on ESP8266 and GPIO32 on ESP32 |
| `USERMOD_BATTERY_MEASUREMENT_PIN` | | defaults to A0 on ESP8266 and GPIO35 on ESP32 |
| `USERMOD_BATTERY_MEASUREMENT_INTERVAL` | ms | battery check interval. defaults to 30 seconds |
| `USERMOD_BATTERY_MIN_VOLTAGE` | v | minimum battery voltage. default is 2.6 (18650 battery standard) |
| `USERMOD_BATTERY_MAX_VOLTAGE` | v | maximum battery voltage. default is 4.2 (18650 battery standard) |

View File

@@ -93,6 +93,7 @@ class UsermodBattery : public Usermod
void lowPowerIndicator()
{
if (!lowPowerIndicatorEnabled) return;
if (batteryPin < 0) return; // no measurement
if (lowPowerIndicationDone && lowPowerIndicatorReactivationThreshold <= batteryLevel) lowPowerIndicationDone = false;
if (lowPowerIndicatorThreshold <= batteryLevel) return;
if (lowPowerIndicationDone) return;
@@ -130,6 +131,8 @@ class UsermodBattery : public Usermod
if (!success) {
DEBUG_PRINTLN(F("Battery pin allocation failed."));
batteryPin = -1; // allocation failed
} else {
pinMode(batteryPin, INPUT);
}
#else //ESP8266 boards have only one analog input pin A0
@@ -168,6 +171,9 @@ class UsermodBattery : public Usermod
nextReadTime = millis() + readingInterval;
lastReadTime = millis();
if (batteryPin < 0) return; // nothing to read
initializing = false;
// read battery raw input
@@ -197,8 +203,8 @@ class UsermodBattery : public Usermod
// SmartHome stuff
// still don't know much about MQTT and/or HA
if (WLED_MQTT_CONNECTED) {
char buf[64] = { '\0' }; // buffer for snprintf() // WLEDMM initialize buffer before using
snprintf_P(buf, 63, PSTR("/voltage%s"), mqttDeviceTopic); // WLEDMM fix bad format string
char buf[64]; // buffer for snprintf()
snprintf_P(buf, 63, PSTR("%s/voltage"), mqttDeviceTopic);
mqtt->publish(buf, 0, false, String(voltage).c_str());
}
@@ -214,6 +220,13 @@ class UsermodBattery : public Usermod
JsonObject user = root["u"];
if (user.isNull()) user = root.createNestedObject("u");
if (batteryPin < 0) {
JsonArray infoVoltage = user.createNestedArray(F("Battery voltage"));
infoVoltage.add(F("n/a"));
infoVoltage.add(F(" invalid GPIO"));
return; // no GPIO - nothing to report
}
// info modal display names
JsonArray infoPercentage = user.createNestedArray(F("Battery level"));
JsonArray infoVoltage = user.createNestedArray(F("Battery voltage"));
@@ -430,7 +443,7 @@ class UsermodBattery : public Usermod
if (newBatteryPin != batteryPin)
{
// deallocate pin
pinManager.deallocatePin(batteryPin);
pinManager.deallocatePin(batteryPin, PinOwner::UM_Battery);
batteryPin = newBatteryPin;
// initialise
setup();
@@ -561,7 +574,7 @@ class UsermodBattery : public Usermod
{
#ifdef ARDUINO_ARCH_ESP32
// esp32
return 4095.0f;
return 4096.0f;
#else
// esp8266
return 1024.0f;
@@ -727,4 +740,4 @@ const char UsermodBattery::_enabled[] PROGMEM = "enabled";
const char UsermodBattery::_threshold[] PROGMEM = "threshold";
const char UsermodBattery::_preset[] PROGMEM = "preset";
const char UsermodBattery::_duration[] PROGMEM = "duration";
const char UsermodBattery::_init[] PROGMEM = "init";
const char UsermodBattery::_init[] PROGMEM = "init";

View File

@@ -271,6 +271,7 @@ class UsermodCronixie : public Usermod {
{
if (root["nx"].is<const char*>()) {
strncpy(cronixieDisplay, root["nx"], 6);
setCronixie();
}
}

View File

@@ -203,9 +203,8 @@ bool deserializeConfig(JsonObject doc, bool fromFS) {
// read multiple button configuration
JsonObject btn_obj = hw["btn"];
int pull = -1; // trick for inverted setting
CJSON(pull, btn_obj[F("pull")]);
if (pull>=0) disablePullUp = pull;
bool pull = btn_obj[F("pull")] | (!disablePullUp); // if true, pullup is enabled
disablePullUp = !pull;
JsonArray hw_btn_ins = btn_obj[F("ins")];
if (!hw_btn_ins.isNull()) {
uint8_t s = 0;

View File

@@ -24,6 +24,7 @@
//console.log("File loaded");
GetV();
UI();
Sf.MPC.setAttribute("max",maxPanels);
});
// error event
scE.addEventListener("error", (ev) => {
@@ -44,31 +45,27 @@
loadJS(url, false); // If we set async false, file is loaded and executed, then next statement is processed
}
function UI(panels=-1) //WLEDM quick fix
{
gId("mpdiv").style.display = "block";
function UI() {
if (gId("somp").value === "0") {
gId("mpdiv").style.display = "none";
resetPanels();
return;
}
if (panels != -1) { //WLEDM quick fix
let i = gId("panels").children.length;
if (i<panels) for (let j=i; j<panels; j++) addPanel(j);
if (i>panels) for (let j=i; j>panels; j--) remPanel();
}
gId("mpdiv").style.display = "block";
}
function addPanels() {
let c = parseInt(d.Sf.MPC.value);
for (let i=0; i<c; i++) addPanel(i);
let i = gId("panels").children.length;
if (i<c) for (let j=i; j<c; j++) addPanel(j);
if (i>c) for (let j=i; j>c; j--) remPanel();
}
function addPanel(i=0) {
let p = gId("panels");
if (p.children.length >= maxPanels) return;
var pw = parseInt(d.Sf.PW.value);
var ph = parseInt(d.Sf.PH.value);
let b = `<div id="pnl${i}"><hr class="sml">Panel ${i}<br>
1<sup>st</sup> LED: <select name="P${i}B">
<option value="0">Top</option>
@@ -82,7 +79,7 @@ Orientation: <select name="P${i}V">
<option value="1">Vertical</option>
</select><br>
Serpentine: <input type="checkbox" name="P${i}S"><br>
Dimensions (WxH): <input id="P${i}W" name="P${i}W" type="number" min="1" max="128" value="8"> x <input id="P${i}H" name="P${i}H" type="number" min="1" max="128" value="8"><br>
Dimensions (WxH): <input id="P${i}W" name="P${i}W" type="number" min="1" max="128" value="${pw}"> x <input id="P${i}H" name="P${i}H" type="number" min="1" max="128" value="${ph}"><br>
Offset X:<input id="P${i}X" name="P${i}X" type="number" min="0" max="256" value="0">
Y:<input id="P${i}Y" name="P${i}Y" type="number" min="0" max="256" value="0"><br><i>(offset from top-left corner in # LEDs)</i>
</div>`;
@@ -98,22 +95,21 @@ Y:<input id="P${i}Y" name="P${i}Y" type="number" min="0" max="256" value="0"><br
function resetPanels() {
d.Sf.MPC.value = 1;
for (let e of gId("panels").children) e.remove();
for (let e of gId("panels").children) e.remove(); // to remove any leftovers
let e = gId("panels").children
for (let i = e.length; i>0; i--) e[i-1].remove();
}
/*
function btnPanel(i) {
gId("pnl_add").style.display = (i<maxPanels) ? "inline":"none";
gId("pnl_rem").style.display = (i>1) ? "inline":"none";
}
*/
function gen() {
resetPanels();
var pansH = parseInt(d.Sf.MPH.value);
var pansV = parseInt(d.Sf.MPV.value);
var c = pansH*pansV;
//maxPanels = c;
d.Sf.MPC.value = c; // number of panels
var ps = d.Sf.PS.checked;
@@ -138,7 +134,6 @@ Y:<input id="P${i}Y" name="P${i}Y" type="number" min="0" max="256" value="0"><br
}
}
}
</script>
<style>@import url("style.css");</style>
</head>
@@ -158,8 +153,8 @@ Y:<input id="P${i}Y" name="P${i}Y" type="number" min="0" max="256" value="0"><br
<hr class="sml">
<h3>Matrix Generator</h3>
Panel dimensions (WxH): <input name="PW" type="number" min="1" max="128" value="8"> x <input name="PH" type="number" min="1" max="128" value="8"><br>
Horizontal panels: <input name="MPH" type="number" min="1" max="8" value="1" oninput="UI()">
Vertical panels: <input name="MPV" type="number" min="1" max="8" value="1" oninput="UI()"><br>
Horizontal panels: <input name="MPH" type="number" min="1" max="8" value="1">
Vertical panels: <input name="MPV" type="number" min="1" max="8" value="1"><br>
1<sup>st</sup> panel: <select name="PB">
<option value="0">Top</option>
<option value="1">Bottom</option>
@@ -176,7 +171,7 @@ Y:<input id="P${i}Y" name="P${i}Y" type="number" min="0" max="256" value="0"><br
<button type="button" onclick="gen()">Populate</button>
<hr class="sml">
<h3>Panel set-up</h3>
Number of panels: <input name="MPC" type="number" min="1" max="64" value="1" oninput="UI(parseInt(this.value))"><br>
Number of panels: <input name="MPC" type="number" min="1" max="64" value="1" oninput="addPanels()"><br>
<i>A matrix is made of 1 or more physical LED panels.<br>
<!--Panels should be arranged from top-left to bottom-right order, starting with lower panel number on the left (or top if transposed).<br>-->
Each panel can be of different size and/or have different LED orientation and/or starting point and/or layout.</i><br>

View File

@@ -89,7 +89,7 @@
</div>
<h2>Security & Update setup</h2>
Settings PIN: <input type="password" id="PIN" name="PIN" size="4" maxlength="4" minlength="4" onkeydown="checkNum(this)" pattern="[0-9]*" inputmode="numeric" title="Please enter a 4 digit number"><br>
<div style="color: #fa0;">&#9888; Unencrypted transmission. Be prudent when selecting PIN, do NOT use your banking, door, SIM, etc. pin!</div><br><br>
<div style="color: #fa0;">&#9888; Unencrypted transmission. Be prudent when selecting PIN, do NOT use your banking, door, SIM, etc. pin!</div><br>
Lock wireless (OTA) software update: <input type="checkbox" name="NO"><br>
Passphrase: <input type="password" name="OP" maxlength="32"><br>
To enable OTA, for security reasons you need to also enter the correct password!<br>
@@ -120,8 +120,8 @@
(c) 2022 <a href="https://github.com/Aircoookie/WLED/compare/main...MoonModules:WLED:mdev" target="_blank">Github MoonModules WLED Commit Authors</a><br><br>
fork of <a href="https://github.com/Aircoookie/WLED/" target="_blank">WLED:</a><br>
<a href="https://github.com/Aircoookie/WLED/wiki/Contributors-and-credits" target="_blank">Contributors, dependencies and special thanks</a><br>
A huge thank you to everyone who helped me create WLED!<br>
(c) 2016-2022 Christian Schwinne <br><br>
A huge thank you to everyone who helped me create WLED!<br><br>
(c) 2016-2023 Christian Schwinne <br>
<i>Licensed under the <a href="https://github.com/Aircoookie/WLED/blob/master/LICENSE" target="_blank">MIT license</a></i><br><br>
Server message: <span class="sip"> Response error! </span><hr>
<div id="toast"></div>

View File

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

View File

@@ -679,8 +679,11 @@ void handleSettingsSet(AsyncWebServerRequest *request, byte subPage)
strip.panel.reserve(strip.panels); // pre-allocate memory
for (uint8_t i=0; i<strip.panels; i++) {
WS2812FX::Panel p;
char pO[8] = {'\0'}; snprintf_P(pO, 8, PSTR("P%d"), i); // WLEDMM fix potential string overflow
uint8_t l = strlen(pO); if ((l-1) < sizeof(pO)) pO[l+1] = 0; // WLEDMM fix array-out-of-bounds write
char pO[8] = { '\0' };
snprintf_P(pO, 7, PSTR("P%d"), i); // MAX_PANELS is 64 so pO will always only be 4 characters or less
pO[7] = '\0';
uint8_t l = strlen(pO);
// create P0B, P1B, ..., P63B, etc for other PxxX
pO[l] = 'B'; if (!request->hasArg(pO)) break;
pO[l] = 'B'; p.bottomStart = request->arg(pO).toInt();
pO[l] = 'R'; p.rightStart = request->arg(pO).toInt();

View File

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

View File

@@ -787,8 +787,11 @@ void getSettingsJS(AsyncWebServerRequest* request, byte subPage, char* dest) //W
oappend(SET_F("addPanel("));
oappend(itoa(i,n,10));
oappend(SET_F(");"));
char pO[8] = {'\0'}; snprintf_P(pO, 8, PSTR("P%d"), i); // WLEDMM fix potential string overflow
uint8_t l = strlen(pO); if ((l-1) < sizeof(pO)) pO[l+1] = 0; // WLEDMM fix array-out-of-bounds write
char pO[8] = { '\0' };
snprintf_P(pO, 7, PSTR("P%d"), i); // MAX_PANELS is 64 so pO will always only be 4 characters or less
pO[7] = '\0';
uint8_t l = strlen(pO);
// create P0B, P1B, ..., P63B, etc for other PxxX
pO[l] = 'B'; sappend('v',pO,strip.panel[i].bottomStart);
pO[l] = 'R'; sappend('v',pO,strip.panel[i].rightStart);
pO[l] = 'V'; sappend('v',pO,strip.panel[i].vertical);