Support tablet PCMode, Peek -> GFX

index.css: remove #Colors (br instead), PCmode when size < 798

index.html: Change Peek to GFX, add div colorGFX, effectGFX, segGFX

index.js: 
- remove peekexp, segvexp, 
- add colorGFX, effectGFX, segGFX controls, 
- remove expandV/eandp
- improve segment view gfx
- refactor toggleLiveView
- togglePcMode: support smaller (tablet) screens
This commit is contained in:
Ewoud
2023-03-24 14:32:57 +01:00
parent 5c6e627d28
commit 274cdb4d32
7 changed files with 2557 additions and 2561 deletions

View File

@@ -738,10 +738,10 @@ input[type=range]::-moz-range-thumb {
margin: 4px 0 0;
}
#Colors {
/* #Colors {
padding-top: 18px;
}
*/
/* Dynamically hide brightness slider label */
.hd {
display: var(--bhd);
@@ -1517,7 +1517,7 @@ TD .checkmark, TD .radiomark {
}
}
@media all and (max-width: 1249px) {
@media all and (max-width: 798px) {
#buttonPcm {
display: none;
}

View File

@@ -66,7 +66,7 @@
<button id="buttonPower" onclick="togglePower()" class="tgl"><i class="icons">&#xe08f;</i><p class="tab-label">Power</p></button>
<button id="buttonNl" onclick="toggleNl()"><i class="icons">&#xe2a2;</i><p class="tab-label">Timer</p></button>
<button id="buttonSync" onclick="toggleSync()"><i class="icons">&#xe116;</i><p class="tab-label">Sync</p></button>
<button id="buttonSr" onclick="toggleLiveview()"><i class="icons">&#xe410;</i><p class="tab-label">Peek</p></button>
<button id="buttonSr" onclick="toggleLiveview()"><i class="icons">&#xe410;</i><p class="tab-label">GFX ☾</p></button>
<button id="buttonI" onclick="toggleInfo()"><i class="icons">&#xe066;</i><p class="tab-label">Info</p></button>
<button id="buttonNodes" onclick="toggleNodes()"><i class="icons">&#xe22d;</i><p class="tab-label">Nodes</p></button>
<button onclick="window.location.href='/settings';"><i class="icons">&#xe0a2;</i><p class="tab-label">Config</p></button>
@@ -89,99 +89,102 @@
<div class ="container">
<div id="Colors" class="tabcontent">
<div id="picker" class="noslide"></div>
<div id="hwrap" class="slider">
<div class="sliderwrap il">
<input id="sliderH" class="noslide" oninput="fromH()" onchange="setColor(0)" max="359" min="0" type="range" value="0" step="any">
<div class="sliderdisplay" style="background: linear-gradient(90deg, #f00 2%, #ff0 19%, #0f0 35%, #0ff 52%, #00f 68%, #f0f 85%, #f00)"></div>
</div>
<span class="tooltiptext">Hue</span>
</div>
<div id="swrap" class="slider">
<div class="sliderwrap il">
<input id="sliderS" class="noslide" oninput="fromS()" onchange="setColor(0)" max="100" min="0" type="range" value="100" step="any">
<div class="sliderdisplay" style="background: linear-gradient(90deg, #aaa 0%, #f00)"></div>
</div>
<span class="tooltiptext">Saturation</span>
</div>
<div id="vwrap" class="slider">
<div class="sliderwrap il">
<input id="sliderV" class="noslide" oninput="fromV()" onchange="setColor(0)" max="100" min="0" type="range" value="100" step="any" />
<div class="sliderdisplay"></div>
</div>
<span class="tooltiptext">Value/Brightness</span>
</div>
<div id="kwrap" class="slider">
<div class="sliderwrap il">
<input id="sliderK" class="noslide" oninput="fromK()" onchange="setColor(0)" max="10091" min="1900" type="range" value="6550" />
<div class="sliderdisplay"></div>
</div>
<span class="tooltiptext">Kelvin/Temperature</span>
</div>
<div id="rgbwrap">
<!--p class="labels hd">RGB color</p-->
<div id="rwrap" class="slider">
<div id="colorGFX"> <!--WLEDMM-->
<br> <!--WLEDMM: instead of padding-top:18 in css-->
<div id="picker" class="noslide"></div>
<div id="hwrap" class="slider">
<div class="sliderwrap il">
<input id="sliderR" class="noslide" oninput="fromRgb()" onchange="setColor(0)" max="255" min="0" type="range" value="128" />
<input id="sliderH" class="noslide" oninput="fromH()" onchange="setColor(0)" max="359" min="0" type="range" value="0" step="any">
<div class="sliderdisplay" style="background: linear-gradient(90deg, #f00 2%, #ff0 19%, #0f0 35%, #0ff 52%, #00f 68%, #f0f 85%, #f00)"></div>
</div>
<span class="tooltiptext">Hue</span>
</div>
<div id="swrap" class="slider">
<div class="sliderwrap il">
<input id="sliderS" class="noslide" oninput="fromS()" onchange="setColor(0)" max="100" min="0" type="range" value="100" step="any">
<div class="sliderdisplay" style="background: linear-gradient(90deg, #aaa 0%, #f00)"></div>
</div>
<span class="tooltiptext">Saturation</span>
</div>
<div id="vwrap" class="slider">
<div class="sliderwrap il">
<input id="sliderV" class="noslide" oninput="fromV()" onchange="setColor(0)" max="100" min="0" type="range" value="100" step="any" />
<div class="sliderdisplay"></div>
</div>
<span class="tooltiptext">Red channel</span>
<span class="tooltiptext">Value/Brightness</span>
</div>
<div id="gwrap" class="slider">
<div id="kwrap" class="slider">
<div class="sliderwrap il">
<input id="sliderG" class="noslide" oninput="fromRgb()" onchange="setColor(0)" max="255" min="0" type="range" value="128" />
<input id="sliderK" class="noslide" oninput="fromK()" onchange="setColor(0)" max="10091" min="1900" type="range" value="6550" />
<div class="sliderdisplay"></div>
</div>
<span class="tooltiptext">Green channel</span>
<span class="tooltiptext">Kelvin/Temperature</span>
</div>
<div id="bwrap" class="slider">
<div class="sliderwrap il">
<input id="sliderB" class="noslide" oninput="fromRgb()" onchange="setColor(0)" max="255" min="0" type="range" value="128" />
<div id="rgbwrap">
<!--p class="labels hd">RGB color</p-->
<div id="rwrap" class="slider">
<div class="sliderwrap il">
<input id="sliderR" class="noslide" oninput="fromRgb()" onchange="setColor(0)" max="255" min="0" type="range" value="128" />
<div class="sliderdisplay"></div>
</div>
<span class="tooltiptext">Red channel</span>
</div>
<div id="gwrap" class="slider">
<div class="sliderwrap il">
<input id="sliderG" class="noslide" oninput="fromRgb()" onchange="setColor(0)" max="255" min="0" type="range" value="128" />
<div class="sliderdisplay"></div>
</div>
<span class="tooltiptext">Green channel</span>
</div>
<div id="bwrap" class="slider">
<div class="sliderwrap il">
<input id="sliderB" class="noslide" oninput="fromRgb()" onchange="setColor(0)" max="255" min="0" type="range" value="128" />
<div class="sliderdisplay"></div>
</div>
<span class="tooltiptext">Blue channel</span>
</div>
</div>
<div id="wwrap" class="slider">
<!--p class="labels hd">White channel</p-->
<div id="whibri" class="sliderwrap il">
<input id="sliderW" class="noslide" oninput="fromW()" onchange="setColor(0)" max="255" min="0" type="range" value="128" />
<div class="sliderdisplay"></div>
</div>
<span class="tooltiptext">Blue channel</span>
<span class="tooltiptext">White channel</span>
</div>
</div>
<div id="wwrap" class="slider">
<!--p class="labels hd">White channel</p-->
<div id="whibri" class="sliderwrap il">
<input id="sliderW" class="noslide" oninput="fromW()" onchange="setColor(0)" max="255" min="0" type="range" value="128" />
<div class="sliderdisplay"></div>
<div id="wbal" class="slider">
<!--p class="labels hd">White balance</p-->
<div class="sliderwrap il">
<input id="sliderA" class="noslide" onchange="setBalance(this.value)" max="255" min="0" type="range" value="128" />
<div class="sliderdisplay"></div>
</div>
<span class="tooltiptext">White balance</span>
</div>
<span class="tooltiptext">White channel</span>
</div>
<div id="wbal" class="slider">
<!--p class="labels hd">White balance</p-->
<div class="sliderwrap il">
<input id="sliderA" class="noslide" onchange="setBalance(this.value)" max="255" min="0" type="range" value="128" />
<div class="sliderdisplay"></div>
<div id="qcs-w">
<div class="qcs" onclick="pC('#ff0000');" title="Red" style="background-color:#ff0000;"></div>
<div class="qcs" onclick="pC('#ffa000');" title="Orange" style="background-color:#ffa000;"></div>
<div class="qcs" onclick="pC('#ffc800');" title="Yellow" style="background-color:#ffc800;"></div>
<div class="qcs" onclick="pC('#ffe0a0');" title="Warm White" style="background-color:#ffe0a0;"></div>
<div class="qcs" onclick="pC('#ffffff');" title="White" style="background-color:#ffffff;"></div>
<div class="qcs qcsb" onclick="pC('#000000');" title="Black" style="background-color:#000000;"></div><br>
<div class="qcs" onclick="pC('#ff00ff');" title="Pink" style="background-color:#ff00ff;"></div>
<div class="qcs" onclick="pC('#0000ff');" title="Blue" style="background-color:#0000ff;"></div>
<div class="qcs" onclick="pC('#00ffc8');" title="Cyan" style="background-color:#00ffc8;"></div>
<div class="qcs" onclick="pC('#08ff00');" title="Green" style="background-color:#08ff00;"></div>
<div class="qcs" onclick="pC('rnd');" title="Random" style="background:linear-gradient(to right, red, orange, yellow, green, blue, purple);transform: translateY(-11px);">R</div>
</div>
<span class="tooltiptext">White balance</span>
</div>
<div id="qcs-w">
<div class="qcs" onclick="pC('#ff0000');" title="Red" style="background-color:#ff0000;"></div>
<div class="qcs" onclick="pC('#ffa000');" title="Orange" style="background-color:#ffa000;"></div>
<div class="qcs" onclick="pC('#ffc800');" title="Yellow" style="background-color:#ffc800;"></div>
<div class="qcs" onclick="pC('#ffe0a0');" title="Warm White" style="background-color:#ffe0a0;"></div>
<div class="qcs" onclick="pC('#ffffff');" title="White" style="background-color:#ffffff;"></div>
<div class="qcs qcsb" onclick="pC('#000000');" title="Black" style="background-color:#000000;"></div><br>
<div class="qcs" onclick="pC('#ff00ff');" title="Pink" style="background-color:#ff00ff;"></div>
<div class="qcs" onclick="pC('#0000ff');" title="Blue" style="background-color:#0000ff;"></div>
<div class="qcs" onclick="pC('#00ffc8');" title="Cyan" style="background-color:#00ffc8;"></div>
<div class="qcs" onclick="pC('#08ff00');" title="Green" style="background-color:#08ff00;"></div>
<div class="qcs" onclick="pC('rnd');" title="Random" style="background:linear-gradient(to right, red, orange, yellow, green, blue, purple);transform: translateY(-11px);">R</div>
</div>
<div id="csl">
<button id="csl0" class="btn xxs cl" onclick="selectSlot(0);" data-r="0" data-g="0" data-b="0" data-w="0">1</button>
<button id="csl1" class="btn xxs cl" onclick="selectSlot(1);" data-r="0" data-g="0" data-b="0" data-w="0">2</button>
<button id="csl2" class="btn xxs cl" onclick="selectSlot(2);" data-r="0" data-g="0" data-b="0" data-w="0">3</button>
</div>
<p class="labels h" id="cslLabel"></p>
<div id="hexw">
<i class="icons sel-icon" onclick="tglRgb()">&#xe22d;</i>
<input id="hexc" type="text" class="noslide" onkeydown="hexEnter()" autocomplete="off" maxlength="8" />
<button id="hexcnf" class="btn btn-xs" onclick="fromHex();"><i class="icons btn-icon">&#xe390;</i></button>
</div>
<div id="csl">
<button id="csl0" class="btn xxs cl" onclick="selectSlot(0);" data-r="0" data-g="0" data-b="0" data-w="0">1</button>
<button id="csl1" class="btn xxs cl" onclick="selectSlot(1);" data-r="0" data-g="0" data-b="0" data-w="0">2</button>
<button id="csl2" class="btn xxs cl" onclick="selectSlot(2);" data-r="0" data-g="0" data-b="0" data-w="0">3</button>
</div>
<p class="labels h" id="cslLabel"></p>
<div id="hexw">
<i class="icons sel-icon" onclick="tglRgb()">&#xe22d;</i>
<input id="hexc" type="text" class="noslide" onkeydown="hexEnter()" autocomplete="off" maxlength="8" />
<button id="hexcnf" class="btn btn-xs" onclick="fromHex();"><i class="icons btn-icon">&#xe390;</i></button>
</div>
</div> <!--colorGFX-->
<p class="labels" id="pall"><i class="icons sel-icon" onclick="tglHex()">&#xe2b3;</i> Color palette</p>
<div id="palw" class="il">
<div class="staytop fnd">
@@ -204,6 +207,12 @@
</div>
<div id="Effects" class="tabcontent">
<div id="effectGFX"> <!--WLEDMM-->
<!-- <p class="labels hd">Peek ☾ <button class="btn infobtn btn-xs" onclick="eandp(this,gId('canvasPeek'));">v</button></p> -->
<br>
<canvas id="canvasPeek"></canvas><br>
<br>
</div>
<div id="fx">
<p class="labels hd" id="modeLabel">Effect mode</p>
<div class="staytop fnd" id="fxFind">
@@ -309,19 +318,16 @@
</div>
<div id="Segments" class="tabcontent">
<!--WLEDMM Views-->
<div id="segviews">
<p class="labels hd">Peek ☾ <button class="btn infobtn btn-xs" onclick="eandp(this,gId('canvasPeek'));">v</button></p>
<canvas id="canvasPeek"></canvas><br>
<p class="labels hd">Segment view ☾ <button class="btn infobtn btn-xs" onclick="expandV(this,gId('segvis'));">v</button></p>
<div id="segvis">
<canvas id="canvasSegments"></canvas><br>
<div class="labels hd" id="MD"></div> <!-- Matrix dimensions -->
</div>
<div id="segGFX"> <!--WLEDMM-->
<br>
<canvas id="canvasSegments"></canvas><br>
<br>
</div>
<p class="labels" id="modeLabel">Segments</p>
<div id="segcont">
Loading...
</div>
<div class="labels hd" id="MD"></div> <!-- WLEDMM Matrix dimensions -->
<div id="segutil" class="staybot">
</div>
<div id="segutil2">

View File

@@ -1,6 +1,6 @@
//page js
var loc = false, locip;
var isOn = false, nlA = false, isLv = false, isInfo = false, isNodes = false, syncSend = false, syncTglRecv = true;
var isOn = false, nlA = false, isLv = true, isInfo = false, isNodes = false, syncSend = false, syncTglRecv = true;
var hasWhite = false, hasRGB = false, hasCCT = false;
var nlDur = 60, nlTar = 0;
var nlMode = false;
@@ -26,7 +26,7 @@ var ws, cpick, ranges;
var cfg = {
theme:{base:"dark", bg:{url:""}, alpha:{bg:0.6,tab:0.8}, color:{bg:""}},
comp :{colors:{picker: true, rgb: false, quick: true, hex: false},
labels:true, pcmbot:false, pid:true, seglen:false, segpwr:false, segexp:true, peekexp:true, segvexp: true, css:true, hdays:false} //WLEDMM segexp true as default, add peekexp and segvexp
labels:true, pcmbot:false, pid:true, seglen:false, segpwr:false, segexp:true, css:true, hdays:false} //WLEDMM segexp true as default
};
var hol = [
[0,11,24,4,"https://aircoookie.github.io/xmas.png"], // christmas
@@ -269,6 +269,8 @@ function onLoad()
sl.addEventListener('touchstart', toggleBubble);
sl.addEventListener('touchend', toggleBubble);
}
gId('buttonSr').className = "active"; //WLEDMM: on after load
}
function updateTablinks(tabI)
@@ -557,7 +559,6 @@ function populatePresets(fromls)
delete pJson["0"];
var cn = "";
var arr = Object.entries(pJson);
console.log(arr);
arr.sort(cmpP);
pQL = [];
var is = [];
@@ -1163,21 +1164,8 @@ function updateLen(s, draw=true) //WLEDMM conditonally draw segment view
gId(`seg${s}len`).innerHTML = out;
if (draw && isM) drawSegmentView(); //WLEDMM draw new segmentview if something changes in a segment
gId("segviews").style.display = isM? "inline":"none";
}
//WLEDMM
function eandp(o,i)
{
expandV(o,i);
peek(i, i.style.display =="none");
}
//WLEDMM
function expandV(o,i)
{
i.style.display = i.style.display!=="none" ? "none" : "";
o.style.rotate = i.style.display==="none" ? "-90deg" : "none";
gId("effectGFX").style.display = isM? "inline":"none";
gId("segGFX").style.display = isM? "inline":"none";
}
//WLEDMM
@@ -1216,9 +1204,10 @@ function drawSegmentView() {
peek(canvasPeek);
}
let segments = gId("Segments");
let windowWidth = Math.min(window.innerWidth*0.98, maxWidth*30);
let windowWidthFactor = maxWidth > maxHeight?1:maxWidth/maxHeight;
ctx.canvas.width = (ctx.canvas.parentElement.offsetWidth > 800?windowWidth:300) * windowWidthFactor; //Mobile and non pc mode gets 300, pc 800
ctx.canvas.width = (segments.offsetWidth > 800?windowWidth:300) * windowWidthFactor; //Mobile and non pc mode gets 300, pc 800
ctx.canvas.height = ctx.canvas.width / maxWidth * maxHeight;
canvasPeek.width = ctx.canvas.width;
canvasPeek.height = ctx.canvas.height;
@@ -1227,10 +1216,6 @@ function drawSegmentView() {
var ppL = ctx.canvas.width / maxWidth; //pixels per led
// console.log("dim", ctx.canvas.width , maxWidth, ctx.canvas.height , maxHeight, ppL);
ctx.lineWidth = 1;
ctx.strokeStyle="yellow";
ctx.strokeRect(0, 0, ctx.canvas.width, ctx.canvas.height);
var colorArray = [[255,0,0], [0,255,0], [0,0,255], [255,0,255], [255,165,0], [255,255,0]];
// ["red", "green", "blue", "magenta", "orange", "yellow"];
@@ -1239,9 +1224,11 @@ function drawSegmentView() {
if (!initSegmentVars(p)) break;
ctx.lineWidth = 3;
ctx.strokeStyle="white";
ctx.strokeRect(topLeftX, topLeftY, pw*ppL, ph*ppL);
if (gId("segcont").children.length > 1) { //Estetic: Don't draw surrounding box if only one segment
ctx.lineWidth = 3;
ctx.strokeStyle="white";
ctx.strokeRect(topLeftX, topLeftY, pw*ppL, ph*ppL);
}
var fx = parseInt(gId("seg"+p+"fx").value);
@@ -1317,7 +1304,10 @@ function drawSegmentView() {
} // for each segment
gId("MD").innerHTML = "W*H=LC: " + maxWidth + " x " + maxHeight + " = " + maxWidth * maxHeight;
if (gId("segcont").children.length > 0) { //Only show this if more then one segment
gId("MD").innerHTML = "total W*H=LC: " + maxWidth + " x " + maxHeight + " = " + maxWidth * maxHeight;
}
gId("MD").style.display = gId("segcont").children.length > 0?"inline":"none"
function post() {
for (let p=0; p<gId("segcont").children.length; p++) {
@@ -1333,7 +1323,7 @@ function drawSegmentView() {
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);
ctx.fillText(name, topLeftX+10, topLeftY + ph*ppL - 10);
}
}
@@ -1944,34 +1934,47 @@ function toggleSync()
function toggleLiveview()
{
//WLEDMM adding liveview2D support
if (isInfo && isM) toggleInfo();
if (isNodes && isM) toggleNodes();
isLv = !isLv;
if (isM) {
isLv = !isLv;
gId("colorGFX").style.display = isLv? "inline":"none";
gId("effectGFX").style.display = isLv? "inline":"none";
gId("segGFX").style.display = isLv? "inline":"none";
var lvID = "liveview";
if (isM) {
lvID = "liveview2D"
if (isLv) {
var cn = '<iframe id="liveview2D" src="about:blank"></iframe>';
d.getElementById('kliveview2D').innerHTML = cn;
}
canvasPeek = gId("canvasPeek");
peek(canvasPeek, !isLv); //set off if !isLv
gId('mliveview2D').style.transform = (isLv) ? "translateY(0px)":"translateY(100%)";
gId('buttonSr').className = (isLv) ? "active":"";
} else {
//WLEDMM adding liveview2D support
if (isInfo && isM) toggleInfo();
if (isNodes && isM) toggleNodes();
isLv = !isLv;
var lvID = "liveview";
// if (isM) {
// lvID = "liveview2D"
// if (isLv) {
// var cn = '<iframe id="liveview2D" src="about:blank"></iframe>';
// d.getElementById('kliveview2D').innerHTML = cn;
// }
// gId('mliveview2D').style.transform = (isLv) ? "translateY(0px)":"translateY(100%)";
// }
gId(lvID).style.display = (isLv) ? "block":"none";
var url = (loc?`http://${locip}`:'') + "/" + lvID;
gId(lvID).src = (isLv) ? url:"about:blank";
gId('buttonSr').className = (isLv) ? "active":"";
if (!isLv && ws && ws.readyState === WebSocket.OPEN) ws.send('{"lv":false}');
size();
}
gId(lvID).style.display = (isLv) ? "block":"none";
var url = (loc?`http://${locip}`:'') + "/" + lvID;
gId(lvID).src = (isLv) ? url:"about:blank";
gId('buttonSr').className = (isLv) ? "active":"";
if (!isLv && ws && ws.readyState === WebSocket.OPEN) ws.send('{"lv":false}');
size();
}
function toggleInfo()
{
if (isNodes) toggleNodes();
if (isLv && isM) toggleLiveview();
// if (isLv && isM) toggleLiveview(); //WLEDMM: not for GFX
isInfo = !isInfo;
if (isInfo) requestJson();
gId('info').style.transform = (isInfo) ? "translateY(0px)":"translateY(100%)";
@@ -1981,7 +1984,7 @@ function toggleInfo()
function toggleNodes()
{
if (isInfo) toggleInfo();
if (isLv && isM) toggleLiveview();
// if (isLv && isM) toggleLiveview(); //WLEDMM: not for GFX
isNodes = !isNodes;
if (isNodes) loadNodes();
gId('nodes').style.transform = (isNodes) ? "translateY(0px)":"translateY(100%)";
@@ -3242,10 +3245,10 @@ function togglePcMode(fromB = false)
localStorage.setItem('pcm', pcModeA);
pcMode = pcModeA;
}
if (wW < 1250 && !pcMode) return;
if (!fromB && ((wW < 1250 && lastw < 1250) || (wW >= 1250 && lastw >= 1250))) return;
if (wW < 798 && !pcMode) return;
if (!fromB && ((wW <= 798 && lastw <= 798) || (wW > 798 && lastw > 798))) return;
openTab(0, true);
if (wW < 1250) {pcMode = false;}
if (wW <= 798) {pcMode = false;}
else if (pcModeA && !fromB) pcMode = pcModeA;
updateTablinks(0);
gId('buttonPcm').className = (pcMode) ? "active":"";

View File

@@ -25,8 +25,6 @@
"seglen": "Set segment length instead of stop LED",
"segpwr": "Hide segment power &amp; brightness",
"segexp" : "Always expand first segment",
"peekexp" : "Expand peek ☾",
"segvexp" : "Expand segment visualization ☾",
"css": "Enable custom CSS",
"hdays": "Enable custom Holidays list"
},
@@ -267,8 +265,6 @@
<span class="l"></span>: <input type="checkbox" id="comp_seglen" class="agi cb"><br>
<span class="l"></span>: <input type="checkbox" id="comp_segpwr" class="agi cb"><br>
<span class="l"></span>: <input type="checkbox" id="comp_segexp" class="agi cb"><br>
<span class="l"></span>: <input type="checkbox" id="comp_peekexp" class="agi cb"><br>
<span class="l"></span>: <input type="checkbox" id="comp_segvexp" class="agi cb"><br>
I hate dark mode: <input type="checkbox" id="dm" onchange="UI()"><br>
<span id="idonthateyou" style="display:none"><i>Why would you? </i>&#x1F97A;<br></span>
<span class="l"></span>: <input type="number" min=0.0 max=1.0 step=0.01 id="theme_alpha_tab" class="agi"><br>

View File

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

File diff suppressed because it is too large Load Diff

View File

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