I tried to login from another pc, but it didn't work.
Unzip the script and install it. At startup, enter the authorization data of the bablosoft personal account in which the script license was purchased: Sphere.rar
open website
execute javascript on the page to delete all cookies for the page
function deleteAllCookies() {
var cookies = document.cookie.split(";");
for (var i = 0; i < cookies.length; i++) {
var cookie = cookies[i];
var eqPos = cookie.indexOf("=");
var name = eqPos > -1 ? cookie.substr(0, eqPos) : cookie;
document.cookie = name + "=;expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/";
}
}