#engine v8 #feature-id AstroMax > StarStretch #feature-info AstroMax StarStretch — colour-preserving star stretch for recombining into starless images. Copyright © 2026 Dean Linic. // ============================================================ // AstroMaxStarStretch.js v0.1.0 // Copyright (C) 2026 Dean Linic // // Perfectly stretch extracted stars (colour-preserving, non-burnt // cores) for recombining into a starless image. OSC and Mono modes. // Pipeline: input → Linear Fit → (Plate Solve) → SPCC → Separate // Stars → colour-preserving arcsinh stretch with centre protection. // ============================================================ // ============================================================ // LICENSE & TRIAL SYSTEM (shared HWID/key — one key activates all) // ============================================================ var LIC_PRODUCT_NAME = "AstroMaxStarStretch"; var LIC_SETTINGS_KEY = "/AstroMax/licenseKey"; var LIC_TRIAL_KEY = "/AstroMax/trialStart"; var LIC_HWID_KEY = "/AstroMax/hwid"; var LIC_TRIAL_DAYS = 30; var LIC_SECRET = "AstroMax2025#Nebula$7x9qK!mP"; function licSHA256(str) { function rr(x,n){return(x>>>n)|(x<<(32-n));} var K=[0x428a2f98,0x71374491,0xb5c0fbcf,0xe9b5dba5,0x3956c25b,0x59f111f1,0x923f82a4,0xab1c5ed5, 0xd807aa98,0x12835b01,0x243185be,0x550c7dc3,0x72be5d74,0x80deb1fe,0x9bdc06a7,0xc19bf174, 0xe49b69c1,0xefbe4786,0x0fc19dc6,0x240ca1cc,0x2de92c6f,0x4a7484aa,0x5cb0a9dc,0x76f988da, 0x983e5152,0xa831c66d,0xb00327c8,0xbf597fc7,0xc6e00bf3,0xd5a79147,0x06ca6351,0x14292967, 0x27b70a85,0x2e1b2138,0x4d2c6dfc,0x53380d13,0x650a7354,0x766a0abb,0x81c2c92e,0x92722c85, 0xa2bfe8a1,0xa81a664b,0xc24b8b70,0xc76c51a3,0xd192e819,0xd6990624,0xf40e3585,0x106aa070, 0x19a4c116,0x1e376c08,0x2748774c,0x34b0bcb5,0x391c0cb3,0x4ed8aa4a,0x5b9cca4f,0x682e6ff3, 0x748f82ee,0x78a5636f,0x84c87814,0x8cc70208,0x90befffa,0xa4506ceb,0xbef9a3f7,0xc67178f2]; var H=[0x6a09e667,0xbb67ae85,0x3c6ef372,0xa54ff53a, 0x510e527f,0x9b05688c,0x1f83d9ab,0x5be0cd19]; // UTF-8 encode var b=[]; for(var i=0;i>6));b.push(0x80|(c&0x3F));} else{b.push(0xE0|(c>>12));b.push(0x80|((c>>6)&0x3F));b.push(0x80|(c&0x3F));} } var bl=b.length*8; b.push(0x80); while(b.length%64!==56)b.push(0); for(var i=7;i>=0;i--)b.push((bl/Math.pow(2,i*8))&0xFF); // Process blocks for(var blk=0;blk>>3); var s1=rr(W[i-2],17)^rr(W[i-2],19)^(W[i-2]>>>10); W[i]=(W[i-16]+s0+W[i-7]+s1)>>>0; } var a=H[0],b_=H[1],c=H[2],d=H[3],e=H[4],f=H[5],g=H[6],h=H[7]; for(var i=0;i<64;i++){ var S1=rr(e,6)^rr(e,11)^rr(e,25); var ch=(e&f)^(~e&g); var t1=(h+S1+ch+K[i]+W[i])>>>0; var S0=rr(a,2)^rr(a,13)^rr(a,22); var mj=(a&b_)^(a&c)^(b_&c); var t2=(S0+mj)>>>0; h=g;g=f;f=e;e=(d+t1)>>>0;d=c;c=b_;b_=a;a=(t1+t2)>>>0; } H[0]=(H[0]+a)>>>0;H[1]=(H[1]+b_)>>>0;H[2]=(H[2]+c)>>>0;H[3]=(H[3]+d)>>>0; H[4]=(H[4]+e)>>>0;H[5]=(H[5]+f)>>>0;H[6]=(H[6]+g)>>>0;H[7]=(H[7]+h)>>>0; } var hex=""; for(var i=0;i<8;i++)hex+=("00000000"+H[i].toString(16)).slice(-8); return hex.toUpperCase(); } // ── HWID — username + computername from env vars ─────────── function licGetHWID() { var user = getEnvironmentVariable("USERNAME") || getEnvironmentVariable("USER") || ""; var host = getEnvironmentVariable("COMPUTERNAME") || getEnvironmentVariable("HOSTNAME") || ""; var raw = (user + "_" + host).toUpperCase().replace(/[^A-Z0-9_]/g,""); if (raw.length >= 4) { // Store once for consistency if (!Settings.read(LIC_HWID_KEY, 13)) Settings.write(LIC_HWID_KEY, 13, raw); return raw; } // Fallback: random ID stored in settings var stored = Settings.read(LIC_HWID_KEY, 13); if (stored && stored.length >= 4) return stored; var id = ""; var hx = "0123456789ABCDEF"; for (var i = 0; i < 16; i++) id += hx[Math.floor(Math.random()*16)]; Settings.write(LIC_HWID_KEY, 13, id); return id; } // ── Key validation ───────────────────────────────────────── function licKeyForHWID(hwid) { var hash = licSHA256(hwid.trim().toUpperCase() + "|ASTROMAX-V1|" + LIC_SECRET); var groups = []; for (var i = 0; i < 20; i += 4) groups.push(hash.substring(i, i+4)); return groups.join("-"); } function licValidateKey(key) { if (!key) return false; var hwid = licGetHWID(); var expected = licKeyForHWID(hwid); return key.trim().toUpperCase().replace(/\s/g,"") === expected.replace(/-/g,"").substring(0,20) || key.trim().toUpperCase() === expected; } // ── Trial ────────────────────────────────────────────────── function licTrialDaysLeft() { var stored = Settings.read(LIC_TRIAL_KEY, 13); if (stored === null || stored === undefined) { Settings.write(LIC_TRIAL_KEY, 13, new Date().getTime().toString()); return LIC_TRIAL_DAYS; } var startMs = parseFloat(stored); if (isNaN(startMs)) { Settings.write(LIC_TRIAL_KEY, 13, new Date().getTime().toString()); return LIC_TRIAL_DAYS; } return Math.max(0, Math.floor(LIC_TRIAL_DAYS - (new Date().getTime()-startMs)/86400000)); } function licIsActivated() { var key = Settings.read(LIC_SETTINGS_KEY, 13); return licValidateKey(key); } function licCheck() { if (licIsActivated()) return "ok"; var d = licTrialDaysLeft(); return d > 0 ? "trial:" + d : "expired"; } // ── License / Activation dialog ──────────────────────────────── function licShowActivationDialog() { var hwid = licGetHWID(); var activated = licIsActivated(); var daysLeft = activated ? -1 : licTrialDaysLeft(); var dlg = new Dialog(); dlg.windowTitle = "AstroMax — License"; dlg.userResizable = false; dlg.sizer = new Sizer(true); dlg.sizer.margin = 14; dlg.sizer.spacing = 8; var btnClose = new PushButton(dlg); btnClose.text = " Close "; btnClose.onClick = function() { dlg.ok(); }; if (activated) { // ── Activated view — clean, no trial info ────────────────────── var okLbl = new Label(dlg); okLbl.text = "✅ License activated — thank you!"; dlg.sizer.add(okLbl); dlg.sizer.addSpacing(6); var row = new Sizer(false); row.addStretch(); row.add(btnClose); dlg.sizer.add(row); } else { // ── Trial / expired view — full activation flow ────────────── var statusLbl = new Label(dlg); if (daysLeft > 0) { statusLbl.text = "⏳ Trial active — " + daysLeft + " day" + (daysLeft !== 1 ? "s" : "") + " remaining"; } else { statusLbl.text = "❌ Trial expired — activation required"; } var msgLbl = new Label(dlg); msgLbl.text = "Send your HWID to the author together with proof of purchase.\nYou will receive a license key by email."; msgLbl.wordWrapping = true; msgLbl.minWidth = 380; var hwidLbl = new Label(dlg); hwidLbl.text = "Your HWID:"; var hwidEdit = new Edit(dlg); hwidEdit.text = hwid; hwidEdit.readOnly = true; hwidEdit.minWidth = 380; hwidEdit.toolTip = "Select all and copy (Ctrl+A, Ctrl+C)"; var keyLbl = new Label(dlg); keyLbl.text = "Enter license key:"; var keyEdit = new Edit(dlg); keyEdit.minWidth = 380; var feedbackLbl = new Label(dlg); feedbackLbl.text = ""; feedbackLbl.minWidth = 380; var btnActivate = new PushButton(dlg); btnActivate.text = " Activate "; btnActivate.onClick = function() { var k = keyEdit.text.trim(); if (licValidateKey(k)) { Settings.write(LIC_SETTINGS_KEY, 13, k); feedbackLbl.text = "✅ Activated! Close and reopen the script."; btnActivate.enabled = false; keyEdit.readOnly = true; } else { feedbackLbl.text = "❌ Invalid key — make sure you sent the exact HWID above."; } }; var btnRow = new Sizer(false); btnRow.spacing = 6; btnRow.add(btnActivate); btnRow.addStretch(); btnRow.add(btnClose); dlg.sizer.add(statusLbl); dlg.sizer.add(msgLbl); dlg.sizer.add(hwidLbl); dlg.sizer.add(hwidEdit); dlg.sizer.add(keyLbl); dlg.sizer.add(keyEdit); dlg.sizer.add(feedbackLbl); dlg.sizer.add(btnRow); } dlg.adjustToContents(); return dlg.execute() === Dialog.Ok; } var ASS_VERSION = '\x30\x2e\x31\x2e\x30', WIN = {}; function getWin(_0x52d226, _0x304ff5, _0x33c3be) { var _0x3e4c61 = _0x33c3be ? 0x1 : _0x304ff5['\x6e\x75\x6d\x62\x65\x72\x4f\x66\x43\x68\x61\x6e\x6e\x65\x6c\x73'], _0x54f4e8 = _0x304ff5['\x77\x69\x64\x74\x68'], _0x4b7b3d = _0x304ff5['\x68\x65\x69\x67\x68\x74'], _0x57dc6c = WIN[_0x52d226]; if (_0x57dc6c && !_0x57dc6c['\x69\x73\x4e\x75\x6c\x6c']) { var _0x434cc4 = _0x57dc6c['\x6d\x61\x69\x6e\x56\x69\x65\x77']['\x69\x6d\x61\x67\x65']; if (_0x434cc4['\x77\x69\x64\x74\x68'] === _0x54f4e8 && _0x434cc4['\x68\x65\x69\x67\x68\x74'] === _0x4b7b3d && _0x434cc4['\x6e\x75\x6d\x62\x65\x72\x4f\x66\x43\x68\x61\x6e\x6e\x65\x6c\x73'] === _0x3e4c61) return _0x57dc6c; _0x57dc6c['\x66\x6f\x72\x63\x65\x43\x6c\x6f\x73\x65'](); } var _0x27dccf = new ImageWindow(_0x54f4e8, _0x4b7b3d, _0x3e4c61, _0x304ff5['\x62\x69\x74\x73\x50\x65\x72\x53\x61\x6d\x70\x6c\x65'], _0x304ff5['\x69\x73\x52\x65\x61\x6c'], _0x3e4c61 > 0x1, _0x52d226); return _0x27dccf['\x68\x69\x64\x65'](), WIN[_0x52d226] = _0x27dccf, _0x27dccf; } function closeAllWins() { for (var _0x236386 in WIN) { if (WIN[_0x236386] && !WIN[_0x236386]['\x69\x73\x4e\x75\x6c\x6c']) WIN[_0x236386]['\x66\x6f\x72\x63\x65\x43\x6c\x6f\x73\x65'](); } WIN = {}, cleanupOrphanWindows(); } function cleanupOrphanWindows() { try { var _0x578623 = ImageWindow['\x77\x69\x6e\x64\x6f\x77\x73']; for (var _0x44c5d0 = 0x0; _0x44c5d0 < _0x578623['\x6c\x65\x6e\x67\x74\x68']; _0x44c5d0++) { var _0x22a261 = _0x578623[_0x44c5d0]; if (!_0x22a261 || _0x22a261['\x69\x73\x4e\x75\x6c\x6c'] || _0x22a261['\x6d\x61\x69\x6e\x56\x69\x65\x77']['\x69\x73\x4e\x75\x6c\x6c']) continue; var _0x1c7c15 = _0x22a261['\x6d\x61\x69\x6e\x56\x69\x65\x77']['\x69\x64'] || '', _0x4bc3b4 = _0x1c7c15['\x63\x68\x61\x72\x41\x74'](0x0) === '\x5f' || /^AstroMaxTmp|^AstroMaxLFref|^AstroMaxLFch|^AstroMaxStarStretch_work/['\x74\x65\x73\x74'](_0x1c7c15), _0x4691e7 = /AstroMaxCompose|AstroMaxResult/['\x74\x65\x73\x74'](_0x1c7c15); if (_0x4bc3b4 || _0x4691e7 && !_0x22a261['\x76\x69\x73\x69\x62\x6c\x65']) try { _0x22a261['\x66\x6f\x72\x63\x65\x43\x6c\x6f\x73\x65'](); } catch (_0x37ac41) { } } } catch (_0x522d33) { } } function cloneImg(_0x20df48) { return new Image(_0x20df48); } function scaleImage(_0x5a6a6d, _0x11348f) { var _0xfc3640 = new Image(_0x5a6a6d); return _0xfc3640['\x72\x65\x73\x61\x6d\x70\x6c\x65'](_0x11348f), _0xfc3640; } function normParams(_0x55604c) { var _0x26f94a = _0x55604c['\x6d\x65\x64\x69\x61\x6e'](), _0x1fb3a7, _0x561a69; if (_0x26f94a > 0.05) _0x1fb3a7 = 0x0, _0x561a69 = 0x1; else { var _0x183c04 = _0x55604c['\x4d\x41\x44'](); if (_0x183c04 < 1e-7) _0x183c04 = 0.001; var _0x552311 = _0x183c04 * 1.4826; _0x1fb3a7 = Math['\x6d\x61\x78'](0x0, _0x26f94a - 2.8 * _0x552311), _0x561a69 = Math['\x6d\x69\x6e'](0x1, _0x26f94a + 0x18 * _0x552311) - _0x1fb3a7; if (_0x561a69 < 0.0001) _0x561a69 = 0.0001; } return { '\x6c\x6f': _0x1fb3a7, '\x72\x61\x6e\x67\x65': _0x561a69 }; } function toU8(_0x103100, _0x4cd2f9, _0x2a41f8) { return Math['\x6d\x69\x6e'](0xff, Math['\x6d\x61\x78'](0x0, Math['\x72\x6f\x75\x6e\x64']((_0x103100 - _0x4cd2f9) / _0x2a41f8 * 0xff))); } function renderFull(_0x2239a7, _0x510c9f, _0x2ed711, _0x62272b) { var _0x4e07b3 = Math['\x6d\x69\x6e'](_0x510c9f / _0x2239a7['\x77\x69\x64\x74\x68'], _0x2ed711 / _0x2239a7['\x68\x65\x69\x67\x68\x74']), _0x358e01 = Math['\x6d\x61\x78'](0x1, Math['\x72\x6f\x75\x6e\x64'](_0x2239a7['\x77\x69\x64\x74\x68'] * _0x4e07b3)), _0x233170 = Math['\x6d\x61\x78'](0x1, Math['\x72\x6f\x75\x6e\x64'](_0x2239a7['\x68\x65\x69\x67\x68\x74'] * _0x4e07b3)), _0x16d3c3 = scaleImage(_0x2239a7, _0x4e07b3), _0x5638e6 = _0x62272b ? normParams(_0x2239a7) : { '\x6c\x6f': 0x0, '\x72\x61\x6e\x67\x65': 0x1 }, _0x435a58 = new Bitmap(_0x358e01, _0x233170), _0x30fbd6 = _0x16d3c3['\x6e\x75\x6d\x62\x65\x72\x4f\x66\x43\x68\x61\x6e\x6e\x65\x6c\x73']; for (var _0x43f4d9 = 0x0; _0x43f4d9 < _0x233170; _0x43f4d9++) for (var _0x4617ea = 0x0; _0x4617ea < _0x358e01; _0x4617ea++) { var _0x33b385, _0x583174, _0x9610e; if (_0x30fbd6 === 0x1) { var _0x54828d = Math['\x6d\x69\x6e'](0x1, Math['\x6d\x61\x78'](0x0, (_0x16d3c3['\x73\x61\x6d\x70\x6c\x65'](_0x4617ea, _0x43f4d9, 0x0) - _0x5638e6['\x6c\x6f']) / _0x5638e6['\x72\x61\x6e\x67\x65'])); _0x33b385 = _0x583174 = _0x9610e = Math['\x72\x6f\x75\x6e\x64'](_0x54828d * 0xff); } else _0x33b385 = toU8(_0x16d3c3['\x73\x61\x6d\x70\x6c\x65'](_0x4617ea, _0x43f4d9, 0x0), _0x5638e6['\x6c\x6f'], _0x5638e6['\x72\x61\x6e\x67\x65']), _0x583174 = toU8(_0x16d3c3['\x73\x61\x6d\x70\x6c\x65'](_0x4617ea, _0x43f4d9, 0x1), _0x5638e6['\x6c\x6f'], _0x5638e6['\x72\x61\x6e\x67\x65']), _0x9610e = toU8(_0x16d3c3['\x73\x61\x6d\x70\x6c\x65'](_0x4617ea, _0x43f4d9, 0x2), _0x5638e6['\x6c\x6f'], _0x5638e6['\x72\x61\x6e\x67\x65']); _0x435a58['\x73\x65\x74\x50\x69\x78\x65\x6c'](_0x4617ea, _0x43f4d9, 0xff << 0x18 | _0x33b385 << 0x10 | _0x583174 << 0x8 | _0x9610e); } return _0x435a58; } function sampleBilinear(_0x1f6129, _0x1891d9, _0x3bd274, _0x580e59) { var _0x55603f = _0x1f6129['\x77\x69\x64\x74\x68'], _0x210e98 = _0x1f6129['\x68\x65\x69\x67\x68\x74'], _0x434584 = Math['\x6d\x61\x78'](0x0, Math['\x6d\x69\x6e'](_0x55603f - 0x2, Math['\x66\x6c\x6f\x6f\x72'](_0x1891d9))), _0x58b5ed = Math['\x6d\x61\x78'](0x0, Math['\x6d\x69\x6e'](_0x210e98 - 0x2, Math['\x66\x6c\x6f\x6f\x72'](_0x3bd274))), _0x16074f = _0x1891d9 - _0x434584, _0x42b2bf = _0x3bd274 - _0x58b5ed; return _0x1f6129['\x73\x61\x6d\x70\x6c\x65'](_0x434584, _0x58b5ed, _0x580e59) * (0x1 - _0x16074f) * (0x1 - _0x42b2bf) + _0x1f6129['\x73\x61\x6d\x70\x6c\x65'](_0x434584 + 0x1, _0x58b5ed, _0x580e59) * _0x16074f * (0x1 - _0x42b2bf) + _0x1f6129['\x73\x61\x6d\x70\x6c\x65'](_0x434584, _0x58b5ed + 0x1, _0x580e59) * (0x1 - _0x16074f) * _0x42b2bf + _0x1f6129['\x73\x61\x6d\x70\x6c\x65'](_0x434584 + 0x1, _0x58b5ed + 0x1, _0x580e59) * _0x16074f * _0x42b2bf; } function renderZoom(_0x2ecf2c, _0x36f3a1, _0x56f083, _0x2c1728, _0x547b05, _0x9c179c, _0x16fb17) { var _0x159918 = 0x1 / _0x2c1728, _0x5070d6 = 0x1 / _0x2c1728, _0x5b9472 = Math['\x6d\x61\x78'](0x0, Math['\x6d\x69\x6e'](0x1 - _0x159918, _0x36f3a1 - _0x159918 / 0x2)), _0x5214a2 = Math['\x6d\x61\x78'](0x0, Math['\x6d\x69\x6e'](0x1 - _0x5070d6, _0x56f083 - _0x5070d6 / 0x2)), _0x261768 = _0x2ecf2c['\x77\x69\x64\x74\x68'], _0x2b86be = _0x2ecf2c['\x68\x65\x69\x67\x68\x74'], _0x5dcaa8 = Math['\x6d\x69\x6e'](_0x547b05 / _0x261768, _0x9c179c / _0x2b86be) * _0x2c1728, _0x366d72 = Math['\x6d\x61\x78'](0x1, Math['\x72\x6f\x75\x6e\x64'](_0x261768 * _0x159918 * _0x5dcaa8)), _0x2e8d44 = Math['\x6d\x61\x78'](0x1, Math['\x72\x6f\x75\x6e\x64'](_0x2b86be * _0x5070d6 * _0x5dcaa8)), _0x5a29b8 = _0x16fb17 ? normParams(_0x2ecf2c) : { '\x6c\x6f': 0x0, '\x72\x61\x6e\x67\x65': 0x1 }, _0x16cd69 = new Bitmap(_0x366d72, _0x2e8d44), _0x86722f = _0x2ecf2c['\x6e\x75\x6d\x62\x65\x72\x4f\x66\x43\x68\x61\x6e\x6e\x65\x6c\x73']; for (var _0x33e1c5 = 0x0; _0x33e1c5 < _0x2e8d44; _0x33e1c5++) { var _0x849f6d = (_0x5214a2 + _0x33e1c5 / _0x2e8d44 * _0x5070d6) * _0x2b86be - 0.5; for (var _0x15ba64 = 0x0; _0x15ba64 < _0x366d72; _0x15ba64++) { var _0x2c185a = (_0x5b9472 + _0x15ba64 / _0x366d72 * _0x159918) * _0x261768 - 0.5, _0x215516, _0x39127d, _0x355ef1; if (_0x86722f === 0x1) { var _0xdc6b2f = Math['\x6d\x69\x6e'](0x1, Math['\x6d\x61\x78'](0x0, (sampleBilinear(_0x2ecf2c, _0x2c185a, _0x849f6d, 0x0) - _0x5a29b8['\x6c\x6f']) / _0x5a29b8['\x72\x61\x6e\x67\x65'])); _0x215516 = _0x39127d = _0x355ef1 = Math['\x72\x6f\x75\x6e\x64'](_0xdc6b2f * 0xff); } else _0x215516 = toU8(sampleBilinear(_0x2ecf2c, _0x2c185a, _0x849f6d, 0x0), _0x5a29b8['\x6c\x6f'], _0x5a29b8['\x72\x61\x6e\x67\x65']), _0x39127d = toU8(sampleBilinear(_0x2ecf2c, _0x2c185a, _0x849f6d, 0x1), _0x5a29b8['\x6c\x6f'], _0x5a29b8['\x72\x61\x6e\x67\x65']), _0x355ef1 = toU8(sampleBilinear(_0x2ecf2c, _0x2c185a, _0x849f6d, 0x2), _0x5a29b8['\x6c\x6f'], _0x5a29b8['\x72\x61\x6e\x67\x65']); _0x16cd69['\x73\x65\x74\x50\x69\x78\x65\x6c'](_0x15ba64, _0x33e1c5, 0xff << 0x18 | _0x215516 << 0x10 | _0x39127d << 0x8 | _0x355ef1); } } return _0x16cd69; } function cloneParams(_0x195705) { var _0x430113 = {}; for (var _0x45ec34 in _0x195705) if (Object['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x68\x61\x73\x4f\x77\x6e\x50\x72\x6f\x70\x65\x72\x74\x79']['\x63\x61\x6c\x6c'](_0x195705, _0x45ec34)) _0x430113[_0x45ec34] = _0x195705[_0x45ec34]; return _0x430113; } function setLinearSTF(_0x3634ee) { try { _0x3634ee['\x73\x74\x66'] = [ [ 0.5, 0x0, 0x1, 0x0, 0x1 ], [ 0.5, 0x0, 0x1, 0x0, 0x1 ], [ 0.5, 0x0, 0x1, 0x0, 0x1 ], [ 0.5, 0x0, 0x1, 0x0, 0x1 ] ]; } catch (_0x43148f) { } } function paramsEqual(_0x4fdff7, _0x149d64) { if (!_0x4fdff7 || !_0x149d64) return ![]; for (var _0x4f8a8e in _0x4fdff7) { if (_0x4fdff7[_0x4f8a8e] !== _0x149d64[_0x4f8a8e]) return ![]; } for (var _0x4f8a8e in _0x149d64) { if (_0x4fdff7[_0x4f8a8e] !== _0x149d64[_0x4f8a8e]) return ![]; } return !![]; } function ssDefaults() { return { '\x61\x6d\x6f\x75\x6e\x74': 0xc, '\x62\x6c\x61\x63\x6b\x70\x6f\x69\x6e\x74': 0x0, '\x63\x65\x6e\x74\x65\x72\x50\x72\x6f\x74\x65\x63\x74': 0.5, '\x73\x61\x74\x75\x72\x61\x74\x69\x6f\x6e': 0x1 }; } function ssZero() { return { '\x61\x6d\x6f\x75\x6e\x74': 0x0, '\x62\x6c\x61\x63\x6b\x70\x6f\x69\x6e\x74': 0x0, '\x63\x65\x6e\x74\x65\x72\x50\x72\x6f\x74\x65\x63\x74': 0x0, '\x73\x61\x74\x75\x72\x61\x74\x69\x6f\x6e': 0x1 }; } function combineRGB(_0x453c24, _0x8c224b, _0x3b94f6, _0x454526) { var _0x326baf = _0x453c24 || _0x8c224b || _0x3b94f6 || _0x454526; if (!_0x326baf) return null; var _0xb6be1f = _0x326baf['\x77\x69\x64\x74\x68'], _0x4d482c = _0x326baf['\x68\x65\x69\x67\x68\x74'], _0x1f4257 = _0xb6be1f * _0x4d482c, _0x1de069 = new Rect(0x0, 0x0, _0xb6be1f, _0x4d482c), _0x422dd0 = new ImageWindow(_0xb6be1f, _0x4d482c, 0x3, 0x20, !![], !![], '\x5f\x61\x73\x73\x5f\x72\x67\x62\x5f\x74\x6d\x70'); _0x422dd0['\x68\x69\x64\x65'](), _0x422dd0['\x6d\x61\x69\x6e\x56\x69\x65\x77']['\x62\x65\x67\x69\x6e\x50\x72\x6f\x63\x65\x73\x73'](0x0); function _0x4550cb(_0x109086, _0x54d7fe) { var _0x3317b8 = new Float32Array(_0x1f4257); if (_0x109086) { var _0x32ac87 = _0x109086['\x77\x69\x64\x74\x68'] === _0xb6be1f && _0x109086['\x68\x65\x69\x67\x68\x74'] === _0x4d482c ? _0x109086 : scaleImage(_0x109086, _0xb6be1f / _0x109086['\x77\x69\x64\x74\x68']); _0x32ac87['\x67\x65\x74\x53\x61\x6d\x70\x6c\x65\x73'](_0x3317b8, _0x1de069, 0x0); } _0x422dd0['\x6d\x61\x69\x6e\x56\x69\x65\x77']['\x69\x6d\x61\x67\x65']['\x73\x65\x74\x53\x61\x6d\x70\x6c\x65\x73'](_0x3317b8, _0x1de069, _0x54d7fe); } _0x4550cb(_0x453c24, 0x0), _0x4550cb(_0x8c224b, 0x1), _0x4550cb(_0x3b94f6, 0x2), _0x422dd0['\x6d\x61\x69\x6e\x56\x69\x65\x77']['\x65\x6e\x64\x50\x72\x6f\x63\x65\x73\x73'](); var _0x583d78 = new Image(_0x422dd0['\x6d\x61\x69\x6e\x56\x69\x65\x77']['\x69\x6d\x61\x67\x65']); _0x422dd0['\x66\x6f\x72\x63\x65\x43\x6c\x6f\x73\x65'](); if (_0x454526) { var _0x329a64 = _0x454526['\x77\x69\x64\x74\x68'] === _0xb6be1f && _0x454526['\x68\x65\x69\x67\x68\x74'] === _0x4d482c ? _0x454526 : scaleImage(_0x454526, _0xb6be1f / _0x454526['\x77\x69\x64\x74\x68']), _0x24b3ec = new Float32Array(_0x1f4257), _0x3f4b81 = new Float32Array(_0x1f4257), _0x1013c7 = new Float32Array(_0x1f4257), _0x14e54e = new Float32Array(_0x1f4257); _0x329a64['\x67\x65\x74\x53\x61\x6d\x70\x6c\x65\x73'](_0x24b3ec, _0x1de069, 0x0), _0x583d78['\x67\x65\x74\x53\x61\x6d\x70\x6c\x65\x73'](_0x3f4b81, _0x1de069, 0x0), _0x583d78['\x67\x65\x74\x53\x61\x6d\x70\x6c\x65\x73'](_0x1013c7, _0x1de069, 0x1), _0x583d78['\x67\x65\x74\x53\x61\x6d\x70\x6c\x65\x73'](_0x14e54e, _0x1de069, 0x2); for (var _0x15108d = 0x0; _0x15108d < _0x1f4257; _0x15108d++) { var _0x1a8e11 = 0.2126 * _0x3f4b81[_0x15108d] + 0.7152 * _0x1013c7[_0x15108d] + 0.0722 * _0x14e54e[_0x15108d], _0x7db960 = _0x1a8e11 > 0.000001 ? _0x24b3ec[_0x15108d] / _0x1a8e11 : 0x0, _0x406e39 = _0x3f4b81[_0x15108d] * _0x7db960, _0x56e9d7 = _0x1013c7[_0x15108d] * _0x7db960, _0x1bd1c2 = _0x14e54e[_0x15108d] * _0x7db960, _0x56d28c = Math['\x6d\x61\x78'](_0x406e39, Math['\x6d\x61\x78'](_0x56e9d7, _0x1bd1c2)); _0x56d28c > 0x1 && (_0x406e39 /= _0x56d28c, _0x56e9d7 /= _0x56d28c, _0x1bd1c2 /= _0x56d28c), _0x3f4b81[_0x15108d] = _0x406e39 < 0x0 ? 0x0 : _0x406e39, _0x1013c7[_0x15108d] = _0x56e9d7 < 0x0 ? 0x0 : _0x56e9d7, _0x14e54e[_0x15108d] = _0x1bd1c2 < 0x0 ? 0x0 : _0x1bd1c2; } _0x583d78['\x73\x65\x74\x53\x61\x6d\x70\x6c\x65\x73'](_0x3f4b81, _0x1de069, 0x0), _0x583d78['\x73\x65\x74\x53\x61\x6d\x70\x6c\x65\x73'](_0x1013c7, _0x1de069, 0x1), _0x583d78['\x73\x65\x74\x53\x61\x6d\x70\x6c\x65\x73'](_0x14e54e, _0x1de069, 0x2); } return _0x583d78; } function linearFitEqualize(_0x3eca46) { if (_0x3eca46['\x6e\x75\x6d\x62\x65\x72\x4f\x66\x43\x68\x61\x6e\x6e\x65\x6c\x73'] < 0x3) return; var _0x4f9281 = _0x3eca46['\x77\x69\x64\x74\x68'], _0x4f1cea = _0x3eca46['\x68\x65\x69\x67\x68\x74'], _0x3b7460 = _0x4f9281 * _0x4f1cea, _0x4f1d77 = new Rect(0x0, 0x0, _0x4f9281, _0x4f1cea), _0x37f95d = Math['\x6d\x61\x78'](0x4, Math['\x66\x6c\x6f\x6f\x72'](Math['\x6d\x69\x6e'](_0x4f9281, _0x4f1cea) / 0x78)), _0x3cdf55 = [], _0x10e631 = [], _0x295066 = []; for (var _0x327688 = 0x0; _0x327688 < _0x4f1cea; _0x327688 += _0x37f95d) for (var _0x2f5581 = 0x0; _0x2f5581 < _0x4f9281; _0x2f5581 += _0x37f95d) { _0x3cdf55['\x70\x75\x73\x68'](_0x3eca46['\x73\x61\x6d\x70\x6c\x65'](_0x2f5581, _0x327688, 0x0)), _0x10e631['\x70\x75\x73\x68'](_0x3eca46['\x73\x61\x6d\x70\x6c\x65'](_0x2f5581, _0x327688, 0x1)), _0x295066['\x70\x75\x73\x68'](_0x3eca46['\x73\x61\x6d\x70\x6c\x65'](_0x2f5581, _0x327688, 0x2)); } var _0x454472 = _0x10e631['\x73\x6c\x69\x63\x65']()['\x73\x6f\x72\x74'](function (_0xb407e0, _0x121cec) { return _0xb407e0 - _0x121cec; }), _0x2bd73b = _0x454472[Math['\x66\x6c\x6f\x6f\x72'](_0x454472['\x6c\x65\x6e\x67\x74\x68'] * 0.25)]; if (_0x2bd73b < 0.000001) _0x2bd73b = _0x454472[Math['\x66\x6c\x6f\x6f\x72'](_0x454472['\x6c\x65\x6e\x67\x74\x68'] * 0.5)]; function _0x58d402(_0x4429e8, _0x1897b1) { var _0x446ef8 = [], _0x2decc2 = []; for (var _0x16f04f = 0x0; _0x16f04f < _0x4429e8['\x6c\x65\x6e\x67\x74\x68']; _0x16f04f++) _0x4429e8[_0x16f04f] < _0x2bd73b * 0x3 && _0x1897b1[_0x16f04f] < _0x2bd73b * 0x3 && (_0x446ef8['\x70\x75\x73\x68'](_0x4429e8[_0x16f04f]), _0x2decc2['\x70\x75\x73\x68'](_0x1897b1[_0x16f04f])); var _0x3c2dbd = _0x446ef8['\x6c\x65\x6e\x67\x74\x68']; if (_0x3c2dbd < 0x14) return { '\x61': 0x1, '\x62': 0x0 }; var _0x5cc5f4 = 0x0, _0x31ef20 = 0x0, _0x6edc5e = 0x0, _0x4c9a3b = 0x0; for (var _0x16f04f = 0x0; _0x16f04f < _0x3c2dbd; _0x16f04f++) { _0x5cc5f4 += _0x446ef8[_0x16f04f], _0x31ef20 += _0x2decc2[_0x16f04f], _0x6edc5e += _0x446ef8[_0x16f04f] * _0x446ef8[_0x16f04f], _0x4c9a3b += _0x446ef8[_0x16f04f] * _0x2decc2[_0x16f04f]; } var _0x1ef6c0 = _0x3c2dbd * _0x6edc5e - _0x5cc5f4 * _0x5cc5f4; if (Math['\x61\x62\x73'](_0x1ef6c0) < 1e-12) return { '\x61': 0x1, '\x62': 0x0 }; var _0x566b66 = (_0x3c2dbd * _0x4c9a3b - _0x5cc5f4 * _0x31ef20) / _0x1ef6c0; return _0x566b66 = Math['\x6d\x61\x78'](0.2, Math['\x6d\x69\x6e'](0x5, _0x566b66)), { '\x61': _0x566b66, '\x62': (_0x31ef20 - _0x566b66 * _0x5cc5f4) / _0x3c2dbd }; } var _0x4841e4 = _0x58d402(_0x3cdf55, _0x10e631), _0x238f54 = _0x58d402(_0x295066, _0x10e631), _0x344636 = new Float32Array(_0x3b7460), _0x4667e7 = new Float32Array(_0x3b7460); _0x3eca46['\x67\x65\x74\x53\x61\x6d\x70\x6c\x65\x73'](_0x344636, _0x4f1d77, 0x0), _0x3eca46['\x67\x65\x74\x53\x61\x6d\x70\x6c\x65\x73'](_0x4667e7, _0x4f1d77, 0x2); for (var _0x2cc3f6 = 0x0; _0x2cc3f6 < _0x3b7460; _0x2cc3f6++) { var _0x39bd62 = _0x4841e4['\x61'] * _0x344636[_0x2cc3f6] + _0x4841e4['\x62']; _0x344636[_0x2cc3f6] = _0x39bd62 < 0x0 ? 0x0 : _0x39bd62 > 0x1 ? 0x1 : _0x39bd62; var _0x57f37a = _0x238f54['\x61'] * _0x4667e7[_0x2cc3f6] + _0x238f54['\x62']; _0x4667e7[_0x2cc3f6] = _0x57f37a < 0x0 ? 0x0 : _0x57f37a > 0x1 ? 0x1 : _0x57f37a; } _0x3eca46['\x73\x65\x74\x53\x61\x6d\x70\x6c\x65\x73'](_0x344636, _0x4f1d77, 0x0), _0x3eca46['\x73\x65\x74\x53\x61\x6d\x70\x6c\x65\x73'](_0x4667e7, _0x4f1d77, 0x2); } function asinh(_0x4f1c1e) { return Math['\x6c\x6f\x67'](_0x4f1c1e + Math['\x73\x71\x72\x74'](_0x4f1c1e * _0x4f1c1e + 0x1)); } function mtf(_0x5b87de, _0x2084b0) { if (_0x2084b0 <= 0x0) return 0x0; if (_0x2084b0 >= 0x1) return 0x1; if (_0x5b87de <= 0x0) return 0x1; if (_0x5b87de >= 0x1) return 0x0; if (_0x5b87de === 0.5) return _0x2084b0; return (_0x5b87de - 0x1) * _0x2084b0 / ((0x2 * _0x5b87de - 0x1) * _0x2084b0 - _0x5b87de); } function boxBlur(_0x246bb7, _0x252961, _0x2a332d, _0x4e3cf5) { if (_0x4e3cf5 < 0x1) return _0x246bb7['\x73\x6c\x69\x63\x65'](0x0); var _0x55a3cc = new Float32Array(_0x246bb7['\x6c\x65\x6e\x67\x74\x68']), _0x3529f9 = new Float64Array((_0x252961 > _0x2a332d ? _0x252961 : _0x2a332d) + 0x1); for (var _0x43458d = 0x0; _0x43458d < _0x2a332d; _0x43458d++) { var _0xf73191 = _0x43458d * _0x252961; _0x3529f9[0x0] = 0x0; for (var _0x5056f2 = 0x0; _0x5056f2 < _0x252961; _0x5056f2++) _0x3529f9[_0x5056f2 + 0x1] = _0x3529f9[_0x5056f2] + _0x246bb7[_0xf73191 + _0x5056f2]; for (var _0x5419fa = 0x0; _0x5419fa < _0x252961; _0x5419fa++) { var _0x295b82 = _0x5419fa - _0x4e3cf5; if (_0x295b82 < 0x0) _0x295b82 = 0x0; var _0x2f1005 = _0x5419fa + _0x4e3cf5; if (_0x2f1005 > _0x252961 - 0x1) _0x2f1005 = _0x252961 - 0x1; _0x55a3cc[_0xf73191 + _0x5419fa] = (_0x3529f9[_0x2f1005 + 0x1] - _0x3529f9[_0x295b82]) / (_0x2f1005 - _0x295b82 + 0x1); } } var _0x8dd80d = new Float32Array(_0x246bb7['\x6c\x65\x6e\x67\x74\x68']); for (var _0x348dc0 = 0x0; _0x348dc0 < _0x252961; _0x348dc0++) { _0x3529f9[0x0] = 0x0; for (var _0x21d1d8 = 0x0; _0x21d1d8 < _0x2a332d; _0x21d1d8++) _0x3529f9[_0x21d1d8 + 0x1] = _0x3529f9[_0x21d1d8] + _0x55a3cc[_0x21d1d8 * _0x252961 + _0x348dc0]; for (var _0x4cc740 = 0x0; _0x4cc740 < _0x2a332d; _0x4cc740++) { var _0x481368 = _0x4cc740 - _0x4e3cf5; if (_0x481368 < 0x0) _0x481368 = 0x0; var _0x59a246 = _0x4cc740 + _0x4e3cf5; if (_0x59a246 > _0x2a332d - 0x1) _0x59a246 = _0x2a332d - 0x1; _0x8dd80d[_0x4cc740 * _0x252961 + _0x348dc0] = (_0x3529f9[_0x59a246 + 0x1] - _0x3529f9[_0x481368]) / (_0x59a246 - _0x481368 + 0x1); } } return _0x8dd80d; } function masClone(_0x1adb1d, _0x251b31) { var _0x1b3052 = cloneImg(_0x1adb1d), _0x22b600 = _0x1b3052['\x6e\x75\x6d\x62\x65\x72\x4f\x66\x43\x68\x61\x6e\x6e\x65\x6c\x73'], _0x25ce60 = _0x1b3052['\x77\x69\x64\x74\x68'], _0x4c8436 = _0x1b3052['\x68\x65\x69\x67\x68\x74'], _0x3747e9 = _0x25ce60 * _0x4c8436, _0x4fa6c3 = new Rect(0x0, 0x0, _0x25ce60, _0x4c8436), _0x4a70e8 = []; for (var _0x70733c = 0x0; _0x70733c < _0x22b600; _0x70733c++) { var _0x2d2983 = new Float32Array(_0x3747e9); _0x1b3052['\x67\x65\x74\x53\x61\x6d\x70\x6c\x65\x73'](_0x2d2983, _0x4fa6c3, _0x70733c), _0x4a70e8['\x70\x75\x73\x68'](_0x2d2983); } var _0x44a369 = new Float32Array(_0x3747e9); for (var _0x2af2ed = 0x0; _0x2af2ed < _0x3747e9; _0x2af2ed++) _0x44a369[_0x2af2ed] = _0x22b600 >= 0x3 ? 0.2126 * _0x4a70e8[0x0][_0x2af2ed] + 0.7152 * _0x4a70e8[0x1][_0x2af2ed] + 0.0722 * _0x4a70e8[0x2][_0x2af2ed] : _0x4a70e8[0x0][_0x2af2ed]; var _0xeef6d7 = Math['\x6d\x61\x78'](0x1, Math['\x66\x6c\x6f\x6f\x72'](_0x3747e9 / 0x249f0)), _0x24d369 = []; for (var _0x42ea8e = 0x0; _0x42ea8e < _0x3747e9; _0x42ea8e += _0xeef6d7) _0x24d369['\x70\x75\x73\x68'](_0x44a369[_0x42ea8e]); _0x24d369['\x73\x6f\x72\x74'](function (_0x1dde40, _0x23dc4a) { return _0x1dde40 - _0x23dc4a; }); var _0xe4c0a6 = _0x24d369['\x6c\x65\x6e\x67\x74\x68'], _0x112057 = _0x24d369[Math['\x66\x6c\x6f\x6f\x72'](0.5 * (_0xe4c0a6 - 0x1))], _0x3111f2 = new Array(_0xe4c0a6); for (var _0x59a55d = 0x0; _0x59a55d < _0xe4c0a6; _0x59a55d++) _0x3111f2[_0x59a55d] = Math['\x61\x62\x73'](_0x24d369[_0x59a55d] - _0x112057); _0x3111f2['\x73\x6f\x72\x74'](function (_0x333781, _0x528e98) { return _0x333781 - _0x528e98; }); var _0x48e4ce = 1.4826 * _0x3111f2[Math['\x66\x6c\x6f\x6f\x72'](0.5 * (_0xe4c0a6 - 0x1))]; if (_0x48e4ce < 1e-7) _0x48e4ce = 1e-7; var _0x4ddc33 = _0x251b31['\x61\x67\x67\x72\x65\x73\x73\x69\x76\x65\x6e\x65\x73\x73'], _0x4dba83 = _0x112057 - (3.5 * (0x1 - _0x4ddc33) + 0.2) * _0x48e4ce; if (_0x4dba83 < 0x0) _0x4dba83 = 0x0; if (_0x4dba83 > 0.95) _0x4dba83 = 0.95; var _0x48d4ca = 0x1 - _0x4dba83; if (_0x48d4ca < 0.00001) _0x48d4ca = 0.00001; var _0x5abaf8 = _0x251b31['\x74\x61\x72\x67\x65\x74\x42\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64']; if (_0x5abaf8 < 0.001) _0x5abaf8 = 0.001; if (_0x5abaf8 > 0.5) _0x5abaf8 = 0.5; var _0xa05b44 = (_0x112057 - _0x4dba83) / _0x48d4ca; if (_0xa05b44 < 0.000001) _0xa05b44 = 0.000001; if (_0xa05b44 > 0.5) _0xa05b44 = 0.5; var _0x316489 = _0xa05b44 * (0x1 - _0x5abaf8) / (_0xa05b44 * (0x1 - 0x2 * _0x5abaf8) + _0x5abaf8); if (_0x316489 < 0.00001) _0x316489 = 0.00001; if (_0x316489 > 0.9999) _0x316489 = 0.9999; var _0x5a6da6 = _0x251b31['\x64\x79\x6e\x61\x6d\x69\x63\x52\x61\x6e\x67\x65\x43\x6f\x6d\x70\x72\x65\x73\x73\x69\x6f\x6e'], _0x54863e = 0x1 - 0.6 * _0x5a6da6, _0x185111 = 0x1 - _0x54863e; if (_0x185111 < 0.0001) _0x185111 = 0.0001; var _0x20fb4f = new Float32Array(_0x3747e9); for (var _0x23585c = 0x0; _0x23585c < _0x3747e9; _0x23585c++) { if ((_0x23585c & 0x7ffff) === 0x0) processEvents(); var _0xdb1012 = (_0x44a369[_0x23585c] - _0x4dba83) / _0x48d4ca; if (_0xdb1012 < 0x0) _0xdb1012 = 0x0; else { if (_0xdb1012 > 0x1) _0xdb1012 = 0x1; } var _0x351c41 = mtf(_0x316489, _0xdb1012); if (_0x5a6da6 > 0x0 && _0x351c41 > _0x54863e) { var _0x11c11f = _0x351c41 - _0x54863e; _0x351c41 = _0x54863e + _0x185111 * (0x1 - Math['\x65\x78\x70'](-_0x11c11f / _0x185111)); } _0x20fb4f[_0x23585c] = _0x351c41; } if (_0x251b31['\x63\x6f\x6e\x74\x72\x61\x73\x74\x52\x65\x63\x6f\x76\x65\x72\x79']) { var _0x2262a8 = Math['\x72\x6f\x75\x6e\x64'](_0x251b31['\x73\x63\x61\x6c\x65\x53\x65\x70\x61\x72\x61\x74\x69\x6f\x6e'] / 0x2); if (_0x2262a8 < 0x2) _0x2262a8 = 0x2; var _0x5c92d7 = Math['\x66\x6c\x6f\x6f\x72'](Math['\x6d\x69\x6e'](_0x25ce60, _0x4c8436) / 0x2) - 0x1; if (_0x2262a8 > _0x5c92d7) _0x2262a8 = _0x5c92d7; var _0x307bff = boxBlur(_0x20fb4f, _0x25ce60, _0x4c8436, _0x2262a8), _0x13d3f6 = _0x251b31['\x63\x6f\x6e\x74\x72\x61\x73\x74\x52\x65\x63\x6f\x76\x65\x72\x79\x49\x6e\x74\x65\x6e\x73\x69\x74\x79']; for (var _0x36fe2f = 0x0; _0x36fe2f < _0x3747e9; _0x36fe2f++) { var _0x299053 = _0x20fb4f[_0x36fe2f] - _0x307bff[_0x36fe2f], _0x2ad375 = 0x1 - _0x307bff[_0x36fe2f]; if (_0x2ad375 < 0x0) _0x2ad375 = 0x0; var _0x3f8a70 = _0x307bff[_0x36fe2f] + _0x299053 * (0x1 + _0x13d3f6 * 0.8 * _0x2ad375); if (_0x3f8a70 < 0x0) _0x3f8a70 = 0x0; else { if (_0x3f8a70 > 0x1) _0x3f8a70 = 0x1; } _0x20fb4f[_0x36fe2f] = _0x3f8a70; } } var _0x481a60 = _0x251b31['\x73\x61\x74\x75\x72\x61\x74\x69\x6f\x6e\x45\x6e\x61\x62\x6c\x65\x64'] && _0x22b600 >= 0x3, _0x5ea604 = _0x251b31['\x73\x61\x74\x75\x72\x61\x74\x69\x6f\x6e\x41\x6d\x6f\x75\x6e\x74'], _0x537dd1 = _0x251b31['\x73\x61\x74\x75\x72\x61\x74\x69\x6f\x6e\x42\x6f\x6f\x73\x74']; for (var _0xab17c = 0x0; _0xab17c < _0x3747e9; _0xab17c++) { if ((_0xab17c & 0x7ffff) === 0x0) processEvents(); var _0x1fbee6, _0x4e2120, _0x2d2983; _0x22b600 >= 0x3 ? (_0x1fbee6 = _0x4a70e8[0x0][_0xab17c], _0x4e2120 = _0x4a70e8[0x1][_0xab17c], _0x2d2983 = _0x4a70e8[0x2][_0xab17c]) : _0x1fbee6 = _0x4e2120 = _0x2d2983 = _0x4a70e8[0x0][_0xab17c]; _0x1fbee6 = (_0x1fbee6 - _0x4dba83) / _0x48d4ca, _0x4e2120 = (_0x4e2120 - _0x4dba83) / _0x48d4ca, _0x2d2983 = (_0x2d2983 - _0x4dba83) / _0x48d4ca; if (_0x1fbee6 < 0x0) _0x1fbee6 = 0x0; if (_0x4e2120 < 0x0) _0x4e2120 = 0x0; if (_0x2d2983 < 0x0) _0x2d2983 = 0x0; var _0x43658c = (_0x44a369[_0xab17c] - _0x4dba83) / _0x48d4ca; if (_0x43658c < 0x0) _0x43658c = 0x0; var _0x131220 = _0x43658c > 1e-7 ? _0x20fb4f[_0xab17c] / _0x43658c : 0x0; _0x1fbee6 *= _0x131220, _0x4e2120 *= _0x131220, _0x2d2983 *= _0x131220; var _0x387185 = _0x22b600 >= 0x3 ? Math['\x6d\x61\x78'](_0x1fbee6, Math['\x6d\x61\x78'](_0x4e2120, _0x2d2983)) : _0x1fbee6; _0x387185 > 0x1 && (_0x1fbee6 /= _0x387185, _0x22b600 >= 0x3 && (_0x4e2120 /= _0x387185, _0x2d2983 /= _0x387185)); if (_0x481a60) { var _0x12ddd6 = 0.2126 * _0x1fbee6 + 0.7152 * _0x4e2120 + 0.0722 * _0x2d2983, _0x5235f6 = Math['\x6d\x69\x6e'](_0x1fbee6, Math['\x6d\x69\x6e'](_0x4e2120, _0x2d2983)), _0x1df470 = Math['\x6d\x61\x78'](_0x1fbee6, Math['\x6d\x61\x78'](_0x4e2120, _0x2d2983)), _0x590352 = _0x1df470 > 0.000001 ? (_0x1df470 - _0x5235f6) / _0x1df470 : 0x0, _0x13dc28 = _0x12ddd6, _0x50e9b8 = 0x1 + _0x5ea604 * (0x1 - _0x537dd1 * _0x590352) * _0x13dc28; _0x1fbee6 = _0x12ddd6 + (_0x1fbee6 - _0x12ddd6) * _0x50e9b8, _0x4e2120 = _0x12ddd6 + (_0x4e2120 - _0x12ddd6) * _0x50e9b8, _0x2d2983 = _0x12ddd6 + (_0x2d2983 - _0x12ddd6) * _0x50e9b8; } _0x4a70e8[0x0][_0xab17c] = _0x1fbee6 < 0x0 ? 0x0 : _0x1fbee6 > 0x1 ? 0x1 : _0x1fbee6, _0x22b600 >= 0x3 && (_0x4a70e8[0x1][_0xab17c] = _0x4e2120 < 0x0 ? 0x0 : _0x4e2120 > 0x1 ? 0x1 : _0x4e2120, _0x4a70e8[0x2][_0xab17c] = _0x2d2983 < 0x0 ? 0x0 : _0x2d2983 > 0x1 ? 0x1 : _0x2d2983); } for (var _0xc0523b = 0x0; _0xc0523b < _0x22b600; _0xc0523b++) _0x1b3052['\x73\x65\x74\x53\x61\x6d\x70\x6c\x65\x73'](_0x4a70e8[_0xc0523b], _0x4fa6c3, _0xc0523b); return _0x1b3052; } function starStretch(_0x1c36aa, _0x3861d2) { var _0x6907fe = cloneImg(_0x1c36aa), _0x593893 = _0x6907fe['\x6e\x75\x6d\x62\x65\x72\x4f\x66\x43\x68\x61\x6e\x6e\x65\x6c\x73'], _0x6f8db1 = _0x6907fe['\x77\x69\x64\x74\x68'], _0x506b7f = _0x6907fe['\x68\x65\x69\x67\x68\x74'], _0x3408b6 = _0x6f8db1 * _0x506b7f, _0x15fa0a = new Rect(0x0, 0x0, _0x6f8db1, _0x506b7f), _0x1b892d = _0x3861d2['\x61\x6d\x6f\x75\x6e\x74'], _0x5f328c = _0x1b892d > 0.000001, _0x5014c3 = _0x3861d2['\x62\x6c\x61\x63\x6b\x70\x6f\x69\x6e\x74'], _0x1e2326 = 0x1 - _0x5014c3; if (_0x1e2326 < 0.00001) _0x1e2326 = 0.00001; var _0xf0143a = 0x1 - _0x3861d2['\x63\x65\x6e\x74\x65\x72\x50\x72\x6f\x74\x65\x63\x74'] * 0.6, _0x2e4f0f = _0x5f328c ? asinh(_0x1b892d) : 0x1; if (_0x2e4f0f < 0.000001) _0x2e4f0f = 0.000001; var _0x5d40ed = _0x3861d2['\x73\x61\x74\x75\x72\x61\x74\x69\x6f\x6e'], _0x180fae = _0x593893 >= 0x3 && Math['\x61\x62\x73'](_0x5d40ed - 0x1) > 0.001, _0x113641 = []; for (var _0x5ad258 = 0x0; _0x5ad258 < _0x593893; _0x5ad258++) { var _0x15724e = new Float32Array(_0x3408b6); _0x6907fe['\x67\x65\x74\x53\x61\x6d\x70\x6c\x65\x73'](_0x15724e, _0x15fa0a, _0x5ad258), _0x113641['\x70\x75\x73\x68'](_0x15724e); } for (var _0x3b6d11 = 0x0; _0x3b6d11 < _0x3408b6; _0x3b6d11++) { if ((_0x3b6d11 & 0x3ffff) === 0x0) processEvents(); var _0x21bb25, _0x3ce134, _0x15724e; _0x593893 >= 0x3 ? (_0x21bb25 = _0x113641[0x0][_0x3b6d11], _0x3ce134 = _0x113641[0x1][_0x3b6d11], _0x15724e = _0x113641[0x2][_0x3b6d11]) : _0x21bb25 = _0x3ce134 = _0x15724e = _0x113641[0x0][_0x3b6d11]; _0x21bb25 = (_0x21bb25 - _0x5014c3) / _0x1e2326, _0x3ce134 = (_0x3ce134 - _0x5014c3) / _0x1e2326, _0x15724e = (_0x15724e - _0x5014c3) / _0x1e2326; if (_0x21bb25 < 0x0) _0x21bb25 = 0x0; if (_0x3ce134 < 0x0) _0x3ce134 = 0x0; if (_0x15724e < 0x0) _0x15724e = 0x0; var _0x4334b0 = _0x593893 >= 0x3 ? Math['\x6d\x61\x78'](_0x21bb25, Math['\x6d\x61\x78'](_0x3ce134, _0x15724e)) : _0x21bb25; if (_0x4334b0 <= 1e-7) { _0x113641[0x0][_0x3b6d11] = 0x0; _0x593893 >= 0x3 && (_0x113641[0x1][_0x3b6d11] = 0x0, _0x113641[0x2][_0x3b6d11] = 0x0); continue; } var _0x33d451 = _0x5f328c ? asinh(_0x1b892d * _0x4334b0) / _0x2e4f0f : _0x4334b0; if (_0x33d451 > _0xf0143a) _0x33d451 = _0xf0143a; var _0x555101 = _0x33d451 / _0x4334b0; _0x21bb25 *= _0x555101, _0x3ce134 *= _0x555101, _0x15724e *= _0x555101; var _0x6a44f3 = _0x593893 >= 0x3 ? Math['\x6d\x61\x78'](_0x21bb25, Math['\x6d\x61\x78'](_0x3ce134, _0x15724e)) : _0x21bb25; _0x6a44f3 > 0x1 && (_0x21bb25 /= _0x6a44f3, _0x593893 >= 0x3 && (_0x3ce134 /= _0x6a44f3, _0x15724e /= _0x6a44f3)); if (_0x180fae) { var _0x28da9e = 0.2126 * _0x21bb25 + 0.7152 * _0x3ce134 + 0.0722 * _0x15724e; _0x21bb25 = _0x28da9e + (_0x21bb25 - _0x28da9e) * _0x5d40ed, _0x3ce134 = _0x28da9e + (_0x3ce134 - _0x28da9e) * _0x5d40ed, _0x15724e = _0x28da9e + (_0x15724e - _0x28da9e) * _0x5d40ed; } _0x113641[0x0][_0x3b6d11] = _0x21bb25 < 0x0 ? 0x0 : _0x21bb25 > 0x1 ? 0x1 : _0x21bb25, _0x593893 >= 0x3 && (_0x113641[0x1][_0x3b6d11] = _0x3ce134 < 0x0 ? 0x0 : _0x3ce134 > 0x1 ? 0x1 : _0x3ce134, _0x113641[0x2][_0x3b6d11] = _0x15724e < 0x0 ? 0x0 : _0x15724e > 0x1 ? 0x1 : _0x15724e); } for (var _0x5ad258 = 0x0; _0x5ad258 < _0x593893; _0x5ad258++) _0x6907fe['\x73\x65\x74\x53\x61\x6d\x70\x6c\x65\x73'](_0x113641[_0x5ad258], _0x15fa0a, _0x5ad258); return _0x6907fe; } function isSolved(_0x1b59c3) { try { if (_0x1b59c3['\x68\x61\x73\x41\x73\x74\x72\x6f\x6d\x65\x74\x72\x69\x63\x53\x6f\x6c\x75\x74\x69\x6f\x6e']) return !![]; } catch (_0x123e1a) { } try { if (_0x1b59c3['\x61\x73\x74\x72\x6f\x6d\x65\x74\x72\x69\x63\x53\x6f\x6c\x75\x74\x69\x6f\x6e'] && _0x1b59c3['\x61\x73\x74\x72\x6f\x6d\x65\x74\x72\x69\x63\x53\x6f\x6c\x75\x74\x69\x6f\x6e']() != null) return !![]; } catch (_0x21ef96) { } try { var _0x3c93b1 = _0x1b59c3['\x6b\x65\x79\x77\x6f\x72\x64\x73']; for (var _0x40ede4 = 0x0; _0x40ede4 < _0x3c93b1['\x6c\x65\x6e\x67\x74\x68']; _0x40ede4++) { var _0x52f0b1 = _0x3c93b1[_0x40ede4]['\x6e\x61\x6d\x65']['\x74\x6f\x55\x70\x70\x65\x72\x43\x61\x73\x65'](); if (_0x52f0b1 === '\x43\x44\x31\x5f\x31' || _0x52f0b1 === '\x43\x44\x45\x4c\x54\x31') return !![]; } } catch (_0x5b4740) { } return ![]; } function isUsableWinS(_0x2c0c8a) { if (!(_0x2c0c8a && !_0x2c0c8a['\x69\x73\x4e\x75\x6c\x6c'] && _0x2c0c8a['\x6d\x61\x69\x6e\x56\x69\x65\x77'] && !_0x2c0c8a['\x6d\x61\x69\x6e\x56\x69\x65\x77']['\x69\x73\x4e\x75\x6c\x6c'])) return ![]; var _0x5b5ef9 = _0x2c0c8a['\x6d\x61\x69\x6e\x56\x69\x65\x77']['\x69\x64'] || ''; if (_0x5b5ef9['\x63\x68\x61\x72\x41\x74'](0x0) === '\x5f') return ![]; if (/(^AstroMaxTmp|^AstroMaxLF|^AstroMaxCompose|^AstroMaxStarStretch_work|_work$)/['\x74\x65\x73\x74'](_0x5b5ef9)) return ![]; return !![]; } class AstroMaxStarStretchDialog extends Dialog { constructor() { super(); var _0x11b27a = this; this['\x77\x69\x6e\x73'] = []; var _0x3d9c49 = ImageWindow['\x77\x69\x6e\x64\x6f\x77\x73']; for (var _0x7e88af = 0x0; _0x7e88af < _0x3d9c49['\x6c\x65\x6e\x67\x74\x68']; _0x7e88af++) if (isUsableWinS(_0x3d9c49[_0x7e88af])) this['\x77\x69\x6e\x73']['\x70\x75\x73\x68'](_0x3d9c49[_0x7e88af]); this['\x6d\x6f\x64\x65'] = '\x6f\x73\x63', this['\x77\x6f\x72\x6b\x57\x69\x6e'] = null, this['\x73\x74\x61\x72\x73\x49\x6d\x67'] = null, this['\x6c\x61\x73\x74\x52\x65\x73'] = null, this['\x70\x72\x65\x76\x69\x65\x77\x42\x69\x74\x6d\x61\x70'] = null, this['\x70\x72\x65\x76\x69\x65\x77\x53\x63\x61\x6c\x65'] = 0.3, this['\x62\x75\x73\x79'] = ![], this['\x73\x74\x61\x67\x65\x53\x74\x61\x72\x73'] = ![], this['\x7a\x6f\x6f\x6d\x4d\x6f\x64\x65'] = ![], this['\x7a\x6f\x6f\x6d\x4c\x65\x76\x65\x6c'] = 0x4, this['\x7a\x6f\x6f\x6d\x43\x58'] = 0.5, this['\x7a\x6f\x6f\x6d\x43\x59'] = 0.5, this['\x64\x72\x61\x67\x53\x74\x61\x72\x74'] = null, this['\x64\x72\x61\x67\x52\x65\x63\x74'] = null, this['\x70\x48\x69\x73\x74\x6f\x72\x79'] = [], this['\x72\x65\x73\x74\x6f\x72\x69\x6e\x67\x53\x74\x61\x74\x65'] = ![], this['\x63\x6f\x6d\x70\x61\x72\x65\x42\x61\x73\x65\x6c\x69\x6e\x65'] = null, this['\x73\x68\x6f\x77\x69\x6e\x67\x42\x65\x66\x6f\x72\x65'] = ![], this['\x5f\x62\x65\x66\x6f\x72\x65\x52\x65\x73'] = null, this['\x5f\x61\x66\x74\x65\x72\x52\x65\x73'] = null, this['\x70'] = ssDefaults(), this['\x77\x69\x6e\x64\x6f\x77\x54\x69\x74\x6c\x65'] = '\x41\x73\x74\x72\x6f\x4d\x61\x78\x20\x53\x74\x61\x72\x53\x74\x72\x65\x74\x63\x68\x20\x20\x76' + ASS_VERSION; var _0x32af35 = 0x280; this['\x50\x57'] = _0x32af35, this['\x50\x48'] = 0x208, this['\x63\x61\x6e\x76\x61\x73'] = new Control(this), this['\x63\x61\x6e\x76\x61\x73']['\x73\x65\x74\x4d\x69\x6e\x53\x69\x7a\x65'](_0x32af35, this['\x50\x48']), this['\x63\x61\x6e\x76\x61\x73']['\x6f\x6e\x50\x61\x69\x6e\x74'] = function () { var _0x5c9db0 = new Graphics(_0x11b27a['\x63\x61\x6e\x76\x61\x73']), _0x5a25f5 = _0x11b27a['\x63\x61\x6e\x76\x61\x73']['\x77\x69\x64\x74\x68'], _0x458569 = _0x11b27a['\x63\x61\x6e\x76\x61\x73']['\x68\x65\x69\x67\x68\x74']; _0x5c9db0['\x66\x69\x6c\x6c\x52\x65\x63\x74'](0x0, 0x0, _0x5a25f5, _0x458569, new Brush(0xff101014)); if (_0x11b27a['\x70\x72\x65\x76\x69\x65\x77\x42\x69\x74\x6d\x61\x70'] !== null) { var _0xe4ac18 = _0x11b27a['\x70\x72\x65\x76\x69\x65\x77\x42\x69\x74\x6d\x61\x70']['\x77\x69\x64\x74\x68'], _0x6f1238 = _0x11b27a['\x70\x72\x65\x76\x69\x65\x77\x42\x69\x74\x6d\x61\x70']['\x68\x65\x69\x67\x68\x74']; _0x5c9db0['\x64\x72\x61\x77\x42\x69\x74\x6d\x61\x70'](Math['\x72\x6f\x75\x6e\x64']((_0x5a25f5 - _0xe4ac18) / 0x2), Math['\x72\x6f\x75\x6e\x64']((_0x458569 - _0x6f1238) / 0x2), _0x11b27a['\x70\x72\x65\x76\x69\x65\x77\x42\x69\x74\x6d\x61\x70']), _0x11b27a['\x73\x74\x61\x67\x65\x53\x74\x61\x72\x73'] && (_0x5c9db0['\x70\x65\x6e'] = new Pen(0xffffd040, 0x1), _0x5c9db0['\x64\x72\x61\x77\x54\x65\x78\x74'](0xa, 0x12, '\x50\x72\x65\x76\x69\x65\x77\x3a\x20\x53\x54\x41\x52\x53')), !_0x11b27a['\x7a\x6f\x6f\x6d\x4d\x6f\x64\x65'] && _0x11b27a['\x64\x72\x61\x67\x52\x65\x63\x74'] !== null && (_0x5c9db0['\x70\x65\x6e'] = new Pen(0xffffff00, 0x1), _0x5c9db0['\x64\x72\x61\x77\x52\x65\x63\x74'](_0x11b27a['\x64\x72\x61\x67\x52\x65\x63\x74']['\x78'], _0x11b27a['\x64\x72\x61\x67\x52\x65\x63\x74']['\x79'], _0x11b27a['\x64\x72\x61\x67\x52\x65\x63\x74']['\x78'] + _0x11b27a['\x64\x72\x61\x67\x52\x65\x63\x74']['\x77'], _0x11b27a['\x64\x72\x61\x67\x52\x65\x63\x74']['\x79'] + _0x11b27a['\x64\x72\x61\x67\x52\x65\x63\x74']['\x68'])); } else _0x5c9db0['\x70\x65\x6e'] = new Pen(0xff888888, 0x1), _0x5c9db0['\x64\x72\x61\x77\x54\x65\x78\x74'](0x10, Math['\x72\x6f\x75\x6e\x64'](_0x458569 / 0x2) - 0x8, '\x53\x65\x6c\x65\x63\x74\x20\x61\x20\x6d\x61\x73\x74\x65\x72\x20\x28\x4f\x53\x43\x29\x20\x6f\x72\x20\x63\x68\x61\x6e\x6e\x65\x6c\x73\x20\x28\x4d\x6f\x6e\x6f\x29\x2e'); _0x5c9db0['\x65\x6e\x64'](); }, this['\x63\x61\x6e\x76\x61\x73']['\x6f\x6e\x52\x65\x73\x69\x7a\x65'] = function (_0x372a11, _0xc5d8ea) { _0x11b27a['\x50\x57'] = _0x372a11, _0x11b27a['\x50\x48'] = _0xc5d8ea; if (_0x11b27a['\x6c\x61\x73\x74\x52\x65\x73'] !== null) _0x11b27a['\x72\x65\x6e\x64\x65\x72\x50\x72\x65\x76\x69\x65\x77'](); else _0x11b27a['\x63\x61\x6e\x76\x61\x73']['\x72\x65\x70\x61\x69\x6e\x74'](); }, this['\x63\x61\x6e\x76\x61\x73']['\x6f\x6e\x4d\x6f\x75\x73\x65\x50\x72\x65\x73\x73'] = function (_0x46abc9, _0x387773) { _0x11b27a['\x64\x72\x61\x67\x53\x74\x61\x72\x74'] = { '\x78': _0x46abc9, '\x79': _0x387773 }, _0x11b27a['\x64\x72\x61\x67\x52\x65\x63\x74'] = null; }, this['\x63\x61\x6e\x76\x61\x73']['\x6f\x6e\x4d\x6f\x75\x73\x65\x4d\x6f\x76\x65'] = function (_0x485992, _0x57059a) { if (_0x11b27a['\x64\x72\x61\x67\x53\x74\x61\x72\x74'] === null || _0x11b27a['\x7a\x6f\x6f\x6d\x4d\x6f\x64\x65']) return; _0x11b27a['\x64\x72\x61\x67\x52\x65\x63\x74'] = { '\x78': Math['\x6d\x69\x6e'](_0x11b27a['\x64\x72\x61\x67\x53\x74\x61\x72\x74']['\x78'], _0x485992), '\x79': Math['\x6d\x69\x6e'](_0x11b27a['\x64\x72\x61\x67\x53\x74\x61\x72\x74']['\x79'], _0x57059a), '\x77': Math['\x61\x62\x73'](_0x485992 - _0x11b27a['\x64\x72\x61\x67\x53\x74\x61\x72\x74']['\x78']), '\x68': Math['\x61\x62\x73'](_0x57059a - _0x11b27a['\x64\x72\x61\x67\x53\x74\x61\x72\x74']['\x79']) }, _0x11b27a['\x63\x61\x6e\x76\x61\x73']['\x72\x65\x70\x61\x69\x6e\x74'](); }, this['\x63\x61\x6e\x76\x61\x73']['\x6f\x6e\x4d\x6f\x75\x73\x65\x52\x65\x6c\x65\x61\x73\x65'] = function (_0x333919, _0x5edb7e) { if (_0x11b27a['\x64\x72\x61\x67\x53\x74\x61\x72\x74'] === null) return; var _0x5b0fd6 = _0x11b27a['\x64\x72\x61\x67\x52\x65\x63\x74'] !== null && _0x11b27a['\x64\x72\x61\x67\x52\x65\x63\x74']['\x77'] > 0xe && _0x11b27a['\x64\x72\x61\x67\x52\x65\x63\x74']['\x68'] > 0xe; if (!_0x11b27a['\x7a\x6f\x6f\x6d\x4d\x6f\x64\x65'] && _0x5b0fd6 && _0x11b27a['\x70\x72\x65\x76\x69\x65\x77\x42\x69\x74\x6d\x61\x70'] !== null) { var _0x3202a9 = _0x11b27a['\x70\x72\x65\x76\x69\x65\x77\x42\x69\x74\x6d\x61\x70']['\x77\x69\x64\x74\x68'], _0x2385fa = _0x11b27a['\x70\x72\x65\x76\x69\x65\x77\x42\x69\x74\x6d\x61\x70']['\x68\x65\x69\x67\x68\x74'], _0x1fe15d = _0x11b27a['\x63\x61\x6e\x76\x61\x73']['\x77\x69\x64\x74\x68'], _0x5a3e0e = _0x11b27a['\x63\x61\x6e\x76\x61\x73']['\x68\x65\x69\x67\x68\x74'], _0x22eb4f = Math['\x72\x6f\x75\x6e\x64']((_0x1fe15d - _0x3202a9) / 0x2), _0x90ab25 = Math['\x72\x6f\x75\x6e\x64']((_0x5a3e0e - _0x2385fa) / 0x2), _0xafb613 = (_0x11b27a['\x64\x72\x61\x67\x52\x65\x63\x74']['\x78'] - _0x22eb4f) / _0x3202a9, _0x481510 = (_0x11b27a['\x64\x72\x61\x67\x52\x65\x63\x74']['\x79'] - _0x90ab25) / _0x2385fa, _0x3fcfc2 = _0x11b27a['\x64\x72\x61\x67\x52\x65\x63\x74']['\x77'] / _0x3202a9, _0x4646fa = _0x11b27a['\x64\x72\x61\x67\x52\x65\x63\x74']['\x68'] / _0x2385fa; _0x11b27a['\x7a\x6f\x6f\x6d\x43\x58'] = Math['\x6d\x61\x78'](0x0, Math['\x6d\x69\x6e'](0x1, _0xafb613 + _0x3fcfc2 / 0x2)), _0x11b27a['\x7a\x6f\x6f\x6d\x43\x59'] = Math['\x6d\x61\x78'](0x0, Math['\x6d\x69\x6e'](0x1, _0x481510 + _0x4646fa / 0x2)); var _0xde16a5 = (_0x3fcfc2 + _0x4646fa) / 0x2; _0x11b27a['\x7a\x6f\x6f\x6d\x4c\x65\x76\x65\x6c'] = _0xde16a5 < 0.15 ? 0x8 : _0xde16a5 < 0.35 ? 0x4 : 0x2, _0x11b27a['\x7a\x6f\x6f\x6d\x4d\x6f\x64\x65'] = !![], _0x11b27a['\x62\x74\x6e\x5a\x6f\x6f\x6d\x52\x65\x73\x65\x74']['\x65\x6e\x61\x62\x6c\x65\x64'] = !![], _0x11b27a['\x72\x65\x6e\x64\x65\x72\x50\x72\x65\x76\x69\x65\x77'](); } _0x11b27a['\x64\x72\x61\x67\x53\x74\x61\x72\x74'] = null, _0x11b27a['\x64\x72\x61\x67\x52\x65\x63\x74'] = null, _0x11b27a['\x63\x61\x6e\x76\x61\x73']['\x72\x65\x70\x61\x69\x6e\x74'](); }; function _0x2b9fd7(_0x2392f, _0x1cab74, _0x53f3e3, _0x2601b6, _0x5be4cd, _0x94f640) { var _0x1764cd = new Label(_0x11b27a); _0x1764cd['\x74\x65\x78\x74'] = _0x2392f, _0x1764cd['\x6d\x69\x6e\x57\x69\x64\x74\x68'] = 0x96; var _0x233c37 = new Slider(_0x11b27a); _0x233c37['\x6d\x69\x6e\x57\x69\x64\x74\x68'] = 0x8c; var _0x56ad65 = 0x3e8; _0x233c37['\x73\x65\x74\x52\x61\x6e\x67\x65'](0x0, _0x56ad65), _0x233c37['\x76\x61\x6c\x75\x65'] = Math['\x72\x6f\x75\x6e\x64']((_0x2601b6 - _0x1cab74) / (_0x53f3e3 - _0x1cab74) * _0x56ad65); var _0x409736 = new Edit(_0x11b27a); _0x409736['\x72\x65\x61\x64\x4f\x6e\x6c\x79'] = !![], _0x409736['\x6d\x69\x6e\x57\x69\x64\x74\x68'] = 0x36, _0x409736['\x6d\x61\x78\x57\x69\x64\x74\x68'] = 0x36, _0x409736['\x74\x65\x78\x74'] = _0x2601b6['\x74\x6f\x46\x69\x78\x65\x64'](_0x5be4cd), _0x233c37['\x6f\x6e\x56\x61\x6c\x75\x65\x55\x70\x64\x61\x74\x65\x64'] = function (_0x17974f) { var _0x15cb29 = _0x1cab74 + _0x17974f / _0x56ad65 * (_0x53f3e3 - _0x1cab74); _0x409736['\x74\x65\x78\x74'] = _0x15cb29['\x74\x6f\x46\x69\x78\x65\x64'](_0x5be4cd), _0x94f640(_0x15cb29), _0x11b27a['\x6e\x65\x65\x64\x73\x52\x65\x66\x72\x65\x73\x68'] = !![]; }, _0x233c37['\x6f\x6e\x4d\x6f\x75\x73\x65\x52\x65\x6c\x65\x61\x73\x65'] = function () { _0x11b27a['\x6e\x65\x65\x64\x73\x52\x65\x66\x72\x65\x73\x68'] && (_0x11b27a['\x6e\x65\x65\x64\x73\x52\x65\x66\x72\x65\x73\x68'] = ![], _0x11b27a['\x64\x6f\x52\x65\x66\x72\x65\x73\x68']()); }; var _0x563ab3 = new HorizontalSizer(); return _0x563ab3['\x73\x70\x61\x63\x69\x6e\x67'] = 0x6, _0x563ab3['\x61\x64\x64'](_0x1764cd), _0x563ab3['\x61\x64\x64'](_0x233c37, 0x1), _0x563ab3['\x61\x64\x64'](_0x409736), { '\x72\x6f\x77': _0x563ab3, '\x73\x6c\x69\x64\x65\x72': _0x233c37, '\x65\x64\x69\x74': _0x409736, '\x73\x65\x74': function (_0x5669f8) { _0x233c37['\x76\x61\x6c\x75\x65'] = Math['\x72\x6f\x75\x6e\x64']((_0x5669f8 - _0x1cab74) / (_0x53f3e3 - _0x1cab74) * _0x56ad65), _0x409736['\x74\x65\x78\x74'] = _0x5669f8['\x74\x6f\x46\x69\x78\x65\x64'](_0x5be4cd); } }; } function _0x4fd8fe(_0x294874) { var _0x4f6079 = new GroupBox(_0x11b27a); return _0x4f6079['\x74\x69\x74\x6c\x65'] = _0x294874, _0x4f6079['\x73\x69\x7a\x65\x72'] = new VerticalSizer(), _0x4f6079['\x73\x69\x7a\x65\x72']['\x6d\x61\x72\x67\x69\x6e'] = 0x6, _0x4f6079['\x73\x69\x7a\x65\x72']['\x73\x70\x61\x63\x69\x6e\x67'] = 0x4, _0x4f6079; } var _0x1f04d5 = new Label(this); _0x1f04d5['\x74\x65\x78\x74'] = '\x4d\x6f\x64\x65\x3a', _0x1f04d5['\x6d\x69\x6e\x57\x69\x64\x74\x68'] = 0x3c, this['\x6d\x6f\x64\x65\x43\x6f\x6d\x62\x6f'] = new ComboBox(this), this['\x6d\x6f\x64\x65\x43\x6f\x6d\x62\x6f']['\x61\x64\x64\x49\x74\x65\x6d']('\x4f\x53\x43\x20\x28\x6f\x6e\x65\x2d\x73\x68\x6f\x74\x20\x63\x6f\x6c\x6f\x75\x72\x29'), this['\x6d\x6f\x64\x65\x43\x6f\x6d\x62\x6f']['\x61\x64\x64\x49\x74\x65\x6d']('\x4d\x6f\x6e\x6f\x20\x28\x63\x6f\x6d\x62\x69\x6e\x65\x20\x63\x68\x61\x6e\x6e\x65\x6c\x73\x29'), this['\x6d\x6f\x64\x65\x43\x6f\x6d\x62\x6f']['\x6f\x6e\x49\x74\x65\x6d\x53\x65\x6c\x65\x63\x74\x65\x64'] = function (_0x9dfff) { _0x11b27a['\x6d\x6f\x64\x65'] = _0x9dfff === 0x1 ? '\x6d\x6f\x6e\x6f' : '\x6f\x73\x63', _0x11b27a['\x75\x70\x64\x61\x74\x65\x4d\x6f\x64\x65\x55\x49'](); }; var _0x5983d5 = new HorizontalSizer(); _0x5983d5['\x73\x70\x61\x63\x69\x6e\x67'] = 0x6, _0x5983d5['\x61\x64\x64'](_0x1f04d5), _0x5983d5['\x61\x64\x64'](this['\x6d\x6f\x64\x65\x43\x6f\x6d\x62\x6f'], 0x1); var _0x568319 = _0x4fd8fe('\x31\x20\u00b7\x20\x49\x6e\x70\x75\x74'); this['\x73\x72\x63\x4c\x62\x6c'] = new Label(this), this['\x73\x72\x63\x4c\x62\x6c']['\x74\x65\x78\x74'] = '\x4d\x61\x73\x74\x65\x72\x3a', this['\x73\x72\x63\x4c\x62\x6c']['\x6d\x69\x6e\x57\x69\x64\x74\x68'] = 0x3c, this['\x73\x72\x63\x43\x6f\x6d\x62\x6f'] = new ComboBox(this), this['\x73\x72\x63\x43\x6f\x6d\x62\x6f']['\x61\x64\x64\x49\x74\x65\x6d']('\x2d\x2d\x20\x6e\x6f\x6e\x65\x20\x2d\x2d'); for (var _0x7e88af = 0x0; _0x7e88af < this['\x77\x69\x6e\x73']['\x6c\x65\x6e\x67\x74\x68']; _0x7e88af++) this['\x73\x72\x63\x43\x6f\x6d\x62\x6f']['\x61\x64\x64\x49\x74\x65\x6d'](this['\x77\x69\x6e\x73'][_0x7e88af]['\x6d\x61\x69\x6e\x56\x69\x65\x77']['\x69\x64']); this['\x73\x72\x63\x43\x6f\x6d\x62\x6f']['\x6f\x6e\x49\x74\x65\x6d\x53\x65\x6c\x65\x63\x74\x65\x64'] = function (_0xe10b01) { _0x11b27a['\x70\x69\x63\x6b\x4d\x61\x73\x74\x65\x72'](_0xe10b01 - 0x1); }, this['\x6f\x73\x63\x52\x6f\x77'] = new HorizontalSizer(), this['\x6f\x73\x63\x52\x6f\x77']['\x73\x70\x61\x63\x69\x6e\x67'] = 0x6, this['\x6f\x73\x63\x52\x6f\x77']['\x61\x64\x64'](this['\x73\x72\x63\x4c\x62\x6c']), this['\x6f\x73\x63\x52\x6f\x77']['\x61\x64\x64'](this['\x73\x72\x63\x43\x6f\x6d\x62\x6f'], 0x1); function _0x5249a2(_0x26700c) { var _0x21c5d3 = new Label(_0x11b27a); _0x21c5d3['\x74\x65\x78\x74'] = _0x26700c, _0x21c5d3['\x6d\x69\x6e\x57\x69\x64\x74\x68'] = 0x28; var _0xae974f = new ComboBox(_0x11b27a); _0xae974f['\x61\x64\x64\x49\x74\x65\x6d']('\x2d\x2d\x20\x6e\x6f\x6e\x65\x20\x2d\x2d'); for (var _0x2f4f23 = 0x0; _0x2f4f23 < _0x11b27a['\x77\x69\x6e\x73']['\x6c\x65\x6e\x67\x74\x68']; _0x2f4f23++) _0xae974f['\x61\x64\x64\x49\x74\x65\x6d'](_0x11b27a['\x77\x69\x6e\x73'][_0x2f4f23]['\x6d\x61\x69\x6e\x56\x69\x65\x77']['\x69\x64']); var _0x2b81ac = new HorizontalSizer(); return _0x2b81ac['\x73\x70\x61\x63\x69\x6e\x67'] = 0x6, _0x2b81ac['\x61\x64\x64'](_0x21c5d3), _0x2b81ac['\x61\x64\x64'](_0xae974f, 0x1), { '\x72\x6f\x77': _0x2b81ac, '\x63\x6d\x62': _0xae974f }; } this['\x63\x68\x52'] = _0x5249a2('\x52\x3a'), this['\x63\x68\x47'] = _0x5249a2('\x47\x3a'), this['\x63\x68\x42'] = _0x5249a2('\x42\x3a'), this['\x63\x68\x4c'] = _0x5249a2('\x4c\x3a'), this['\x63\x68\x4c']['\x63\x6d\x62']['\x74\x6f\x6f\x6c\x54\x69\x70'] = '\x4f\x70\x74\x69\x6f\x6e\x61\x6c\x20\x6c\x75\x6d\x69\x6e\x61\x6e\x63\x65\x20\u2014\x20\x61\x70\x70\x6c\x69\x65\x64\x20\x61\x73\x20\x62\x72\x69\x67\x68\x74\x6e\x65\x73\x73\x2c\x20\x6b\x65\x65\x70\x69\x6e\x67\x20\x74\x68\x65\x20\x52\x2f\x47\x2f\x42\x20\x63\x6f\x6c\x6f\x75\x72\x2e', this['\x62\x74\x6e\x43\x6f\x6d\x62\x69\x6e\x65'] = new PushButton(this), this['\x62\x74\x6e\x43\x6f\x6d\x62\x69\x6e\x65']['\x74\x65\x78\x74'] = '\u26a1\x20\x43\x6f\x6d\x62\x69\x6e\x65\x20\x63\x68\x61\x6e\x6e\x65\x6c\x73', this['\x62\x74\x6e\x43\x6f\x6d\x62\x69\x6e\x65']['\x6f\x6e\x43\x6c\x69\x63\x6b'] = function () { _0x11b27a['\x63\x6f\x6d\x62\x69\x6e\x65\x43\x68\x61\x6e\x6e\x65\x6c\x73'](); }, this['\x6d\x6f\x6e\x6f\x42\x6f\x78'] = new VerticalSizer(), this['\x6d\x6f\x6e\x6f\x42\x6f\x78']['\x73\x70\x61\x63\x69\x6e\x67'] = 0x4, this['\x6d\x6f\x6e\x6f\x42\x6f\x78']['\x61\x64\x64'](this['\x63\x68\x52']['\x72\x6f\x77']), this['\x6d\x6f\x6e\x6f\x42\x6f\x78']['\x61\x64\x64'](this['\x63\x68\x47']['\x72\x6f\x77']), this['\x6d\x6f\x6e\x6f\x42\x6f\x78']['\x61\x64\x64'](this['\x63\x68\x42']['\x72\x6f\x77']), this['\x6d\x6f\x6e\x6f\x42\x6f\x78']['\x61\x64\x64'](this['\x63\x68\x4c']['\x72\x6f\x77']), this['\x6d\x6f\x6e\x6f\x42\x6f\x78']['\x61\x64\x64'](this['\x62\x74\x6e\x43\x6f\x6d\x62\x69\x6e\x65']), _0x568319['\x73\x69\x7a\x65\x72']['\x61\x64\x64'](this['\x6f\x73\x63\x52\x6f\x77']), _0x568319['\x73\x69\x7a\x65\x72']['\x61\x64\x64'](this['\x6d\x6f\x6e\x6f\x42\x6f\x78']); var _0x38873b = _0x4fd8fe('\x32\x20\u00b7\x20\x45\x71\x75\x61\x6c\x69\x73\x65\x20\x26\x20\x43\x61\x6c\x69\x62\x72\x61\x74\x65'); this['\x62\x74\x6e\x4c\x69\x6e\x46\x69\x74'] = new PushButton(this), this['\x62\x74\x6e\x4c\x69\x6e\x46\x69\x74']['\x74\x65\x78\x74'] = '\x4c\x69\x6e\x65\x61\x72\x20\x46\x69\x74\x20\x28\x65\x71\x75\x61\x6c\x69\x73\x65\x20\x63\x68\x61\x6e\x6e\x65\x6c\x73\x29', this['\x62\x74\x6e\x4c\x69\x6e\x46\x69\x74']['\x6f\x6e\x43\x6c\x69\x63\x6b'] = function () { _0x11b27a['\x64\x6f\x4c\x69\x6e\x65\x61\x72\x46\x69\x74'](); }, this['\x62\x74\x6e\x53\x50\x43\x43'] = new PushButton(this), this['\x62\x74\x6e\x53\x50\x43\x43']['\x74\x65\x78\x74'] = '\x53\x50\x43\x43\x20\u2014\x20\x63\x6f\x6c\x6f\x75\x72\x20\x63\x61\x6c\x69\x62\x72\x61\x74\x69\x6f\x6e', this['\x62\x74\x6e\x53\x50\x43\x43']['\x6f\x6e\x43\x6c\x69\x63\x6b'] = function () { _0x11b27a['\x64\x6f\x53\x50\x43\x43'](); }, _0x38873b['\x73\x69\x7a\x65\x72']['\x61\x64\x64'](this['\x62\x74\x6e\x4c\x69\x6e\x46\x69\x74']), _0x38873b['\x73\x69\x7a\x65\x72']['\x61\x64\x64'](this['\x62\x74\x6e\x53\x50\x43\x43']); var _0x33b9b3 = _0x4fd8fe('\x33\x20\u00b7\x20\x45\x78\x74\x72\x61\x63\x74\x20\x26\x20\x53\x74\x72\x65\x74\x63\x68\x20\x53\x74\x61\x72\x73'); this['\x62\x74\x6e\x53\x65\x70\x61\x72\x61\x74\x65'] = new PushButton(this), this['\x62\x74\x6e\x53\x65\x70\x61\x72\x61\x74\x65']['\x74\x65\x78\x74'] = '\u2605\x20\x53\x65\x70\x61\x72\x61\x74\x65\x20\x53\x74\x61\x72\x73\x20\u2192\x20\x53\x74\x61\x72\x73\x20\x6f\x6e\x6c\x79', this['\x62\x74\x6e\x53\x65\x70\x61\x72\x61\x74\x65']['\x6f\x6e\x43\x6c\x69\x63\x6b'] = function () { _0x11b27a['\x73\x65\x70\x61\x72\x61\x74\x65\x53\x74\x61\x72\x73'](); }, this['\x62\x74\x6e\x52\x6f\x75\x6e\x64'] = new PushButton(this), this['\x62\x74\x6e\x52\x6f\x75\x6e\x64']['\x74\x65\x78\x74'] = '\u25ef\x20\x52\x6f\x75\x6e\x64\x20\x73\x74\x61\x72\x73\x20\x28\x42\x6c\x75\x72\x58\x20\x63\x6f\x72\x72\x65\x63\x74\x2d\x6f\x6e\x6c\x79\x29', this['\x62\x74\x6e\x52\x6f\x75\x6e\x64']['\x74\x6f\x6f\x6c\x54\x69\x70'] = '\x4d\x61\x6b\x65\x20\x73\x6c\x69\x67\x68\x74\x6c\x79\x20\x65\x6c\x6f\x6e\x67\x61\x74\x65\x64\x20\x73\x74\x61\x72\x73\x20\x72\x6f\x75\x6e\x64\x20\x75\x73\x69\x6e\x67\x20\x42\x6c\x75\x72\x58\x54\x65\x72\x6d\x69\x6e\x61\x74\x6f\x72\x20\x69\x6e\x20\x63\x6f\x72\x72\x65\x63\x74\x2d\x6f\x6e\x6c\x79\x20\x6d\x6f\x64\x65\x20\x28\x42\x58\x54\x20\x6d\x75\x73\x74\x20\x62\x65\x20\x69\x6e\x73\x74\x61\x6c\x6c\x65\x64\x29\x2e', this['\x62\x74\x6e\x52\x6f\x75\x6e\x64']['\x65\x6e\x61\x62\x6c\x65\x64'] = ![], this['\x62\x74\x6e\x52\x6f\x75\x6e\x64']['\x6f\x6e\x43\x6c\x69\x63\x6b'] = function () { _0x11b27a['\x72\x6f\x75\x6e\x64\x53\x74\x61\x72\x73'](); }, this['\x62\x74\x6e\x41\x75\x74\x6f'] = new PushButton(this), this['\x62\x74\x6e\x41\x75\x74\x6f']['\x74\x65\x78\x74'] = '\u26a1\x20\x41\x75\x74\x6f\x2d\x73\x74\x72\x65\x74\x63\x68\x20\x66\x75\x6c\x6c\x20\x69\x6d\x61\x67\x65', this['\x62\x74\x6e\x41\x75\x74\x6f']['\x74\x6f\x6f\x6c\x54\x69\x70'] = '\x44\x65\x6c\x69\x6e\x65\x61\x72\x69\x73\x65\x20\x74\x68\x65\x20\x46\x55\x4c\x4c\x20\x69\x6d\x61\x67\x65\x20\x77\x69\x74\x68\x20\x4d\x75\x6c\x74\x69\x73\x63\x61\x6c\x65\x41\x64\x61\x70\x74\x69\x76\x65\x53\x74\x72\x65\x74\x63\x68\x20\x28\x6d\x75\x73\x74\x20\x62\x65\x20\x69\x6e\x73\x74\x61\x6c\x6c\x65\x64\x29\x2e\x20\x52\x75\x6e\x20\x61\x66\x74\x65\x72\x20\x53\x50\x43\x43\x2c\x20\x42\x45\x46\x4f\x52\x45\x20\x73\x65\x70\x61\x72\x61\x74\x69\x6e\x67\x20\x73\x74\x61\x72\x73\x2e', this['\x62\x74\x6e\x41\x75\x74\x6f']['\x65\x6e\x61\x62\x6c\x65\x64'] = ![], this['\x62\x74\x6e\x41\x75\x74\x6f']['\x6f\x6e\x43\x6c\x69\x63\x6b'] = function () { _0x11b27a['\x61\x75\x74\x6f\x53\x74\x72\x65\x74\x63\x68'](); }, this['\x73\x6c\x41\x6d\x6f\x75\x6e\x74'] = _0x2b9fd7('\x53\x74\x72\x65\x74\x63\x68\x20\x61\x6d\x6f\x75\x6e\x74', 0x0, 0x3c, 0xc, 0x0, function (_0x1c0d0e) { _0x11b27a['\x70']['\x61\x6d\x6f\x75\x6e\x74'] = _0x1c0d0e; }), this['\x73\x6c\x42\x6c\x61\x63\x6b'] = _0x2b9fd7('\x42\x6c\x61\x63\x6b\x70\x6f\x69\x6e\x74', 0x0, 0.2, 0x0, 0x3, function (_0x4e6f84) { _0x11b27a['\x70']['\x62\x6c\x61\x63\x6b\x70\x6f\x69\x6e\x74'] = _0x4e6f84; }), this['\x73\x6c\x43\x65\x6e\x74\x65\x72'] = _0x2b9fd7('\x43\x65\x6e\x74\x72\x65\x20\x70\x72\x6f\x74\x65\x63\x74\x20\x28\x6e\x6f\x20\x62\x75\x72\x6e\x29', 0x0, 0x1, 0.5, 0x2, function (_0x26f70d) { _0x11b27a['\x70']['\x63\x65\x6e\x74\x65\x72\x50\x72\x6f\x74\x65\x63\x74'] = _0x26f70d; }), this['\x73\x6c\x53\x61\x74'] = _0x2b9fd7('\x53\x61\x74\x75\x72\x61\x74\x69\x6f\x6e\x20\x28\x6d\x69\x64\x20\x3d\x20\x6e\x6f\x6e\x65\x29', 0x0, 0x2, 0x1, 0x2, function (_0x3e9a86) { _0x11b27a['\x70']['\x73\x61\x74\x75\x72\x61\x74\x69\x6f\x6e'] = _0x3e9a86; }), _0x33b9b3['\x73\x69\x7a\x65\x72']['\x61\x64\x64'](this['\x62\x74\x6e\x41\x75\x74\x6f']), _0x33b9b3['\x73\x69\x7a\x65\x72']['\x61\x64\x64'](this['\x62\x74\x6e\x53\x65\x70\x61\x72\x61\x74\x65']), _0x33b9b3['\x73\x69\x7a\x65\x72']['\x61\x64\x64'](this['\x62\x74\x6e\x52\x6f\x75\x6e\x64']), _0x33b9b3['\x73\x69\x7a\x65\x72']['\x61\x64\x64'](this['\x73\x6c\x41\x6d\x6f\x75\x6e\x74']['\x72\x6f\x77']), _0x33b9b3['\x73\x69\x7a\x65\x72']['\x61\x64\x64'](this['\x73\x6c\x42\x6c\x61\x63\x6b']['\x72\x6f\x77']), _0x33b9b3['\x73\x69\x7a\x65\x72']['\x61\x64\x64'](this['\x73\x6c\x43\x65\x6e\x74\x65\x72']['\x72\x6f\x77']), _0x33b9b3['\x73\x69\x7a\x65\x72']['\x61\x64\x64'](this['\x73\x6c\x53\x61\x74']['\x72\x6f\x77']); var _0x42172d = _0x4fd8fe('\x34\x20\u00b7\x20\x4f\x75\x74\x70\x75\x74'); this['\x73\x74\x61\x74\x75\x73\x4c\x62\x6c'] = new Label(this), this['\x73\x74\x61\x74\x75\x73\x4c\x62\x6c']['\x74\x65\x78\x74'] = '\x53\x74\x61\x74\x75\x73\x3a\x20\x70\x69\x63\x6b\x20\x69\x6e\x70\x75\x74\x2e', this['\x62\x74\x6e\x41\x70\x70\x6c\x79'] = new PushButton(this), this['\x62\x74\x6e\x41\x70\x70\x6c\x79']['\x74\x65\x78\x74'] = '\u2714\x20\x41\x70\x70\x6c\x79\x20\x26\x20\x43\x6f\x6e\x74\x69\x6e\x75\x65', this['\x62\x74\x6e\x41\x70\x70\x6c\x79']['\x74\x6f\x6f\x6c\x54\x69\x70'] = '\x42\x61\x6b\x65\x20\x74\x68\x65\x20\x63\x75\x72\x72\x65\x6e\x74\x20\x73\x74\x72\x65\x74\x63\x68\x20\x69\x6e\x74\x6f\x20\x74\x68\x65\x20\x73\x74\x61\x72\x73\x20\x61\x6e\x64\x20\x72\x65\x73\x65\x74\x20\x74\x68\x65\x20\x73\x6c\x69\x64\x65\x72\x73\x20\x73\x6f\x20\x79\x6f\x75\x20\x63\x61\x6e\x20\x6b\x65\x65\x70\x20\x73\x74\x72\x65\x74\x63\x68\x69\x6e\x67\x2e', this['\x62\x74\x6e\x41\x70\x70\x6c\x79']['\x65\x6e\x61\x62\x6c\x65\x64'] = ![], this['\x62\x74\x6e\x41\x70\x70\x6c\x79']['\x6f\x6e\x43\x6c\x69\x63\x6b'] = function () { _0x11b27a['\x61\x70\x70\x6c\x79\x43\x6f\x6e\x74\x69\x6e\x75\x65'](); }, this['\x62\x74\x6e\x42\x61\x63\x6b'] = new PushButton(this), this['\x62\x74\x6e\x42\x61\x63\x6b']['\x74\x65\x78\x74'] = '\u21b6\x20\x42\x61\x63\x6b', this['\x62\x74\x6e\x42\x61\x63\x6b']['\x65\x6e\x61\x62\x6c\x65\x64'] = ![], this['\x62\x74\x6e\x42\x61\x63\x6b']['\x74\x6f\x6f\x6c\x54\x69\x70'] = '\x52\x65\x76\x65\x72\x74\x20\x61\x6c\x6c\x20\x61\x64\x6a\x75\x73\x74\x6d\x65\x6e\x74\x73\x20\x73\x69\x6e\x63\x65\x20\x74\x68\x65\x20\x6c\x61\x73\x74\x20\x41\x70\x70\x6c\x79\x20\x26\x20\x43\x6f\x6e\x74\x69\x6e\x75\x65\x2e\x20\x43\x6c\x69\x63\x6b\x20\x61\x67\x61\x69\x6e\x20\x74\x6f\x20\x75\x6e\x64\x6f\x20\x74\x68\x65\x20\x41\x70\x70\x6c\x79\x2e', this['\x62\x74\x6e\x42\x61\x63\x6b']['\x6f\x6e\x43\x6c\x69\x63\x6b'] = function () { _0x11b27a['\x73\x74\x65\x70\x42\x61\x63\x6b'](); }, this['\x62\x74\x6e\x42\x41'] = new PushButton(this), this['\x62\x74\x6e\x42\x41']['\x74\x65\x78\x74'] = '\u21c4\x20\x42\x65\x66\x6f\x72\x65\x2f\x41\x66\x74\x65\x72', this['\x62\x74\x6e\x42\x41']['\x65\x6e\x61\x62\x6c\x65\x64'] = ![], this['\x62\x74\x6e\x42\x41']['\x6f\x6e\x43\x6c\x69\x63\x6b'] = function () { _0x11b27a['\x74\x6f\x67\x67\x6c\x65\x42\x65\x66\x6f\x72\x65\x41\x66\x74\x65\x72'](); }, this['\x62\x74\x6e\x43\x72\x65\x61\x74\x65'] = new PushButton(this), this['\x62\x74\x6e\x43\x72\x65\x61\x74\x65']['\x74\x65\x78\x74'] = '\u2705\x20\x43\x72\x65\x61\x74\x65\x20\x73\x74\x72\x65\x74\x63\x68\x65\x64\x2d\x73\x74\x61\x72\x73\x20\x69\x6d\x61\x67\x65', this['\x62\x74\x6e\x43\x72\x65\x61\x74\x65']['\x6f\x6e\x43\x6c\x69\x63\x6b'] = function () { _0x11b27a['\x63\x72\x65\x61\x74\x65\x53\x74\x61\x72\x73'](); }; var _0x1d0701 = new HorizontalSizer(); _0x1d0701['\x73\x70\x61\x63\x69\x6e\x67'] = 0x6, _0x1d0701['\x61\x64\x64'](this['\x62\x74\x6e\x41\x70\x70\x6c\x79'], 0x1), _0x1d0701['\x61\x64\x64'](this['\x62\x74\x6e\x42\x61\x63\x6b']), _0x1d0701['\x61\x64\x64'](this['\x62\x74\x6e\x42\x41']), _0x42172d['\x73\x69\x7a\x65\x72']['\x61\x64\x64'](this['\x73\x74\x61\x74\x75\x73\x4c\x62\x6c']), _0x42172d['\x73\x69\x7a\x65\x72']['\x61\x64\x64'](_0x1d0701), _0x42172d['\x73\x69\x7a\x65\x72']['\x61\x64\x64'](this['\x62\x74\x6e\x43\x72\x65\x61\x74\x65']); var _0x2e875f = new Label(this); _0x2e875f['\x74\x65\x78\x74'] = '\x52\x65\x73\x3a', this['\x72\x65\x73\x43\x6f\x6d\x62\x6f'] = new ComboBox(this), this['\x72\x65\x73\x43\x6f\x6d\x62\x6f']['\x61\x64\x64\x49\x74\x65\x6d']('\x4c\x6f\x77\x20\x28\x33\x30\x25\x29'), this['\x72\x65\x73\x43\x6f\x6d\x62\x6f']['\x61\x64\x64\x49\x74\x65\x6d']('\x4d\x69\x64\x20\x28\x35\x30\x25\x29'), this['\x72\x65\x73\x43\x6f\x6d\x62\x6f']['\x61\x64\x64\x49\x74\x65\x6d']('\x46\x75\x6c\x6c\x20\x28\x31\x30\x30\x25\x29'), this['\x72\x65\x73\x43\x6f\x6d\x62\x6f']['\x63\x75\x72\x72\x65\x6e\x74\x49\x74\x65\x6d'] = 0x0, this['\x72\x65\x73\x43\x6f\x6d\x62\x6f']['\x6f\x6e\x49\x74\x65\x6d\x53\x65\x6c\x65\x63\x74\x65\x64'] = function (_0xd68b0c) { _0x11b27a['\x70\x72\x65\x76\x69\x65\x77\x53\x63\x61\x6c\x65'] = [ 0.3, 0.5, 0x1 ][_0xd68b0c], _0x11b27a['\x64\x6f\x52\x65\x66\x72\x65\x73\x68'](); }; var _0x598a9e = new PushButton(this); _0x598a9e['\x74\x65\x78\x74'] = '\x55\x70\x64\x61\x74\x65\x20\x50\x72\x65\x76\x69\x65\x77', _0x598a9e['\x6f\x6e\x43\x6c\x69\x63\x6b'] = function () { _0x11b27a['\x64\x6f\x52\x65\x66\x72\x65\x73\x68'](); }, this['\x62\x74\x6e\x5a\x6f\x6f\x6d\x52\x65\x73\x65\x74'] = new PushButton(this), this['\x62\x74\x6e\x5a\x6f\x6f\x6d\x52\x65\x73\x65\x74']['\x74\x65\x78\x74'] = '\x52\x65\x73\x65\x74\x20\x5a\x6f\x6f\x6d', this['\x62\x74\x6e\x5a\x6f\x6f\x6d\x52\x65\x73\x65\x74']['\x65\x6e\x61\x62\x6c\x65\x64'] = ![], this['\x62\x74\x6e\x5a\x6f\x6f\x6d\x52\x65\x73\x65\x74']['\x6f\x6e\x43\x6c\x69\x63\x6b'] = function () { _0x11b27a['\x7a\x6f\x6f\x6d\x4d\x6f\x64\x65'] = ![], _0x11b27a['\x62\x74\x6e\x5a\x6f\x6f\x6d\x52\x65\x73\x65\x74']['\x65\x6e\x61\x62\x6c\x65\x64'] = ![], _0x11b27a['\x72\x65\x6e\x64\x65\x72\x50\x72\x65\x76\x69\x65\x77'](); }; var _0x46b469 = new HorizontalSizer(); _0x46b469['\x73\x70\x61\x63\x69\x6e\x67'] = 0x6, _0x46b469['\x61\x64\x64'](_0x2e875f), _0x46b469['\x61\x64\x64'](this['\x72\x65\x73\x43\x6f\x6d\x62\x6f']), _0x46b469['\x61\x64\x64\x53\x70\x61\x63\x69\x6e\x67'](0x8), _0x46b469['\x61\x64\x64'](_0x598a9e), _0x46b469['\x61\x64\x64\x53\x74\x72\x65\x74\x63\x68'](), _0x46b469['\x61\x64\x64'](this['\x62\x74\x6e\x5a\x6f\x6f\x6d\x52\x65\x73\x65\x74']), this['\x62\x74\x6e\x4c\x69\x63\x65\x6e\x73\x65'] = new PushButton(this), this['\x62\x74\x6e\x4c\x69\x63\x65\x6e\x73\x65']['\x74\x65\x78\x74'] = '\ud83d\udd11\x20\x4c\x69\x63\x65\x6e\x73\x65', this['\x62\x74\x6e\x4c\x69\x63\x65\x6e\x73\x65']['\x6f\x6e\x43\x6c\x69\x63\x6b'] = function () { licShowActivationDialog(); }, this['\x62\x74\x6e\x55\x70\x64\x61\x74\x65'] = new PushButton(this), this['\x62\x74\x6e\x55\x70\x64\x61\x74\x65']['\x74\x65\x78\x74'] = '\x43\x68\x65\x63\x6b\x20\x66\x6f\x72\x20\x75\x70\x64\x61\x74\x65\x73', this['\x62\x74\x6e\x55\x70\x64\x61\x74\x65']['\x6f\x6e\x43\x6c\x69\x63\x6b'] = function () { amxCheckUpdate('\x41\x73\x74\x72\x6f\x4d\x61\x78\x20\x53\x74\x61\x72\x53\x74\x72\x65\x74\x63\x68', '\x41\x73\x74\x72\x6f\x48\x6f\x70\x70\x65\x72\x35\x33\x2f\x41\x73\x74\x72\x6f\x4d\x61\x78\x53\x74\x61\x72\x53\x74\x72\x65\x74\x63\x68', ASS_VERSION); }, this['\x62\x74\x6e\x43\x6c\x6f\x73\x65'] = new PushButton(this), this['\x62\x74\x6e\x43\x6c\x6f\x73\x65']['\x74\x65\x78\x74'] = '\x43\x6c\x6f\x73\x65', this['\x62\x74\x6e\x43\x6c\x6f\x73\x65']['\x6f\x6e\x43\x6c\x69\x63\x6b'] = function () { closeAllWins(), _0x11b27a['\x63\x61\x6e\x63\x65\x6c'](); }; var _0x1723f4 = new HorizontalSizer(); _0x1723f4['\x73\x70\x61\x63\x69\x6e\x67'] = 0x6, _0x1723f4['\x61\x64\x64'](this['\x62\x74\x6e\x4c\x69\x63\x65\x6e\x73\x65']), _0x1723f4['\x61\x64\x64'](this['\x62\x74\x6e\x55\x70\x64\x61\x74\x65']), _0x1723f4['\x61\x64\x64\x53\x74\x72\x65\x74\x63\x68'](), _0x1723f4['\x61\x64\x64'](this['\x62\x74\x6e\x43\x6c\x6f\x73\x65']); var _0x448721 = new VerticalSizer(); _0x448721['\x73\x70\x61\x63\x69\x6e\x67'] = 0x6, _0x448721['\x6d\x61\x72\x67\x69\x6e'] = 0x4, _0x448721['\x61\x64\x64'](_0x5983d5), _0x448721['\x61\x64\x64'](_0x568319), _0x448721['\x61\x64\x64'](_0x38873b), _0x448721['\x61\x64\x64'](_0x33b9b3), _0x448721['\x61\x64\x64'](_0x42172d), _0x448721['\x61\x64\x64\x53\x74\x72\x65\x74\x63\x68'](), _0x448721['\x61\x64\x64'](_0x1723f4); var _0x103f69 = new VerticalSizer(); _0x103f69['\x73\x70\x61\x63\x69\x6e\x67'] = 0x6, _0x103f69['\x61\x64\x64'](this['\x63\x61\x6e\x76\x61\x73'], 0x64), _0x103f69['\x61\x64\x64'](_0x46b469); var _0x4ccae5 = new HorizontalSizer(); _0x4ccae5['\x73\x70\x61\x63\x69\x6e\x67'] = 0x8, _0x4ccae5['\x61\x64\x64'](_0x103f69, 0x64), _0x4ccae5['\x61\x64\x64'](_0x448721, 0x0), this['\x73\x69\x7a\x65\x72'] = new VerticalSizer(), this['\x73\x69\x7a\x65\x72']['\x6d\x61\x72\x67\x69\x6e'] = 0x8, this['\x73\x69\x7a\x65\x72']['\x61\x64\x64'](_0x4ccae5), this['\x75\x73\x65\x72\x52\x65\x73\x69\x7a\x61\x62\x6c\x65'] = !![], this['\x61\x64\x6a\x75\x73\x74\x54\x6f\x43\x6f\x6e\x74\x65\x6e\x74\x73'](), this['\x75\x70\x64\x61\x74\x65\x4d\x6f\x64\x65\x55\x49'](); } ['\x75\x70\x64\x61\x74\x65\x4d\x6f\x64\x65\x55\x49']() { var _0x4b9ed0 = this['\x6d\x6f\x64\x65'] === '\x6f\x73\x63'; this['\x73\x72\x63\x4c\x62\x6c']['\x76\x69\x73\x69\x62\x6c\x65'] = _0x4b9ed0, this['\x73\x72\x63\x43\x6f\x6d\x62\x6f']['\x76\x69\x73\x69\x62\x6c\x65'] = _0x4b9ed0, this['\x6f\x73\x63\x52\x6f\x77']['\x76\x69\x73\x69\x62\x6c\x65'] = _0x4b9ed0, this['\x63\x68\x52']['\x72\x6f\x77']['\x76\x69\x73\x69\x62\x6c\x65'] = !_0x4b9ed0, this['\x63\x68\x47']['\x72\x6f\x77']['\x76\x69\x73\x69\x62\x6c\x65'] = !_0x4b9ed0, this['\x63\x68\x42']['\x72\x6f\x77']['\x76\x69\x73\x69\x62\x6c\x65'] = !_0x4b9ed0, this['\x63\x68\x4c']['\x72\x6f\x77']['\x76\x69\x73\x69\x62\x6c\x65'] = !_0x4b9ed0, this['\x62\x74\x6e\x43\x6f\x6d\x62\x69\x6e\x65']['\x76\x69\x73\x69\x62\x6c\x65'] = !_0x4b9ed0; try { this['\x61\x64\x6a\x75\x73\x74\x54\x6f\x43\x6f\x6e\x74\x65\x6e\x74\x73'](); } catch (_0x8bc7e9) { } } ['\x73\x65\x74\x53\x74\x61\x74\x75\x73'](_0x3b8903) { this['\x73\x74\x61\x74\x75\x73\x4c\x62\x6c']['\x74\x65\x78\x74'] = '\x53\x74\x61\x74\x75\x73\x3a\x20' + _0x3b8903; } ['\x6d\x61\x6b\x65\x57\x6f\x72\x6b\x57\x69\x6e'](_0xd7b9bb, _0x570eff) { if (this['\x77\x6f\x72\x6b\x57\x69\x6e'] && !this['\x77\x6f\x72\x6b\x57\x69\x6e']['\x69\x73\x4e\x75\x6c\x6c']) this['\x77\x6f\x72\x6b\x57\x69\x6e']['\x66\x6f\x72\x63\x65\x43\x6c\x6f\x73\x65'](); var _0x46a838 = new ImageWindow(_0xd7b9bb['\x77\x69\x64\x74\x68'], _0xd7b9bb['\x68\x65\x69\x67\x68\x74'], _0xd7b9bb['\x6e\x75\x6d\x62\x65\x72\x4f\x66\x43\x68\x61\x6e\x6e\x65\x6c\x73'], 0x20, !![], _0xd7b9bb['\x6e\x75\x6d\x62\x65\x72\x4f\x66\x43\x68\x61\x6e\x6e\x65\x6c\x73'] >= 0x3, '\x41\x73\x74\x72\x6f\x4d\x61\x78\x53\x74\x61\x72\x53\x74\x72\x65\x74\x63\x68\x5f\x77\x6f\x72\x6b'); _0x46a838['\x6d\x61\x69\x6e\x56\x69\x65\x77']['\x62\x65\x67\x69\x6e\x50\x72\x6f\x63\x65\x73\x73'](0x0), _0x46a838['\x6d\x61\x69\x6e\x56\x69\x65\x77']['\x69\x6d\x61\x67\x65']['\x61\x73\x73\x69\x67\x6e'](_0xd7b9bb), _0x46a838['\x6d\x61\x69\x6e\x56\x69\x65\x77']['\x65\x6e\x64\x50\x72\x6f\x63\x65\x73\x73'](); var _0x4aab4a = ![]; if (_0x570eff && !_0x570eff['\x69\x73\x4e\x75\x6c\x6c']) { try { _0x46a838['\x6b\x65\x79\x77\x6f\x72\x64\x73'] = _0x570eff['\x6b\x65\x79\x77\x6f\x72\x64\x73']; } catch (_0x10e72e) { } try { _0x46a838['\x63\x6f\x70\x79\x41\x73\x74\x72\x6f\x6d\x65\x74\x72\x69\x63\x53\x6f\x6c\x75\x74\x69\x6f\x6e'](_0x570eff), _0x4aab4a = !![]; } catch (_0x33d908) { try { _0x570eff['\x61\x73\x74\x72\x6f\x6d\x65\x74\x72\x69\x63\x53\x6f\x6c\x75\x74\x69\x6f\x6e'] && (_0x46a838['\x61\x73\x74\x72\x6f\x6d\x65\x74\x72\x69\x63\x53\x6f\x6c\x75\x74\x69\x6f\x6e'] = _0x570eff['\x61\x73\x74\x72\x6f\x6d\x65\x74\x72\x69\x63\x53\x6f\x6c\x75\x74\x69\x6f\x6e'], _0x4aab4a = !![]); } catch (_0x52911a) { } } } _0x46a838['\x73\x68\x6f\x77'](), this['\x77\x6f\x72\x6b\x57\x69\x6e'] = _0x46a838, this['\x73\x74\x61\x72\x73\x49\x6d\x67'] = null, this['\x73\x74\x61\x67\x65\x53\x74\x61\x72\x73'] = ![], this['\x77\x6f\x72\x6b\x53\x74\x72\x65\x74\x63\x68\x65\x64'] = ![]; if (this['\x62\x74\x6e\x41\x75\x74\x6f']) this['\x62\x74\x6e\x41\x75\x74\x6f']['\x65\x6e\x61\x62\x6c\x65\x64'] = !![]; if (this['\x62\x74\x6e\x41\x70\x70\x6c\x79']) this['\x62\x74\x6e\x41\x70\x70\x6c\x79']['\x65\x6e\x61\x62\x6c\x65\x64'] = ![]; if (this['\x62\x74\x6e\x52\x6f\x75\x6e\x64']) this['\x62\x74\x6e\x52\x6f\x75\x6e\x64']['\x65\x6e\x61\x62\x6c\x65\x64'] = ![]; return _0x4aab4a; } ['\x70\x69\x63\x6b\x4d\x61\x73\x74\x65\x72'](_0x50e830) { if (_0x50e830 < 0x0 || _0x50e830 >= this['\x77\x69\x6e\x73']['\x6c\x65\x6e\x67\x74\x68']) return; var _0x139878 = this['\x77\x69\x6e\x73'][_0x50e830], _0x431bd6 = isSolved(_0x139878), _0x2d2cb7 = this['\x6d\x61\x6b\x65\x57\x6f\x72\x6b\x57\x69\x6e'](cloneImg(_0x139878['\x6d\x61\x69\x6e\x56\x69\x65\x77']['\x69\x6d\x61\x67\x65']), _0x139878); if (_0x431bd6) this['\x73\x65\x74\x53\x74\x61\x74\x75\x73'](_0x2d2cb7 ? '\x6d\x61\x73\x74\x65\x72\x20\x6c\x6f\x61\x64\x65\x64\x20\x28\x73\x6f\x6c\x75\x74\x69\x6f\x6e\x20\x63\x6f\x70\x69\x65\x64\x29\x20\u2014\x20\x53\x50\x43\x43\x20\x72\x65\x61\x64\x79\x2e' : '\x6d\x61\x73\x74\x65\x72\x20\x6c\x6f\x61\x64\x65\x64\x20\u2014\x20\x73\x6f\x6c\x75\x74\x69\x6f\x6e\x20\x63\x6f\x70\x79\x20\x75\x6e\x63\x65\x72\x74\x61\x69\x6e\x3b\x20\x53\x50\x43\x43\x20\x6d\x61\x79\x20\x6e\x65\x65\x64\x20\x72\x65\x2d\x73\x6f\x6c\x76\x65\x2e'); else this['\x73\x65\x74\x53\x74\x61\x74\x75\x73']('\x6d\x61\x73\x74\x65\x72\x20\x6c\x6f\x61\x64\x65\x64\x20\u2014\x20\x4c\x69\x6e\x65\x61\x72\x20\x46\x69\x74\x20\x2f\x20\x50\x6c\x61\x74\x65\x20\x53\x6f\x6c\x76\x65\x20\x2f\x20\x53\x50\x43\x43\x2c\x20\x74\x68\x65\x6e\x20\x53\x65\x70\x61\x72\x61\x74\x65\x20\x53\x74\x61\x72\x73\x2e'); this['\x64\x6f\x52\x65\x66\x72\x65\x73\x68'](); } ['\x63\x6f\x6d\x62\x69\x6e\x65\x43\x68\x61\x6e\x6e\x65\x6c\x73']() { var _0x4ac0ff = this['\x63\x68\x52']['\x63\x6d\x62']['\x63\x75\x72\x72\x65\x6e\x74\x49\x74\x65\x6d'] - 0x1, _0x3512c8 = this['\x63\x68\x47']['\x63\x6d\x62']['\x63\x75\x72\x72\x65\x6e\x74\x49\x74\x65\x6d'] - 0x1, _0x38e425 = this['\x63\x68\x42']['\x63\x6d\x62']['\x63\x75\x72\x72\x65\x6e\x74\x49\x74\x65\x6d'] - 0x1, _0x973e9 = this['\x63\x68\x4c']['\x63\x6d\x62']['\x63\x75\x72\x72\x65\x6e\x74\x49\x74\x65\x6d'] - 0x1, _0x728eb = _0x4ac0ff >= 0x0 ? this['\x77\x69\x6e\x73'][_0x4ac0ff]['\x6d\x61\x69\x6e\x56\x69\x65\x77']['\x69\x6d\x61\x67\x65'] : null, _0x3f6b57 = _0x3512c8 >= 0x0 ? this['\x77\x69\x6e\x73'][_0x3512c8]['\x6d\x61\x69\x6e\x56\x69\x65\x77']['\x69\x6d\x61\x67\x65'] : null, _0x4e1560 = _0x38e425 >= 0x0 ? this['\x77\x69\x6e\x73'][_0x38e425]['\x6d\x61\x69\x6e\x56\x69\x65\x77']['\x69\x6d\x61\x67\x65'] : null, _0x506a38 = _0x973e9 >= 0x0 ? this['\x77\x69\x6e\x73'][_0x973e9]['\x6d\x61\x69\x6e\x56\x69\x65\x77']['\x69\x6d\x61\x67\x65'] : null; if (!_0x728eb && !_0x3f6b57 && !_0x4e1560) { new MessageBox('\x53\x65\x6c\x65\x63\x74\x20\x61\x74\x20\x6c\x65\x61\x73\x74\x20\x52\x2f\x47\x2f\x42\x20\x63\x68\x61\x6e\x6e\x65\x6c\x73\x2e', '\x41\x73\x74\x72\x6f\x4d\x61\x78\x53\x74\x61\x72\x53\x74\x72\x65\x74\x63\x68')['\x65\x78\x65\x63\x75\x74\x65'](); return; } var _0x3d4bd0 = combineRGB(_0x728eb, _0x3f6b57, _0x4e1560, _0x506a38), _0x23a05d = null, _0x7c57e8 = [ _0x4ac0ff, _0x3512c8, _0x38e425 ]; for (var _0x572975 = 0x0; _0x572975 < _0x7c57e8['\x6c\x65\x6e\x67\x74\x68']; _0x572975++) { if (_0x7c57e8[_0x572975] >= 0x0) { var _0x103a05 = this['\x77\x69\x6e\x73'][_0x7c57e8[_0x572975]]; if (_0x103a05 && !_0x103a05['\x69\x73\x4e\x75\x6c\x6c'] && isSolved(_0x103a05)) { _0x23a05d = _0x103a05; break; } } } if (!_0x23a05d) for (var _0x58af41 = 0x0; _0x58af41 < _0x7c57e8['\x6c\x65\x6e\x67\x74\x68']; _0x58af41++) { if (_0x7c57e8[_0x58af41] >= 0x0) { _0x23a05d = this['\x77\x69\x6e\x73'][_0x7c57e8[_0x58af41]]; break; } } this['\x6d\x61\x6b\x65\x57\x6f\x72\x6b\x57\x69\x6e'](_0x3d4bd0, _0x23a05d), this['\x73\x65\x74\x53\x74\x61\x74\x75\x73'](isSolved(this['\x77\x6f\x72\x6b\x57\x69\x6e']) ? '\x63\x68\x61\x6e\x6e\x65\x6c\x73\x20\x63\x6f\x6d\x62\x69\x6e\x65\x64\x20\x28\x73\x6f\x6c\x75\x74\x69\x6f\x6e\x20\x63\x6f\x70\x69\x65\x64\x29\x20\u2014\x20\x53\x50\x43\x43\x20\x2f\x20\x53\x65\x70\x61\x72\x61\x74\x65\x20\x53\x74\x61\x72\x73\x2e' : '\x63\x68\x61\x6e\x6e\x65\x6c\x73\x20\x63\x6f\x6d\x62\x69\x6e\x65\x64\x20\u2014\x20\x73\x6f\x6c\x76\x65\x20\x61\x20\x63\x68\x61\x6e\x6e\x65\x6c\x20\x66\x6f\x72\x20\x53\x50\x43\x43\x2c\x20\x6f\x72\x20\x53\x65\x70\x61\x72\x61\x74\x65\x20\x53\x74\x61\x72\x73\x2e'), this['\x64\x6f\x52\x65\x66\x72\x65\x73\x68'](); } ['\x64\x6f\x4c\x69\x6e\x65\x61\x72\x46\x69\x74']() { if (!this['\x77\x6f\x72\x6b\x57\x69\x6e']) { new MessageBox('\x4c\x6f\x61\x64\x20\x61\x20\x6d\x61\x73\x74\x65\x72\x20\x2f\x20\x63\x6f\x6d\x62\x69\x6e\x65\x20\x63\x68\x61\x6e\x6e\x65\x6c\x73\x20\x66\x69\x72\x73\x74\x2e', '\x41\x73\x74\x72\x6f\x4d\x61\x78\x53\x74\x61\x72\x53\x74\x72\x65\x74\x63\x68')['\x65\x78\x65\x63\x75\x74\x65'](); return; } var _0x43e997 = cloneImg(this['\x77\x6f\x72\x6b\x57\x69\x6e']['\x6d\x61\x69\x6e\x56\x69\x65\x77']['\x69\x6d\x61\x67\x65']); linearFitEqualize(_0x43e997), this['\x77\x6f\x72\x6b\x57\x69\x6e']['\x6d\x61\x69\x6e\x56\x69\x65\x77']['\x62\x65\x67\x69\x6e\x50\x72\x6f\x63\x65\x73\x73'](0x0), this['\x77\x6f\x72\x6b\x57\x69\x6e']['\x6d\x61\x69\x6e\x56\x69\x65\x77']['\x69\x6d\x61\x67\x65']['\x61\x73\x73\x69\x67\x6e'](_0x43e997), this['\x77\x6f\x72\x6b\x57\x69\x6e']['\x6d\x61\x69\x6e\x56\x69\x65\x77']['\x65\x6e\x64\x50\x72\x6f\x63\x65\x73\x73'](), this['\x73\x65\x74\x53\x74\x61\x74\x75\x73']('\x4c\x69\x6e\x65\x61\x72\x20\x46\x69\x74\x20\x61\x70\x70\x6c\x69\x65\x64\x20\x28\x63\x68\x61\x6e\x6e\x65\x6c\x73\x20\x65\x71\x75\x61\x6c\x69\x73\x65\x64\x29\x2e'), this['\x64\x6f\x52\x65\x66\x72\x65\x73\x68'](); } ['\x64\x6f\x53\x50\x43\x43']() { if (!this['\x77\x6f\x72\x6b\x57\x69\x6e']) { new MessageBox('\x4c\x6f\x61\x64\x20\x61\x20\x6d\x61\x73\x74\x65\x72\x20\x2f\x20\x63\x6f\x6d\x62\x69\x6e\x65\x20\x63\x68\x61\x6e\x6e\x65\x6c\x73\x20\x66\x69\x72\x73\x74\x2e', '\x41\x73\x74\x72\x6f\x4d\x61\x78\x53\x74\x61\x72\x53\x74\x72\x65\x74\x63\x68')['\x65\x78\x65\x63\x75\x74\x65'](); return; } if (this['\x77\x6f\x72\x6b\x57\x69\x6e']['\x6d\x61\x69\x6e\x56\x69\x65\x77']['\x69\x6d\x61\x67\x65']['\x6e\x75\x6d\x62\x65\x72\x4f\x66\x43\x68\x61\x6e\x6e\x65\x6c\x73'] < 0x3) { new MessageBox('\x53\x50\x43\x43\x20\x6e\x65\x65\x64\x73\x20\x61\x6e\x20\x52\x47\x42\x20\x69\x6d\x61\x67\x65\x2e', '\x41\x73\x74\x72\x6f\x4d\x61\x78\x53\x74\x61\x72\x53\x74\x72\x65\x74\x63\x68')['\x65\x78\x65\x63\x75\x74\x65'](); return; } if (!isSolved(this['\x77\x6f\x72\x6b\x57\x69\x6e'])) { new MessageBox('\x54\x68\x69\x73\x20\x69\x6d\x61\x67\x65\x20\x68\x61\x73\x20\x6e\x6f\x20\x61\x73\x74\x72\x6f\x6d\x65\x74\x72\x69\x63\x20\x73\x6f\x6c\x75\x74\x69\x6f\x6e\x2c\x20\x73\x6f\x20\x53\x50\x43\x43\x20\x63\x61\x6e\x27\x74\x20\x72\x75\x6e\x2e\x0a\x0a' + '\x50\x6c\x61\x74\x65\x2d\x73\x6f\x6c\x76\x65\x20\x69\x74\x20\x66\x69\x72\x73\x74\x3a\x20\x53\x43\x52\x49\x50\x54\x20\u2192\x20\x49\x6d\x61\x67\x65\x20\x41\x6e\x61\x6c\x79\x73\x69\x73\x20\u2192\x20\x49\x6d\x61\x67\x65\x53\x6f\x6c\x76\x65\x72\x20\x6f\x6e\x20\x74\x68\x65\x20\x77\x69\x6e\x64\x6f\x77\x0a' + '\x27\x41\x73\x74\x72\x6f\x4d\x61\x78\x53\x74\x61\x72\x53\x74\x72\x65\x74\x63\x68\x5f\x77\x6f\x72\x6b\x27\x2c\x20\x74\x68\x65\x6e\x20\x63\x6c\x69\x63\x6b\x20\x53\x50\x43\x43\x20\x61\x67\x61\x69\x6e\x2e\x0a\x0a' + '\x28\x49\x66\x20\x79\x6f\x75\x20\x6c\x6f\x61\x64\x20\x61\x6e\x20\x61\x6c\x72\x65\x61\x64\x79\x2d\x73\x6f\x6c\x76\x65\x64\x20\x6d\x61\x73\x74\x65\x72\x2c\x20\x74\x68\x65\x20\x73\x6f\x6c\x75\x74\x69\x6f\x6e\x20\x69\x73\x20\x63\x6f\x70\x69\x65\x64\x20\x61\x75\x74\x6f\x6d\x61\x74\x69\x63\x61\x6c\x6c\x79\x2e\x29', '\x41\x73\x74\x72\x6f\x4d\x61\x78\x53\x74\x61\x72\x53\x74\x72\x65\x74\x63\x68\x20\u2014\x20\x53\x50\x43\x43')['\x65\x78\x65\x63\x75\x74\x65'](), this['\x73\x65\x74\x53\x74\x61\x74\x75\x73']('\x6e\x6f\x74\x20\x73\x6f\x6c\x76\x65\x64\x20\u2014\x20\x72\x75\x6e\x20\x49\x6d\x61\x67\x65\x53\x6f\x6c\x76\x65\x72\x2c\x20\x74\x68\x65\x6e\x20\x53\x50\x43\x43\x2e'); return; } try { Console['\x73\x68\x6f\x77'](), Console['\x77\x72\x69\x74\x65\x6c\x6e']('\x3c\x62\x3e\x53\x50\x43\x43\x20\u2014\x20\x73\x70\x65\x63\x74\x72\x6f\x70\x68\x6f\x74\x6f\x6d\x65\x74\x72\x69\x63\x20\x63\x6f\x6c\x6f\x75\x72\x20\x63\x61\x6c\x69\x62\x72\x61\x74\x69\x6f\x6e\u2026\x3c\x2f\x62\x3e'), processEvents(); var _0x126441 = new SpectrophotometricColorCalibration(); _0x126441['\x65\x78\x65\x63\x75\x74\x65\x4f\x6e'](this['\x77\x6f\x72\x6b\x57\x69\x6e']['\x6d\x61\x69\x6e\x56\x69\x65\x77']), this['\x73\x65\x74\x53\x74\x61\x74\x75\x73']('\x53\x50\x43\x43\x20\x64\x6f\x6e\x65\x20\u2014\x20\x53\x65\x70\x61\x72\x61\x74\x65\x20\x53\x74\x61\x72\x73\x20\x6e\x65\x78\x74\x2e'), Console['\x77\x72\x69\x74\x65\x6c\x6e']('\x20\x20\x20\u2705\x20\x53\x50\x43\x43\x20\x64\x6f\x6e\x65\x2e'), Console['\x68\x69\x64\x65'](); } catch (_0x2d2fd8) { Console['\x68\x69\x64\x65'](), new MessageBox('\x53\x50\x43\x43\x20\x66\x61\x69\x6c\x65\x64\x3a\x0a' + _0x2d2fd8 + '\x0a\x0a\x4d\x61\x6b\x65\x20\x73\x75\x72\x65\x20\x74\x68\x65\x20\x69\x6d\x61\x67\x65\x20\x69\x73\x20\x70\x6c\x61\x74\x65\x2d\x73\x6f\x6c\x76\x65\x64\x20\x61\x6e\x64\x20\x74\x68\x65\x20\x47\x61\x69\x61\x20\x64\x61\x74\x61\x62\x61\x73\x65\x20\x69\x73\x20\x63\x6f\x6e\x66\x69\x67\x75\x72\x65\x64\x20\x69\x6e\x20\x53\x50\x43\x43\x2e', '\x41\x73\x74\x72\x6f\x4d\x61\x78\x53\x74\x61\x72\x53\x74\x72\x65\x74\x63\x68')['\x65\x78\x65\x63\x75\x74\x65'](); } this['\x64\x6f\x52\x65\x66\x72\x65\x73\x68'](); } ['\x73\x65\x70\x61\x72\x61\x74\x65\x53\x74\x61\x72\x73']() { if (!this['\x77\x6f\x72\x6b\x57\x69\x6e']) { new MessageBox('\x4c\x6f\x61\x64\x20\x61\x20\x6d\x61\x73\x74\x65\x72\x20\x2f\x20\x63\x6f\x6d\x62\x69\x6e\x65\x20\x63\x68\x61\x6e\x6e\x65\x6c\x73\x20\x66\x69\x72\x73\x74\x2e', '\x41\x73\x74\x72\x6f\x4d\x61\x78\x53\x74\x61\x72\x53\x74\x72\x65\x74\x63\x68')['\x65\x78\x65\x63\x75\x74\x65'](); return; } try { var _0x46dca4 = new StarXTerminator(); } catch (_0x2727ee) { new MessageBox('\x53\x74\x61\x72\x58\x54\x65\x72\x6d\x69\x6e\x61\x74\x6f\x72\x20\x69\x73\x20\x6e\x6f\x74\x20\x69\x6e\x73\x74\x61\x6c\x6c\x65\x64\x2e', '\x41\x73\x74\x72\x6f\x4d\x61\x78\x53\x74\x61\x72\x53\x74\x72\x65\x74\x63\x68')['\x65\x78\x65\x63\x75\x74\x65'](); return; } Console['\x73\x68\x6f\x77'](), Console['\x77\x72\x69\x74\x65\x6c\x6e']('\x3c\x62\x3e\u2605\x20\x53\x65\x70\x61\x72\x61\x74\x69\x6e\x67\x20\x73\x74\x61\x72\x73\u2026\x3c\x2f\x62\x3e'), processEvents(); var _0x9467 = cloneImg(this['\x77\x6f\x72\x6b\x57\x69\x6e']['\x6d\x61\x69\x6e\x56\x69\x65\x77']['\x69\x6d\x61\x67\x65']), _0x26b315 = _0x9467['\x77\x69\x64\x74\x68'], _0x1af6bc = _0x9467['\x68\x65\x69\x67\x68\x74'], _0x37cc36 = _0x9467['\x6e\x75\x6d\x62\x65\x72\x4f\x66\x43\x68\x61\x6e\x6e\x65\x6c\x73'], _0x34c0bc = new ImageWindow(_0x26b315, _0x1af6bc, _0x37cc36, 0x20, !![], _0x37cc36 >= 0x3, '\x5f\x61\x73\x73\x5f\x73\x78\x74\x5f\x77\x6f\x72\x6b'); _0x34c0bc['\x6d\x61\x69\x6e\x56\x69\x65\x77']['\x62\x65\x67\x69\x6e\x50\x72\x6f\x63\x65\x73\x73'](0x0), _0x34c0bc['\x6d\x61\x69\x6e\x56\x69\x65\x77']['\x69\x6d\x61\x67\x65']['\x61\x73\x73\x69\x67\x6e'](_0x9467), _0x34c0bc['\x6d\x61\x69\x6e\x56\x69\x65\x77']['\x65\x6e\x64\x50\x72\x6f\x63\x65\x73\x73'](), _0x34c0bc['\x73\x68\x6f\x77'](); var _0x4a07b4 = cloneImg(_0x34c0bc['\x6d\x61\x69\x6e\x56\x69\x65\x77']['\x69\x6d\x61\x67\x65']), _0x3152cd = new StarXTerminator(), _0xf61cf0 = ![]; try { _0xf61cf0 = _0x3152cd['\x65\x78\x65\x63\x75\x74\x65\x4f\x6e'](_0x34c0bc['\x6d\x61\x69\x6e\x56\x69\x65\x77']); } catch (_0x4a7900) { _0xf61cf0 = ![]; } if (!_0xf61cf0) { _0x34c0bc['\x66\x6f\x72\x63\x65\x43\x6c\x6f\x73\x65'](), new MessageBox('\x53\x74\x61\x72\x58\x54\x65\x72\x6d\x69\x6e\x61\x74\x6f\x72\x20\x66\x61\x69\x6c\x65\x64\x2e', '\x41\x73\x74\x72\x6f\x4d\x61\x78\x53\x74\x61\x72\x53\x74\x72\x65\x74\x63\x68')['\x65\x78\x65\x63\x75\x74\x65'](), Console['\x68\x69\x64\x65'](); return; } var _0x3d6588 = cloneImg(_0x34c0bc['\x6d\x61\x69\x6e\x56\x69\x65\x77']['\x69\x6d\x61\x67\x65']); _0x34c0bc['\x66\x6f\x72\x63\x65\x43\x6c\x6f\x73\x65'](); var _0x3a8cfd = _0x26b315 * _0x1af6bc, _0x1289db = new Rect(0x0, 0x0, _0x26b315, _0x1af6bc), _0x45c6d3 = cloneImg(_0x4a07b4); for (var _0x27ed8c = 0x0; _0x27ed8c < _0x37cc36; _0x27ed8c++) { var _0xdbaa27 = new Float32Array(_0x3a8cfd), _0x4e7626 = new Float32Array(_0x3a8cfd); _0x4a07b4['\x67\x65\x74\x53\x61\x6d\x70\x6c\x65\x73'](_0xdbaa27, _0x1289db, _0x27ed8c), _0x3d6588['\x67\x65\x74\x53\x61\x6d\x70\x6c\x65\x73'](_0x4e7626, _0x1289db, _0x27ed8c); for (var _0x26e944 = 0x0; _0x26e944 < _0x3a8cfd; _0x26e944++) { var _0x28d47e = _0xdbaa27[_0x26e944] - _0x4e7626[_0x26e944]; _0xdbaa27[_0x26e944] = _0x28d47e > 0x0 ? _0x28d47e : 0x0; } _0x45c6d3['\x73\x65\x74\x53\x61\x6d\x70\x6c\x65\x73'](_0xdbaa27, _0x1289db, _0x27ed8c); } this['\x73\x74\x61\x72\x73\x49\x6d\x67'] = _0x45c6d3, this['\x73\x74\x61\x67\x65\x53\x74\x61\x72\x73'] = !![], this['\x70'] = ssZero(), this['\x62\x74\x6e\x41\x70\x70\x6c\x79']['\x65\x6e\x61\x62\x6c\x65\x64'] = !![], this['\x62\x74\x6e\x52\x6f\x75\x6e\x64']['\x65\x6e\x61\x62\x6c\x65\x64'] = !![], this['\x62\x74\x6e\x41\x75\x74\x6f']['\x65\x6e\x61\x62\x6c\x65\x64'] = ![], this['\x73\x65\x74\x53\x74\x61\x74\x75\x73']('\x73\x74\x61\x72\x73\x20\x65\x78\x74\x72\x61\x63\x74\x65\x64\x20\u2014\x20\x66\x69\x6e\x65\x2d\x74\x75\x6e\x65\x20\x77\x69\x74\x68\x20\x73\x6c\x69\x64\x65\x72\x73\x2c\x20\x41\x70\x70\x6c\x79\x20\x26\x20\x43\x6f\x6e\x74\x69\x6e\x75\x65\x2c\x20\x43\x72\x65\x61\x74\x65\x2e'), Console['\x77\x72\x69\x74\x65\x6c\x6e']('\x20\x20\x20\u2705\x20\x53\x74\x61\x72\x73\x20\x65\x78\x74\x72\x61\x63\x74\x65\x64\x2e'), Console['\x68\x69\x64\x65'](), this['\x73\x79\x6e\x63\x53\x6c\x69\x64\x65\x72\x73'](), this['\x63\x6c\x65\x61\x72\x48\x69\x73\x74\x6f\x72\x79'](), this['\x64\x6f\x52\x65\x66\x72\x65\x73\x68'](), this['\x73\x65\x74\x43\x6f\x6d\x70\x61\x72\x65\x42\x61\x73\x65\x6c\x69\x6e\x65'](); } ['\x72\x6f\x75\x6e\x64\x53\x74\x61\x72\x73']() { if (!this['\x73\x74\x61\x67\x65\x53\x74\x61\x72\x73'] || !this['\x73\x74\x61\x72\x73\x49\x6d\x67']) { new MessageBox('\x53\x65\x70\x61\x72\x61\x74\x65\x20\x73\x74\x61\x72\x73\x20\x66\x69\x72\x73\x74\x2e', '\x41\x73\x74\x72\x6f\x4d\x61\x78\x53\x74\x61\x72\x53\x74\x72\x65\x74\x63\x68')['\x65\x78\x65\x63\x75\x74\x65'](); return; } try { var _0xe89b3f = new BlurXTerminator(); } catch (_0xcff5cd) { new MessageBox('\x42\x6c\x75\x72\x58\x54\x65\x72\x6d\x69\x6e\x61\x74\x6f\x72\x20\x69\x73\x20\x6e\x6f\x74\x20\x69\x6e\x73\x74\x61\x6c\x6c\x65\x64\x2e', '\x41\x73\x74\x72\x6f\x4d\x61\x78\x53\x74\x61\x72\x53\x74\x72\x65\x74\x63\x68')['\x65\x78\x65\x63\x75\x74\x65'](); return; } Console['\x73\x68\x6f\x77'](), Console['\x77\x72\x69\x74\x65\x6c\x6e']('\x3c\x62\x3e\u25ef\x20\x52\x6f\x75\x6e\x64\x69\x6e\x67\x20\x73\x74\x61\x72\x73\x20\x28\x42\x6c\x75\x72\x58\x54\x65\x72\x6d\x69\x6e\x61\x74\x6f\x72\x20\x63\x6f\x72\x72\x65\x63\x74\x2d\x6f\x6e\x6c\x79\x29\u2026\x3c\x2f\x62\x3e'), processEvents(); var _0x96d4f3 = cloneImg(this['\x73\x74\x61\x72\x73\x49\x6d\x67']), _0x394fac = new ImageWindow(_0x96d4f3['\x77\x69\x64\x74\x68'], _0x96d4f3['\x68\x65\x69\x67\x68\x74'], _0x96d4f3['\x6e\x75\x6d\x62\x65\x72\x4f\x66\x43\x68\x61\x6e\x6e\x65\x6c\x73'], 0x20, !![], _0x96d4f3['\x6e\x75\x6d\x62\x65\x72\x4f\x66\x43\x68\x61\x6e\x6e\x65\x6c\x73'] >= 0x3, '\x5f\x61\x73\x73\x5f\x62\x78\x74'); _0x394fac['\x6d\x61\x69\x6e\x56\x69\x65\x77']['\x62\x65\x67\x69\x6e\x50\x72\x6f\x63\x65\x73\x73'](0x0), _0x394fac['\x6d\x61\x69\x6e\x56\x69\x65\x77']['\x69\x6d\x61\x67\x65']['\x61\x73\x73\x69\x67\x6e'](_0x96d4f3), _0x394fac['\x6d\x61\x69\x6e\x56\x69\x65\x77']['\x65\x6e\x64\x50\x72\x6f\x63\x65\x73\x73'](), _0x394fac['\x73\x68\x6f\x77'](); try { var _0x4c0456 = new BlurXTerminator(), _0x1a60c8 = '\x63\x6f\x72\x72\x65\x63\x74\x5f\x6f\x6e\x6c\x79' in _0x4c0456 ? '\x63\x6f\x72\x72\x65\x63\x74\x5f\x6f\x6e\x6c\x79' : '\x63\x6f\x72\x72\x65\x63\x74\x4f\x6e\x6c\x79' in _0x4c0456 ? '\x63\x6f\x72\x72\x65\x63\x74\x4f\x6e\x6c\x79' : null; if (_0x1a60c8 === null) { _0x394fac['\x66\x6f\x72\x63\x65\x43\x6c\x6f\x73\x65'](), Console['\x68\x69\x64\x65'](), new MessageBox('\x43\x6f\x75\x6c\x64\x20\x6e\x6f\x74\x20\x66\x69\x6e\x64\x20\x42\x6c\x75\x72\x58\x54\x65\x72\x6d\x69\x6e\x61\x74\x6f\x72\x27\x73\x20\x27\x43\x6f\x72\x72\x65\x63\x74\x20\x4f\x6e\x6c\x79\x27\x20\x70\x61\x72\x61\x6d\x65\x74\x65\x72\x20\x69\x6e\x20\x74\x68\x69\x73\x20\x76\x65\x72\x73\x69\x6f\x6e\x2e\x0a\x0a' + '\x52\x75\x6e\x20\x42\x6c\x75\x72\x58\x54\x65\x72\x6d\x69\x6e\x61\x74\x6f\x72\x20\x4d\x41\x4e\x55\x41\x4c\x4c\x59\x20\x77\x69\x74\x68\x20\x27\x43\x6f\x72\x72\x65\x63\x74\x20\x4f\x6e\x6c\x79\x27\x20\x63\x68\x65\x63\x6b\x65\x64\x20\x6f\x6e\x20\x74\x68\x65\x20\x73\x74\x61\x72\x73\x20\x77\x69\x6e\x64\x6f\x77\x2c\x20\x74\x68\x65\x6e\x20\x63\x6f\x6e\x74\x69\x6e\x75\x65\x2e\x0a' + '\x28\x4e\x6f\x74\x20\x72\x75\x6e\x6e\x69\x6e\x67\x20\x69\x74\x20\x61\x75\x74\x6f\x6d\x61\x74\x69\x63\x61\x6c\x6c\x79\x20\x74\x6f\x20\x61\x76\x6f\x69\x64\x20\x73\x68\x61\x72\x70\x65\x6e\x69\x6e\x67\x20\x61\x72\x74\x65\x66\x61\x63\x74\x73\x2e\x29', '\x41\x73\x74\x72\x6f\x4d\x61\x78\x53\x74\x61\x72\x53\x74\x72\x65\x74\x63\x68')['\x65\x78\x65\x63\x75\x74\x65'](); return; } _0x4c0456[_0x1a60c8] = !![], Console['\x77\x72\x69\x74\x65\x6c\x6e']('\x20\x20\x20\x55\x73\x69\x6e\x67\x20' + _0x1a60c8 + '\x3d\x74\x72\x75\x65\x20\x28\x43\x6f\x72\x72\x65\x63\x74\x20\x4f\x6e\x6c\x79\x29\x2e'), _0x4c0456['\x65\x78\x65\x63\x75\x74\x65\x4f\x6e'](_0x394fac['\x6d\x61\x69\x6e\x56\x69\x65\x77']), this['\x73\x74\x61\x72\x73\x49\x6d\x67'] = cloneImg(_0x394fac['\x6d\x61\x69\x6e\x56\x69\x65\x77']['\x69\x6d\x61\x67\x65']), this['\x73\x65\x74\x53\x74\x61\x74\x75\x73']('\x73\x74\x61\x72\x73\x20\x72\x6f\x75\x6e\x64\x65\x64\x20\x28\x63\x6f\x72\x72\x65\x63\x74\x2d\x6f\x6e\x6c\x79\x29\x20\u2014\x20\x63\x6f\x6e\x74\x69\x6e\x75\x65\x20\x73\x74\x72\x65\x74\x63\x68\x69\x6e\x67\x2e'), Console['\x77\x72\x69\x74\x65\x6c\x6e']('\x20\x20\x20\u2705\x20\x44\x6f\x6e\x65\x2e'); } catch (_0x24481c) { new MessageBox('\x42\x6c\x75\x72\x58\x54\x65\x72\x6d\x69\x6e\x61\x74\x6f\x72\x20\x66\x61\x69\x6c\x65\x64\x3a\x0a' + _0x24481c, '\x41\x73\x74\x72\x6f\x4d\x61\x78\x53\x74\x61\x72\x53\x74\x72\x65\x74\x63\x68')['\x65\x78\x65\x63\x75\x74\x65'](); } _0x394fac['\x66\x6f\x72\x63\x65\x43\x6c\x6f\x73\x65'](), Console['\x68\x69\x64\x65'](), this['\x64\x6f\x52\x65\x66\x72\x65\x73\x68'](); } ['\x63\x75\x72\x72\x65\x6e\x74\x52\x65\x73\x75\x6c\x74']() { if (this['\x73\x74\x61\x67\x65\x53\x74\x61\x72\x73'] && this['\x73\x74\x61\x72\x73\x49\x6d\x67']) return starStretch(this['\x73\x74\x61\x72\x73\x49\x6d\x67'], this['\x70']); if (this['\x77\x6f\x72\x6b\x57\x69\x6e'] && !this['\x77\x6f\x72\x6b\x57\x69\x6e']['\x69\x73\x4e\x75\x6c\x6c']) return cloneImg(this['\x77\x6f\x72\x6b\x57\x69\x6e']['\x6d\x61\x69\x6e\x56\x69\x65\x77']['\x69\x6d\x61\x67\x65']); return null; } ['\x64\x6f\x52\x65\x66\x72\x65\x73\x68']() { if (this['\x62\x75\x73\x79']) return; this['\x62\x75\x73\x79'] = !![]; try { this['\x65\x78\x69\x74\x43\x6f\x6d\x70\x61\x72\x65'](); var _0x40038f = this['\x63\x75\x72\x72\x65\x6e\x74\x52\x65\x73\x75\x6c\x74'](); if (_0x40038f) { var _0x294ef0 = scaleImage(_0x40038f, this['\x70\x72\x65\x76\x69\x65\x77\x53\x63\x61\x6c\x65']); this['\x6c\x61\x73\x74\x52\x65\x73'] = _0x294ef0, this['\x6c\x61\x73\x74\x52\x61\x77\x4c\x69\x6e\x65\x61\x72'] = !this['\x73\x74\x61\x67\x65\x53\x74\x61\x72\x73'] && !this['\x77\x6f\x72\x6b\x53\x74\x72\x65\x74\x63\x68\x65\x64'], this['\x72\x65\x6e\x64\x65\x72\x50\x72\x65\x76\x69\x65\x77'](); } else this['\x6c\x61\x73\x74\x52\x65\x73'] = null, this['\x63\x61\x6e\x76\x61\x73']['\x72\x65\x70\x61\x69\x6e\x74'](); } catch (_0x6e0fe2) { Console['\x77\x72\x69\x74\x65\x6c\x6e']('\x41\x73\x74\x72\x6f\x4d\x61\x78\x53\x74\x61\x72\x53\x74\x72\x65\x74\x63\x68\x20\x65\x72\x72\x6f\x72\x3a\x20' + _0x6e0fe2); } this['\x62\x75\x73\x79'] = ![], this['\x75\x70\x64\x61\x74\x65\x42\x61\x63\x6b\x42\x74\x6e'](); } ['\x72\x65\x6e\x64\x65\x72\x50\x72\x65\x76\x69\x65\x77']() { if (this['\x6c\x61\x73\x74\x52\x65\x73'] === null) return; this['\x70\x72\x65\x76\x69\x65\x77\x42\x69\x74\x6d\x61\x70'] = this['\x7a\x6f\x6f\x6d\x4d\x6f\x64\x65'] ? renderZoom(this['\x6c\x61\x73\x74\x52\x65\x73'], this['\x7a\x6f\x6f\x6d\x43\x58'], this['\x7a\x6f\x6f\x6d\x43\x59'], this['\x7a\x6f\x6f\x6d\x4c\x65\x76\x65\x6c'], this['\x50\x57'], this['\x50\x48'], this['\x6c\x61\x73\x74\x52\x61\x77\x4c\x69\x6e\x65\x61\x72']) : renderFull(this['\x6c\x61\x73\x74\x52\x65\x73'], this['\x50\x57'], this['\x50\x48'], this['\x6c\x61\x73\x74\x52\x61\x77\x4c\x69\x6e\x65\x61\x72']), this['\x63\x61\x6e\x76\x61\x73']['\x72\x65\x70\x61\x69\x6e\x74'](); } ['\x73\x79\x6e\x63\x53\x6c\x69\x64\x65\x72\x73']() { this['\x73\x6c\x41\x6d\x6f\x75\x6e\x74']['\x73\x65\x74'](this['\x70']['\x61\x6d\x6f\x75\x6e\x74']), this['\x73\x6c\x42\x6c\x61\x63\x6b']['\x73\x65\x74'](this['\x70']['\x62\x6c\x61\x63\x6b\x70\x6f\x69\x6e\x74']), this['\x73\x6c\x43\x65\x6e\x74\x65\x72']['\x73\x65\x74'](this['\x70']['\x63\x65\x6e\x74\x65\x72\x50\x72\x6f\x74\x65\x63\x74']), this['\x73\x6c\x53\x61\x74']['\x73\x65\x74'](this['\x70']['\x73\x61\x74\x75\x72\x61\x74\x69\x6f\x6e']); } ['\x63\x6c\x65\x61\x72\x48\x69\x73\x74\x6f\x72\x79']() { this['\x70\x48\x69\x73\x74\x6f\x72\x79'] = [], this['\x75\x70\x64\x61\x74\x65\x42\x61\x63\x6b\x42\x74\x6e'](); } ['\x69\x73\x44\x69\x72\x74\x79\x53\x69\x6e\x63\x65\x42\x61\x73\x65\x6c\x69\x6e\x65']() { var _0x26d169 = this['\x63\x6f\x6d\x70\x61\x72\x65\x42\x61\x73\x65\x6c\x69\x6e\x65']; if (!_0x26d169) return ![]; return !paramsEqual(this['\x70'], _0x26d169['\x70']); } ['\x75\x70\x64\x61\x74\x65\x42\x61\x63\x6b\x42\x74\x6e']() { var _0x279e68 = this['\x69\x73\x44\x69\x72\x74\x79\x53\x69\x6e\x63\x65\x42\x61\x73\x65\x6c\x69\x6e\x65']() || this['\x70\x48\x69\x73\x74\x6f\x72\x79']['\x6c\x65\x6e\x67\x74\x68'] > 0x0; if (this['\x62\x74\x6e\x42\x61\x63\x6b']) this['\x62\x74\x6e\x42\x61\x63\x6b']['\x65\x6e\x61\x62\x6c\x65\x64'] = _0x279e68; if (this['\x62\x74\x6e\x42\x41']) this['\x62\x74\x6e\x42\x41']['\x65\x6e\x61\x62\x6c\x65\x64'] = this['\x63\x6f\x6d\x70\x61\x72\x65\x42\x61\x73\x65\x6c\x69\x6e\x65'] !== null; } ['\x73\x65\x74\x43\x6f\x6d\x70\x61\x72\x65\x42\x61\x73\x65\x6c\x69\x6e\x65']() { this['\x63\x6f\x6d\x70\x61\x72\x65\x42\x61\x73\x65\x6c\x69\x6e\x65'] = { '\x70': cloneParams(this['\x70']) }, this['\x75\x70\x64\x61\x74\x65\x42\x61\x63\x6b\x42\x74\x6e'](); } ['\x70\x75\x73\x68\x42\x61\x6b\x65\x52\x65\x73\x74\x6f\x72\x65']() { this['\x70\x48\x69\x73\x74\x6f\x72\x79']['\x70\x75\x73\x68']({ '\x70': cloneParams(this['\x70']), '\x73\x74\x61\x72\x73': cloneImg(this['\x73\x74\x61\x72\x73\x49\x6d\x67']), '\x70\x72\x65\x76\x42\x61\x73\x65\x6c\x69\x6e\x65': this['\x63\x6f\x6d\x70\x61\x72\x65\x42\x61\x73\x65\x6c\x69\x6e\x65'] }); if (this['\x70\x48\x69\x73\x74\x6f\x72\x79']['\x6c\x65\x6e\x67\x74\x68'] > 0x14) this['\x70\x48\x69\x73\x74\x6f\x72\x79']['\x73\x68\x69\x66\x74'](); this['\x75\x70\x64\x61\x74\x65\x42\x61\x63\x6b\x42\x74\x6e'](); } ['\x61\x75\x74\x6f\x53\x74\x72\x65\x74\x63\x68']() { if (!this['\x77\x6f\x72\x6b\x57\x69\x6e'] || this['\x77\x6f\x72\x6b\x57\x69\x6e']['\x69\x73\x4e\x75\x6c\x6c']) { new MessageBox('\x4c\x6f\x61\x64\x20\x61\x20\x6d\x61\x73\x74\x65\x72\x20\x2f\x20\x63\x6f\x6d\x62\x69\x6e\x65\x20\x63\x68\x61\x6e\x6e\x65\x6c\x73\x20\x66\x69\x72\x73\x74\x2e', '\x41\x73\x74\x72\x6f\x4d\x61\x78\x53\x74\x61\x72\x53\x74\x72\x65\x74\x63\x68')['\x65\x78\x65\x63\x75\x74\x65'](); return; } if (this['\x77\x6f\x72\x6b\x57\x69\x6e']['\x6d\x61\x69\x6e\x56\x69\x65\x77']['\x69\x6d\x61\x67\x65']['\x6e\x75\x6d\x62\x65\x72\x4f\x66\x43\x68\x61\x6e\x6e\x65\x6c\x73'] >= 0x3 && !isSolved(this['\x77\x6f\x72\x6b\x57\x69\x6e'])) Console['\x77\x72\x69\x74\x65\x6c\x6e']('\x2a\x2a\x20\x52\x65\x6d\x69\x6e\x64\x65\x72\x3a\x20\x72\x75\x6e\x20\x53\x50\x43\x43\x20\x62\x65\x66\x6f\x72\x65\x20\x41\x75\x74\x6f\x2d\x73\x74\x72\x65\x74\x63\x68\x20\x73\x6f\x20\x73\x74\x61\x72\x20\x63\x6f\x6c\x6f\x75\x72\x73\x20\x61\x72\x65\x20\x63\x61\x6c\x69\x62\x72\x61\x74\x65\x64\x2e'); Console['\x73\x68\x6f\x77'](), Console['\x77\x72\x69\x74\x65\x6c\x6e']('\x3c\x62\x3e\u26a1\x20\x41\x75\x74\x6f\x2d\x73\x74\x72\x65\x74\x63\x68\x20\x66\x75\x6c\x6c\x20\x69\x6d\x61\x67\x65\u2026\x3c\x2f\x62\x3e'), processEvents(); try { var _0x1e3542 = new MultiscaleAdaptiveStretch(); _0x1e3542['\x61\x67\x67\x72\x65\x73\x73\x69\x76\x65\x6e\x65\x73\x73'] = 0.7, _0x1e3542['\x74\x61\x72\x67\x65\x74\x42\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64'] = 0.15, _0x1e3542['\x64\x79\x6e\x61\x6d\x69\x63\x52\x61\x6e\x67\x65\x43\x6f\x6d\x70\x72\x65\x73\x73\x69\x6f\x6e'] = 0.4, _0x1e3542['\x63\x6f\x6e\x74\x72\x61\x73\x74\x52\x65\x63\x6f\x76\x65\x72\x79'] = !![], _0x1e3542['\x73\x63\x61\x6c\x65\x53\x65\x70\x61\x72\x61\x74\x69\x6f\x6e'] = 0x400, _0x1e3542['\x63\x6f\x6e\x74\x72\x61\x73\x74\x52\x65\x63\x6f\x76\x65\x72\x79\x49\x6e\x74\x65\x6e\x73\x69\x74\x79'] = 0x1, _0x1e3542['\x70\x72\x65\x76\x69\x65\x77\x4c\x61\x72\x67\x65\x53\x63\x61\x6c\x65'] = ![], _0x1e3542['\x73\x61\x74\x75\x72\x61\x74\x69\x6f\x6e\x45\x6e\x61\x62\x6c\x65\x64'] = !![], _0x1e3542['\x73\x61\x74\x75\x72\x61\x74\x69\x6f\x6e\x41\x6d\x6f\x75\x6e\x74'] = 0.75, _0x1e3542['\x73\x61\x74\x75\x72\x61\x74\x69\x6f\x6e\x42\x6f\x6f\x73\x74'] = 0.5, _0x1e3542['\x73\x61\x74\x75\x72\x61\x74\x69\x6f\x6e\x4c\x69\x67\x68\x74\x6e\x65\x73\x73\x4d\x61\x73\x6b'] = !![], _0x1e3542['\x62\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\x52\x4f\x49\x45\x6e\x61\x62\x6c\x65\x64'] = ![], _0x1e3542['\x62\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\x52\x4f\x49\x58\x30'] = 0x0, _0x1e3542['\x62\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\x52\x4f\x49\x59\x30'] = 0x0, _0x1e3542['\x62\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\x52\x4f\x49\x57\x69\x64\x74\x68'] = 0x0, _0x1e3542['\x62\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\x52\x4f\x49\x48\x65\x69\x67\x68\x74'] = 0x0, _0x1e3542['\x65\x78\x65\x63\x75\x74\x65\x4f\x6e'](this['\x77\x6f\x72\x6b\x57\x69\x6e']['\x6d\x61\x69\x6e\x56\x69\x65\x77']), Console['\x77\x72\x69\x74\x65\x6c\x6e']('\x20\x20\x20\u2705\x20\x41\x75\x74\x6f\x2d\x73\x74\x72\x65\x74\x63\x68\x20\x64\x6f\x6e\x65\x2e'); } catch (_0x8b64b6) { Console['\x77\x72\x69\x74\x65\x6c\x6e']('\x20\x20\x20\x2a\x2a\x20\x4d\x75\x6c\x74\x69\x73\x63\x61\x6c\x65\x41\x64\x61\x70\x74\x69\x76\x65\x53\x74\x72\x65\x74\x63\x68\x20\x6e\x6f\x74\x20\x61\x76\x61\x69\x6c\x61\x62\x6c\x65\x20\u2014\x20\x75\x73\x69\x6e\x67\x20\x62\x75\x69\x6c\x74\x2d\x69\x6e\x20\x66\x61\x6c\x6c\x62\x61\x63\x6b\x20\x73\x74\x72\x65\x74\x63\x68\x2e'); var _0x14340e = { '\x61\x67\x67\x72\x65\x73\x73\x69\x76\x65\x6e\x65\x73\x73': 0.7, '\x74\x61\x72\x67\x65\x74\x42\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64': 0.15, '\x64\x79\x6e\x61\x6d\x69\x63\x52\x61\x6e\x67\x65\x43\x6f\x6d\x70\x72\x65\x73\x73\x69\x6f\x6e': 0.4, '\x63\x6f\x6e\x74\x72\x61\x73\x74\x52\x65\x63\x6f\x76\x65\x72\x79': !![], '\x73\x63\x61\x6c\x65\x53\x65\x70\x61\x72\x61\x74\x69\x6f\x6e': 0x400, '\x63\x6f\x6e\x74\x72\x61\x73\x74\x52\x65\x63\x6f\x76\x65\x72\x79\x49\x6e\x74\x65\x6e\x73\x69\x74\x79': 0x1, '\x73\x61\x74\x75\x72\x61\x74\x69\x6f\x6e\x45\x6e\x61\x62\x6c\x65\x64': !![], '\x73\x61\x74\x75\x72\x61\x74\x69\x6f\x6e\x41\x6d\x6f\x75\x6e\x74': 0.75, '\x73\x61\x74\x75\x72\x61\x74\x69\x6f\x6e\x42\x6f\x6f\x73\x74': 0.5 }, _0x359f09 = masClone(this['\x77\x6f\x72\x6b\x57\x69\x6e']['\x6d\x61\x69\x6e\x56\x69\x65\x77']['\x69\x6d\x61\x67\x65'], _0x14340e); this['\x77\x6f\x72\x6b\x57\x69\x6e']['\x6d\x61\x69\x6e\x56\x69\x65\x77']['\x62\x65\x67\x69\x6e\x50\x72\x6f\x63\x65\x73\x73'](0x0), this['\x77\x6f\x72\x6b\x57\x69\x6e']['\x6d\x61\x69\x6e\x56\x69\x65\x77']['\x69\x6d\x61\x67\x65']['\x61\x73\x73\x69\x67\x6e'](_0x359f09), this['\x77\x6f\x72\x6b\x57\x69\x6e']['\x6d\x61\x69\x6e\x56\x69\x65\x77']['\x65\x6e\x64\x50\x72\x6f\x63\x65\x73\x73'](), Console['\x77\x72\x69\x74\x65\x6c\x6e']('\x20\x20\x20\u2705\x20\x41\x75\x74\x6f\x2d\x73\x74\x72\x65\x74\x63\x68\x20\x64\x6f\x6e\x65\x20\x28\x66\x61\x6c\x6c\x62\x61\x63\x6b\x29\x2e'); } this['\x77\x6f\x72\x6b\x53\x74\x72\x65\x74\x63\x68\x65\x64'] = !![], this['\x62\x74\x6e\x41\x75\x74\x6f']['\x65\x6e\x61\x62\x6c\x65\x64'] = ![], this['\x64\x6f\x52\x65\x66\x72\x65\x73\x68'](), Console['\x68\x69\x64\x65'](), this['\x73\x65\x74\x53\x74\x61\x74\x75\x73']('\x69\x6d\x61\x67\x65\x20\x61\x75\x74\x6f\x2d\x73\x74\x72\x65\x74\x63\x68\x65\x64\x20\u2014\x20\x6e\x6f\x77\x20\x53\x65\x70\x61\x72\x61\x74\x65\x20\x53\x74\x61\x72\x73\x20\u2192\x20\x53\x74\x61\x72\x73\x20\x6f\x6e\x6c\x79\x2e'); } ['\x61\x70\x70\x6c\x79\x43\x6f\x6e\x74\x69\x6e\x75\x65']() { if (!this['\x73\x74\x61\x67\x65\x53\x74\x61\x72\x73'] || !this['\x73\x74\x61\x72\x73\x49\x6d\x67']) { new MessageBox('\x53\x65\x70\x61\x72\x61\x74\x65\x20\x73\x74\x61\x72\x73\x20\x66\x69\x72\x73\x74\x2e', '\x41\x73\x74\x72\x6f\x4d\x61\x78\x53\x74\x61\x72\x53\x74\x72\x65\x74\x63\x68')['\x65\x78\x65\x63\x75\x74\x65'](); return; } this['\x70\x75\x73\x68\x42\x61\x6b\x65\x52\x65\x73\x74\x6f\x72\x65'](), this['\x73\x74\x61\x72\x73\x49\x6d\x67'] = starStretch(this['\x73\x74\x61\x72\x73\x49\x6d\x67'], this['\x70']), this['\x70'] = ssZero(), this['\x73\x79\x6e\x63\x53\x6c\x69\x64\x65\x72\x73'](), this['\x72\x65\x73\x74\x6f\x72\x69\x6e\x67\x53\x74\x61\x74\x65'] = !![], this['\x64\x6f\x52\x65\x66\x72\x65\x73\x68'](), this['\x72\x65\x73\x74\x6f\x72\x69\x6e\x67\x53\x74\x61\x74\x65'] = ![], this['\x73\x65\x74\x43\x6f\x6d\x70\x61\x72\x65\x42\x61\x73\x65\x6c\x69\x6e\x65'](), this['\x73\x65\x74\x53\x74\x61\x74\x75\x73']('\x73\x74\x72\x65\x74\x63\x68\x20\x62\x61\x6b\x65\x64\x20\u2014\x20\x6b\x65\x65\x70\x20\x73\x74\x72\x65\x74\x63\x68\x69\x6e\x67\x2c\x20\x6f\x72\x20\x43\x72\x65\x61\x74\x65\x2e'); } ['\x73\x74\x65\x70\x42\x61\x63\x6b']() { if (this['\x69\x73\x44\x69\x72\x74\x79\x53\x69\x6e\x63\x65\x42\x61\x73\x65\x6c\x69\x6e\x65']()) this['\x70'] = cloneParams(this['\x63\x6f\x6d\x70\x61\x72\x65\x42\x61\x73\x65\x6c\x69\x6e\x65']['\x70']), this['\x72\x65\x73\x74\x6f\x72\x69\x6e\x67\x53\x74\x61\x74\x65'] = !![], this['\x73\x79\x6e\x63\x53\x6c\x69\x64\x65\x72\x73'](), this['\x64\x6f\x52\x65\x66\x72\x65\x73\x68'](), this['\x72\x65\x73\x74\x6f\x72\x69\x6e\x67\x53\x74\x61\x74\x65'] = ![]; else { if (this['\x70\x48\x69\x73\x74\x6f\x72\x79']['\x6c\x65\x6e\x67\x74\x68'] > 0x0) { var _0x1ab6d3 = this['\x70\x48\x69\x73\x74\x6f\x72\x79']['\x70\x6f\x70'](); this['\x72\x65\x73\x74\x6f\x72\x69\x6e\x67\x53\x74\x61\x74\x65'] = !![], this['\x73\x74\x61\x72\x73\x49\x6d\x67'] = _0x1ab6d3['\x73\x74\x61\x72\x73'] ? cloneImg(_0x1ab6d3['\x73\x74\x61\x72\x73']) : this['\x73\x74\x61\x72\x73\x49\x6d\x67'], this['\x70'] = _0x1ab6d3['\x70'], this['\x63\x6f\x6d\x70\x61\x72\x65\x42\x61\x73\x65\x6c\x69\x6e\x65'] = _0x1ab6d3['\x70\x72\x65\x76\x42\x61\x73\x65\x6c\x69\x6e\x65'] || null, this['\x73\x79\x6e\x63\x53\x6c\x69\x64\x65\x72\x73'](), this['\x64\x6f\x52\x65\x66\x72\x65\x73\x68'](), this['\x72\x65\x73\x74\x6f\x72\x69\x6e\x67\x53\x74\x61\x74\x65'] = ![]; } } this['\x75\x70\x64\x61\x74\x65\x42\x61\x63\x6b\x42\x74\x6e'](); } ['\x65\x78\x69\x74\x43\x6f\x6d\x70\x61\x72\x65']() { if (!this['\x73\x68\x6f\x77\x69\x6e\x67\x42\x65\x66\x6f\x72\x65'] && this['\x5f\x62\x65\x66\x6f\x72\x65\x52\x65\x73'] === null) return; this['\x73\x68\x6f\x77\x69\x6e\x67\x42\x65\x66\x6f\x72\x65'] = ![], this['\x5f\x62\x65\x66\x6f\x72\x65\x52\x65\x73'] = null, this['\x5f\x61\x66\x74\x65\x72\x52\x65\x73'] = null; if (this['\x62\x74\x6e\x42\x41']) this['\x62\x74\x6e\x42\x41']['\x74\x65\x78\x74'] = '\u21c4\x20\x42\x65\x66\x6f\x72\x65\x2f\x41\x66\x74\x65\x72'; } ['\x63\x6f\x6d\x70\x75\x74\x65\x42\x61\x73\x65\x6c\x69\x6e\x65\x52\x65\x73\x75\x6c\x74']() { var _0x35ac95 = this['\x63\x6f\x6d\x70\x61\x72\x65\x42\x61\x73\x65\x6c\x69\x6e\x65']; if (!_0x35ac95 || !this['\x73\x74\x61\x72\x73\x49\x6d\x67']) return null; return scaleImage(starStretch(this['\x73\x74\x61\x72\x73\x49\x6d\x67'], _0x35ac95['\x70']), this['\x70\x72\x65\x76\x69\x65\x77\x53\x63\x61\x6c\x65']); } ['\x74\x6f\x67\x67\x6c\x65\x42\x65\x66\x6f\x72\x65\x41\x66\x74\x65\x72']() { if (this['\x63\x6f\x6d\x70\x61\x72\x65\x42\x61\x73\x65\x6c\x69\x6e\x65'] === null || !this['\x73\x74\x61\x67\x65\x53\x74\x61\x72\x73']) return; if (this['\x5f\x62\x65\x66\x6f\x72\x65\x52\x65\x73'] === null) { this['\x5f\x61\x66\x74\x65\x72\x52\x65\x73'] = this['\x6c\x61\x73\x74\x52\x65\x73'], this['\x5f\x62\x65\x66\x6f\x72\x65\x52\x65\x73'] = this['\x63\x6f\x6d\x70\x75\x74\x65\x42\x61\x73\x65\x6c\x69\x6e\x65\x52\x65\x73\x75\x6c\x74'](); if (!this['\x5f\x62\x65\x66\x6f\x72\x65\x52\x65\x73']) { this['\x5f\x61\x66\x74\x65\x72\x52\x65\x73'] = null; return; } this['\x73\x68\x6f\x77\x69\x6e\x67\x42\x65\x66\x6f\x72\x65'] = ![]; } this['\x73\x68\x6f\x77\x69\x6e\x67\x42\x65\x66\x6f\x72\x65'] = !this['\x73\x68\x6f\x77\x69\x6e\x67\x42\x65\x66\x6f\x72\x65'], this['\x6c\x61\x73\x74\x52\x65\x73'] = this['\x73\x68\x6f\x77\x69\x6e\x67\x42\x65\x66\x6f\x72\x65'] ? this['\x5f\x62\x65\x66\x6f\x72\x65\x52\x65\x73'] : this['\x5f\x61\x66\x74\x65\x72\x52\x65\x73']; if (this['\x62\x74\x6e\x42\x41']) this['\x62\x74\x6e\x42\x41']['\x74\x65\x78\x74'] = this['\x73\x68\x6f\x77\x69\x6e\x67\x42\x65\x66\x6f\x72\x65'] ? '\u21c4\x20\x42\x45\x46\x4f\x52\x45' : '\u21c4\x20\x41\x46\x54\x45\x52'; this['\x72\x65\x6e\x64\x65\x72\x50\x72\x65\x76\x69\x65\x77'](); } ['\x63\x72\x65\x61\x74\x65\x53\x74\x61\x72\x73']() { if (!this['\x73\x74\x61\x67\x65\x53\x74\x61\x72\x73'] || !this['\x73\x74\x61\x72\x73\x49\x6d\x67']) { new MessageBox('\x53\x65\x70\x61\x72\x61\x74\x65\x20\x73\x74\x61\x72\x73\x20\x66\x69\x72\x73\x74\x2c\x20\x74\x68\x65\x6e\x20\x61\x64\x6a\x75\x73\x74\x20\x74\x68\x65\x20\x73\x74\x72\x65\x74\x63\x68\x2e', '\x41\x73\x74\x72\x6f\x4d\x61\x78\x53\x74\x61\x72\x53\x74\x72\x65\x74\x63\x68')['\x65\x78\x65\x63\x75\x74\x65'](); return; } Console['\x73\x68\x6f\x77'](), Console['\x77\x72\x69\x74\x65\x6c\x6e']('\x3c\x62\x3e\u2705\x20\x43\x72\x65\x61\x74\x69\x6e\x67\x20\x73\x74\x72\x65\x74\x63\x68\x65\x64\x2d\x73\x74\x61\x72\x73\x20\x69\x6d\x61\x67\x65\x20\x28\x66\x75\x6c\x6c\x20\x72\x65\x73\x6f\x6c\x75\x74\x69\x6f\x6e\x29\u2026\x3c\x2f\x62\x3e'), processEvents(); var _0x17217f = starStretch(this['\x73\x74\x61\x72\x73\x49\x6d\x67'], this['\x70']), _0x2cc422 = new ImageWindow(_0x17217f['\x77\x69\x64\x74\x68'], _0x17217f['\x68\x65\x69\x67\x68\x74'], _0x17217f['\x6e\x75\x6d\x62\x65\x72\x4f\x66\x43\x68\x61\x6e\x6e\x65\x6c\x73'], 0x20, !![], _0x17217f['\x6e\x75\x6d\x62\x65\x72\x4f\x66\x43\x68\x61\x6e\x6e\x65\x6c\x73'] >= 0x3, '\x41\x73\x74\x72\x6f\x4d\x61\x78\x5f\x53\x74\x61\x72\x73\x53\x74\x72\x65\x74\x63\x68\x65\x64'); _0x2cc422['\x6d\x61\x69\x6e\x56\x69\x65\x77']['\x62\x65\x67\x69\x6e\x50\x72\x6f\x63\x65\x73\x73'](0x0), _0x2cc422['\x6d\x61\x69\x6e\x56\x69\x65\x77']['\x69\x6d\x61\x67\x65']['\x61\x73\x73\x69\x67\x6e'](_0x17217f), _0x2cc422['\x6d\x61\x69\x6e\x56\x69\x65\x77']['\x65\x6e\x64\x50\x72\x6f\x63\x65\x73\x73'](), setLinearSTF(_0x2cc422['\x6d\x61\x69\x6e\x56\x69\x65\x77']), _0x2cc422['\x73\x68\x6f\x77'](), _0x2cc422['\x62\x72\x69\x6e\x67\x54\x6f\x46\x72\x6f\x6e\x74'](), setLinearSTF(_0x2cc422['\x6d\x61\x69\x6e\x56\x69\x65\x77']), Console['\x77\x72\x69\x74\x65\x6c\x6e']('\x20\x20\x20\u2705\x20\x44\x6f\x6e\x65\x20\u2192\x20\x41\x73\x74\x72\x6f\x4d\x61\x78\x5f\x53\x74\x61\x72\x73\x53\x74\x72\x65\x74\x63\x68\x65\x64\x20\x28\x6c\x69\x6e\x65\x61\x72\x20\x53\x54\x46\x20\u2014\x20\x6d\x61\x74\x63\x68\x65\x73\x20\x70\x72\x65\x76\x69\x65\x77\x29\x2e'), Console['\x68\x69\x64\x65'](); } } function amxVerCmp(_0x532b2b, _0xbc5f20) { var _0xd27cb7 = String(_0x532b2b)['\x72\x65\x70\x6c\x61\x63\x65'](/^[^\d]*/, '')['\x73\x70\x6c\x69\x74'](/[.\-+]/), _0x19b7c3 = String(_0xbc5f20)['\x72\x65\x70\x6c\x61\x63\x65'](/^[^\d]*/, '')['\x73\x70\x6c\x69\x74'](/[.\-+]/); for (var _0x348360 = 0x0; _0x348360 < Math['\x6d\x61\x78'](_0xd27cb7['\x6c\x65\x6e\x67\x74\x68'], _0x19b7c3['\x6c\x65\x6e\x67\x74\x68']); _0x348360++) { var _0x40be5e = parseInt(_0xd27cb7[_0x348360], 0xa) || 0x0, _0x3c15c = parseInt(_0x19b7c3[_0x348360], 0xa) || 0x0; if (_0x40be5e !== _0x3c15c) return _0x40be5e - _0x3c15c; } return 0x0; } function amxCheckUpdate(_0x51419d, _0x41a1ed, _0x3a3935) { try { var _0xf8c045 = new NetworkTransfer(); _0xf8c045['\x73\x65\x74\x55\x52\x4c']('\x68\x74\x74\x70\x73\x3a\x2f\x2f\x61\x70\x69\x2e\x67\x69\x74\x68\x75\x62\x2e\x63\x6f\x6d\x2f\x72\x65\x70\x6f\x73\x2f' + _0x41a1ed + '\x2f\x72\x65\x6c\x65\x61\x73\x65\x73\x2f\x6c\x61\x74\x65\x73\x74'); try { _0xf8c045['\x73\x65\x74\x53\x53\x4c'](); } catch (_0x3c39d8) { } try { _0xf8c045['\x73\x65\x74\x43\x6f\x6e\x6e\x65\x63\x74\x69\x6f\x6e\x54\x69\x6d\x65\x6f\x75\x74'](0x5); } catch (_0x1831f2) { } try { _0xf8c045['\x73\x65\x74\x43\x75\x73\x74\x6f\x6d\x48\x54\x54\x50\x48\x65\x61\x64\x65\x72\x73']([ '\x55\x73\x65\x72\x2d\x41\x67\x65\x6e\x74\x3a\x20\x41\x73\x74\x72\x6f\x4d\x61\x78', '\x41\x63\x63\x65\x70\x74\x3a\x20\x61\x70\x70\x6c\x69\x63\x61\x74\x69\x6f\x6e\x2f\x76\x6e\x64\x2e\x67\x69\x74\x68\x75\x62\x2b\x6a\x73\x6f\x6e' ]); } catch (_0x801803) { } _0xf8c045['\x64\x6f\x77\x6e\x6c\x6f\x61\x64\x44\x61\x74\x61'] = new ByteArray(), _0xf8c045['\x6f\x6e\x44\x6f\x77\x6e\x6c\x6f\x61\x64\x44\x61\x74\x61\x41\x76\x61\x69\x6c\x61\x62\x6c\x65'] = function (_0x36f7b4) { return this['\x64\x6f\x77\x6e\x6c\x6f\x61\x64\x44\x61\x74\x61']['\x61\x64\x64'](_0x36f7b4), !![]; }; var _0x495002 = _0xf8c045['\x64\x6f\x77\x6e\x6c\x6f\x61\x64'](); try { _0xf8c045['\x63\x6c\x6f\x73\x65\x43\x6f\x6e\x6e\x65\x63\x74\x69\x6f\x6e'](); } catch (_0x31954b) { } if (!_0x495002) { try { new MessageBox('\x43\x6f\x75\x6c\x64\x20\x6e\x6f\x74\x20\x63\x68\x65\x63\x6b\x20\x66\x6f\x72\x20\x75\x70\x64\x61\x74\x65\x73\x2e\x0a\x43\x68\x65\x63\x6b\x20\x79\x6f\x75\x72\x20\x69\x6e\x74\x65\x72\x6e\x65\x74\x20\x63\x6f\x6e\x6e\x65\x63\x74\x69\x6f\x6e\x2e', _0x51419d + '\x20\x2d\x20\x55\x70\x64\x61\x74\x65')['\x65\x78\x65\x63\x75\x74\x65'](); } catch (_0x44c238) { } return; } var _0x366009 = JSON['\x70\x61\x72\x73\x65'](_0xf8c045['\x64\x6f\x77\x6e\x6c\x6f\x61\x64\x44\x61\x74\x61']['\x74\x6f\x53\x74\x72\x69\x6e\x67']()), _0x521a5e = ((_0x366009['\x74\x61\x67\x5f\x6e\x61\x6d\x65'] || _0x366009['\x6e\x61\x6d\x65'] || '') + '')['\x74\x72\x69\x6d'](); if (!_0x521a5e) return; var _0x33b735 = _0x366009['\x68\x74\x6d\x6c\x5f\x75\x72\x6c'] || '\x68\x74\x74\x70\x73\x3a\x2f\x2f\x67\x69\x74\x68\x75\x62\x2e\x63\x6f\x6d\x2f' + _0x41a1ed + '\x2f\x72\x65\x6c\x65\x61\x73\x65\x73\x2f\x6c\x61\x74\x65\x73\x74'; if (amxVerCmp(_0x521a5e, _0x3a3935) > 0x0) { var _0x53cccb = new Dialog(); _0x53cccb['\x77\x69\x6e\x64\x6f\x77\x54\x69\x74\x6c\x65'] = _0x51419d + '\x20\u2014\x20\x55\x70\x64\x61\x74\x65\x20\x61\x76\x61\x69\x6c\x61\x62\x6c\x65'; var _0xeffb63 = new Label(_0x53cccb); _0xeffb63['\x77\x6f\x72\x64\x57\x72\x61\x70\x70\x69\x6e\x67'] = !![], _0xeffb63['\x75\x73\x65\x52\x69\x63\x68\x54\x65\x78\x74'] = !![], _0xeffb63['\x74\x65\x78\x74'] = '\x3c\x62\x3e\x41\x20\x6e\x65\x77\x20\x76\x65\x72\x73\x69\x6f\x6e\x20\x69\x73\x20\x61\x76\x61\x69\x6c\x61\x62\x6c\x65\x3a\x20' + _0x521a5e + '\x3c\x2f\x62\x3e\x3c\x62\x72\x3e\x59\x6f\x75\x20\x68\x61\x76\x65\x20\x76' + _0x3a3935 + '\x2e\x3c\x62\x72\x3e\x3c\x62\x72\x3e' + _0x33b735; try { _0xeffb63['\x73\x65\x74\x4d\x69\x6e\x57\x69\x64\x74\x68'](0x168); } catch (_0x2e663f) { } var _0x20a2f3 = new PushButton(_0x53cccb); _0x20a2f3['\x74\x65\x78\x74'] = '\u2b07\x20\x44\x6f\x77\x6e\x6c\x6f\x61\x64', _0x20a2f3['\x6f\x6e\x43\x6c\x69\x63\x6b'] = function () { try { Dialog['\x6f\x70\x65\x6e\x42\x72\x6f\x77\x73\x65\x72'](_0x33b735); } catch (_0xb8b797) { } _0x53cccb['\x6f\x6b'](); }; var _0x30e8bf = new PushButton(_0x53cccb); _0x30e8bf['\x74\x65\x78\x74'] = '\x4c\x61\x74\x65\x72', _0x30e8bf['\x6f\x6e\x43\x6c\x69\x63\x6b'] = function () { _0x53cccb['\x63\x61\x6e\x63\x65\x6c'](); }; var _0x26baa3 = new HorizontalSizer(); _0x26baa3['\x73\x70\x61\x63\x69\x6e\x67'] = 0x6, _0x26baa3['\x61\x64\x64\x53\x74\x72\x65\x74\x63\x68'](), _0x26baa3['\x61\x64\x64'](_0x20a2f3), _0x26baa3['\x61\x64\x64'](_0x30e8bf), _0x53cccb['\x73\x69\x7a\x65\x72'] = new VerticalSizer(), _0x53cccb['\x73\x69\x7a\x65\x72']['\x6d\x61\x72\x67\x69\x6e'] = 0xe, _0x53cccb['\x73\x69\x7a\x65\x72']['\x73\x70\x61\x63\x69\x6e\x67'] = 0xc, _0x53cccb['\x73\x69\x7a\x65\x72']['\x61\x64\x64'](_0xeffb63), _0x53cccb['\x73\x69\x7a\x65\x72']['\x61\x64\x64'](_0x26baa3), _0x53cccb['\x61\x64\x6a\x75\x73\x74\x54\x6f\x43\x6f\x6e\x74\x65\x6e\x74\x73'](), _0x53cccb['\x65\x78\x65\x63\x75\x74\x65'](); } else new MessageBox(_0x51419d + '\x20\x69\x73\x20\x75\x70\x20\x74\x6f\x20\x64\x61\x74\x65\x20\x28\x76' + _0x3a3935 + '\x29\x2e', _0x51419d + '\x20\x2d\x20\x55\x70\x64\x61\x74\x65')['\x65\x78\x65\x63\x75\x74\x65'](); } catch (_0xcc243b) { try { new MessageBox('\x43\x6f\x75\x6c\x64\x20\x6e\x6f\x74\x20\x63\x68\x65\x63\x6b\x20\x66\x6f\x72\x20\x75\x70\x64\x61\x74\x65\x73\x2e\x0a' + _0xcc243b, _0x51419d + '\x20\x2d\x20\x55\x70\x64\x61\x74\x65')['\x65\x78\x65\x63\x75\x74\x65'](); } catch (_0x35d8b5) { } } } function main() { var _0x541601 = licCheck(); if (_0x541601 === '\x65\x78\x70\x69\x72\x65\x64') { if (!licShowActivationDialog()) return; if (!licIsActivated()) { new MessageBox('\x41\x73\x74\x72\x6f\x4d\x61\x78\x20\x53\x74\x61\x72\x53\x74\x72\x65\x74\x63\x68\x20\x74\x72\x69\x61\x6c\x20\x65\x78\x70\x69\x72\x65\x64\x2e\x20\x50\x6c\x65\x61\x73\x65\x20\x61\x63\x74\x69\x76\x61\x74\x65\x2e', '\x41\x73\x74\x72\x6f\x4d\x61\x78\x53\x74\x61\x72\x53\x74\x72\x65\x74\x63\x68')['\x65\x78\x65\x63\x75\x74\x65'](); return; } } cleanupOrphanWindows(); var _0x3fb477 = new AstroMaxStarStretchDialog(); _0x3fb477['\x65\x78\x65\x63\x75\x74\x65'](), closeAllWins(); } main();