{"javascript":"$(document).ready(function() {\n\n /////Translate interface\n /////List of localization keys, feel free to extend it.\n InitTranslations({})\n\n $(\"#LanguageENSwitch\").on(\"click\", function(event) {\n Translate(\"en\")\n $(\"#LanguageRUSwitch\").show()\n $(\"#LanguageENSwitch\").hide()\n })\n\n $(\"#LanguageRUSwitch\").on(\"click\", function(event) {\n Translate(\"ru\")\n $(\"#LanguageRUSwitch\").hide()\n $(\"#LanguageENSwitch\").show()\n })\n\n /////Init manual captcha solving interface\n InitManualCaptchaSolver()\n\n /////Show dialogs when clicked on buttons of LinesFromFile or FilesFromDirectory resource types. \n InitFileAndFolderChooserButtons()\n\n /////Hide main global tab header on start\n $(\"#GlobalTabsHeader\").hide()\n\n /////Init dialogs to edit random strings\n InitRandomStringModals()\n\n /////Init validation and resource visibility\n InitResourcesValidationAndVisibility()\n\n /////Init successes and fails graph\n InitPulse()\n\n /////Init browser viewer\n InitBrowserViewer()\n\n /////Api event handler\n Api.SetEventHandler(function(EventType, EventData) {\n\n /////Script started, need to switch tabs and update interface\n if (EventType == \"start\") {\n UIkit.tab($(\"#GlobalTabsHeader\")[0]).show(1);\n $(\"#CardStatusRunning\").show()\n $(\"#CardStatusStopped\").hide()\n $(\"#ThreadsRunning\").html(\"0\")\n $(\"#Success\").html(\"0\")\n $(\"#Failures\").html(\"0\")\n $(\"#PhoneCount\").html(\"0\")\n $(\"#PhoneCheck\").html(\"0\")\n $(\"#PhoneCountH\").html(\"0\")\n $(\"#PhoneCheckH\").html(\"0\")\n $(\"#approveh\").html(\"0\")\n $(\"#rejecth\").html(\"0\")\n $(\"#repeatedh\").html(\"0\")\n $(\"#speedh\").html(\"0\")\n $(\"#SpeedCheckHalva\").hide()\n $(\"#SpeedCheckAlfa\").hide()\n $(\"#errorh\").html(\"0\")\n $(\"#errorh\").html(\"0\")\n $(\"#BrowserNumber\").html(\"0\")\n $(\"#BrowserManualNumber\").html(\"0\")\n $(\"#BrowserManualMessage\").hide()\n $(\"#Logs\").css(\"max-height\", \"400px\")\n $(\"#LogsHalva\").hide()\n $(\"#LogsHalva\").css(\"max-height\", \"400px\")\n $(\"#HalvaHide\").hide()\n $(\"#HalvaShow\").show()\n $(\"#ExpandLog\").show()\n $(\"#HideLog\").hide()\n Translate(\"ru\")\n $(\"#LanguageRUSwitch\").hide()\n $(\"#LanguageENSwitch\").show()\n\n /////Clear captchas controls\n ClearCaptchas()\n\n /////Refresh result downloaded number\n $(\".ResultNumber\").html(\"0\")\n\n ClearBrowserViewer()\n\n /////Clear successes and fails graph\n ClearPulse();\n /////Clear logs\n $('#Logs').html(\"\")\n $('#LogsHalva').html(\"\")\n }\n\n /////Script stopped, need to update interface\n if (EventType == \"stop\") {\n UIkit.tab($(\"#GlobalTabsHeader\")[0]).show(1);\n $(\"#CardStatusRunning\").hide()\n $(\"#CardStatusStopped\").show()\n $(\"#ThreadsRunning\").html(\"0\")\n $(\"#BrowserNumber\").html(\"0\")\n $(\"#BrowserManualNumber\").html(\"0\")\n $(\"#BrowserManualMessage\").hide()\n }\n\n /////Update result number counter\n if (EventType == \"result\") {\n let ResultNumberElement = $(\".ResultNumber[data-index=\" + EventData[\"number\"] + \"]\")\n let CurrentValue = parseInt(ResultNumberElement.html())\n ResultNumberElement.html((CurrentValue + 1).toString())\n }\n\n /////Process captcha\n if (EventType == \"captcha\") {\n AddCaptcha(EventData[\"id\"], EventData[\"is_image\"], EventData[\"data\"])\n }\n\n /////Script restarted, need to switch tabs\n if (EventType == \"restart\") {\n UIkit.tab($(\"#GlobalTabsHeader\")[0]).show(0);\n $(\"#RunScript\").removeAttr(\"disabled\")\n }\n\n\n\n /////Display log\n if (EventType == \"log\") {\n let Logs = $('#Logs');\n let LogLine = $(\"
\").addClass(\"log-line\").attr(\"data-log-type\", EventData[\"type\"])\n let Text = $(\"\").text(EventData[\"text\"])\n\n /////Add action id\n if (EventData[\"action_id\"]) {\n LogLine.append($(\"\").text(\"[\" + EventData[\"action_id\"] + \"] \").addClass(\"uk-text-primary\"))\n }\n\n /////Set color\n if (EventData[\"type\"] == \"success\") {\n Text.addClass(\"uk-text-success\")\n } else if (EventData[\"type\"] == \"info\") {\n Text.addClass(\"uk-text-muted\")\n } else if (EventData[\"type\"] == \"fail\") {\n Text.addClass(\"uk-text-danger\")\n }\n\n /////Remove old lines\n $('#Logs .log-line').slice(500).remove();\n\n\n /////Append text\n LogLine.append(Text)\n Logs.prepend(LogLine)\n }\n\n /////Browser started, need to update running browser label\n if (EventType == \"browser_add\") {\n let CurrentValue = parseInt($(\"#BrowserNumber\").html())\n $(\"#BrowserNumber\").html((CurrentValue + 1).toString())\n\n /////Add browser to viewer\n AddBrowser(EventData[\"browser_id\"], EventData[\"thread_number\"])\n }\n /////Browser finished, need to update running browser label\n if (EventType == \"browser_remove\") {\n let CurrentValue = parseInt($(\"#BrowserNumber\").html())\n $(\"#BrowserNumber\").html((CurrentValue - 1).toString())\n\n /////Remove browser from viewer\n RemoveBrowser(EventData[\"browser_id\"], EventData[\"thread_number\"])\n }\n\n /////Browser is under user control\n if (EventType == \"manual_control_start\") {\n let CurrentValue = parseInt($(\"#BrowserManualNumber\").html()) + 1\n $(\"#BrowserManualNumber\").html((CurrentValue).toString())\n if (CurrentValue > 0)\n $(\"#BrowserManualMessage\").show()\n\n ManualControlStart(EventData[\"browser_id\"])\n }\n /////Browser is under script control\n if (EventType == \"manual_control_end\") {\n let CurrentValue = parseInt($(\"#BrowserManualNumber\").html()) - 1\n $(\"#BrowserManualNumber\").html((CurrentValue).toString())\n if (CurrentValue <= 0)\n $(\"#BrowserManualMessage\").hide()\n\n ManualControlStop(EventData[\"browser_id\"])\n }\n\n /////Thread started, need to update running threads label\n if (EventType == \"thread_start\") {\n let CurrentValue = parseInt($(\"#ThreadsRunning\").html())\n $(\"#ThreadsRunning\").html((CurrentValue + 1).toString())\n }\n\n /////Thread ended, need to update running threads label and success or failures\n if (EventType == \"thread_end\") {\n let CurrentValue = parseInt($(\"#ThreadsRunning\").html())\n $(\"#ThreadsRunning\").html((CurrentValue - 1).toString())\n\n if (EventData[\"success\"]) {\n CurrentValue = parseInt($(\"#Success\").html())\n $(\"#Success\").html((CurrentValue + 1).toString())\n\n /////Update successes and fails graph\n AddSuccessToPulse()\n } else {\n CurrentValue = parseInt($(\"#Failures\").html())\n $(\"#Failures\").html((CurrentValue + 1).toString())\n\n /////Update successes and fails graph\n AddFailsToPulse()\n }\n }\n\n /////Database structure changed, need to update database resources\n if (EventType == \"database_structure_changed\") {\n UpdateDatabaseResources()\n }\n\n })\n\n ///Халва лог\n $(\"#HalvaShow\").on(\"click\", function() {\n $(\"#HalvaHide\").show()\n $(\"#HalvaShow\").hide()\n $(\"#LogsHalva\").show()\n $(\"#Logs\").hide()\n });\n\n $(\"#HalvaHide\").on(\"click\", function() {\n $(\"#HalvaHide\").hide()\n $(\"#HalvaShow\").show()\n $(\"#LogsHalva\").hide()\n $(\"#Logs\").show()\n });\n\n /////Start script after run button is clicked\n $(\"#RunScript\").on(\"click\", function() {\n\n ///Если не выбрано, что чекать\n\n if (!alfayescheck.checked && !halvayescheck.checked) {\n UIkit.modal.dialog(tr('

Вы не можете запустить программу, пока не выберите хотя бы одно из действий!

')).then(function() {\n $(\"#RunScript\").attr(\"disabled\", \"disabled\")\n });\n }\n\n /////Validate resources\n if (IsResourcesValid()) {\n /////Disable run button immediately\n $(\"#RunScript\").attr(\"disabled\", \"disabled\")\n /////Start script\n if (!halvayescheck.checked) {\n $(\"#CardProgressHalva\").hide()\n } else {\n $(\"#CardProgressHalva\").show()\n }\n if (!alfayescheck.checked) {\n $(\"#PhoneCheckAlfa\").hide()\n } else {\n $(\"#PhoneCheckAlfa\").show()\n }\n Api.AcceptResources()\n } else {\n /////Ask user if he want to continue\n UIkit.modal.dialog(tr('

Вы не можете запустить программу, пока не укажите все данные, необходимые для работы!

')).then(function() {\n $(\"#RunScript\").attr(\"disabled\", \"disabled\")\n Api.AcceptResources()\n });\n }\n });\n\n /////Show all log\n $(\"#ExpandLog\").on(\"click\", function() {\n $(\"#Logs\").css(\"max-height\", \"100000px\")\n $(\"#LogsHalva\").css(\"max-height\", \"100000px\")\n $(\"#ExpandLog\").hide()\n $(\"#HideLog\").show()\n });\n\n /////Hide log partly\n $(\"#HideLog\").on(\"click\", function() {\n $(\"#Logs\").css(\"max-height\", \"400px\")\n $(\"#LogsHalva\").css(\"max-height\", \"400px\")\n $(\"#ExpandLog\").show()\n $(\"#HideLog\").hide()\n });\n\n\n /////Stop script after run button is clicked\n $(\"#StopScript\").on(\"click\", function() {\n /////Ask user if he wants to stop thread instantly\n UIkit.modal.dialog(`
\n
\n
${tr(\"Please select script stop type. If \\\"Wait each thread\\\" option is selected, script won't be stopped until all threads will finish its work and therefore this method will take some time. \\\"Stop instant\\\" will interrupt script at same second, but all thread data will be lost.\")}
\n
\n
\n
\n
\n
\n \n
`);\n\n });\n\n /////Restart script after restart button is clicked\n $(\".RestartScript\").on(\"click\", function() {\n Api.Restart()\n });\n\n /////Show script report\n $(\"#ShowScriptReport\").on(\"click\", function() {\n\n\n ///// Show modal\n let dialog = UIkit.modal(`
\n
\n \n
\n
\n

${tr('Script report')}

\n
\n
Loading ...
\n
\n
\n
`)\n\n dialog.show()\n\n let IsDialogOpen = true\n\n /////Destroy report when hidden \n UIkit.util.on(\"#ReportModal\", 'hidden', function() {\n dialog.$destroy(true);\n IsDialogOpen = false\n });\n\n let ShowScriptReport = function() {\n /////Set script report data\n Api.GetScriptReport().then((res) => {\n\n if (!IsDialogOpen)\n return\n\n $(\"#ScriptReportResult\").html(res)\n /////Autoupdate\n setTimeout(ShowScriptReport, 3000)\n })\n }\n\n ShowScriptReport()\n\n });\n\n /////Show resources report\n $(\"#ResourcesReport\").on(\"click\", function() {\n\n ///// Show modal\n let dialog = UIkit.modal(`
\n
\n \n
\n
\n

${tr('Resources report')}

\n
\n
Loading ...
\n
\n
\n
`)\n\n dialog.show()\n\n let IsDialogOpen = true\n\n /////Destroy report when hidden \n UIkit.util.on(\"#ReportModal\", 'hidden', function() {\n dialog.$destroy(true);\n IsDialogOpen = false\n\n });\n\n let ShowResourcesReport = function() {\n /////Set script report data\n Api.GetResourcesReport().then((res) => {\n\n if (!IsDialogOpen)\n return\n\n $(\"#ResourcesReportResult\").html(res)\n /////Autoupdate\n setTimeout(ShowResourcesReport, 3000)\n })\n }\n\n ShowResourcesReport()\n\n });\n\n /////Initialize menus\n\n\n /////Show about window\n $(\".About\").on(\"click\", function() {\n UIkit.modal.alert(`\n
${tr('Script name')}:
\n
AlfaChecker *
\n
${tr('Version')}:
\n
1.0.0
\n
* ${tr('Made with')} BrowserAutomationStudio.
\n `)\n });\n\n /////Show schedule\n $(\".ShowScheduler\").on(\"click\", function() {\n Api.ShowScheduler();\n });\n\n /////Hide if no scheduler inside this script\n if (typeof(Api.HasScheduler) == \"undefined\" || !Api.HasScheduler()) {\n $(\".ShowScheduler\").hide()\n }\n\n /////Download log\n $(\"#DownloadLog\").on(\"click\", function() {\n Api.DownloadLog().then((res) => {\n var blob = new Blob([res], {\n type: \"text/plain;charset=utf-8\"\n });\n saveAs(blob, \"AlfaChecker.log.txt\");\n })\n });\n\n /////Download results\n $(\".DownloadResult\").on(\"click\", function(event) {\n let el = $(event.target.closest(\".DownloadResult\"))\n let index = parseInt(el.attr(\"data-index\"))\n Api.DownloadResult(index).then((res) => {\n var blob = new Blob([res], {\n type: \"text/plain;charset=utf-8\"\n });\n saveAs(blob, \"AlfaChecker.results.\" + index + \".txt\");\n })\n });\n\n /////Restore default resources values\n $(\"#RestoreDefaults\").on(\"click\", function(event) {\n /////Find all resources with default values\n $(\"[data-default-value]\").each(function(index, el) {\n /////SetValue is function, that sets resource value\n SetValue($(el).attr(\"data-resource-name\"), $(el).attr(\"data-default-value\"))\n })\n });\n\n\n\n /////Autoload resources, which was entered last time, may be removed.\n Api.AutoLoadResources()\n\n /////After everything is initialized may show body\n $(\"body\").fadeIn()\n\n /////Events\n\n /////Start.Event.click.LanguageENSwitch\n $(\"#LanguageENSwitch\").on(\"click\", function() {\n //Code\n });\n /////End.Event.click.LanguageENSwitch\n\n /////Start.Event.change.ikfrbe\n $(\"#ikfrbe\").on(\"change\", function() {\n //Code\n });\n /////End.Event.change.ikfrbe\n\n});\n\n/////Resource values are obtained through this function when hitting run button, you can change it.\n/////For example, you can edit value entered by user, make custom validation, or replace resource system compleatelly\nfunction GetResourceValue(ResourceName) {\n return GetValue(ResourceName)\n}\n\n\n/////When script is started, or restarted, default resource values are set with SetResourceValue function.\n/////You can override default behaviour by changing this function. \nfunction SetResourceValue(ResourceName, ResourceValue) {\n return SetValue(ResourceName, ResourceValue)\n}","cssFiles":["https://bablosoft.com/buildinterface/uikit/css/uikit.css"],"jsFiles":["https://bablosoft.com/buildinterface/jquery/jquery.min.js?v=2","https://bablosoft.com/buildinterface/uikit/js/uikit.js?v=2","https://bablosoft.com/buildinterface/uikit/js/uikit-icons.js?v=2","https://bablosoft.com/buildinterface/charts/utils.js?v=2","https://bablosoft.com/buildinterface/charts/charts.js?v=2","https://bablosoft.com/buildinterface/filesaver/FileSaver.min.js?v=2","https://bablosoft.com/buildinterface/interface-extensions/extensions.js?v=2","https://bablosoft.com/buildinterface/bas-api/bas-api.js?v=2"],"css":".file-item {\n width: 150px;\n height: 130px;\n padding-top: 10px;\n padding-right: 10px;\n padding-bottom: 10px;\n padding-left: 10px;\n font-size: small;\n overflow-x: hidden;\n overflow-y: hidden;\n margin-right: 20px;\n cursor: pointer;\n}\n\n#Menu1Content li {\n margin-bottom: 20px;\n}\n\n#Menu2Content li {\n margin-bottom: 15px;\n}\n\npre {\n white-space: pre-wrap;\n overflow-wrap: break-word;\n}\n\n#Logs {\n margin-left: 10px;\n font-size: small;\n max-height: 400px;\n overflow-x: hidden;\n overflow-y: hidden;\n}\n\n.ui-panel {\n display: flex;\n flex-direction: column;\n}\n\n.ui-panel-body {\n flex-grow: 1;\n flex-shrink: 1;\n flex-basis: 0%;\n}\n\n.uk-input {\n min-width: 60px;\n}\n\n#ScriptHeaderResources {\n background-color: rgb(25, 25, 25);\n display: flex;\n border-top-width: 0px;\n border-right-width: 0px;\n border-bottom-width: 0px;\n border-left-width: 0px;\n border-top-style: none;\n border-right-style: none;\n border-bottom-style: none;\n border-left-style: none;\n border-top-color: initial;\n border-right-color: initial;\n border-bottom-color: initial;\n border-left-color: initial;\n border-image-source: initial;\n border-image-slice: initial;\n border-image-width: initial;\n border-image-outset: initial;\n border-image-repeat: initial;\n padding-top: 10px;\n padding-right: 10px;\n padding-bottom: 10px;\n padding-left: 10px;\n}\n\n#ScriptHeaderProgress {\n border-bottom-width: 1px;\n border-bottom-style: solid;\n border-bottom-color: rgb(221, 221, 221);\n background-color: rgb(255, 255, 255);\n display: flex;\n padding-top: 5px;\n padding-right: 10px;\n padding-bottom: 5px;\n padding-left: 10px;\n}\n\n.table-row {\n display: flex;\n justify-content: flex-start;\n align-items: stretch;\n flex-wrap: nowrap;\n padding-top: 0px;\n padding-bottom: 10px;\n}\n\n.table-cell {\n min-height: 25px;\n flex-grow: 1;\n flex-basis: 100%;\n}\n\n#ResourcesTabsHeader {\n display: flex;\n margin-bottom: 0px;\n background-color: #FFFFFF\n}\n\n#TabResources {\n margin-left: 0px;\n}\n\n#ResourcesTabsContent {\n margin-top: 0px;\n color: rgb(151, 151, 151);\n}\n\n#GlobalTabsHeader {\n margin-bottom: 0px;\n margin-top: 0px;\n}\n\n#ResourcesTabsContent {\n padding-top: 0px;\n}\n\n[uk-alert] {\n font-size: small;\n}\n\n.resource-label {\n margin-bottom: 5px;\n}\n\n.tab-not-valid {\n border-left-width: 2px;\n border-left-style: solid;\n border-left-color: red;\n}\n\n.uk-tab-left>*,\n.uk-tab-right>* {\n margin-bottom: 5px;\n}\n\n.tab-not-visible {\n display: none;\n}\n\n.resource-not-visible {\n display: none;\n}\n\n#LanguageRUSwitch {\n padding-top: 1px;\n padding-right: 12px;\n padding-bottom: 1px;\n padding-left: 4px;\n flex-direction: row;\n perspective: 2px;\n border-top-left-radius: 0px;\n border-top-right-radius: 0px;\n border-bottom-right-radius: 0px;\n border-bottom-left-radius: 0px;\n}\n\n#LanguageENSwitch {\n padding-top: 1px;\n padding-right: 12px;\n padding-bottom: 1px;\n padding-left: 4px;\n flex-direction: row;\n perspective: 2px;\n border-top-left-radius: 0px;\n border-top-right-radius: 0px;\n border-bottom-right-radius: 0px;\n border-bottom-left-radius: 0px;\n}\n\n#CaptchaNotification {\n cursor: pointer;\n}\n\n#CaptchaNumber {\n margin-top: 4px;\n margin-right: 15px;\n background-image: initial;\n background-position-x: initial;\n background-position-y: initial;\n background-size: initial;\n background-repeat-x: initial;\n background-repeat-y: initial;\n background-attachment: initial;\n background-origin: initial;\n background-clip: initial;\n background-color: rgb(240, 98, 30);\n font-size: 10px;\n}\n\n#StopScript {\n margin-right: 10px;\n}\n\n#CardProgress {\n font-size: small;\n}\n\n#CardProgressHalva {\n font-size: small;\n}\n\n#ShowScriptReport {\n margin-right: 10px;\n}\n\n#i0nc1i {\n justify-content: flex-start;\n width: 100%;\n line-height: 30px;\n}\n\n#i8vnnh {\n font-weight: bold;\n font-size: 22px;\n color: rgb(232, 232, 232);\n}\n\n#inhsiv {\n justify-content: flex-start;\n width: 100%;\n line-height: 30px;\n}\n\n#ihi12i {\n font-weight: bold;\n}\n\n#iw62i9 {\n margin-right: 30px;\n}\n\n#i5ptho {\n padding-top: 0px;\n padding-right: 0px;\n padding-bottom: 0px;\n padding-left: 0px;\n left: 20px;\n top: 10px;\n}\n\n#ii83pj {\n min-width: 40px;\n display: flex;\n flex-direction: column;\n}\n\n#ic58kh {\n font-size: small;\n}\n\n#i2amp8 {\n padding-top: 15px;\n}\n\n#iooorp {\n margin-bottom: 10px;\n}\n\n#iiwdlh {\n font-size: small;\n}\n\n#ikx5jl {\n padding-top: 15px;\n}\n\n#iebvz9 {\n margin-bottom: 10px;\n}\n\n#itomxi {\n padding-top: 15px;\n}\n\n#i5ubxw {\n margin-bottom: 10px;\n}\n\n#ifweti {\n padding-top: 10px;\n padding-right: 10px;\n padding-bottom: 10px;\n padding-left: 10px;\n position: relative;\n height: 200px;\n max-width: 500px;\n margin-top: 0px;\n margin-right: auto;\n margin-bottom: 0px;\n margin-left: auto;\n display: none;\n}\n\n#in2it72 {\n display: none;\n}\n\n#ilmh6h {\n margin-top: 30px;\n margin-bottom: 20px;\n}\n\n#iuyr35i {\n font-size: 22px;\n}\n\n::-webkit-scrollbar {\n width: 7px;\n}\n\n::-webkit-scrollbar-thumb {\n border-top-left-radius: 10px;\n border-top-right-radius: 10px;\n border-bottom-right-radius: 10px;\n border-bottom-left-radius: 10px;\n background-color: rgb(237, 133, 125);\n}\n\n.ruenswitches {\n display: flex;\n align-items: center;\n}\n\n#hrtyoerjo443 {\n margin-left: 0.5em;\n}\n\n#CardBrowsers {\n font-size: small;\n}\n\n#InspectBrowsers {\n margin-right: 10px;\n}\n\n#ijb6rw {\n display: flex;\n align-items: flex-start;\n flex-direction: row;\n justify-content: flex-start;\n}\n\n#iuxsox {\n display: flex;\n}\n\n#ikxm3d {\n justify-content: flex-start;\n}\n\n#i31fdi {\n min-width: 40px;\n padding-top: 0px;\n padding-right: 14px;\n padding-bottom: 0px;\n padding-left: 14px;\n}\n\n#itxxkg {\n display: flex;\n}\n\n#iaeymz {\n justify-content: flex-start;\n}\n\n#i4cs81 {\n min-width: 40px;\n padding-top: 0px;\n padding-right: 14px;\n padding-bottom: 0px;\n padding-left: 14px;\n}\n\n#i7dww4 {\n display: flex;\n align-items: flex-start;\n justify-content: flex-end;\n flex-direction: row-reverse;\n}\n\n#i6p9j8 {\n display: flex;\n}\n\n#i72x19 {\n justify-content: flex-start;\n}\n\n#idodw5 {\n min-width: 40px;\n padding-top: 0px;\n padding-right: 14px;\n padding-bottom: 0px;\n padding-left: 14px;\n}\n\n#is0nbg {\n padding-top: 15px;\n}\n\n#iwn7eg {\n margin-bottom: 10px;\n}\n\n#i5cs4g {\n padding-top: 0px;\n padding-right: 0px;\n padding-bottom: 0px;\n padding-left: 5px;\n}\n\n#i63gai {\n padding-top: 0px;\n padding-right: 0px;\n padding-bottom: 0px;\n padding-left: 0px;\n}\n\n#ghr43afg {\n display: flex;\n align-items: flex-start;\n flex-direction: row;\n justify-content: flex-start;\n}\n\n#LogsHalva {\n margin-left: 10px;\n font-size: small;\n max-height: 400px;\n overflow-x: hidden;\n overflow-y: hidden;\n}\n\n#HalvaHide {\n float: left;\n line-height: 21px;\n text-align: center;\n padding-top: 0px;\n padding-right: 10px;\n padding-bottom: 0px;\n padding-left: 10px;\n}\n\n#ir522p {\n flex-direction: row;\n align-items: center;\n align-self: auto;\n justify-content: flex-start;\n display: block;\n}\n\n#HalvaShow {\n float: left;\n padding-top: 0px;\n padding-right: 10px;\n padding-bottom: 0px;\n padding-left: 10px;\n line-height: 21px;\n}\n\n#i2t33hi {\n font-size: 13px;\n}\n\n#i0h2b27 {\n font-size: 13px;\n}\n\n.switch {\n position: relative;\n display: inline-block;\n width: 30px;\n height: 17px;\n}\n\n.switch input {\n opacity: 0;\n width: 0px;\n height: 0px;\n}\n\n.slider {\n position: absolute;\n cursor: pointer;\n top: 0px;\n left: 0px;\n right: 0px;\n bottom: 0px;\n background-color: rgb(204, 204, 204);\n transition-duration: 0.4s;\n transition-timing-function: ease;\n transition-delay: 0s;\n transition-property: all;\n}\n\n.slider::before {\n position: absolute;\n content: \"\";\n height: 13px;\n width: 13px;\n left: 2px;\n bottom: 1.3px;\n background-color: white;\n transition-duration: 0.4s;\n transition-timing-function: ease;\n transition-delay: 0s;\n transition-property: all;\n}\n\ninput:checked+.slider {\n background-color: rgb(30, 135, 240);\n}\n\ninput:focus+.slider {\n box-shadow: rgb(30, 135, 240) 0px 0px 1px;\n}\n\ninput:checked+.slider::before {\n transform: translateX(13px);\n}\n\n.slider.round {\n border-top-left-radius: 34px;\n border-top-right-radius: 34px;\n border-bottom-right-radius: 34px;\n border-bottom-left-radius: 34px;\n}\n\n.slider.round::before {\n border-top-left-radius: 50%;\n border-top-right-radius: 50%;\n border-bottom-right-radius: 50%;\n border-bottom-left-radius: 50%;\n}\n\n.header {\n padding-top: 10px;\n padding-right: 10px;\n padding-bottom: 10px;\n padding-left: 10px;\n}\n\n.body {\n padding-bottom: 70px;\n}\n\nbody {\n overflow-x: hidden;\n background-color: rgb(15, 15, 15);\n}\n\n#RunScript {\n justify-content: space-between;\n flex-direction: row;\n align-items: flex-start;\n align-self: auto;\n display: block;\n float: none;\n position: static;\n}\n\n#i8g1kg {\n padding-top: 0px;\n padding-right: 0px;\n padding-bottom: 10px;\n padding-left: 0px;\n background-color: rgb(15, 15, 15);\n}\n\n#i2cjj {\n margin-top: 20px;\n margin-right: 20px;\n margin-bottom: 20px;\n margin-left: 20px;\n color: rgb(102, 102, 102);\n background-color: rgb(25, 25, 25);\n border-top-left-radius: 5px;\n border-top-right-radius: 5px;\n border-bottom-right-radius: 5px;\n border-bottom-left-radius: 5px;\n border-top-width: 1px;\n border-right-width: 1px;\n border-bottom-width: 1px;\n border-left-width: 1px;\n border-top-style: solid;\n border-right-style: solid;\n border-bottom-style: solid;\n border-left-style: solid;\n border-top-color: rgba(255, 255, 255, 0.3);\n border-right-color: rgba(255, 255, 255, 0.3);\n border-bottom-color: rgba(255, 255, 255, 0.3);\n border-left-color: rgba(255, 255, 255, 0.3);\n border-image-source: initial;\n border-image-slice: initial;\n border-image-width: initial;\n border-image-outset: initial;\n border-image-repeat: initial;\n}\n\n#iqqva {\n margin-top: 20px;\n margin-right: 20px;\n margin-bottom: -1px;\n margin-left: 20px;\n background-color: rgb(25, 25, 25);\n border-top-left-radius: 5px;\n border-top-right-radius: 5px;\n border-bottom-right-radius: 0px;\n border-bottom-left-radius: 0px;\n border-top-width: 1px;\n border-right-width: 1px;\n border-bottom-width: 1px;\n border-left-width: 1px;\n border-top-style: solid;\n border-right-style: solid;\n border-bottom-style: solid;\n border-left-style: solid;\n border-top-color: rgba(255, 255, 255, 0.3);\n border-right-color: rgba(255, 255, 255, 0.3);\n border-bottom-color: rgba(255, 255, 255, 0.3);\n border-left-color: rgba(255, 255, 255, 0.3);\n border-image-source: initial;\n border-image-slice: initial;\n border-image-width: initial;\n border-image-outset: initial;\n border-image-repeat: initial;\n}\n\n#iab2n {\n margin-top: 0px;\n margin-right: 20px;\n margin-bottom: 20px;\n margin-left: 20px;\n background-color: rgb(25, 25, 25);\n border-top-left-radius: 0px;\n border-top-right-radius: 0px;\n border-bottom-right-radius: 5px;\n border-bottom-left-radius: 5px;\n border-top-width: 1px;\n border-right-width: 1px;\n border-bottom-width: 1px;\n border-left-width: 1px;\n border-top-style: solid;\n border-right-style: solid;\n border-bottom-style: solid;\n border-left-style: solid;\n border-top-color: rgba(255, 255, 255, 0.3);\n border-right-color: rgba(255, 255, 255, 0.3);\n border-bottom-color: rgba(255, 255, 255, 0.3);\n border-left-color: rgba(255, 255, 255, 0.3);\n border-image-source: initial;\n border-image-slice: initial;\n border-image-width: initial;\n border-image-outset: initial;\n border-image-repeat: initial;\n}\n\n#i4t2h {\n margin-top: 20px;\n margin-right: 20px;\n margin-bottom: 20px;\n margin-left: 20px;\n background-color: rgb(25, 25, 25);\n border-top-left-radius: 5px;\n border-top-right-radius: 5px;\n border-bottom-right-radius: 5px;\n border-bottom-left-radius: 5px;\n border-top-width: 1px;\n border-right-width: 1px;\n border-bottom-width: 1px;\n border-left-width: 1px;\n border-top-style: solid;\n border-right-style: solid;\n border-bottom-style: solid;\n border-left-style: solid;\n border-top-color: rgba(255, 255, 255, 0.3);\n border-right-color: rgba(255, 255, 255, 0.3);\n border-bottom-color: rgba(255, 255, 255, 0.3);\n border-left-color: rgba(255, 255, 255, 0.3);\n border-image-source: initial;\n border-image-slice: initial;\n border-image-width: initial;\n border-image-outset: initial;\n border-image-repeat: initial;\n}\n\n#iud4g {\n margin-top: 20px;\n margin-right: 20px;\n margin-bottom: 20px;\n margin-left: 20px;\n background-color: rgb(25, 25, 25);\n border-top-left-radius: 5px;\n border-top-right-radius: 5px;\n border-bottom-right-radius: 5px;\n border-bottom-left-radius: 5px;\n border-top-width: 1px;\n border-right-width: 1px;\n border-bottom-width: 1px;\n border-left-width: 1px;\n border-top-style: solid;\n border-right-style: solid;\n border-bottom-style: solid;\n border-left-style: solid;\n border-top-color: rgba(255, 255, 255, 0.3);\n border-right-color: rgba(255, 255, 255, 0.3);\n border-bottom-color: rgba(255, 255, 255, 0.3);\n border-left-color: rgba(255, 255, 255, 0.3);\n border-image-source: initial;\n border-image-slice: initial;\n border-image-width: initial;\n border-image-outset: initial;\n border-image-repeat: initial;\n}\n\n#ipvyy {\n margin-top: 20px;\n margin-right: 20px;\n margin-bottom: 20px;\n margin-left: 20px;\n background-color: rgb(25, 25, 25);\n border-top-left-radius: 5px;\n border-top-right-radius: 5px;\n border-bottom-right-radius: 5px;\n border-bottom-left-radius: 5px;\n border-top-width: 1px;\n border-right-width: 1px;\n border-bottom-width: 1px;\n border-left-width: 1px;\n border-top-style: solid;\n border-right-style: solid;\n border-bottom-style: solid;\n border-left-style: solid;\n border-top-color: rgba(255, 255, 255, 0.3);\n border-right-color: rgba(255, 255, 255, 0.3);\n border-bottom-color: rgba(255, 255, 255, 0.3);\n border-left-color: rgba(255, 255, 255, 0.3);\n border-image-source: initial;\n border-image-slice: initial;\n border-image-width: initial;\n border-image-outset: initial;\n border-image-repeat: initial;\n}\n\n#ije5e {\n margin-top: 20px;\n margin-right: 20px;\n margin-bottom: 20px;\n margin-left: 20px;\n background-color: rgb(25, 25, 25);\n border-top-left-radius: 5px;\n border-top-right-radius: 5px;\n border-bottom-right-radius: 5px;\n border-bottom-left-radius: 5px;\n border-top-width: 1px;\n border-right-width: 1px;\n border-bottom-width: 1px;\n border-left-width: 1px;\n border-top-style: solid;\n border-right-style: solid;\n border-bottom-style: solid;\n border-left-style: solid;\n border-top-color: rgba(255, 255, 255, 0.3);\n border-right-color: rgba(255, 255, 255, 0.3);\n border-bottom-color: rgba(255, 255, 255, 0.3);\n border-left-color: rgba(255, 255, 255, 0.3);\n border-image-source: initial;\n border-image-slice: initial;\n border-image-width: initial;\n border-image-outset: initial;\n border-image-repeat: initial;\n}\n\n#ih0gi {\n margin-top: 20px;\n margin-right: 20px;\n margin-bottom: 20px;\n margin-left: 20px;\n background-color: rgb(25, 25, 25);\n border-top-left-radius: 5px;\n border-top-right-radius: 5px;\n border-bottom-right-radius: 5px;\n border-bottom-left-radius: 5px;\n border-top-width: 1px;\n border-right-width: 1px;\n border-bottom-width: 1px;\n border-left-width: 1px;\n border-top-style: solid;\n border-right-style: solid;\n border-bottom-style: solid;\n border-left-style: solid;\n border-top-color: rgba(255, 255, 255, 0.3);\n border-right-color: rgba(255, 255, 255, 0.3);\n border-bottom-color: rgba(255, 255, 255, 0.3);\n border-left-color: rgba(255, 255, 255, 0.3);\n border-image-source: initial;\n border-image-slice: initial;\n border-image-width: initial;\n border-image-outset: initial;\n border-image-repeat: initial;\n}\n\n#io8nh {\n margin-top: 20px;\n margin-right: 20px;\n margin-bottom: 20px;\n margin-left: 20px;\n background-color: rgb(25, 25, 25);\n border-top-left-radius: 5px;\n border-top-right-radius: 5px;\n border-bottom-right-radius: 5px;\n border-bottom-left-radius: 5px;\n border-top-width: 1px;\n border-right-width: 1px;\n border-bottom-width: 1px;\n border-left-width: 1px;\n border-top-style: solid;\n border-right-style: solid;\n border-bottom-style: solid;\n border-left-style: solid;\n border-top-color: rgba(255, 255, 255, 0.3);\n border-right-color: rgba(255, 255, 255, 0.3);\n border-bottom-color: rgba(255, 255, 255, 0.3);\n border-left-color: rgba(255, 255, 255, 0.3);\n border-image-source: initial;\n border-image-slice: initial;\n border-image-width: initial;\n border-image-outset: initial;\n border-image-repeat: initial;\n}\n\n#ilcqk {\n margin-top: 20px;\n margin-right: 20px;\n margin-bottom: 20px;\n margin-left: 20px;\n background-color: rgb(25, 25, 25);\n border-top-left-radius: 5px;\n border-top-right-radius: 5px;\n border-bottom-right-radius: 5px;\n border-bottom-left-radius: 5px;\n border-top-width: 1px;\n border-right-width: 1px;\n border-bottom-width: 1px;\n border-left-width: 1px;\n border-top-style: solid;\n border-right-style: solid;\n border-bottom-style: solid;\n border-left-style: solid;\n border-top-color: rgba(255, 255, 255, 0.3);\n border-right-color: rgba(255, 255, 255, 0.3);\n border-bottom-color: rgba(255, 255, 255, 0.3);\n border-left-color: rgba(255, 255, 255, 0.3);\n border-image-source: initial;\n border-image-slice: initial;\n border-image-width: initial;\n border-image-outset: initial;\n border-image-repeat: initial;\n}\n\n#in507 {\n margin-top: 20px;\n margin-right: 20px;\n margin-bottom: 20px;\n margin-left: 20px;\n background-color: rgb(25, 25, 25);\n border-top-left-radius: 5px;\n border-top-right-radius: 5px;\n border-bottom-right-radius: 5px;\n border-bottom-left-radius: 5px;\n border-top-width: 1px;\n border-right-width: 1px;\n border-bottom-width: 1px;\n border-left-width: 1px;\n border-top-style: solid;\n border-right-style: solid;\n border-bottom-style: solid;\n border-left-style: solid;\n border-top-color: rgba(255, 255, 255, 0.3);\n border-right-color: rgba(255, 255, 255, 0.3);\n border-bottom-color: rgba(255, 255, 255, 0.3);\n border-left-color: rgba(255, 255, 255, 0.3);\n border-image-source: initial;\n border-image-slice: initial;\n border-image-width: initial;\n border-image-outset: initial;\n border-image-repeat: initial;\n}\n\n#inl1ep {\n margin-top: 20px;\n margin-right: 20px;\n margin-bottom: 20px;\n margin-left: 20px;\n background-color: rgb(25, 25, 25);\n border-top-left-radius: 5px;\n border-top-right-radius: 5px;\n border-bottom-right-radius: 5px;\n border-bottom-left-radius: 5px;\n border-top-width: 1px;\n border-right-width: 1px;\n border-bottom-width: 1px;\n border-left-width: 1px;\n border-top-style: solid;\n border-right-style: solid;\n border-bottom-style: solid;\n border-left-style: solid;\n border-top-color: rgba(255, 255, 255, 0.3);\n border-right-color: rgba(255, 255, 255, 0.3);\n border-bottom-color: rgba(255, 255, 255, 0.3);\n border-left-color: rgba(255, 255, 255, 0.3);\n border-image-source: initial;\n border-image-slice: initial;\n border-image-width: initial;\n border-image-outset: initial;\n border-image-repeat: initial;\n}\n\n#ipk4iu {\n margin-top: 20px;\n margin-right: 20px;\n margin-bottom: 20px;\n margin-left: 20px;\n background-color: rgb(25, 25, 25);\n border-top-left-radius: 5px;\n border-top-right-radius: 5px;\n border-bottom-right-radius: 5px;\n border-bottom-left-radius: 5px;\n border-top-width: 1px;\n border-right-width: 1px;\n border-bottom-width: 1px;\n border-left-width: 1px;\n border-top-style: solid;\n border-right-style: solid;\n border-bottom-style: solid;\n border-left-style: solid;\n border-top-color: rgba(255, 255, 255, 0.3);\n border-right-color: rgba(255, 255, 255, 0.3);\n border-bottom-color: rgba(255, 255, 255, 0.3);\n border-left-color: rgba(255, 255, 255, 0.3);\n border-image-source: initial;\n border-image-slice: initial;\n border-image-width: initial;\n border-image-outset: initial;\n border-image-repeat: initial;\n}\n\n#i81em {\n color: rgb(154, 154, 154);\n}\n\n#ieu4z {\n color: rgb(154, 154, 154);\n}\n\n#indxa {\n color: rgb(154, 154, 154);\n}\n\n#inav7 {\n color: rgb(154, 154, 154);\n}\n\n#i1qb5 {\n color: rgb(154, 154, 154);\n}\n\n#i6okk {\n color: rgb(154, 154, 154);\n}\n\n#i2tuf {\n color: rgb(154, 154, 154);\n}\n\n#izmcb {\n color: rgb(154, 154, 154);\n}\n\n#ixge2 {\n color: rgb(154, 154, 154);\n}\n\n#iu3ko {\n color: rgb(154, 154, 154);\n}\n\n#iz0tk {\n color: rgb(154, 154, 154);\n}\n\n#ifk801 {\n color: rgb(154, 154, 154);\n}\n\n#iyvy63 {\n color: rgb(154, 154, 154);\n}\n\n#itz4x {\n background-color: rgb(59, 59, 59);\n border-top-width: 1px;\n border-right-width: 1px;\n border-bottom-width: 1px;\n border-left-width: 1px;\n border-top-style: none;\n border-right-style: none;\n border-bottom-style: none;\n border-left-style: none;\n border-top-color: rgb(210, 220, 230);\n border-right-color: rgb(210, 220, 230);\n border-bottom-color: rgb(210, 220, 230);\n border-left-color: rgb(210, 220, 230);\n border-image-source: initial;\n border-image-slice: initial;\n border-image-width: initial;\n border-image-outset: initial;\n border-image-repeat: initial;\n border-top-left-radius: 5px;\n border-top-right-radius: 5px;\n border-bottom-right-radius: 5px;\n border-bottom-left-radius: 5px;\n color: rgb(205, 205, 205);\n}\n\n#izfzz {\n background-color: rgb(59, 59, 59);\n border-top-width: 1px;\n border-right-width: 1px;\n border-bottom-width: 1px;\n border-left-width: 1px;\n border-top-style: none;\n border-right-style: none;\n border-bottom-style: none;\n border-left-style: none;\n border-top-color: rgb(189, 210, 231);\n border-right-color: rgb(189, 210, 231);\n border-bottom-color: rgb(189, 210, 231);\n border-left-color: rgb(189, 210, 231);\n border-image-source: initial;\n border-image-slice: initial;\n border-image-width: initial;\n border-image-outset: initial;\n border-image-repeat: initial;\n border-top-left-radius: 5px;\n border-top-right-radius: 5px;\n border-bottom-right-radius: 5px;\n border-bottom-left-radius: 5px;\n color: rgb(205, 205, 205);\n}\n\n#ih7kl {\n background-color: rgb(15, 15, 15);\n border-top-width: 1px;\n border-right-width: 1px;\n border-bottom-width: 1px;\n border-left-width: 1px;\n border-top-style: none;\n border-right-style: none;\n border-bottom-style: none;\n border-left-style: none;\n border-top-color: rgb(179, 205, 232);\n border-right-color: rgb(179, 205, 232);\n border-bottom-color: rgb(179, 205, 232);\n border-left-color: rgb(179, 205, 232);\n border-image-source: initial;\n border-image-slice: initial;\n border-image-width: initial;\n border-image-outset: initial;\n border-image-repeat: initial;\n border-top-left-radius: 5px;\n border-top-right-radius: 5px;\n border-bottom-right-radius: 5px;\n border-bottom-left-radius: 5px;\n color: rgb(205, 205, 205);\n}\n\n#iqr5c {\n background-color: rgb(15, 15, 15);\n border-top-width: 1px;\n border-right-width: 1px;\n border-bottom-width: 1px;\n border-left-width: 1px;\n border-top-style: none;\n border-right-style: none;\n border-bottom-style: none;\n border-left-style: none;\n border-top-color: rgb(211, 221, 230);\n border-right-color: rgb(211, 221, 230);\n border-bottom-color: rgb(211, 221, 230);\n border-left-color: rgb(211, 221, 230);\n border-image-source: initial;\n border-image-slice: initial;\n border-image-width: initial;\n border-image-outset: initial;\n border-image-repeat: initial;\n border-top-left-radius: 5px;\n border-top-right-radius: 5px;\n border-bottom-right-radius: 5px;\n border-bottom-left-radius: 5px;\n color: rgb(205, 205, 205);\n}\n\n#ic9u9 {\n background-color: rgb(15, 15, 15);\n border-top-width: 1px;\n border-right-width: 1px;\n border-bottom-width: 1px;\n border-left-width: 1px;\n border-top-style: none;\n border-right-style: none;\n border-bottom-style: none;\n border-left-style: none;\n border-top-color: rgb(179, 205, 232);\n border-right-color: rgb(179, 205, 232);\n border-bottom-color: rgb(179, 205, 232);\n border-left-color: rgb(179, 205, 232);\n border-image-source: initial;\n border-image-slice: initial;\n border-image-width: initial;\n border-image-outset: initial;\n border-image-repeat: initial;\n border-top-left-radius: 5px;\n border-top-right-radius: 5px;\n border-bottom-right-radius: 5px;\n border-bottom-left-radius: 5px;\n}\n\n#i10pg {\n background-color: rgb(15, 15, 15);\n border-top-width: 1px;\n border-right-width: 1px;\n border-bottom-width: 1px;\n border-left-width: 1px;\n border-top-style: none;\n border-right-style: none;\n border-bottom-style: none;\n border-left-style: none;\n border-top-color: rgb(205, 218, 230);\n border-right-color: rgb(205, 218, 230);\n border-bottom-color: rgb(205, 218, 230);\n border-left-color: rgb(205, 218, 230);\n border-image-source: initial;\n border-image-slice: initial;\n border-image-width: initial;\n border-image-outset: initial;\n border-image-repeat: initial;\n border-top-left-radius: 5px;\n border-top-right-radius: 5px;\n border-bottom-right-radius: 5px;\n border-bottom-left-radius: 5px;\n}\n\n#i0mwl {\n background-color: rgb(15, 15, 15);\n border-top-width: 1px;\n border-right-width: 1px;\n border-bottom-width: 1px;\n border-left-width: 1px;\n border-top-style: none;\n border-right-style: none;\n border-bottom-style: none;\n border-left-style: none;\n border-top-color: rgb(197, 214, 231);\n border-right-color: rgb(197, 214, 231);\n border-bottom-color: rgb(197, 214, 231);\n border-left-color: rgb(197, 214, 231);\n border-image-source: initial;\n border-image-slice: initial;\n border-image-width: initial;\n border-image-outset: initial;\n border-image-repeat: initial;\n border-top-left-radius: 5px;\n border-top-right-radius: 5px;\n border-bottom-right-radius: 5px;\n border-bottom-left-radius: 5px;\n}\n\n#im5a1 {\n background-color: rgb(15, 15, 15);\n border-top-width: 1px;\n border-right-width: 1px;\n border-bottom-width: 1px;\n border-left-width: 1px;\n border-top-style: none;\n border-right-style: none;\n border-bottom-style: none;\n border-left-style: none;\n border-top-color: rgb(205, 218, 230);\n border-right-color: rgb(205, 218, 230);\n border-bottom-color: rgb(205, 218, 230);\n border-left-color: rgb(205, 218, 230);\n border-image-source: initial;\n border-image-slice: initial;\n border-image-width: initial;\n border-image-outset: initial;\n border-image-repeat: initial;\n border-top-left-radius: 5px;\n border-top-right-radius: 5px;\n border-bottom-right-radius: 5px;\n border-bottom-left-radius: 5px;\n}\n\n#i0nea {\n background-color: rgb(15, 15, 15);\n border-top-width: 1px;\n border-right-width: 1px;\n border-bottom-width: 1px;\n border-left-width: 1px;\n border-top-style: none;\n border-right-style: none;\n border-bottom-style: none;\n border-left-style: none;\n border-top-color: rgb(189, 210, 231);\n border-right-color: rgb(189, 210, 231);\n border-bottom-color: rgb(189, 210, 231);\n border-left-color: rgb(189, 210, 231);\n border-image-source: initial;\n border-image-slice: initial;\n border-image-width: initial;\n border-image-outset: initial;\n border-image-repeat: initial;\n border-top-left-radius: 5px;\n border-top-right-radius: 5px;\n border-bottom-right-radius: 5px;\n border-bottom-left-radius: 5px;\n}\n\n#ifedvi {\n background-color: rgb(15, 15, 15);\n border-top-width: 1px;\n border-right-width: 1px;\n border-bottom-width: 1px;\n border-left-width: 1px;\n border-top-style: none;\n border-right-style: none;\n border-bottom-style: none;\n border-left-style: none;\n border-top-color: rgb(188, 210, 231);\n border-right-color: rgb(188, 210, 231);\n border-bottom-color: rgb(188, 210, 231);\n border-left-color: rgb(188, 210, 231);\n border-image-source: initial;\n border-image-slice: initial;\n border-image-width: initial;\n border-image-outset: initial;\n border-image-repeat: initial;\n border-top-left-radius: 5px;\n border-top-right-radius: 5px;\n border-bottom-right-radius: 5px;\n border-bottom-left-radius: 5px;\n}\n\n#ieudsg {\n background-color: rgb(15, 15, 15);\n border-top-width: 1px;\n border-right-width: 1px;\n border-bottom-width: 1px;\n border-left-width: 1px;\n border-top-style: none;\n border-right-style: none;\n border-bottom-style: none;\n border-left-style: none;\n border-top-color: rgb(208, 219, 230);\n border-right-color: rgb(208, 219, 230);\n border-bottom-color: rgb(208, 219, 230);\n border-left-color: rgb(208, 219, 230);\n border-image-source: initial;\n border-image-slice: initial;\n border-image-width: initial;\n border-image-outset: initial;\n border-image-repeat: initial;\n border-top-left-radius: 5px;\n border-top-right-radius: 5px;\n border-bottom-right-radius: 5px;\n border-bottom-left-radius: 5px;\n}\n\n#iuckwt {\n background-color: rgb(15, 15, 15);\n border-top-width: 1px;\n border-right-width: 1px;\n border-bottom-width: 1px;\n border-left-width: 1px;\n border-top-style: none;\n border-right-style: none;\n border-bottom-style: none;\n border-left-style: none;\n border-top-color: rgb(179, 205, 232);\n border-right-color: rgb(179, 205, 232);\n border-bottom-color: rgb(179, 205, 232);\n border-left-color: rgb(179, 205, 232);\n border-image-source: initial;\n border-image-slice: initial;\n border-image-width: initial;\n border-image-outset: initial;\n border-image-repeat: initial;\n border-top-left-radius: 5px;\n border-top-right-radius: 5px;\n border-bottom-right-radius: 5px;\n border-bottom-left-radius: 5px;\n}\n\n#iku46g {\n margin-top: 20px;\n margin-right: 20px;\n margin-bottom: 20px;\n margin-left: 20px;\n background-color: rgb(25, 25, 25);\n border-top-left-radius: 5px;\n border-top-right-radius: 5px;\n border-bottom-right-radius: 5px;\n border-bottom-left-radius: 5px;\n border-top-width: 1px;\n border-right-width: 1px;\n border-bottom-width: 1px;\n border-left-width: 1px;\n border-top-style: solid;\n border-right-style: solid;\n border-bottom-style: solid;\n border-left-style: solid;\n border-top-color: rgba(255, 255, 255, 0.3);\n border-right-color: rgba(255, 255, 255, 0.3);\n border-bottom-color: rgba(255, 255, 255, 0.3);\n border-left-color: rgba(255, 255, 255, 0.3);\n border-image-source: initial;\n border-image-slice: initial;\n border-image-width: initial;\n border-image-outset: initial;\n border-image-repeat: initial;\n}\n\n#iu8f8b {\n color: rgb(154, 154, 154);\n}\n\n#i05f83 {\n background-color: rgb(15, 15, 15);\n border-top-width: 1px;\n border-right-width: 1px;\n border-bottom-width: 1px;\n border-left-width: 1px;\n border-top-style: none;\n border-right-style: none;\n border-bottom-style: none;\n border-left-style: none;\n border-top-color: rgb(179, 205, 232);\n border-right-color: rgb(179, 205, 232);\n border-bottom-color: rgb(179, 205, 232);\n border-left-color: rgb(179, 205, 232);\n border-image-source: initial;\n border-image-slice: initial;\n border-image-width: initial;\n border-image-outset: initial;\n border-image-repeat: initial;\n border-top-left-radius: 5px;\n border-top-right-radius: 5px;\n border-bottom-right-radius: 5px;\n border-bottom-left-radius: 5px;\n color: rgb(205, 205, 205);\n}\n\n#iigzz {\n background-color: rgb(15, 15, 15);\n}\n\n#TabGlobal {\n background-color: rgb(15, 15, 15);\n}\n\nuk-tab {\n display: flex;\n flex-wrap: wrap;\n margin-left: -20px;\n padding-top: 0px;\n padding-right: 0px;\n padding-bottom: 0px;\n padding-left: 0px;\n list-style-position: initial;\n list-style-image: initial;\n list-style-type: none;\n position: relative;\n}\n\n.uk-tab::before {\n content: \"\";\n position: absolute;\n bottom: 0px;\n left: 20px;\n right: 0px;\n border-bottom-width: 1px;\n border-bottom-style: solid;\n border-bottom-color: rgb(229, 229, 229);\n}\n\n.uk-tab>* {\n flex-grow: 0;\n flex-shrink: 0;\n flex-basis: auto;\n padding-left: 20px;\n position: relative;\n}\n\n.uk-tab>*>a {\n display: block;\n text-align: center;\n padding-top: 5px;\n padding-right: 10px;\n padding-bottom: 5px;\n padding-left: 10px;\n color: rgb(255, 255, 255);\n border-bottom-width: 0px;\n border-bottom-style: solid;\n border-bottom-color: transparent;\n font-size: 0.875rem;\n transition-duration: 0.1s;\n transition-timing-function: ease-in-out;\n transition-delay: 0s;\n transition-property: color;\n}\n\n.uk-tab>*>a:hover,\n.uk-tab>*>a:focus {\n color: rgb(165, 225, 222);\n text-decoration-line: none;\n text-decoration-thickness: initial;\n text-decoration-style: initial;\n text-decoration-color: initial;\n}\n\n.uk-tab>.uk-active>a {\n color: rgb(202, 237, 213);\n border-top-color: rgb(30, 135, 240);\n border-right-color: rgb(30, 135, 240);\n border-bottom-color: rgb(30, 135, 240);\n border-left-color: rgb(30, 135, 240);\n}\n\n.uk-tab>.uk-disabled>a {\n color: rgb(153, 153, 153);\n}\n\n.uk-tab-bottom>*>a {\n border-bottom-width: initial;\n border-bottom-style: none;\n border-bottom-color: initial;\n border-top-width: initial;\n border-top-style: none;\n border-top-color: initial;\n}\n\n.uk-tab-left {\n flex-direction: column;\n margin-left: 0px;\n}\n\n.uk-tab-left>*,\n.uk-tab-right>* {\n padding-left: 0px;\n}\n\n.uk-tab-left::before {\n top: 0px;\n bottom: 0px;\n left: auto;\n right: 0px;\n border-bottom-width: initial;\n border-bottom-style: none;\n border-bottom-color: initial;\n border-left-width: initial;\n border-left-style: none;\n border-left-color: initial;\n}\n\n.uk-tab-left>*>a {\n text-align: left;\n border-right-width: 1px;\n border-right-style: solid;\n border-right-color: transparent;\n border-bottom-width: initial;\n border-bottom-style: none;\n border-bottom-color: initial;\n}\n\n.uk-tab-right>*>a {\n text-align: left;\n border-left-width: 1px;\n border-left-style: solid;\n border-left-color: transparent;\n border-bottom-width: initial;\n border-bottom-style: none;\n border-bottom-color: initial;\n}\n\n.uk-tab .uk-dropdown {\n margin-left: 30px;\n}","html":"
\n\t\n\t\n
\n\n"}