gitextract_hu7cpmxm/ ├── .devcontainer/ │ ├── Dockerfile │ └── devcontainer.json ├── .gitattributes ├── .github/ │ ├── CONTRIBUTING.md │ ├── PULL_REQUEST_TEMPLATE.md │ └── workflows/ │ └── tests.yml ├── .gitignore ├── .vscode/ │ ├── settings.json │ └── toptout.code-snippets ├── LICENSE ├── README.md ├── build.ps1 ├── data/ │ ├── README.md │ ├── accessmap.json │ ├── aerospike.json │ ├── alibuild.json │ ├── angular.json │ ├── appc-daemon.json │ ├── appcenter-cli.json │ ├── arduino-cli.json │ ├── atom.json │ ├── automagica.json │ ├── automated-lab.json │ ├── autospinstaller-online.json │ ├── aws-amplify-cli.json │ ├── aws-sam-cli.json │ ├── azure-cli.json │ ├── batect.json │ ├── botframework-cli.json │ ├── brave.json │ ├── buildbuddy.json │ ├── canvas-lms.json │ ├── capacitor.json │ ├── carbon-design-system.json │ ├── chef-automate.json │ ├── chef-workstation.json │ ├── choosenim.json │ ├── cocoapods.json │ ├── code-server.json │ ├── consul.json │ ├── cordova-cli.json │ ├── cube-js.json │ ├── dagger.json │ ├── dagster.json │ ├── deck.json │ ├── docker-desktop.json │ ├── dotnet-interactive.json │ ├── dotnet-svcutil.json │ ├── dvc.json │ ├── earthly.json │ ├── ember-cli.json │ ├── eternal-terminal.json │ ├── f5-big-tf.json │ ├── f5-cli.json │ ├── fastlane.json │ ├── feast.json │ ├── firefox.json │ ├── flagsmith-api.json │ ├── flutter.json │ ├── gatsby-js.json │ ├── golang.json │ ├── google-cloud-sdk.json │ ├── hasura.json │ ├── homebrew.json │ ├── hookdeck-cli.json │ ├── humbug.json │ ├── imagegear.json │ ├── influxdb.json │ ├── infracost.json │ ├── ionic-cli.json │ ├── k0s.json │ ├── k8slens.json │ ├── kics.json │ ├── kpow.json │ ├── kubeapt.json │ ├── local-wp.json │ ├── lynx-vfx.json │ ├── materialize.json │ ├── mattermost-server.json │ ├── meilisearch.json │ ├── meltano.json │ ├── microsoft-365-enterprise.json │ ├── microsoft-calculator.json │ ├── mlnet-cli.json │ ├── mslab.json │ ├── mssql-cli.json │ ├── net-core-sdk.json │ ├── netdata.json │ ├── netlify-cli.json │ ├── nextjs.json │ ├── nocodb.json │ ├── nuke.json │ ├── nuxt-js.json │ ├── nvidia-drivers.json │ ├── ohmyzsh.json │ ├── onecodex.json │ ├── openvz.json │ ├── ory.json │ ├── oryx.json │ ├── otel-launcher-node.json │ ├── packer.json │ ├── pants.json │ ├── pnp-powershell.json │ ├── power-platform-cli.json │ ├── powershell-core.json │ ├── prisma.json │ ├── projector-cli.json │ ├── prose-sdk.json │ ├── pulumi.json │ ├── pytket.json │ ├── quickwit.json │ ├── quilt.json │ ├── raft.json │ ├── rasa.json │ ├── react-admin.json │ ├── react-native-win.json │ ├── reportportal-js-client.json │ ├── reportportal-pytest-plugin.json │ ├── restler.json │ ├── rockset-cli.json │ ├── root-cause.json │ ├── rover-cli.json │ ├── salto-cli.json │ ├── scaleway-cli.json │ ├── serverless.json │ ├── sfctl.json │ ├── sfdx-cli.json │ ├── skaffold.json │ ├── sku.json │ ├── stenciljs.json │ ├── strapi.json │ ├── stripe-cli.json │ ├── telepresence.json │ ├── terraform-azurerm.json │ ├── terraform-cdk.json │ ├── terraform.json │ ├── tilt.json │ ├── timescaledb.json │ ├── tuist.json │ ├── typo3.json │ ├── ubiquiti-uisp.json │ ├── vagrant.json │ ├── vscode-app-insights.json │ ├── vscode-docs-yaml.json │ ├── vscode-esp-idf.json │ ├── vscode-js-debug.json │ ├── vscode-julia.json │ ├── vscode-printcode.json │ ├── vscode-rest-client.json │ ├── vscode-serverless-ide.json │ ├── vscode-terminal.json │ ├── vscode.json │ ├── vstest.json │ ├── vue-dx.json │ ├── wapm-cli.json │ ├── warp.json │ ├── weave-net.json │ ├── webhint.json │ ├── webiny.json │ ├── werf.json │ ├── windows-10.json │ ├── windows-terminal.json │ ├── winget-cli.json │ ├── wksctl.json │ └── yarn2.json ├── docs/ │ ├── .nojekyll │ ├── CNAME │ ├── README.md │ ├── api/ │ │ ├── category/ │ │ │ └── index.json │ │ ├── id/ │ │ │ └── index.json │ │ └── telemetry/ │ │ ├── category/ │ │ │ ├── applications/ │ │ │ │ └── index.json │ │ │ ├── cloud/ │ │ │ │ └── index.json │ │ │ ├── communications/ │ │ │ │ └── index.json │ │ │ ├── database/ │ │ │ │ └── index.json │ │ │ ├── development/ │ │ │ │ └── index.json │ │ │ ├── devops/ │ │ │ │ └── index.json │ │ │ ├── drivers/ │ │ │ │ └── index.json │ │ │ ├── operating-systems/ │ │ │ │ └── index.json │ │ │ ├── other/ │ │ │ │ └── index.json │ │ │ ├── shells/ │ │ │ │ └── index.json │ │ │ └── vscode-extension/ │ │ │ └── index.json │ │ ├── id/ │ │ │ ├── accessmap/ │ │ │ │ └── index.json │ │ │ ├── aerospike/ │ │ │ │ └── index.json │ │ │ ├── alibuild/ │ │ │ │ └── index.json │ │ │ ├── angular/ │ │ │ │ └── index.json │ │ │ ├── appc-daemon/ │ │ │ │ └── index.json │ │ │ ├── appcenter-cli/ │ │ │ │ └── index.json │ │ │ ├── arduino-cli/ │ │ │ │ └── index.json │ │ │ ├── atom/ │ │ │ │ └── index.json │ │ │ ├── automagica/ │ │ │ │ └── index.json │ │ │ ├── automated-lab/ │ │ │ │ └── index.json │ │ │ ├── autospinstaller-online/ │ │ │ │ └── index.json │ │ │ ├── aws-amplify-cli/ │ │ │ │ └── index.json │ │ │ ├── aws-sam-cli/ │ │ │ │ └── index.json │ │ │ ├── azure-cli/ │ │ │ │ └── index.json │ │ │ ├── batect/ │ │ │ │ └── index.json │ │ │ ├── botframework-cli/ │ │ │ │ └── index.json │ │ │ ├── brave/ │ │ │ │ └── index.json │ │ │ ├── buildbuddy/ │ │ │ │ └── index.json │ │ │ ├── canvas-lms/ │ │ │ │ └── index.json │ │ │ ├── capacitor/ │ │ │ │ └── index.json │ │ │ ├── carbon-design-system/ │ │ │ │ └── index.json │ │ │ ├── chef-automate/ │ │ │ │ └── index.json │ │ │ ├── chef-workstation/ │ │ │ │ └── index.json │ │ │ ├── choosenim/ │ │ │ │ └── index.json │ │ │ ├── cocoapods/ │ │ │ │ └── index.json │ │ │ ├── code-server/ │ │ │ │ └── index.json │ │ │ ├── consul/ │ │ │ │ └── index.json │ │ │ ├── cordova-cli/ │ │ │ │ └── index.json │ │ │ ├── cube-js/ │ │ │ │ └── index.json │ │ │ ├── dagger/ │ │ │ │ └── index.json │ │ │ ├── dagster/ │ │ │ │ └── index.json │ │ │ ├── deck/ │ │ │ │ └── index.json │ │ │ ├── docker-desktop/ │ │ │ │ └── index.json │ │ │ ├── dotnet-interactive/ │ │ │ │ └── index.json │ │ │ ├── dotnet-svcutil/ │ │ │ │ └── index.json │ │ │ ├── dvc/ │ │ │ │ └── index.json │ │ │ ├── earthly/ │ │ │ │ └── index.json │ │ │ ├── ember-cli/ │ │ │ │ └── index.json │ │ │ ├── eternal-terminal/ │ │ │ │ └── index.json │ │ │ ├── f5-big-tf/ │ │ │ │ └── index.json │ │ │ ├── f5-cli/ │ │ │ │ └── index.json │ │ │ ├── fastlane/ │ │ │ │ └── index.json │ │ │ ├── feast/ │ │ │ │ └── index.json │ │ │ ├── firefox/ │ │ │ │ └── index.json │ │ │ ├── flagsmith-api/ │ │ │ │ └── index.json │ │ │ ├── flutter/ │ │ │ │ └── index.json │ │ │ ├── gatsby-js/ │ │ │ │ └── index.json │ │ │ ├── golang/ │ │ │ │ └── index.json │ │ │ ├── google-cloud-sdk/ │ │ │ │ └── index.json │ │ │ ├── hasura/ │ │ │ │ └── index.json │ │ │ ├── homebrew/ │ │ │ │ └── index.json │ │ │ ├── hookdeck-cli/ │ │ │ │ └── index.json │ │ │ ├── humbug/ │ │ │ │ └── index.json │ │ │ ├── imagegear/ │ │ │ │ └── index.json │ │ │ ├── influxdb/ │ │ │ │ └── index.json │ │ │ ├── infracost/ │ │ │ │ └── index.json │ │ │ ├── ionic-cli/ │ │ │ │ └── index.json │ │ │ ├── k0s/ │ │ │ │ └── index.json │ │ │ ├── k8slens/ │ │ │ │ └── index.json │ │ │ ├── kics/ │ │ │ │ └── index.json │ │ │ ├── kpow/ │ │ │ │ └── index.json │ │ │ ├── kubeapt/ │ │ │ │ └── index.json │ │ │ ├── local-wp/ │ │ │ │ └── index.json │ │ │ ├── lynx-vfx/ │ │ │ │ └── index.json │ │ │ ├── materialize/ │ │ │ │ └── index.json │ │ │ ├── mattermost-server/ │ │ │ │ └── index.json │ │ │ ├── meilisearch/ │ │ │ │ └── index.json │ │ │ ├── meltano/ │ │ │ │ └── index.json │ │ │ ├── microsoft-365-enterprise/ │ │ │ │ └── index.json │ │ │ ├── microsoft-calculator/ │ │ │ │ └── index.json │ │ │ ├── mlnet-cli/ │ │ │ │ └── index.json │ │ │ ├── mslab/ │ │ │ │ └── index.json │ │ │ ├── mssql-cli/ │ │ │ │ └── index.json │ │ │ ├── net-core-sdk/ │ │ │ │ └── index.json │ │ │ ├── netdata/ │ │ │ │ └── index.json │ │ │ ├── netlify-cli/ │ │ │ │ └── index.json │ │ │ ├── nextjs/ │ │ │ │ └── index.json │ │ │ ├── nocodb/ │ │ │ │ └── index.json │ │ │ ├── nuke/ │ │ │ │ └── index.json │ │ │ ├── nuxt-js/ │ │ │ │ └── index.json │ │ │ ├── nvidia-drivers/ │ │ │ │ └── index.json │ │ │ ├── ohmyzsh/ │ │ │ │ └── index.json │ │ │ ├── onecodex/ │ │ │ │ └── index.json │ │ │ ├── openvz/ │ │ │ │ └── index.json │ │ │ ├── ory/ │ │ │ │ └── index.json │ │ │ ├── oryx/ │ │ │ │ └── index.json │ │ │ ├── otel-launcher-node/ │ │ │ │ └── index.json │ │ │ ├── packer/ │ │ │ │ └── index.json │ │ │ ├── pants/ │ │ │ │ └── index.json │ │ │ ├── pnp-powershell/ │ │ │ │ └── index.json │ │ │ ├── power-platform-cli/ │ │ │ │ └── index.json │ │ │ ├── powershell-core/ │ │ │ │ └── index.json │ │ │ ├── prisma/ │ │ │ │ └── index.json │ │ │ ├── projector-cli/ │ │ │ │ └── index.json │ │ │ ├── prose-sdk/ │ │ │ │ └── index.json │ │ │ ├── pulumi/ │ │ │ │ └── index.json │ │ │ ├── pytket/ │ │ │ │ └── index.json │ │ │ ├── quickwit/ │ │ │ │ └── index.json │ │ │ ├── quilt/ │ │ │ │ └── index.json │ │ │ ├── raft/ │ │ │ │ └── index.json │ │ │ ├── rasa/ │ │ │ │ └── index.json │ │ │ ├── react-admin/ │ │ │ │ └── index.json │ │ │ ├── react-native-win/ │ │ │ │ └── index.json │ │ │ ├── reportportal-js-client/ │ │ │ │ └── index.json │ │ │ ├── reportportal-pytest-plugin/ │ │ │ │ └── index.json │ │ │ ├── restler/ │ │ │ │ └── index.json │ │ │ ├── rockset-cli/ │ │ │ │ └── index.json │ │ │ ├── root-cause/ │ │ │ │ └── index.json │ │ │ ├── rover-cli/ │ │ │ │ └── index.json │ │ │ ├── salto-cli/ │ │ │ │ └── index.json │ │ │ ├── scaleway-cli/ │ │ │ │ └── index.json │ │ │ ├── serverless/ │ │ │ │ └── index.json │ │ │ ├── sfctl/ │ │ │ │ └── index.json │ │ │ ├── sfdx-cli/ │ │ │ │ └── index.json │ │ │ ├── skaffold/ │ │ │ │ └── index.json │ │ │ ├── sku/ │ │ │ │ └── index.json │ │ │ ├── stenciljs/ │ │ │ │ └── index.json │ │ │ ├── strapi/ │ │ │ │ └── index.json │ │ │ ├── stripe-cli/ │ │ │ │ └── index.json │ │ │ ├── telepresence/ │ │ │ │ └── index.json │ │ │ ├── terraform/ │ │ │ │ └── index.json │ │ │ ├── terraform-azurerm/ │ │ │ │ └── index.json │ │ │ ├── terraform-cdk/ │ │ │ │ └── index.json │ │ │ ├── tilt/ │ │ │ │ └── index.json │ │ │ ├── timescaledb/ │ │ │ │ └── index.json │ │ │ ├── tuist/ │ │ │ │ └── index.json │ │ │ ├── typo3/ │ │ │ │ └── index.json │ │ │ ├── ubiquiti-uisp/ │ │ │ │ └── index.json │ │ │ ├── vagrant/ │ │ │ │ └── index.json │ │ │ ├── vscode/ │ │ │ │ └── index.json │ │ │ ├── vscode-app-insights/ │ │ │ │ └── index.json │ │ │ ├── vscode-docs-yaml/ │ │ │ │ └── index.json │ │ │ ├── vscode-esp-idf/ │ │ │ │ └── index.json │ │ │ ├── vscode-js-debug/ │ │ │ │ └── index.json │ │ │ ├── vscode-julia/ │ │ │ │ └── index.json │ │ │ ├── vscode-printcode/ │ │ │ │ └── index.json │ │ │ ├── vscode-rest-client/ │ │ │ │ └── index.json │ │ │ ├── vscode-serverless-ide/ │ │ │ │ └── index.json │ │ │ ├── vscode-terminal/ │ │ │ │ └── index.json │ │ │ ├── vstest/ │ │ │ │ └── index.json │ │ │ ├── vue-dx/ │ │ │ │ └── index.json │ │ │ ├── wapm-cli/ │ │ │ │ └── index.json │ │ │ ├── warp/ │ │ │ │ └── index.json │ │ │ ├── weave-net/ │ │ │ │ └── index.json │ │ │ ├── webhint/ │ │ │ │ └── index.json │ │ │ ├── webiny/ │ │ │ │ └── index.json │ │ │ ├── werf/ │ │ │ │ └── index.json │ │ │ ├── windows-10/ │ │ │ │ └── index.json │ │ │ ├── windows-terminal/ │ │ │ │ └── index.json │ │ │ ├── winget-cli/ │ │ │ │ └── index.json │ │ │ ├── wksctl/ │ │ │ │ └── index.json │ │ │ └── yarn2/ │ │ │ └── index.json │ │ └── index.json │ ├── api-docs/ │ │ ├── index.html │ │ └── openapi.yaml │ └── index.html ├── examples/ │ ├── README.md │ ├── toptout_bash.sh │ └── toptout_pwsh.ps1 ├── helpers/ │ ├── README.md │ ├── common.ps1 │ ├── readme.ps1 │ └── shell.ps1 ├── schema/ │ ├── .redocly.lint-ignore.yaml │ ├── openapi.yaml │ └── toptout.schema.json └── tests/ ├── code.tests.ps1 └── data.tests.ps1