gitextract_097p0ehk/ ├── .config/ │ └── dotnet-tools.json ├── .dockerignore ├── .forgejo/ │ ├── win/ │ │ ├── README.md │ │ ├── dug.nuspec │ │ └── output/ │ │ ├── LICENSE.txt │ │ └── VERIFICATION.txt │ └── workflows/ │ ├── build-test-publish.yaml │ └── update-docs.yaml ├── .gitignore ├── .gitmodules ├── .vscode/ │ ├── extensions.json │ ├── launch.json │ └── tasks.json ├── Dockerfile ├── Dockerfile-alpine ├── LICENSE ├── README.md ├── cli/ │ ├── App.cs │ ├── Config.cs │ ├── Data/ │ │ ├── ContinentCodes.cs │ │ ├── DataMaps.cs │ │ ├── DnsResponse.cs │ │ └── Models/ │ │ └── DnsServer.cs │ ├── Directory.Build.props │ ├── Options/ │ │ ├── GlobalOptions.cs │ │ ├── RunOptions.cs │ │ └── UpdateOptions.cs │ ├── Parsing/ │ │ ├── CustomDnsServerMapping.cs │ │ ├── DnsServerParser.cs │ │ ├── IDnsServerParser.cs │ │ ├── IpAddressConverter.cs │ │ ├── LocalCsvDnsServerMapping.cs │ │ └── RemoteCsvDnsServerMapping.cs │ ├── Program.cs │ ├── Resources/ │ │ └── default_servers.csv │ ├── Services/ │ │ ├── ConsoleTableService.cs │ │ ├── ConsoleTemplateService.cs │ │ ├── DnsQueryService.cs │ │ ├── DnsServerService.cs │ │ ├── IConsoleTableService.cs │ │ ├── IConsoleTemplateService.cs │ │ ├── IDnsQueryService.cs │ │ ├── IDnsServerService.cs │ │ ├── IPercentageAnimator.cs │ │ └── PercentageAnimator.cs │ ├── Utils/ │ │ ├── MarkupHelper.cs │ │ ├── ReflectionHelper.cs │ │ └── TemplateHelper.cs │ ├── Utils.cs │ ├── auth_template │ ├── dug.csproj │ ├── i18n/ │ │ ├── dug.Designer.cs │ │ ├── dug.de.resx │ │ ├── dug.es.resx │ │ └── dug.resx │ ├── snap/ │ │ └── snapcraft.yaml │ ├── snapcraft.Dockerfile │ ├── test_custom_header_servers.csv │ ├── test_custom_header_servers_colon_separated.csv │ ├── test_custom_header_servers_color.csv │ └── test_servers.csv ├── cli.tests/ │ ├── XUnit/ │ │ ├── UnitTest1.cs │ │ └── cli.tests.csproj │ └── bats/ │ └── run.sh ├── dug/ │ └── APKBUILD └── dug-docs/ ├── README.md ├── babel.config.js ├── dockerfile ├── docs/ │ ├── install.md │ ├── introduction.md │ ├── mdx.md │ ├── run.md │ ├── templated_input.md │ ├── templated_output.md │ └── update.md ├── docusaurus.config.js ├── package.json ├── sidebars.js ├── src/ │ ├── css/ │ │ └── custom.css │ └── pages/ │ ├── index.js │ └── styles.module.css └── static/ └── .nojekyll