Ledmaps improvements

index.js:
- add global ledmap variable
- updateLen conditional draw parameter
- draw black out not mapped

json.cpp: 
- add "ledmap" in (de)serializeState (not info)
- use loadedLedmap

wled.cpp/h:
- loadLedMap is boolean, use loadedLedmap for ledmap
- show * password

liveviewws2D: colorAmp
settings2D: add id and name, change max to 255
This commit is contained in:
Ewoud
2023-02-11 20:45:21 +01:00
parent 81322a31fe
commit b02192e359
10 changed files with 2504 additions and 2457 deletions

View File

@@ -62,7 +62,7 @@ void WS2812FX::setUpMatrix(bool reset) {
if (reset) { //WLEDMM: add reset option to switch on/off reset of customMappingTable
// safety check
if (Segment::maxWidth * Segment::maxHeight > MAX_LEDS || Segment::maxWidth <= 1 || Segment::maxHeight <= 1) {
DEBUG_PRINTLN(F("2D Bounds error."));
DEBUG_PRINTF("2D Bounds error. %d x %d\n", Segment::maxWidth, Segment::maxHeight);
isMatrix = false;
Segment::maxWidth = _length;
Segment::maxHeight = 1;

View File

@@ -37,6 +37,7 @@ var hol = [
[0,0,1,1,"https://initiate.alphacoders.com/download/wallpaper/1198800/images/jpg/2522807481585600"] // new year
];
var ctx = null; // WLEDMM
var ledmap = -1; //WLEDMM
function handleVisibilityChange() {if (!d.hidden && new Date () - lastUpdate > 3000) requestJson();}
function sCol(na, col) {d.documentElement.style.setProperty(na, col);}
@@ -709,7 +710,6 @@ function populateSegments(s)
segCount = 0; lowestUnused = 0; lSeg = 0;
for (var inst of (s.seg||[])) {
console.log("inst", inst);
segCount++;
let i = parseInt(inst.id);
@@ -828,7 +828,7 @@ function populateSegments(s)
resetUtil(noNewSegs);
if (gId('selall')) gId('selall').checked = true;
for (var i = 0; i <= lSeg; i++) {
updateLen(i);
updateLen(i, false);
updateTrail(gId(`seg${i}bri`));
gId(`segr${i}`).style.display = "none";
if (!gId(`seg${i}sel`).checked && gId('selall')) gId('selall').checked = false; // uncheck if at least one is unselected.
@@ -839,13 +839,14 @@ function populateSegments(s)
if (Array.isArray(li.maps) && li.maps.length>0) { //WLEDMM >0 instead of 1 to show also first ledmap. Attention: WLED AC has isM check, in MM Matrices are supported so do not check on isM
let cont = `Ledmap:&nbsp;<select class="sel-sg" onchange="requestJson({'ledmap':parseInt(this.value)})">`; //WLEDMM remove <option value="" selected>Unchanged</option>
for (const k of (li.maps||[])) cont += `<option value="${k}"${(i>0 && li.ledmap==k)?" selected":""}>${k==0?'Default':'ledmap'+k+'.json'}</option>`; //WLEDMM set ledmap selected
for (const k of (li.maps||[])) cont += `<option value="${k}"${(i>0 && ledmap==k)?" selected":""}>${k==0?'Default':'ledmap'+k+'.json'}</option>`; //WLEDMM set ledmap selected
cont += "</select></div>";
gId("ledmap").innerHTML = cont;
gId("ledmap").classList.remove('hide');
} else {
gId("ledmap").classList.add('hide');
}
if (isM) drawSegments(); //WLEDMM
}
function populateEffects()
@@ -1074,9 +1075,8 @@ function toggleBubble(e)
}
// updates segment length upon input of segment values
function updateLen(s)
function updateLen(s, draw=true) //WLEDMM conditonally draw segment visualisation
{
console.log("updateLen", s);
if (!gId(`seg${s}s`)) return;
var start = parseInt(gId(`seg${s}s`).value);
var stop = parseInt(gId(`seg${s}e`).value) + (cfg.comp.seglen?start:0);
@@ -1146,14 +1146,14 @@ function updateLen(s)
if (isM && start >= mw*mh) out += " [strip]";
gId(`seg${s}len`).innerHTML = out;
if (isM) drawSegments(); //WLEDMM draw new segment graphic if something changes in a segment
if (draw && isM) drawSegments(); //WLEDMM draw new segment visualization if something changes in a segment
}
//WLEDMM
function drawSegments() {
if (!ctx) {
console.log("init", window.innerWidth);
//WLEDMM: add canvas, initialize and set UI
var canvas = gId("canvas");
canvas.hidden = false;
@@ -1161,23 +1161,34 @@ function drawSegments() {
}
ctx.canvas.width = ctx.canvas.parentElement.offsetWidth > 800?800:300; //Mobile and non pc mode gets 300, pc 800
var px, py, pw, ph;
var topLeftX, topLeftY;
var space=0; // space between panels + margin
function initSegmentVars(p) {
px = parseInt(gId("seg"+p+"s").value); //first led x
if (!gId("seg"+p+"sY")) return false; //no draw for 1D segments (yet)
py = parseInt(gId("seg"+p+"sY").value); //first led y
pw = parseInt(gId("seg"+p+"e").value - gId("seg"+p+"s").value); //width
ph = parseInt(gId("seg"+p+"eY").value - gId("seg"+p+"sY").value); //height
// console.log("sergment", p, px, py, pw, ph);
topLeftX = px*ppL + space; //left margin
topLeftY = py*ppL + space; //top margin
// console.log("rect", p, topLeftX, topLeftY, pw*ppL, ph*ppL);
return true;
}
//calc max height and width
var maxWidth = 0;
var maxHeight = 0;
for (let p=0; p<gId("segcont").children.length; p++) {
var px = parseInt(gId("seg"+p+"s").value); //first led x
if (!gId("seg"+p+"sY")) break; //no draw for 1D segments (yet)
var py = parseInt(gId("seg"+p+"sY").value); //first led y
var pw = parseInt(gId("seg"+p+"e").value - gId("seg"+p+"s").value); //width
var ph = parseInt(gId("seg"+p+"eY").value - gId("seg"+p+"sY").value); //height
if (!initSegmentVars(p)) break;
maxWidth = Math.max(maxWidth, px + pw);
maxHeight = Math.max(maxHeight, py + ph);
}
ctx.canvas.height = ctx.canvas.width / maxWidth * maxHeight;
ctx.clearRect(0, 0, ctx.canvas.width, ctx.canvas.height);
var space=0; // space between panels + margin
var ppL = (ctx.canvas.width - space * 2) / maxWidth; //pixels per led
// console.log("dim", ctx.canvas.width , maxWidth, ctx.canvas.height , maxHeight, ppL);
@@ -1191,17 +1202,8 @@ function drawSegments() {
for (let p=0; p<gId("segcont").children.length; p++) {
// console.log(gId("P"+p+"X").value, gId("P"+p+"Y").value, gId("P"+p+"W").value, gId("P"+p+"H").value, gId("P"+p+"B").value, gId("P"+p+"R").value, gId("P"+p+"V").value, gId("P"+p+"S").checked);
var px = parseInt(gId("seg"+p+"s").value); //first led x
if (!gId("seg"+p+"sY")) break; //no draw for 1D segments (yet)
var py = parseInt(gId("seg"+p+"sY").value); //first led y
var pw = parseInt(gId("seg"+p+"e").value - gId("seg"+p+"s").value); //width
var ph = parseInt(gId("seg"+p+"eY").value - gId("seg"+p+"sY").value); //height
if (!initSegmentVars(p)) break;
// console.log("sergment", p, px, py, pw, ph);
var topLeftX = px*ppL + space; //left margin
var topLeftY = py*ppL + space; //top margin
// console.log("rect", p, topLeftX, topLeftY, pw*ppL, ph*ppL);
ctx.lineWidth = 3;
ctx.strokeStyle="white";
ctx.strokeRect(topLeftX, topLeftY, pw*ppL, ph*ppL); // add space between panels
@@ -1278,35 +1280,58 @@ function drawSegments() {
}
}
ctx.font = '40px Arial';
ctx.fillStyle = "orange";
ctx.fillText(p, topLeftX + pw/2*ppL - 10, topLeftY + ph/2*ppL + 10);
ctx.font = '20px Arial';
ctx.fillStyle = "white";
var name = eJson.find((o)=>{return o.id==fx}).name;
ctx.fillText(name, topLeftX + ppL, topLeftY + ph*ppL - 10);
} // for each segment
gId("MD").innerHTML = "☾ W*H=LC: " + maxWidth + " x " + maxHeight + " = " + maxWidth * maxHeight;
function post() {
for (let p=0; p<gId("segcont").children.length; p++) {
if (!initSegmentVars(p)) break;
ctx.font = '40px Arial';
ctx.fillStyle = "orange";
ctx.fillText(p, topLeftX + pw/2*ppL - 10, topLeftY + ph/2*ppL + 10);
ctx.font = '20px Arial';
ctx.fillStyle = "white";
var name = eJson.find((o)=>{return o.id==fx}).name;
ctx.fillText(name, topLeftX + ppL, topLeftY + ph*ppL - 10);
}
}
//draw the ledmap
if (lastinfo.ledmap>0 && ctx) {
if (ledmap>0 && ctx) {
// console.log("Before fetch ledmap ", lastinfo.ledmap);
fetchAndExecute((loc?`http://${locip}`:'.') + "/", "ledmap"+lastinfo.ledmap+".json" , function(text) {
fetchAndExecute((loc?`http://${locip}`:'.') + "/", "ledmap"+ledmap+".json" , function(text) {
var noMap = [];
ledmapJson = JSON.parse(text);
var counter = 0;
for (let i=0;i<ledmapJson["map"].length;i++) {
ctx.font = parseInt(ppL/3) + 'px Arial';
ctx.fillStyle = "white";
x = ledmapJson["map"][i]%maxWidth;
y = parseInt(ledmapJson["map"][i]/maxWidth);
ctx.fillText(counter, topLeftX + ppL/2 + x*ppL-ppL*0.3, topLeftY + ppL/2 + y * ppL);
counter++;
let mapIndex = ledmapJson["map"][i];
if (mapIndex != -1) {
ctx.font = parseInt(ppL/3) + 'px Arial';
ctx.fillStyle = "white";
x = mapIndex%maxWidth;
y = parseInt(mapIndex/maxWidth);
ctx.fillText(counter, topLeftX + ppL/2 + x*ppL-ppL*0.3, topLeftY + ppL/2 + y * ppL);
counter++;
}
else
noMap.push(i);
}
for (let i=0;i<noMap.length;i++) {
x = noMap[i]%maxWidth;
y = parseInt(noMap[i]/maxWidth);
ctx.fillStyle = "black";
ctx.beginPath();
ctx.arc(topLeftX + ppL/2 + x*ppL, topLeftY + ppL/2 + y * ppL, ppL*0.4, 0, 2 * Math.PI);
ctx.fill();
}
post();
});
}
else
post();
}
// updates background color of currently selected preset
@@ -1456,6 +1481,7 @@ function makeWS() {
clearErrorToast();
gId('connind').style.backgroundColor = "var(--c-l)";
// json object should contain json.info AND json.state (but may not)
// console.log("makeWS onmessage", json); //WLEDMM Debug
var i = json.info;
if (i) {
parseInfo(i);
@@ -1496,6 +1522,8 @@ function readState(s,command=false)
tr = s.transition;
gId('tt').value = tr/10;
ledmap = s.ledmap; //WLEDMM
populateSegments(s);
var selc=0;
var sellvl=0; // 0: selc is invalid, 1: selc is mainseg, 2: selc is first selected
@@ -1736,10 +1764,12 @@ function requestJson(command=null)
};
if (useWs) {
// console.log("requestJson ws.send", command); //WLEDMM Debug
ws.send(req?req:'{"v":true}');
return;
}
// console.log("requestJson url fetch", url, type); //WLEDMM Debug
fetch(url, {
method: type,
headers: {
@@ -1759,6 +1789,7 @@ function requestJson(command=null)
gId('connind').style.backgroundColor = "var(--c-g)";
if (!json) { showToast('Empty response', true); return; }
if (json.success) return;
// console.log("requestJson url return", json); //WLEDMM Debug
if (json.info) {
let i = json.info;
// append custom palettes (when loading for the 1st time)
@@ -3142,9 +3173,12 @@ function togglePcMode(fromB = false)
sCol('--bh', gId('bot').clientHeight + "px");
_C.style.width = (pcMode)?'100%':'400%';
lastw = wW;
//WLEDMM
gId("canvas").width = gId("canvas").parentElement.offsetWidth > 800?800:300; //WLEDMM Mobile and non pc mode gets 300, pc 800
drawSegments(); //WLEDMM
//WLEDMM resize segment visualization
if (isM) {
gId("canvas").width = gId("canvas").parentElement.offsetWidth > 800?800:300; //WLEDMM Mobile and non pc mode gets 300, pc 800
drawSegments();
}
}
function mergeDeep(target, ...sources)

View File

@@ -50,9 +50,12 @@
let lOf = Math.floor((c.width - pPL*mW)/2); //left offeset (to center matrix)
var i = 6;
ctx.clearRect(0, 0, c.width, c.height); //WLEDMM
function colorAdjust(color) {return 55+150*color/255;} //WLEDMM in range 55 - 205
function colorAmp(color) {
if (color == 0) return 0;
return 25+225*color/255;
} //WLEDMM in range 55 - 205
for (y=0.5;y<mH;y++) for (x=0.5; x<mW; x++) {
ctx.fillStyle = `rgb(${colorAdjust(leds[i])},${colorAdjust(leds[i+1])},${colorAdjust(leds[i+2])})`;
ctx.fillStyle = `rgb(${colorAmp(leds[i])},${colorAmp(leds[i+1])},${colorAmp(leds[i+2])})`;
ctx.beginPath();
ctx.arc(x*pPL+lOf, y*pPL, pPL*0.4, 0, 2 * Math.PI);
ctx.fill();

View File

@@ -72,6 +72,7 @@
if (p.children.length >= maxPanels) return;
var pw = parseInt(d.Sf.PW.value);
var ph = parseInt(d.Sf.PH.value);
//WLEDMM: change name to id
let b = `<div id="pnl${i}"><hr class="sml">Panel ${i}<br>
1<sup>st</sup> LED: <select id="P${i}B" name="P${i}B" oninput="draw()">
<option value="0">Top</option>
@@ -84,10 +85,10 @@ Orientation: <select id="P${i}V" name="P${i}V" oninput="draw()">
<option value="0">Horizontal</option>
<option value="1">Vertical</option>
</select><br>
Serpentine: <input id="P${i}S" type="checkbox" name="P${i}S" onclick="draw()"><br>
Dimensions (WxH): <input id="P${i}W" name="P${i}W" type="number" min="1" max="128" value="${pw}" oninput="draw()"> x <input id="P${i}H" name="P${i}H" type="number" min="1" max="128" value="${ph}" oninput="draw()"><br>
Offset X:<input id="P${i}X" name="P${i}X" type="number" min="0" max="256" value="0" oninput="draw()">
Y:<input id="P${i}Y" name="P${i}Y" type="number" min="0" max="256" value="0" oninput="draw()"><br><i>(offset from top-left corner in # LEDs)</i>
Serpentine: <input id="P${i}S" name="P${i}S" type="checkbox" onclick="draw()"><br>
Dimensions (WxH): <input id="P${i}W" name="P${i}W" type="number" min="1" max="255" value="${pw}" oninput="draw()"> x <input id="P${i}H" name="P${i}H" type="number" min="1" max="255" value="${ph}" oninput="draw()"><br>
Offset X:<input id="P${i}X" name="P${i}X" type="number" min="0" max="255" value="0" oninput="draw()">
Y:<input id="P${i}Y" name="P${i}Y" type="number" min="0" max="255" value="0" oninput="draw()"><br><i>(offset from top-left corner in # LEDs)</i>
</div>`;
p.insertAdjacentHTML("beforeend", b);
}
@@ -364,7 +365,7 @@ Y:<input id="P${i}Y" name="P${i}Y" type="number" min="0" max="256" value="0" oni
<br>
<hr class="sml">
<h3 id="title">Matrix Generator</h3>
Panel dimensions (WxH): <input name="PW" type="number" min="1" max="128" value="8" oninput="fieldChange()"> x <input name="PH" type="number" min="1" max="128" value="8" oninput="fieldChange()"><br>
Panel dimensions (WxH): <input name="PW" type="number" min="1" max="255" value="8" oninput="fieldChange()"> x <input name="PH" type="number" min="1" max="255" value="8" oninput="fieldChange()"><br>
Horizontal panels: <input name="MPH" type="number" min="1" max="8" value="1" oninput="fieldChange()">
Vertical panels: <input name="MPV" type="number" min="1" max="8" value="1" oninput="fieldChange()"><br>
<div id="panelOrientationBlock">
@@ -397,8 +398,8 @@ Y:<input id="P${i}Y" name="P${i}Y" type="number" min="0" max="256" value="0" oni
<br>
<hr class="sml">
<br>
<canvas id="canvas"></canvas><br>
<div id="MD"></div> <!-- Matrix dimensions -->
<canvas id="canvas"></canvas><br> <!--WLEDMM panel visualization-->
<div id="MD"></div> <!-- WLEDMM Matrix dimensions -->
<br>
<div id="advancedBlock">
<i style="color:#fa0;">Can populate LED panel layout with pre-arranged matrix.<br>These values do not affect final layout.<br>WLEDMM: Populate will overwrite earlier saved panel layouts!</i><br>

View File

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

View File

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

File diff suppressed because it is too large Load Diff

View File

@@ -448,7 +448,9 @@ bool deserializeState(JsonObject root, byte callMode, byte presetId)
usermods.readFromJsonState(root);
loadLedmap = root[F("ledmap")] | loadLedmap;
//WLEDMM
loadedLedmap = root[F("ledmap")] | loadedLedmap;
loadLedmap = loadedLedmap>=0; //WLEDMM included 0 to switch back to default
byte ps = root[F("psave")];
if (ps > 0 && ps < 251) savePreset(ps, nullptr, root);
@@ -617,6 +619,7 @@ void serializeState(JsonObject root, bool forPreset, bool includeBri, bool segme
seg0["stop"] = 0;
}
}
root[F("ledmap")] = loadedLedmap; //WLEDMM ledmaps will be stored in json
}
// begin WLEDMM
@@ -872,7 +875,6 @@ void serializeInfo(JsonObject root)
default: root[F("e32flashtext")] = F(" (other)"); break;
}
#endif
root[F("ledmap")] = loadedLedmap; //WLEDMM ledmaps will be stored in json/info
// end WLEDMM
root[F("uptime")] = millis()/1000 + rolloverMillis*4294967;

View File

@@ -177,15 +177,15 @@ void WLED::loop()
delete busConfigs[i]; busConfigs[i] = nullptr;
}
strip.finalizeInit();
loadLedmap = 0;
loadLedmap = true;
if (aligned) strip.makeAutoSegments();
else strip.fixInvalidSegments();
yield();
serializeConfig();
}
if (loadLedmap >= 0) {
strip.deserializeMap(loadLedmap);
loadLedmap = -1;
if (loadLedmap) {
strip.deserializeMap(loadedLedmap);
loadLedmap = false;
}
yield();
@@ -800,7 +800,11 @@ void WLED::initConnection()
USER_PRINT(F("Connecting to "));
USER_PRINT(clientSSID);
USER_PRINTLN("...");
USER_PRINT(" / ");
for(int i = 0; i<strlen(clientPass); i++){
USER_PRINT("*");
}
USER_PRINTLN(" ...");
// convert the "serverDescription" into a valid DNS hostname (alphanumeric)
char hostname[25];

View File

@@ -8,7 +8,7 @@
*/
// version code in format yymmddb (b = daily build)
#define VERSION 2302100
#define VERSION 2302110
//uncomment this if you have a "my_config.h" file you'd like to use
//#define WLED_USE_MY_CONFIG
@@ -681,7 +681,7 @@ WLED_GLOBAL BusManager busses _INIT(BusManager());
WLED_GLOBAL WS2812FX strip _INIT(WS2812FX());
WLED_GLOBAL BusConfig* busConfigs[WLED_MAX_BUSSES+WLED_MIN_VIRTUAL_BUSSES] _INIT({nullptr}); //temporary, to remember values from network callback until after
WLED_GLOBAL bool doInitBusses _INIT(false);
WLED_GLOBAL int8_t loadLedmap _INIT(-1);
WLED_GLOBAL bool loadLedmap _INIT(false);
WLED_GLOBAL uint8_t loadedLedmap _INIT(0); //WLEDMM default 0
WLED_GLOBAL uint16_t ledMaps _INIT(0); // bitfield representation of available ledmaps