gitextract_1b3dwlvx/ ├── .editorconfig ├── .gitattributes ├── .github/ │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.yml │ │ ├── config.yml │ │ ├── feature_request.yml │ │ └── game_request.yml │ └── workflows/ │ ├── Build-Events-Zip.yml │ └── Build-Pre-Release.yml ├── .gitignore ├── .gitmodules ├── .idea/ │ └── .idea.XAU/ │ └── .idea/ │ ├── .gitignore │ ├── encodings.xml │ ├── indexLayout.xml │ ├── riderPublish.xml │ └── vcs.xml ├── .run/ │ ├── Debug.run.xml │ ├── Publish Debug.run.xml │ └── Publish Release.run.xml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Clown-Behaviour.md ├── Doc/ │ └── Events.md ├── LICENSE ├── LICENSE.MIT ├── README.md ├── XAU/ │ ├── App.xaml │ ├── App.xaml.cs │ ├── AssemblyInfo.cs │ ├── Models/ │ │ ├── GitHubResponse.cs │ │ ├── MiscItems.cs │ │ ├── XAUSettings.cs │ │ ├── XboxApiRequest.cs │ │ └── XboxApiResponse.cs │ ├── Networking/ │ │ ├── DBoxRestAPI.cs │ │ ├── GithubRestApi.cs │ │ └── XboxRestApi.cs │ ├── Services/ │ │ ├── ApplicationHostService.cs │ │ └── HttpServer/ │ │ ├── AchievementRoutes.cs │ │ ├── EndpointRoutes.cs │ │ ├── GameRoutes.cs │ │ ├── HttpServer.cs │ │ ├── ProfileRoutes.cs │ │ ├── Routes.cs │ │ └── SpoofingRoutes.cs │ ├── Theme/ │ │ └── ThemeConstants.xaml │ ├── Usings.cs │ ├── Util/ │ │ ├── Constants/ │ │ │ └── Constants.cs │ │ ├── Etw/ │ │ │ └── EtwTokenCapture.cs │ │ ├── Files/ │ │ │ └── FileDownloader.cs │ │ ├── Memory/ │ │ │ ├── Methods/ │ │ │ │ ├── AoB.cs │ │ │ │ └── Read.cs │ │ │ ├── Structures/ │ │ │ │ ├── Imports.cs │ │ │ │ ├── MemoryRegionResult.cs │ │ │ │ └── Process.cs │ │ │ └── memory.cs │ │ └── XboxAuthNet/ │ │ ├── Base64UrlHelper.cs │ │ ├── ErrorCodes.cs │ │ ├── ErrorHelper.cs │ │ ├── FodyWeavers.xml │ │ ├── HttpHelper.cs │ │ ├── Jwt/ │ │ │ └── JwtDecoder.cs │ │ ├── OAuth/ │ │ │ ├── CodeFlow/ │ │ │ │ ├── AuthCodeException.cs │ │ │ │ ├── CodeFlowAuthenticator.cs │ │ │ │ ├── CodeFlowAuthorizationResult.cs │ │ │ │ ├── CodeFlowBuilder.cs │ │ │ │ ├── CodeFlowLiveApiClient.cs │ │ │ │ ├── CodeFlowUriChecker.cs │ │ │ │ ├── ICodeFlowApiClient.cs │ │ │ │ ├── ICodeFlowUrlChecker.cs │ │ │ │ ├── IWebUI.cs │ │ │ │ ├── MicrosoftOAuthPromptModes.cs │ │ │ │ ├── Parameters/ │ │ │ │ │ ├── CodeFlowAccessTokenParameter.cs │ │ │ │ │ ├── CodeFlowAuthorizationParameter.cs │ │ │ │ │ ├── CodeFlowParameter.cs │ │ │ │ │ └── CodeFlowRefreshTokenParameter.cs │ │ │ │ └── WebUIOptions.cs │ │ │ ├── MicrosoftOAuthException.cs │ │ │ ├── MicrosoftOAuthResponse.cs │ │ │ └── MicrosoftUserPayload.cs │ │ ├── PlatformManager.cs │ │ ├── Platforms/ │ │ │ └── WinForm/ │ │ │ ├── StaTaskScheduler.cs │ │ │ ├── UIThreadHelper.cs │ │ │ ├── WebView2WebUI.cs │ │ │ ├── Win32Window.cs │ │ │ ├── WinFormsPanelWithWebView2.cs │ │ │ └── WindowsDpiHelper.cs │ │ ├── XboxAuthNet.csproj │ │ └── XboxLive/ │ │ ├── Crypto/ │ │ │ ├── ECDCertificatePopCryptoProvider.cs │ │ │ ├── IPopCryptoProvider.cs │ │ │ ├── IXboxRequestSigner.cs │ │ │ └── XboxRequestSigner.cs │ │ ├── Requests/ │ │ │ ├── AbstractXboxAuthRequest.cs │ │ │ ├── AbstractXboxSignedAuthRequest.cs │ │ │ ├── CommonRequestHeaders.cs │ │ │ ├── XboxDeviceTokenRequest.cs │ │ │ ├── XboxSignedUserTokenRequest.cs │ │ │ ├── XboxSignedXstsRequest.cs │ │ │ ├── XboxSisuAuthRequest.cs │ │ │ ├── XboxTitleTokenRequest.cs │ │ │ ├── XboxUserTokenRequest.cs │ │ │ └── XboxXstsRequest.cs │ │ ├── Responses/ │ │ │ ├── XErrJsonConverter.cs │ │ │ ├── XboxAuthResponse.cs │ │ │ ├── XboxAuthResponseHandler.cs │ │ │ ├── XboxAuthXuiClaims.cs │ │ │ ├── XboxAuthXuiClaimsJsonConverter.cs │ │ │ ├── XboxErrorResponse.cs │ │ │ └── XboxSisuResponse.cs │ │ ├── XboxAuthClient.cs │ │ ├── XboxAuthConstants.cs │ │ ├── XboxAuthException.cs │ │ ├── XboxAuthXuiClaimNames.cs │ │ ├── XboxDeviceTypes.cs │ │ ├── XboxGameTitles.cs │ │ └── XboxSignedClient.cs │ ├── ViewModels/ │ │ ├── Pages/ │ │ │ ├── AchievementsViewModel.cs │ │ │ ├── DebugViewModel.cs │ │ │ ├── GamesViewModel.cs │ │ │ ├── HomeViewModel.cs │ │ │ ├── InfoViewModel.cs │ │ │ ├── MiscViewModel.cs │ │ │ ├── SettingsViewModel.cs │ │ │ └── StatsViewModel.cs │ │ └── Windows/ │ │ └── MainWindowViewModel.cs │ ├── Views/ │ │ ├── Pages/ │ │ │ ├── AchievementsPage.xaml │ │ │ ├── AchievementsPage.xaml.cs │ │ │ ├── DebugPage.xaml │ │ │ ├── DebugPage.xaml.cs │ │ │ ├── GamesPage.xaml │ │ │ ├── GamesPage.xaml.cs │ │ │ ├── HomePage.xaml │ │ │ ├── HomePage.xaml.cs │ │ │ ├── InfoPage.xaml │ │ │ ├── InfoPage.xaml.cs │ │ │ ├── MiscPage.xaml │ │ │ ├── MiscPage.xaml.cs │ │ │ ├── PlaceholderPage.xaml │ │ │ ├── PlaceholderPage.xaml.cs │ │ │ ├── SettingsPage.xaml │ │ │ ├── SettingsPage.xaml.cs │ │ │ ├── StatsPage.xaml │ │ │ └── StatsPage.xaml.cs │ │ └── Windows/ │ │ ├── MainWindow.xaml │ │ └── MainWindow.xaml.cs │ ├── XAU.csproj │ └── app.manifest └── XAU.sln