├── LICENSE ├── README.md ├── SupremeSystem.sln ├── SupremeSystem.sln.DotSettings ├── SupremeSystem.sln.DotSettings.user ├── SupremeSystem ├── Program.cs ├── SupremeSystem.csproj ├── SupremeSystem.csproj.DotSettings └── src │ ├── Captcha │ ├── 2Captcha │ │ ├── Json.cs │ │ └── TwoCaptcha.cs │ ├── AntiCaptcha │ │ ├── AntiCaptcha.cs │ │ └── Json.cs │ ├── Settings.cs │ └── Urls.cs │ ├── Discord │ ├── Features │ │ ├── BuildNumber.cs │ │ ├── Friends.cs │ │ ├── Join.cs │ │ └── SendMessage.cs │ └── Json │ │ ├── JError.cs │ │ └── JToken.cs │ ├── Handlers │ └── IHttpHandler.cs │ ├── Imports.cs │ └── MailTM │ ├── Json.cs │ └── Mail.cs └── global.json /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trollicus/effective-invention/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trollicus/effective-invention/HEAD/README.md -------------------------------------------------------------------------------- /SupremeSystem.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trollicus/effective-invention/HEAD/SupremeSystem.sln -------------------------------------------------------------------------------- /SupremeSystem.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trollicus/effective-invention/HEAD/SupremeSystem.sln.DotSettings -------------------------------------------------------------------------------- /SupremeSystem.sln.DotSettings.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trollicus/effective-invention/HEAD/SupremeSystem.sln.DotSettings.user -------------------------------------------------------------------------------- /SupremeSystem/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trollicus/effective-invention/HEAD/SupremeSystem/Program.cs -------------------------------------------------------------------------------- /SupremeSystem/SupremeSystem.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trollicus/effective-invention/HEAD/SupremeSystem/SupremeSystem.csproj -------------------------------------------------------------------------------- /SupremeSystem/SupremeSystem.csproj.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trollicus/effective-invention/HEAD/SupremeSystem/SupremeSystem.csproj.DotSettings -------------------------------------------------------------------------------- /SupremeSystem/src/Captcha/2Captcha/Json.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trollicus/effective-invention/HEAD/SupremeSystem/src/Captcha/2Captcha/Json.cs -------------------------------------------------------------------------------- /SupremeSystem/src/Captcha/2Captcha/TwoCaptcha.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trollicus/effective-invention/HEAD/SupremeSystem/src/Captcha/2Captcha/TwoCaptcha.cs -------------------------------------------------------------------------------- /SupremeSystem/src/Captcha/AntiCaptcha/AntiCaptcha.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trollicus/effective-invention/HEAD/SupremeSystem/src/Captcha/AntiCaptcha/AntiCaptcha.cs -------------------------------------------------------------------------------- /SupremeSystem/src/Captcha/AntiCaptcha/Json.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trollicus/effective-invention/HEAD/SupremeSystem/src/Captcha/AntiCaptcha/Json.cs -------------------------------------------------------------------------------- /SupremeSystem/src/Captcha/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trollicus/effective-invention/HEAD/SupremeSystem/src/Captcha/Settings.cs -------------------------------------------------------------------------------- /SupremeSystem/src/Captcha/Urls.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trollicus/effective-invention/HEAD/SupremeSystem/src/Captcha/Urls.cs -------------------------------------------------------------------------------- /SupremeSystem/src/Discord/Features/BuildNumber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trollicus/effective-invention/HEAD/SupremeSystem/src/Discord/Features/BuildNumber.cs -------------------------------------------------------------------------------- /SupremeSystem/src/Discord/Features/Friends.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trollicus/effective-invention/HEAD/SupremeSystem/src/Discord/Features/Friends.cs -------------------------------------------------------------------------------- /SupremeSystem/src/Discord/Features/Join.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trollicus/effective-invention/HEAD/SupremeSystem/src/Discord/Features/Join.cs -------------------------------------------------------------------------------- /SupremeSystem/src/Discord/Features/SendMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trollicus/effective-invention/HEAD/SupremeSystem/src/Discord/Features/SendMessage.cs -------------------------------------------------------------------------------- /SupremeSystem/src/Discord/Json/JError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trollicus/effective-invention/HEAD/SupremeSystem/src/Discord/Json/JError.cs -------------------------------------------------------------------------------- /SupremeSystem/src/Discord/Json/JToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trollicus/effective-invention/HEAD/SupremeSystem/src/Discord/Json/JToken.cs -------------------------------------------------------------------------------- /SupremeSystem/src/Handlers/IHttpHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trollicus/effective-invention/HEAD/SupremeSystem/src/Handlers/IHttpHandler.cs -------------------------------------------------------------------------------- /SupremeSystem/src/Imports.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trollicus/effective-invention/HEAD/SupremeSystem/src/Imports.cs -------------------------------------------------------------------------------- /SupremeSystem/src/MailTM/Json.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trollicus/effective-invention/HEAD/SupremeSystem/src/MailTM/Json.cs -------------------------------------------------------------------------------- /SupremeSystem/src/MailTM/Mail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trollicus/effective-invention/HEAD/SupremeSystem/src/MailTM/Mail.cs -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trollicus/effective-invention/HEAD/global.json --------------------------------------------------------------------------------