Corrections made, added in a very accessible place

I added the possibility of using the tooltip on buttons (.btn) with the span inside the button;
Adjusted the tooltip css to center 100% in the middle
Some cleaning and correction of sele
This commit is contained in:
Alerson Jorge 2023-10-16 19:09:43 -03:00
parent c43b4f9cf0
commit 5da33afecd
7 changed files with 2811 additions and 2772 deletions

View File

@ -271,6 +271,14 @@ button {
transform: translate(-50%,-50%); transform: translate(-50%,-50%);
} }
#pxm {
display: none;
width: 100%;
height: 100%;
border: 0;
position: absolute;
}
#ipxm { #ipxm {
width: 100%; width: 100%;
height: 100%; height: 100%;
@ -471,7 +479,7 @@ button {
} }
/* Tooltip text */ /* Tooltip text */
.slider .tooltiptext, .option .tooltiptext { .slider .tooltiptext, .option .tooltiptext, .btn .tooltiptext {
visibility: hidden; visibility: hidden;
background-color: var(--c-5); background-color: var(--c-5);
/*border: 2px solid var(--c-2);*/ /*border: 2px solid var(--c-2);*/
@ -486,8 +494,8 @@ button {
position: absolute; position: absolute;
z-index: 1; z-index: 1;
bottom: 80%; bottom: 80%;
left: 50%; left: 50%;
margin-left: -92px; transform: translate(-50%, -50%);
/* Ensure tooltip goes away when mouse leaves control */ /* Ensure tooltip goes away when mouse leaves control */
pointer-events: none; pointer-events: none;
@ -496,22 +504,28 @@ button {
opacity: 0; opacity: 0;
transition: opacity 0.75s; transition: opacity 0.75s;
} }
.option .tooltiptext { .option .tooltiptext {
bottom: 120%; bottom: 120%;
} }
/* Tooltip for buttons */
.btn .tooltiptext {
bottom: 90%;
}
/* Tooltip arrow */ /* Tooltip arrow */
.slider .tooltiptext::after, .option .tooltiptext::after { .slider .tooltiptext::after, .option .tooltiptext::after, .btn .tooltiptext::after {
content: ""; content: "";
position: absolute; position: absolute;
top: 100%; top: calc(100% - 2px);
left: 50%; left: calc(50% - 8px);
margin-left: -5px; border: 8px;
border-width: 5px;
border-style: solid; border-style: solid;
border-color: var(--c-5) transparent transparent transparent; border-color: var(--c-5) transparent transparent transparent;
} }
/* Show the tooltip text when you mouse over the tooltip container */ /* Show the tooltip text when you mouse over the tooltip container */
.slider:hover .tooltiptext, .option .check:hover .tooltiptext { .slider:hover .tooltiptext, .option .check:hover .tooltiptext, .btn:hover .tooltiptext {
visibility: visible; visibility: visible;
opacity: 1; opacity: 1;
} }
@ -800,7 +814,7 @@ input[type=range]::-moz-range-thumb {
-webkit-transform:translate3d(0,0,0); -webkit-transform:translate3d(0,0,0);
backface-visibility: hidden; backface-visibility: hidden;
transform:translate3d(0,0,0); transform:translate3d(0,0,0);
overflow: hidden; /* overflow: hidden; */
text-overflow: ellipsis; text-overflow: ellipsis;
border: 1px solid var(--c-3); border: 1px solid var(--c-3);
background-color: var(--c-3); background-color: var(--c-3);
@ -1041,7 +1055,6 @@ textarea {
/*padding: 1px 0 1px 20px;*/ /*padding: 1px 0 1px 20px;*/
display: var(--sgp); display: var(--sgp);
width: 100%; width: 100%;
position: relative;
} }
.pname { .pname {

View File

@ -180,6 +180,14 @@
<input id="hexc" type="text" class="noslide" onkeydown="hexEnter()" autocomplete="off" maxlength="8" /> <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> <button id="hexcnf" class="btn btn-xs" onclick="fromHex();"><i class="icons btn-icon">&#xe390;</i></button>
</div> </div>
<div style="padding-block: 10px;">
<button class="btn btn-xs" type="button" onclick="togglePixelMagicTool()" id="bpxm">
<i class="icons btn-icon">&#xe410;</i>
<span class="tooltiptext">Pixel Magic Tool</span>
</button>
<button class="btn btn-xs" type="button" onclick="window.location.href=getURL('/cpal.htm')"><i class="icons btn-icon">&#xe18a;</i></button>
<button class="btn btn-xs" type="button" onclick="palettesData=null;localStorage.removeItem('wledPalx');requestJson({rmcpal:true});setTimeout(loadPalettes,250,loadPalettesData);"><i class="icons btn-icon">&#xe037;</i></button>
</div>
<p class="labels" id="pall"><i class="icons sel-icon" onclick="tglHex()">&#xe2b3;</i> Color palette</p> <p class="labels" id="pall"><i class="icons sel-icon" onclick="tglHex()">&#xe2b3;</i> Color palette</p>
<div id="palw" class="il"> <div id="palw" class="il">
<div class="staytop fnd"> <div class="staytop fnd">
@ -198,11 +206,6 @@
</label> </label>
</div> </div>
</div> </div>
<div style="padding-bottom: 10px;">
<button class="btn btn-xs" type="button" onclick="window.location.href=getURL('/cpal.htm')"><i class="icons btn-icon">&#xe18a;</i></button>
<button class="btn btn-xs" type="button" onclick="palettesData=null;localStorage.removeItem('wledPalx');requestJson({rmcpal:true});setTimeout(loadPalettes,250,loadPalettesData);"><i class="icons btn-icon">&#xe037;</i></button>
<button class="btn btn-xs" type="button" onclick="togglePixelMagicTool()" id="bpxm"><i class="icons btn-icon">&#xe410;</i></button>
</div>
</div> </div>
</div> </div>

View File

@ -1755,12 +1755,8 @@ function togglePixelMagicTool()
if(isPXM){ if(isPXM){
var iframeContent = this.contentDocument; var iframeContent = this.contentDocument;
iframeContent.body.style.backgroundColor = "transparent"; iframeContent.body.style.backgroundColor = "transparent";
var header = iframeContent.querySelector('.header');
header.style.display = "none";
} }
} }
size();
} }
function makeSeg() function makeSeg()
@ -2059,9 +2055,6 @@ function resetPUtil()
p.classList.remove('pres'); p.classList.remove('pres');
p.innerHTML = `<button class="btn btn-s" onclick="makePUtil()" style="float:left;"><i class="icons btn-icon">&#xe18a;</i>Preset</button>` p.innerHTML = `<button class="btn btn-s" onclick="makePUtil()" style="float:left;"><i class="icons btn-icon">&#xe18a;</i>Preset</button>`
+ `<button class="btn btn-s" onclick="makePlUtil()" style="float:right;"><i class="icons btn-icon">&#xe18a;</i>Playlist</button>`; + `<button class="btn btn-s" onclick="makePlUtil()" style="float:right;"><i class="icons btn-icon">&#xe18a;</i>Playlist</button>`;
let dpxm = cfg.comp.pxm ? "block" : "none";
gId('bpxm').style.display = dpxm;
} }
function tglCs(i) function tglCs(i)
@ -2923,6 +2916,12 @@ function listenMessage(e){
} }
} }
function displayPixelMagicTool()
{
let dpxm = cfg.comp.pxm ? "inline-block" : "none";
gId('bpxm').style.display = dpxm;
}
function togglePcMode(fromB = false) function togglePcMode(fromB = false)
{ {
if (fromB) { if (fromB) {
@ -2959,6 +2958,8 @@ function mergeDeep(target, ...sources)
} }
size(); size();
displayPixelMagicTool();
_C.style.setProperty('--n', N); _C.style.setProperty('--n', N);
window.addEventListener('resize', size, true); window.addEventListener('resize', size, true);

View File

@ -1035,7 +1035,6 @@
async function segments() { async function segments() {
const select = element("segments"); const select = element("segments");
const pattern = element("pattern");
const width = element("width"); const width = element("width");
const height = element("height"); const height = element("height");
@ -1073,7 +1072,6 @@
option.selected = true; option.selected = true;
width.value = w; width.value = w;
height.value = h; height.value = h;
pattern.value = w * h > 512 ? 3 : 1;
} }
select.add(option); select.add(option);

File diff suppressed because it is too large Load Diff

View File

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

File diff suppressed because it is too large Load Diff