Merge branch '0_15' into new_feature

This commit is contained in:
Alerson Jorge 2023-10-19 15:20:32 -03:00 committed by GitHub
commit 6b2911b8c8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 1186 additions and 1180 deletions

View File

@ -20,8 +20,8 @@
--c-g: #2c1;
--c-l: #48a;
--c-y: #a90;
--t-b: 0.5;
--c-o: rgba(34, 34, 34, 0.9);
--t-b: .5;
--c-o: rgba(34, 34, 34, .9);
--c-tb : rgba(34, 34, 34, var(--t-b));
--c-tba: rgba(102, 102, 102, var(--t-b));
--c-tbh: rgba(51, 51, 51, var(--t-b));
@ -33,7 +33,7 @@
--bbp: 9px 0 7px 0;
--bhd: none;
--sgp: "block";
--bmt: 0px;
--bmt: 0;
}
html {
@ -88,7 +88,7 @@ a, a:visited {
}
button {
outline: none;
outline: 0;
cursor: pointer;
}
@ -238,7 +238,7 @@ button {
.flr {
color: var(--c-f);
transform: rotate(0deg);
transition: transform 0.3s;
transition: transform .3s;
position: absolute;
top: 0;
right: 0;
@ -258,13 +258,13 @@ button {
#liveview {
height: 4px;
width: 100%;
border: 0px;
border: 0;
}
#liveview2D {
height: 90%;
width: 90%;
border: 0px;
border: 0;
position: absolute;
top: 50%;
left: 50%;
@ -287,8 +287,8 @@ button {
.tab button {
background-color: transparent;
float: left;
border: none;
transition: color 0.3s, background-color 0.3s;
border: 0;
transition: color .3s, background-color .3s;
font-size: 17px;
color: var(--c-c);
min-width: 44px;
@ -301,7 +301,7 @@ button {
.bot button {
padding: var(--bbp);
width:25%;
width: 25%;
margin: 0;
}
@ -336,7 +336,7 @@ button {
width: 100%;
width: calc(100%/var(--n));
box-sizing: border-box;
border: 0px;
border: 0;
overflow-y: auto;
overflow-x: hidden;
height: 100%;
@ -389,8 +389,8 @@ button {
align-items: center;
justify-content: center;
z-index: 11;
opacity: 0.95;
transition: 0.7s;
opacity: .95;
transition: .7s;
pointer-events: none;
}
@ -457,7 +457,7 @@ button {
padding: 4px 2px;
position: relative;
opacity: 1;
transition: opacity 0.5s linear, height 0.5s, transform 0.5s;
transition: opacity .5s linear, height .5s, transform .5s;
}
.filter {
@ -496,7 +496,7 @@ button {
}
/* Tooltip text */
.slider .tooltiptext, .option .tooltiptext, .filter .tooltiptext {
.tooltiptext {
visibility: hidden;
background-color: var(--c-5);
/*border: 2px solid var(--c-2);*/
@ -510,28 +510,28 @@ button {
width: 160px;
position: absolute;
z-index: 1;
bottom: 80%;
bottom: 120%;
transform: translate(-50%, 0%);
left: 50%;
margin-left: -92px;
/* Ensure tooltip goes away when mouse leaves control */
pointer-events: none;
/* Fade in tooltip */
opacity: 0;
transition: opacity 0.75s;
transition: opacity .75s;
}
.option .tooltiptext, .filter .tooltiptext {
bottom: 120%;
.slider .tooltiptext {
bottom: 100%;
}
.filter .ttfirst {
margin-left: -40px;
.ttfirst {
transform: translateX(-20%);
}
.filter .ttlast {
margin-left: -140px;
.ttlast {
transform: translateX(-80%);
}
/* Tooltip arrow */
.slider .tooltiptext::after, .option .tooltiptext::after, .filter .tooltiptext::after {
.tooltiptext::after {
content: "";
position: absolute;
top: 100%;
@ -541,14 +541,14 @@ button {
border-style: solid;
border-color: var(--c-5) transparent transparent transparent;
}
.filter .ttfirst::after {
left: 15%;
.ttfirst::after {
left: 20%;
}
.filter .ttlast::after {
left: 75%;
.ttlast::after {
left: 80%;
}
/* Show the tooltip text when you mouse over the tooltip container */
.slider:hover .tooltiptext, .option .check:hover .tooltiptext, .filter .check:hover .tooltiptext {
.slider:hover .tooltiptext, .check:hover .tooltiptext {
visibility: visible;
opacity: 1;
}
@ -557,7 +557,7 @@ button {
visibility: hidden; /* hide it */
opacity: 0; /* make it transparent */
transform: scaleY(0); /* shrink content */
height: 0px; /* force other elements to move */
height: 0; /* force other elements to move */
padding: 0; /* remove empty space */
}
@ -585,24 +585,24 @@ button {
#toast.show {
opacity: 1;
animation: fadein 0.5s, fadein 0.5s 2.5s reverse;
animation: fadein .5s, fadein .5s 2.5s reverse;
}
#toast.error {
opacity: 1;
background-color: #b21;
animation: fadein 0.5s;
animation: fadein .5s;
}
.modal {
position:fixed;
left: 0px;
bottom: 0px;
right: 0px;
position: fixed;
left: 0;
bottom: 0;
right: 0;
top: calc(var(--th) - 1px);
background-color: var(--c-o);
transform: translateY(100%);
transition: transform 0.4s;
transition: transform .4s;
padding: 8px;
font-size: 20px;
overflow: auto;
@ -684,7 +684,7 @@ button {
}
#heart {
transition: color 0.9s;
transition: color .9s;
font-size: 16px;
color: #f00;
}
@ -763,7 +763,7 @@ input[type=range] {
}
input[type=range]:focus {
outline: none;
outline: 0;
}
input[type=range]::-webkit-slider-runnable-track {
width: 100%;
@ -786,7 +786,7 @@ input[type=range]::-moz-range-track {
background-color: rgba(0, 0, 0, 0);
}
input[type=range]::-moz-range-thumb {
border: 0px solid rgba(0, 0, 0, 0);
border: 0 solid rgba(0, 0, 0, 0);
height: 16px;
width: 16px;
border-radius: 50%;
@ -832,11 +832,11 @@ input[type=range]::-moz-range-thumb {
color: var(--c-d);
cursor: pointer;
border-radius: 25px;
transition-duration: 0.3s;
transition-duration: .3s;
-webkit-backface-visibility: hidden;
-webkit-transform:translate3d(0,0,0);
-webkit-transform: translate3d(0,0,0);
backface-visibility: hidden;
transform:translate3d(0,0,0);
transform: translate3d(0,0,0);
overflow: hidden;
text-overflow: ellipsis;
border: 1px solid var(--c-3);
@ -936,13 +936,13 @@ select {
cursor: pointer;
border: 0 solid var(--c-2);
border-radius: 20px;
transition-duration: 0.5s;
transition-duration: .5s;
-webkit-backface-visibility: hidden;
-webkit-transform:translate3d(0,0,0);
-webkit-transform: translate3d(0,0,0);
-webkit-appearance: none;
-moz-appearance: none;
backface-visibility: hidden;
transform:translate3d(0,0,0);
transform: translate3d(0,0,0);
text-overflow: ellipsis;
}
#tt {
@ -985,13 +985,13 @@ input[type=number],
input[type=text] {
background: var(--c-3);
color: var(--c-f);
border: 0px solid var(--c-2);
border: 0 solid var(--c-2);
border-radius: 10px;
padding: 8px;
/*margin: 6px 6px 6px 0;*/
font-size: 19px;
transition: background-color 0.2s;
outline: none;
transition: background-color .2s;
outline: 0;
-webkit-appearance: textfield;
-moz-appearance: textfield;
appearance: textfield;
@ -1031,7 +1031,7 @@ textarea {
height: 90px;
border-radius: 5px;
border: 2px solid var(--c-5);
outline: none;
outline: 0;
resize: none;
font-size: 19px;
padding: 5px;
@ -1084,7 +1084,7 @@ textarea {
top: 1px;
}
.plname {
top:0;
top: 0;
}
/* preset id number */
@ -1164,8 +1164,8 @@ textarea {
}
.revchkl {
padding: 4px 0px 0px 35px;
margin-bottom: 0px;
padding: 4px 0 0 35px;
margin-bottom: 0;
margin-top: 8px;
}
@ -1261,9 +1261,9 @@ TD .checkmark, TD .radiomark {
.seg, .pres {
background-color: var(--c-2);
/*color: var(--c-f);*/ /* seems to affect only the Add segment button, which should be same color as reset segments */
border: 0px solid var(--c-f);
border: 0 solid var(--c-f);
text-align: left;
transition: background-color 0.5s;
transition: background-color .5s;
border-radius: 21px;
}
@ -1280,8 +1280,8 @@ TD .checkmark, TD .radiomark {
/* checkmark labels */
.filter .fchkl, .option .ochkl {
display: inline-block;
min-width: 0.7em;
padding: 1px 4px 4px 32px;
min-width: .7em;
padding: 1px 4px 1px 32px;
text-align: left;
line-height: 24px;
vertical-align: middle;
@ -1306,7 +1306,7 @@ TD .checkmark, TD .radiomark {
/* list wrapper */
.list {
position: relative;
transition: background-color 0.5s;
transition: background-color .5s;
margin: auto auto 10px;
line-height: 24px;
}
@ -1356,7 +1356,7 @@ TD .checkmark, TD .radiomark {
.lstI.sticky,
.lstI.selected {
z-index: 1;
box-shadow: 0px 0px 10px 4px var(--c-1);
box-shadow: 0 0 10px 4px var(--c-1);
}
#pcont .selected:not([class*="expanded"]) {
@ -1500,7 +1500,7 @@ TD .checkmark, TD .radiomark {
}
::-webkit-scrollbar-thumb {
background: var(--c-sb);
opacity: 0.2;
opacity: .2;
border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {

View File

@ -27,7 +27,7 @@ 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:false,
css:true, hdays:false, fxdef:true}
css:true, hdays:false, fxdef:true, on:0, off:0}
};
var hol = [
[0,11,24,4,"https://aircoookie.github.io/xmas.png"], // christmas
@ -1687,6 +1687,8 @@ function togglePower()
obj.seg = [];
obj.seg[0] = {"id": lastinfo.liveseg, "frz": false};
}
if (cfg.comp.on >0 && isOn) obj = {"ps": cfg.comp.on }; // don't use setPreset()
if (cfg.comp.off>0 && !isOn) obj = {"ps": cfg.comp.off}; // don't use setPreset()
requestJson(obj);
}

View File

@ -26,7 +26,9 @@
"segexp" : "Always expand first segment",
"css": "Enable custom CSS",
"hdays": "Enable custom Holidays list",
"fxdef": "Use effect default parameters"
"fxdef": "Use effect default parameters",
"on": "Power button preset override for On",
"off": "Power button preset override for Off"
},
"theme":{
"alpha": {

View File

@ -19,8 +19,8 @@
--c-r: #e42;
--c-g: #4e2;
--c-l: #48a;
--t-b: 0.5;
--c-o: rgba(34, 34, 34, 0.9);
--t-b: .5;
--c-o: rgba(34, 34, 34, .9);
--c-tb : rgba(34, 34, 34, var(--t-b));
--c-tba: rgba(102, 102, 102, var(--t-b));
--c-tbh: rgba(51, 51, 51, var(--t-b));
@ -31,7 +31,7 @@
--tbp: 14px 8px 10px;
--bbp: 9px 0 7px 0;
--bhd: none;
--bmt: 0px;
--bmt: 0;
}
html {
@ -86,11 +86,11 @@ a, a:visited {
}
button {
outline: none;
outline: 0;
cursor: pointer;
background-color: transparent;
border: none;
transition: color 0.3s, background-color 0.3s;
border: 0;
transition: color .3s, background-color .3s;
font-size: 19px;
color: var(--c-c);
min-width: 40px;
@ -180,8 +180,8 @@ button:hover {
.tab button {
background-color: transparent;
float: left;
border: none;
transition: color 0.3s, background-color 0.3s;
border: 0;
transition: color .3s, background-color .3s;
font-size: 17px;
color: var(--c-c);
min-width: 44px;
@ -218,7 +218,7 @@ button:hover {
position: relative;
width: 100%;
box-sizing: border-box;
border: 0px;
border: 0;
overflow: auto;
height: 100%;
overscroll-behavior: none;
@ -243,8 +243,8 @@ button:hover {
align-items: center;
justify-content: center;
z-index: 11;
opacity: 0.95;
transition: 0.7s;
opacity: .95;
transition: .7s;
pointer-events: none;
}
@ -267,24 +267,24 @@ button:hover {
#toast.show {
opacity: 1;
animation: fadein 0.5s, fadein 0.5s 2.5s reverse;
animation: fadein .5s, fadein .5s 2.5s reverse;
}
#toast.error {
opacity: 1;
background-color: #b21;
animation: fadein 0.5s;
animation: fadein .5s;
}
.modal {
position:fixed;
left: 0px;
bottom: 0px;
right: 0px;
position: fixed;
left: 0;
bottom: 0;
right: 0;
top: calc(var(--th) - 1px);
background-color: var(--c-o);
transform: translateY(100%);
transition: transform 0.4s;
transition: transform .4s;
padding: 8px;
font-size: 20px;
overflow: auto;
@ -356,7 +356,7 @@ button:hover {
}
#heart {
transition: color 0.9s;
transition: color .9s;
font-size: 16px;
color: #f00;
}
@ -421,7 +421,7 @@ img {
padding: 4px 4px 2px;
font-size: 14px;
right: 3px;
transition: visibility 0.25s ease, opacity 0.25s ease;
transition: visibility .25s ease, opacity .25s ease;
opacity: 0;
visibility: hidden;
}
@ -531,9 +531,9 @@ input[type=range]::-moz-range-thumb {
cursor: pointer;
border: 1px solid var(--c-3);
border-radius: 25px;
transition-duration: 0.3s;
transition-duration: .3s;
-webkit-backface-visibility: hidden;
-webkit-transform:translate3d(0,0,0);
-webkit-transform: translate3d(0,0,0);
overflow: clip;
text-overflow: clip;
min-height: 40px;
@ -586,13 +586,13 @@ option {
input[type=number], input[type=text] {
background: var(--c-3);
color: var(--c-f);
border: 0px solid var(--c-f);
border: 0 solid var(--c-f);
border-radius: 5px;
padding: 8px;
margin: 6px 6px 6px 0;
font-size: 19px;
transition: background-color 0.2s;
outline: none;
transition: background-color .2s;
outline: 0;
width: 50px;
-webkit-appearance: textfield;
-moz-appearance: textfield;
@ -614,9 +614,9 @@ input[type=number]::-webkit-outer-spin-button {
.pid {
position: absolute;
top: 0px;
left: 0px;
padding: 12px 0px 0px 12px;
top: 0;
left: 0;
padding: 12px 0 0 12px;
font-size: 16px;
width: 20px;
text-align: center;
@ -746,7 +746,7 @@ input[type=number]::-webkit-outer-spin-button {
.list {
position: relative;
width: 280px;
transition: background-color 0.5s;
transition: background-color .5s;
margin: auto auto 20px;
font-size: 19px;
line-height: 24px;
@ -774,7 +774,7 @@ input[type=number]::-webkit-outer-spin-button {
}
/*
.lstI:last-child {
border: none;
border: 0;
border-radius: 0 0 20px 20px;
padding-bottom: 10px;
}
@ -879,7 +879,7 @@ input[type=text].fnd:not(:placeholder-shown), input[type=text].fnd:hover {
}
::-webkit-scrollbar-thumb {
background: var(--c-sb);
opacity: 0.2;
opacity: .2;
border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
@ -927,7 +927,7 @@ input[type=text].fnd:not(:placeholder-shown), input[type=text].fnd:hover {
display: none !important;
}
#briwrap {
margin-top: 0px !important;
margin-top: 0 !important;
float: none;
}
}

View File

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